diff --git a/doc/1.txt b/doc/1.txt deleted file mode 100644 index 88d421b..0000000 --- a/doc/1.txt +++ /dev/null @@ -1 +0,0 @@ -ECHO ڴ״̬ diff --git a/model b/model deleted file mode 100644 index 66dc905..0000000 --- a/model +++ /dev/null @@ -1 +0,0 @@ -undefined \ No newline at end of file diff --git a/src/laoyou_admin/.gitignore b/src/laoyou_admin/.gitignore deleted file mode 100644 index a547bf3..0000000 --- a/src/laoyou_admin/.gitignore +++ /dev/null @@ -1,24 +0,0 @@ -# Logs -logs -*.log -npm-debug.log* -yarn-debug.log* -yarn-error.log* -pnpm-debug.log* -lerna-debug.log* - -node_modules -dist -dist-ssr -*.local - -# Editor directories and files -.vscode/* -!.vscode/extensions.json -.idea -.DS_Store -*.suo -*.ntvs* -*.njsproj -*.sln -*.sw? diff --git a/src/laoyou_admin/.vscode/extensions.json b/src/laoyou_admin/.vscode/extensions.json deleted file mode 100644 index c0a6e5a..0000000 --- a/src/laoyou_admin/.vscode/extensions.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] -} diff --git a/src/laoyou_admin/README.md b/src/laoyou_admin/README.md deleted file mode 100644 index ef72fd5..0000000 --- a/src/laoyou_admin/README.md +++ /dev/null @@ -1,18 +0,0 @@ -# Vue 3 + TypeScript + Vite - -This template should help get you started developing with Vue 3 and TypeScript in Vite. The template uses Vue 3 ` - - diff --git a/src/laoyou_admin/mock/index.d.ts b/src/laoyou_admin/mock/index.d.ts deleted file mode 100644 index 078f529..0000000 --- a/src/laoyou_admin/mock/index.d.ts +++ /dev/null @@ -1,17 +0,0 @@ -interface IResponseData { - code: number - message: string - data: T -} - -interface ILoginRequestData { - input_username: string - input_password: string - verfiyCode: string -} - -interface ILoginResponseData { - username: string - token: string - token_expire: number -} \ No newline at end of file diff --git a/src/laoyou_admin/mock/index.ts b/src/laoyou_admin/mock/index.ts deleted file mode 100644 index c6e0c58..0000000 --- a/src/laoyou_admin/mock/index.ts +++ /dev/null @@ -1,92 +0,0 @@ -import { MockMethod } from 'vite-plugin-mock' -import { Random } from 'mockjs' -// code 0 success -// code 505 login error - -interface IOrder { - id: string; - createAt: string; - updateAt: string; - college: string; - pm_name: string; - pm_tel: number; - order_time: string; - size: number; - need: boolean; - status: number; - verify_url: string; - sub_pm_type: string; -} - - -const order_list: IOrder[] = []; -// x 100 -for (let i = 0; i < 100; i++) { - order_list.push({ - college: Random.csentence(5, 10), - createAt: Random.datetime(), - id: Random.guid().slice(0, 10), - pm_name: Random.cname(), - pm_tel: Random.integer(10000000000, 19999999999), - size: Random.integer(1, 100), - need: Random.boolean(), - order_time: Random.datetime(), - status: Random.integer(0, 3), - updateAt: Random.datetime(), - verify_url: Random.url(), - // IMG or PDF - sub_pm_type: Random.pick(['IMG', 'PDF']) - }) -} - - - -export default [ - // user login - { - url: '/api/user/login', - method: 'post', - // res - response: (data) => { - const { input_username, input_password, verfiyCode } = data.body; - if (input_username === 'admin' && - input_password === 'admin123' && - verfiyCode === '1234') { - return { - code: 0, - message: 'success', - data: { - token: 'Token', - username: 'user_1', - token_expire: 3600 * 24, - } - } - } else { - // test error - return { - code: 505, - message: '用户名或密码错误', - data: {} - } - } - } - } - // 请求订单假数据 - , - { - url: '/api/order/list', - method: 'get', - // res - response: (data) => { - console.log(data.query); - const { page, limit } = data.query; - // data 传入分页数据 - const query_order_list: IOrder[] = []; - // 根据page limit 从order_list截取 返回数据 - const start = (page - 1) * limit; - const end = page * limit; - query_order_list.push(...order_list.slice(start, end)); - return query_order_list; - } - } -] as MockMethod[] diff --git a/src/laoyou_admin/package.json b/src/laoyou_admin/package.json deleted file mode 100644 index f0468b8..0000000 --- a/src/laoyou_admin/package.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "name": "cauc_admin", - "private": true, - "version": "0.0.0", - "scripts": { - "dev": "vite", - "build": "vue-tsc && vite build", - "preview": "vite preview" - }, - "dependencies": { - "@types/mockjs": "^1.0.7", - "axios": "^1.5.0", - "element-plus": "^2.3.14", - "fast-glob": "^3.3.1", - "mitt": "^3.0.1", - "pinia": "^2.1.6", - "remixicon": "^3.5.0", - "sass": "^1.68.0", - "vite-plugin-svg-icons": "^2.0.1", - "vue": "^3.3.4", - "vue-router": "^4.2.4" - }, - "devDependencies": { - "@rollup/plugin-image": "^3.0.2", - "@vitejs/plugin-vue": "^4.2.3", - "mockjs": "^1.1.0", - "typescript": "^5.0.2", - "unplugin-auto-import": "^0.16.6", - "unplugin-vue-components": "^0.25.2", - "vite": "^4.4.5", - "vite-plugin-mock": "^2.9.8", - "vue-tsc": "^1.8.5" - } -} diff --git a/src/laoyou_admin/pnpm-lock.yaml b/src/laoyou_admin/pnpm-lock.yaml deleted file mode 100644 index 5b13058..0000000 --- a/src/laoyou_admin/pnpm-lock.yaml +++ /dev/null @@ -1,3405 +0,0 @@ -lockfileVersion: '6.0' - -dependencies: - '@types/mockjs': - specifier: ^1.0.7 - version: registry.npmmirror.com/@types/mockjs@1.0.7 - axios: - specifier: ^1.5.0 - version: registry.npmmirror.com/axios@1.5.0 - element-plus: - specifier: ^2.3.14 - version: registry.npmmirror.com/element-plus@2.3.14(vue@3.3.4) - fast-glob: - specifier: ^3.3.1 - version: registry.npmmirror.com/fast-glob@3.3.1 - mitt: - specifier: ^3.0.1 - version: registry.npmmirror.com/mitt@3.0.1 - pinia: - specifier: ^2.1.6 - version: registry.npmmirror.com/pinia@2.1.6(typescript@5.0.2)(vue@3.3.4) - remixicon: - specifier: ^3.5.0 - version: registry.npmmirror.com/remixicon@3.5.0 - sass: - specifier: ^1.68.0 - version: registry.npmmirror.com/sass@1.68.0 - vite-plugin-svg-icons: - specifier: ^2.0.1 - version: registry.npmmirror.com/vite-plugin-svg-icons@2.0.1(vite@4.4.5) - vue: - specifier: ^3.3.4 - version: registry.npmmirror.com/vue@3.3.4 - vue-router: - specifier: ^4.2.4 - version: registry.npmmirror.com/vue-router@4.2.4(vue@3.3.4) - -devDependencies: - '@rollup/plugin-image': - specifier: ^3.0.2 - version: registry.npmmirror.com/@rollup/plugin-image@3.0.2 - '@vitejs/plugin-vue': - specifier: ^4.2.3 - version: registry.npmmirror.com/@vitejs/plugin-vue@4.2.3(vite@4.4.5)(vue@3.3.4) - mockjs: - specifier: ^1.1.0 - version: registry.npmmirror.com/mockjs@1.1.0 - typescript: - specifier: ^5.0.2 - version: registry.npmmirror.com/typescript@5.0.2 - unplugin-auto-import: - specifier: ^0.16.6 - version: registry.npmmirror.com/unplugin-auto-import@0.16.6 - unplugin-vue-components: - specifier: ^0.25.2 - version: registry.npmmirror.com/unplugin-vue-components@0.25.2(vue@3.3.4) - vite: - specifier: ^4.4.5 - version: registry.npmmirror.com/vite@4.4.5(sass@1.68.0) - vite-plugin-mock: - specifier: ^2.9.8 - version: registry.npmmirror.com/vite-plugin-mock@2.9.8(mockjs@1.1.0)(vite@4.4.5) - vue-tsc: - specifier: ^1.8.5 - version: registry.npmmirror.com/vue-tsc@1.8.5(typescript@5.0.2) - -packages: - - registry.npmmirror.com/@antfu/utils@0.7.6: - resolution: {integrity: sha512-pvFiLP2BeOKA/ZOS6jxx4XhKzdVLHDhGlFEaZ2flWWYf2xOqVniqpk38I04DFRyz+L0ASggl7SkItTc+ZLju4w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@antfu/utils/-/utils-0.7.6.tgz} - name: '@antfu/utils' - version: 0.7.6 - dev: true - - registry.npmmirror.com/@babel/helper-string-parser@7.22.5: - resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz} - name: '@babel/helper-string-parser' - version: 7.22.5 - engines: {node: '>=6.9.0'} - - registry.npmmirror.com/@babel/helper-validator-identifier@7.22.20: - resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz} - name: '@babel/helper-validator-identifier' - version: 7.22.20 - engines: {node: '>=6.9.0'} - - registry.npmmirror.com/@babel/parser@7.22.16: - resolution: {integrity: sha512-+gPfKv8UWeKKeJTUxe59+OobVcrYHETCsORl61EmSkmgymguYk/X5bp7GuUIXaFsc6y++v8ZxPsLSSuujqDphA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/parser/-/parser-7.22.16.tgz} - name: '@babel/parser' - version: 7.22.16 - engines: {node: '>=6.0.0'} - hasBin: true - dependencies: - '@babel/types': registry.npmmirror.com/@babel/types@7.22.19 - - registry.npmmirror.com/@babel/types@7.22.19: - resolution: {integrity: sha512-P7LAw/LbojPzkgp5oznjE6tQEIWbp4PkkfrZDINTro9zgBRtI324/EYsiSI7lhPbpIQ+DCeR2NNmMWANGGfZsg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/types/-/types-7.22.19.tgz} - name: '@babel/types' - version: 7.22.19 - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-string-parser': registry.npmmirror.com/@babel/helper-string-parser@7.22.5 - '@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier@7.22.20 - to-fast-properties: registry.npmmirror.com/to-fast-properties@2.0.0 - - registry.npmmirror.com/@ctrl/tinycolor@3.6.1: - resolution: {integrity: sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ctrl/tinycolor/-/tinycolor-3.6.1.tgz} - name: '@ctrl/tinycolor' - version: 3.6.1 - engines: {node: '>=10'} - dev: false - - registry.npmmirror.com/@element-plus/icons-vue@2.1.0(vue@3.3.4): - resolution: {integrity: sha512-PSBn3elNoanENc1vnCfh+3WA9fimRC7n+fWkf3rE5jvv+aBohNHABC/KAR5KWPecxWxDTVT1ERpRbOMRcOV/vA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@element-plus/icons-vue/-/icons-vue-2.1.0.tgz} - id: registry.npmmirror.com/@element-plus/icons-vue/2.1.0 - name: '@element-plus/icons-vue' - version: 2.1.0 - peerDependencies: - vue: ^3.2.0 - dependencies: - vue: registry.npmmirror.com/vue@3.3.4 - dev: false - - registry.npmmirror.com/@esbuild/android-arm64@0.18.20: - resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/android-arm64/-/android-arm64-0.18.20.tgz} - name: '@esbuild/android-arm64' - version: 0.18.20 - engines: {node: '>=12'} - cpu: [arm64] - os: [android] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/android-arm@0.18.20: - resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/android-arm/-/android-arm-0.18.20.tgz} - name: '@esbuild/android-arm' - version: 0.18.20 - engines: {node: '>=12'} - cpu: [arm] - os: [android] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/android-x64@0.18.20: - resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/android-x64/-/android-x64-0.18.20.tgz} - name: '@esbuild/android-x64' - version: 0.18.20 - engines: {node: '>=12'} - cpu: [x64] - os: [android] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/darwin-arm64@0.18.20: - resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz} - name: '@esbuild/darwin-arm64' - version: 0.18.20 - engines: {node: '>=12'} - cpu: [arm64] - os: [darwin] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/darwin-x64@0.18.20: - resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/darwin-x64/-/darwin-x64-0.18.20.tgz} - name: '@esbuild/darwin-x64' - version: 0.18.20 - engines: {node: '>=12'} - cpu: [x64] - os: [darwin] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/freebsd-arm64@0.18.20: - resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.20.tgz} - name: '@esbuild/freebsd-arm64' - version: 0.18.20 - engines: {node: '>=12'} - cpu: [arm64] - os: [freebsd] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/freebsd-x64@0.18.20: - resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/freebsd-x64/-/freebsd-x64-0.18.20.tgz} - name: '@esbuild/freebsd-x64' - version: 0.18.20 - engines: {node: '>=12'} - cpu: [x64] - os: [freebsd] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/linux-arm64@0.18.20: - resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-arm64/-/linux-arm64-0.18.20.tgz} - name: '@esbuild/linux-arm64' - version: 0.18.20 - engines: {node: '>=12'} - cpu: [arm64] - os: [linux] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/linux-arm@0.18.20: - resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-arm/-/linux-arm-0.18.20.tgz} - name: '@esbuild/linux-arm' - version: 0.18.20 - engines: {node: '>=12'} - cpu: [arm] - os: [linux] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/linux-ia32@0.18.20: - resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-ia32/-/linux-ia32-0.18.20.tgz} - name: '@esbuild/linux-ia32' - version: 0.18.20 - engines: {node: '>=12'} - cpu: [ia32] - os: [linux] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/linux-loong64@0.14.54: - resolution: {integrity: sha512-bZBrLAIX1kpWelV0XemxBZllyRmM6vgFQQG2GdNb+r3Fkp0FOh1NJSvekXDs7jq70k4euu1cryLMfU+mTXlEpw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-loong64/-/linux-loong64-0.14.54.tgz} - name: '@esbuild/linux-loong64' - version: 0.14.54 - engines: {node: '>=12'} - cpu: [loong64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - registry.npmmirror.com/@esbuild/linux-loong64@0.18.20: - resolution: {integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz} - name: '@esbuild/linux-loong64' - version: 0.18.20 - engines: {node: '>=12'} - cpu: [loong64] - os: [linux] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/linux-mips64el@0.18.20: - resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-mips64el/-/linux-mips64el-0.18.20.tgz} - name: '@esbuild/linux-mips64el' - version: 0.18.20 - engines: {node: '>=12'} - cpu: [mips64el] - os: [linux] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/linux-ppc64@0.18.20: - resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-ppc64/-/linux-ppc64-0.18.20.tgz} - name: '@esbuild/linux-ppc64' - version: 0.18.20 - engines: {node: '>=12'} - cpu: [ppc64] - os: [linux] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/linux-riscv64@0.18.20: - resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-riscv64/-/linux-riscv64-0.18.20.tgz} - name: '@esbuild/linux-riscv64' - version: 0.18.20 - engines: {node: '>=12'} - cpu: [riscv64] - os: [linux] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/linux-s390x@0.18.20: - resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-s390x/-/linux-s390x-0.18.20.tgz} - name: '@esbuild/linux-s390x' - version: 0.18.20 - engines: {node: '>=12'} - cpu: [s390x] - os: [linux] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/linux-x64@0.18.20: - resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-x64/-/linux-x64-0.18.20.tgz} - name: '@esbuild/linux-x64' - version: 0.18.20 - engines: {node: '>=12'} - cpu: [x64] - os: [linux] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/netbsd-x64@0.18.20: - resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/netbsd-x64/-/netbsd-x64-0.18.20.tgz} - name: '@esbuild/netbsd-x64' - version: 0.18.20 - engines: {node: '>=12'} - cpu: [x64] - os: [netbsd] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/openbsd-x64@0.18.20: - resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/openbsd-x64/-/openbsd-x64-0.18.20.tgz} - name: '@esbuild/openbsd-x64' - version: 0.18.20 - engines: {node: '>=12'} - cpu: [x64] - os: [openbsd] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/sunos-x64@0.18.20: - resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/sunos-x64/-/sunos-x64-0.18.20.tgz} - name: '@esbuild/sunos-x64' - version: 0.18.20 - engines: {node: '>=12'} - cpu: [x64] - os: [sunos] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/win32-arm64@0.18.20: - resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/win32-arm64/-/win32-arm64-0.18.20.tgz} - name: '@esbuild/win32-arm64' - version: 0.18.20 - engines: {node: '>=12'} - cpu: [arm64] - os: [win32] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/win32-ia32@0.18.20: - resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/win32-ia32/-/win32-ia32-0.18.20.tgz} - name: '@esbuild/win32-ia32' - version: 0.18.20 - engines: {node: '>=12'} - cpu: [ia32] - os: [win32] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/win32-x64@0.18.20: - resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz} - name: '@esbuild/win32-x64' - version: 0.18.20 - engines: {node: '>=12'} - cpu: [x64] - os: [win32] - requiresBuild: true - optional: true - - registry.npmmirror.com/@floating-ui/core@1.5.0: - resolution: {integrity: sha512-kK1h4m36DQ0UHGj5Ah4db7R0rHemTqqO0QLvUqi1/mUUp3LuAWbWxdxSIf/XsnH9VS6rRVPLJCncjRzUvyCLXg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@floating-ui/core/-/core-1.5.0.tgz} - name: '@floating-ui/core' - version: 1.5.0 - dependencies: - '@floating-ui/utils': registry.npmmirror.com/@floating-ui/utils@0.1.4 - dev: false - - registry.npmmirror.com/@floating-ui/dom@1.5.3: - resolution: {integrity: sha512-ClAbQnEqJAKCJOEbbLo5IUlZHkNszqhuxS4fHAVxRPXPya6Ysf2G8KypnYcOTpx6I8xcgF9bbHb6g/2KpbV8qA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@floating-ui/dom/-/dom-1.5.3.tgz} - name: '@floating-ui/dom' - version: 1.5.3 - dependencies: - '@floating-ui/core': registry.npmmirror.com/@floating-ui/core@1.5.0 - '@floating-ui/utils': registry.npmmirror.com/@floating-ui/utils@0.1.4 - dev: false - - registry.npmmirror.com/@floating-ui/utils@0.1.4: - resolution: {integrity: sha512-qprfWkn82Iw821mcKofJ5Pk9wgioHicxcQMxx+5zt5GSKoqdWvgG5AxVmpmUUjzTLPVSH5auBrhI93Deayn/DA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@floating-ui/utils/-/utils-0.1.4.tgz} - name: '@floating-ui/utils' - version: 0.1.4 - dev: false - - registry.npmmirror.com/@jridgewell/sourcemap-codec@1.4.15: - resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz} - name: '@jridgewell/sourcemap-codec' - version: 1.4.15 - - 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} - name: '@nodelib/fs.scandir' - version: 2.1.5 - 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} - name: '@nodelib/fs.stat' - version: 2.0.5 - 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} - name: '@nodelib/fs.walk' - version: 1.2.8 - engines: {node: '>= 8'} - dependencies: - '@nodelib/fs.scandir': registry.npmmirror.com/@nodelib/fs.scandir@2.1.5 - fastq: registry.npmmirror.com/fastq@1.15.0 - - registry.npmmirror.com/@rollup/plugin-image@3.0.2: - resolution: {integrity: sha512-eGVrD6lummWH5ENo9LWX3JY62uBb9okUNQ2htXkugrG6WjACrMUVhWvss+0wW3fwJWmFYpoEny3yL4spEdh15g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@rollup/plugin-image/-/plugin-image-3.0.2.tgz} - name: '@rollup/plugin-image' - version: 3.0.2 - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0||^3.0.0 - peerDependenciesMeta: - rollup: - optional: true - dependencies: - '@rollup/pluginutils': registry.npmmirror.com/@rollup/pluginutils@5.0.4 - mini-svg-data-uri: registry.npmmirror.com/mini-svg-data-uri@1.4.4 - dev: true - - registry.npmmirror.com/@rollup/pluginutils@5.0.4: - resolution: {integrity: sha512-0KJnIoRI8A+a1dqOYLxH8vBf8bphDmty5QvIm2hqm7oFCFYKCAZWWd2hXgMibaPsNDhI0AtpYfQZJG47pt/k4g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@rollup/pluginutils/-/pluginutils-5.0.4.tgz} - name: '@rollup/pluginutils' - version: 5.0.4 - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0||^3.0.0 - peerDependenciesMeta: - rollup: - optional: true - dependencies: - '@types/estree': registry.npmmirror.com/@types/estree@1.0.1 - estree-walker: registry.npmmirror.com/estree-walker@2.0.2 - picomatch: registry.npmmirror.com/picomatch@2.3.1 - dev: true - - registry.npmmirror.com/@sxzz/popperjs-es@2.11.7: - resolution: {integrity: sha512-Ccy0NlLkzr0Ex2FKvh2X+OyERHXJ88XJ1MXtsI9y9fGexlaXaVTPzBCRBwIxFkORuOb+uBqeu+RqnpgYTEZRUQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@sxzz/popperjs-es/-/popperjs-es-2.11.7.tgz} - name: '@sxzz/popperjs-es' - version: 2.11.7 - dev: false - - registry.npmmirror.com/@trysound/sax@0.2.0: - resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@trysound/sax/-/sax-0.2.0.tgz} - name: '@trysound/sax' - version: 0.2.0 - engines: {node: '>=10.13.0'} - dev: false - - registry.npmmirror.com/@types/estree@1.0.1: - resolution: {integrity: sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/estree/-/estree-1.0.1.tgz} - name: '@types/estree' - version: 1.0.1 - dev: true - - registry.npmmirror.com/@types/lodash-es@4.17.9: - resolution: {integrity: sha512-ZTcmhiI3NNU7dEvWLZJkzG6ao49zOIjEgIE0RgV7wbPxU0f2xT3VSAHw2gmst8swH6V0YkLRGp4qPlX/6I90MQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/lodash-es/-/lodash-es-4.17.9.tgz} - name: '@types/lodash-es' - version: 4.17.9 - dependencies: - '@types/lodash': registry.npmmirror.com/@types/lodash@4.14.198 - dev: false - - registry.npmmirror.com/@types/lodash@4.14.198: - resolution: {integrity: sha512-trNJ/vtMZYMLhfN45uLq4ShQSw0/S7xCTLLVM+WM1rmFpba/VS42jVUgaO3w/NOLiWR/09lnYk0yMaA/atdIsg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/lodash/-/lodash-4.14.198.tgz} - name: '@types/lodash' - version: 4.14.198 - dev: false - - registry.npmmirror.com/@types/mockjs@1.0.7: - resolution: {integrity: sha512-OCxXz6hEaJOVpRwuJMiVY5a6LtJcih+br9gwB/Q8ooOBikvk5FpBQ31OlNimXo3EqKha1Z7PFBni+q9m+8NCWg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/mockjs/-/mockjs-1.0.7.tgz} - name: '@types/mockjs' - version: 1.0.7 - - registry.npmmirror.com/@types/node@20.6.3: - resolution: {integrity: sha512-HksnYH4Ljr4VQgEy2lTStbCKv/P590tmPe5HqOnv9Gprffgv5WXAY+Y5Gqniu0GGqeTCUdBnzC3QSrzPkBkAMA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/node/-/node-20.6.3.tgz} - name: '@types/node' - version: 20.6.3 - dev: false - - registry.npmmirror.com/@types/svgo@2.6.4: - resolution: {integrity: sha512-l4cmyPEckf8moNYHdJ+4wkHvFxjyW6ulm9l4YGaOxeyBWPhBOT0gvni1InpFPdzx1dKf/2s62qGITwxNWnPQng==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/svgo/-/svgo-2.6.4.tgz} - name: '@types/svgo' - version: 2.6.4 - dependencies: - '@types/node': registry.npmmirror.com/@types/node@20.6.3 - dev: false - - registry.npmmirror.com/@types/web-bluetooth@0.0.16: - resolution: {integrity: sha512-oh8q2Zc32S6gd/j50GowEjKLoOVOwHP/bWVjKJInBwQqdOYMdPrf1oVlelTlyfFK3CKxL1uahMDAr+vy8T7yMQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/web-bluetooth/-/web-bluetooth-0.0.16.tgz} - name: '@types/web-bluetooth' - version: 0.0.16 - dev: false - - registry.npmmirror.com/@vitejs/plugin-vue@4.2.3(vite@4.4.5)(vue@3.3.4): - resolution: {integrity: sha512-R6JDUfiZbJA9cMiguQ7jxALsgiprjBeHL5ikpXfJCH62pPHtI+JdJ5xWj6Ev73yXSlYl86+blXn1kZHQ7uElxw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vitejs/plugin-vue/-/plugin-vue-4.2.3.tgz} - id: registry.npmmirror.com/@vitejs/plugin-vue/4.2.3 - name: '@vitejs/plugin-vue' - version: 4.2.3 - engines: {node: ^14.18.0 || >=16.0.0} - peerDependencies: - vite: ^4.0.0 - vue: ^3.2.25 - dependencies: - vite: registry.npmmirror.com/vite@4.4.5(sass@1.68.0) - vue: registry.npmmirror.com/vue@3.3.4 - dev: true - - registry.npmmirror.com/@volar/language-core@1.9.2: - resolution: {integrity: sha512-9GTes/IUPOl0YoV5RQWhCP5a4EDFFfJZGwZn1xA5ug1FO0G6GOVoJI6tQatujtcQmDOQlOM5/0NewnlumygPkQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@volar/language-core/-/language-core-1.9.2.tgz} - name: '@volar/language-core' - version: 1.9.2 - dependencies: - '@volar/source-map': registry.npmmirror.com/@volar/source-map@1.9.2 - dev: true - - registry.npmmirror.com/@volar/source-map@1.9.2: - resolution: {integrity: sha512-rYTvV/HMf2CSRkd6oiVxcjX4rnSxEsVfJmw1KTmD4VTBXlz1+b16VIysQX4+1p/eZd2TyCeFblyylIxbZ+YOGg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@volar/source-map/-/source-map-1.9.2.tgz} - name: '@volar/source-map' - version: 1.9.2 - dependencies: - muggle-string: registry.npmmirror.com/muggle-string@0.3.1 - dev: true - - registry.npmmirror.com/@volar/typescript@1.9.2: - resolution: {integrity: sha512-l4DA+S3ZVOWGACDdRNVSYZ41nuTWOH8OMS/yVeFV2fTmr/IuD37+3wzzGnjIPwCUa0w+fpg8vJPalzYetmlFTQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@volar/typescript/-/typescript-1.9.2.tgz} - name: '@volar/typescript' - version: 1.9.2 - dependencies: - '@volar/language-core': registry.npmmirror.com/@volar/language-core@1.9.2 - dev: true - - registry.npmmirror.com/@vue/compiler-core@3.3.4: - resolution: {integrity: sha512-cquyDNvZ6jTbf/+x+AgM2Arrp6G4Dzbb0R64jiG804HRMfRiFXWI6kqUVqZ6ZR0bQhIoQjB4+2bhNtVwndW15g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.3.4.tgz} - name: '@vue/compiler-core' - version: 3.3.4 - dependencies: - '@babel/parser': registry.npmmirror.com/@babel/parser@7.22.16 - '@vue/shared': registry.npmmirror.com/@vue/shared@3.3.4 - estree-walker: registry.npmmirror.com/estree-walker@2.0.2 - source-map-js: registry.npmmirror.com/source-map-js@1.0.2 - - registry.npmmirror.com/@vue/compiler-dom@3.3.4: - resolution: {integrity: sha512-wyM+OjOVpuUukIq6p5+nwHYtj9cFroz9cwkfmP9O1nzH68BenTTv0u7/ndggT8cIQlnBeOo6sUT/gvHcIkLA5w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.3.4.tgz} - name: '@vue/compiler-dom' - version: 3.3.4 - dependencies: - '@vue/compiler-core': registry.npmmirror.com/@vue/compiler-core@3.3.4 - '@vue/shared': registry.npmmirror.com/@vue/shared@3.3.4 - - registry.npmmirror.com/@vue/compiler-sfc@3.3.4: - resolution: {integrity: sha512-6y/d8uw+5TkCuzBkgLS0v3lSM3hJDntFEiUORM11pQ/hKvkhSKZrXW6i69UyXlJQisJxuUEJKAWEqWbWsLeNKQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/compiler-sfc/-/compiler-sfc-3.3.4.tgz} - name: '@vue/compiler-sfc' - version: 3.3.4 - dependencies: - '@babel/parser': registry.npmmirror.com/@babel/parser@7.22.16 - '@vue/compiler-core': registry.npmmirror.com/@vue/compiler-core@3.3.4 - '@vue/compiler-dom': registry.npmmirror.com/@vue/compiler-dom@3.3.4 - '@vue/compiler-ssr': registry.npmmirror.com/@vue/compiler-ssr@3.3.4 - '@vue/reactivity-transform': registry.npmmirror.com/@vue/reactivity-transform@3.3.4 - '@vue/shared': registry.npmmirror.com/@vue/shared@3.3.4 - estree-walker: registry.npmmirror.com/estree-walker@2.0.2 - magic-string: registry.npmmirror.com/magic-string@0.30.3 - postcss: registry.npmmirror.com/postcss@8.4.30 - source-map-js: registry.npmmirror.com/source-map-js@1.0.2 - - registry.npmmirror.com/@vue/compiler-ssr@3.3.4: - resolution: {integrity: sha512-m0v6oKpup2nMSehwA6Uuu+j+wEwcy7QmwMkVNVfrV9P2qE5KshC6RwOCq8fjGS/Eak/uNb8AaWekfiXxbBB6gQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.3.4.tgz} - name: '@vue/compiler-ssr' - version: 3.3.4 - dependencies: - '@vue/compiler-dom': registry.npmmirror.com/@vue/compiler-dom@3.3.4 - '@vue/shared': registry.npmmirror.com/@vue/shared@3.3.4 - - registry.npmmirror.com/@vue/devtools-api@6.5.0: - resolution: {integrity: sha512-o9KfBeaBmCKl10usN4crU53fYtC1r7jJwdGKjPT24t348rHxgfpZ0xL3Xm/gLUYnc0oTp8LAmrxOeLyu6tbk2Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/devtools-api/-/devtools-api-6.5.0.tgz} - name: '@vue/devtools-api' - version: 6.5.0 - dev: false - - registry.npmmirror.com/@vue/language-core@1.8.5(typescript@5.0.2): - resolution: {integrity: sha512-DKQNiNQzNV7nrkZQujvjfX73zqKdj2+KoM4YeKl+ft3f+crO3JB4ycPnmgaRMNX/ULJootdQPGHKFRl5cXxwaw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/language-core/-/language-core-1.8.5.tgz} - id: registry.npmmirror.com/@vue/language-core/1.8.5 - name: '@vue/language-core' - version: 1.8.5 - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@volar/language-core': registry.npmmirror.com/@volar/language-core@1.9.2 - '@volar/source-map': registry.npmmirror.com/@volar/source-map@1.9.2 - '@vue/compiler-dom': registry.npmmirror.com/@vue/compiler-dom@3.3.4 - '@vue/reactivity': registry.npmmirror.com/@vue/reactivity@3.3.4 - '@vue/shared': registry.npmmirror.com/@vue/shared@3.3.4 - minimatch: registry.npmmirror.com/minimatch@9.0.3 - muggle-string: registry.npmmirror.com/muggle-string@0.3.1 - typescript: registry.npmmirror.com/typescript@5.0.2 - vue-template-compiler: registry.npmmirror.com/vue-template-compiler@2.7.14 - dev: true - - registry.npmmirror.com/@vue/reactivity-transform@3.3.4: - resolution: {integrity: sha512-MXgwjako4nu5WFLAjpBnCj/ieqcjE2aJBINUNQzkZQfzIZA4xn+0fV1tIYBJvvva3N3OvKGofRLvQIwEQPpaXw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/reactivity-transform/-/reactivity-transform-3.3.4.tgz} - name: '@vue/reactivity-transform' - version: 3.3.4 - dependencies: - '@babel/parser': registry.npmmirror.com/@babel/parser@7.22.16 - '@vue/compiler-core': registry.npmmirror.com/@vue/compiler-core@3.3.4 - '@vue/shared': registry.npmmirror.com/@vue/shared@3.3.4 - estree-walker: registry.npmmirror.com/estree-walker@2.0.2 - magic-string: registry.npmmirror.com/magic-string@0.30.3 - - registry.npmmirror.com/@vue/reactivity@3.3.4: - resolution: {integrity: sha512-kLTDLwd0B1jG08NBF3R5rqULtv/f8x3rOFByTDz4J53ttIQEDmALqKqXY0J+XQeN0aV2FBxY8nJDf88yvOPAqQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/reactivity/-/reactivity-3.3.4.tgz} - name: '@vue/reactivity' - version: 3.3.4 - dependencies: - '@vue/shared': registry.npmmirror.com/@vue/shared@3.3.4 - - registry.npmmirror.com/@vue/runtime-core@3.3.4: - resolution: {integrity: sha512-R+bqxMN6pWO7zGI4OMlmvePOdP2c93GsHFM/siJI7O2nxFRzj55pLwkpCedEY+bTMgp5miZ8CxfIZo3S+gFqvA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/runtime-core/-/runtime-core-3.3.4.tgz} - name: '@vue/runtime-core' - version: 3.3.4 - dependencies: - '@vue/reactivity': registry.npmmirror.com/@vue/reactivity@3.3.4 - '@vue/shared': registry.npmmirror.com/@vue/shared@3.3.4 - - registry.npmmirror.com/@vue/runtime-dom@3.3.4: - resolution: {integrity: sha512-Aj5bTJ3u5sFsUckRghsNjVTtxZQ1OyMWCr5dZRAPijF/0Vy4xEoRCwLyHXcj4D0UFbJ4lbx3gPTgg06K/GnPnQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/runtime-dom/-/runtime-dom-3.3.4.tgz} - name: '@vue/runtime-dom' - version: 3.3.4 - dependencies: - '@vue/runtime-core': registry.npmmirror.com/@vue/runtime-core@3.3.4 - '@vue/shared': registry.npmmirror.com/@vue/shared@3.3.4 - csstype: registry.npmmirror.com/csstype@3.1.2 - - registry.npmmirror.com/@vue/server-renderer@3.3.4(vue@3.3.4): - resolution: {integrity: sha512-Q6jDDzR23ViIb67v+vM1Dqntu+HUexQcsWKhhQa4ARVzxOY2HbC7QRW/ggkDBd5BU+uM1sV6XOAP0b216o34JQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/server-renderer/-/server-renderer-3.3.4.tgz} - id: registry.npmmirror.com/@vue/server-renderer/3.3.4 - name: '@vue/server-renderer' - version: 3.3.4 - peerDependencies: - vue: 3.3.4 - dependencies: - '@vue/compiler-ssr': registry.npmmirror.com/@vue/compiler-ssr@3.3.4 - '@vue/shared': registry.npmmirror.com/@vue/shared@3.3.4 - vue: registry.npmmirror.com/vue@3.3.4 - - registry.npmmirror.com/@vue/shared@3.3.4: - resolution: {integrity: sha512-7OjdcV8vQ74eiz1TZLzZP4JwqM5fA94K6yntPS5Z25r9HDuGNzaGdgvwKYq6S+MxwF0TFRwe50fIR/MYnakdkQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/shared/-/shared-3.3.4.tgz} - name: '@vue/shared' - version: 3.3.4 - - registry.npmmirror.com/@vue/typescript@1.8.5(typescript@5.0.2): - resolution: {integrity: sha512-domFBbNr3PEcjGBeB+cmgUM3cI6pJsJezguIUKZ1rphkfIkICyoMjCd3TitoP32yo2KABLiaXcGFzgFfQf6B3w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/typescript/-/typescript-1.8.5.tgz} - id: registry.npmmirror.com/@vue/typescript/1.8.5 - name: '@vue/typescript' - version: 1.8.5 - dependencies: - '@volar/typescript': registry.npmmirror.com/@volar/typescript@1.9.2 - '@vue/language-core': registry.npmmirror.com/@vue/language-core@1.8.5(typescript@5.0.2) - transitivePeerDependencies: - - typescript - dev: true - - registry.npmmirror.com/@vueuse/core@9.13.0(vue@3.3.4): - resolution: {integrity: sha512-pujnclbeHWxxPRqXWmdkKV5OX4Wk4YeK7wusHqRwU0Q7EFusHoqNA/aPhB6KCh9hEqJkLAJo7bb0Lh9b+OIVzw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vueuse/core/-/core-9.13.0.tgz} - id: registry.npmmirror.com/@vueuse/core/9.13.0 - name: '@vueuse/core' - version: 9.13.0 - dependencies: - '@types/web-bluetooth': registry.npmmirror.com/@types/web-bluetooth@0.0.16 - '@vueuse/metadata': registry.npmmirror.com/@vueuse/metadata@9.13.0 - '@vueuse/shared': registry.npmmirror.com/@vueuse/shared@9.13.0(vue@3.3.4) - vue-demi: registry.npmmirror.com/vue-demi@0.14.6(vue@3.3.4) - transitivePeerDependencies: - - '@vue/composition-api' - - vue - dev: false - - registry.npmmirror.com/@vueuse/metadata@9.13.0: - resolution: {integrity: sha512-gdU7TKNAUVlXXLbaF+ZCfte8BjRJQWPCa2J55+7/h+yDtzw3vOoGQDRXzI6pyKyo6bXFT5/QoPE4hAknExjRLQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vueuse/metadata/-/metadata-9.13.0.tgz} - name: '@vueuse/metadata' - version: 9.13.0 - dev: false - - registry.npmmirror.com/@vueuse/shared@9.13.0(vue@3.3.4): - resolution: {integrity: sha512-UrnhU+Cnufu4S6JLCPZnkWh0WwZGUp72ktOF2DFptMlOs3TOdVv8xJN53zhHGARmVOsz5KqOls09+J1NR6sBKw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vueuse/shared/-/shared-9.13.0.tgz} - id: registry.npmmirror.com/@vueuse/shared/9.13.0 - name: '@vueuse/shared' - version: 9.13.0 - dependencies: - vue-demi: registry.npmmirror.com/vue-demi@0.14.6(vue@3.3.4) - transitivePeerDependencies: - - '@vue/composition-api' - - vue - dev: false - - registry.npmmirror.com/acorn@8.10.0: - resolution: {integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/acorn/-/acorn-8.10.0.tgz} - name: acorn - version: 8.10.0 - engines: {node: '>=0.4.0'} - hasBin: true - dev: true - - registry.npmmirror.com/ansi-regex@2.1.1: - resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ansi-regex/-/ansi-regex-2.1.1.tgz} - name: ansi-regex - version: 2.1.1 - engines: {node: '>=0.10.0'} - dev: false - - registry.npmmirror.com/ansi-styles@2.2.1: - resolution: {integrity: sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ansi-styles/-/ansi-styles-2.2.1.tgz} - name: ansi-styles - version: 2.2.1 - engines: {node: '>=0.10.0'} - dev: false - - 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.3: - resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/anymatch/-/anymatch-3.1.3.tgz} - name: anymatch - version: 3.1.3 - 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/arr-diff@4.0.0: - resolution: {integrity: sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/arr-diff/-/arr-diff-4.0.0.tgz} - name: arr-diff - version: 4.0.0 - engines: {node: '>=0.10.0'} - dev: false - - registry.npmmirror.com/arr-flatten@1.1.0: - resolution: {integrity: sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/arr-flatten/-/arr-flatten-1.1.0.tgz} - name: arr-flatten - version: 1.1.0 - engines: {node: '>=0.10.0'} - dev: false - - registry.npmmirror.com/arr-union@3.1.0: - resolution: {integrity: sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/arr-union/-/arr-union-3.1.0.tgz} - name: arr-union - version: 3.1.0 - engines: {node: '>=0.10.0'} - dev: false - - registry.npmmirror.com/array-unique@0.3.2: - resolution: {integrity: sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/array-unique/-/array-unique-0.3.2.tgz} - name: array-unique - version: 0.3.2 - engines: {node: '>=0.10.0'} - dev: false - - registry.npmmirror.com/assign-symbols@1.0.0: - resolution: {integrity: sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/assign-symbols/-/assign-symbols-1.0.0.tgz} - name: assign-symbols - version: 1.0.0 - engines: {node: '>=0.10.0'} - dev: false - - registry.npmmirror.com/async-validator@4.2.5: - resolution: {integrity: sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/async-validator/-/async-validator-4.2.5.tgz} - name: async-validator - version: 4.2.5 - dev: false - - registry.npmmirror.com/asynckit@0.4.0: - resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/asynckit/-/asynckit-0.4.0.tgz} - name: asynckit - version: 0.4.0 - dev: false - - registry.npmmirror.com/atob@2.1.2: - resolution: {integrity: sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/atob/-/atob-2.1.2.tgz} - name: atob - version: 2.1.2 - engines: {node: '>= 4.5.0'} - hasBin: true - dev: false - - registry.npmmirror.com/axios@1.5.0: - resolution: {integrity: sha512-D4DdjDo5CY50Qms0qGQTTw6Q44jl7zRwY7bthds06pUGfChBCTcQs+N743eFWGEd6pRTMd6A+I87aWyFV5wiZQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/axios/-/axios-1.5.0.tgz} - name: axios - version: 1.5.0 - dependencies: - follow-redirects: registry.npmmirror.com/follow-redirects@1.15.3 - form-data: registry.npmmirror.com/form-data@4.0.0 - proxy-from-env: registry.npmmirror.com/proxy-from-env@1.1.0 - transitivePeerDependencies: - - debug - dev: false - - 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/base@0.11.2: - resolution: {integrity: sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/base/-/base-0.11.2.tgz} - name: base - version: 0.11.2 - engines: {node: '>=0.10.0'} - dependencies: - cache-base: registry.npmmirror.com/cache-base@1.0.1 - class-utils: registry.npmmirror.com/class-utils@0.3.6 - component-emitter: registry.npmmirror.com/component-emitter@1.3.0 - define-property: registry.npmmirror.com/define-property@1.0.0 - isobject: registry.npmmirror.com/isobject@3.0.1 - mixin-deep: registry.npmmirror.com/mixin-deep@1.3.2 - pascalcase: registry.npmmirror.com/pascalcase@0.1.1 - dev: false - - 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} - name: big.js - version: 5.2.2 - dev: false - - 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} - name: binary-extensions - version: 2.2.0 - engines: {node: '>=8'} - - registry.npmmirror.com/bluebird@3.7.2: - resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/bluebird/-/bluebird-3.7.2.tgz} - name: bluebird - version: 3.7.2 - dev: false - - 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: false - - registry.npmmirror.com/brace-expansion@2.0.1: - resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/brace-expansion/-/brace-expansion-2.0.1.tgz} - name: brace-expansion - version: 2.0.1 - dependencies: - balanced-match: registry.npmmirror.com/balanced-match@1.0.2 - dev: true - - registry.npmmirror.com/braces@2.3.2: - resolution: {integrity: sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/braces/-/braces-2.3.2.tgz} - name: braces - version: 2.3.2 - engines: {node: '>=0.10.0'} - dependencies: - arr-flatten: registry.npmmirror.com/arr-flatten@1.1.0 - array-unique: registry.npmmirror.com/array-unique@0.3.2 - extend-shallow: registry.npmmirror.com/extend-shallow@2.0.1 - fill-range: registry.npmmirror.com/fill-range@4.0.0 - isobject: registry.npmmirror.com/isobject@3.0.1 - repeat-element: registry.npmmirror.com/repeat-element@1.1.4 - snapdragon: registry.npmmirror.com/snapdragon@0.8.2 - snapdragon-node: registry.npmmirror.com/snapdragon-node@2.1.1 - split-string: registry.npmmirror.com/split-string@3.1.0 - to-regex: registry.npmmirror.com/to-regex@3.0.2 - transitivePeerDependencies: - - supports-color - dev: false - - 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} - name: braces - version: 3.0.2 - engines: {node: '>=8'} - dependencies: - fill-range: registry.npmmirror.com/fill-range@7.0.1 - - registry.npmmirror.com/cache-base@1.0.1: - resolution: {integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/cache-base/-/cache-base-1.0.1.tgz} - name: cache-base - version: 1.0.1 - engines: {node: '>=0.10.0'} - dependencies: - collection-visit: registry.npmmirror.com/collection-visit@1.0.0 - component-emitter: registry.npmmirror.com/component-emitter@1.3.0 - get-value: registry.npmmirror.com/get-value@2.0.6 - has-value: registry.npmmirror.com/has-value@1.0.0 - isobject: registry.npmmirror.com/isobject@3.0.1 - set-value: registry.npmmirror.com/set-value@2.0.1 - to-object-path: registry.npmmirror.com/to-object-path@0.3.0 - union-value: registry.npmmirror.com/union-value@1.0.1 - unset-value: registry.npmmirror.com/unset-value@1.0.0 - dev: false - - registry.npmmirror.com/chalk@1.1.3: - resolution: {integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/chalk/-/chalk-1.1.3.tgz} - name: chalk - version: 1.1.3 - engines: {node: '>=0.10.0'} - dependencies: - ansi-styles: registry.npmmirror.com/ansi-styles@2.2.1 - escape-string-regexp: registry.npmmirror.com/escape-string-regexp@1.0.5 - has-ansi: registry.npmmirror.com/has-ansi@2.0.0 - strip-ansi: registry.npmmirror.com/strip-ansi@3.0.1 - supports-color: registry.npmmirror.com/supports-color@2.0.0 - dev: false - - 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} - name: chokidar - version: 3.5.3 - engines: {node: '>= 8.10.0'} - dependencies: - anymatch: registry.npmmirror.com/anymatch@3.1.3 - braces: registry.npmmirror.com/braces@3.0.2 - glob-parent: registry.npmmirror.com/glob-parent@5.1.2 - is-binary-path: registry.npmmirror.com/is-binary-path@2.1.0 - is-glob: registry.npmmirror.com/is-glob@4.0.3 - normalize-path: registry.npmmirror.com/normalize-path@3.0.0 - readdirp: registry.npmmirror.com/readdirp@3.6.0 - optionalDependencies: - fsevents: registry.npmmirror.com/fsevents@2.3.3 - - registry.npmmirror.com/class-utils@0.3.6: - resolution: {integrity: sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/class-utils/-/class-utils-0.3.6.tgz} - name: class-utils - version: 0.3.6 - engines: {node: '>=0.10.0'} - dependencies: - arr-union: registry.npmmirror.com/arr-union@3.1.0 - define-property: registry.npmmirror.com/define-property@0.2.5 - isobject: registry.npmmirror.com/isobject@3.0.1 - static-extend: registry.npmmirror.com/static-extend@0.1.2 - dev: false - - registry.npmmirror.com/clone@2.1.2: - resolution: {integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/clone/-/clone-2.1.2.tgz} - name: clone - version: 2.1.2 - engines: {node: '>=0.8'} - dev: false - - registry.npmmirror.com/collection-visit@1.0.0: - resolution: {integrity: sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/collection-visit/-/collection-visit-1.0.0.tgz} - name: collection-visit - version: 1.0.0 - engines: {node: '>=0.10.0'} - dependencies: - map-visit: registry.npmmirror.com/map-visit@1.0.0 - object-visit: registry.npmmirror.com/object-visit@1.0.1 - dev: false - - 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.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/combined-stream@1.0.8: - resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/combined-stream/-/combined-stream-1.0.8.tgz} - name: combined-stream - version: 1.0.8 - engines: {node: '>= 0.8'} - dependencies: - delayed-stream: registry.npmmirror.com/delayed-stream@1.0.0 - dev: false - - registry.npmmirror.com/commander@11.0.0: - resolution: {integrity: sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/commander/-/commander-11.0.0.tgz} - name: commander - version: 11.0.0 - engines: {node: '>=16'} - dev: true - - registry.npmmirror.com/commander@7.2.0: - resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/commander/-/commander-7.2.0.tgz} - name: commander - version: 7.2.0 - engines: {node: '>= 10'} - dev: false - - registry.npmmirror.com/component-emitter@1.3.0: - resolution: {integrity: sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/component-emitter/-/component-emitter-1.3.0.tgz} - name: component-emitter - version: 1.3.0 - dev: false - - registry.npmmirror.com/connect@3.7.0: - resolution: {integrity: sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/connect/-/connect-3.7.0.tgz} - name: connect - version: 3.7.0 - engines: {node: '>= 0.10.0'} - dependencies: - debug: registry.npmmirror.com/debug@2.6.9 - finalhandler: registry.npmmirror.com/finalhandler@1.1.2 - parseurl: registry.npmmirror.com/parseurl@1.3.3 - utils-merge: registry.npmmirror.com/utils-merge@1.0.1 - transitivePeerDependencies: - - supports-color - dev: true - - registry.npmmirror.com/copy-descriptor@0.1.1: - resolution: {integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz} - name: copy-descriptor - version: 0.1.1 - engines: {node: '>=0.10.0'} - dev: false - - registry.npmmirror.com/cors@2.8.5: - resolution: {integrity: sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/cors/-/cors-2.8.5.tgz} - name: cors - version: 2.8.5 - engines: {node: '>= 0.10'} - dependencies: - object-assign: registry.npmmirror.com/object-assign@4.1.1 - vary: registry.npmmirror.com/vary@1.1.2 - dev: false - - registry.npmmirror.com/css-select@4.3.0: - resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/css-select/-/css-select-4.3.0.tgz} - name: css-select - version: 4.3.0 - dependencies: - boolbase: registry.npmmirror.com/boolbase@1.0.0 - css-what: registry.npmmirror.com/css-what@6.1.0 - domhandler: registry.npmmirror.com/domhandler@4.3.1 - domutils: registry.npmmirror.com/domutils@2.8.0 - nth-check: registry.npmmirror.com/nth-check@2.1.1 - dev: false - - registry.npmmirror.com/css-tree@1.1.3: - resolution: {integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/css-tree/-/css-tree-1.1.3.tgz} - name: css-tree - version: 1.1.3 - engines: {node: '>=8.0.0'} - dependencies: - mdn-data: registry.npmmirror.com/mdn-data@2.0.14 - source-map: registry.npmmirror.com/source-map@0.6.1 - dev: false - - registry.npmmirror.com/css-what@6.1.0: - resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/css-what/-/css-what-6.1.0.tgz} - name: css-what - version: 6.1.0 - engines: {node: '>= 6'} - dev: false - - registry.npmmirror.com/csso@4.2.0: - resolution: {integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/csso/-/csso-4.2.0.tgz} - name: csso - version: 4.2.0 - engines: {node: '>=8.0.0'} - dependencies: - css-tree: registry.npmmirror.com/css-tree@1.1.3 - dev: false - - registry.npmmirror.com/csstype@3.1.2: - resolution: {integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/csstype/-/csstype-3.1.2.tgz} - name: csstype - version: 3.1.2 - - registry.npmmirror.com/dayjs@1.11.10: - resolution: {integrity: sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/dayjs/-/dayjs-1.11.10.tgz} - name: dayjs - version: 1.11.10 - dev: false - - registry.npmmirror.com/de-indent@1.0.2: - resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/de-indent/-/de-indent-1.0.2.tgz} - name: de-indent - version: 1.0.2 - dev: true - - 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} - name: debug - version: 2.6.9 - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - dependencies: - ms: registry.npmmirror.com/ms@2.0.0 - - 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} - name: debug - version: 4.3.4 - engines: {node: '>=6.0'} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - dependencies: - ms: registry.npmmirror.com/ms@2.1.2 - - registry.npmmirror.com/decode-uri-component@0.2.2: - resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/decode-uri-component/-/decode-uri-component-0.2.2.tgz} - name: decode-uri-component - version: 0.2.2 - engines: {node: '>=0.10'} - dev: false - - registry.npmmirror.com/define-property@0.2.5: - resolution: {integrity: sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/define-property/-/define-property-0.2.5.tgz} - name: define-property - version: 0.2.5 - engines: {node: '>=0.10.0'} - dependencies: - is-descriptor: registry.npmmirror.com/is-descriptor@0.1.6 - dev: false - - registry.npmmirror.com/define-property@1.0.0: - resolution: {integrity: sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/define-property/-/define-property-1.0.0.tgz} - name: define-property - version: 1.0.0 - engines: {node: '>=0.10.0'} - dependencies: - is-descriptor: registry.npmmirror.com/is-descriptor@1.0.2 - dev: false - - registry.npmmirror.com/define-property@2.0.2: - resolution: {integrity: sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/define-property/-/define-property-2.0.2.tgz} - name: define-property - version: 2.0.2 - engines: {node: '>=0.10.0'} - dependencies: - is-descriptor: registry.npmmirror.com/is-descriptor@1.0.2 - isobject: registry.npmmirror.com/isobject@3.0.1 - dev: false - - registry.npmmirror.com/delayed-stream@1.0.0: - resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/delayed-stream/-/delayed-stream-1.0.0.tgz} - name: delayed-stream - version: 1.0.0 - engines: {node: '>=0.4.0'} - dev: false - - registry.npmmirror.com/dom-serializer@0.2.2: - resolution: {integrity: sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/dom-serializer/-/dom-serializer-0.2.2.tgz} - name: dom-serializer - version: 0.2.2 - dependencies: - domelementtype: registry.npmmirror.com/domelementtype@2.3.0 - entities: registry.npmmirror.com/entities@2.2.0 - dev: false - - registry.npmmirror.com/dom-serializer@1.4.1: - resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/dom-serializer/-/dom-serializer-1.4.1.tgz} - name: dom-serializer - version: 1.4.1 - dependencies: - domelementtype: registry.npmmirror.com/domelementtype@2.3.0 - domhandler: registry.npmmirror.com/domhandler@4.3.1 - entities: registry.npmmirror.com/entities@2.2.0 - dev: false - - registry.npmmirror.com/domelementtype@1.3.1: - resolution: {integrity: sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/domelementtype/-/domelementtype-1.3.1.tgz} - name: domelementtype - version: 1.3.1 - dev: false - - registry.npmmirror.com/domelementtype@2.3.0: - resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/domelementtype/-/domelementtype-2.3.0.tgz} - name: domelementtype - version: 2.3.0 - dev: false - - registry.npmmirror.com/domhandler@2.4.2: - resolution: {integrity: sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/domhandler/-/domhandler-2.4.2.tgz} - name: domhandler - version: 2.4.2 - dependencies: - domelementtype: registry.npmmirror.com/domelementtype@1.3.1 - dev: false - - registry.npmmirror.com/domhandler@4.3.1: - resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/domhandler/-/domhandler-4.3.1.tgz} - name: domhandler - version: 4.3.1 - engines: {node: '>= 4'} - dependencies: - domelementtype: registry.npmmirror.com/domelementtype@2.3.0 - dev: false - - registry.npmmirror.com/domutils@1.7.0: - resolution: {integrity: sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/domutils/-/domutils-1.7.0.tgz} - name: domutils - version: 1.7.0 - dependencies: - dom-serializer: registry.npmmirror.com/dom-serializer@0.2.2 - domelementtype: registry.npmmirror.com/domelementtype@1.3.1 - dev: false - - registry.npmmirror.com/domutils@2.8.0: - resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/domutils/-/domutils-2.8.0.tgz} - name: domutils - version: 2.8.0 - dependencies: - dom-serializer: registry.npmmirror.com/dom-serializer@1.4.1 - domelementtype: registry.npmmirror.com/domelementtype@2.3.0 - domhandler: registry.npmmirror.com/domhandler@4.3.1 - dev: false - - 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} - name: ee-first - version: 1.1.1 - dev: true - - registry.npmmirror.com/element-plus@2.3.14(vue@3.3.4): - resolution: {integrity: sha512-9yvxUaU4jXf2ZNPdmIxoj/f8BG8CDcGM6oHa9JIqxLjQlfY4bpzR1E5CjNimnOX3rxO93w1TQ0jTVt0RSxh9kA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/element-plus/-/element-plus-2.3.14.tgz} - id: registry.npmmirror.com/element-plus/2.3.14 - name: element-plus - version: 2.3.14 - peerDependencies: - vue: ^3.2.0 - dependencies: - '@ctrl/tinycolor': registry.npmmirror.com/@ctrl/tinycolor@3.6.1 - '@element-plus/icons-vue': registry.npmmirror.com/@element-plus/icons-vue@2.1.0(vue@3.3.4) - '@floating-ui/dom': registry.npmmirror.com/@floating-ui/dom@1.5.3 - '@popperjs/core': registry.npmmirror.com/@sxzz/popperjs-es@2.11.7 - '@types/lodash': registry.npmmirror.com/@types/lodash@4.14.198 - '@types/lodash-es': registry.npmmirror.com/@types/lodash-es@4.17.9 - '@vueuse/core': registry.npmmirror.com/@vueuse/core@9.13.0(vue@3.3.4) - async-validator: registry.npmmirror.com/async-validator@4.2.5 - dayjs: registry.npmmirror.com/dayjs@1.11.10 - escape-html: registry.npmmirror.com/escape-html@1.0.3 - lodash: registry.npmmirror.com/lodash@4.17.21 - lodash-es: registry.npmmirror.com/lodash-es@4.17.21 - lodash-unified: registry.npmmirror.com/lodash-unified@1.0.3(@types/lodash-es@4.17.9)(lodash-es@4.17.21)(lodash@4.17.21) - memoize-one: registry.npmmirror.com/memoize-one@6.0.0 - normalize-wheel-es: registry.npmmirror.com/normalize-wheel-es@1.2.0 - vue: registry.npmmirror.com/vue@3.3.4 - transitivePeerDependencies: - - '@vue/composition-api' - dev: false - - 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} - name: emojis-list - version: 3.0.0 - engines: {node: '>= 4'} - dev: false - - 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} - name: encodeurl - version: 1.0.2 - engines: {node: '>= 0.8'} - dev: true - - registry.npmmirror.com/entities@1.1.2: - resolution: {integrity: sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/entities/-/entities-1.1.2.tgz} - name: entities - version: 1.1.2 - dev: false - - registry.npmmirror.com/entities@2.2.0: - resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/entities/-/entities-2.2.0.tgz} - name: entities - version: 2.2.0 - dev: false - - registry.npmmirror.com/esbuild-android-64@0.14.54: - resolution: {integrity: sha512-Tz2++Aqqz0rJ7kYBfz+iqyE3QMycD4vk7LBRyWaAVFgFtQ/O8EJOnVmTOiDWYZ/uYzB4kvP+bqejYdVKzE5lAQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-android-64/-/esbuild-android-64-0.14.54.tgz} - name: esbuild-android-64 - version: 0.14.54 - engines: {node: '>=12'} - cpu: [x64] - os: [android] - requiresBuild: true - dev: true - optional: true - - registry.npmmirror.com/esbuild-android-arm64@0.14.54: - resolution: {integrity: sha512-F9E+/QDi9sSkLaClO8SOV6etqPd+5DgJje1F9lOWoNncDdOBL2YF59IhsWATSt0TLZbYCf3pNlTHvVV5VfHdvg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-android-arm64/-/esbuild-android-arm64-0.14.54.tgz} - name: esbuild-android-arm64 - version: 0.14.54 - engines: {node: '>=12'} - cpu: [arm64] - os: [android] - requiresBuild: true - dev: true - optional: true - - registry.npmmirror.com/esbuild-darwin-64@0.14.54: - resolution: {integrity: sha512-jtdKWV3nBviOd5v4hOpkVmpxsBy90CGzebpbO9beiqUYVMBtSc0AL9zGftFuBon7PNDcdvNCEuQqw2x0wP9yug==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-darwin-64/-/esbuild-darwin-64-0.14.54.tgz} - name: esbuild-darwin-64 - version: 0.14.54 - engines: {node: '>=12'} - cpu: [x64] - os: [darwin] - requiresBuild: true - dev: true - optional: true - - registry.npmmirror.com/esbuild-darwin-arm64@0.14.54: - resolution: {integrity: sha512-OPafJHD2oUPyvJMrsCvDGkRrVCar5aVyHfWGQzY1dWnzErjrDuSETxwA2HSsyg2jORLY8yBfzc1MIpUkXlctmw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.14.54.tgz} - name: esbuild-darwin-arm64 - version: 0.14.54 - engines: {node: '>=12'} - cpu: [arm64] - os: [darwin] - requiresBuild: true - dev: true - optional: true - - registry.npmmirror.com/esbuild-freebsd-64@0.14.54: - resolution: {integrity: sha512-OKwd4gmwHqOTp4mOGZKe/XUlbDJ4Q9TjX0hMPIDBUWWu/kwhBAudJdBoxnjNf9ocIB6GN6CPowYpR/hRCbSYAg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-freebsd-64/-/esbuild-freebsd-64-0.14.54.tgz} - name: esbuild-freebsd-64 - version: 0.14.54 - engines: {node: '>=12'} - cpu: [x64] - os: [freebsd] - requiresBuild: true - dev: true - optional: true - - registry.npmmirror.com/esbuild-freebsd-arm64@0.14.54: - resolution: {integrity: sha512-sFwueGr7OvIFiQT6WeG0jRLjkjdqWWSrfbVwZp8iMP+8UHEHRBvlaxL6IuKNDwAozNUmbb8nIMXa7oAOARGs1Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.14.54.tgz} - name: esbuild-freebsd-arm64 - version: 0.14.54 - engines: {node: '>=12'} - cpu: [arm64] - os: [freebsd] - requiresBuild: true - dev: true - optional: true - - registry.npmmirror.com/esbuild-linux-32@0.14.54: - resolution: {integrity: sha512-1ZuY+JDI//WmklKlBgJnglpUL1owm2OX+8E1syCD6UAxcMM/XoWd76OHSjl/0MR0LisSAXDqgjT3uJqT67O3qw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-linux-32/-/esbuild-linux-32-0.14.54.tgz} - name: esbuild-linux-32 - version: 0.14.54 - engines: {node: '>=12'} - cpu: [ia32] - os: [linux] - requiresBuild: true - dev: true - optional: true - - registry.npmmirror.com/esbuild-linux-64@0.14.54: - resolution: {integrity: sha512-EgjAgH5HwTbtNsTqQOXWApBaPVdDn7XcK+/PtJwZLT1UmpLoznPd8c5CxqsH2dQK3j05YsB3L17T8vE7cp4cCg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-linux-64/-/esbuild-linux-64-0.14.54.tgz} - name: esbuild-linux-64 - version: 0.14.54 - engines: {node: '>=12'} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - registry.npmmirror.com/esbuild-linux-arm64@0.14.54: - resolution: {integrity: sha512-WL71L+0Rwv+Gv/HTmxTEmpv0UgmxYa5ftZILVi2QmZBgX3q7+tDeOQNqGtdXSdsL8TQi1vIaVFHUPDe0O0kdig==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-linux-arm64/-/esbuild-linux-arm64-0.14.54.tgz} - name: esbuild-linux-arm64 - version: 0.14.54 - engines: {node: '>=12'} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - registry.npmmirror.com/esbuild-linux-arm@0.14.54: - resolution: {integrity: sha512-qqz/SjemQhVMTnvcLGoLOdFpCYbz4v4fUo+TfsWG+1aOu70/80RV6bgNpR2JCrppV2moUQkww+6bWxXRL9YMGw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-linux-arm/-/esbuild-linux-arm-0.14.54.tgz} - name: esbuild-linux-arm - version: 0.14.54 - engines: {node: '>=12'} - cpu: [arm] - os: [linux] - requiresBuild: true - dev: true - optional: true - - registry.npmmirror.com/esbuild-linux-mips64le@0.14.54: - resolution: {integrity: sha512-qTHGQB8D1etd0u1+sB6p0ikLKRVuCWhYQhAHRPkO+OF3I/iSlTKNNS0Lh2Oc0g0UFGguaFZZiPJdJey3AGpAlw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.14.54.tgz} - name: esbuild-linux-mips64le - version: 0.14.54 - engines: {node: '>=12'} - cpu: [mips64el] - os: [linux] - requiresBuild: true - dev: true - optional: true - - registry.npmmirror.com/esbuild-linux-ppc64le@0.14.54: - resolution: {integrity: sha512-j3OMlzHiqwZBDPRCDFKcx595XVfOfOnv68Ax3U4UKZ3MTYQB5Yz3X1mn5GnodEVYzhtZgxEBidLWeIs8FDSfrQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.14.54.tgz} - name: esbuild-linux-ppc64le - version: 0.14.54 - engines: {node: '>=12'} - cpu: [ppc64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - registry.npmmirror.com/esbuild-linux-riscv64@0.14.54: - resolution: {integrity: sha512-y7Vt7Wl9dkOGZjxQZnDAqqn+XOqFD7IMWiewY5SPlNlzMX39ocPQlOaoxvT4FllA5viyV26/QzHtvTjVNOxHZg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.14.54.tgz} - name: esbuild-linux-riscv64 - version: 0.14.54 - engines: {node: '>=12'} - cpu: [riscv64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - registry.npmmirror.com/esbuild-linux-s390x@0.14.54: - resolution: {integrity: sha512-zaHpW9dziAsi7lRcyV4r8dhfG1qBidQWUXweUjnw+lliChJqQr+6XD71K41oEIC3Mx1KStovEmlzm+MkGZHnHA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-linux-s390x/-/esbuild-linux-s390x-0.14.54.tgz} - name: esbuild-linux-s390x - version: 0.14.54 - engines: {node: '>=12'} - cpu: [s390x] - os: [linux] - requiresBuild: true - dev: true - optional: true - - registry.npmmirror.com/esbuild-netbsd-64@0.14.54: - resolution: {integrity: sha512-PR01lmIMnfJTgeU9VJTDY9ZerDWVFIUzAtJuDHwwceppW7cQWjBBqP48NdeRtoP04/AtO9a7w3viI+PIDr6d+w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-netbsd-64/-/esbuild-netbsd-64-0.14.54.tgz} - name: esbuild-netbsd-64 - version: 0.14.54 - engines: {node: '>=12'} - cpu: [x64] - os: [netbsd] - requiresBuild: true - dev: true - optional: true - - registry.npmmirror.com/esbuild-openbsd-64@0.14.54: - resolution: {integrity: sha512-Qyk7ikT2o7Wu76UsvvDS5q0amJvmRzDyVlL0qf5VLsLchjCa1+IAvd8kTBgUxD7VBUUVgItLkk609ZHUc1oCaw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-openbsd-64/-/esbuild-openbsd-64-0.14.54.tgz} - name: esbuild-openbsd-64 - version: 0.14.54 - engines: {node: '>=12'} - cpu: [x64] - os: [openbsd] - requiresBuild: true - dev: true - optional: true - - registry.npmmirror.com/esbuild-sunos-64@0.14.54: - resolution: {integrity: sha512-28GZ24KmMSeKi5ueWzMcco6EBHStL3B6ubM7M51RmPwXQGLe0teBGJocmWhgwccA1GeFXqxzILIxXpHbl9Q/Kw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-sunos-64/-/esbuild-sunos-64-0.14.54.tgz} - name: esbuild-sunos-64 - version: 0.14.54 - engines: {node: '>=12'} - cpu: [x64] - os: [sunos] - requiresBuild: true - dev: true - optional: true - - registry.npmmirror.com/esbuild-windows-32@0.14.54: - resolution: {integrity: sha512-T+rdZW19ql9MjS7pixmZYVObd9G7kcaZo+sETqNH4RCkuuYSuv9AGHUVnPoP9hhuE1WM1ZimHz1CIBHBboLU7w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-windows-32/-/esbuild-windows-32-0.14.54.tgz} - name: esbuild-windows-32 - version: 0.14.54 - engines: {node: '>=12'} - cpu: [ia32] - os: [win32] - requiresBuild: true - dev: true - optional: true - - registry.npmmirror.com/esbuild-windows-64@0.14.54: - resolution: {integrity: sha512-AoHTRBUuYwXtZhjXZbA1pGfTo8cJo3vZIcWGLiUcTNgHpJJMC1rVA44ZereBHMJtotyN71S8Qw0npiCIkW96cQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-windows-64/-/esbuild-windows-64-0.14.54.tgz} - name: esbuild-windows-64 - version: 0.14.54 - engines: {node: '>=12'} - cpu: [x64] - os: [win32] - requiresBuild: true - dev: true - optional: true - - registry.npmmirror.com/esbuild-windows-arm64@0.14.54: - resolution: {integrity: sha512-M0kuUvXhot1zOISQGXwWn6YtS+Y/1RT9WrVIOywZnJHo3jCDyewAc79aKNQWFCQm+xNHVTq9h8dZKvygoXQQRg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-windows-arm64/-/esbuild-windows-arm64-0.14.54.tgz} - name: esbuild-windows-arm64 - version: 0.14.54 - engines: {node: '>=12'} - cpu: [arm64] - os: [win32] - requiresBuild: true - dev: true - optional: true - - registry.npmmirror.com/esbuild@0.14.54: - resolution: {integrity: sha512-Cy9llcy8DvET5uznocPyqL3BFRrFXSVqbgpMJ9Wz8oVjZlh/zUSNbPRbov0VX7VxN2JH1Oa0uNxZ7eLRb62pJA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild/-/esbuild-0.14.54.tgz} - name: esbuild - version: 0.14.54 - engines: {node: '>=12'} - hasBin: true - requiresBuild: true - optionalDependencies: - '@esbuild/linux-loong64': registry.npmmirror.com/@esbuild/linux-loong64@0.14.54 - esbuild-android-64: registry.npmmirror.com/esbuild-android-64@0.14.54 - esbuild-android-arm64: registry.npmmirror.com/esbuild-android-arm64@0.14.54 - esbuild-darwin-64: registry.npmmirror.com/esbuild-darwin-64@0.14.54 - esbuild-darwin-arm64: registry.npmmirror.com/esbuild-darwin-arm64@0.14.54 - esbuild-freebsd-64: registry.npmmirror.com/esbuild-freebsd-64@0.14.54 - esbuild-freebsd-arm64: registry.npmmirror.com/esbuild-freebsd-arm64@0.14.54 - esbuild-linux-32: registry.npmmirror.com/esbuild-linux-32@0.14.54 - esbuild-linux-64: registry.npmmirror.com/esbuild-linux-64@0.14.54 - esbuild-linux-arm: registry.npmmirror.com/esbuild-linux-arm@0.14.54 - esbuild-linux-arm64: registry.npmmirror.com/esbuild-linux-arm64@0.14.54 - esbuild-linux-mips64le: registry.npmmirror.com/esbuild-linux-mips64le@0.14.54 - esbuild-linux-ppc64le: registry.npmmirror.com/esbuild-linux-ppc64le@0.14.54 - esbuild-linux-riscv64: registry.npmmirror.com/esbuild-linux-riscv64@0.14.54 - esbuild-linux-s390x: registry.npmmirror.com/esbuild-linux-s390x@0.14.54 - esbuild-netbsd-64: registry.npmmirror.com/esbuild-netbsd-64@0.14.54 - esbuild-openbsd-64: registry.npmmirror.com/esbuild-openbsd-64@0.14.54 - esbuild-sunos-64: registry.npmmirror.com/esbuild-sunos-64@0.14.54 - esbuild-windows-32: registry.npmmirror.com/esbuild-windows-32@0.14.54 - esbuild-windows-64: registry.npmmirror.com/esbuild-windows-64@0.14.54 - esbuild-windows-arm64: registry.npmmirror.com/esbuild-windows-arm64@0.14.54 - dev: true - - registry.npmmirror.com/esbuild@0.18.20: - resolution: {integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild/-/esbuild-0.18.20.tgz} - name: esbuild - version: 0.18.20 - engines: {node: '>=12'} - hasBin: true - requiresBuild: true - optionalDependencies: - '@esbuild/android-arm': registry.npmmirror.com/@esbuild/android-arm@0.18.20 - '@esbuild/android-arm64': registry.npmmirror.com/@esbuild/android-arm64@0.18.20 - '@esbuild/android-x64': registry.npmmirror.com/@esbuild/android-x64@0.18.20 - '@esbuild/darwin-arm64': registry.npmmirror.com/@esbuild/darwin-arm64@0.18.20 - '@esbuild/darwin-x64': registry.npmmirror.com/@esbuild/darwin-x64@0.18.20 - '@esbuild/freebsd-arm64': registry.npmmirror.com/@esbuild/freebsd-arm64@0.18.20 - '@esbuild/freebsd-x64': registry.npmmirror.com/@esbuild/freebsd-x64@0.18.20 - '@esbuild/linux-arm': registry.npmmirror.com/@esbuild/linux-arm@0.18.20 - '@esbuild/linux-arm64': registry.npmmirror.com/@esbuild/linux-arm64@0.18.20 - '@esbuild/linux-ia32': registry.npmmirror.com/@esbuild/linux-ia32@0.18.20 - '@esbuild/linux-loong64': registry.npmmirror.com/@esbuild/linux-loong64@0.18.20 - '@esbuild/linux-mips64el': registry.npmmirror.com/@esbuild/linux-mips64el@0.18.20 - '@esbuild/linux-ppc64': registry.npmmirror.com/@esbuild/linux-ppc64@0.18.20 - '@esbuild/linux-riscv64': registry.npmmirror.com/@esbuild/linux-riscv64@0.18.20 - '@esbuild/linux-s390x': registry.npmmirror.com/@esbuild/linux-s390x@0.18.20 - '@esbuild/linux-x64': registry.npmmirror.com/@esbuild/linux-x64@0.18.20 - '@esbuild/netbsd-x64': registry.npmmirror.com/@esbuild/netbsd-x64@0.18.20 - '@esbuild/openbsd-x64': registry.npmmirror.com/@esbuild/openbsd-x64@0.18.20 - '@esbuild/sunos-x64': registry.npmmirror.com/@esbuild/sunos-x64@0.18.20 - '@esbuild/win32-arm64': registry.npmmirror.com/@esbuild/win32-arm64@0.18.20 - '@esbuild/win32-ia32': registry.npmmirror.com/@esbuild/win32-ia32@0.18.20 - '@esbuild/win32-x64': registry.npmmirror.com/@esbuild/win32-x64@0.18.20 - - 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} - name: escape-html - version: 1.0.3 - - 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} - name: escape-string-regexp - version: 1.0.5 - engines: {node: '>=0.8.0'} - dev: false - - registry.npmmirror.com/escape-string-regexp@5.0.0: - resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz} - name: escape-string-regexp - version: 5.0.0 - engines: {node: '>=12'} - 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} - name: estree-walker - version: 2.0.2 - - 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} - name: etag - version: 1.8.1 - engines: {node: '>= 0.6'} - dev: false - - registry.npmmirror.com/expand-brackets@2.1.4: - resolution: {integrity: sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/expand-brackets/-/expand-brackets-2.1.4.tgz} - name: expand-brackets - version: 2.1.4 - engines: {node: '>=0.10.0'} - dependencies: - debug: registry.npmmirror.com/debug@2.6.9 - define-property: registry.npmmirror.com/define-property@0.2.5 - extend-shallow: registry.npmmirror.com/extend-shallow@2.0.1 - posix-character-classes: registry.npmmirror.com/posix-character-classes@0.1.1 - regex-not: registry.npmmirror.com/regex-not@1.0.2 - snapdragon: registry.npmmirror.com/snapdragon@0.8.2 - to-regex: registry.npmmirror.com/to-regex@3.0.2 - transitivePeerDependencies: - - supports-color - dev: false - - registry.npmmirror.com/extend-shallow@2.0.1: - resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/extend-shallow/-/extend-shallow-2.0.1.tgz} - name: extend-shallow - version: 2.0.1 - engines: {node: '>=0.10.0'} - dependencies: - is-extendable: registry.npmmirror.com/is-extendable@0.1.1 - dev: false - - registry.npmmirror.com/extend-shallow@3.0.2: - resolution: {integrity: sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/extend-shallow/-/extend-shallow-3.0.2.tgz} - name: extend-shallow - version: 3.0.2 - engines: {node: '>=0.10.0'} - dependencies: - assign-symbols: registry.npmmirror.com/assign-symbols@1.0.0 - is-extendable: registry.npmmirror.com/is-extendable@1.0.1 - dev: false - - registry.npmmirror.com/extglob@2.0.4: - resolution: {integrity: sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/extglob/-/extglob-2.0.4.tgz} - name: extglob - version: 2.0.4 - engines: {node: '>=0.10.0'} - dependencies: - array-unique: registry.npmmirror.com/array-unique@0.3.2 - define-property: registry.npmmirror.com/define-property@1.0.0 - expand-brackets: registry.npmmirror.com/expand-brackets@2.1.4 - extend-shallow: registry.npmmirror.com/extend-shallow@2.0.1 - fragment-cache: registry.npmmirror.com/fragment-cache@0.2.1 - regex-not: registry.npmmirror.com/regex-not@1.0.2 - snapdragon: registry.npmmirror.com/snapdragon@0.8.2 - to-regex: registry.npmmirror.com/to-regex@3.0.2 - transitivePeerDependencies: - - supports-color - dev: false - - registry.npmmirror.com/fast-glob@3.3.1: - resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fast-glob/-/fast-glob-3.3.1.tgz} - name: fast-glob - version: 3.3.1 - engines: {node: '>=8.6.0'} - 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 - glob-parent: registry.npmmirror.com/glob-parent@5.1.2 - merge2: registry.npmmirror.com/merge2@1.4.1 - micromatch: registry.npmmirror.com/micromatch@4.0.5 - - registry.npmmirror.com/fastq@1.15.0: - resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fastq/-/fastq-1.15.0.tgz} - name: fastq - version: 1.15.0 - dependencies: - reusify: registry.npmmirror.com/reusify@1.0.4 - - registry.npmmirror.com/fill-range@4.0.0: - resolution: {integrity: sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fill-range/-/fill-range-4.0.0.tgz} - name: fill-range - version: 4.0.0 - engines: {node: '>=0.10.0'} - dependencies: - extend-shallow: registry.npmmirror.com/extend-shallow@2.0.1 - is-number: registry.npmmirror.com/is-number@3.0.0 - repeat-string: registry.npmmirror.com/repeat-string@1.6.1 - to-regex-range: registry.npmmirror.com/to-regex-range@2.1.1 - dev: false - - 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} - name: fill-range - version: 7.0.1 - engines: {node: '>=8'} - dependencies: - to-regex-range: registry.npmmirror.com/to-regex-range@5.0.1 - - registry.npmmirror.com/finalhandler@1.1.2: - resolution: {integrity: sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/finalhandler/-/finalhandler-1.1.2.tgz} - name: finalhandler - version: 1.1.2 - engines: {node: '>= 0.8'} - dependencies: - debug: registry.npmmirror.com/debug@2.6.9 - encodeurl: registry.npmmirror.com/encodeurl@1.0.2 - escape-html: registry.npmmirror.com/escape-html@1.0.3 - on-finished: registry.npmmirror.com/on-finished@2.3.0 - parseurl: registry.npmmirror.com/parseurl@1.3.3 - statuses: registry.npmmirror.com/statuses@1.5.0 - unpipe: registry.npmmirror.com/unpipe@1.0.0 - transitivePeerDependencies: - - supports-color - dev: true - - registry.npmmirror.com/follow-redirects@1.15.3: - resolution: {integrity: sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/follow-redirects/-/follow-redirects-1.15.3.tgz} - name: follow-redirects - version: 1.15.3 - engines: {node: '>=4.0'} - peerDependencies: - debug: '*' - peerDependenciesMeta: - debug: - optional: true - dev: false - - registry.npmmirror.com/for-in@1.0.2: - resolution: {integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/for-in/-/for-in-1.0.2.tgz} - name: for-in - version: 1.0.2 - engines: {node: '>=0.10.0'} - dev: false - - registry.npmmirror.com/form-data@4.0.0: - resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/form-data/-/form-data-4.0.0.tgz} - name: form-data - version: 4.0.0 - engines: {node: '>= 6'} - dependencies: - asynckit: registry.npmmirror.com/asynckit@0.4.0 - combined-stream: registry.npmmirror.com/combined-stream@1.0.8 - mime-types: registry.npmmirror.com/mime-types@2.1.35 - dev: false - - registry.npmmirror.com/fragment-cache@0.2.1: - resolution: {integrity: sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fragment-cache/-/fragment-cache-0.2.1.tgz} - name: fragment-cache - version: 0.2.1 - engines: {node: '>=0.10.0'} - dependencies: - map-cache: registry.npmmirror.com/map-cache@0.2.2 - dev: false - - 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} - name: fs-extra - version: 10.1.0 - engines: {node: '>=12'} - dependencies: - graceful-fs: registry.npmmirror.com/graceful-fs@4.2.11 - jsonfile: registry.npmmirror.com/jsonfile@6.1.0 - universalify: registry.npmmirror.com/universalify@2.0.0 - dev: false - - registry.npmmirror.com/fsevents@2.3.3: - resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fsevents/-/fsevents-2.3.3.tgz} - name: fsevents - version: 2.3.3 - 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} - name: function-bind - version: 1.1.1 - dev: true - - registry.npmmirror.com/get-value@2.0.6: - resolution: {integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/get-value/-/get-value-2.0.6.tgz} - name: get-value - version: 2.0.6 - engines: {node: '>=0.10.0'} - dev: false - - 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} - name: glob-parent - version: 5.1.2 - engines: {node: '>= 6'} - dependencies: - is-glob: registry.npmmirror.com/is-glob@4.0.3 - - registry.npmmirror.com/graceful-fs@4.2.11: - resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/graceful-fs/-/graceful-fs-4.2.11.tgz} - name: graceful-fs - version: 4.2.11 - dev: false - - registry.npmmirror.com/has-ansi@2.0.0: - resolution: {integrity: sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/has-ansi/-/has-ansi-2.0.0.tgz} - name: has-ansi - version: 2.0.0 - engines: {node: '>=0.10.0'} - dependencies: - ansi-regex: registry.npmmirror.com/ansi-regex@2.1.1 - dev: false - - registry.npmmirror.com/has-flag@1.0.0: - resolution: {integrity: sha512-DyYHfIYwAJmjAjSSPKANxI8bFY9YtFrgkAfinBojQ8YJTOuOuav64tMUJv584SES4xl74PmuaevIyaLESHdTAA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/has-flag/-/has-flag-1.0.0.tgz} - name: has-flag - version: 1.0.0 - engines: {node: '>=0.10.0'} - dev: false - - 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-value@0.3.1: - resolution: {integrity: sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/has-value/-/has-value-0.3.1.tgz} - name: has-value - version: 0.3.1 - engines: {node: '>=0.10.0'} - dependencies: - get-value: registry.npmmirror.com/get-value@2.0.6 - has-values: registry.npmmirror.com/has-values@0.1.4 - isobject: registry.npmmirror.com/isobject@2.1.0 - dev: false - - registry.npmmirror.com/has-value@1.0.0: - resolution: {integrity: sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/has-value/-/has-value-1.0.0.tgz} - name: has-value - version: 1.0.0 - engines: {node: '>=0.10.0'} - dependencies: - get-value: registry.npmmirror.com/get-value@2.0.6 - has-values: registry.npmmirror.com/has-values@1.0.0 - isobject: registry.npmmirror.com/isobject@3.0.1 - dev: false - - registry.npmmirror.com/has-values@0.1.4: - resolution: {integrity: sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/has-values/-/has-values-0.1.4.tgz} - name: has-values - version: 0.1.4 - engines: {node: '>=0.10.0'} - dev: false - - registry.npmmirror.com/has-values@1.0.0: - resolution: {integrity: sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/has-values/-/has-values-1.0.0.tgz} - name: has-values - version: 1.0.0 - engines: {node: '>=0.10.0'} - dependencies: - is-number: registry.npmmirror.com/is-number@3.0.0 - kind-of: registry.npmmirror.com/kind-of@4.0.0 - dev: false - - 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} - name: has - version: 1.0.3 - engines: {node: '>= 0.4.0'} - dependencies: - function-bind: registry.npmmirror.com/function-bind@1.1.1 - dev: true - - registry.npmmirror.com/he@1.2.0: - resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/he/-/he-1.2.0.tgz} - name: he - version: 1.2.0 - hasBin: true - - registry.npmmirror.com/htmlparser2@3.10.1: - resolution: {integrity: sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/htmlparser2/-/htmlparser2-3.10.1.tgz} - name: htmlparser2 - version: 3.10.1 - dependencies: - domelementtype: registry.npmmirror.com/domelementtype@1.3.1 - domhandler: registry.npmmirror.com/domhandler@2.4.2 - domutils: registry.npmmirror.com/domutils@1.7.0 - entities: registry.npmmirror.com/entities@1.1.2 - inherits: registry.npmmirror.com/inherits@2.0.4 - readable-stream: registry.npmmirror.com/readable-stream@3.6.2 - dev: false - - registry.npmmirror.com/image-size@0.5.5: - resolution: {integrity: sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/image-size/-/image-size-0.5.5.tgz} - name: image-size - version: 0.5.5 - engines: {node: '>=0.10.0'} - hasBin: true - dev: false - - registry.npmmirror.com/immutable@4.3.4: - resolution: {integrity: sha512-fsXeu4J4i6WNWSikpI88v/PcVflZz+6kMhUfIwc5SY+poQRPnaf5V7qds6SUyUN3cVxEzuCab7QIoLOQ+DQ1wA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/immutable/-/immutable-4.3.4.tgz} - name: immutable - version: 4.3.4 - - 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} - name: inherits - version: 2.0.4 - dev: false - - registry.npmmirror.com/is-accessor-descriptor@0.1.6: - resolution: {integrity: sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz} - name: is-accessor-descriptor - version: 0.1.6 - engines: {node: '>=0.10.0'} - dependencies: - kind-of: registry.npmmirror.com/kind-of@3.2.2 - dev: false - - registry.npmmirror.com/is-accessor-descriptor@1.0.0: - resolution: {integrity: sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz} - name: is-accessor-descriptor - version: 1.0.0 - engines: {node: '>=0.10.0'} - dependencies: - kind-of: registry.npmmirror.com/kind-of@6.0.3 - dev: false - - 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} - name: is-binary-path - version: 2.1.0 - engines: {node: '>=8'} - dependencies: - binary-extensions: registry.npmmirror.com/binary-extensions@2.2.0 - - registry.npmmirror.com/is-buffer@1.1.6: - resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-buffer/-/is-buffer-1.1.6.tgz} - name: is-buffer - version: 1.1.6 - dev: false - - registry.npmmirror.com/is-core-module@2.13.0: - resolution: {integrity: sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-core-module/-/is-core-module-2.13.0.tgz} - name: is-core-module - version: 2.13.0 - dependencies: - has: registry.npmmirror.com/has@1.0.3 - dev: true - - registry.npmmirror.com/is-data-descriptor@0.1.4: - resolution: {integrity: sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz} - name: is-data-descriptor - version: 0.1.4 - engines: {node: '>=0.10.0'} - dependencies: - kind-of: registry.npmmirror.com/kind-of@3.2.2 - dev: false - - registry.npmmirror.com/is-data-descriptor@1.0.0: - resolution: {integrity: sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz} - name: is-data-descriptor - version: 1.0.0 - engines: {node: '>=0.10.0'} - dependencies: - kind-of: registry.npmmirror.com/kind-of@6.0.3 - dev: false - - registry.npmmirror.com/is-descriptor@0.1.6: - resolution: {integrity: sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-descriptor/-/is-descriptor-0.1.6.tgz} - name: is-descriptor - version: 0.1.6 - engines: {node: '>=0.10.0'} - dependencies: - is-accessor-descriptor: registry.npmmirror.com/is-accessor-descriptor@0.1.6 - is-data-descriptor: registry.npmmirror.com/is-data-descriptor@0.1.4 - kind-of: registry.npmmirror.com/kind-of@5.1.0 - dev: false - - registry.npmmirror.com/is-descriptor@1.0.2: - resolution: {integrity: sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-descriptor/-/is-descriptor-1.0.2.tgz} - name: is-descriptor - version: 1.0.2 - engines: {node: '>=0.10.0'} - dependencies: - is-accessor-descriptor: registry.npmmirror.com/is-accessor-descriptor@1.0.0 - is-data-descriptor: registry.npmmirror.com/is-data-descriptor@1.0.0 - kind-of: registry.npmmirror.com/kind-of@6.0.3 - dev: false - - registry.npmmirror.com/is-extendable@0.1.1: - resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-extendable/-/is-extendable-0.1.1.tgz} - name: is-extendable - version: 0.1.1 - engines: {node: '>=0.10.0'} - dev: false - - registry.npmmirror.com/is-extendable@1.0.1: - resolution: {integrity: sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-extendable/-/is-extendable-1.0.1.tgz} - name: is-extendable - version: 1.0.1 - engines: {node: '>=0.10.0'} - dependencies: - is-plain-object: registry.npmmirror.com/is-plain-object@2.0.4 - dev: false - - 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} - name: is-extglob - version: 2.1.1 - 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} - name: is-glob - version: 4.0.3 - engines: {node: '>=0.10.0'} - dependencies: - is-extglob: registry.npmmirror.com/is-extglob@2.1.1 - - registry.npmmirror.com/is-number@3.0.0: - resolution: {integrity: sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-number/-/is-number-3.0.0.tgz} - name: is-number - version: 3.0.0 - engines: {node: '>=0.10.0'} - dependencies: - kind-of: registry.npmmirror.com/kind-of@3.2.2 - dev: false - - 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} - name: is-number - version: 7.0.0 - engines: {node: '>=0.12.0'} - - registry.npmmirror.com/is-plain-obj@1.1.0: - resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz} - name: is-plain-obj - version: 1.1.0 - engines: {node: '>=0.10.0'} - dev: false - - registry.npmmirror.com/is-plain-object@2.0.4: - resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-plain-object/-/is-plain-object-2.0.4.tgz} - name: is-plain-object - version: 2.0.4 - engines: {node: '>=0.10.0'} - dependencies: - isobject: registry.npmmirror.com/isobject@3.0.1 - dev: false - - registry.npmmirror.com/is-windows@1.0.2: - resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-windows/-/is-windows-1.0.2.tgz} - name: is-windows - version: 1.0.2 - engines: {node: '>=0.10.0'} - dev: false - - registry.npmmirror.com/isarray@1.0.0: - resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/isarray/-/isarray-1.0.0.tgz} - name: isarray - version: 1.0.0 - dev: false - - registry.npmmirror.com/isobject@2.1.0: - resolution: {integrity: sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/isobject/-/isobject-2.1.0.tgz} - name: isobject - version: 2.1.0 - engines: {node: '>=0.10.0'} - dependencies: - isarray: registry.npmmirror.com/isarray@1.0.0 - dev: false - - registry.npmmirror.com/isobject@3.0.1: - resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/isobject/-/isobject-3.0.1.tgz} - name: isobject - version: 3.0.1 - engines: {node: '>=0.10.0'} - dev: false - - registry.npmmirror.com/js-base64@2.6.4: - resolution: {integrity: sha512-pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/js-base64/-/js-base64-2.6.4.tgz} - name: js-base64 - version: 2.6.4 - dev: false - - registry.npmmirror.com/json5@1.0.2: - resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/json5/-/json5-1.0.2.tgz} - name: json5 - version: 1.0.2 - hasBin: true - dependencies: - minimist: registry.npmmirror.com/minimist@1.2.8 - dev: false - - registry.npmmirror.com/jsonc-parser@3.2.0: - resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jsonc-parser/-/jsonc-parser-3.2.0.tgz} - name: jsonc-parser - version: 3.2.0 - dev: true - - 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} - name: jsonfile - version: 6.1.0 - dependencies: - universalify: registry.npmmirror.com/universalify@2.0.0 - optionalDependencies: - graceful-fs: registry.npmmirror.com/graceful-fs@4.2.11 - dev: false - - registry.npmmirror.com/kind-of@3.2.2: - resolution: {integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/kind-of/-/kind-of-3.2.2.tgz} - name: kind-of - version: 3.2.2 - engines: {node: '>=0.10.0'} - dependencies: - is-buffer: registry.npmmirror.com/is-buffer@1.1.6 - dev: false - - registry.npmmirror.com/kind-of@4.0.0: - resolution: {integrity: sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/kind-of/-/kind-of-4.0.0.tgz} - name: kind-of - version: 4.0.0 - engines: {node: '>=0.10.0'} - dependencies: - is-buffer: registry.npmmirror.com/is-buffer@1.1.6 - dev: false - - registry.npmmirror.com/kind-of@5.1.0: - resolution: {integrity: sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/kind-of/-/kind-of-5.1.0.tgz} - name: kind-of - version: 5.1.0 - engines: {node: '>=0.10.0'} - dev: false - - registry.npmmirror.com/kind-of@6.0.3: - resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/kind-of/-/kind-of-6.0.3.tgz} - name: kind-of - version: 6.0.3 - engines: {node: '>=0.10.0'} - dev: false - - registry.npmmirror.com/loader-utils@1.4.2: - resolution: {integrity: sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/loader-utils/-/loader-utils-1.4.2.tgz} - name: loader-utils - version: 1.4.2 - engines: {node: '>=4.0.0'} - dependencies: - big.js: registry.npmmirror.com/big.js@5.2.2 - emojis-list: registry.npmmirror.com/emojis-list@3.0.0 - json5: registry.npmmirror.com/json5@1.0.2 - dev: false - - registry.npmmirror.com/local-pkg@0.4.3: - resolution: {integrity: sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/local-pkg/-/local-pkg-0.4.3.tgz} - name: local-pkg - version: 0.4.3 - engines: {node: '>=14'} - dev: true - - registry.npmmirror.com/lodash-es@4.17.21: - resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/lodash-es/-/lodash-es-4.17.21.tgz} - name: lodash-es - version: 4.17.21 - dev: false - - registry.npmmirror.com/lodash-unified@1.0.3(@types/lodash-es@4.17.9)(lodash-es@4.17.21)(lodash@4.17.21): - resolution: {integrity: sha512-WK9qSozxXOD7ZJQlpSqOT+om2ZfcT4yO+03FuzAHD0wF6S0l0090LRPDx3vhTTLZ8cFKpBn+IOcVXK6qOcIlfQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/lodash-unified/-/lodash-unified-1.0.3.tgz} - id: registry.npmmirror.com/lodash-unified/1.0.3 - name: lodash-unified - version: 1.0.3 - peerDependencies: - '@types/lodash-es': '*' - lodash: '*' - lodash-es: '*' - dependencies: - '@types/lodash-es': registry.npmmirror.com/@types/lodash-es@4.17.9 - lodash: registry.npmmirror.com/lodash@4.17.21 - lodash-es: registry.npmmirror.com/lodash-es@4.17.21 - dev: false - - 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} - name: lodash - version: 4.17.21 - dev: false - - 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.30.3: - resolution: {integrity: sha512-B7xGbll2fG/VjP+SWg4sX3JynwIU0mjoTc6MPpKNuIvftk6u6vqhDnk1R80b8C2GBR6ywqy+1DcKBrevBg+bmw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/magic-string/-/magic-string-0.30.3.tgz} - name: magic-string - version: 0.30.3 - engines: {node: '>=12'} - dependencies: - '@jridgewell/sourcemap-codec': registry.npmmirror.com/@jridgewell/sourcemap-codec@1.4.15 - - registry.npmmirror.com/map-cache@0.2.2: - resolution: {integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/map-cache/-/map-cache-0.2.2.tgz} - name: map-cache - version: 0.2.2 - engines: {node: '>=0.10.0'} - dev: false - - registry.npmmirror.com/map-visit@1.0.0: - resolution: {integrity: sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/map-visit/-/map-visit-1.0.0.tgz} - name: map-visit - version: 1.0.0 - engines: {node: '>=0.10.0'} - dependencies: - object-visit: registry.npmmirror.com/object-visit@1.0.1 - dev: false - - registry.npmmirror.com/mdn-data@2.0.14: - resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/mdn-data/-/mdn-data-2.0.14.tgz} - name: mdn-data - version: 2.0.14 - dev: false - - registry.npmmirror.com/memoize-one@6.0.0: - resolution: {integrity: sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/memoize-one/-/memoize-one-6.0.0.tgz} - name: memoize-one - version: 6.0.0 - dev: false - - registry.npmmirror.com/merge-options@1.0.1: - resolution: {integrity: sha512-iuPV41VWKWBIOpBsjoxjDZw8/GbSfZ2mk7N1453bwMrfzdrIk7EzBd+8UVR6rkw67th7xnk9Dytl3J+lHPdxvg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/merge-options/-/merge-options-1.0.1.tgz} - name: merge-options - version: 1.0.1 - engines: {node: '>=4'} - dependencies: - is-plain-obj: registry.npmmirror.com/is-plain-obj@1.1.0 - dev: false - - 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} - name: merge2 - version: 1.4.1 - engines: {node: '>= 8'} - - registry.npmmirror.com/micromatch@3.1.0: - resolution: {integrity: sha512-3StSelAE+hnRvMs8IdVW7Uhk8CVed5tp+kLLGlBP6WiRAXS21GPGu/Nat4WNPXj2Eoc24B02SaeoyozPMfj0/g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/micromatch/-/micromatch-3.1.0.tgz} - name: micromatch - version: 3.1.0 - engines: {node: '>=0.10.0'} - dependencies: - arr-diff: registry.npmmirror.com/arr-diff@4.0.0 - array-unique: registry.npmmirror.com/array-unique@0.3.2 - braces: registry.npmmirror.com/braces@2.3.2 - define-property: registry.npmmirror.com/define-property@1.0.0 - extend-shallow: registry.npmmirror.com/extend-shallow@2.0.1 - extglob: registry.npmmirror.com/extglob@2.0.4 - fragment-cache: registry.npmmirror.com/fragment-cache@0.2.1 - kind-of: registry.npmmirror.com/kind-of@5.1.0 - nanomatch: registry.npmmirror.com/nanomatch@1.2.13 - object.pick: registry.npmmirror.com/object.pick@1.3.0 - regex-not: registry.npmmirror.com/regex-not@1.0.2 - snapdragon: registry.npmmirror.com/snapdragon@0.8.2 - to-regex: registry.npmmirror.com/to-regex@3.0.2 - transitivePeerDependencies: - - supports-color - dev: false - - 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} - name: micromatch - version: 4.0.5 - 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} - name: mime-db - version: 1.52.0 - engines: {node: '>= 0.6'} - dev: false - - 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} - name: mime-types - version: 2.1.35 - engines: {node: '>= 0.6'} - dependencies: - mime-db: registry.npmmirror.com/mime-db@1.52.0 - dev: false - - registry.npmmirror.com/mini-svg-data-uri@1.4.4: - resolution: {integrity: sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/mini-svg-data-uri/-/mini-svg-data-uri-1.4.4.tgz} - name: mini-svg-data-uri - version: 1.4.4 - hasBin: true - dev: true - - registry.npmmirror.com/minimatch@9.0.3: - resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/minimatch/-/minimatch-9.0.3.tgz} - name: minimatch - version: 9.0.3 - engines: {node: '>=16 || 14 >=14.17'} - dependencies: - brace-expansion: registry.npmmirror.com/brace-expansion@2.0.1 - dev: true - - registry.npmmirror.com/minimist@1.2.8: - resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/minimist/-/minimist-1.2.8.tgz} - name: minimist - version: 1.2.8 - dev: false - - registry.npmmirror.com/mitt@3.0.1: - resolution: {integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/mitt/-/mitt-3.0.1.tgz} - name: mitt - version: 3.0.1 - dev: false - - registry.npmmirror.com/mixin-deep@1.3.2: - resolution: {integrity: sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/mixin-deep/-/mixin-deep-1.3.2.tgz} - name: mixin-deep - version: 1.3.2 - engines: {node: '>=0.10.0'} - dependencies: - for-in: registry.npmmirror.com/for-in@1.0.2 - is-extendable: registry.npmmirror.com/is-extendable@1.0.1 - dev: false - - registry.npmmirror.com/mlly@1.4.2: - resolution: {integrity: sha512-i/Ykufi2t1EZ6NaPLdfnZk2AX8cs0d+mTzVKuPfqPKPatxLApaBoxJQ9x1/uckXtrS/U5oisPMDkNs0yQTaBRg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/mlly/-/mlly-1.4.2.tgz} - name: mlly - version: 1.4.2 - dependencies: - acorn: registry.npmmirror.com/acorn@8.10.0 - pathe: registry.npmmirror.com/pathe@1.1.1 - pkg-types: registry.npmmirror.com/pkg-types@1.0.3 - ufo: registry.npmmirror.com/ufo@1.3.0 - dev: true - - registry.npmmirror.com/mockjs@1.1.0: - resolution: {integrity: sha512-eQsKcWzIaZzEZ07NuEyO4Nw65g0hdWAyurVol1IPl1gahRwY+svqzfgfey8U8dahLwG44d6/RwEzuK52rSa/JQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/mockjs/-/mockjs-1.1.0.tgz} - name: mockjs - version: 1.1.0 - hasBin: true - dependencies: - commander: registry.npmmirror.com/commander@11.0.0 - dev: true - - 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} - name: ms - version: 2.0.0 - - 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} - name: ms - version: 2.1.2 - - registry.npmmirror.com/muggle-string@0.3.1: - resolution: {integrity: sha512-ckmWDJjphvd/FvZawgygcUeQCxzvohjFO5RxTjj4eq8kw359gFF3E1brjfI+viLMxss5JrHTDRHZvu2/tuy0Qg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/muggle-string/-/muggle-string-0.3.1.tgz} - name: muggle-string - version: 0.3.1 - dev: true - - registry.npmmirror.com/nanoid@3.3.6: - resolution: {integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/nanoid/-/nanoid-3.3.6.tgz} - name: nanoid - version: 3.3.6 - engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} - hasBin: true - - registry.npmmirror.com/nanomatch@1.2.13: - resolution: {integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/nanomatch/-/nanomatch-1.2.13.tgz} - name: nanomatch - version: 1.2.13 - engines: {node: '>=0.10.0'} - dependencies: - arr-diff: registry.npmmirror.com/arr-diff@4.0.0 - array-unique: registry.npmmirror.com/array-unique@0.3.2 - define-property: registry.npmmirror.com/define-property@2.0.2 - extend-shallow: registry.npmmirror.com/extend-shallow@3.0.2 - fragment-cache: registry.npmmirror.com/fragment-cache@0.2.1 - is-windows: registry.npmmirror.com/is-windows@1.0.2 - kind-of: registry.npmmirror.com/kind-of@6.0.3 - object.pick: registry.npmmirror.com/object.pick@1.3.0 - regex-not: registry.npmmirror.com/regex-not@1.0.2 - snapdragon: registry.npmmirror.com/snapdragon@0.8.2 - to-regex: registry.npmmirror.com/to-regex@3.0.2 - transitivePeerDependencies: - - supports-color - dev: false - - 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} - name: normalize-path - version: 3.0.0 - engines: {node: '>=0.10.0'} - - registry.npmmirror.com/normalize-wheel-es@1.2.0: - resolution: {integrity: sha512-Wj7+EJQ8mSuXr2iWfnujrimU35R2W4FAErEyTmJoJ7ucwTn2hOUSsRehMb5RSYkxXGTM7Y9QpvPmp++w5ftoJw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/normalize-wheel-es/-/normalize-wheel-es-1.2.0.tgz} - name: normalize-wheel-es - version: 1.2.0 - dev: false - - 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: false - - registry.npmmirror.com/object-assign@4.1.1: - resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/object-assign/-/object-assign-4.1.1.tgz} - name: object-assign - version: 4.1.1 - engines: {node: '>=0.10.0'} - dev: false - - registry.npmmirror.com/object-copy@0.1.0: - resolution: {integrity: sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/object-copy/-/object-copy-0.1.0.tgz} - name: object-copy - version: 0.1.0 - engines: {node: '>=0.10.0'} - dependencies: - copy-descriptor: registry.npmmirror.com/copy-descriptor@0.1.1 - define-property: registry.npmmirror.com/define-property@0.2.5 - kind-of: registry.npmmirror.com/kind-of@3.2.2 - dev: false - - registry.npmmirror.com/object-visit@1.0.1: - resolution: {integrity: sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/object-visit/-/object-visit-1.0.1.tgz} - name: object-visit - version: 1.0.1 - engines: {node: '>=0.10.0'} - dependencies: - isobject: registry.npmmirror.com/isobject@3.0.1 - dev: false - - registry.npmmirror.com/object.pick@1.3.0: - resolution: {integrity: sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/object.pick/-/object.pick-1.3.0.tgz} - name: object.pick - version: 1.3.0 - engines: {node: '>=0.10.0'} - dependencies: - isobject: registry.npmmirror.com/isobject@3.0.1 - dev: false - - registry.npmmirror.com/on-finished@2.3.0: - resolution: {integrity: sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/on-finished/-/on-finished-2.3.0.tgz} - name: on-finished - version: 2.3.0 - engines: {node: '>= 0.8'} - dependencies: - ee-first: registry.npmmirror.com/ee-first@1.1.1 - dev: true - - 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} - name: parseurl - version: 1.3.3 - engines: {node: '>= 0.8'} - dev: true - - registry.npmmirror.com/pascalcase@0.1.1: - resolution: {integrity: sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/pascalcase/-/pascalcase-0.1.1.tgz} - name: pascalcase - version: 0.1.1 - engines: {node: '>=0.10.0'} - dev: false - - 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} - name: path-parse - version: 1.0.7 - dev: true - - registry.npmmirror.com/path-to-regexp@6.2.1: - resolution: {integrity: sha512-JLyh7xT1kizaEvcaXOQwOc2/Yhw6KZOvPf1S8401UyLk86CU79LN3vl7ztXGm/pZ+YjoyAJ4rxmHwbkBXJX+yw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/path-to-regexp/-/path-to-regexp-6.2.1.tgz} - name: path-to-regexp - version: 6.2.1 - 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} - name: pathe - version: 0.2.0 - dev: false - - registry.npmmirror.com/pathe@1.1.1: - resolution: {integrity: sha512-d+RQGp0MAYTIaDBIMmOfMwz3E+LOZnxx1HZd5R18mmCZY0QBlK0LDZfPc8FW8Ed2DlvsuE6PRjroDY+wg4+j/Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/pathe/-/pathe-1.1.1.tgz} - name: pathe - version: 1.1.1 - 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} - 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} - name: picomatch - version: 2.3.1 - engines: {node: '>=8.6'} - - registry.npmmirror.com/pinia@2.1.6(typescript@5.0.2)(vue@3.3.4): - resolution: {integrity: sha512-bIU6QuE5qZviMmct5XwCesXelb5VavdOWKWaB17ggk++NUwQWWbP5YnsONTk3b752QkW9sACiR81rorpeOMSvQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/pinia/-/pinia-2.1.6.tgz} - id: registry.npmmirror.com/pinia/2.1.6 - name: pinia - version: 2.1.6 - peerDependencies: - '@vue/composition-api': ^1.4.0 - typescript: '>=4.4.4' - vue: ^2.6.14 || ^3.3.0 - peerDependenciesMeta: - '@vue/composition-api': - optional: true - typescript: - optional: true - dependencies: - '@vue/devtools-api': registry.npmmirror.com/@vue/devtools-api@6.5.0 - typescript: registry.npmmirror.com/typescript@5.0.2 - vue: registry.npmmirror.com/vue@3.3.4 - vue-demi: registry.npmmirror.com/vue-demi@0.14.6(vue@3.3.4) - dev: false - - registry.npmmirror.com/pkg-types@1.0.3: - resolution: {integrity: sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/pkg-types/-/pkg-types-1.0.3.tgz} - name: pkg-types - version: 1.0.3 - dependencies: - jsonc-parser: registry.npmmirror.com/jsonc-parser@3.2.0 - mlly: registry.npmmirror.com/mlly@1.4.2 - pathe: registry.npmmirror.com/pathe@1.1.1 - dev: true - - registry.npmmirror.com/posix-character-classes@0.1.1: - resolution: {integrity: sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz} - name: posix-character-classes - version: 0.1.1 - engines: {node: '>=0.10.0'} - dev: false - - registry.npmmirror.com/postcss-prefix-selector@1.16.0(postcss@5.2.18): - resolution: {integrity: sha512-rdVMIi7Q4B0XbXqNUEI+Z4E+pueiu/CS5E6vRCQommzdQ/sgsS4dK42U7GX8oJR+TJOtT+Qv3GkNo6iijUMp3Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/postcss-prefix-selector/-/postcss-prefix-selector-1.16.0.tgz} - id: registry.npmmirror.com/postcss-prefix-selector/1.16.0 - name: postcss-prefix-selector - version: 1.16.0 - peerDependencies: - postcss: '>4 <9' - dependencies: - postcss: registry.npmmirror.com/postcss@5.2.18 - dev: false - - registry.npmmirror.com/postcss@5.2.18: - resolution: {integrity: sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/postcss/-/postcss-5.2.18.tgz} - name: postcss - version: 5.2.18 - engines: {node: '>=0.12'} - dependencies: - chalk: registry.npmmirror.com/chalk@1.1.3 - js-base64: registry.npmmirror.com/js-base64@2.6.4 - source-map: registry.npmmirror.com/source-map@0.5.7 - supports-color: registry.npmmirror.com/supports-color@3.2.3 - dev: false - - registry.npmmirror.com/postcss@8.4.30: - resolution: {integrity: sha512-7ZEao1g4kd68l97aWG/etQKPKq07us0ieSZ2TnFDk11i0ZfDW2AwKHYU8qv4MZKqN2fdBfg+7q0ES06UA73C1g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/postcss/-/postcss-8.4.30.tgz} - name: postcss - version: 8.4.30 - engines: {node: ^10 || ^12 || >=14} - dependencies: - nanoid: registry.npmmirror.com/nanoid@3.3.6 - picocolors: registry.npmmirror.com/picocolors@1.0.0 - source-map-js: registry.npmmirror.com/source-map-js@1.0.2 - - registry.npmmirror.com/posthtml-parser@0.2.1: - resolution: {integrity: sha512-nPC53YMqJnc/+1x4fRYFfm81KV2V+G9NZY+hTohpYg64Ay7NemWWcV4UWuy/SgMupqQ3kJ88M/iRfZmSnxT+pw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/posthtml-parser/-/posthtml-parser-0.2.1.tgz} - name: posthtml-parser - version: 0.2.1 - dependencies: - htmlparser2: registry.npmmirror.com/htmlparser2@3.10.1 - isobject: registry.npmmirror.com/isobject@2.1.0 - dev: false - - registry.npmmirror.com/posthtml-rename-id@1.0.12: - resolution: {integrity: sha512-UKXf9OF/no8WZo9edRzvuMenb6AD5hDLzIepJW+a4oJT+T/Lx7vfMYWT4aWlGNQh0WMhnUx1ipN9OkZ9q+ddEw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/posthtml-rename-id/-/posthtml-rename-id-1.0.12.tgz} - name: posthtml-rename-id - version: 1.0.12 - dependencies: - escape-string-regexp: registry.npmmirror.com/escape-string-regexp@1.0.5 - dev: false - - registry.npmmirror.com/posthtml-render@1.4.0: - resolution: {integrity: sha512-W1779iVHGfq0Fvh2PROhCe2QhB8mEErgqzo1wpIt36tCgChafP+hbXIhLDOM8ePJrZcFs0vkNEtdibEWVqChqw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/posthtml-render/-/posthtml-render-1.4.0.tgz} - name: posthtml-render - version: 1.4.0 - engines: {node: '>=10'} - dev: false - - registry.npmmirror.com/posthtml-svg-mode@1.0.3: - resolution: {integrity: sha512-hEqw9NHZ9YgJ2/0G7CECOeuLQKZi8HjWLkBaSVtOWjygQ9ZD8P7tqeowYs7WrFdKsWEKG7o+IlsPY8jrr0CJpQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/posthtml-svg-mode/-/posthtml-svg-mode-1.0.3.tgz} - name: posthtml-svg-mode - version: 1.0.3 - dependencies: - merge-options: registry.npmmirror.com/merge-options@1.0.1 - posthtml: registry.npmmirror.com/posthtml@0.9.2 - posthtml-parser: registry.npmmirror.com/posthtml-parser@0.2.1 - posthtml-render: registry.npmmirror.com/posthtml-render@1.4.0 - dev: false - - registry.npmmirror.com/posthtml@0.9.2: - resolution: {integrity: sha512-spBB5sgC4cv2YcW03f/IAUN1pgDJWNWD8FzkyY4mArLUMJW+KlQhlmUdKAHQuPfb00Jl5xIfImeOsf6YL8QK7Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/posthtml/-/posthtml-0.9.2.tgz} - name: posthtml - version: 0.9.2 - engines: {node: '>=0.10.0'} - dependencies: - posthtml-parser: registry.npmmirror.com/posthtml-parser@0.2.1 - posthtml-render: registry.npmmirror.com/posthtml-render@1.4.0 - dev: false - - registry.npmmirror.com/proxy-from-env@1.1.0: - resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz} - name: proxy-from-env - version: 1.1.0 - dev: false - - registry.npmmirror.com/query-string@4.3.4: - resolution: {integrity: sha512-O2XLNDBIg1DnTOa+2XrIwSiXEV8h2KImXUnjhhn2+UsvZ+Es2uyd5CCRTNQlDGbzUQOW3aYCBx9rVA6dzsiY7Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/query-string/-/query-string-4.3.4.tgz} - name: query-string - version: 4.3.4 - engines: {node: '>=0.10.0'} - dependencies: - object-assign: registry.npmmirror.com/object-assign@4.1.1 - strict-uri-encode: registry.npmmirror.com/strict-uri-encode@1.1.0 - dev: false - - 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} - name: queue-microtask - version: 1.2.3 - - registry.npmmirror.com/readable-stream@3.6.2: - resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/readable-stream/-/readable-stream-3.6.2.tgz} - name: readable-stream - version: 3.6.2 - engines: {node: '>= 6'} - dependencies: - inherits: registry.npmmirror.com/inherits@2.0.4 - string_decoder: registry.npmmirror.com/string_decoder@1.3.0 - util-deprecate: registry.npmmirror.com/util-deprecate@1.0.2 - dev: false - - 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} - name: readdirp - version: 3.6.0 - engines: {node: '>=8.10.0'} - dependencies: - picomatch: registry.npmmirror.com/picomatch@2.3.1 - - registry.npmmirror.com/regex-not@1.0.2: - resolution: {integrity: sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/regex-not/-/regex-not-1.0.2.tgz} - name: regex-not - version: 1.0.2 - engines: {node: '>=0.10.0'} - dependencies: - extend-shallow: registry.npmmirror.com/extend-shallow@3.0.2 - safe-regex: registry.npmmirror.com/safe-regex@1.1.0 - dev: false - - registry.npmmirror.com/remixicon@3.5.0: - resolution: {integrity: sha512-wNzWGKf4frb3tEmgvP5shry0n1OdTjjEk9RHLuRuAhfA50bvEdpKH1XWNUYrHUSjAQQkkdyIm+lf4mOuysIKTQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/remixicon/-/remixicon-3.5.0.tgz} - name: remixicon - version: 3.5.0 - dev: false - - registry.npmmirror.com/repeat-element@1.1.4: - resolution: {integrity: sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/repeat-element/-/repeat-element-1.1.4.tgz} - name: repeat-element - version: 1.1.4 - engines: {node: '>=0.10.0'} - dev: false - - registry.npmmirror.com/repeat-string@1.6.1: - resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/repeat-string/-/repeat-string-1.6.1.tgz} - name: repeat-string - version: 1.6.1 - engines: {node: '>=0.10'} - dev: false - - registry.npmmirror.com/resolve-url@0.2.1: - resolution: {integrity: sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/resolve-url/-/resolve-url-0.2.1.tgz} - name: resolve-url - version: 0.2.1 - deprecated: https://github.com/lydell/resolve-url#deprecated - dev: false - - registry.npmmirror.com/resolve@1.22.6: - resolution: {integrity: sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/resolve/-/resolve-1.22.6.tgz} - name: resolve - version: 1.22.6 - hasBin: true - dependencies: - is-core-module: registry.npmmirror.com/is-core-module@2.13.0 - path-parse: registry.npmmirror.com/path-parse@1.0.7 - supports-preserve-symlinks-flag: registry.npmmirror.com/supports-preserve-symlinks-flag@1.0.0 - dev: true - - registry.npmmirror.com/ret@0.1.15: - resolution: {integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ret/-/ret-0.1.15.tgz} - name: ret - version: 0.1.15 - engines: {node: '>=0.12'} - dev: false - - 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} - name: reusify - version: 1.0.4 - engines: {iojs: '>=1.0.0', node: '>=0.10.0'} - - registry.npmmirror.com/rollup@3.29.2: - resolution: {integrity: sha512-CJouHoZ27v6siztc21eEQGo0kIcE5D1gVPA571ez0mMYb25LGYGKnVNXpEj5MGlepmDWGXNjDB5q7uNiPHC11A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rollup/-/rollup-3.29.2.tgz} - name: rollup - version: 3.29.2 - engines: {node: '>=14.18.0', npm: '>=8.0.0'} - hasBin: true - optionalDependencies: - fsevents: registry.npmmirror.com/fsevents@2.3.3 - - 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} - name: run-parallel - version: 1.2.0 - dependencies: - queue-microtask: registry.npmmirror.com/queue-microtask@1.2.3 - - 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} - name: safe-buffer - version: 5.2.1 - dev: false - - registry.npmmirror.com/safe-regex@1.1.0: - resolution: {integrity: sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/safe-regex/-/safe-regex-1.1.0.tgz} - name: safe-regex - version: 1.1.0 - dependencies: - ret: registry.npmmirror.com/ret@0.1.15 - dev: false - - registry.npmmirror.com/sass@1.68.0: - resolution: {integrity: sha512-Lmj9lM/fef0nQswm1J2HJcEsBUba4wgNx2fea6yJHODREoMFnwRpZydBnX/RjyXw2REIwdkbqE4hrTo4qfDBUA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/sass/-/sass-1.68.0.tgz} - name: sass - version: 1.68.0 - engines: {node: '>=14.0.0'} - hasBin: true - dependencies: - chokidar: registry.npmmirror.com/chokidar@3.5.3 - immutable: registry.npmmirror.com/immutable@4.3.4 - source-map-js: registry.npmmirror.com/source-map-js@1.0.2 - - registry.npmmirror.com/scule@1.0.0: - resolution: {integrity: sha512-4AsO/FrViE/iDNEPaAQlb77tf0csuq27EsVpy6ett584EcRTp6pTDLoGWVxCD77y5iU5FauOvhsI4o1APwPoSQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/scule/-/scule-1.0.0.tgz} - name: scule - version: 1.0.0 - dev: true - - registry.npmmirror.com/semver@7.5.4: - resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/semver/-/semver-7.5.4.tgz} - name: semver - version: 7.5.4 - engines: {node: '>=10'} - hasBin: true - dependencies: - lru-cache: registry.npmmirror.com/lru-cache@6.0.0 - dev: true - - registry.npmmirror.com/set-value@2.0.1: - resolution: {integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/set-value/-/set-value-2.0.1.tgz} - name: set-value - version: 2.0.1 - engines: {node: '>=0.10.0'} - dependencies: - extend-shallow: registry.npmmirror.com/extend-shallow@2.0.1 - is-extendable: registry.npmmirror.com/is-extendable@0.1.1 - is-plain-object: registry.npmmirror.com/is-plain-object@2.0.4 - split-string: registry.npmmirror.com/split-string@3.1.0 - dev: false - - registry.npmmirror.com/snapdragon-node@2.1.1: - resolution: {integrity: sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz} - name: snapdragon-node - version: 2.1.1 - engines: {node: '>=0.10.0'} - dependencies: - define-property: registry.npmmirror.com/define-property@1.0.0 - isobject: registry.npmmirror.com/isobject@3.0.1 - snapdragon-util: registry.npmmirror.com/snapdragon-util@3.0.1 - dev: false - - registry.npmmirror.com/snapdragon-util@3.0.1: - resolution: {integrity: sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz} - name: snapdragon-util - version: 3.0.1 - engines: {node: '>=0.10.0'} - dependencies: - kind-of: registry.npmmirror.com/kind-of@3.2.2 - dev: false - - registry.npmmirror.com/snapdragon@0.8.2: - resolution: {integrity: sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/snapdragon/-/snapdragon-0.8.2.tgz} - name: snapdragon - version: 0.8.2 - engines: {node: '>=0.10.0'} - dependencies: - base: registry.npmmirror.com/base@0.11.2 - debug: registry.npmmirror.com/debug@2.6.9 - define-property: registry.npmmirror.com/define-property@0.2.5 - extend-shallow: registry.npmmirror.com/extend-shallow@2.0.1 - map-cache: registry.npmmirror.com/map-cache@0.2.2 - source-map: registry.npmmirror.com/source-map@0.5.7 - source-map-resolve: registry.npmmirror.com/source-map-resolve@0.5.3 - use: registry.npmmirror.com/use@3.1.1 - transitivePeerDependencies: - - supports-color - dev: false - - 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} - name: source-map-js - version: 1.0.2 - engines: {node: '>=0.10.0'} - - registry.npmmirror.com/source-map-resolve@0.5.3: - resolution: {integrity: sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/source-map-resolve/-/source-map-resolve-0.5.3.tgz} - name: source-map-resolve - version: 0.5.3 - deprecated: See https://github.com/lydell/source-map-resolve#deprecated - dependencies: - atob: registry.npmmirror.com/atob@2.1.2 - decode-uri-component: registry.npmmirror.com/decode-uri-component@0.2.2 - resolve-url: registry.npmmirror.com/resolve-url@0.2.1 - source-map-url: registry.npmmirror.com/source-map-url@0.4.1 - urix: registry.npmmirror.com/urix@0.1.0 - dev: false - - registry.npmmirror.com/source-map-url@0.4.1: - resolution: {integrity: sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/source-map-url/-/source-map-url-0.4.1.tgz} - name: source-map-url - version: 0.4.1 - deprecated: See https://github.com/lydell/source-map-url#deprecated - dev: false - - registry.npmmirror.com/source-map@0.5.7: - resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/source-map/-/source-map-0.5.7.tgz} - name: source-map - version: 0.5.7 - engines: {node: '>=0.10.0'} - dev: false - - 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} - name: source-map - version: 0.6.1 - engines: {node: '>=0.10.0'} - dev: false - - registry.npmmirror.com/split-string@3.1.0: - resolution: {integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/split-string/-/split-string-3.1.0.tgz} - name: split-string - version: 3.1.0 - engines: {node: '>=0.10.0'} - dependencies: - extend-shallow: registry.npmmirror.com/extend-shallow@3.0.2 - dev: false - - registry.npmmirror.com/stable@0.1.8: - resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/stable/-/stable-0.1.8.tgz} - name: stable - version: 0.1.8 - deprecated: 'Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility' - dev: false - - registry.npmmirror.com/static-extend@0.1.2: - resolution: {integrity: sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/static-extend/-/static-extend-0.1.2.tgz} - name: static-extend - version: 0.1.2 - engines: {node: '>=0.10.0'} - dependencies: - define-property: registry.npmmirror.com/define-property@0.2.5 - object-copy: registry.npmmirror.com/object-copy@0.1.0 - dev: false - - registry.npmmirror.com/statuses@1.5.0: - resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/statuses/-/statuses-1.5.0.tgz} - name: statuses - version: 1.5.0 - engines: {node: '>= 0.6'} - dev: true - - registry.npmmirror.com/strict-uri-encode@1.1.0: - resolution: {integrity: sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz} - name: strict-uri-encode - version: 1.1.0 - engines: {node: '>=0.10.0'} - dev: false - - registry.npmmirror.com/string_decoder@1.3.0: - resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/string_decoder/-/string_decoder-1.3.0.tgz} - name: string_decoder - version: 1.3.0 - dependencies: - safe-buffer: registry.npmmirror.com/safe-buffer@5.2.1 - dev: false - - registry.npmmirror.com/strip-ansi@3.0.1: - resolution: {integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/strip-ansi/-/strip-ansi-3.0.1.tgz} - name: strip-ansi - version: 3.0.1 - engines: {node: '>=0.10.0'} - dependencies: - ansi-regex: registry.npmmirror.com/ansi-regex@2.1.1 - dev: false - - registry.npmmirror.com/strip-literal@1.3.0: - resolution: {integrity: sha512-PugKzOsyXpArk0yWmUwqOZecSO0GH0bPoctLcqNDH9J04pVW3lflYE0ujElBGTloevcxF5MofAOZ7C5l2b+wLg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/strip-literal/-/strip-literal-1.3.0.tgz} - name: strip-literal - version: 1.3.0 - dependencies: - acorn: registry.npmmirror.com/acorn@8.10.0 - dev: true - - registry.npmmirror.com/supports-color@2.0.0: - resolution: {integrity: sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/supports-color/-/supports-color-2.0.0.tgz} - name: supports-color - version: 2.0.0 - engines: {node: '>=0.8.0'} - dev: false - - registry.npmmirror.com/supports-color@3.2.3: - resolution: {integrity: sha512-Jds2VIYDrlp5ui7t8abHN2bjAu4LV/q4N2KivFPpGH0lrka0BMq/33AmECUXlKPcHigkNaqfXRENFju+rlcy+A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/supports-color/-/supports-color-3.2.3.tgz} - name: supports-color - version: 3.2.3 - engines: {node: '>=0.8.0'} - dependencies: - has-flag: registry.npmmirror.com/has-flag@1.0.0 - dev: false - - 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} - name: supports-preserve-symlinks-flag - version: 1.0.0 - engines: {node: '>= 0.4'} - dev: true - - registry.npmmirror.com/svg-baker@1.7.0: - resolution: {integrity: sha512-nibslMbkXOIkqKVrfcncwha45f97fGuAOn1G99YwnwTj8kF9YiM6XexPcUso97NxOm6GsP0SIvYVIosBis1xLg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/svg-baker/-/svg-baker-1.7.0.tgz} - name: svg-baker - version: 1.7.0 - dependencies: - bluebird: registry.npmmirror.com/bluebird@3.7.2 - clone: registry.npmmirror.com/clone@2.1.2 - he: registry.npmmirror.com/he@1.2.0 - image-size: registry.npmmirror.com/image-size@0.5.5 - loader-utils: registry.npmmirror.com/loader-utils@1.4.2 - merge-options: registry.npmmirror.com/merge-options@1.0.1 - micromatch: registry.npmmirror.com/micromatch@3.1.0 - postcss: registry.npmmirror.com/postcss@5.2.18 - postcss-prefix-selector: registry.npmmirror.com/postcss-prefix-selector@1.16.0(postcss@5.2.18) - posthtml-rename-id: registry.npmmirror.com/posthtml-rename-id@1.0.12 - posthtml-svg-mode: registry.npmmirror.com/posthtml-svg-mode@1.0.3 - query-string: registry.npmmirror.com/query-string@4.3.4 - traverse: registry.npmmirror.com/traverse@0.6.7 - transitivePeerDependencies: - - supports-color - dev: false - - registry.npmmirror.com/svgo@2.8.0: - resolution: {integrity: sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/svgo/-/svgo-2.8.0.tgz} - name: svgo - version: 2.8.0 - engines: {node: '>=10.13.0'} - hasBin: true - dependencies: - '@trysound/sax': registry.npmmirror.com/@trysound/sax@0.2.0 - commander: registry.npmmirror.com/commander@7.2.0 - css-select: registry.npmmirror.com/css-select@4.3.0 - css-tree: registry.npmmirror.com/css-tree@1.1.3 - csso: registry.npmmirror.com/csso@4.2.0 - picocolors: registry.npmmirror.com/picocolors@1.0.0 - stable: registry.npmmirror.com/stable@0.1.8 - dev: false - - 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} - name: to-fast-properties - version: 2.0.0 - engines: {node: '>=4'} - - registry.npmmirror.com/to-object-path@0.3.0: - resolution: {integrity: sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/to-object-path/-/to-object-path-0.3.0.tgz} - name: to-object-path - version: 0.3.0 - engines: {node: '>=0.10.0'} - dependencies: - kind-of: registry.npmmirror.com/kind-of@3.2.2 - dev: false - - registry.npmmirror.com/to-regex-range@2.1.1: - resolution: {integrity: sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/to-regex-range/-/to-regex-range-2.1.1.tgz} - name: to-regex-range - version: 2.1.1 - engines: {node: '>=0.10.0'} - dependencies: - is-number: registry.npmmirror.com/is-number@3.0.0 - repeat-string: registry.npmmirror.com/repeat-string@1.6.1 - dev: false - - 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} - name: to-regex-range - version: 5.0.1 - engines: {node: '>=8.0'} - dependencies: - is-number: registry.npmmirror.com/is-number@7.0.0 - - registry.npmmirror.com/to-regex@3.0.2: - resolution: {integrity: sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/to-regex/-/to-regex-3.0.2.tgz} - name: to-regex - version: 3.0.2 - engines: {node: '>=0.10.0'} - dependencies: - define-property: registry.npmmirror.com/define-property@2.0.2 - extend-shallow: registry.npmmirror.com/extend-shallow@3.0.2 - regex-not: registry.npmmirror.com/regex-not@1.0.2 - safe-regex: registry.npmmirror.com/safe-regex@1.1.0 - dev: false - - registry.npmmirror.com/traverse@0.6.7: - resolution: {integrity: sha512-/y956gpUo9ZNCb99YjxG7OaslxZWHfCHAUUfshwqOXmxUIvqLjVO581BT+gM59+QV9tFe6/CGG53tsA1Y7RSdg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/traverse/-/traverse-0.6.7.tgz} - name: traverse - version: 0.6.7 - dev: false - - registry.npmmirror.com/typescript@5.0.2: - resolution: {integrity: sha512-wVORMBGO/FAs/++blGNeAVdbNKtIh1rbBL2EyQ1+J9lClJ93KiiKe8PmFIVdXhHcyv44SL9oglmfeSsndo0jRw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/typescript/-/typescript-5.0.2.tgz} - name: typescript - version: 5.0.2 - engines: {node: '>=12.20'} - hasBin: true - - registry.npmmirror.com/ufo@1.3.0: - resolution: {integrity: sha512-bRn3CsoojyNStCZe0BG0Mt4Nr/4KF+rhFlnNXybgqt5pXHNFRlqinSoQaTrGyzE4X8aHplSb+TorH+COin9Yxw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ufo/-/ufo-1.3.0.tgz} - name: ufo - version: 1.3.0 - dev: true - - registry.npmmirror.com/unimport@3.3.0: - resolution: {integrity: sha512-3jhq3ZG5hFZzrWGDCpx83kjPzefP/EeuKkIO1T0MA4Zwj+dO/Og1mFvZ4aZ5WSDm0FVbbdVIRH1zKBG7c4wOpg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/unimport/-/unimport-3.3.0.tgz} - name: unimport - version: 3.3.0 - dependencies: - '@rollup/pluginutils': registry.npmmirror.com/@rollup/pluginutils@5.0.4 - escape-string-regexp: registry.npmmirror.com/escape-string-regexp@5.0.0 - fast-glob: registry.npmmirror.com/fast-glob@3.3.1 - local-pkg: registry.npmmirror.com/local-pkg@0.4.3 - magic-string: registry.npmmirror.com/magic-string@0.30.3 - mlly: registry.npmmirror.com/mlly@1.4.2 - pathe: registry.npmmirror.com/pathe@1.1.1 - pkg-types: registry.npmmirror.com/pkg-types@1.0.3 - scule: registry.npmmirror.com/scule@1.0.0 - strip-literal: registry.npmmirror.com/strip-literal@1.3.0 - unplugin: registry.npmmirror.com/unplugin@1.5.0 - transitivePeerDependencies: - - rollup - dev: true - - registry.npmmirror.com/union-value@1.0.1: - resolution: {integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/union-value/-/union-value-1.0.1.tgz} - name: union-value - version: 1.0.1 - engines: {node: '>=0.10.0'} - dependencies: - arr-union: registry.npmmirror.com/arr-union@3.1.0 - get-value: registry.npmmirror.com/get-value@2.0.6 - is-extendable: registry.npmmirror.com/is-extendable@0.1.1 - set-value: registry.npmmirror.com/set-value@2.0.1 - dev: false - - 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} - name: universalify - version: 2.0.0 - engines: {node: '>= 10.0.0'} - dev: false - - 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} - name: unpipe - version: 1.0.0 - engines: {node: '>= 0.8'} - dev: true - - registry.npmmirror.com/unplugin-auto-import@0.16.6: - resolution: {integrity: sha512-M+YIITkx3C/Hg38hp8HmswP5mShUUyJOzpifv7RTlAbeFlO2Tyw0pwrogSSxnipHDPTtI8VHFBpkYkNKzYSuyA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/unplugin-auto-import/-/unplugin-auto-import-0.16.6.tgz} - name: unplugin-auto-import - version: 0.16.6 - engines: {node: '>=14'} - peerDependencies: - '@nuxt/kit': ^3.2.2 - '@vueuse/core': '*' - peerDependenciesMeta: - '@nuxt/kit': - optional: true - '@vueuse/core': - optional: true - dependencies: - '@antfu/utils': registry.npmmirror.com/@antfu/utils@0.7.6 - '@rollup/pluginutils': registry.npmmirror.com/@rollup/pluginutils@5.0.4 - fast-glob: registry.npmmirror.com/fast-glob@3.3.1 - local-pkg: registry.npmmirror.com/local-pkg@0.4.3 - magic-string: registry.npmmirror.com/magic-string@0.30.3 - minimatch: registry.npmmirror.com/minimatch@9.0.3 - unimport: registry.npmmirror.com/unimport@3.3.0 - unplugin: registry.npmmirror.com/unplugin@1.5.0 - transitivePeerDependencies: - - rollup - dev: true - - registry.npmmirror.com/unplugin-vue-components@0.25.2(vue@3.3.4): - resolution: {integrity: sha512-OVmLFqILH6w+eM8fyt/d/eoJT9A6WO51NZLf1vC5c1FZ4rmq2bbGxTy8WP2Jm7xwFdukaIdv819+UI7RClPyCA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.25.2.tgz} - id: registry.npmmirror.com/unplugin-vue-components/0.25.2 - name: unplugin-vue-components - version: 0.25.2 - engines: {node: '>=14'} - peerDependencies: - '@babel/parser': ^7.15.8 - '@nuxt/kit': ^3.2.2 - vue: 2 || 3 - peerDependenciesMeta: - '@babel/parser': - optional: true - '@nuxt/kit': - optional: true - dependencies: - '@antfu/utils': registry.npmmirror.com/@antfu/utils@0.7.6 - '@rollup/pluginutils': registry.npmmirror.com/@rollup/pluginutils@5.0.4 - chokidar: registry.npmmirror.com/chokidar@3.5.3 - debug: registry.npmmirror.com/debug@4.3.4 - fast-glob: registry.npmmirror.com/fast-glob@3.3.1 - local-pkg: registry.npmmirror.com/local-pkg@0.4.3 - magic-string: registry.npmmirror.com/magic-string@0.30.3 - minimatch: registry.npmmirror.com/minimatch@9.0.3 - resolve: registry.npmmirror.com/resolve@1.22.6 - unplugin: registry.npmmirror.com/unplugin@1.5.0 - vue: registry.npmmirror.com/vue@3.3.4 - transitivePeerDependencies: - - rollup - - supports-color - dev: true - - registry.npmmirror.com/unplugin@1.5.0: - resolution: {integrity: sha512-9ZdRwbh/4gcm1JTOkp9lAkIDrtOyOxgHmY7cjuwI8L/2RTikMcVG25GsZwNAgRuap3iDw2jeq7eoqtAsz5rW3A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/unplugin/-/unplugin-1.5.0.tgz} - name: unplugin - version: 1.5.0 - dependencies: - acorn: registry.npmmirror.com/acorn@8.10.0 - chokidar: registry.npmmirror.com/chokidar@3.5.3 - webpack-sources: registry.npmmirror.com/webpack-sources@3.2.3 - webpack-virtual-modules: registry.npmmirror.com/webpack-virtual-modules@0.5.0 - dev: true - - registry.npmmirror.com/unset-value@1.0.0: - resolution: {integrity: sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/unset-value/-/unset-value-1.0.0.tgz} - name: unset-value - version: 1.0.0 - engines: {node: '>=0.10.0'} - dependencies: - has-value: registry.npmmirror.com/has-value@0.3.1 - isobject: registry.npmmirror.com/isobject@3.0.1 - dev: false - - registry.npmmirror.com/urix@0.1.0: - resolution: {integrity: sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/urix/-/urix-0.1.0.tgz} - name: urix - version: 0.1.0 - deprecated: Please see https://github.com/lydell/urix#deprecated - dev: false - - registry.npmmirror.com/use@3.1.1: - resolution: {integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/use/-/use-3.1.1.tgz} - name: use - version: 3.1.1 - engines: {node: '>=0.10.0'} - dev: false - - 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} - name: util-deprecate - version: 1.0.2 - dev: false - - 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} - name: utils-merge - version: 1.0.1 - engines: {node: '>= 0.4.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} - name: vary - version: 1.1.2 - engines: {node: '>= 0.8'} - dev: false - - registry.npmmirror.com/vite-plugin-mock@2.9.8(mockjs@1.1.0)(vite@4.4.5): - resolution: {integrity: sha512-YTQM5Sn7t+/DNOwTkr+W26QGTCk1PrDkhGHslTJ90lIPJhJtDTwuSkEYMAuLP9TcVQ/qExTFx/x/GE3kxJ05sw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vite-plugin-mock/-/vite-plugin-mock-2.9.8.tgz} - id: registry.npmmirror.com/vite-plugin-mock/2.9.8 - name: vite-plugin-mock - version: 2.9.8 - engines: {node: '>=12.0.0'} - peerDependencies: - mockjs: '>=1.1.0' - vite: '>=2.0.0' - dependencies: - '@types/mockjs': registry.npmmirror.com/@types/mockjs@1.0.7 - chalk: registry.npmmirror.com/chalk@4.1.2 - chokidar: registry.npmmirror.com/chokidar@3.5.3 - connect: registry.npmmirror.com/connect@3.7.0 - debug: registry.npmmirror.com/debug@4.3.4 - esbuild: registry.npmmirror.com/esbuild@0.14.54 - fast-glob: registry.npmmirror.com/fast-glob@3.3.1 - mockjs: registry.npmmirror.com/mockjs@1.1.0 - path-to-regexp: registry.npmmirror.com/path-to-regexp@6.2.1 - vite: registry.npmmirror.com/vite@4.4.5(sass@1.68.0) - transitivePeerDependencies: - - supports-color - dev: true - - registry.npmmirror.com/vite-plugin-svg-icons@2.0.1(vite@4.4.5): - resolution: {integrity: sha512-6ktD+DhV6Rz3VtedYvBKKVA2eXF+sAQVaKkKLDSqGUfnhqXl3bj5PPkVTl3VexfTuZy66PmINi8Q6eFnVfRUmA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vite-plugin-svg-icons/-/vite-plugin-svg-icons-2.0.1.tgz} - id: registry.npmmirror.com/vite-plugin-svg-icons/2.0.1 - name: vite-plugin-svg-icons - version: 2.0.1 - peerDependencies: - vite: '>=2.0.0' - dependencies: - '@types/svgo': registry.npmmirror.com/@types/svgo@2.6.4 - cors: registry.npmmirror.com/cors@2.8.5 - debug: registry.npmmirror.com/debug@4.3.4 - etag: registry.npmmirror.com/etag@1.8.1 - fs-extra: registry.npmmirror.com/fs-extra@10.1.0 - pathe: registry.npmmirror.com/pathe@0.2.0 - svg-baker: registry.npmmirror.com/svg-baker@1.7.0 - svgo: registry.npmmirror.com/svgo@2.8.0 - vite: registry.npmmirror.com/vite@4.4.5(sass@1.68.0) - transitivePeerDependencies: - - supports-color - dev: false - - registry.npmmirror.com/vite@4.4.5(sass@1.68.0): - resolution: {integrity: sha512-4m5kEtAWHYr0O1Fu7rZp64CfO1PsRGZlD3TAB32UmQlpd7qg15VF7ROqGN5CyqN7HFuwr7ICNM2+fDWRqFEKaA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vite/-/vite-4.4.5.tgz} - id: registry.npmmirror.com/vite/4.4.5 - name: vite - version: 4.4.5 - engines: {node: ^14.18.0 || >=16.0.0} - hasBin: true - peerDependencies: - '@types/node': '>= 14' - less: '*' - lightningcss: ^1.21.0 - sass: '*' - stylus: '*' - sugarss: '*' - terser: ^5.4.0 - peerDependenciesMeta: - '@types/node': - optional: true - less: - optional: true - lightningcss: - optional: true - sass: - optional: true - stylus: - optional: true - sugarss: - optional: true - terser: - optional: true - dependencies: - esbuild: registry.npmmirror.com/esbuild@0.18.20 - postcss: registry.npmmirror.com/postcss@8.4.30 - rollup: registry.npmmirror.com/rollup@3.29.2 - sass: registry.npmmirror.com/sass@1.68.0 - optionalDependencies: - fsevents: registry.npmmirror.com/fsevents@2.3.3 - - registry.npmmirror.com/vue-demi@0.14.6(vue@3.3.4): - resolution: {integrity: sha512-8QA7wrYSHKaYgUxDA5ZC24w+eHm3sYCbp0EzcDwKqN3p6HqtTCGR/GVsPyZW92unff4UlcSh++lmqDWN3ZIq4w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.6.tgz} - id: registry.npmmirror.com/vue-demi/0.14.6 - name: vue-demi - version: 0.14.6 - engines: {node: '>=12'} - hasBin: true - requiresBuild: true - peerDependencies: - '@vue/composition-api': ^1.0.0-rc.1 - vue: ^3.0.0-0 || ^2.6.0 - peerDependenciesMeta: - '@vue/composition-api': - optional: true - dependencies: - vue: registry.npmmirror.com/vue@3.3.4 - dev: false - - registry.npmmirror.com/vue-router@4.2.4(vue@3.3.4): - resolution: {integrity: sha512-9PISkmaCO02OzPVOMq2w82ilty6+xJmQrarYZDkjZBfl4RvYAlt4PKnEX21oW4KTtWfa9OuO/b3qk1Od3AEdCQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vue-router/-/vue-router-4.2.4.tgz} - id: registry.npmmirror.com/vue-router/4.2.4 - name: vue-router - version: 4.2.4 - peerDependencies: - vue: ^3.2.0 - dependencies: - '@vue/devtools-api': registry.npmmirror.com/@vue/devtools-api@6.5.0 - vue: registry.npmmirror.com/vue@3.3.4 - dev: false - - registry.npmmirror.com/vue-template-compiler@2.7.14: - resolution: {integrity: sha512-zyA5Y3ArvVG0NacJDkkzJuPQDF8RFeRlzV2vLeSnhSpieO6LK2OVbdLPi5MPPs09Ii+gMO8nY4S3iKQxBxDmWQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.7.14.tgz} - name: vue-template-compiler - version: 2.7.14 - dependencies: - de-indent: registry.npmmirror.com/de-indent@1.0.2 - he: registry.npmmirror.com/he@1.2.0 - dev: true - - registry.npmmirror.com/vue-tsc@1.8.5(typescript@5.0.2): - resolution: {integrity: sha512-Jr8PTghJIwp69MFsEZoADDcv2l+lXA8juyN/5AYA5zxyZNvIHjSbgKgkYIYc1qnihrOyIG1VOnfk4ZE0jqn8bw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vue-tsc/-/vue-tsc-1.8.5.tgz} - id: registry.npmmirror.com/vue-tsc/1.8.5 - name: vue-tsc - version: 1.8.5 - hasBin: true - peerDependencies: - typescript: '*' - dependencies: - '@vue/language-core': registry.npmmirror.com/@vue/language-core@1.8.5(typescript@5.0.2) - '@vue/typescript': registry.npmmirror.com/@vue/typescript@1.8.5(typescript@5.0.2) - semver: registry.npmmirror.com/semver@7.5.4 - typescript: registry.npmmirror.com/typescript@5.0.2 - dev: true - - registry.npmmirror.com/vue@3.3.4: - resolution: {integrity: sha512-VTyEYn3yvIeY1Py0WaYGZsXnz3y5UnGi62GjVEqvEGPl6nxbOrCXbVOTQWBEJUqAyTUk2uJ5JLVnYJ6ZzGbrSw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vue/-/vue-3.3.4.tgz} - name: vue - version: 3.3.4 - dependencies: - '@vue/compiler-dom': registry.npmmirror.com/@vue/compiler-dom@3.3.4 - '@vue/compiler-sfc': registry.npmmirror.com/@vue/compiler-sfc@3.3.4 - '@vue/runtime-dom': registry.npmmirror.com/@vue/runtime-dom@3.3.4 - '@vue/server-renderer': registry.npmmirror.com/@vue/server-renderer@3.3.4(vue@3.3.4) - '@vue/shared': registry.npmmirror.com/@vue/shared@3.3.4 - - registry.npmmirror.com/webpack-sources@3.2.3: - resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/webpack-sources/-/webpack-sources-3.2.3.tgz} - name: webpack-sources - version: 3.2.3 - engines: {node: '>=10.13.0'} - dev: true - - registry.npmmirror.com/webpack-virtual-modules@0.5.0: - resolution: {integrity: sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/webpack-virtual-modules/-/webpack-virtual-modules-0.5.0.tgz} - name: webpack-virtual-modules - version: 0.5.0 - dev: true - - 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 diff --git a/src/laoyou_admin/public/vite.svg b/src/laoyou_admin/public/vite.svg deleted file mode 100644 index e7b8dfb..0000000 --- a/src/laoyou_admin/public/vite.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src/laoyou_admin/src/App.vue b/src/laoyou_admin/src/App.vue deleted file mode 100644 index 197b8e1..0000000 --- a/src/laoyou_admin/src/App.vue +++ /dev/null @@ -1,9 +0,0 @@ - - - - - diff --git a/src/laoyou_admin/src/assets/images/icon/brand/leaf_bot.png b/src/laoyou_admin/src/assets/images/icon/brand/leaf_bot.png deleted file mode 100644 index c5a4c2d..0000000 Binary files a/src/laoyou_admin/src/assets/images/icon/brand/leaf_bot.png and /dev/null differ diff --git a/src/laoyou_admin/src/assets/images/icon/brand/leaf_top.png b/src/laoyou_admin/src/assets/images/icon/brand/leaf_top.png deleted file mode 100644 index bd0d720..0000000 Binary files a/src/laoyou_admin/src/assets/images/icon/brand/leaf_top.png and /dev/null differ diff --git a/src/laoyou_admin/src/assets/images/icon/login/covor_0.png b/src/laoyou_admin/src/assets/images/icon/login/covor_0.png deleted file mode 100644 index 16795a5..0000000 Binary files a/src/laoyou_admin/src/assets/images/icon/login/covor_0.png and /dev/null differ diff --git a/src/laoyou_admin/src/assets/svg/login/cover_0.svg b/src/laoyou_admin/src/assets/svg/login/cover_0.svg deleted file mode 100644 index dade775..0000000 --- a/src/laoyou_admin/src/assets/svg/login/cover_0.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src/laoyou_admin/src/assets/vue.svg b/src/laoyou_admin/src/assets/vue.svg deleted file mode 100644 index 770e9d3..0000000 --- a/src/laoyou_admin/src/assets/vue.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src/laoyou_admin/src/components/brand/brand.vue b/src/laoyou_admin/src/components/brand/brand.vue deleted file mode 100644 index 18e899e..0000000 --- a/src/laoyou_admin/src/components/brand/brand.vue +++ /dev/null @@ -1,53 +0,0 @@ - - - - diff --git a/src/laoyou_admin/src/components/button/commonButton.vue b/src/laoyou_admin/src/components/button/commonButton.vue deleted file mode 100644 index c4cbede..0000000 --- a/src/laoyou_admin/src/components/button/commonButton.vue +++ /dev/null @@ -1,29 +0,0 @@ - - - - - diff --git a/src/laoyou_admin/src/components/header/header.vue b/src/laoyou_admin/src/components/header/header.vue deleted file mode 100644 index 96bfb00..0000000 --- a/src/laoyou_admin/src/components/header/header.vue +++ /dev/null @@ -1,27 +0,0 @@ - - - - - diff --git a/src/laoyou_admin/src/components/input/iconInput.vue b/src/laoyou_admin/src/components/input/iconInput.vue deleted file mode 100644 index 829d27c..0000000 --- a/src/laoyou_admin/src/components/input/iconInput.vue +++ /dev/null @@ -1,142 +0,0 @@ - - - diff --git a/src/laoyou_admin/src/components/menu/leftMenu.vue b/src/laoyou_admin/src/components/menu/leftMenu.vue deleted file mode 100644 index d03246a..0000000 --- a/src/laoyou_admin/src/components/menu/leftMenu.vue +++ /dev/null @@ -1,142 +0,0 @@ - - - - - diff --git a/src/laoyou_admin/src/layouts/common/commonLayout.vue b/src/laoyou_admin/src/layouts/common/commonLayout.vue deleted file mode 100644 index b9ea7f1..0000000 --- a/src/laoyou_admin/src/layouts/common/commonLayout.vue +++ /dev/null @@ -1,38 +0,0 @@ - - - - - diff --git a/src/laoyou_admin/src/main.ts b/src/laoyou_admin/src/main.ts deleted file mode 100644 index 60648bb..0000000 --- a/src/laoyou_admin/src/main.ts +++ /dev/null @@ -1,23 +0,0 @@ -import { createApp } from 'vue' -import '@/style.css' -import 'element-plus/dist/index.css' -import 'remixicon/fonts/remixicon.css' - -import App from './App.vue' -import setupRouter from './router' -import pinia from '@/store' -import mitt from 'mitt' - - -const bootstrap = () => { - const app = createApp(App) - setupRouter(app) - app.use(pinia) - const bus = mitt() - app.config.globalProperties.$bus = bus - - - app.mount('#app') -} - -bootstrap() diff --git a/src/laoyou_admin/src/router/index.ts b/src/laoyou_admin/src/router/index.ts deleted file mode 100644 index f905034..0000000 --- a/src/laoyou_admin/src/router/index.ts +++ /dev/null @@ -1,17 +0,0 @@ -import { createRouter, createWebHistory, Router } from 'vue-router' -import { constantRoutes as routes } from '@/router/modules' -import { App } from 'vue'; -import guard from '@/router/modules/gurad' - -export const router: Router = createRouter({ - history: createWebHistory(), - routes: routes, -}); - -const setupRouter = (app: App) => { - guard(router) - app.use(router) -} - - -export default setupRouter; \ No newline at end of file diff --git a/src/laoyou_admin/src/router/modules/gurad.ts b/src/laoyou_admin/src/router/modules/gurad.ts deleted file mode 100644 index 0be3945..0000000 --- a/src/laoyou_admin/src/router/modules/gurad.ts +++ /dev/null @@ -1,68 +0,0 @@ -import { Router, RouteLocationNormalized } from 'vue-router' -import { useUserStoreForSetup } from '@/store/user' -import { storeToRefs } from 'pinia' -import { store, load, remove } from '@/utils/json' - -const enum LogintorageKey { - USER_TOKEN_KEY = 'user_token_key' -} - -class Gurad { - constructor( - private router: Router, - private gurad_token_expire: number = 0 - ) { } - public run() { - this.router.beforeEach((to, from) => this.beforeEach(to, from)) - } - private beforeEach(to: RouteLocationNormalized, from: RouteLocationNormalized) { - if (to.meta.auth && !this.authToken()) { - return 'login' - } - } - - private authToken() { - const now = Math.floor(Date.now() / 1000) - if (!isNaN(this.gurad_token_expire) && this.gurad_token_expire > now) { - console.log(this.gurad_token_expire); - return true; - } - // 检查浏览器中是否有缓存 - const storage: IStoreData | null = load(LogintorageKey.USER_TOKEN_KEY) - if (storage) { - // 检查是否过期 - if (storage.data.token_expire > now) { - // 未过期 - this.gurad_token_expire = storage.data.token_expire - return true - } - remove(LogintorageKey.USER_TOKEN_KEY) - } - - - this.gurad_token_expire = 0; - - const userStore = useUserStoreForSetup() - const { token, token_expire } = storeToRefs(userStore) - - // 获取当前时间戳 - - if (!token_expire.value || token_expire.value < now) { - return false - } - this.gurad_token_expire = token_expire.value - store(LogintorageKey.USER_TOKEN_KEY, { - data: { - token: token.value, - token_expire: token_expire.value - } - }) - return true - } - - -} - -export default (router: Router) => { - new Gurad(router).run() -} \ No newline at end of file diff --git a/src/laoyou_admin/src/router/modules/index.ts b/src/laoyou_admin/src/router/modules/index.ts deleted file mode 100644 index e25130b..0000000 --- a/src/laoyou_admin/src/router/modules/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from '@/router/modules/routes' \ No newline at end of file diff --git a/src/laoyou_admin/src/router/modules/routes.ts b/src/laoyou_admin/src/router/modules/routes.ts deleted file mode 100644 index 73648f8..0000000 --- a/src/laoyou_admin/src/router/modules/routes.ts +++ /dev/null @@ -1,64 +0,0 @@ -import { RouteRecordRaw } from 'vue-router' - -export const constantRoutes: Array = [ - { - path: '/', - name: 'Home', - meta: { - auth: true - }, - component: () => import('@/views/home/home.vue'), - children: [ - { - path: '/', - name: 'Dashboard', - meta: { - auth: true - }, - component: () => import('@/views/dashboard/dashboard.vue') - }, - { - path: '/order', - name: 'Order', - meta: { - auth: true - }, - component: () => import('@/views/order/order.vue') - }, - { - path: '/user', - name: 'User', - meta: { - auth: true - }, - component: () => import('@/views/user/user.vue') - }, - { - path: '/other', - name: 'Other', - meta: { - auth: true - }, - component: () => import('@/views/other/other.vue') - } - ] - }, - { - path: '/login', - name: 'Login', - meta: { - auth: false - }, - component: () => import('@/views/login/login.vue') - }, - - { - path: '/test', - name: 'Test', - meta: { - auth: false - }, - component: () => import('@/views/test/test.vue') - } - -] \ No newline at end of file diff --git a/src/laoyou_admin/src/store/count.ts b/src/laoyou_admin/src/store/count.ts deleted file mode 100644 index 9c08ee0..0000000 --- a/src/laoyou_admin/src/store/count.ts +++ /dev/null @@ -1,18 +0,0 @@ -import { defineStore } from 'pinia' - - -export const useCountStoreForSetup = defineStore('count', { - state: () => ({ - count: 0 - }), - actions: { - increment() { - this.count++ - } - }, - getters: { - doubleCount(): number { - return this.count * 2 - } - } -}) \ No newline at end of file diff --git a/src/laoyou_admin/src/store/index.ts b/src/laoyou_admin/src/store/index.ts deleted file mode 100644 index e90ba41..0000000 --- a/src/laoyou_admin/src/store/index.ts +++ /dev/null @@ -1,5 +0,0 @@ -import { createPinia } from 'pinia' - -const pinia = createPinia() - -export default pinia \ No newline at end of file diff --git a/src/laoyou_admin/src/store/user.ts b/src/laoyou_admin/src/store/user.ts deleted file mode 100644 index 06ecd35..0000000 --- a/src/laoyou_admin/src/store/user.ts +++ /dev/null @@ -1,60 +0,0 @@ -import axios from 'axios' -import { defineStore } from 'pinia' -import { computed, ref, h } from 'vue' -import { ElMessage } from 'element-plus' - -export const useUserStoreForSetup = defineStore('user', () => { - - //state - // 用户名 - const username = ref('') - // 登陆token - const token = ref('') - // token过期时间 - const token_expire = ref(0) - - - //getters - - // function - const login = async (userData: ILoginRequestData) => { - // axios - const res: IResponseData = await axios.post('/api/user/login', userData - ).then(res => res.data) - if (res.code === 0) { - username.value = res.data.username - token.value = res.data.token - // 获得当前时间戳 - const now = Math.floor(Date.now() / 1000) - token_expire.value = now + res.data.token_expire - ElMessage({ - message: '登陆成功', - type: 'success', - duration: 2000 - }) - return true - } else { - ElMessage({ - message: res.message, - type: 'error', - duration: 2000 - }) - return false - } - - } - - const logout = () => { - username.value = ''; - token.value = '' - } - - return { - username, - token, - token_expire, - login, - logout - } - -}) diff --git a/src/laoyou_admin/src/style.css b/src/laoyou_admin/src/style.css deleted file mode 100644 index 149ad67..0000000 --- a/src/laoyou_admin/src/style.css +++ /dev/null @@ -1,45 +0,0 @@ -:root { - /* color */ - --common-color: #386bf3; - --bg-primary-color: #fefefe; - --bg-left-container-color: #386bf3; - --common-icon-color: #a1a1a1; - --common-input-focus-color: #386bf3; - --menu-bg-color: #001529; - --menu-brand-bg-color: #002140; - --menu-brand-color: #fefefe; - --menu-item-color: #aaa; - --menu-footer-bg-color: #002140; - --content-bg-color: #ffffff; - --content-bg-bt-color: #f0f2f5; - - /* radius */ - --common-radius: 4px; - /* transition */ - --common-transition: all 0.3s; - /* h */ - --menu-item-height: 6vh; - --menu-brand-height: 7vh; - /* width */ - --menu-icon-size: 60px; - /* --padding */ - --common-padding: 1vw; - --common-padding-2: 2vw; - - - /* button */ - --button-primary-bg-color: #386bf3; - --button-primary-color: var(--bg-primary-color); - --button-warning-bg-color: #ff7300; - --button-warning-color: var(--bg-primary-color); -} - -* { - padding: 0; - margin: 0; - box-sizing: border-box; -} - -input[type="password"]::-ms-reveal { - display: none -} \ No newline at end of file diff --git a/src/laoyou_admin/src/typings/http.d.ts b/src/laoyou_admin/src/typings/http.d.ts deleted file mode 100644 index 078f529..0000000 --- a/src/laoyou_admin/src/typings/http.d.ts +++ /dev/null @@ -1,17 +0,0 @@ -interface IResponseData { - code: number - message: string - data: T -} - -interface ILoginRequestData { - input_username: string - input_password: string - verfiyCode: string -} - -interface ILoginResponseData { - username: string - token: string - token_expire: number -} \ No newline at end of file diff --git a/src/laoyou_admin/src/typings/index.d.ts b/src/laoyou_admin/src/typings/index.d.ts deleted file mode 100644 index 2ba8095..0000000 --- a/src/laoyou_admin/src/typings/index.d.ts +++ /dev/null @@ -1,5 +0,0 @@ -declare module "*.vue" { - import { DefineComponent } from "vue" - const component: DefineComponent<{}, {}, any> - export default component -} \ No newline at end of file diff --git a/src/laoyou_admin/src/typings/json.d.ts b/src/laoyou_admin/src/typings/json.d.ts deleted file mode 100644 index 9748a3a..0000000 --- a/src/laoyou_admin/src/typings/json.d.ts +++ /dev/null @@ -1,9 +0,0 @@ -interface IStoreData { - data: T -} - - -interface ILoginStorage { - token: string - token_expire: number -} \ No newline at end of file diff --git a/src/laoyou_admin/src/typings/order.d.ts b/src/laoyou_admin/src/typings/order.d.ts deleted file mode 100644 index 2b6337d..0000000 --- a/src/laoyou_admin/src/typings/order.d.ts +++ /dev/null @@ -1,14 +0,0 @@ -interface IOrder { - id: string; - createAt: string; - updateAt: string; - college: string; - pm_name: string; - pm_tel: number; - size: number; - order_time:string; - need:boolean; - status: number; - verify_url: string; - sub_pm_type: string; -} diff --git a/src/laoyou_admin/src/typings/router.d.ts b/src/laoyou_admin/src/typings/router.d.ts deleted file mode 100644 index 5986457..0000000 --- a/src/laoyou_admin/src/typings/router.d.ts +++ /dev/null @@ -1,7 +0,0 @@ -import 'vue-router' - -declare module 'vue-router' { - interface RouteMeta { - auth?: boolean; - } -} \ No newline at end of file diff --git a/src/laoyou_admin/src/utils/enum/size.ts b/src/laoyou_admin/src/utils/enum/size.ts deleted file mode 100644 index aa4f280..0000000 --- a/src/laoyou_admin/src/utils/enum/size.ts +++ /dev/null @@ -1,5 +0,0 @@ -export const enum _Size_type { - small = "small", - normal = "normal", - large = "large", -} \ No newline at end of file diff --git a/src/laoyou_admin/src/utils/json/index.ts b/src/laoyou_admin/src/utils/json/index.ts deleted file mode 100644 index ae720bd..0000000 --- a/src/laoyou_admin/src/utils/json/index.ts +++ /dev/null @@ -1,22 +0,0 @@ -// 序列化 -const store = (key: string, item: IStoreData) => { - const data_json = JSON.stringify(item) - // 存储在浏览器中 - localStorage.setItem(key, data_json) -} - -// 反序列化 -const load = (name: string): IStoreData | null => { - const data_json = localStorage.getItem(name) - if (data_json) { - return JSON.parse(data_json) - } - return null -} - -//删除 -const remove = (name: string) => { - localStorage.removeItem(name) -} - -export { store, load, remove } \ No newline at end of file diff --git a/src/laoyou_admin/src/utils/static/pub-use.ts b/src/laoyou_admin/src/utils/static/pub-use.ts deleted file mode 100644 index bcf1f5c..0000000 --- a/src/laoyou_admin/src/utils/static/pub-use.ts +++ /dev/null @@ -1,3 +0,0 @@ -export const getAssetsImage = (name: string) => { - return new URL(`/src/assets/${name}`, import.meta.url).href - } \ No newline at end of file diff --git a/src/laoyou_admin/src/views/dashboard/dashboard.vue b/src/laoyou_admin/src/views/dashboard/dashboard.vue deleted file mode 100644 index 49a6451..0000000 --- a/src/laoyou_admin/src/views/dashboard/dashboard.vue +++ /dev/null @@ -1,13 +0,0 @@ - - - - - diff --git a/src/laoyou_admin/src/views/home/home.vue b/src/laoyou_admin/src/views/home/home.vue deleted file mode 100644 index 782e36b..0000000 --- a/src/laoyou_admin/src/views/home/home.vue +++ /dev/null @@ -1,9 +0,0 @@ - - - - - diff --git a/src/laoyou_admin/src/views/login/login.vue b/src/laoyou_admin/src/views/login/login.vue deleted file mode 100644 index e5e5825..0000000 --- a/src/laoyou_admin/src/views/login/login.vue +++ /dev/null @@ -1,171 +0,0 @@ - - - - - diff --git a/src/laoyou_admin/src/views/order/order.vue b/src/laoyou_admin/src/views/order/order.vue deleted file mode 100644 index 9741b73..0000000 --- a/src/laoyou_admin/src/views/order/order.vue +++ /dev/null @@ -1,202 +0,0 @@ - - - - - diff --git a/src/laoyou_admin/src/views/other/other.vue b/src/laoyou_admin/src/views/other/other.vue deleted file mode 100644 index 95daf43..0000000 --- a/src/laoyou_admin/src/views/other/other.vue +++ /dev/null @@ -1,13 +0,0 @@ - - - - - diff --git a/src/laoyou_admin/src/views/test/test.vue b/src/laoyou_admin/src/views/test/test.vue deleted file mode 100644 index d93d87f..0000000 --- a/src/laoyou_admin/src/views/test/test.vue +++ /dev/null @@ -1,77 +0,0 @@ - - - - - diff --git a/src/laoyou_admin/src/views/user/user.vue b/src/laoyou_admin/src/views/user/user.vue deleted file mode 100644 index 4693674..0000000 --- a/src/laoyou_admin/src/views/user/user.vue +++ /dev/null @@ -1,13 +0,0 @@ - - - - - diff --git a/src/laoyou_admin/src/vite-env.d.ts b/src/laoyou_admin/src/vite-env.d.ts deleted file mode 100644 index 11f02fe..0000000 --- a/src/laoyou_admin/src/vite-env.d.ts +++ /dev/null @@ -1 +0,0 @@ -/// diff --git a/src/laoyou_admin/tsconfig.json b/src/laoyou_admin/tsconfig.json deleted file mode 100644 index 8bb17b4..0000000 --- a/src/laoyou_admin/tsconfig.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "compilerOptions": { - "target": "ES2020", - "useDefineForClassFields": true, - "module": "ESNext", - "lib": [ - "ES2020", - "DOM", - "DOM.Iterable" - ], - "skipLibCheck": true, - "baseUrl": ".", - "paths": { - "@/*": [ - "src/*" - ] - }, - /* Bundler mode */ - "moduleResolution": "bundler", - "allowImportingTsExtensions": true, - "resolveJsonModule": true, - "isolatedModules": true, - "noEmit": true, - "jsx": "preserve", - /* Linting */ - "strict": true, - "noUnusedLocals": false, - "noUnusedParameters": false, - "noFallthroughCasesInSwitch": true - }, - "include": [ - "src/**/*.ts", - "src/**/*.d.ts", - "src/**/*.tsx", - "src/**/*.vue" - ], - "references": [ - { - "path": "./tsconfig.node.json" - } - ] -} \ No newline at end of file diff --git a/src/laoyou_admin/tsconfig.node.json b/src/laoyou_admin/tsconfig.node.json deleted file mode 100644 index 42872c5..0000000 --- a/src/laoyou_admin/tsconfig.node.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "compilerOptions": { - "composite": true, - "skipLibCheck": true, - "module": "ESNext", - "moduleResolution": "bundler", - "allowSyntheticDefaultImports": true - }, - "include": ["vite.config.ts"] -} diff --git a/src/laoyou_admin/vite.config.ts b/src/laoyou_admin/vite.config.ts deleted file mode 100644 index f02a9a8..0000000 --- a/src/laoyou_admin/vite.config.ts +++ /dev/null @@ -1,31 +0,0 @@ -import { defineConfig } from 'vite' -import vue from '@vitejs/plugin-vue' -import AutoImport from 'unplugin-auto-import/vite' -import Components from 'unplugin-vue-components/vite' -import { ElementPlusResolver } from 'unplugin-vue-components/resolvers' -import { viteMockServe } from 'vite-plugin-mock' - -// https://vitejs.dev/config/ -export default defineConfig((config) => { - const { command } = config - return { - plugins: [ - AutoImport({ - resolvers: [ElementPlusResolver()] - }), - Components({ - resolvers: [ElementPlusResolver()] - }), - vue(), - viteMockServe({ - mockPath: 'mock', - enable: true - }) - ], - resolve: { - alias: { - '@': '/src' - } - } - } -}) diff --git a/src/laoyou_backend/.env b/src/laoyou_backend/.env deleted file mode 100644 index f924ce9..0000000 --- a/src/laoyou_backend/.env +++ /dev/null @@ -1,48 +0,0 @@ -# Environment variables declared in this file are automatically made available to Prisma. -# See the documentation for more detail: https://pris.ly/d/prisma-schema#accessing-environment-variables-from-the-schema - -# Prisma supports the native connection string format for PostgreSQL, MySQL, SQLite, SQL Server, MongoDB and CockroachDB. -# See the documentation for all the connection string options: https://pris.ly/d/connection-strings - -DATABASE_URL="mysql://root:yinhan123YH@101.42.154.98:3306/laoyou?schema=public" - - -# WX APP -WX_APP_ID="wx4c765f9dbc6e4ce8" -WX_APP_SECRET="dafe13d02bd6be50d8aa50d7f71ada72" -WX_LOGIN_URL="https://api.weixin.qq.com/sns/jscode2session" - -# JWT -JWT_SECRET_KEY = "LAOYOU_JWT_SECRET" -JWT_EXPIRES_IN = "7d" - -# COS -COS_IMG_BUCKET="laoyou-img-1300131488" -COS_FACE_BUCKET="laoyou-face-1300131488" -COS_REGION="ap-beijing" -COS_SECRET_ID="AKIDiN1RrOGD5qa7PYbQ6ZsESSDoHbigeOtE" -COS_SECRET_KEY="QjtzsX4SUK0V2Vq5Vkro8KMFyhT7dyBF" - - -# REDIS -REDIS_HOST= "localhost" -REDIS_PORT= 6379 - -# 高德 -GAODE_KEY = "0f2c68a72e09ff9faf121364dab92c05" -WEATHER_URL = "https://restapi.amap.com/v3/weather/weatherInfo" - - -#REDIS_CONFIG -REDIS_KEY_EXPIRE= 604800 # 7days - -#BAIDU - -# NLP -BAIDU_NLP_API_KEY = "i4uY0g3UGAzQWK0HfTcEUCI8" -BAIDU_NLP_SECRET_KEY = "edRjTDyzgFxtzrg54ofaiTAckBn6XX2Z" - -# FACE -BAIDU_FACE_API_KEY = "tLf2zfWOnxYbAYEF6rq561Yc" -BAIDU_FACE_SECRET_KEY = "0P4s7wc2o4h4kcADMcjMYezd670onr1n" -BAIDU_FACE_GROUP_ID = "common_user" diff --git a/src/laoyou_backend/.eslintrc.js b/src/laoyou_backend/.eslintrc.js deleted file mode 100644 index 259de13..0000000 --- a/src/laoyou_backend/.eslintrc.js +++ /dev/null @@ -1,25 +0,0 @@ -module.exports = { - parser: '@typescript-eslint/parser', - parserOptions: { - project: 'tsconfig.json', - tsconfigRootDir: __dirname, - sourceType: 'module', - }, - plugins: ['@typescript-eslint/eslint-plugin'], - extends: [ - 'plugin:@typescript-eslint/recommended', - 'plugin:prettier/recommended', - ], - root: true, - env: { - node: true, - jest: true, - }, - ignorePatterns: ['.eslintrc.js'], - rules: { - '@typescript-eslint/interface-name-prefix': 'off', - '@typescript-eslint/explicit-function-return-type': 'off', - '@typescript-eslint/explicit-module-boundary-types': 'off', - '@typescript-eslint/no-explicit-any': 'off', - }, -}; diff --git a/src/laoyou_backend/.gitignore b/src/laoyou_backend/.gitignore deleted file mode 100644 index 22f55ad..0000000 --- a/src/laoyou_backend/.gitignore +++ /dev/null @@ -1,35 +0,0 @@ -# compiled output -/dist -/node_modules - -# Logs -logs -*.log -npm-debug.log* -pnpm-debug.log* -yarn-debug.log* -yarn-error.log* -lerna-debug.log* - -# OS -.DS_Store - -# Tests -/coverage -/.nyc_output - -# IDEs and editors -/.idea -.project -.classpath -.c9/ -*.launch -.settings/ -*.sublime-workspace - -# IDE - VSCode -.vscode/* -!.vscode/settings.json -!.vscode/tasks.json -!.vscode/launch.json -!.vscode/extensions.json \ No newline at end of file diff --git a/src/laoyou_backend/.prettierrc b/src/laoyou_backend/.prettierrc deleted file mode 100644 index dcb7279..0000000 --- a/src/laoyou_backend/.prettierrc +++ /dev/null @@ -1,4 +0,0 @@ -{ - "singleQuote": true, - "trailingComma": "all" -} \ No newline at end of file diff --git a/src/laoyou_backend/README.md b/src/laoyou_backend/README.md deleted file mode 100644 index f5aa86c..0000000 --- a/src/laoyou_backend/README.md +++ /dev/null @@ -1,73 +0,0 @@ -

- Nest Logo -

- -[circleci-image]: https://img.shields.io/circleci/build/github/nestjs/nest/master?token=abc123def456 -[circleci-url]: https://circleci.com/gh/nestjs/nest - -

A progressive Node.js framework for building efficient and scalable server-side applications.

-

-NPM Version -Package License -NPM Downloads -CircleCI -Coverage -Discord -Backers on Open Collective -Sponsors on Open Collective - - Support us - -

- - -## Description - -[Nest](https://github.com/nestjs/nest) framework TypeScript starter repository. - -## Installation - -```bash -$ pnpm install -``` - -## Running the app - -```bash -# development -$ pnpm run start - -# watch mode -$ pnpm run start:dev - -# production mode -$ pnpm run start:prod -``` - -## Test - -```bash -# unit tests -$ pnpm run test - -# e2e tests -$ pnpm run test:e2e - -# test coverage -$ pnpm run test:cov -``` - -## Support - -Nest is an MIT-licensed open source project. It can grow thanks to the sponsors and support by the amazing backers. If you'd like to join them, please [read more here](https://docs.nestjs.com/support). - -## Stay in touch - -- Author - [Kamil Myśliwiec](https://kamilmysliwiec.com) -- Website - [https://nestjs.com](https://nestjs.com/) -- Twitter - [@nestframework](https://twitter.com/nestframework) - -## License - -Nest is [MIT licensed](LICENSE). diff --git a/src/laoyou_backend/nest-cli.json b/src/laoyou_backend/nest-cli.json deleted file mode 100644 index f9aa683..0000000 --- a/src/laoyou_backend/nest-cli.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "$schema": "https://json.schemastore.org/nest-cli", - "collection": "@nestjs/schematics", - "sourceRoot": "src", - "compilerOptions": { - "deleteOutDir": true - } -} diff --git a/src/laoyou_backend/package.json b/src/laoyou_backend/package.json deleted file mode 100644 index d283a5d..0000000 --- a/src/laoyou_backend/package.json +++ /dev/null @@ -1,88 +0,0 @@ -{ - "name": "laoyou_backend", - "version": "0.0.1", - "description": "", - "author": "", - "private": true, - "license": "UNLICENSED", - "scripts": { - "dev": "nest start --watch", - "build": "nest build", - "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"", - "start": "nest start", - "start:dev": "nest start --watch", - "start:debug": "nest start --debug --watch", - "start:prod": "node dist/main", - "lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix", - "test": "jest", - "test:watch": "jest --watch", - "test:cov": "jest --coverage", - "test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand", - "test:e2e": "jest --config ./test/jest-e2e.json" - }, - "dependencies": { - "@nestjs-modules/ioredis": "^1.0.1", - "@nestjs/cache-manager": "^2.0.0", - "@nestjs/common": "^9.0.0", - "@nestjs/config": "^3.1.1", - "@nestjs/core": "^9.0.0", - "@nestjs/jwt": "^10.1.1", - "@nestjs/passport": "^10.0.2", - "@nestjs/platform-express": "^9.0.0", - "@nestjs/schedule": "^3.0.4", - "@nestjs/serve-static": "^4.0.0", - "@prisma/client": "^5.3.1", - "@types/passport-jwt": "^3.0.10", - "axios": "^1.5.1", - "cache-manager": "^4.1.0", - "cos-nodejs-sdk-v5": "^2.12.4", - "dotenv": "^16.3.1", - "ioredis": "^5.3.2", - "multer": "1.4.5-lts.1", - "passport-jwt": "^4.0.1", - "prisma": "^5.3.1", - "redis": "^4.6.10", - "reflect-metadata": "^0.1.13", - "rxjs": "^7.2.0" - }, - "devDependencies": { - "@nestjs/cli": "^9.0.0", - "@nestjs/schematics": "^9.0.0", - "@nestjs/testing": "^9.0.0", - "@types/express": "^4.17.13", - "@types/jest": "29.5.0", - "@types/node": "18.15.11", - "@types/supertest": "^2.0.11", - "@typescript-eslint/eslint-plugin": "^5.0.0", - "@typescript-eslint/parser": "^5.0.0", - "eslint": "^8.0.1", - "eslint-config-prettier": "^8.3.0", - "eslint-plugin-prettier": "^4.0.0", - "jest": "29.5.0", - "prettier": "^2.3.2", - "source-map-support": "^0.5.20", - "supertest": "^6.1.3", - "ts-jest": "29.0.5", - "ts-loader": "^9.2.3", - "ts-node": "^10.0.0", - "tsconfig-paths": "4.2.0", - "typescript": "^4.7.4" - }, - "jest": { - "moduleFileExtensions": [ - "js", - "json", - "ts" - ], - "rootDir": "src", - "testRegex": ".*\\.spec\\.ts$", - "transform": { - "^.+\\.(t|j)s$": "ts-jest" - }, - "collectCoverageFrom": [ - "**/*.(t|j)s" - ], - "coverageDirectory": "../coverage", - "testEnvironment": "node" - } -} diff --git a/src/laoyou_backend/pnpm-lock.yaml b/src/laoyou_backend/pnpm-lock.yaml deleted file mode 100644 index 797def3..0000000 --- a/src/laoyou_backend/pnpm-lock.yaml +++ /dev/null @@ -1,7412 +0,0 @@ -lockfileVersion: '6.0' - -dependencies: - '@nestjs-modules/ioredis': - specifier: ^1.0.1 - version: registry.npmmirror.com/@nestjs-modules/ioredis@1.0.1(@nestjs/common@9.0.0)(@nestjs/core@9.0.0)(ioredis@5.3.2) - '@nestjs/cache-manager': - specifier: ^2.0.0 - version: registry.npmmirror.com/@nestjs/cache-manager@2.1.1(@nestjs/common@9.0.0)(@nestjs/core@9.0.0)(cache-manager@4.1.0)(reflect-metadata@0.1.13)(rxjs@7.2.0) - '@nestjs/common': - specifier: ^9.0.0 - version: registry.npmmirror.com/@nestjs/common@9.0.0(cache-manager@4.1.0)(reflect-metadata@0.1.13)(rxjs@7.2.0) - '@nestjs/config': - specifier: ^3.1.1 - version: registry.npmmirror.com/@nestjs/config@3.1.1(@nestjs/common@9.0.0)(reflect-metadata@0.1.13) - '@nestjs/core': - specifier: ^9.0.0 - version: registry.npmmirror.com/@nestjs/core@9.0.0(@nestjs/common@9.0.0)(@nestjs/platform-express@9.0.0)(reflect-metadata@0.1.13)(rxjs@7.2.0) - '@nestjs/jwt': - specifier: ^10.1.1 - version: registry.npmmirror.com/@nestjs/jwt@10.1.1(@nestjs/common@9.0.0) - '@nestjs/passport': - specifier: ^10.0.2 - version: registry.npmmirror.com/@nestjs/passport@10.0.2(@nestjs/common@9.0.0)(passport@0.6.0) - '@nestjs/platform-express': - specifier: ^9.0.0 - version: registry.npmmirror.com/@nestjs/platform-express@9.0.0(@nestjs/common@9.0.0)(@nestjs/core@9.0.0) - '@nestjs/schedule': - specifier: ^3.0.4 - version: registry.npmmirror.com/@nestjs/schedule@3.0.4(@nestjs/common@9.0.0)(@nestjs/core@9.0.0)(reflect-metadata@0.1.13) - '@nestjs/serve-static': - specifier: ^4.0.0 - version: registry.npmmirror.com/@nestjs/serve-static@4.0.0(@nestjs/common@9.0.0)(@nestjs/core@9.0.0) - '@prisma/client': - specifier: ^5.3.1 - version: registry.npmmirror.com/@prisma/client@5.3.1(prisma@5.3.1) - '@types/passport-jwt': - specifier: ^3.0.10 - version: registry.npmmirror.com/@types/passport-jwt@3.0.10 - axios: - specifier: ^1.5.1 - version: registry.npmmirror.com/axios@1.5.1 - cache-manager: - specifier: ^4.1.0 - version: registry.npmmirror.com/cache-manager@4.1.0 - cos-nodejs-sdk-v5: - specifier: ^2.12.4 - version: registry.npmmirror.com/cos-nodejs-sdk-v5@2.12.4 - dotenv: - specifier: ^16.3.1 - version: registry.npmmirror.com/dotenv@16.3.1 - ioredis: - specifier: ^5.3.2 - version: registry.npmmirror.com/ioredis@5.3.2 - multer: - specifier: 1.4.5-lts.1 - version: registry.npmmirror.com/multer@1.4.5-lts.1 - passport-jwt: - specifier: ^4.0.1 - version: registry.npmmirror.com/passport-jwt@4.0.1 - prisma: - specifier: ^5.3.1 - version: registry.npmmirror.com/prisma@5.3.1 - redis: - specifier: ^4.6.10 - version: registry.npmmirror.com/redis@4.6.10 - reflect-metadata: - specifier: ^0.1.13 - version: registry.npmmirror.com/reflect-metadata@0.1.13 - rxjs: - specifier: ^7.2.0 - version: registry.npmmirror.com/rxjs@7.2.0 - -devDependencies: - '@nestjs/cli': - specifier: ^9.0.0 - version: registry.npmmirror.com/@nestjs/cli@9.0.0 - '@nestjs/schematics': - specifier: ^9.0.0 - version: registry.npmmirror.com/@nestjs/schematics@9.0.0(chokidar@3.5.3)(typescript@4.7.4) - '@nestjs/testing': - specifier: ^9.0.0 - version: registry.npmmirror.com/@nestjs/testing@9.0.0(@nestjs/common@9.0.0)(@nestjs/core@9.0.0)(@nestjs/platform-express@9.0.0) - '@types/express': - specifier: ^4.17.13 - version: registry.npmmirror.com/@types/express@4.17.13 - '@types/jest': - specifier: 29.5.0 - version: registry.npmmirror.com/@types/jest@29.5.0 - '@types/node': - specifier: 18.15.11 - version: registry.npmmirror.com/@types/node@18.15.11 - '@types/supertest': - specifier: ^2.0.11 - version: registry.npmmirror.com/@types/supertest@2.0.11 - '@typescript-eslint/eslint-plugin': - specifier: ^5.0.0 - version: registry.npmmirror.com/@typescript-eslint/eslint-plugin@5.0.0(@typescript-eslint/parser@5.0.0)(eslint@8.0.1)(typescript@4.7.4) - '@typescript-eslint/parser': - specifier: ^5.0.0 - version: registry.npmmirror.com/@typescript-eslint/parser@5.0.0(eslint@8.0.1)(typescript@4.7.4) - eslint: - specifier: ^8.0.1 - version: registry.npmmirror.com/eslint@8.0.1 - eslint-config-prettier: - specifier: ^8.3.0 - version: registry.npmmirror.com/eslint-config-prettier@8.3.0(eslint@8.0.1) - eslint-plugin-prettier: - specifier: ^4.0.0 - version: registry.npmmirror.com/eslint-plugin-prettier@4.0.0(eslint-config-prettier@8.3.0)(eslint@8.0.1)(prettier@2.3.2) - jest: - specifier: 29.5.0 - version: registry.npmmirror.com/jest@29.5.0(@types/node@18.15.11)(ts-node@10.0.0) - prettier: - specifier: ^2.3.2 - version: registry.npmmirror.com/prettier@2.3.2 - source-map-support: - specifier: ^0.5.20 - version: registry.npmmirror.com/source-map-support@0.5.20 - supertest: - specifier: ^6.1.3 - version: registry.npmmirror.com/supertest@6.1.3 - ts-jest: - specifier: 29.0.5 - version: registry.npmmirror.com/ts-jest@29.0.5(@babel/core@7.22.17)(jest@29.5.0)(typescript@4.7.4) - ts-loader: - specifier: ^9.2.3 - version: registry.npmmirror.com/ts-loader@9.2.3(typescript@4.7.4)(webpack@5.88.2) - ts-node: - specifier: ^10.0.0 - version: registry.npmmirror.com/ts-node@10.0.0(@types/node@18.15.11)(typescript@4.7.4) - tsconfig-paths: - specifier: 4.2.0 - version: registry.npmmirror.com/tsconfig-paths@4.2.0 - typescript: - specifier: ^4.7.4 - version: registry.npmmirror.com/typescript@4.7.4 - -packages: - - registry.npmmirror.com/@aashutoshrathi/word-wrap@1.2.6: - resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz} - name: '@aashutoshrathi/word-wrap' - version: 1.2.6 - engines: {node: '>=0.10.0'} - dev: true - - registry.npmmirror.com/@ampproject/remapping@2.2.1: - resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ampproject/remapping/-/remapping-2.2.1.tgz} - name: '@ampproject/remapping' - version: 2.2.1 - engines: {node: '>=6.0.0'} - dependencies: - '@jridgewell/gen-mapping': registry.npmmirror.com/@jridgewell/gen-mapping@0.3.3 - '@jridgewell/trace-mapping': registry.npmmirror.com/@jridgewell/trace-mapping@0.3.19 - dev: true - - registry.npmmirror.com/@angular-devkit/core@14.0.5(chokidar@3.5.3): - resolution: {integrity: sha512-/CUGi6QLwh79FvsOY7M+1LQL3asZsbQW/WBd5f1iu5y7TLNqCwo+wOb0ZXLDNPw45vYBxFajtt3ob3U7qx3jNg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@angular-devkit/core/-/core-14.0.5.tgz} - id: registry.npmmirror.com/@angular-devkit/core/14.0.5 - name: '@angular-devkit/core' - version: 14.0.5 - engines: {node: ^14.15.0 || >=16.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} - peerDependencies: - chokidar: ^3.5.2 - peerDependenciesMeta: - chokidar: - optional: true - dependencies: - ajv: registry.npmmirror.com/ajv@8.11.0 - ajv-formats: registry.npmmirror.com/ajv-formats@2.1.1(ajv@8.11.0) - chokidar: registry.npmmirror.com/chokidar@3.5.3 - jsonc-parser: registry.npmmirror.com/jsonc-parser@3.0.0 - rxjs: registry.npmmirror.com/rxjs@6.6.7 - source-map: registry.npmmirror.com/source-map@0.7.3 - dev: true - - registry.npmmirror.com/@angular-devkit/schematics-cli@14.0.5(chokidar@3.5.3): - resolution: {integrity: sha512-S+u0KjglyI3jEZWwIuBvFjEwY3Zk5lCWfhet+95sFKJEjEYgF4Fuk8Mau/9cr55hIcpZqTQUvyxnS/VDoj4WLg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@angular-devkit/schematics-cli/-/schematics-cli-14.0.5.tgz} - id: registry.npmmirror.com/@angular-devkit/schematics-cli/14.0.5 - name: '@angular-devkit/schematics-cli' - version: 14.0.5 - engines: {node: ^14.15.0 || >=16.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} - hasBin: true - dependencies: - '@angular-devkit/core': registry.npmmirror.com/@angular-devkit/core@14.0.5(chokidar@3.5.3) - '@angular-devkit/schematics': registry.npmmirror.com/@angular-devkit/schematics@14.0.5(chokidar@3.5.3) - ansi-colors: registry.npmmirror.com/ansi-colors@4.1.1 - inquirer: registry.npmmirror.com/inquirer@8.2.4 - symbol-observable: registry.npmmirror.com/symbol-observable@4.0.0 - yargs-parser: registry.npmmirror.com/yargs-parser@21.0.1 - transitivePeerDependencies: - - chokidar - dev: true - - registry.npmmirror.com/@angular-devkit/schematics@14.0.5(chokidar@3.5.3): - resolution: {integrity: sha512-sufxITBkn2MvgEREt9JQ3QCKHS+sue1WsVzLE+TWqG5MC/RPk0f9tQ5VoHk6ZTzDKUvOtSoc7G+n0RscQsyp5g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@angular-devkit/schematics/-/schematics-14.0.5.tgz} - id: registry.npmmirror.com/@angular-devkit/schematics/14.0.5 - name: '@angular-devkit/schematics' - version: 14.0.5 - engines: {node: ^14.15.0 || >=16.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} - dependencies: - '@angular-devkit/core': registry.npmmirror.com/@angular-devkit/core@14.0.5(chokidar@3.5.3) - jsonc-parser: registry.npmmirror.com/jsonc-parser@3.0.0 - magic-string: registry.npmmirror.com/magic-string@0.26.1 - ora: registry.npmmirror.com/ora@5.4.1 - rxjs: registry.npmmirror.com/rxjs@6.6.7 - transitivePeerDependencies: - - chokidar - dev: true - - registry.npmmirror.com/@babel/code-frame@7.22.13: - resolution: {integrity: sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/code-frame/-/code-frame-7.22.13.tgz} - name: '@babel/code-frame' - version: 7.22.13 - engines: {node: '>=6.9.0'} - dependencies: - '@babel/highlight': registry.npmmirror.com/@babel/highlight@7.22.13 - chalk: registry.npmmirror.com/chalk@2.4.2 - dev: true - - registry.npmmirror.com/@babel/compat-data@7.22.9: - resolution: {integrity: sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/compat-data/-/compat-data-7.22.9.tgz} - name: '@babel/compat-data' - version: 7.22.9 - engines: {node: '>=6.9.0'} - dev: true - - registry.npmmirror.com/@babel/core@7.22.17: - resolution: {integrity: sha512-2EENLmhpwplDux5PSsZnSbnSkB3tZ6QTksgO25xwEL7pIDcNOMhF5v/s6RzwjMZzZzw9Ofc30gHv5ChCC8pifQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/core/-/core-7.22.17.tgz} - name: '@babel/core' - version: 7.22.17 - engines: {node: '>=6.9.0'} - dependencies: - '@ampproject/remapping': registry.npmmirror.com/@ampproject/remapping@2.2.1 - '@babel/code-frame': registry.npmmirror.com/@babel/code-frame@7.22.13 - '@babel/generator': registry.npmmirror.com/@babel/generator@7.22.15 - '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets@7.22.15 - '@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms@7.22.17(@babel/core@7.22.17) - '@babel/helpers': registry.npmmirror.com/@babel/helpers@7.22.15 - '@babel/parser': registry.npmmirror.com/@babel/parser@7.22.16 - '@babel/template': registry.npmmirror.com/@babel/template@7.22.15 - '@babel/traverse': registry.npmmirror.com/@babel/traverse@7.22.17 - '@babel/types': registry.npmmirror.com/@babel/types@7.22.17 - convert-source-map: registry.npmmirror.com/convert-source-map@1.9.0 - debug: registry.npmmirror.com/debug@4.3.4 - gensync: registry.npmmirror.com/gensync@1.0.0-beta.2 - json5: registry.npmmirror.com/json5@2.2.3 - semver: registry.npmmirror.com/semver@6.3.1 - transitivePeerDependencies: - - supports-color - dev: true - - registry.npmmirror.com/@babel/generator@7.22.15: - resolution: {integrity: sha512-Zu9oWARBqeVOW0dZOjXc3JObrzuqothQ3y/n1kUtrjCoCPLkXUwMvOo/F/TCfoHMbWIFlWwpZtkZVb9ga4U2pA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/generator/-/generator-7.22.15.tgz} - name: '@babel/generator' - version: 7.22.15 - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': registry.npmmirror.com/@babel/types@7.22.17 - '@jridgewell/gen-mapping': registry.npmmirror.com/@jridgewell/gen-mapping@0.3.3 - '@jridgewell/trace-mapping': registry.npmmirror.com/@jridgewell/trace-mapping@0.3.19 - jsesc: registry.npmmirror.com/jsesc@2.5.2 - dev: true - - registry.npmmirror.com/@babel/helper-compilation-targets@7.22.15: - resolution: {integrity: sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.15.tgz} - name: '@babel/helper-compilation-targets' - version: 7.22.15 - engines: {node: '>=6.9.0'} - dependencies: - '@babel/compat-data': registry.npmmirror.com/@babel/compat-data@7.22.9 - '@babel/helper-validator-option': registry.npmmirror.com/@babel/helper-validator-option@7.22.15 - browserslist: registry.npmmirror.com/browserslist@4.21.10 - lru-cache: registry.npmmirror.com/lru-cache@5.1.1 - semver: registry.npmmirror.com/semver@6.3.1 - dev: true - - registry.npmmirror.com/@babel/helper-environment-visitor@7.22.5: - resolution: {integrity: sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz} - name: '@babel/helper-environment-visitor' - version: 7.22.5 - engines: {node: '>=6.9.0'} - dev: true - - registry.npmmirror.com/@babel/helper-function-name@7.22.5: - resolution: {integrity: sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz} - name: '@babel/helper-function-name' - version: 7.22.5 - engines: {node: '>=6.9.0'} - dependencies: - '@babel/template': registry.npmmirror.com/@babel/template@7.22.15 - '@babel/types': registry.npmmirror.com/@babel/types@7.22.17 - dev: true - - registry.npmmirror.com/@babel/helper-hoist-variables@7.22.5: - resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz} - name: '@babel/helper-hoist-variables' - version: 7.22.5 - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': registry.npmmirror.com/@babel/types@7.22.17 - dev: true - - registry.npmmirror.com/@babel/helper-module-imports@7.22.15: - resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz} - name: '@babel/helper-module-imports' - version: 7.22.15 - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': registry.npmmirror.com/@babel/types@7.22.17 - dev: true - - registry.npmmirror.com/@babel/helper-module-transforms@7.22.17(@babel/core@7.22.17): - resolution: {integrity: sha512-XouDDhQESrLHTpnBtCKExJdyY4gJCdrvH2Pyv8r8kovX2U8G0dRUOT45T9XlbLtuu9CLXP15eusnkprhoPV5iQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-module-transforms/-/helper-module-transforms-7.22.17.tgz} - id: registry.npmmirror.com/@babel/helper-module-transforms/7.22.17 - name: '@babel/helper-module-transforms' - version: 7.22.17 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.17 - '@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor@7.22.5 - '@babel/helper-module-imports': registry.npmmirror.com/@babel/helper-module-imports@7.22.15 - '@babel/helper-simple-access': registry.npmmirror.com/@babel/helper-simple-access@7.22.5 - '@babel/helper-split-export-declaration': registry.npmmirror.com/@babel/helper-split-export-declaration@7.22.6 - '@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier@7.22.15 - dev: true - - registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5: - resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz} - name: '@babel/helper-plugin-utils' - version: 7.22.5 - engines: {node: '>=6.9.0'} - dev: true - - registry.npmmirror.com/@babel/helper-simple-access@7.22.5: - resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz} - name: '@babel/helper-simple-access' - version: 7.22.5 - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': registry.npmmirror.com/@babel/types@7.22.17 - dev: true - - registry.npmmirror.com/@babel/helper-split-export-declaration@7.22.6: - resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz} - name: '@babel/helper-split-export-declaration' - version: 7.22.6 - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': registry.npmmirror.com/@babel/types@7.22.17 - dev: true - - registry.npmmirror.com/@babel/helper-string-parser@7.22.5: - resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz} - name: '@babel/helper-string-parser' - version: 7.22.5 - engines: {node: '>=6.9.0'} - dev: true - - registry.npmmirror.com/@babel/helper-validator-identifier@7.22.15: - resolution: {integrity: sha512-4E/F9IIEi8WR94324mbDUMo074YTheJmd7eZF5vITTeYchqAi6sYXRLHUVsmkdmY4QjfKTcB2jB7dVP3NaBElQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.15.tgz} - name: '@babel/helper-validator-identifier' - version: 7.22.15 - engines: {node: '>=6.9.0'} - dev: true - - registry.npmmirror.com/@babel/helper-validator-option@7.22.15: - resolution: {integrity: sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-validator-option/-/helper-validator-option-7.22.15.tgz} - name: '@babel/helper-validator-option' - version: 7.22.15 - engines: {node: '>=6.9.0'} - dev: true - - registry.npmmirror.com/@babel/helpers@7.22.15: - resolution: {integrity: sha512-7pAjK0aSdxOwR+CcYAqgWOGy5dcfvzsTIfFTb2odQqW47MDfv14UaJDY6eng8ylM2EaeKXdxaSWESbkmaQHTmw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helpers/-/helpers-7.22.15.tgz} - name: '@babel/helpers' - version: 7.22.15 - engines: {node: '>=6.9.0'} - dependencies: - '@babel/template': registry.npmmirror.com/@babel/template@7.22.15 - '@babel/traverse': registry.npmmirror.com/@babel/traverse@7.22.17 - '@babel/types': registry.npmmirror.com/@babel/types@7.22.17 - transitivePeerDependencies: - - supports-color - dev: true - - registry.npmmirror.com/@babel/highlight@7.22.13: - resolution: {integrity: sha512-C/BaXcnnvBCmHTpz/VGZ8jgtE2aYlW4hxDhseJAWZb7gqGM/qtCK6iZUb0TyKFf7BOUsBH7Q7fkRsDRhg1XklQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/highlight/-/highlight-7.22.13.tgz} - name: '@babel/highlight' - version: 7.22.13 - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier@7.22.15 - chalk: registry.npmmirror.com/chalk@2.4.2 - js-tokens: registry.npmmirror.com/js-tokens@4.0.0 - dev: true - - registry.npmmirror.com/@babel/parser@7.22.16: - resolution: {integrity: sha512-+gPfKv8UWeKKeJTUxe59+OobVcrYHETCsORl61EmSkmgymguYk/X5bp7GuUIXaFsc6y++v8ZxPsLSSuujqDphA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/parser/-/parser-7.22.16.tgz} - name: '@babel/parser' - version: 7.22.16 - engines: {node: '>=6.0.0'} - hasBin: true - dependencies: - '@babel/types': registry.npmmirror.com/@babel/types@7.22.17 - dev: true - - registry.npmmirror.com/@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.22.17): - resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz} - id: registry.npmmirror.com/@babel/plugin-syntax-async-generators/7.8.4 - name: '@babel/plugin-syntax-async-generators' - version: 7.8.4 - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.17 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.22.17): - resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz} - id: registry.npmmirror.com/@babel/plugin-syntax-bigint/7.8.3 - name: '@babel/plugin-syntax-bigint' - version: 7.8.3 - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.17 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.22.17): - resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz} - id: registry.npmmirror.com/@babel/plugin-syntax-class-properties/7.12.13 - name: '@babel/plugin-syntax-class-properties' - version: 7.12.13 - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.17 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.22.17): - 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 - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.17 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.22.17): - resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz} - id: registry.npmmirror.com/@babel/plugin-syntax-json-strings/7.8.3 - name: '@babel/plugin-syntax-json-strings' - version: 7.8.3 - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.17 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.22.17): - resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz} - id: registry.npmmirror.com/@babel/plugin-syntax-jsx/7.22.5 - name: '@babel/plugin-syntax-jsx' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.17 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.22.17): - resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz} - id: registry.npmmirror.com/@babel/plugin-syntax-logical-assignment-operators/7.10.4 - name: '@babel/plugin-syntax-logical-assignment-operators' - version: 7.10.4 - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.17 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.22.17): - resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz} - id: registry.npmmirror.com/@babel/plugin-syntax-nullish-coalescing-operator/7.8.3 - name: '@babel/plugin-syntax-nullish-coalescing-operator' - version: 7.8.3 - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.17 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.22.17): - resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz} - id: registry.npmmirror.com/@babel/plugin-syntax-numeric-separator/7.10.4 - name: '@babel/plugin-syntax-numeric-separator' - version: 7.10.4 - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.17 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.22.17): - resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz} - id: registry.npmmirror.com/@babel/plugin-syntax-object-rest-spread/7.8.3 - name: '@babel/plugin-syntax-object-rest-spread' - version: 7.8.3 - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.17 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.22.17): - resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz} - id: registry.npmmirror.com/@babel/plugin-syntax-optional-catch-binding/7.8.3 - name: '@babel/plugin-syntax-optional-catch-binding' - version: 7.8.3 - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.17 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.22.17): - resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz} - id: registry.npmmirror.com/@babel/plugin-syntax-optional-chaining/7.8.3 - name: '@babel/plugin-syntax-optional-chaining' - version: 7.8.3 - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.17 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.22.17): - resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz} - id: registry.npmmirror.com/@babel/plugin-syntax-top-level-await/7.14.5 - name: '@babel/plugin-syntax-top-level-await' - version: 7.14.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.17 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.22.17): - resolution: {integrity: sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz} - id: registry.npmmirror.com/@babel/plugin-syntax-typescript/7.22.5 - name: '@babel/plugin-syntax-typescript' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.17 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/template@7.22.15: - resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/template/-/template-7.22.15.tgz} - name: '@babel/template' - version: 7.22.15 - engines: {node: '>=6.9.0'} - dependencies: - '@babel/code-frame': registry.npmmirror.com/@babel/code-frame@7.22.13 - '@babel/parser': registry.npmmirror.com/@babel/parser@7.22.16 - '@babel/types': registry.npmmirror.com/@babel/types@7.22.17 - dev: true - - registry.npmmirror.com/@babel/traverse@7.22.17: - resolution: {integrity: sha512-xK4Uwm0JnAMvxYZxOVecss85WxTEIbTa7bnGyf/+EgCL5Zt3U7htUpEOWv9detPlamGKuRzCqw74xVglDWpPdg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/traverse/-/traverse-7.22.17.tgz} - name: '@babel/traverse' - version: 7.22.17 - engines: {node: '>=6.9.0'} - dependencies: - '@babel/code-frame': registry.npmmirror.com/@babel/code-frame@7.22.13 - '@babel/generator': registry.npmmirror.com/@babel/generator@7.22.15 - '@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor@7.22.5 - '@babel/helper-function-name': registry.npmmirror.com/@babel/helper-function-name@7.22.5 - '@babel/helper-hoist-variables': registry.npmmirror.com/@babel/helper-hoist-variables@7.22.5 - '@babel/helper-split-export-declaration': registry.npmmirror.com/@babel/helper-split-export-declaration@7.22.6 - '@babel/parser': registry.npmmirror.com/@babel/parser@7.22.16 - '@babel/types': registry.npmmirror.com/@babel/types@7.22.17 - debug: registry.npmmirror.com/debug@4.3.4 - globals: registry.npmmirror.com/globals@11.12.0 - transitivePeerDependencies: - - supports-color - dev: true - - registry.npmmirror.com/@babel/types@7.22.17: - resolution: {integrity: sha512-YSQPHLFtQNE5xN9tHuZnzu8vPr61wVTBZdfv1meex1NBosa4iT05k/Jw06ddJugi4bk7The/oSwQGFcksmEJQg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/types/-/types-7.22.17.tgz} - name: '@babel/types' - version: 7.22.17 - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-string-parser': registry.npmmirror.com/@babel/helper-string-parser@7.22.5 - '@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier@7.22.15 - to-fast-properties: registry.npmmirror.com/to-fast-properties@2.0.0 - dev: true - - registry.npmmirror.com/@bcoe/v8-coverage@0.2.3: - resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz} - name: '@bcoe/v8-coverage' - version: 0.2.3 - dev: true - - registry.npmmirror.com/@colors/colors@1.5.0: - resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@colors/colors/-/colors-1.5.0.tgz} - name: '@colors/colors' - version: 1.5.0 - engines: {node: '>=0.1.90'} - requiresBuild: true - dev: true - optional: true - - registry.npmmirror.com/@eslint/eslintrc@1.4.1: - resolution: {integrity: sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@eslint/eslintrc/-/eslintrc-1.4.1.tgz} - name: '@eslint/eslintrc' - version: 1.4.1 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dependencies: - ajv: registry.npmmirror.com/ajv@6.12.6 - debug: registry.npmmirror.com/debug@4.3.4 - espree: registry.npmmirror.com/espree@9.6.1 - globals: registry.npmmirror.com/globals@13.21.0 - ignore: registry.npmmirror.com/ignore@5.2.4 - 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.6.0: - resolution: {integrity: sha512-JQlEKbcgEUjBFhLIF4iqM7u/9lwgHRBcpHrmUNCALK0Q3amXN6lxdoXLnF0sm11E9VqTmBALR87IlUg1bZ8A9A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@humanwhocodes/config-array/-/config-array-0.6.0.tgz} - name: '@humanwhocodes/config-array' - version: 0.6.0 - engines: {node: '>=10.10.0'} - dependencies: - '@humanwhocodes/object-schema': registry.npmmirror.com/@humanwhocodes/object-schema@1.2.1 - debug: registry.npmmirror.com/debug@4.3.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/@ioredis/commands@1.2.0: - resolution: {integrity: sha512-Sx1pU8EM64o2BrqNpEO1CNLtKQwyhuXuqyfH7oGKCk+1a33d2r5saW8zNwm3j6BTExtjrv2BxTgzzkMwts6vGg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ioredis/commands/-/commands-1.2.0.tgz} - name: '@ioredis/commands' - version: 1.2.0 - dev: false - - registry.npmmirror.com/@istanbuljs/load-nyc-config@1.1.0: - resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz} - name: '@istanbuljs/load-nyc-config' - version: 1.1.0 - engines: {node: '>=8'} - dependencies: - camelcase: registry.npmmirror.com/camelcase@5.3.1 - find-up: registry.npmmirror.com/find-up@4.1.0 - get-package-type: registry.npmmirror.com/get-package-type@0.1.0 - js-yaml: registry.npmmirror.com/js-yaml@3.14.1 - resolve-from: registry.npmmirror.com/resolve-from@5.0.0 - dev: true - - registry.npmmirror.com/@istanbuljs/schema@0.1.3: - resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@istanbuljs/schema/-/schema-0.1.3.tgz} - name: '@istanbuljs/schema' - version: 0.1.3 - engines: {node: '>=8'} - dev: true - - registry.npmmirror.com/@jest/console@29.6.4: - resolution: {integrity: sha512-wNK6gC0Ha9QeEPSkeJedQuTQqxZYnDPuDcDhVuVatRvMkL4D0VTvFVZj+Yuh6caG2aOfzkUZ36KtCmLNtR02hw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jest/console/-/console-29.6.4.tgz} - name: '@jest/console' - version: 29.6.4 - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jest/types': registry.npmmirror.com/@jest/types@29.6.3 - '@types/node': registry.npmmirror.com/@types/node@18.15.11 - chalk: registry.npmmirror.com/chalk@4.1.2 - jest-message-util: registry.npmmirror.com/jest-message-util@29.6.3 - jest-util: registry.npmmirror.com/jest-util@29.6.3 - slash: registry.npmmirror.com/slash@3.0.0 - dev: true - - registry.npmmirror.com/@jest/core@29.6.4(ts-node@10.0.0): - resolution: {integrity: sha512-U/vq5ccNTSVgYH7mHnodHmCffGWHJnz/E1BEWlLuK5pM4FZmGfBn/nrJGLjUsSmyx3otCeqc1T31F4y08AMDLg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jest/core/-/core-29.6.4.tgz} - id: registry.npmmirror.com/@jest/core/29.6.4 - name: '@jest/core' - version: 29.6.4 - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true - dependencies: - '@jest/console': registry.npmmirror.com/@jest/console@29.6.4 - '@jest/reporters': registry.npmmirror.com/@jest/reporters@29.6.4 - '@jest/test-result': registry.npmmirror.com/@jest/test-result@29.6.4 - '@jest/transform': registry.npmmirror.com/@jest/transform@29.6.4 - '@jest/types': registry.npmmirror.com/@jest/types@29.6.3 - '@types/node': registry.npmmirror.com/@types/node@18.15.11 - ansi-escapes: registry.npmmirror.com/ansi-escapes@4.3.2 - chalk: registry.npmmirror.com/chalk@4.1.2 - ci-info: registry.npmmirror.com/ci-info@3.8.0 - exit: registry.npmmirror.com/exit@0.1.2 - graceful-fs: registry.npmmirror.com/graceful-fs@4.2.11 - jest-changed-files: registry.npmmirror.com/jest-changed-files@29.6.3 - jest-config: registry.npmmirror.com/jest-config@29.6.4(@types/node@18.15.11)(ts-node@10.0.0) - jest-haste-map: registry.npmmirror.com/jest-haste-map@29.6.4 - jest-message-util: registry.npmmirror.com/jest-message-util@29.6.3 - jest-regex-util: registry.npmmirror.com/jest-regex-util@29.6.3 - jest-resolve: registry.npmmirror.com/jest-resolve@29.6.4 - jest-resolve-dependencies: registry.npmmirror.com/jest-resolve-dependencies@29.6.4 - jest-runner: registry.npmmirror.com/jest-runner@29.6.4 - jest-runtime: registry.npmmirror.com/jest-runtime@29.6.4 - jest-snapshot: registry.npmmirror.com/jest-snapshot@29.6.4 - jest-util: registry.npmmirror.com/jest-util@29.6.3 - jest-validate: registry.npmmirror.com/jest-validate@29.6.3 - jest-watcher: registry.npmmirror.com/jest-watcher@29.6.4 - micromatch: registry.npmmirror.com/micromatch@4.0.5 - pretty-format: registry.npmmirror.com/pretty-format@29.6.3 - slash: registry.npmmirror.com/slash@3.0.0 - strip-ansi: registry.npmmirror.com/strip-ansi@6.0.1 - transitivePeerDependencies: - - babel-plugin-macros - - supports-color - - ts-node - dev: true - - registry.npmmirror.com/@jest/environment@29.6.4: - resolution: {integrity: sha512-sQ0SULEjA1XUTHmkBRl7A1dyITM9yb1yb3ZNKPX3KlTd6IG7mWUe3e2yfExtC2Zz1Q+mMckOLHmL/qLiuQJrBQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jest/environment/-/environment-29.6.4.tgz} - name: '@jest/environment' - version: 29.6.4 - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jest/fake-timers': registry.npmmirror.com/@jest/fake-timers@29.6.4 - '@jest/types': registry.npmmirror.com/@jest/types@29.6.3 - '@types/node': registry.npmmirror.com/@types/node@18.15.11 - jest-mock: registry.npmmirror.com/jest-mock@29.6.3 - dev: true - - registry.npmmirror.com/@jest/expect-utils@29.6.4: - resolution: {integrity: sha512-FEhkJhqtvBwgSpiTrocquJCdXPsyvNKcl/n7A3u7X4pVoF4bswm11c9d4AV+kfq2Gpv/mM8x7E7DsRvH+djkrg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jest/expect-utils/-/expect-utils-29.6.4.tgz} - name: '@jest/expect-utils' - version: 29.6.4 - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - jest-get-type: registry.npmmirror.com/jest-get-type@29.6.3 - dev: true - - registry.npmmirror.com/@jest/expect@29.6.4: - resolution: {integrity: sha512-Warhsa7d23+3X5bLbrbYvaehcgX5TLYhI03JKoedTiI8uJU4IhqYBWF7OSSgUyz4IgLpUYPkK0AehA5/fRclAA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jest/expect/-/expect-29.6.4.tgz} - name: '@jest/expect' - version: 29.6.4 - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - expect: registry.npmmirror.com/expect@29.6.4 - jest-snapshot: registry.npmmirror.com/jest-snapshot@29.6.4 - transitivePeerDependencies: - - supports-color - dev: true - - registry.npmmirror.com/@jest/fake-timers@29.6.4: - resolution: {integrity: sha512-6UkCwzoBK60edXIIWb0/KWkuj7R7Qq91vVInOe3De6DSpaEiqjKcJw4F7XUet24Wupahj9J6PlR09JqJ5ySDHw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jest/fake-timers/-/fake-timers-29.6.4.tgz} - name: '@jest/fake-timers' - version: 29.6.4 - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jest/types': registry.npmmirror.com/@jest/types@29.6.3 - '@sinonjs/fake-timers': registry.npmmirror.com/@sinonjs/fake-timers@10.3.0 - '@types/node': registry.npmmirror.com/@types/node@18.15.11 - jest-message-util: registry.npmmirror.com/jest-message-util@29.6.3 - jest-mock: registry.npmmirror.com/jest-mock@29.6.3 - jest-util: registry.npmmirror.com/jest-util@29.6.3 - dev: true - - registry.npmmirror.com/@jest/globals@29.6.4: - resolution: {integrity: sha512-wVIn5bdtjlChhXAzVXavcY/3PEjf4VqM174BM3eGL5kMxLiZD5CLnbmkEyA1Dwh9q8XjP6E8RwjBsY/iCWrWsA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jest/globals/-/globals-29.6.4.tgz} - name: '@jest/globals' - version: 29.6.4 - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jest/environment': registry.npmmirror.com/@jest/environment@29.6.4 - '@jest/expect': registry.npmmirror.com/@jest/expect@29.6.4 - '@jest/types': registry.npmmirror.com/@jest/types@29.6.3 - jest-mock: registry.npmmirror.com/jest-mock@29.6.3 - transitivePeerDependencies: - - supports-color - dev: true - - registry.npmmirror.com/@jest/reporters@29.6.4: - resolution: {integrity: sha512-sxUjWxm7QdchdrD3NfWKrL8FBsortZeibSJv4XLjESOOjSUOkjQcb0ZHJwfhEGIvBvTluTzfG2yZWZhkrXJu8g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jest/reporters/-/reporters-29.6.4.tgz} - name: '@jest/reporters' - version: 29.6.4 - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true - dependencies: - '@bcoe/v8-coverage': registry.npmmirror.com/@bcoe/v8-coverage@0.2.3 - '@jest/console': registry.npmmirror.com/@jest/console@29.6.4 - '@jest/test-result': registry.npmmirror.com/@jest/test-result@29.6.4 - '@jest/transform': registry.npmmirror.com/@jest/transform@29.6.4 - '@jest/types': registry.npmmirror.com/@jest/types@29.6.3 - '@jridgewell/trace-mapping': registry.npmmirror.com/@jridgewell/trace-mapping@0.3.19 - '@types/node': registry.npmmirror.com/@types/node@18.15.11 - chalk: registry.npmmirror.com/chalk@4.1.2 - collect-v8-coverage: registry.npmmirror.com/collect-v8-coverage@1.0.2 - exit: registry.npmmirror.com/exit@0.1.2 - glob: registry.npmmirror.com/glob@7.2.3 - graceful-fs: registry.npmmirror.com/graceful-fs@4.2.11 - istanbul-lib-coverage: registry.npmmirror.com/istanbul-lib-coverage@3.2.0 - istanbul-lib-instrument: registry.npmmirror.com/istanbul-lib-instrument@6.0.0 - istanbul-lib-report: registry.npmmirror.com/istanbul-lib-report@3.0.1 - istanbul-lib-source-maps: registry.npmmirror.com/istanbul-lib-source-maps@4.0.1 - istanbul-reports: registry.npmmirror.com/istanbul-reports@3.1.6 - jest-message-util: registry.npmmirror.com/jest-message-util@29.6.3 - jest-util: registry.npmmirror.com/jest-util@29.6.3 - jest-worker: registry.npmmirror.com/jest-worker@29.6.4 - slash: registry.npmmirror.com/slash@3.0.0 - string-length: registry.npmmirror.com/string-length@4.0.2 - strip-ansi: registry.npmmirror.com/strip-ansi@6.0.1 - v8-to-istanbul: registry.npmmirror.com/v8-to-istanbul@9.1.0 - transitivePeerDependencies: - - supports-color - dev: true - - registry.npmmirror.com/@jest/schemas@29.6.3: - resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jest/schemas/-/schemas-29.6.3.tgz} - name: '@jest/schemas' - version: 29.6.3 - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@sinclair/typebox': registry.npmmirror.com/@sinclair/typebox@0.27.8 - dev: true - - registry.npmmirror.com/@jest/source-map@29.6.3: - resolution: {integrity: sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jest/source-map/-/source-map-29.6.3.tgz} - name: '@jest/source-map' - version: 29.6.3 - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jridgewell/trace-mapping': registry.npmmirror.com/@jridgewell/trace-mapping@0.3.19 - callsites: registry.npmmirror.com/callsites@3.1.0 - graceful-fs: registry.npmmirror.com/graceful-fs@4.2.11 - dev: true - - registry.npmmirror.com/@jest/test-result@29.6.4: - resolution: {integrity: sha512-uQ1C0AUEN90/dsyEirgMLlouROgSY+Wc/JanVVk0OiUKa5UFh7sJpMEM3aoUBAz2BRNvUJ8j3d294WFuRxSyOQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jest/test-result/-/test-result-29.6.4.tgz} - name: '@jest/test-result' - version: 29.6.4 - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jest/console': registry.npmmirror.com/@jest/console@29.6.4 - '@jest/types': registry.npmmirror.com/@jest/types@29.6.3 - '@types/istanbul-lib-coverage': registry.npmmirror.com/@types/istanbul-lib-coverage@2.0.4 - collect-v8-coverage: registry.npmmirror.com/collect-v8-coverage@1.0.2 - dev: true - - registry.npmmirror.com/@jest/test-sequencer@29.6.4: - resolution: {integrity: sha512-E84M6LbpcRq3fT4ckfKs9ryVanwkaIB0Ws9bw3/yP4seRLg/VaCZ/LgW0MCq5wwk4/iP/qnilD41aj2fsw2RMg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jest/test-sequencer/-/test-sequencer-29.6.4.tgz} - name: '@jest/test-sequencer' - version: 29.6.4 - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jest/test-result': registry.npmmirror.com/@jest/test-result@29.6.4 - graceful-fs: registry.npmmirror.com/graceful-fs@4.2.11 - jest-haste-map: registry.npmmirror.com/jest-haste-map@29.6.4 - slash: registry.npmmirror.com/slash@3.0.0 - dev: true - - registry.npmmirror.com/@jest/transform@29.6.4: - resolution: {integrity: sha512-8thgRSiXUqtr/pPGY/OsyHuMjGyhVnWrFAwoxmIemlBuiMyU1WFs0tXoNxzcr4A4uErs/ABre76SGmrr5ab/AA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jest/transform/-/transform-29.6.4.tgz} - name: '@jest/transform' - version: 29.6.4 - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.17 - '@jest/types': registry.npmmirror.com/@jest/types@29.6.3 - '@jridgewell/trace-mapping': registry.npmmirror.com/@jridgewell/trace-mapping@0.3.19 - babel-plugin-istanbul: registry.npmmirror.com/babel-plugin-istanbul@6.1.1 - chalk: registry.npmmirror.com/chalk@4.1.2 - convert-source-map: registry.npmmirror.com/convert-source-map@2.0.0 - fast-json-stable-stringify: registry.npmmirror.com/fast-json-stable-stringify@2.1.0 - graceful-fs: registry.npmmirror.com/graceful-fs@4.2.11 - jest-haste-map: registry.npmmirror.com/jest-haste-map@29.6.4 - jest-regex-util: registry.npmmirror.com/jest-regex-util@29.6.3 - jest-util: registry.npmmirror.com/jest-util@29.6.3 - micromatch: registry.npmmirror.com/micromatch@4.0.5 - pirates: registry.npmmirror.com/pirates@4.0.6 - slash: registry.npmmirror.com/slash@3.0.0 - write-file-atomic: registry.npmmirror.com/write-file-atomic@4.0.2 - transitivePeerDependencies: - - supports-color - dev: true - - registry.npmmirror.com/@jest/types@29.6.3: - resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jest/types/-/types-29.6.3.tgz} - name: '@jest/types' - version: 29.6.3 - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jest/schemas': registry.npmmirror.com/@jest/schemas@29.6.3 - '@types/istanbul-lib-coverage': registry.npmmirror.com/@types/istanbul-lib-coverage@2.0.4 - '@types/istanbul-reports': registry.npmmirror.com/@types/istanbul-reports@3.0.1 - '@types/node': registry.npmmirror.com/@types/node@18.15.11 - '@types/yargs': registry.npmmirror.com/@types/yargs@17.0.24 - chalk: registry.npmmirror.com/chalk@4.1.2 - dev: true - - registry.npmmirror.com/@jridgewell/gen-mapping@0.3.3: - resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz} - name: '@jridgewell/gen-mapping' - version: 0.3.3 - engines: {node: '>=6.0.0'} - dependencies: - '@jridgewell/set-array': registry.npmmirror.com/@jridgewell/set-array@1.1.2 - '@jridgewell/sourcemap-codec': registry.npmmirror.com/@jridgewell/sourcemap-codec@1.4.15 - '@jridgewell/trace-mapping': registry.npmmirror.com/@jridgewell/trace-mapping@0.3.19 - dev: true - - registry.npmmirror.com/@jridgewell/resolve-uri@3.1.1: - resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz} - name: '@jridgewell/resolve-uri' - version: 3.1.1 - engines: {node: '>=6.0.0'} - dev: true - - registry.npmmirror.com/@jridgewell/set-array@1.1.2: - resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/set-array/-/set-array-1.1.2.tgz} - name: '@jridgewell/set-array' - version: 1.1.2 - engines: {node: '>=6.0.0'} - dev: true - - registry.npmmirror.com/@jridgewell/source-map@0.3.5: - resolution: {integrity: sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/source-map/-/source-map-0.3.5.tgz} - name: '@jridgewell/source-map' - version: 0.3.5 - dependencies: - '@jridgewell/gen-mapping': registry.npmmirror.com/@jridgewell/gen-mapping@0.3.3 - '@jridgewell/trace-mapping': registry.npmmirror.com/@jridgewell/trace-mapping@0.3.19 - dev: true - - registry.npmmirror.com/@jridgewell/sourcemap-codec@1.4.15: - resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz} - name: '@jridgewell/sourcemap-codec' - version: 1.4.15 - dev: true - - registry.npmmirror.com/@jridgewell/trace-mapping@0.3.19: - resolution: {integrity: sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz} - name: '@jridgewell/trace-mapping' - version: 0.3.19 - dependencies: - '@jridgewell/resolve-uri': registry.npmmirror.com/@jridgewell/resolve-uri@3.1.1 - '@jridgewell/sourcemap-codec': registry.npmmirror.com/@jridgewell/sourcemap-codec@1.4.15 - dev: true - - registry.npmmirror.com/@nestjs-modules/ioredis@1.0.1(@nestjs/common@9.0.0)(@nestjs/core@9.0.0)(ioredis@5.3.2): - resolution: {integrity: sha512-UhIOqL5pXeJlCucHMkJONwqecvLFySW/95uw34Umh0ld7v+6tvYRK3JHQYcJqzlmNiq52bfNxf7CUpuHCSdA3A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@nestjs-modules/ioredis/-/ioredis-1.0.1.tgz} - id: registry.npmmirror.com/@nestjs-modules/ioredis/1.0.1 - name: '@nestjs-modules/ioredis' - version: 1.0.1 - peerDependencies: - '@nestjs/common': ^6.7.0 || ^7.0.0 || ^8.0.0 - '@nestjs/core': ^6.7.0 || ^7.0.0 || ^8.0.0 - ioredis: ^4.0.0 - dependencies: - '@nestjs/common': registry.npmmirror.com/@nestjs/common@9.0.0(cache-manager@4.1.0)(reflect-metadata@0.1.13)(rxjs@7.2.0) - '@nestjs/core': registry.npmmirror.com/@nestjs/core@9.0.0(@nestjs/common@9.0.0)(@nestjs/platform-express@9.0.0)(reflect-metadata@0.1.13)(rxjs@7.2.0) - ioredis: registry.npmmirror.com/ioredis@5.3.2 - dev: false - - registry.npmmirror.com/@nestjs/cache-manager@2.1.1(@nestjs/common@9.0.0)(@nestjs/core@9.0.0)(cache-manager@4.1.0)(reflect-metadata@0.1.13)(rxjs@7.2.0): - resolution: {integrity: sha512-oYfRys4Ng0zp2HTUPNjH7gizf4vvG3PQZZ+3yGemb3xrF+p3JxDSK0cDq9NTjHzD5UmhjiyAftB9GkuL+t3r9g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@nestjs/cache-manager/-/cache-manager-2.1.1.tgz} - id: registry.npmmirror.com/@nestjs/cache-manager/2.1.1 - name: '@nestjs/cache-manager' - version: 2.1.1 - peerDependencies: - '@nestjs/common': ^9.0.0 || ^10.0.0 - '@nestjs/core': ^9.0.0 || ^10.0.0 - cache-manager: <=5 - reflect-metadata: ^0.1.12 - rxjs: ^7.0.0 - dependencies: - '@nestjs/common': registry.npmmirror.com/@nestjs/common@9.0.0(cache-manager@4.1.0)(reflect-metadata@0.1.13)(rxjs@7.2.0) - '@nestjs/core': registry.npmmirror.com/@nestjs/core@9.0.0(@nestjs/common@9.0.0)(@nestjs/platform-express@9.0.0)(reflect-metadata@0.1.13)(rxjs@7.2.0) - cache-manager: registry.npmmirror.com/cache-manager@4.1.0 - reflect-metadata: registry.npmmirror.com/reflect-metadata@0.1.13 - rxjs: registry.npmmirror.com/rxjs@7.2.0 - dev: false - - registry.npmmirror.com/@nestjs/cli@9.0.0: - resolution: {integrity: sha512-xT5uOoIEcaB/Fn6UeF7atfKqKiEEsTeRKPiM55p+e5H9WVw8FC2r4ceZgaINJbsw0QWskVj/ZQadMo6dA6hXxw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@nestjs/cli/-/cli-9.0.0.tgz} - name: '@nestjs/cli' - version: 9.0.0 - engines: {node: '>= 12.9.0'} - hasBin: true - dependencies: - '@angular-devkit/core': registry.npmmirror.com/@angular-devkit/core@14.0.5(chokidar@3.5.3) - '@angular-devkit/schematics': registry.npmmirror.com/@angular-devkit/schematics@14.0.5(chokidar@3.5.3) - '@angular-devkit/schematics-cli': registry.npmmirror.com/@angular-devkit/schematics-cli@14.0.5(chokidar@3.5.3) - '@nestjs/schematics': registry.npmmirror.com/@nestjs/schematics@9.0.0(chokidar@3.5.3)(typescript@4.7.4) - chalk: registry.npmmirror.com/chalk@3.0.0 - chokidar: registry.npmmirror.com/chokidar@3.5.3 - cli-table3: registry.npmmirror.com/cli-table3@0.6.2 - commander: registry.npmmirror.com/commander@4.1.1 - fork-ts-checker-webpack-plugin: registry.npmmirror.com/fork-ts-checker-webpack-plugin@7.2.11(typescript@4.7.4)(webpack@5.73.0) - inquirer: registry.npmmirror.com/inquirer@7.3.3 - node-emoji: registry.npmmirror.com/node-emoji@1.11.0 - ora: registry.npmmirror.com/ora@5.4.1 - os-name: registry.npmmirror.com/os-name@4.0.1 - rimraf: registry.npmmirror.com/rimraf@3.0.2 - shelljs: registry.npmmirror.com/shelljs@0.8.5 - source-map-support: registry.npmmirror.com/source-map-support@0.5.21 - tree-kill: registry.npmmirror.com/tree-kill@1.2.2 - tsconfig-paths: registry.npmmirror.com/tsconfig-paths@3.14.1 - tsconfig-paths-webpack-plugin: registry.npmmirror.com/tsconfig-paths-webpack-plugin@3.5.2 - typescript: registry.npmmirror.com/typescript@4.7.4 - webpack: registry.npmmirror.com/webpack@5.73.0 - webpack-node-externals: registry.npmmirror.com/webpack-node-externals@3.0.0 - transitivePeerDependencies: - - '@swc/core' - - esbuild - - uglify-js - - vue-template-compiler - - webpack-cli - dev: true - - registry.npmmirror.com/@nestjs/common@9.0.0(cache-manager@4.1.0)(reflect-metadata@0.1.13)(rxjs@7.2.0): - resolution: {integrity: sha512-dyAd48ux/eFYj1uEnQAisSVWq54ttEfeHJBDljvAc6hXbBNHTzZfq/fUH6DmlK29WdGXNMVabCjfduwX2EPquQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@nestjs/common/-/common-9.0.0.tgz} - id: registry.npmmirror.com/@nestjs/common/9.0.0 - name: '@nestjs/common' - version: 9.0.0 - peerDependencies: - cache-manager: '*' - class-transformer: '*' - class-validator: '*' - reflect-metadata: ^0.1.12 - rxjs: ^7.1.0 - peerDependenciesMeta: - cache-manager: - optional: true - class-transformer: - optional: true - class-validator: - optional: true - dependencies: - cache-manager: registry.npmmirror.com/cache-manager@4.1.0 - iterare: registry.npmmirror.com/iterare@1.2.1 - reflect-metadata: registry.npmmirror.com/reflect-metadata@0.1.13 - rxjs: registry.npmmirror.com/rxjs@7.2.0 - tslib: registry.npmmirror.com/tslib@2.4.0 - uuid: registry.npmmirror.com/uuid@8.3.2 - - registry.npmmirror.com/@nestjs/config@3.1.1(@nestjs/common@9.0.0)(reflect-metadata@0.1.13): - resolution: {integrity: sha512-qu5QlNiJdqQtOsnB6lx4JCXPQ96jkKUsOGd+JXfXwqJqZcOSAq6heNFg0opW4pq4J/VZoNwoo87TNnx9wthnqQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@nestjs/config/-/config-3.1.1.tgz} - id: registry.npmmirror.com/@nestjs/config/3.1.1 - name: '@nestjs/config' - version: 3.1.1 - peerDependencies: - '@nestjs/common': ^8.0.0 || ^9.0.0 || ^10.0.0 - reflect-metadata: ^0.1.13 - dependencies: - '@nestjs/common': registry.npmmirror.com/@nestjs/common@9.0.0(cache-manager@4.1.0)(reflect-metadata@0.1.13)(rxjs@7.2.0) - dotenv: registry.npmmirror.com/dotenv@16.3.1 - dotenv-expand: registry.npmmirror.com/dotenv-expand@10.0.0 - lodash: registry.npmmirror.com/lodash@4.17.21 - reflect-metadata: registry.npmmirror.com/reflect-metadata@0.1.13 - uuid: registry.npmmirror.com/uuid@9.0.0 - dev: false - - registry.npmmirror.com/@nestjs/core@9.0.0(@nestjs/common@9.0.0)(@nestjs/platform-express@9.0.0)(reflect-metadata@0.1.13)(rxjs@7.2.0): - resolution: {integrity: sha512-Ib25JrYQf5ICro19FBytoMpMQicanC4HG3goPBSqsolu+AhVzSU0OhDwmmiDy3aHgmheFnNEEdUH+Gh5Rm2cNw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@nestjs/core/-/core-9.0.0.tgz} - id: registry.npmmirror.com/@nestjs/core/9.0.0 - name: '@nestjs/core' - version: 9.0.0 - requiresBuild: true - peerDependencies: - '@nestjs/common': ^9.0.0 - '@nestjs/microservices': ^9.0.0 - '@nestjs/platform-express': ^9.0.0 - '@nestjs/websockets': ^9.0.0 - reflect-metadata: ^0.1.12 - rxjs: ^7.1.0 - peerDependenciesMeta: - '@nestjs/microservices': - optional: true - '@nestjs/platform-express': - optional: true - '@nestjs/websockets': - optional: true - dependencies: - '@nestjs/common': registry.npmmirror.com/@nestjs/common@9.0.0(cache-manager@4.1.0)(reflect-metadata@0.1.13)(rxjs@7.2.0) - '@nestjs/platform-express': registry.npmmirror.com/@nestjs/platform-express@9.0.0(@nestjs/common@9.0.0)(@nestjs/core@9.0.0) - '@nuxtjs/opencollective': registry.npmmirror.com/@nuxtjs/opencollective@0.3.2 - fast-safe-stringify: registry.npmmirror.com/fast-safe-stringify@2.1.1 - iterare: registry.npmmirror.com/iterare@1.2.1 - object-hash: registry.npmmirror.com/object-hash@3.0.0 - path-to-regexp: registry.npmmirror.com/path-to-regexp@3.2.0 - reflect-metadata: registry.npmmirror.com/reflect-metadata@0.1.13 - rxjs: registry.npmmirror.com/rxjs@7.2.0 - tslib: registry.npmmirror.com/tslib@2.4.0 - uuid: registry.npmmirror.com/uuid@8.3.2 - transitivePeerDependencies: - - encoding - - registry.npmmirror.com/@nestjs/jwt@10.1.1(@nestjs/common@9.0.0): - resolution: {integrity: sha512-sISYylg8y1Mb7saxPx5Zh11i7v9JOh70CEC/rN6g43MrbFlJ57c1eYFrffxip1YAx3DmV4K67yXob3syKZMOew==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@nestjs/jwt/-/jwt-10.1.1.tgz} - id: registry.npmmirror.com/@nestjs/jwt/10.1.1 - name: '@nestjs/jwt' - version: 10.1.1 - peerDependencies: - '@nestjs/common': ^8.0.0 || ^9.0.0 || ^10.0.0 - dependencies: - '@nestjs/common': registry.npmmirror.com/@nestjs/common@9.0.0(cache-manager@4.1.0)(reflect-metadata@0.1.13)(rxjs@7.2.0) - '@types/jsonwebtoken': registry.npmmirror.com/@types/jsonwebtoken@9.0.2 - jsonwebtoken: registry.npmmirror.com/jsonwebtoken@9.0.0 - dev: false - - registry.npmmirror.com/@nestjs/passport@10.0.2(@nestjs/common@9.0.0)(passport@0.6.0): - resolution: {integrity: sha512-od31vfB2z3y05IDB5dWSbCGE2+pAf2k2WCBinNuTTOxN0O0+wtO1L3kawj/aCW3YR9uxsTOVbTDwtwgpNNsnjQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@nestjs/passport/-/passport-10.0.2.tgz} - id: registry.npmmirror.com/@nestjs/passport/10.0.2 - name: '@nestjs/passport' - version: 10.0.2 - peerDependencies: - '@nestjs/common': ^8.0.0 || ^9.0.0 || ^10.0.0 - passport: ^0.4.0 || ^0.5.0 || ^0.6.0 - dependencies: - '@nestjs/common': registry.npmmirror.com/@nestjs/common@9.0.0(cache-manager@4.1.0)(reflect-metadata@0.1.13)(rxjs@7.2.0) - passport: registry.npmmirror.com/passport@0.6.0 - dev: false - - registry.npmmirror.com/@nestjs/platform-express@9.0.0(@nestjs/common@9.0.0)(@nestjs/core@9.0.0): - resolution: {integrity: sha512-5W5KeYHKKQe4/H7DcPViIObC9nO74P8wnLZUpk4HCUUuFZIzPpUu9v+RAg7c/jGrbdyjfg3VKODCUKFo6PBfmg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@nestjs/platform-express/-/platform-express-9.0.0.tgz} - id: registry.npmmirror.com/@nestjs/platform-express/9.0.0 - name: '@nestjs/platform-express' - version: 9.0.0 - peerDependencies: - '@nestjs/common': ^9.0.0 - '@nestjs/core': ^9.0.0 - dependencies: - '@nestjs/common': registry.npmmirror.com/@nestjs/common@9.0.0(cache-manager@4.1.0)(reflect-metadata@0.1.13)(rxjs@7.2.0) - '@nestjs/core': registry.npmmirror.com/@nestjs/core@9.0.0(@nestjs/common@9.0.0)(@nestjs/platform-express@9.0.0)(reflect-metadata@0.1.13)(rxjs@7.2.0) - body-parser: registry.npmmirror.com/body-parser@1.20.0 - cors: registry.npmmirror.com/cors@2.8.5 - express: registry.npmmirror.com/express@4.18.1 - multer: registry.npmmirror.com/multer@1.4.4-lts.1 - tslib: registry.npmmirror.com/tslib@2.4.0 - transitivePeerDependencies: - - supports-color - - registry.npmmirror.com/@nestjs/schedule@3.0.4(@nestjs/common@9.0.0)(@nestjs/core@9.0.0)(reflect-metadata@0.1.13): - resolution: {integrity: sha512-uFJpuZsXfpvgx2y7/KrIZW9e1L68TLiwRodZ6+Gc8xqQiHSUzAVn+9F4YMxWFlHITZvvkjWziUFgRNCitDcTZQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@nestjs/schedule/-/schedule-3.0.4.tgz} - id: registry.npmmirror.com/@nestjs/schedule/3.0.4 - name: '@nestjs/schedule' - version: 3.0.4 - peerDependencies: - '@nestjs/common': ^8.0.0 || ^9.0.0 || ^10.0.0 - '@nestjs/core': ^8.0.0 || ^9.0.0 || ^10.0.0 - reflect-metadata: ^0.1.12 - dependencies: - '@nestjs/common': registry.npmmirror.com/@nestjs/common@9.0.0(cache-manager@4.1.0)(reflect-metadata@0.1.13)(rxjs@7.2.0) - '@nestjs/core': registry.npmmirror.com/@nestjs/core@9.0.0(@nestjs/common@9.0.0)(@nestjs/platform-express@9.0.0)(reflect-metadata@0.1.13)(rxjs@7.2.0) - cron: registry.npmmirror.com/cron@2.4.3 - reflect-metadata: registry.npmmirror.com/reflect-metadata@0.1.13 - uuid: registry.npmmirror.com/uuid@9.0.1 - dev: false - - registry.npmmirror.com/@nestjs/schematics@9.0.0(chokidar@3.5.3)(typescript@4.7.4): - resolution: {integrity: sha512-l4AReqX597iKyAXVN9WsrLQ1NDY0G15s7x8dHpwM0+3MOFoEKZMvqeiFrfVMqbwuMiTvXTuLcoMdlKuz7qtrDg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@nestjs/schematics/-/schematics-9.0.0.tgz} - id: registry.npmmirror.com/@nestjs/schematics/9.0.0 - name: '@nestjs/schematics' - version: 9.0.0 - peerDependencies: - typescript: ^4.3.5 - dependencies: - '@angular-devkit/core': registry.npmmirror.com/@angular-devkit/core@14.0.5(chokidar@3.5.3) - '@angular-devkit/schematics': registry.npmmirror.com/@angular-devkit/schematics@14.0.5(chokidar@3.5.3) - fs-extra: registry.npmmirror.com/fs-extra@10.1.0 - jsonc-parser: registry.npmmirror.com/jsonc-parser@3.0.0 - pluralize: registry.npmmirror.com/pluralize@8.0.0 - typescript: registry.npmmirror.com/typescript@4.7.4 - transitivePeerDependencies: - - chokidar - dev: true - - registry.npmmirror.com/@nestjs/serve-static@4.0.0(@nestjs/common@9.0.0)(@nestjs/core@9.0.0): - resolution: {integrity: sha512-8cTrNV2ngdHIjiLNsXePnw0+KY1ThrZGz/WeyAG5gIvmZNDbnZBOrPoYlKL+MOzlXlQStxR5jKLYmn+nJeoncQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@nestjs/serve-static/-/serve-static-4.0.0.tgz} - id: registry.npmmirror.com/@nestjs/serve-static/4.0.0 - name: '@nestjs/serve-static' - version: 4.0.0 - peerDependencies: - '@fastify/static': ^6.5.0 - '@nestjs/common': ^9.0.0 || ^10.0.0 - '@nestjs/core': ^9.0.0 || ^10.0.0 - express: ^4.18.1 - fastify: ^4.7.0 - peerDependenciesMeta: - '@fastify/static': - optional: true - express: - optional: true - fastify: - optional: true - dependencies: - '@nestjs/common': registry.npmmirror.com/@nestjs/common@9.0.0(cache-manager@4.1.0)(reflect-metadata@0.1.13)(rxjs@7.2.0) - '@nestjs/core': registry.npmmirror.com/@nestjs/core@9.0.0(@nestjs/common@9.0.0)(@nestjs/platform-express@9.0.0)(reflect-metadata@0.1.13)(rxjs@7.2.0) - path-to-regexp: registry.npmmirror.com/path-to-regexp@0.2.5 - dev: false - - registry.npmmirror.com/@nestjs/testing@9.0.0(@nestjs/common@9.0.0)(@nestjs/core@9.0.0)(@nestjs/platform-express@9.0.0): - resolution: {integrity: sha512-lBBzZvJWaYutYC1wOEKf4KOis/wxudBX0pVLZxzHmtbkeC2EQgQCbyKA88m1R9QeYTt9CmVMg4eyb+WeOADZiQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@nestjs/testing/-/testing-9.0.0.tgz} - id: registry.npmmirror.com/@nestjs/testing/9.0.0 - name: '@nestjs/testing' - version: 9.0.0 - peerDependencies: - '@nestjs/common': ^9.0.0 - '@nestjs/core': ^9.0.0 - '@nestjs/microservices': ^9.0.0 - '@nestjs/platform-express': ^9.0.0 - peerDependenciesMeta: - '@nestjs/microservices': - optional: true - '@nestjs/platform-express': - optional: true - dependencies: - '@nestjs/common': registry.npmmirror.com/@nestjs/common@9.0.0(cache-manager@4.1.0)(reflect-metadata@0.1.13)(rxjs@7.2.0) - '@nestjs/core': registry.npmmirror.com/@nestjs/core@9.0.0(@nestjs/common@9.0.0)(@nestjs/platform-express@9.0.0)(reflect-metadata@0.1.13)(rxjs@7.2.0) - '@nestjs/platform-express': registry.npmmirror.com/@nestjs/platform-express@9.0.0(@nestjs/common@9.0.0)(@nestjs/core@9.0.0) - tslib: registry.npmmirror.com/tslib@2.4.0 - dev: true - - 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} - name: '@nodelib/fs.scandir' - version: 2.1.5 - 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 - dev: true - - 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} - name: '@nodelib/fs.stat' - version: 2.0.5 - engines: {node: '>= 8'} - dev: true - - 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} - name: '@nodelib/fs.walk' - version: 1.2.8 - engines: {node: '>= 8'} - dependencies: - '@nodelib/fs.scandir': registry.npmmirror.com/@nodelib/fs.scandir@2.1.5 - fastq: registry.npmmirror.com/fastq@1.15.0 - dev: true - - registry.npmmirror.com/@nuxtjs/opencollective@0.3.2: - resolution: {integrity: sha512-um0xL3fO7Mf4fDxcqx9KryrB7zgRM5JSlvGN5AGkP6JLM5XEKyjeAiPbNxdXVXQ16isuAhYpvP88NgL2BGd6aA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@nuxtjs/opencollective/-/opencollective-0.3.2.tgz} - name: '@nuxtjs/opencollective' - version: 0.3.2 - engines: {node: '>=8.0.0', npm: '>=5.0.0'} - hasBin: true - dependencies: - chalk: registry.npmmirror.com/chalk@4.1.2 - consola: registry.npmmirror.com/consola@2.15.3 - node-fetch: registry.npmmirror.com/node-fetch@2.7.0 - transitivePeerDependencies: - - encoding - - registry.npmmirror.com/@prisma/client@5.3.1(prisma@5.3.1): - resolution: {integrity: sha512-ArOKjHwdFZIe1cGU56oIfy7wRuTn0FfZjGuU/AjgEBOQh+4rDkB6nF+AGHP8KaVpkBIiHGPQh3IpwQ3xDMdO0Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@prisma/client/-/client-5.3.1.tgz} - id: registry.npmmirror.com/@prisma/client/5.3.1 - name: '@prisma/client' - version: 5.3.1 - engines: {node: '>=16.13'} - requiresBuild: true - peerDependencies: - prisma: '*' - peerDependenciesMeta: - prisma: - optional: true - dependencies: - '@prisma/engines-version': registry.npmmirror.com/@prisma/engines-version@5.3.1-2.61e140623197a131c2a6189271ffee05a7aa9a59 - prisma: registry.npmmirror.com/prisma@5.3.1 - dev: false - - registry.npmmirror.com/@prisma/engines-version@5.3.1-2.61e140623197a131c2a6189271ffee05a7aa9a59: - resolution: {integrity: sha512-y5qbUi3ql2Xg7XraqcXEdMHh0MocBfnBzDn5GbV1xk23S3Mq8MGs+VjacTNiBh3dtEdUERCrUUG7Z3QaJ+h79w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@prisma/engines-version/-/engines-version-5.3.1-2.61e140623197a131c2a6189271ffee05a7aa9a59.tgz} - name: '@prisma/engines-version' - version: 5.3.1-2.61e140623197a131c2a6189271ffee05a7aa9a59 - dev: false - - registry.npmmirror.com/@prisma/engines@5.3.1: - resolution: {integrity: sha512-6QkILNyfeeN67BNEPEtkgh3Xo2tm6D7V+UhrkBbRHqKw9CTaz/vvTP/ROwYSP/3JT2MtIutZm/EnhxUiuOPVDA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@prisma/engines/-/engines-5.3.1.tgz} - name: '@prisma/engines' - version: 5.3.1 - requiresBuild: true - dev: false - - registry.npmmirror.com/@redis/bloom@1.2.0(@redis/client@1.5.11): - resolution: {integrity: sha512-HG2DFjYKbpNmVXsa0keLHp/3leGJz1mjh09f2RLGGLQZzSHpkmZWuwJbAvo3QcRY8p80m5+ZdXZdYOSBLlp7Cg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@redis/bloom/-/bloom-1.2.0.tgz} - id: registry.npmmirror.com/@redis/bloom/1.2.0 - name: '@redis/bloom' - version: 1.2.0 - peerDependencies: - '@redis/client': ^1.0.0 - dependencies: - '@redis/client': registry.npmmirror.com/@redis/client@1.5.11 - dev: false - - registry.npmmirror.com/@redis/client@1.5.11: - resolution: {integrity: sha512-cV7yHcOAtNQ5x/yQl7Yw1xf53kO0FNDTdDU6bFIMbW6ljB7U7ns0YRM+QIkpoqTAt6zK5k9Fq0QWlUbLcq9AvA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@redis/client/-/client-1.5.11.tgz} - name: '@redis/client' - version: 1.5.11 - engines: {node: '>=14'} - dependencies: - cluster-key-slot: registry.npmmirror.com/cluster-key-slot@1.1.2 - generic-pool: registry.npmmirror.com/generic-pool@3.9.0 - yallist: registry.npmmirror.com/yallist@4.0.0 - dev: false - - registry.npmmirror.com/@redis/graph@1.1.0(@redis/client@1.5.11): - resolution: {integrity: sha512-16yZWngxyXPd+MJxeSr0dqh2AIOi8j9yXKcKCwVaKDbH3HTuETpDVPcLujhFYVPtYrngSco31BUcSa9TH31Gqg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@redis/graph/-/graph-1.1.0.tgz} - id: registry.npmmirror.com/@redis/graph/1.1.0 - name: '@redis/graph' - version: 1.1.0 - peerDependencies: - '@redis/client': ^1.0.0 - dependencies: - '@redis/client': registry.npmmirror.com/@redis/client@1.5.11 - dev: false - - registry.npmmirror.com/@redis/json@1.0.6(@redis/client@1.5.11): - resolution: {integrity: sha512-rcZO3bfQbm2zPRpqo82XbW8zg4G/w4W3tI7X8Mqleq9goQjAGLL7q/1n1ZX4dXEAmORVZ4s1+uKLaUOg7LrUhw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@redis/json/-/json-1.0.6.tgz} - id: registry.npmmirror.com/@redis/json/1.0.6 - name: '@redis/json' - version: 1.0.6 - peerDependencies: - '@redis/client': ^1.0.0 - dependencies: - '@redis/client': registry.npmmirror.com/@redis/client@1.5.11 - dev: false - - registry.npmmirror.com/@redis/search@1.1.5(@redis/client@1.5.11): - resolution: {integrity: sha512-hPP8w7GfGsbtYEJdn4n7nXa6xt6hVZnnDktKW4ArMaFQ/m/aR7eFvsLQmG/mn1Upq99btPJk+F27IQ2dYpCoUg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@redis/search/-/search-1.1.5.tgz} - id: registry.npmmirror.com/@redis/search/1.1.5 - name: '@redis/search' - version: 1.1.5 - peerDependencies: - '@redis/client': ^1.0.0 - dependencies: - '@redis/client': registry.npmmirror.com/@redis/client@1.5.11 - dev: false - - registry.npmmirror.com/@redis/time-series@1.0.5(@redis/client@1.5.11): - resolution: {integrity: sha512-IFjIgTusQym2B5IZJG3XKr5llka7ey84fw/NOYqESP5WUfQs9zz1ww/9+qoz4ka/S6KcGBodzlCeZ5UImKbscg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@redis/time-series/-/time-series-1.0.5.tgz} - id: registry.npmmirror.com/@redis/time-series/1.0.5 - name: '@redis/time-series' - version: 1.0.5 - peerDependencies: - '@redis/client': ^1.0.0 - dependencies: - '@redis/client': registry.npmmirror.com/@redis/client@1.5.11 - dev: false - - registry.npmmirror.com/@sinclair/typebox@0.27.8: - resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@sinclair/typebox/-/typebox-0.27.8.tgz} - name: '@sinclair/typebox' - version: 0.27.8 - dev: true - - registry.npmmirror.com/@sinonjs/commons@3.0.0: - resolution: {integrity: sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@sinonjs/commons/-/commons-3.0.0.tgz} - name: '@sinonjs/commons' - version: 3.0.0 - dependencies: - type-detect: registry.npmmirror.com/type-detect@4.0.8 - dev: true - - registry.npmmirror.com/@sinonjs/fake-timers@10.3.0: - resolution: {integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz} - name: '@sinonjs/fake-timers' - version: 10.3.0 - dependencies: - '@sinonjs/commons': registry.npmmirror.com/@sinonjs/commons@3.0.0 - dev: true - - registry.npmmirror.com/@tsconfig/node10@1.0.9: - resolution: {integrity: sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@tsconfig/node10/-/node10-1.0.9.tgz} - name: '@tsconfig/node10' - version: 1.0.9 - dev: true - - registry.npmmirror.com/@tsconfig/node12@1.0.11: - resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@tsconfig/node12/-/node12-1.0.11.tgz} - name: '@tsconfig/node12' - version: 1.0.11 - dev: true - - registry.npmmirror.com/@tsconfig/node14@1.0.3: - resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@tsconfig/node14/-/node14-1.0.3.tgz} - name: '@tsconfig/node14' - version: 1.0.3 - dev: true - - registry.npmmirror.com/@tsconfig/node16@1.0.4: - resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@tsconfig/node16/-/node16-1.0.4.tgz} - name: '@tsconfig/node16' - version: 1.0.4 - dev: true - - registry.npmmirror.com/@types/babel__core@7.20.1: - resolution: {integrity: sha512-aACu/U/omhdk15O4Nfb+fHgH/z3QsfQzpnvRZhYhThms83ZnAOZz7zZAWO7mn2yyNQaA4xTO8GLK3uqFU4bYYw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/babel__core/-/babel__core-7.20.1.tgz} - name: '@types/babel__core' - version: 7.20.1 - dependencies: - '@babel/parser': registry.npmmirror.com/@babel/parser@7.22.16 - '@babel/types': registry.npmmirror.com/@babel/types@7.22.17 - '@types/babel__generator': registry.npmmirror.com/@types/babel__generator@7.6.4 - '@types/babel__template': registry.npmmirror.com/@types/babel__template@7.4.1 - '@types/babel__traverse': registry.npmmirror.com/@types/babel__traverse@7.20.1 - dev: true - - registry.npmmirror.com/@types/babel__generator@7.6.4: - resolution: {integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/babel__generator/-/babel__generator-7.6.4.tgz} - name: '@types/babel__generator' - version: 7.6.4 - dependencies: - '@babel/types': registry.npmmirror.com/@babel/types@7.22.17 - dev: true - - registry.npmmirror.com/@types/babel__template@7.4.1: - resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/babel__template/-/babel__template-7.4.1.tgz} - name: '@types/babel__template' - version: 7.4.1 - dependencies: - '@babel/parser': registry.npmmirror.com/@babel/parser@7.22.16 - '@babel/types': registry.npmmirror.com/@babel/types@7.22.17 - dev: true - - registry.npmmirror.com/@types/babel__traverse@7.20.1: - resolution: {integrity: sha512-MitHFXnhtgwsGZWtT68URpOvLN4EREih1u3QtQiN4VdAxWKRVvGCSvw/Qth0M0Qq3pJpnGOu5JaM/ydK7OGbqg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/babel__traverse/-/babel__traverse-7.20.1.tgz} - name: '@types/babel__traverse' - version: 7.20.1 - dependencies: - '@babel/types': registry.npmmirror.com/@babel/types@7.22.17 - dev: true - - registry.npmmirror.com/@types/body-parser@1.19.2: - resolution: {integrity: sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/body-parser/-/body-parser-1.19.2.tgz} - name: '@types/body-parser' - version: 1.19.2 - dependencies: - '@types/connect': registry.npmmirror.com/@types/connect@3.4.36 - '@types/node': registry.npmmirror.com/@types/node@18.15.11 - - registry.npmmirror.com/@types/connect@3.4.36: - resolution: {integrity: sha512-P63Zd/JUGq+PdrM1lv0Wv5SBYeA2+CORvbrXbngriYY0jzLUWfQMQQxOhjONEz/wlHOAxOdY7CY65rgQdTjq2w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/connect/-/connect-3.4.36.tgz} - name: '@types/connect' - version: 3.4.36 - dependencies: - '@types/node': registry.npmmirror.com/@types/node@18.15.11 - - registry.npmmirror.com/@types/cookiejar@2.1.2: - resolution: {integrity: sha512-t73xJJrvdTjXrn4jLS9VSGRbz0nUY3cl2DMGDU48lKl+HR9dbbjW2A9r3g40VA++mQpy6uuHg33gy7du2BKpog==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/cookiejar/-/cookiejar-2.1.2.tgz} - name: '@types/cookiejar' - version: 2.1.2 - dev: true - - registry.npmmirror.com/@types/eslint-scope@3.7.4: - resolution: {integrity: sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/eslint-scope/-/eslint-scope-3.7.4.tgz} - name: '@types/eslint-scope' - version: 3.7.4 - dependencies: - '@types/eslint': registry.npmmirror.com/@types/eslint@8.44.2 - '@types/estree': registry.npmmirror.com/@types/estree@0.0.51 - dev: true - - registry.npmmirror.com/@types/eslint@8.44.2: - resolution: {integrity: sha512-sdPRb9K6iL5XZOmBubg8yiFp5yS/JdUDQsq5e6h95km91MCYMuvp7mh1fjPEYUhvHepKpZOjnEaMBR4PxjWDzg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/eslint/-/eslint-8.44.2.tgz} - name: '@types/eslint' - version: 8.44.2 - dependencies: - '@types/estree': registry.npmmirror.com/@types/estree@0.0.51 - '@types/json-schema': registry.npmmirror.com/@types/json-schema@7.0.12 - 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/estree@1.0.1: - resolution: {integrity: sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/estree/-/estree-1.0.1.tgz} - name: '@types/estree' - version: 1.0.1 - dev: true - - registry.npmmirror.com/@types/express-serve-static-core@4.17.36: - resolution: {integrity: sha512-zbivROJ0ZqLAtMzgzIUC4oNqDG9iF0lSsAqpOD9kbs5xcIM3dTiyuHvBc7R8MtWBp3AAWGaovJa+wzWPjLYW7Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.36.tgz} - name: '@types/express-serve-static-core' - version: 4.17.36 - dependencies: - '@types/node': registry.npmmirror.com/@types/node@18.15.11 - '@types/qs': registry.npmmirror.com/@types/qs@6.9.8 - '@types/range-parser': registry.npmmirror.com/@types/range-parser@1.2.4 - '@types/send': registry.npmmirror.com/@types/send@0.17.1 - - registry.npmmirror.com/@types/express@4.17.13: - resolution: {integrity: sha512-6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/express/-/express-4.17.13.tgz} - name: '@types/express' - version: 4.17.13 - dependencies: - '@types/body-parser': registry.npmmirror.com/@types/body-parser@1.19.2 - '@types/express-serve-static-core': registry.npmmirror.com/@types/express-serve-static-core@4.17.36 - '@types/qs': registry.npmmirror.com/@types/qs@6.9.8 - '@types/serve-static': registry.npmmirror.com/@types/serve-static@1.15.2 - - registry.npmmirror.com/@types/graceful-fs@4.1.6: - resolution: {integrity: sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/graceful-fs/-/graceful-fs-4.1.6.tgz} - name: '@types/graceful-fs' - version: 4.1.6 - dependencies: - '@types/node': registry.npmmirror.com/@types/node@18.15.11 - dev: true - - registry.npmmirror.com/@types/http-errors@2.0.1: - resolution: {integrity: sha512-/K3ds8TRAfBvi5vfjuz8y6+GiAYBZ0x4tXv1Av6CWBWn0IlADc+ZX9pMq7oU0fNQPnBwIZl3rmeLp6SBApbxSQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/http-errors/-/http-errors-2.0.1.tgz} - name: '@types/http-errors' - version: 2.0.1 - - registry.npmmirror.com/@types/istanbul-lib-coverage@2.0.4: - resolution: {integrity: sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz} - name: '@types/istanbul-lib-coverage' - version: 2.0.4 - dev: true - - registry.npmmirror.com/@types/istanbul-lib-report@3.0.0: - resolution: {integrity: sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz} - name: '@types/istanbul-lib-report' - version: 3.0.0 - dependencies: - '@types/istanbul-lib-coverage': registry.npmmirror.com/@types/istanbul-lib-coverage@2.0.4 - dev: true - - registry.npmmirror.com/@types/istanbul-reports@3.0.1: - resolution: {integrity: sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz} - name: '@types/istanbul-reports' - version: 3.0.1 - dependencies: - '@types/istanbul-lib-report': registry.npmmirror.com/@types/istanbul-lib-report@3.0.0 - dev: true - - registry.npmmirror.com/@types/jest@29.5.0: - resolution: {integrity: sha512-3Emr5VOl/aoBwnWcH/EFQvlSAmjV+XtV9GGu5mwdYew5vhQh0IUZx/60x0TzHDu09Bi7HMx10t/namdJw5QIcg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/jest/-/jest-29.5.0.tgz} - name: '@types/jest' - version: 29.5.0 - dependencies: - expect: registry.npmmirror.com/expect@29.6.4 - pretty-format: registry.npmmirror.com/pretty-format@29.6.3 - dev: true - - registry.npmmirror.com/@types/json-schema@7.0.12: - resolution: {integrity: sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/json-schema/-/json-schema-7.0.12.tgz} - name: '@types/json-schema' - version: 7.0.12 - dev: true - - registry.npmmirror.com/@types/json5@0.0.29: - resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/json5/-/json5-0.0.29.tgz} - name: '@types/json5' - version: 0.0.29 - dev: true - - registry.npmmirror.com/@types/jsonwebtoken@9.0.2: - resolution: {integrity: sha512-drE6uz7QBKq1fYqqoFKTDRdFCPHd5TCub75BM+D+cMx7NU9hUz7SESLfC2fSCXVFMO5Yj8sOWHuGqPgjc+fz0Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/jsonwebtoken/-/jsonwebtoken-9.0.2.tgz} - name: '@types/jsonwebtoken' - version: 9.0.2 - dependencies: - '@types/node': registry.npmmirror.com/@types/node@18.15.11 - dev: false - - registry.npmmirror.com/@types/luxon@3.3.2: - resolution: {integrity: sha512-l5cpE57br4BIjK+9BSkFBOsWtwv6J9bJpC7gdXIzZyI0vuKvNTk0wZZrkQxMGsUAuGW9+WMNWF2IJMD7br2yeQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/luxon/-/luxon-3.3.2.tgz} - name: '@types/luxon' - version: 3.3.2 - dev: false - - registry.npmmirror.com/@types/mime@1.3.2: - resolution: {integrity: sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/mime/-/mime-1.3.2.tgz} - name: '@types/mime' - version: 1.3.2 - - registry.npmmirror.com/@types/mime@3.0.1: - resolution: {integrity: sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/mime/-/mime-3.0.1.tgz} - name: '@types/mime' - version: 3.0.1 - - registry.npmmirror.com/@types/node@18.15.11: - resolution: {integrity: sha512-E5Kwq2n4SbMzQOn6wnmBjuK9ouqlURrcZDVfbo9ftDDTFt3nk7ZKK4GMOzoYgnpQJKcxwQw+lGaBvvlMo0qN/Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/node/-/node-18.15.11.tgz} - name: '@types/node' - version: 18.15.11 - - registry.npmmirror.com/@types/parse-json@4.0.0: - resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/parse-json/-/parse-json-4.0.0.tgz} - name: '@types/parse-json' - version: 4.0.0 - dev: true - - registry.npmmirror.com/@types/passport-jwt@3.0.10: - resolution: {integrity: sha512-D2A911g2uiFsq/XXFBxQjcBcK4c6zPF2gAx9blEfz2AOXx5UUwsd8ZcMTcPe8z9dhW8LQBYLjv+vug2dvnRevA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/passport-jwt/-/passport-jwt-3.0.10.tgz} - name: '@types/passport-jwt' - version: 3.0.10 - dependencies: - '@types/express': registry.npmmirror.com/@types/express@4.17.13 - '@types/jsonwebtoken': registry.npmmirror.com/@types/jsonwebtoken@9.0.2 - '@types/passport-strategy': registry.npmmirror.com/@types/passport-strategy@0.2.36 - dev: false - - registry.npmmirror.com/@types/passport-strategy@0.2.36: - resolution: {integrity: sha512-hotVZuaCt04LJYXfZD5B+5UeCcRVG8IjKaLLGTJ1eFp0wiFQA2XfsqslGGInWje+OysNNLPH/ducce5GXHDC1Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/passport-strategy/-/passport-strategy-0.2.36.tgz} - name: '@types/passport-strategy' - version: 0.2.36 - dependencies: - '@types/express': registry.npmmirror.com/@types/express@4.17.13 - '@types/passport': registry.npmmirror.com/@types/passport@1.0.13 - dev: false - - registry.npmmirror.com/@types/passport@1.0.13: - resolution: {integrity: sha512-XXURryL+EZAWtbQFOHX1eNB+RJwz5XMPPz1xrGpEKr2xUZCXM4NCPkHMtZQ3B2tTSG/1IRaAcTHjczRA4sSFCw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/passport/-/passport-1.0.13.tgz} - name: '@types/passport' - version: 1.0.13 - dependencies: - '@types/express': registry.npmmirror.com/@types/express@4.17.13 - dev: false - - registry.npmmirror.com/@types/qs@6.9.8: - resolution: {integrity: sha512-u95svzDlTysU5xecFNTgfFG5RUWu1A9P0VzgpcIiGZA9iraHOdSzcxMxQ55DyeRaGCSxQi7LxXDI4rzq/MYfdg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/qs/-/qs-6.9.8.tgz} - name: '@types/qs' - version: 6.9.8 - - registry.npmmirror.com/@types/range-parser@1.2.4: - resolution: {integrity: sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/range-parser/-/range-parser-1.2.4.tgz} - name: '@types/range-parser' - version: 1.2.4 - - registry.npmmirror.com/@types/send@0.17.1: - resolution: {integrity: sha512-Cwo8LE/0rnvX7kIIa3QHCkcuF21c05Ayb0ZfxPiv0W8VRiZiNW/WuRupHKpqqGVGf7SUA44QSOUKaEd9lIrd/Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/send/-/send-0.17.1.tgz} - name: '@types/send' - version: 0.17.1 - dependencies: - '@types/mime': registry.npmmirror.com/@types/mime@1.3.2 - '@types/node': registry.npmmirror.com/@types/node@18.15.11 - - registry.npmmirror.com/@types/serve-static@1.15.2: - resolution: {integrity: sha512-J2LqtvFYCzaj8pVYKw8klQXrLLk7TBZmQ4ShlcdkELFKGwGMfevMLneMMRkMgZxotOD9wg497LpC7O8PcvAmfw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/serve-static/-/serve-static-1.15.2.tgz} - name: '@types/serve-static' - version: 1.15.2 - dependencies: - '@types/http-errors': registry.npmmirror.com/@types/http-errors@2.0.1 - '@types/mime': registry.npmmirror.com/@types/mime@3.0.1 - '@types/node': registry.npmmirror.com/@types/node@18.15.11 - - registry.npmmirror.com/@types/stack-utils@2.0.1: - resolution: {integrity: sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/stack-utils/-/stack-utils-2.0.1.tgz} - name: '@types/stack-utils' - version: 2.0.1 - dev: true - - registry.npmmirror.com/@types/superagent@4.1.18: - resolution: {integrity: sha512-LOWgpacIV8GHhrsQU+QMZuomfqXiqzz3ILLkCtKx3Us6AmomFViuzKT9D693QTKgyut2oCytMG8/efOop+DB+w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/superagent/-/superagent-4.1.18.tgz} - name: '@types/superagent' - version: 4.1.18 - dependencies: - '@types/cookiejar': registry.npmmirror.com/@types/cookiejar@2.1.2 - '@types/node': registry.npmmirror.com/@types/node@18.15.11 - dev: true - - registry.npmmirror.com/@types/supertest@2.0.11: - resolution: {integrity: sha512-uci4Esokrw9qGb9bvhhSVEjd6rkny/dk5PK/Qz4yxKiyppEI+dOPlNrZBahE3i+PoKFYyDxChVXZ/ysS/nrm1Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/supertest/-/supertest-2.0.11.tgz} - name: '@types/supertest' - version: 2.0.11 - dependencies: - '@types/superagent': registry.npmmirror.com/@types/superagent@4.1.18 - dev: true - - registry.npmmirror.com/@types/yargs-parser@21.0.0: - resolution: {integrity: sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/yargs-parser/-/yargs-parser-21.0.0.tgz} - name: '@types/yargs-parser' - version: 21.0.0 - dev: true - - registry.npmmirror.com/@types/yargs@17.0.24: - resolution: {integrity: sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/yargs/-/yargs-17.0.24.tgz} - name: '@types/yargs' - version: 17.0.24 - dependencies: - '@types/yargs-parser': registry.npmmirror.com/@types/yargs-parser@21.0.0 - dev: true - - registry.npmmirror.com/@typescript-eslint/eslint-plugin@5.0.0(@typescript-eslint/parser@5.0.0)(eslint@8.0.1)(typescript@4.7.4): - resolution: {integrity: sha512-T6V6fCD2U0YesOedvydTnrNtsC8E+c2QzpawIpDdlaObX0OX5dLo7tLU5c64FhTZvA1Xrdim+cXDI7NPsVx8Cg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.0.0.tgz} - id: registry.npmmirror.com/@typescript-eslint/eslint-plugin/5.0.0 - name: '@typescript-eslint/eslint-plugin' - version: 5.0.0 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - '@typescript-eslint/parser': ^5.0.0 - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@typescript-eslint/experimental-utils': registry.npmmirror.com/@typescript-eslint/experimental-utils@5.0.0(eslint@8.0.1)(typescript@4.7.4) - '@typescript-eslint/parser': registry.npmmirror.com/@typescript-eslint/parser@5.0.0(eslint@8.0.1)(typescript@4.7.4) - '@typescript-eslint/scope-manager': registry.npmmirror.com/@typescript-eslint/scope-manager@5.0.0 - debug: registry.npmmirror.com/debug@4.3.4 - eslint: registry.npmmirror.com/eslint@8.0.1 - functional-red-black-tree: registry.npmmirror.com/functional-red-black-tree@1.0.1 - ignore: registry.npmmirror.com/ignore@5.2.4 - regexpp: registry.npmmirror.com/regexpp@3.2.0 - semver: registry.npmmirror.com/semver@7.5.4 - tsutils: registry.npmmirror.com/tsutils@3.21.0(typescript@4.7.4) - typescript: registry.npmmirror.com/typescript@4.7.4 - transitivePeerDependencies: - - supports-color - dev: true - - registry.npmmirror.com/@typescript-eslint/experimental-utils@5.0.0(eslint@8.0.1)(typescript@4.7.4): - resolution: {integrity: sha512-Dnp4dFIsZcPawD6CT1p5NibNUQyGSEz80sULJZkyhyna8AEqArmfwMwJPbmKzWVo4PabqNVzHYlzmcdLQWk+pg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@typescript-eslint/experimental-utils/-/experimental-utils-5.0.0.tgz} - id: registry.npmmirror.com/@typescript-eslint/experimental-utils/5.0.0 - name: '@typescript-eslint/experimental-utils' - version: 5.0.0 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: '*' - dependencies: - '@types/json-schema': registry.npmmirror.com/@types/json-schema@7.0.12 - '@typescript-eslint/scope-manager': registry.npmmirror.com/@typescript-eslint/scope-manager@5.0.0 - '@typescript-eslint/types': registry.npmmirror.com/@typescript-eslint/types@5.0.0 - '@typescript-eslint/typescript-estree': registry.npmmirror.com/@typescript-eslint/typescript-estree@5.0.0(typescript@4.7.4) - eslint: registry.npmmirror.com/eslint@8.0.1 - eslint-scope: registry.npmmirror.com/eslint-scope@5.1.1 - eslint-utils: registry.npmmirror.com/eslint-utils@3.0.0(eslint@8.0.1) - transitivePeerDependencies: - - supports-color - - typescript - dev: true - - registry.npmmirror.com/@typescript-eslint/parser@5.0.0(eslint@8.0.1)(typescript@4.7.4): - resolution: {integrity: sha512-B6D5rmmQ14I1fdzs71eL3DAuvnPHTY/t7rQABrL9BLnx/H51Un8ox1xqYAchs0/V2trcoyxB1lMJLlrwrJCDgw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@typescript-eslint/parser/-/parser-5.0.0.tgz} - id: registry.npmmirror.com/@typescript-eslint/parser/5.0.0 - name: '@typescript-eslint/parser' - version: 5.0.0 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@typescript-eslint/scope-manager': registry.npmmirror.com/@typescript-eslint/scope-manager@5.0.0 - '@typescript-eslint/types': registry.npmmirror.com/@typescript-eslint/types@5.0.0 - '@typescript-eslint/typescript-estree': registry.npmmirror.com/@typescript-eslint/typescript-estree@5.0.0(typescript@4.7.4) - debug: registry.npmmirror.com/debug@4.3.4 - eslint: registry.npmmirror.com/eslint@8.0.1 - typescript: registry.npmmirror.com/typescript@4.7.4 - transitivePeerDependencies: - - supports-color - dev: true - - registry.npmmirror.com/@typescript-eslint/scope-manager@5.0.0: - resolution: {integrity: sha512-5RFjdA/ain/MDUHYXdF173btOKncIrLuBmA9s6FJhzDrRAyVSA+70BHg0/MW6TE+UiKVyRtX91XpVS0gVNwVDQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@typescript-eslint/scope-manager/-/scope-manager-5.0.0.tgz} - name: '@typescript-eslint/scope-manager' - version: 5.0.0 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dependencies: - '@typescript-eslint/types': registry.npmmirror.com/@typescript-eslint/types@5.0.0 - '@typescript-eslint/visitor-keys': registry.npmmirror.com/@typescript-eslint/visitor-keys@5.0.0 - dev: true - - registry.npmmirror.com/@typescript-eslint/types@5.0.0: - resolution: {integrity: sha512-dU/pKBUpehdEqYuvkojmlv0FtHuZnLXFBn16zsDmlFF3LXkOpkAQ2vrKc3BidIIve9EMH2zfTlxqw9XM0fFN5w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@typescript-eslint/types/-/types-5.0.0.tgz} - name: '@typescript-eslint/types' - version: 5.0.0 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dev: true - - registry.npmmirror.com/@typescript-eslint/typescript-estree@5.0.0(typescript@4.7.4): - resolution: {integrity: sha512-V/6w+PPQMhinWKSn+fCiX5jwvd1vRBm7AX7SJQXEGQtwtBvjMPjaU3YTQ1ik2UF1u96X7tsB96HMnulG3eLi9Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.0.0.tgz} - id: registry.npmmirror.com/@typescript-eslint/typescript-estree/5.0.0 - name: '@typescript-eslint/typescript-estree' - version: 5.0.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.0.0 - '@typescript-eslint/visitor-keys': registry.npmmirror.com/@typescript-eslint/visitor-keys@5.0.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.5.4 - tsutils: registry.npmmirror.com/tsutils@3.21.0(typescript@4.7.4) - typescript: registry.npmmirror.com/typescript@4.7.4 - transitivePeerDependencies: - - supports-color - dev: true - - registry.npmmirror.com/@typescript-eslint/visitor-keys@5.0.0: - resolution: {integrity: sha512-yRyd2++o/IrJdyHuYMxyFyBhU762MRHQ/bAGQeTnN3pGikfh+nEmM61XTqaDH1XDp53afZ+waXrk0ZvenoZ6xw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.0.0.tgz} - name: '@typescript-eslint/visitor-keys' - version: 5.0.0 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dependencies: - '@typescript-eslint/types': registry.npmmirror.com/@typescript-eslint/types@5.0.0 - eslint-visitor-keys: registry.npmmirror.com/eslint-visitor-keys@3.4.3 - dev: true - - registry.npmmirror.com/@webassemblyjs/ast@1.11.1: - resolution: {integrity: sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@webassemblyjs/ast/-/ast-1.11.1.tgz} - name: '@webassemblyjs/ast' - version: 1.11.1 - dependencies: - '@webassemblyjs/helper-numbers': registry.npmmirror.com/@webassemblyjs/helper-numbers@1.11.1 - '@webassemblyjs/helper-wasm-bytecode': registry.npmmirror.com/@webassemblyjs/helper-wasm-bytecode@1.11.1 - dev: true - - registry.npmmirror.com/@webassemblyjs/ast@1.11.6: - resolution: {integrity: sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@webassemblyjs/ast/-/ast-1.11.6.tgz} - name: '@webassemblyjs/ast' - version: 1.11.6 - dependencies: - '@webassemblyjs/helper-numbers': registry.npmmirror.com/@webassemblyjs/helper-numbers@1.11.6 - '@webassemblyjs/helper-wasm-bytecode': registry.npmmirror.com/@webassemblyjs/helper-wasm-bytecode@1.11.6 - dev: true - - registry.npmmirror.com/@webassemblyjs/floating-point-hex-parser@1.11.1: - resolution: {integrity: sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz} - name: '@webassemblyjs/floating-point-hex-parser' - version: 1.11.1 - dev: true - - registry.npmmirror.com/@webassemblyjs/floating-point-hex-parser@1.11.6: - resolution: {integrity: sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz} - name: '@webassemblyjs/floating-point-hex-parser' - version: 1.11.6 - dev: true - - registry.npmmirror.com/@webassemblyjs/helper-api-error@1.11.1: - resolution: {integrity: sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz} - name: '@webassemblyjs/helper-api-error' - version: 1.11.1 - dev: true - - registry.npmmirror.com/@webassemblyjs/helper-api-error@1.11.6: - resolution: {integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz} - name: '@webassemblyjs/helper-api-error' - version: 1.11.6 - dev: true - - registry.npmmirror.com/@webassemblyjs/helper-buffer@1.11.1: - resolution: {integrity: sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz} - name: '@webassemblyjs/helper-buffer' - version: 1.11.1 - dev: true - - registry.npmmirror.com/@webassemblyjs/helper-buffer@1.11.6: - resolution: {integrity: sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz} - name: '@webassemblyjs/helper-buffer' - version: 1.11.6 - dev: true - - registry.npmmirror.com/@webassemblyjs/helper-numbers@1.11.1: - resolution: {integrity: sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz} - name: '@webassemblyjs/helper-numbers' - version: 1.11.1 - dependencies: - '@webassemblyjs/floating-point-hex-parser': registry.npmmirror.com/@webassemblyjs/floating-point-hex-parser@1.11.1 - '@webassemblyjs/helper-api-error': registry.npmmirror.com/@webassemblyjs/helper-api-error@1.11.1 - '@xtuc/long': registry.npmmirror.com/@xtuc/long@4.2.2 - dev: true - - registry.npmmirror.com/@webassemblyjs/helper-numbers@1.11.6: - resolution: {integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz} - name: '@webassemblyjs/helper-numbers' - version: 1.11.6 - dependencies: - '@webassemblyjs/floating-point-hex-parser': registry.npmmirror.com/@webassemblyjs/floating-point-hex-parser@1.11.6 - '@webassemblyjs/helper-api-error': registry.npmmirror.com/@webassemblyjs/helper-api-error@1.11.6 - '@xtuc/long': registry.npmmirror.com/@xtuc/long@4.2.2 - dev: true - - registry.npmmirror.com/@webassemblyjs/helper-wasm-bytecode@1.11.1: - resolution: {integrity: sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz} - name: '@webassemblyjs/helper-wasm-bytecode' - version: 1.11.1 - dev: true - - registry.npmmirror.com/@webassemblyjs/helper-wasm-bytecode@1.11.6: - resolution: {integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz} - name: '@webassemblyjs/helper-wasm-bytecode' - version: 1.11.6 - dev: true - - registry.npmmirror.com/@webassemblyjs/helper-wasm-section@1.11.1: - resolution: {integrity: sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz} - name: '@webassemblyjs/helper-wasm-section' - version: 1.11.1 - dependencies: - '@webassemblyjs/ast': registry.npmmirror.com/@webassemblyjs/ast@1.11.1 - '@webassemblyjs/helper-buffer': registry.npmmirror.com/@webassemblyjs/helper-buffer@1.11.1 - '@webassemblyjs/helper-wasm-bytecode': registry.npmmirror.com/@webassemblyjs/helper-wasm-bytecode@1.11.1 - '@webassemblyjs/wasm-gen': registry.npmmirror.com/@webassemblyjs/wasm-gen@1.11.1 - dev: true - - registry.npmmirror.com/@webassemblyjs/helper-wasm-section@1.11.6: - resolution: {integrity: sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz} - name: '@webassemblyjs/helper-wasm-section' - version: 1.11.6 - dependencies: - '@webassemblyjs/ast': registry.npmmirror.com/@webassemblyjs/ast@1.11.6 - '@webassemblyjs/helper-buffer': registry.npmmirror.com/@webassemblyjs/helper-buffer@1.11.6 - '@webassemblyjs/helper-wasm-bytecode': registry.npmmirror.com/@webassemblyjs/helper-wasm-bytecode@1.11.6 - '@webassemblyjs/wasm-gen': registry.npmmirror.com/@webassemblyjs/wasm-gen@1.11.6 - dev: true - - registry.npmmirror.com/@webassemblyjs/ieee754@1.11.1: - resolution: {integrity: sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz} - name: '@webassemblyjs/ieee754' - version: 1.11.1 - dependencies: - '@xtuc/ieee754': registry.npmmirror.com/@xtuc/ieee754@1.2.0 - dev: true - - registry.npmmirror.com/@webassemblyjs/ieee754@1.11.6: - resolution: {integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz} - name: '@webassemblyjs/ieee754' - version: 1.11.6 - dependencies: - '@xtuc/ieee754': registry.npmmirror.com/@xtuc/ieee754@1.2.0 - dev: true - - registry.npmmirror.com/@webassemblyjs/leb128@1.11.1: - resolution: {integrity: sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@webassemblyjs/leb128/-/leb128-1.11.1.tgz} - name: '@webassemblyjs/leb128' - version: 1.11.1 - dependencies: - '@xtuc/long': registry.npmmirror.com/@xtuc/long@4.2.2 - dev: true - - registry.npmmirror.com/@webassemblyjs/leb128@1.11.6: - resolution: {integrity: sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@webassemblyjs/leb128/-/leb128-1.11.6.tgz} - name: '@webassemblyjs/leb128' - version: 1.11.6 - dependencies: - '@xtuc/long': registry.npmmirror.com/@xtuc/long@4.2.2 - dev: true - - registry.npmmirror.com/@webassemblyjs/utf8@1.11.1: - resolution: {integrity: sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@webassemblyjs/utf8/-/utf8-1.11.1.tgz} - name: '@webassemblyjs/utf8' - version: 1.11.1 - dev: true - - registry.npmmirror.com/@webassemblyjs/utf8@1.11.6: - resolution: {integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@webassemblyjs/utf8/-/utf8-1.11.6.tgz} - name: '@webassemblyjs/utf8' - version: 1.11.6 - dev: true - - registry.npmmirror.com/@webassemblyjs/wasm-edit@1.11.1: - resolution: {integrity: sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz} - name: '@webassemblyjs/wasm-edit' - version: 1.11.1 - dependencies: - '@webassemblyjs/ast': registry.npmmirror.com/@webassemblyjs/ast@1.11.1 - '@webassemblyjs/helper-buffer': registry.npmmirror.com/@webassemblyjs/helper-buffer@1.11.1 - '@webassemblyjs/helper-wasm-bytecode': registry.npmmirror.com/@webassemblyjs/helper-wasm-bytecode@1.11.1 - '@webassemblyjs/helper-wasm-section': registry.npmmirror.com/@webassemblyjs/helper-wasm-section@1.11.1 - '@webassemblyjs/wasm-gen': registry.npmmirror.com/@webassemblyjs/wasm-gen@1.11.1 - '@webassemblyjs/wasm-opt': registry.npmmirror.com/@webassemblyjs/wasm-opt@1.11.1 - '@webassemblyjs/wasm-parser': registry.npmmirror.com/@webassemblyjs/wasm-parser@1.11.1 - '@webassemblyjs/wast-printer': registry.npmmirror.com/@webassemblyjs/wast-printer@1.11.1 - dev: true - - registry.npmmirror.com/@webassemblyjs/wasm-edit@1.11.6: - resolution: {integrity: sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz} - name: '@webassemblyjs/wasm-edit' - version: 1.11.6 - dependencies: - '@webassemblyjs/ast': registry.npmmirror.com/@webassemblyjs/ast@1.11.6 - '@webassemblyjs/helper-buffer': registry.npmmirror.com/@webassemblyjs/helper-buffer@1.11.6 - '@webassemblyjs/helper-wasm-bytecode': registry.npmmirror.com/@webassemblyjs/helper-wasm-bytecode@1.11.6 - '@webassemblyjs/helper-wasm-section': registry.npmmirror.com/@webassemblyjs/helper-wasm-section@1.11.6 - '@webassemblyjs/wasm-gen': registry.npmmirror.com/@webassemblyjs/wasm-gen@1.11.6 - '@webassemblyjs/wasm-opt': registry.npmmirror.com/@webassemblyjs/wasm-opt@1.11.6 - '@webassemblyjs/wasm-parser': registry.npmmirror.com/@webassemblyjs/wasm-parser@1.11.6 - '@webassemblyjs/wast-printer': registry.npmmirror.com/@webassemblyjs/wast-printer@1.11.6 - dev: true - - registry.npmmirror.com/@webassemblyjs/wasm-gen@1.11.1: - resolution: {integrity: sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz} - name: '@webassemblyjs/wasm-gen' - version: 1.11.1 - dependencies: - '@webassemblyjs/ast': registry.npmmirror.com/@webassemblyjs/ast@1.11.1 - '@webassemblyjs/helper-wasm-bytecode': registry.npmmirror.com/@webassemblyjs/helper-wasm-bytecode@1.11.1 - '@webassemblyjs/ieee754': registry.npmmirror.com/@webassemblyjs/ieee754@1.11.1 - '@webassemblyjs/leb128': registry.npmmirror.com/@webassemblyjs/leb128@1.11.1 - '@webassemblyjs/utf8': registry.npmmirror.com/@webassemblyjs/utf8@1.11.1 - dev: true - - registry.npmmirror.com/@webassemblyjs/wasm-gen@1.11.6: - resolution: {integrity: sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz} - name: '@webassemblyjs/wasm-gen' - version: 1.11.6 - dependencies: - '@webassemblyjs/ast': registry.npmmirror.com/@webassemblyjs/ast@1.11.6 - '@webassemblyjs/helper-wasm-bytecode': registry.npmmirror.com/@webassemblyjs/helper-wasm-bytecode@1.11.6 - '@webassemblyjs/ieee754': registry.npmmirror.com/@webassemblyjs/ieee754@1.11.6 - '@webassemblyjs/leb128': registry.npmmirror.com/@webassemblyjs/leb128@1.11.6 - '@webassemblyjs/utf8': registry.npmmirror.com/@webassemblyjs/utf8@1.11.6 - dev: true - - registry.npmmirror.com/@webassemblyjs/wasm-opt@1.11.1: - resolution: {integrity: sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz} - name: '@webassemblyjs/wasm-opt' - version: 1.11.1 - dependencies: - '@webassemblyjs/ast': registry.npmmirror.com/@webassemblyjs/ast@1.11.1 - '@webassemblyjs/helper-buffer': registry.npmmirror.com/@webassemblyjs/helper-buffer@1.11.1 - '@webassemblyjs/wasm-gen': registry.npmmirror.com/@webassemblyjs/wasm-gen@1.11.1 - '@webassemblyjs/wasm-parser': registry.npmmirror.com/@webassemblyjs/wasm-parser@1.11.1 - dev: true - - registry.npmmirror.com/@webassemblyjs/wasm-opt@1.11.6: - resolution: {integrity: sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz} - name: '@webassemblyjs/wasm-opt' - version: 1.11.6 - dependencies: - '@webassemblyjs/ast': registry.npmmirror.com/@webassemblyjs/ast@1.11.6 - '@webassemblyjs/helper-buffer': registry.npmmirror.com/@webassemblyjs/helper-buffer@1.11.6 - '@webassemblyjs/wasm-gen': registry.npmmirror.com/@webassemblyjs/wasm-gen@1.11.6 - '@webassemblyjs/wasm-parser': registry.npmmirror.com/@webassemblyjs/wasm-parser@1.11.6 - dev: true - - registry.npmmirror.com/@webassemblyjs/wasm-parser@1.11.1: - resolution: {integrity: sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz} - name: '@webassemblyjs/wasm-parser' - version: 1.11.1 - dependencies: - '@webassemblyjs/ast': registry.npmmirror.com/@webassemblyjs/ast@1.11.1 - '@webassemblyjs/helper-api-error': registry.npmmirror.com/@webassemblyjs/helper-api-error@1.11.1 - '@webassemblyjs/helper-wasm-bytecode': registry.npmmirror.com/@webassemblyjs/helper-wasm-bytecode@1.11.1 - '@webassemblyjs/ieee754': registry.npmmirror.com/@webassemblyjs/ieee754@1.11.1 - '@webassemblyjs/leb128': registry.npmmirror.com/@webassemblyjs/leb128@1.11.1 - '@webassemblyjs/utf8': registry.npmmirror.com/@webassemblyjs/utf8@1.11.1 - dev: true - - registry.npmmirror.com/@webassemblyjs/wasm-parser@1.11.6: - resolution: {integrity: sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz} - name: '@webassemblyjs/wasm-parser' - version: 1.11.6 - dependencies: - '@webassemblyjs/ast': registry.npmmirror.com/@webassemblyjs/ast@1.11.6 - '@webassemblyjs/helper-api-error': registry.npmmirror.com/@webassemblyjs/helper-api-error@1.11.6 - '@webassemblyjs/helper-wasm-bytecode': registry.npmmirror.com/@webassemblyjs/helper-wasm-bytecode@1.11.6 - '@webassemblyjs/ieee754': registry.npmmirror.com/@webassemblyjs/ieee754@1.11.6 - '@webassemblyjs/leb128': registry.npmmirror.com/@webassemblyjs/leb128@1.11.6 - '@webassemblyjs/utf8': registry.npmmirror.com/@webassemblyjs/utf8@1.11.6 - dev: true - - registry.npmmirror.com/@webassemblyjs/wast-printer@1.11.1: - resolution: {integrity: sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz} - name: '@webassemblyjs/wast-printer' - version: 1.11.1 - dependencies: - '@webassemblyjs/ast': registry.npmmirror.com/@webassemblyjs/ast@1.11.1 - '@xtuc/long': registry.npmmirror.com/@xtuc/long@4.2.2 - dev: true - - registry.npmmirror.com/@webassemblyjs/wast-printer@1.11.6: - resolution: {integrity: sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz} - name: '@webassemblyjs/wast-printer' - version: 1.11.6 - dependencies: - '@webassemblyjs/ast': registry.npmmirror.com/@webassemblyjs/ast@1.11.6 - '@xtuc/long': registry.npmmirror.com/@xtuc/long@4.2.2 - dev: true - - registry.npmmirror.com/@xtuc/ieee754@1.2.0: - resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz} - name: '@xtuc/ieee754' - version: 1.2.0 - dev: true - - registry.npmmirror.com/@xtuc/long@4.2.2: - resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@xtuc/long/-/long-4.2.2.tgz} - name: '@xtuc/long' - version: 4.2.2 - 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} - name: accepts - version: 1.3.8 - engines: {node: '>= 0.6'} - dependencies: - mime-types: registry.npmmirror.com/mime-types@2.1.35 - negotiator: registry.npmmirror.com/negotiator@0.6.3 - - registry.npmmirror.com/acorn-import-assertions@1.9.0(acorn@8.10.0): - resolution: {integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz} - id: registry.npmmirror.com/acorn-import-assertions/1.9.0 - name: acorn-import-assertions - version: 1.9.0 - peerDependencies: - acorn: ^8 - dependencies: - acorn: registry.npmmirror.com/acorn@8.10.0 - dev: true - - registry.npmmirror.com/acorn-jsx@5.3.2(acorn@8.10.0): - 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.10.0 - dev: true - - registry.npmmirror.com/acorn@8.10.0: - resolution: {integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/acorn/-/acorn-8.10.0.tgz} - name: acorn - version: 8.10.0 - engines: {node: '>=0.4.0'} - hasBin: true - dev: true - - registry.npmmirror.com/ajv-formats@1.6.1(ajv@7.2.4): - resolution: {integrity: sha512-4CjkH20If1lhR5CGtqkrVg3bbOtFEG80X9v6jDOIUhbzzbB+UzPBGy8GQhUNVZ0yvMHdMpawCOcy5ydGMsagGQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ajv-formats/-/ajv-formats-1.6.1.tgz} - id: registry.npmmirror.com/ajv-formats/1.6.1 - name: ajv-formats - version: 1.6.1 - peerDependencies: - ajv: ^7.0.0 - peerDependenciesMeta: - ajv: - optional: true - dependencies: - ajv: registry.npmmirror.com/ajv@7.2.4 - dev: false - - registry.npmmirror.com/ajv-formats@2.1.1(ajv@8.11.0): - resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ajv-formats/-/ajv-formats-2.1.1.tgz} - id: registry.npmmirror.com/ajv-formats/2.1.1 - name: ajv-formats - version: 2.1.1 - peerDependencies: - ajv: ^8.0.0 - peerDependenciesMeta: - ajv: - optional: true - dependencies: - ajv: registry.npmmirror.com/ajv@8.11.0 - dev: true - - registry.npmmirror.com/ajv-keywords@3.5.2(ajv@6.12.6): - resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz} - id: registry.npmmirror.com/ajv-keywords/3.5.2 - name: ajv-keywords - version: 3.5.2 - peerDependencies: - ajv: ^6.9.1 - dependencies: - ajv: registry.npmmirror.com/ajv@6.12.6 - 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 - - registry.npmmirror.com/ajv@7.2.4: - resolution: {integrity: sha512-nBeQgg/ZZA3u3SYxyaDvpvDtgZ/EZPF547ARgZBrG9Bhu1vKDwAIjtIf+sDtJUKa2zOcEbmRLBRSyMraS/Oy1A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ajv/-/ajv-7.2.4.tgz} - name: ajv - version: 7.2.4 - dependencies: - fast-deep-equal: registry.npmmirror.com/fast-deep-equal@3.1.3 - json-schema-traverse: registry.npmmirror.com/json-schema-traverse@1.0.0 - require-from-string: registry.npmmirror.com/require-from-string@2.0.2 - uri-js: registry.npmmirror.com/uri-js@4.4.1 - dev: false - - registry.npmmirror.com/ajv@8.11.0: - resolution: {integrity: sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ajv/-/ajv-8.11.0.tgz} - name: ajv - version: 8.11.0 - dependencies: - fast-deep-equal: registry.npmmirror.com/fast-deep-equal@3.1.3 - json-schema-traverse: registry.npmmirror.com/json-schema-traverse@1.0.0 - require-from-string: registry.npmmirror.com/require-from-string@2.0.2 - uri-js: registry.npmmirror.com/uri-js@4.4.1 - dev: true - - registry.npmmirror.com/ansi-colors@4.1.1: - resolution: {integrity: sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ansi-colors/-/ansi-colors-4.1.1.tgz} - name: ansi-colors - version: 4.1.1 - engines: {node: '>=6'} - dev: true - - registry.npmmirror.com/ansi-colors@4.1.3: - resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ansi-colors/-/ansi-colors-4.1.3.tgz} - name: ansi-colors - version: 4.1.3 - engines: {node: '>=6'} - dev: true - - registry.npmmirror.com/ansi-escapes@4.3.2: - resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz} - name: ansi-escapes - version: 4.3.2 - engines: {node: '>=8'} - dependencies: - type-fest: registry.npmmirror.com/type-fest@0.21.3 - dev: true - - registry.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} - name: ansi-styles - version: 3.2.1 - engines: {node: '>=4'} - dependencies: - color-convert: registry.npmmirror.com/color-convert@1.9.3 - dev: true - - 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 - - registry.npmmirror.com/ansi-styles@5.2.0: - resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ansi-styles/-/ansi-styles-5.2.0.tgz} - name: ansi-styles - version: 5.2.0 - engines: {node: '>=10'} - dev: true - - registry.npmmirror.com/anymatch@3.1.3: - resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/anymatch/-/anymatch-3.1.3.tgz} - name: anymatch - version: 3.1.3 - engines: {node: '>= 8'} - dependencies: - normalize-path: registry.npmmirror.com/normalize-path@3.0.0 - picomatch: registry.npmmirror.com/picomatch@2.3.1 - dev: true - - registry.npmmirror.com/append-field@1.0.0: - resolution: {integrity: sha512-klpgFSWLW1ZEs8svjfb7g4qWY0YS5imI82dTg+QahUvJ8YqAY0P10Uk8tTyh9ZGuYEZEMaeJYCF5BFuX552hsw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/append-field/-/append-field-1.0.0.tgz} - name: append-field - version: 1.0.0 - - registry.npmmirror.com/arg@4.1.3: - resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/arg/-/arg-4.1.3.tgz} - name: arg - version: 4.1.3 - dev: true - - registry.npmmirror.com/argparse@1.0.10: - resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/argparse/-/argparse-1.0.10.tgz} - name: argparse - version: 1.0.10 - dependencies: - sprintf-js: registry.npmmirror.com/sprintf-js@1.0.3 - dev: true - - 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} - name: array-flatten - version: 1.1.1 - - 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/asn1@0.2.6: - resolution: {integrity: sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/asn1/-/asn1-0.2.6.tgz} - name: asn1 - version: 0.2.6 - dependencies: - safer-buffer: registry.npmmirror.com/safer-buffer@2.1.2 - dev: false - - registry.npmmirror.com/assert-plus@1.0.0: - resolution: {integrity: sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/assert-plus/-/assert-plus-1.0.0.tgz} - name: assert-plus - version: 1.0.0 - engines: {node: '>=0.8'} - dev: false - - registry.npmmirror.com/async@3.2.3: - resolution: {integrity: sha512-spZRyzKL5l5BZQrr/6m/SqFdBN0q3OCI0f9rjfBzCMBIP4p75P620rR3gTmaksNOhmzgdxcaxdNfMy6anrbM0g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/async/-/async-3.2.3.tgz} - name: async - version: 3.2.3 - - registry.npmmirror.com/asynckit@0.4.0: - resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/asynckit/-/asynckit-0.4.0.tgz} - name: asynckit - version: 0.4.0 - - registry.npmmirror.com/atomically@1.7.0: - resolution: {integrity: sha512-Xcz9l0z7y9yQ9rdDaxlmaI4uJHf/T8g9hOEzJcsEqX2SjCj4J20uK7+ldkDHMbpJDK76wF7xEIgxc/vSlsfw5w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/atomically/-/atomically-1.7.0.tgz} - name: atomically - version: 1.7.0 - engines: {node: '>=10.12.0'} - dev: false - - registry.npmmirror.com/aws-sign2@0.7.0: - resolution: {integrity: sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/aws-sign2/-/aws-sign2-0.7.0.tgz} - name: aws-sign2 - version: 0.7.0 - dev: false - - registry.npmmirror.com/aws4@1.12.0: - resolution: {integrity: sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/aws4/-/aws4-1.12.0.tgz} - name: aws4 - version: 1.12.0 - dev: false - - registry.npmmirror.com/axios@1.5.1: - resolution: {integrity: sha512-Q28iYCWzNHjAm+yEAot5QaAMxhMghWLFVf7rRdwhUI+c2jix2DUXjAHXVi+s1ibs3mjPO/cCgbA++3BjD0vP/A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/axios/-/axios-1.5.1.tgz} - name: axios - version: 1.5.1 - dependencies: - follow-redirects: registry.npmmirror.com/follow-redirects@1.15.3 - form-data: registry.npmmirror.com/form-data@4.0.0 - proxy-from-env: registry.npmmirror.com/proxy-from-env@1.1.0 - transitivePeerDependencies: - - debug - dev: false - - registry.npmmirror.com/babel-jest@29.6.4(@babel/core@7.22.17): - resolution: {integrity: sha512-meLj23UlSLddj6PC+YTOFRgDAtjnZom8w/ACsrx0gtPtv5cJZk0A5Unk5bV4wixD7XaPCN1fQvpww8czkZURmw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/babel-jest/-/babel-jest-29.6.4.tgz} - id: registry.npmmirror.com/babel-jest/29.6.4 - name: babel-jest - version: 29.6.4 - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - '@babel/core': ^7.8.0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.17 - '@jest/transform': registry.npmmirror.com/@jest/transform@29.6.4 - '@types/babel__core': registry.npmmirror.com/@types/babel__core@7.20.1 - babel-plugin-istanbul: registry.npmmirror.com/babel-plugin-istanbul@6.1.1 - babel-preset-jest: registry.npmmirror.com/babel-preset-jest@29.6.3(@babel/core@7.22.17) - chalk: registry.npmmirror.com/chalk@4.1.2 - graceful-fs: registry.npmmirror.com/graceful-fs@4.2.11 - slash: registry.npmmirror.com/slash@3.0.0 - transitivePeerDependencies: - - supports-color - dev: true - - registry.npmmirror.com/babel-plugin-istanbul@6.1.1: - resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz} - name: babel-plugin-istanbul - version: 6.1.1 - engines: {node: '>=8'} - dependencies: - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - '@istanbuljs/load-nyc-config': registry.npmmirror.com/@istanbuljs/load-nyc-config@1.1.0 - '@istanbuljs/schema': registry.npmmirror.com/@istanbuljs/schema@0.1.3 - istanbul-lib-instrument: registry.npmmirror.com/istanbul-lib-instrument@5.2.1 - test-exclude: registry.npmmirror.com/test-exclude@6.0.0 - transitivePeerDependencies: - - supports-color - dev: true - - registry.npmmirror.com/babel-plugin-jest-hoist@29.6.3: - resolution: {integrity: sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz} - name: babel-plugin-jest-hoist - version: 29.6.3 - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@babel/template': registry.npmmirror.com/@babel/template@7.22.15 - '@babel/types': registry.npmmirror.com/@babel/types@7.22.17 - '@types/babel__core': registry.npmmirror.com/@types/babel__core@7.20.1 - '@types/babel__traverse': registry.npmmirror.com/@types/babel__traverse@7.20.1 - dev: true - - registry.npmmirror.com/babel-preset-current-node-syntax@1.0.1(@babel/core@7.22.17): - resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz} - id: registry.npmmirror.com/babel-preset-current-node-syntax/1.0.1 - name: babel-preset-current-node-syntax - version: 1.0.1 - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.17 - '@babel/plugin-syntax-async-generators': registry.npmmirror.com/@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.22.17) - '@babel/plugin-syntax-bigint': registry.npmmirror.com/@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.22.17) - '@babel/plugin-syntax-class-properties': registry.npmmirror.com/@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.22.17) - '@babel/plugin-syntax-import-meta': registry.npmmirror.com/@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.22.17) - '@babel/plugin-syntax-json-strings': registry.npmmirror.com/@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.22.17) - '@babel/plugin-syntax-logical-assignment-operators': registry.npmmirror.com/@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.22.17) - '@babel/plugin-syntax-nullish-coalescing-operator': registry.npmmirror.com/@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.22.17) - '@babel/plugin-syntax-numeric-separator': registry.npmmirror.com/@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.22.17) - '@babel/plugin-syntax-object-rest-spread': registry.npmmirror.com/@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.22.17) - '@babel/plugin-syntax-optional-catch-binding': registry.npmmirror.com/@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.22.17) - '@babel/plugin-syntax-optional-chaining': registry.npmmirror.com/@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.22.17) - '@babel/plugin-syntax-top-level-await': registry.npmmirror.com/@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.22.17) - dev: true - - registry.npmmirror.com/babel-preset-jest@29.6.3(@babel/core@7.22.17): - resolution: {integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz} - id: registry.npmmirror.com/babel-preset-jest/29.6.3 - name: babel-preset-jest - version: 29.6.3 - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.17 - babel-plugin-jest-hoist: registry.npmmirror.com/babel-plugin-jest-hoist@29.6.3 - babel-preset-current-node-syntax: registry.npmmirror.com/babel-preset-current-node-syntax@1.0.1(@babel/core@7.22.17) - dev: true - - 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/base64-js@1.5.1: - resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/base64-js/-/base64-js-1.5.1.tgz} - name: base64-js - version: 1.5.1 - dev: true - - registry.npmmirror.com/bcrypt-pbkdf@1.0.2: - resolution: {integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz} - name: bcrypt-pbkdf - version: 1.0.2 - dependencies: - tweetnacl: registry.npmmirror.com/tweetnacl@0.14.5 - dev: false - - 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} - name: binary-extensions - version: 2.2.0 - engines: {node: '>=8'} - dev: true - - registry.npmmirror.com/bl@4.1.0: - resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/bl/-/bl-4.1.0.tgz} - name: bl - version: 4.1.0 - dependencies: - buffer: registry.npmmirror.com/buffer@5.7.1 - inherits: registry.npmmirror.com/inherits@2.0.4 - readable-stream: registry.npmmirror.com/readable-stream@3.6.2 - dev: true - - 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} - name: body-parser - version: 1.20.0 - 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.5 - debug: registry.npmmirror.com/debug@2.6.9 - depd: registry.npmmirror.com/depd@2.0.0 - destroy: registry.npmmirror.com/destroy@1.2.0 - http-errors: registry.npmmirror.com/http-errors@2.0.0 - iconv-lite: registry.npmmirror.com/iconv-lite@0.4.24 - on-finished: registry.npmmirror.com/on-finished@2.4.1 - qs: registry.npmmirror.com/qs@6.10.3 - raw-body: registry.npmmirror.com/raw-body@2.5.1 - type-is: registry.npmmirror.com/type-is@1.6.18 - unpipe: registry.npmmirror.com/unpipe@1.0.0 - transitivePeerDependencies: - - supports-color - - 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.npmmirror.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} - name: braces - version: 3.0.2 - engines: {node: '>=8'} - dependencies: - fill-range: registry.npmmirror.com/fill-range@7.0.1 - dev: true - - registry.npmmirror.com/browserslist@4.21.10: - resolution: {integrity: sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/browserslist/-/browserslist-4.21.10.tgz} - name: browserslist - version: 4.21.10 - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} - hasBin: true - dependencies: - caniuse-lite: registry.npmmirror.com/caniuse-lite@1.0.30001532 - electron-to-chromium: registry.npmmirror.com/electron-to-chromium@1.4.513 - node-releases: registry.npmmirror.com/node-releases@2.0.13 - update-browserslist-db: registry.npmmirror.com/update-browserslist-db@1.0.11(browserslist@4.21.10) - dev: true - - registry.npmmirror.com/bs-logger@0.2.6: - resolution: {integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/bs-logger/-/bs-logger-0.2.6.tgz} - name: bs-logger - version: 0.2.6 - engines: {node: '>= 6'} - dependencies: - fast-json-stable-stringify: registry.npmmirror.com/fast-json-stable-stringify@2.1.0 - dev: true - - registry.npmmirror.com/bser@2.1.1: - resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/bser/-/bser-2.1.1.tgz} - name: bser - version: 2.1.1 - dependencies: - node-int64: registry.npmmirror.com/node-int64@0.4.0 - dev: true - - registry.npmmirror.com/buffer-equal-constant-time@1.0.1: - resolution: {integrity: sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz} - name: buffer-equal-constant-time - version: 1.0.1 - dev: false - - registry.npmmirror.com/buffer-from@1.1.2: - resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/buffer-from/-/buffer-from-1.1.2.tgz} - name: buffer-from - version: 1.1.2 - - registry.npmmirror.com/buffer@5.7.1: - resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/buffer/-/buffer-5.7.1.tgz} - name: buffer - version: 5.7.1 - dependencies: - base64-js: registry.npmmirror.com/base64-js@1.5.1 - ieee754: registry.npmmirror.com/ieee754@1.2.1 - dev: true - - registry.npmmirror.com/busboy@1.6.0: - resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/busboy/-/busboy-1.6.0.tgz} - name: busboy - version: 1.6.0 - engines: {node: '>=10.16.0'} - dependencies: - streamsearch: registry.npmmirror.com/streamsearch@1.1.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} - name: bytes - version: 3.1.2 - engines: {node: '>= 0.8'} - - registry.npmmirror.com/cache-manager@4.1.0: - resolution: {integrity: sha512-ZGM6dLxrP65bfOZmcviWMadUOCICqpLs92+P/S5tj8onz+k+tB7Gr+SAgOUHCQtfm2gYEQDHiKeul4+tYPOJ8A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/cache-manager/-/cache-manager-4.1.0.tgz} - name: cache-manager - version: 4.1.0 - dependencies: - async: registry.npmmirror.com/async@3.2.3 - lodash.clonedeep: registry.npmmirror.com/lodash.clonedeep@4.5.0 - lru-cache: registry.npmmirror.com/lru-cache@7.18.3 - - 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} - name: call-bind - version: 1.0.2 - dependencies: - function-bind: registry.npmmirror.com/function-bind@1.1.1 - get-intrinsic: registry.npmmirror.com/get-intrinsic@1.2.1 - - 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@5.3.1: - resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/camelcase/-/camelcase-5.3.1.tgz} - name: camelcase - version: 5.3.1 - 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} - name: camelcase - version: 6.3.0 - engines: {node: '>=10'} - dev: true - - registry.npmmirror.com/caniuse-lite@1.0.30001532: - resolution: {integrity: sha512-FbDFnNat3nMnrROzqrsg314zhqN5LGQ1kyyMk2opcrwGbVGpHRhgCWtAgD5YJUqNAiQ+dklreil/c3Qf1dfCTw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/caniuse-lite/-/caniuse-lite-1.0.30001532.tgz} - name: caniuse-lite - version: 1.0.30001532 - dev: true - - registry.npmmirror.com/caseless@0.12.0: - resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/caseless/-/caseless-0.12.0.tgz} - name: caseless - version: 0.12.0 - dev: false - - 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} - name: chalk - version: 2.4.2 - 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 - dev: true - - registry.npmmirror.com/chalk@3.0.0: - resolution: {integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/chalk/-/chalk-3.0.0.tgz} - name: chalk - version: 3.0.0 - engines: {node: '>=8'} - 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/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 - - registry.npmmirror.com/char-regex@1.0.2: - resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/char-regex/-/char-regex-1.0.2.tgz} - name: char-regex - version: 1.0.2 - engines: {node: '>=10'} - dev: true - - registry.npmmirror.com/chardet@0.7.0: - resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/chardet/-/chardet-0.7.0.tgz} - name: chardet - version: 0.7.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} - name: chokidar - version: 3.5.3 - engines: {node: '>= 8.10.0'} - dependencies: - anymatch: registry.npmmirror.com/anymatch@3.1.3 - braces: registry.npmmirror.com/braces@3.0.2 - glob-parent: registry.npmmirror.com/glob-parent@5.1.2 - is-binary-path: registry.npmmirror.com/is-binary-path@2.1.0 - is-glob: registry.npmmirror.com/is-glob@4.0.3 - normalize-path: registry.npmmirror.com/normalize-path@3.0.0 - readdirp: registry.npmmirror.com/readdirp@3.6.0 - optionalDependencies: - fsevents: registry.npmmirror.com/fsevents@2.3.3 - dev: true - - registry.npmmirror.com/chrome-trace-event@1.0.3: - resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz} - name: chrome-trace-event - version: 1.0.3 - engines: {node: '>=6.0'} - dev: true - - registry.npmmirror.com/ci-info@3.8.0: - resolution: {integrity: sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ci-info/-/ci-info-3.8.0.tgz} - name: ci-info - version: 3.8.0 - engines: {node: '>=8'} - dev: true - - registry.npmmirror.com/cjs-module-lexer@1.2.3: - resolution: {integrity: sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz} - name: cjs-module-lexer - version: 1.2.3 - dev: true - - registry.npmmirror.com/cli-cursor@3.1.0: - resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/cli-cursor/-/cli-cursor-3.1.0.tgz} - name: cli-cursor - version: 3.1.0 - engines: {node: '>=8'} - dependencies: - restore-cursor: registry.npmmirror.com/restore-cursor@3.1.0 - dev: true - - registry.npmmirror.com/cli-spinners@2.9.0: - resolution: {integrity: sha512-4/aL9X3Wh0yiMQlE+eeRhWP6vclO3QRtw1JHKIT0FFUs5FjpFmESqtMvYZ0+lbzBw900b95mS0hohy+qn2VK/g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/cli-spinners/-/cli-spinners-2.9.0.tgz} - name: cli-spinners - version: 2.9.0 - engines: {node: '>=6'} - dev: true - - registry.npmmirror.com/cli-table3@0.6.2: - resolution: {integrity: sha512-QyavHCaIC80cMivimWu4aWHilIpiDpfm3hGmqAmXVL1UsnbLuBSMd21hTX6VY4ZSDSM73ESLeF8TOYId3rBTbw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/cli-table3/-/cli-table3-0.6.2.tgz} - name: cli-table3 - version: 0.6.2 - engines: {node: 10.* || >= 12.*} - dependencies: - string-width: registry.npmmirror.com/string-width@4.2.3 - optionalDependencies: - '@colors/colors': registry.npmmirror.com/@colors/colors@1.5.0 - dev: true - - registry.npmmirror.com/cli-width@3.0.0: - resolution: {integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/cli-width/-/cli-width-3.0.0.tgz} - name: cli-width - version: 3.0.0 - engines: {node: '>= 10'} - dev: true - - registry.npmmirror.com/cliui@8.0.1: - resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/cliui/-/cliui-8.0.1.tgz} - name: cliui - version: 8.0.1 - engines: {node: '>=12'} - dependencies: - string-width: registry.npmmirror.com/string-width@4.2.3 - strip-ansi: registry.npmmirror.com/strip-ansi@6.0.1 - wrap-ansi: registry.npmmirror.com/wrap-ansi@7.0.0 - dev: true - - registry.npmmirror.com/clone@1.0.4: - resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/clone/-/clone-1.0.4.tgz} - name: clone - version: 1.0.4 - engines: {node: '>=0.8'} - dev: true - - registry.npmmirror.com/cluster-key-slot@1.1.2: - resolution: {integrity: sha512-RMr0FhtfXemyinomL4hrWcYJxmX6deFdCxpJzhDttxgO1+bcCnkk+9drydLVDmAMG7NE6aN/fl4F7ucU/90gAA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/cluster-key-slot/-/cluster-key-slot-1.1.2.tgz} - name: cluster-key-slot - version: 1.1.2 - engines: {node: '>=0.10.0'} - dev: false - - registry.npmmirror.com/co@4.6.0: - resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/co/-/co-4.6.0.tgz} - name: co - version: 4.6.0 - engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} - dev: true - - registry.npmmirror.com/collect-v8-coverage@1.0.2: - resolution: {integrity: sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz} - name: collect-v8-coverage - version: 1.0.2 - dev: true - - 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} - name: color-convert - version: 1.9.3 - dependencies: - color-name: registry.npmmirror.com/color-name@1.1.3 - dev: true - - 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 - - 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} - name: color-name - version: 1.1.3 - dev: true - - 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 - - registry.npmmirror.com/combined-stream@1.0.8: - resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/combined-stream/-/combined-stream-1.0.8.tgz} - name: combined-stream - version: 1.0.8 - engines: {node: '>= 0.8'} - dependencies: - delayed-stream: registry.npmmirror.com/delayed-stream@1.0.0 - - registry.npmmirror.com/commander@2.20.3: - resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/commander/-/commander-2.20.3.tgz} - name: commander - version: 2.20.3 - dev: true - - registry.npmmirror.com/commander@4.1.1: - resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/commander/-/commander-4.1.1.tgz} - name: commander - version: 4.1.1 - engines: {node: '>= 6'} - dev: true - - registry.npmmirror.com/component-emitter@1.3.0: - resolution: {integrity: sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/component-emitter/-/component-emitter-1.3.0.tgz} - name: component-emitter - version: 1.3.0 - dev: true - - registry.npmmirror.com/concat-map@0.0.1: - resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/concat-map/-/concat-map-0.0.1.tgz} - name: concat-map - version: 0.0.1 - dev: true - - registry.npmmirror.com/concat-stream@1.6.2: - resolution: {integrity: sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/concat-stream/-/concat-stream-1.6.2.tgz} - name: concat-stream - version: 1.6.2 - engines: {'0': node >= 0.8} - dependencies: - buffer-from: registry.npmmirror.com/buffer-from@1.1.2 - inherits: registry.npmmirror.com/inherits@2.0.4 - readable-stream: registry.npmmirror.com/readable-stream@2.3.8 - typedarray: registry.npmmirror.com/typedarray@0.0.6 - - registry.npmmirror.com/conf@9.0.2: - resolution: {integrity: sha512-rLSiilO85qHgaTBIIHQpsv8z+NnVfZq3cKuYNCXN1AOqPzced0GWZEe/A517VldRLyQYXUMyV+vszavE2jSAqw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/conf/-/conf-9.0.2.tgz} - name: conf - version: 9.0.2 - engines: {node: '>=10'} - dependencies: - ajv: registry.npmmirror.com/ajv@7.2.4 - ajv-formats: registry.npmmirror.com/ajv-formats@1.6.1(ajv@7.2.4) - atomically: registry.npmmirror.com/atomically@1.7.0 - debounce-fn: registry.npmmirror.com/debounce-fn@4.0.0 - dot-prop: registry.npmmirror.com/dot-prop@6.0.1 - env-paths: registry.npmmirror.com/env-paths@2.2.1 - json-schema-typed: registry.npmmirror.com/json-schema-typed@7.0.3 - make-dir: registry.npmmirror.com/make-dir@3.1.0 - onetime: registry.npmmirror.com/onetime@5.1.2 - pkg-up: registry.npmmirror.com/pkg-up@3.1.0 - semver: registry.npmmirror.com/semver@7.5.4 - dev: false - - registry.npmmirror.com/consola@2.15.3: - resolution: {integrity: sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/consola/-/consola-2.15.3.tgz} - name: consola - version: 2.15.3 - - 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} - name: content-disposition - version: 0.5.4 - engines: {node: '>= 0.6'} - dependencies: - safe-buffer: registry.npmmirror.com/safe-buffer@5.2.1 - - registry.npmmirror.com/content-type@1.0.5: - resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/content-type/-/content-type-1.0.5.tgz} - name: content-type - version: 1.0.5 - engines: {node: '>= 0.6'} - - registry.npmmirror.com/convert-source-map@1.9.0: - resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/convert-source-map/-/convert-source-map-1.9.0.tgz} - name: convert-source-map - version: 1.9.0 - dev: true - - registry.npmmirror.com/convert-source-map@2.0.0: - resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/convert-source-map/-/convert-source-map-2.0.0.tgz} - name: convert-source-map - version: 2.0.0 - dev: true - - 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} - name: cookie-signature - version: 1.0.6 - - 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} - name: cookie - version: 0.5.0 - engines: {node: '>= 0.6'} - - registry.npmmirror.com/cookiejar@2.1.4: - resolution: {integrity: sha512-LDx6oHrK+PhzLKJU9j5S7/Y3jM/mUHvD/DeI1WQmJn652iPC5Y4TBzC9l+5OMOXlyTTA+SmVUPm0HQUwpD5Jqw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/cookiejar/-/cookiejar-2.1.4.tgz} - name: cookiejar - version: 2.1.4 - dev: true - - registry.npmmirror.com/core-util-is@1.0.2: - resolution: {integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/core-util-is/-/core-util-is-1.0.2.tgz} - name: core-util-is - version: 1.0.2 - dev: false - - registry.npmmirror.com/core-util-is@1.0.3: - resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/core-util-is/-/core-util-is-1.0.3.tgz} - name: core-util-is - version: 1.0.3 - - registry.npmmirror.com/cors@2.8.5: - resolution: {integrity: sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/cors/-/cors-2.8.5.tgz} - name: cors - version: 2.8.5 - engines: {node: '>= 0.10'} - dependencies: - object-assign: registry.npmmirror.com/object-assign@4.1.1 - vary: registry.npmmirror.com/vary@1.1.2 - - registry.npmmirror.com/cos-nodejs-sdk-v5@2.12.4: - resolution: {integrity: sha512-TFTLCzK3owRezlqRwlub+9U7LHd4me5m4q6HFGLa4ez5huYAH3GDf/LM+2CZDQ/vMVU/oigbumB+OeDTmAhByg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/cos-nodejs-sdk-v5/-/cos-nodejs-sdk-v5-2.12.4.tgz} - name: cos-nodejs-sdk-v5 - version: 2.12.4 - engines: {node: '>= 6'} - dependencies: - conf: registry.npmmirror.com/conf@9.0.2 - fast-xml-parser: registry.npmmirror.com/fast-xml-parser@4.2.5 - mime-types: registry.npmmirror.com/mime-types@2.1.35 - request: registry.npmmirror.com/request@2.88.2 - dev: false - - registry.npmmirror.com/cosmiconfig@7.1.0: - resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/cosmiconfig/-/cosmiconfig-7.1.0.tgz} - name: cosmiconfig - version: 7.1.0 - engines: {node: '>=10'} - dependencies: - '@types/parse-json': registry.npmmirror.com/@types/parse-json@4.0.0 - import-fresh: registry.npmmirror.com/import-fresh@3.3.0 - parse-json: registry.npmmirror.com/parse-json@5.2.0 - path-type: registry.npmmirror.com/path-type@4.0.0 - yaml: registry.npmmirror.com/yaml@1.10.2 - dev: true - - registry.npmmirror.com/create-require@1.1.1: - resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/create-require/-/create-require-1.1.1.tgz} - name: create-require - version: 1.1.1 - dev: true - - registry.npmmirror.com/cron@2.4.3: - resolution: {integrity: sha512-YBvExkQYF7w0PxyeFLRyr817YVDhGxaCi5/uRRMqa4aWD3IFKRd+uNbpW1VWMdqQy8PZ7CElc+accXJcauPKzQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/cron/-/cron-2.4.3.tgz} - name: cron - version: 2.4.3 - dependencies: - '@types/luxon': registry.npmmirror.com/@types/luxon@3.3.2 - luxon: registry.npmmirror.com/luxon@3.3.0 - dev: false - - 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} - name: cross-spawn - version: 7.0.3 - engines: {node: '>= 8'} - dependencies: - path-key: registry.npmmirror.com/path-key@3.1.1 - shebang-command: registry.npmmirror.com/shebang-command@2.0.0 - which: registry.npmmirror.com/which@2.0.2 - dev: true - - registry.npmmirror.com/dashdash@1.14.1: - resolution: {integrity: sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/dashdash/-/dashdash-1.14.1.tgz} - name: dashdash - version: 1.14.1 - engines: {node: '>=0.10'} - dependencies: - assert-plus: registry.npmmirror.com/assert-plus@1.0.0 - dev: false - - registry.npmmirror.com/debounce-fn@4.0.0: - resolution: {integrity: sha512-8pYCQiL9Xdcg0UPSD3d+0KMlOjp+KGU5EPwYddgzQ7DATsg4fuUDjQtsYLmWjnk2obnNHgV3vE2Y4jejSOJVBQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/debounce-fn/-/debounce-fn-4.0.0.tgz} - name: debounce-fn - version: 4.0.0 - engines: {node: '>=10'} - dependencies: - mimic-fn: registry.npmmirror.com/mimic-fn@3.1.0 - dev: false - - 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} - name: debug - version: 2.6.9 - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - dependencies: - ms: registry.npmmirror.com/ms@2.0.0 - - 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} - name: debug - version: 4.3.4 - engines: {node: '>=6.0'} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - dependencies: - ms: registry.npmmirror.com/ms@2.1.2 - - registry.npmmirror.com/dedent@1.5.1: - resolution: {integrity: sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/dedent/-/dedent-1.5.1.tgz} - name: dedent - version: 1.5.1 - peerDependencies: - babel-plugin-macros: ^3.1.0 - peerDependenciesMeta: - babel-plugin-macros: - optional: true - dev: true - - 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/deepmerge@4.3.1: - resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/deepmerge/-/deepmerge-4.3.1.tgz} - name: deepmerge - version: 4.3.1 - engines: {node: '>=0.10.0'} - dev: true - - registry.npmmirror.com/defaults@1.0.4: - resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/defaults/-/defaults-1.0.4.tgz} - name: defaults - version: 1.0.4 - dependencies: - clone: registry.npmmirror.com/clone@1.0.4 - dev: true - - registry.npmmirror.com/delayed-stream@1.0.0: - resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/delayed-stream/-/delayed-stream-1.0.0.tgz} - name: delayed-stream - version: 1.0.0 - engines: {node: '>=0.4.0'} - - registry.npmmirror.com/denque@2.1.0: - resolution: {integrity: sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/denque/-/denque-2.1.0.tgz} - name: denque - version: 2.1.0 - engines: {node: '>=0.10'} - dev: false - - 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} - name: depd - version: 2.0.0 - engines: {node: '>= 0.8'} - - 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} - name: destroy - version: 1.2.0 - engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} - - registry.npmmirror.com/detect-newline@3.1.0: - resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/detect-newline/-/detect-newline-3.1.0.tgz} - name: detect-newline - version: 3.1.0 - engines: {node: '>=8'} - dev: true - - registry.npmmirror.com/diff-sequences@29.6.3: - resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/diff-sequences/-/diff-sequences-29.6.3.tgz} - name: diff-sequences - version: 29.6.3 - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dev: true - - registry.npmmirror.com/diff@4.0.2: - resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/diff/-/diff-4.0.2.tgz} - name: diff - version: 4.0.2 - engines: {node: '>=0.3.1'} - 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/dot-prop@6.0.1: - resolution: {integrity: sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/dot-prop/-/dot-prop-6.0.1.tgz} - name: dot-prop - version: 6.0.1 - engines: {node: '>=10'} - dependencies: - is-obj: registry.npmmirror.com/is-obj@2.0.0 - dev: false - - registry.npmmirror.com/dotenv-expand@10.0.0: - resolution: {integrity: sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/dotenv-expand/-/dotenv-expand-10.0.0.tgz} - name: dotenv-expand - version: 10.0.0 - engines: {node: '>=12'} - dev: false - - registry.npmmirror.com/dotenv@16.3.1: - resolution: {integrity: sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/dotenv/-/dotenv-16.3.1.tgz} - name: dotenv - version: 16.3.1 - engines: {node: '>=12'} - dev: false - - registry.npmmirror.com/ecc-jsbn@0.1.2: - resolution: {integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz} - name: ecc-jsbn - version: 0.1.2 - dependencies: - jsbn: registry.npmmirror.com/jsbn@0.1.1 - safer-buffer: registry.npmmirror.com/safer-buffer@2.1.2 - dev: false - - registry.npmmirror.com/ecdsa-sig-formatter@1.0.11: - resolution: {integrity: sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz} - name: ecdsa-sig-formatter - version: 1.0.11 - dependencies: - safe-buffer: registry.npmmirror.com/safe-buffer@5.2.1 - dev: false - - 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} - name: ee-first - version: 1.1.1 - - registry.npmmirror.com/electron-to-chromium@1.4.513: - resolution: {integrity: sha512-cOB0xcInjm+E5qIssHeXJ29BaUyWpMyFKT5RB3bsLENDheCja0wMkHJyiPl0NBE/VzDI7JDuNEQWhe6RitEUcw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/electron-to-chromium/-/electron-to-chromium-1.4.513.tgz} - name: electron-to-chromium - version: 1.4.513 - dev: true - - registry.npmmirror.com/emittery@0.13.1: - resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/emittery/-/emittery-0.13.1.tgz} - name: emittery - version: 0.13.1 - engines: {node: '>=12'} - dev: true - - registry.npmmirror.com/emoji-regex@8.0.0: - resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/emoji-regex/-/emoji-regex-8.0.0.tgz} - name: emoji-regex - version: 8.0.0 - 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} - name: encodeurl - version: 1.0.2 - engines: {node: '>= 0.8'} - - registry.npmmirror.com/end-of-stream@1.4.4: - resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/end-of-stream/-/end-of-stream-1.4.4.tgz} - name: end-of-stream - version: 1.4.4 - dependencies: - once: registry.npmmirror.com/once@1.4.0 - dev: true - - registry.npmmirror.com/enhanced-resolve@5.15.0: - resolution: {integrity: sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz} - name: enhanced-resolve - version: 5.15.0 - engines: {node: '>=10.13.0'} - dependencies: - graceful-fs: registry.npmmirror.com/graceful-fs@4.2.11 - tapable: registry.npmmirror.com/tapable@2.2.1 - dev: true - - registry.npmmirror.com/enquirer@2.4.1: - resolution: {integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/enquirer/-/enquirer-2.4.1.tgz} - name: enquirer - version: 2.4.1 - engines: {node: '>=8.6'} - dependencies: - ansi-colors: registry.npmmirror.com/ansi-colors@4.1.3 - strip-ansi: registry.npmmirror.com/strip-ansi@6.0.1 - dev: true - - registry.npmmirror.com/env-paths@2.2.1: - resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/env-paths/-/env-paths-2.2.1.tgz} - name: env-paths - version: 2.2.1 - engines: {node: '>=6'} - dev: false - - registry.npmmirror.com/error-ex@1.3.2: - resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/error-ex/-/error-ex-1.3.2.tgz} - name: error-ex - version: 1.3.2 - dependencies: - is-arrayish: registry.npmmirror.com/is-arrayish@0.2.1 - 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} - name: es-module-lexer - version: 0.9.3 - dev: true - - registry.npmmirror.com/es-module-lexer@1.3.1: - resolution: {integrity: sha512-JUFAyicQV9mXc3YRxPnDlrfBKpqt6hUYzz9/boprUJHs4e4KVr3XwOF70doO6gwXUor6EWZJAyWAfKki84t20Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/es-module-lexer/-/es-module-lexer-1.3.1.tgz} - name: es-module-lexer - version: 1.3.1 - dev: true - - 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} - name: escalade - version: 3.1.1 - engines: {node: '>=6'} - dev: true - - 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} - name: escape-html - version: 1.0.3 - - 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} - name: escape-string-regexp - version: 1.0.5 - engines: {node: '>=0.8.0'} - dev: true - - registry.npmmirror.com/escape-string-regexp@2.0.0: - resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz} - name: escape-string-regexp - version: 2.0.0 - engines: {node: '>=8'} - dev: true - - 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.3.0(eslint@8.0.1): - resolution: {integrity: sha512-BgZuLUSeKzvlL/VUjx/Yb787VQ26RU3gGjA3iiFvdsp/2bMfVIWUVP7tjxtjS0e+HP409cPlPvNkQloz8C91ew==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/eslint-config-prettier/-/eslint-config-prettier-8.3.0.tgz} - id: registry.npmmirror.com/eslint-config-prettier/8.3.0 - name: eslint-config-prettier - version: 8.3.0 - hasBin: true - peerDependencies: - eslint: '>=7.0.0' - dependencies: - eslint: registry.npmmirror.com/eslint@8.0.1 - dev: true - - registry.npmmirror.com/eslint-plugin-prettier@4.0.0(eslint-config-prettier@8.3.0)(eslint@8.0.1)(prettier@2.3.2): - 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.0.1 - eslint-config-prettier: registry.npmmirror.com/eslint-config-prettier@8.3.0(eslint@8.0.1) - prettier: registry.npmmirror.com/prettier@2.3.2 - prettier-linter-helpers: registry.npmmirror.com/prettier-linter-helpers@1.0.0 - 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@6.0.0: - resolution: {integrity: sha512-uRDL9MWmQCkaFus8RF5K9/L/2fn+80yoW3jkD53l4shjCh26fCtvJGasxjUqP5OT87SYTxCVA3BwTUzuELx9kA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/eslint-scope/-/eslint-scope-6.0.0.tgz} - name: eslint-scope - version: 6.0.0 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dependencies: - esrecurse: registry.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.0.1): - 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.0.1 - 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.4.3: - resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz} - name: eslint-visitor-keys - version: 3.4.3 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dev: true - - registry.npmmirror.com/eslint@8.0.1: - resolution: {integrity: sha512-LsgcwZgQ72vZ+SMp4K6pAnk2yFDWL7Ti4pJaRvsZ0Hsw2h8ZjUIW38a9AFn2cZXdBMlScMFYYgsSp4ttFI/0bA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/eslint/-/eslint-8.0.1.tgz} - name: eslint - version: 8.0.1 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - hasBin: true - dependencies: - '@eslint/eslintrc': registry.npmmirror.com/@eslint/eslintrc@1.4.1 - '@humanwhocodes/config-array': registry.npmmirror.com/@humanwhocodes/config-array@0.6.0 - 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 - enquirer: registry.npmmirror.com/enquirer@2.4.1 - escape-string-regexp: registry.npmmirror.com/escape-string-regexp@4.0.0 - eslint-scope: registry.npmmirror.com/eslint-scope@6.0.0 - eslint-utils: registry.npmmirror.com/eslint-utils@3.0.0(eslint@8.0.1) - eslint-visitor-keys: registry.npmmirror.com/eslint-visitor-keys@3.4.3 - espree: registry.npmmirror.com/espree@9.6.1 - esquery: registry.npmmirror.com/esquery@1.5.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.21.0 - ignore: registry.npmmirror.com/ignore@4.0.6 - 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.3 - progress: registry.npmmirror.com/progress@2.0.3 - regexpp: registry.npmmirror.com/regexpp@3.2.0 - semver: registry.npmmirror.com/semver@7.5.4 - 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.4.0 - transitivePeerDependencies: - - supports-color - dev: true - - registry.npmmirror.com/espree@9.6.1: - resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/espree/-/espree-9.6.1.tgz} - name: espree - version: 9.6.1 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dependencies: - acorn: registry.npmmirror.com/acorn@8.10.0 - acorn-jsx: registry.npmmirror.com/acorn-jsx@5.3.2(acorn@8.10.0) - eslint-visitor-keys: registry.npmmirror.com/eslint-visitor-keys@3.4.3 - dev: true - - registry.npmmirror.com/esprima@4.0.1: - resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esprima/-/esprima-4.0.1.tgz} - name: esprima - version: 4.0.1 - engines: {node: '>=4'} - hasBin: true - dev: true - - registry.npmmirror.com/esquery@1.5.0: - resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esquery/-/esquery-1.5.0.tgz} - name: esquery - version: 1.5.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/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} - name: etag - version: 1.8.1 - engines: {node: '>= 0.6'} - - registry.npmmirror.com/events@3.3.0: - resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/events/-/events-3.3.0.tgz} - name: events - version: 3.3.0 - engines: {node: '>=0.8.x'} - dev: true - - registry.npmmirror.com/execa@4.1.0: - resolution: {integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/execa/-/execa-4.1.0.tgz} - name: execa - version: 4.1.0 - engines: {node: '>=10'} - dependencies: - cross-spawn: registry.npmmirror.com/cross-spawn@7.0.3 - get-stream: registry.npmmirror.com/get-stream@5.2.0 - human-signals: registry.npmmirror.com/human-signals@1.1.1 - is-stream: registry.npmmirror.com/is-stream@2.0.1 - merge-stream: registry.npmmirror.com/merge-stream@2.0.0 - npm-run-path: registry.npmmirror.com/npm-run-path@4.0.1 - onetime: registry.npmmirror.com/onetime@5.1.2 - signal-exit: registry.npmmirror.com/signal-exit@3.0.7 - strip-final-newline: registry.npmmirror.com/strip-final-newline@2.0.0 - 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} - name: execa - version: 5.1.1 - engines: {node: '>=10'} - dependencies: - cross-spawn: registry.npmmirror.com/cross-spawn@7.0.3 - get-stream: registry.npmmirror.com/get-stream@6.0.1 - human-signals: registry.npmmirror.com/human-signals@2.1.0 - is-stream: registry.npmmirror.com/is-stream@2.0.1 - merge-stream: registry.npmmirror.com/merge-stream@2.0.0 - npm-run-path: registry.npmmirror.com/npm-run-path@4.0.1 - onetime: registry.npmmirror.com/onetime@5.1.2 - signal-exit: registry.npmmirror.com/signal-exit@3.0.7 - strip-final-newline: registry.npmmirror.com/strip-final-newline@2.0.0 - dev: true - - registry.npmmirror.com/exit@0.1.2: - resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/exit/-/exit-0.1.2.tgz} - name: exit - version: 0.1.2 - engines: {node: '>= 0.8.0'} - dev: true - - registry.npmmirror.com/expect@29.6.4: - resolution: {integrity: sha512-F2W2UyQ8XYyftHT57dtfg8Ue3X5qLgm2sSug0ivvLRH/VKNRL/pDxg/TH7zVzbQB0tu80clNFy6LU7OS/VSEKA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/expect/-/expect-29.6.4.tgz} - name: expect - version: 29.6.4 - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jest/expect-utils': registry.npmmirror.com/@jest/expect-utils@29.6.4 - jest-get-type: registry.npmmirror.com/jest-get-type@29.6.3 - jest-matcher-utils: registry.npmmirror.com/jest-matcher-utils@29.6.4 - jest-message-util: registry.npmmirror.com/jest-message-util@29.6.3 - jest-util: registry.npmmirror.com/jest-util@29.6.3 - 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} - name: express - version: 4.18.1 - engines: {node: '>= 0.10.0'} - dependencies: - accepts: registry.npmmirror.com/accepts@1.3.8 - array-flatten: registry.npmmirror.com/array-flatten@1.1.1 - body-parser: registry.npmmirror.com/body-parser@1.20.0 - content-disposition: registry.npmmirror.com/content-disposition@0.5.4 - content-type: registry.npmmirror.com/content-type@1.0.5 - cookie: registry.npmmirror.com/cookie@0.5.0 - cookie-signature: registry.npmmirror.com/cookie-signature@1.0.6 - debug: registry.npmmirror.com/debug@2.6.9 - depd: registry.npmmirror.com/depd@2.0.0 - encodeurl: registry.npmmirror.com/encodeurl@1.0.2 - escape-html: registry.npmmirror.com/escape-html@1.0.3 - etag: registry.npmmirror.com/etag@1.8.1 - finalhandler: registry.npmmirror.com/finalhandler@1.2.0 - fresh: registry.npmmirror.com/fresh@0.5.2 - http-errors: registry.npmmirror.com/http-errors@2.0.0 - merge-descriptors: registry.npmmirror.com/merge-descriptors@1.0.1 - methods: registry.npmmirror.com/methods@1.1.2 - on-finished: registry.npmmirror.com/on-finished@2.4.1 - parseurl: registry.npmmirror.com/parseurl@1.3.3 - path-to-regexp: registry.npmmirror.com/path-to-regexp@0.1.7 - proxy-addr: registry.npmmirror.com/proxy-addr@2.0.7 - qs: registry.npmmirror.com/qs@6.10.3 - range-parser: registry.npmmirror.com/range-parser@1.2.1 - safe-buffer: registry.npmmirror.com/safe-buffer@5.2.1 - send: registry.npmmirror.com/send@0.18.0 - serve-static: registry.npmmirror.com/serve-static@1.15.0 - setprototypeof: registry.npmmirror.com/setprototypeof@1.2.0 - statuses: registry.npmmirror.com/statuses@2.0.1 - type-is: registry.npmmirror.com/type-is@1.6.18 - utils-merge: registry.npmmirror.com/utils-merge@1.0.1 - vary: registry.npmmirror.com/vary@1.1.2 - transitivePeerDependencies: - - supports-color - - registry.npmmirror.com/extend@3.0.2: - resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/extend/-/extend-3.0.2.tgz} - name: extend - version: 3.0.2 - dev: false - - registry.npmmirror.com/external-editor@3.1.0: - resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/external-editor/-/external-editor-3.1.0.tgz} - name: external-editor - version: 3.1.0 - engines: {node: '>=4'} - dependencies: - chardet: registry.npmmirror.com/chardet@0.7.0 - iconv-lite: registry.npmmirror.com/iconv-lite@0.4.24 - tmp: registry.npmmirror.com/tmp@0.0.33 - dev: true - - registry.npmmirror.com/extsprintf@1.3.0: - resolution: {integrity: sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/extsprintf/-/extsprintf-1.3.0.tgz} - name: extsprintf - version: 1.3.0 - engines: {'0': node >=0.6.0} - dev: false - - 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 - - registry.npmmirror.com/fast-diff@1.3.0: - resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fast-diff/-/fast-diff-1.3.0.tgz} - name: fast-diff - version: 1.3.0 - dev: true - - registry.npmmirror.com/fast-glob@3.3.1: - resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fast-glob/-/fast-glob-3.3.1.tgz} - name: fast-glob - version: 3.3.1 - engines: {node: '>=8.6.0'} - 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 - glob-parent: registry.npmmirror.com/glob-parent@5.1.2 - merge2: registry.npmmirror.com/merge2@1.4.1 - micromatch: registry.npmmirror.com/micromatch@4.0.5 - dev: true - - 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 - - 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/fast-safe-stringify@2.1.1: - resolution: {integrity: sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz} - name: fast-safe-stringify - version: 2.1.1 - - registry.npmmirror.com/fast-xml-parser@4.2.5: - resolution: {integrity: sha512-B9/wizE4WngqQftFPmdaMYlXoJlJOYxGQOanC77fq9k8+Z0v5dDSVh+3glErdIROP//s/jgb7ZuxKfB8nVyo0g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fast-xml-parser/-/fast-xml-parser-4.2.5.tgz} - name: fast-xml-parser - version: 4.2.5 - hasBin: true - dependencies: - strnum: registry.npmmirror.com/strnum@1.0.5 - dev: false - - registry.npmmirror.com/fastq@1.15.0: - resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fastq/-/fastq-1.15.0.tgz} - name: fastq - version: 1.15.0 - dependencies: - reusify: registry.npmmirror.com/reusify@1.0.4 - dev: true - - registry.npmmirror.com/fb-watchman@2.0.2: - resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fb-watchman/-/fb-watchman-2.0.2.tgz} - name: fb-watchman - version: 2.0.2 - dependencies: - bser: registry.npmmirror.com/bser@2.1.1 - dev: true - - registry.npmmirror.com/figures@3.2.0: - resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/figures/-/figures-3.2.0.tgz} - name: figures - version: 3.2.0 - engines: {node: '>=8'} - dependencies: - escape-string-regexp: registry.npmmirror.com/escape-string-regexp@1.0.5 - dev: true - - 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.1.0 - 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} - name: fill-range - version: 7.0.1 - engines: {node: '>=8'} - dependencies: - to-regex-range: registry.npmmirror.com/to-regex-range@5.0.1 - dev: true - - 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} - name: finalhandler - version: 1.2.0 - engines: {node: '>= 0.8'} - dependencies: - debug: registry.npmmirror.com/debug@2.6.9 - encodeurl: registry.npmmirror.com/encodeurl@1.0.2 - escape-html: registry.npmmirror.com/escape-html@1.0.3 - on-finished: registry.npmmirror.com/on-finished@2.4.1 - parseurl: registry.npmmirror.com/parseurl@1.3.3 - statuses: registry.npmmirror.com/statuses@2.0.1 - unpipe: registry.npmmirror.com/unpipe@1.0.0 - transitivePeerDependencies: - - supports-color - - registry.npmmirror.com/find-up@3.0.0: - resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/find-up/-/find-up-3.0.0.tgz} - name: find-up - version: 3.0.0 - engines: {node: '>=6'} - dependencies: - locate-path: registry.npmmirror.com/locate-path@3.0.0 - dev: false - - registry.npmmirror.com/find-up@4.1.0: - resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/find-up/-/find-up-4.1.0.tgz} - name: find-up - version: 4.1.0 - engines: {node: '>=8'} - dependencies: - locate-path: registry.npmmirror.com/locate-path@5.0.0 - path-exists: registry.npmmirror.com/path-exists@4.0.0 - dev: true - - registry.npmmirror.com/flat-cache@3.1.0: - resolution: {integrity: sha512-OHx4Qwrrt0E4jEIcI5/Xb+f+QmJYNj2rrK8wiIdQOIrB9WrrJL8cjZvXdXuBTkkEwEqLycb5BeZDV1o2i9bTew==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/flat-cache/-/flat-cache-3.1.0.tgz} - name: flat-cache - version: 3.1.0 - engines: {node: '>=12.0.0'} - dependencies: - flatted: registry.npmmirror.com/flatted@3.2.7 - keyv: registry.npmmirror.com/keyv@4.5.3 - rimraf: registry.npmmirror.com/rimraf@3.0.2 - dev: true - - registry.npmmirror.com/flatted@3.2.7: - resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/flatted/-/flatted-3.2.7.tgz} - name: flatted - version: 3.2.7 - dev: true - - registry.npmmirror.com/follow-redirects@1.15.3: - resolution: {integrity: sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/follow-redirects/-/follow-redirects-1.15.3.tgz} - name: follow-redirects - version: 1.15.3 - engines: {node: '>=4.0'} - peerDependencies: - debug: '*' - peerDependenciesMeta: - debug: - optional: true - dev: false - - registry.npmmirror.com/forever-agent@0.6.1: - resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/forever-agent/-/forever-agent-0.6.1.tgz} - name: forever-agent - version: 0.6.1 - dev: false - - registry.npmmirror.com/fork-ts-checker-webpack-plugin@7.2.11(typescript@4.7.4)(webpack@5.73.0): - resolution: {integrity: sha512-2e5+NyTUTE1Xq4fWo7KFEQblCaIvvINQwUX3jRmEGlgCTc1Ecqw/975EfQrQ0GEraxJTnp8KB9d/c8hlCHUMJA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-7.2.11.tgz} - id: registry.npmmirror.com/fork-ts-checker-webpack-plugin/7.2.11 - name: fork-ts-checker-webpack-plugin - version: 7.2.11 - engines: {node: '>=12.13.0', yarn: '>=1.0.0'} - peerDependencies: - typescript: '>3.6.0' - vue-template-compiler: '*' - webpack: ^5.11.0 - peerDependenciesMeta: - vue-template-compiler: - optional: true - dependencies: - '@babel/code-frame': registry.npmmirror.com/@babel/code-frame@7.22.13 - chalk: registry.npmmirror.com/chalk@4.1.2 - chokidar: registry.npmmirror.com/chokidar@3.5.3 - cosmiconfig: registry.npmmirror.com/cosmiconfig@7.1.0 - deepmerge: registry.npmmirror.com/deepmerge@4.3.1 - fs-extra: registry.npmmirror.com/fs-extra@10.1.0 - memfs: registry.npmmirror.com/memfs@3.5.3 - minimatch: registry.npmmirror.com/minimatch@3.1.2 - schema-utils: registry.npmmirror.com/schema-utils@3.3.0 - semver: registry.npmmirror.com/semver@7.5.4 - tapable: registry.npmmirror.com/tapable@2.2.1 - typescript: registry.npmmirror.com/typescript@4.7.4 - webpack: registry.npmmirror.com/webpack@5.73.0 - dev: true - - registry.npmmirror.com/form-data@2.3.3: - resolution: {integrity: sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/form-data/-/form-data-2.3.3.tgz} - name: form-data - version: 2.3.3 - engines: {node: '>= 0.12'} - dependencies: - asynckit: registry.npmmirror.com/asynckit@0.4.0 - combined-stream: registry.npmmirror.com/combined-stream@1.0.8 - mime-types: registry.npmmirror.com/mime-types@2.1.35 - dev: false - - registry.npmmirror.com/form-data@3.0.1: - resolution: {integrity: sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/form-data/-/form-data-3.0.1.tgz} - name: form-data - version: 3.0.1 - engines: {node: '>= 6'} - dependencies: - asynckit: registry.npmmirror.com/asynckit@0.4.0 - combined-stream: registry.npmmirror.com/combined-stream@1.0.8 - mime-types: registry.npmmirror.com/mime-types@2.1.35 - dev: true - - registry.npmmirror.com/form-data@4.0.0: - resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/form-data/-/form-data-4.0.0.tgz} - name: form-data - version: 4.0.0 - engines: {node: '>= 6'} - dependencies: - asynckit: registry.npmmirror.com/asynckit@0.4.0 - combined-stream: registry.npmmirror.com/combined-stream@1.0.8 - mime-types: registry.npmmirror.com/mime-types@2.1.35 - dev: false - - registry.npmmirror.com/formidable@1.2.6: - resolution: {integrity: sha512-KcpbcpuLNOwrEjnbpMC0gS+X8ciDoZE1kkqzat4a8vrprf+s9pKNQ/QIwWfbfs4ltgmFl3MD177SNTkve3BwGQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/formidable/-/formidable-1.2.6.tgz} - name: formidable - version: 1.2.6 - deprecated: 'Please upgrade to latest, formidable@v2 or formidable@v3! Check these notes: https://bit.ly/2ZEqIau' - 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} - name: forwarded - version: 0.2.0 - engines: {node: '>= 0.6'} - - 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} - name: fresh - version: 0.5.2 - engines: {node: '>= 0.6'} - - 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} - name: fs-extra - version: 10.1.0 - engines: {node: '>=12'} - dependencies: - graceful-fs: registry.npmmirror.com/graceful-fs@4.2.11 - jsonfile: registry.npmmirror.com/jsonfile@6.1.0 - universalify: registry.npmmirror.com/universalify@2.0.0 - dev: true - - registry.npmmirror.com/fs-monkey@1.0.4: - resolution: {integrity: sha512-INM/fWAxMICjttnD0DX1rBvinKskj5G1w+oy/pnm9u/tSlnBrzFonJMcalKJ30P8RRsPzKcCG7Q8l0jx5Fh9YQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fs-monkey/-/fs-monkey-1.0.4.tgz} - name: fs-monkey - version: 1.0.4 - dev: true - - 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.3: - resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fsevents/-/fsevents-2.3.3.tgz} - name: fsevents - version: 2.3.3 - engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} - os: [darwin] - requiresBuild: true - dev: 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} - 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-pool@3.9.0: - resolution: {integrity: sha512-hymDOu5B53XvN4QT9dBmZxPX4CWhBPPLguTZ9MMFeFa/Kg0xWVfylOVNlJji/E7yTZWFd/q9GO5TxDLq156D7g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/generic-pool/-/generic-pool-3.9.0.tgz} - name: generic-pool - version: 3.9.0 - engines: {node: '>= 4'} - dev: false - - 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} - name: gensync - version: 1.0.0-beta.2 - engines: {node: '>=6.9.0'} - dev: true - - registry.npmmirror.com/get-caller-file@2.0.5: - resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/get-caller-file/-/get-caller-file-2.0.5.tgz} - name: get-caller-file - version: 2.0.5 - engines: {node: 6.* || 8.* || >= 10.*} - dev: true - - registry.npmmirror.com/get-intrinsic@1.2.1: - resolution: {integrity: sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz} - name: get-intrinsic - version: 1.2.1 - dependencies: - function-bind: registry.npmmirror.com/function-bind@1.1.1 - has: registry.npmmirror.com/has@1.0.3 - has-proto: registry.npmmirror.com/has-proto@1.0.1 - has-symbols: registry.npmmirror.com/has-symbols@1.0.3 - - registry.npmmirror.com/get-package-type@0.1.0: - resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/get-package-type/-/get-package-type-0.1.0.tgz} - name: get-package-type - version: 0.1.0 - engines: {node: '>=8.0.0'} - dev: true - - registry.npmmirror.com/get-stream@5.2.0: - resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/get-stream/-/get-stream-5.2.0.tgz} - name: get-stream - version: 5.2.0 - engines: {node: '>=8'} - dependencies: - pump: registry.npmmirror.com/pump@3.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} - name: get-stream - version: 6.0.1 - engines: {node: '>=10'} - dev: true - - registry.npmmirror.com/getpass@0.1.7: - resolution: {integrity: sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/getpass/-/getpass-0.1.7.tgz} - name: getpass - version: 0.1.7 - dependencies: - assert-plus: registry.npmmirror.com/assert-plus@1.0.0 - dev: false - - 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} - name: glob-parent - version: 5.1.2 - engines: {node: '>= 6'} - dependencies: - is-glob: registry.npmmirror.com/is-glob@4.0.3 - dev: true - - registry.npmmirror.com/glob-parent@6.0.2: - resolution: {integrity: 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-to-regexp@0.4.1: - resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz} - name: glob-to-regexp - version: 0.4.1 - 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} - name: globals - version: 11.12.0 - engines: {node: '>=4'} - dev: true - - registry.npmmirror.com/globals@13.21.0: - resolution: {integrity: sha512-ybyme3s4yy/t/3s35bewwXKOf7cvzfreG2lH0lZl0JB7I4GxRP2ghxOK/Nb9EkRXdbBXZLfq/p/0W2JUONB/Gg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/globals/-/globals-13.21.0.tgz} - name: globals - version: 13.21.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.3.1 - ignore: registry.npmmirror.com/ignore@5.2.4 - 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.11: - resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/graceful-fs/-/graceful-fs-4.2.11.tgz} - name: graceful-fs - version: 4.2.11 - dev: true - - registry.npmmirror.com/har-schema@2.0.0: - resolution: {integrity: sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/har-schema/-/har-schema-2.0.0.tgz} - name: har-schema - version: 2.0.0 - engines: {node: '>=4'} - dev: false - - registry.npmmirror.com/har-validator@5.1.5: - resolution: {integrity: sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/har-validator/-/har-validator-5.1.5.tgz} - name: har-validator - version: 5.1.5 - engines: {node: '>=6'} - deprecated: this library is no longer supported - dependencies: - ajv: registry.npmmirror.com/ajv@6.12.6 - har-schema: registry.npmmirror.com/har-schema@2.0.0 - dev: false - - 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} - name: has-flag - version: 3.0.0 - engines: {node: '>=4'} - dev: true - - 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'} - - registry.npmmirror.com/has-proto@1.0.1: - resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/has-proto/-/has-proto-1.0.1.tgz} - name: has-proto - version: 1.0.1 - engines: {node: '>= 0.4'} - - 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} - name: has-symbols - version: 1.0.3 - engines: {node: '>= 0.4'} - - 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} - name: has - version: 1.0.3 - engines: {node: '>= 0.4.0'} - dependencies: - function-bind: registry.npmmirror.com/function-bind@1.1.1 - - registry.npmmirror.com/html-escaper@2.0.2: - resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/html-escaper/-/html-escaper-2.0.2.tgz} - name: html-escaper - version: 2.0.2 - 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} - name: http-errors - version: 2.0.0 - engines: {node: '>= 0.8'} - dependencies: - depd: registry.npmmirror.com/depd@2.0.0 - inherits: registry.npmmirror.com/inherits@2.0.4 - setprototypeof: registry.npmmirror.com/setprototypeof@1.2.0 - statuses: registry.npmmirror.com/statuses@2.0.1 - toidentifier: registry.npmmirror.com/toidentifier@1.0.1 - - registry.npmmirror.com/http-signature@1.2.0: - resolution: {integrity: sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/http-signature/-/http-signature-1.2.0.tgz} - name: http-signature - version: 1.2.0 - engines: {node: '>=0.8', npm: '>=1.3.7'} - dependencies: - assert-plus: registry.npmmirror.com/assert-plus@1.0.0 - jsprim: registry.npmmirror.com/jsprim@1.4.2 - sshpk: registry.npmmirror.com/sshpk@1.17.0 - dev: false - - registry.npmmirror.com/human-signals@1.1.1: - resolution: {integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/human-signals/-/human-signals-1.1.1.tgz} - name: human-signals - version: 1.1.1 - engines: {node: '>=8.12.0'} - 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} - name: human-signals - version: 2.1.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} - name: iconv-lite - version: 0.4.24 - engines: {node: '>=0.10.0'} - dependencies: - safer-buffer: registry.npmmirror.com/safer-buffer@2.1.2 - - registry.npmmirror.com/ieee754@1.2.1: - resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ieee754/-/ieee754-1.2.1.tgz} - name: ieee754 - version: 1.2.1 - dev: true - - registry.npmmirror.com/ignore@4.0.6: - resolution: {integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ignore/-/ignore-4.0.6.tgz} - name: ignore - version: 4.0.6 - engines: {node: '>= 4'} - dev: true - - registry.npmmirror.com/ignore@5.2.4: - resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ignore/-/ignore-5.2.4.tgz} - name: ignore - version: 5.2.4 - engines: {node: '>= 4'} - dev: true - - 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/import-local@3.1.0: - resolution: {integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/import-local/-/import-local-3.1.0.tgz} - name: import-local - version: 3.1.0 - engines: {node: '>=8'} - hasBin: true - dependencies: - pkg-dir: registry.npmmirror.com/pkg-dir@4.2.0 - resolve-cwd: registry.npmmirror.com/resolve-cwd@3.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} - name: inherits - version: 2.0.4 - - registry.npmmirror.com/inquirer@7.3.3: - resolution: {integrity: sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/inquirer/-/inquirer-7.3.3.tgz} - name: inquirer - version: 7.3.3 - engines: {node: '>=8.0.0'} - dependencies: - ansi-escapes: registry.npmmirror.com/ansi-escapes@4.3.2 - chalk: registry.npmmirror.com/chalk@4.1.2 - cli-cursor: registry.npmmirror.com/cli-cursor@3.1.0 - cli-width: registry.npmmirror.com/cli-width@3.0.0 - external-editor: registry.npmmirror.com/external-editor@3.1.0 - figures: registry.npmmirror.com/figures@3.2.0 - lodash: registry.npmmirror.com/lodash@4.17.21 - mute-stream: registry.npmmirror.com/mute-stream@0.0.8 - run-async: registry.npmmirror.com/run-async@2.4.1 - rxjs: registry.npmmirror.com/rxjs@6.6.7 - string-width: registry.npmmirror.com/string-width@4.2.3 - strip-ansi: registry.npmmirror.com/strip-ansi@6.0.1 - through: registry.npmmirror.com/through@2.3.8 - dev: true - - registry.npmmirror.com/inquirer@8.2.4: - resolution: {integrity: sha512-nn4F01dxU8VeKfq192IjLsxu0/OmMZ4Lg3xKAns148rCaXP6ntAoEkVYZThWjwON8AlzdZZi6oqnhNbxUG9hVg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/inquirer/-/inquirer-8.2.4.tgz} - name: inquirer - version: 8.2.4 - engines: {node: '>=12.0.0'} - dependencies: - ansi-escapes: registry.npmmirror.com/ansi-escapes@4.3.2 - chalk: registry.npmmirror.com/chalk@4.1.2 - cli-cursor: registry.npmmirror.com/cli-cursor@3.1.0 - cli-width: registry.npmmirror.com/cli-width@3.0.0 - external-editor: registry.npmmirror.com/external-editor@3.1.0 - figures: registry.npmmirror.com/figures@3.2.0 - lodash: registry.npmmirror.com/lodash@4.17.21 - mute-stream: registry.npmmirror.com/mute-stream@0.0.8 - ora: registry.npmmirror.com/ora@5.4.1 - run-async: registry.npmmirror.com/run-async@2.4.1 - rxjs: registry.npmmirror.com/rxjs@7.8.1 - string-width: registry.npmmirror.com/string-width@4.2.3 - strip-ansi: registry.npmmirror.com/strip-ansi@6.0.1 - through: registry.npmmirror.com/through@2.3.8 - wrap-ansi: registry.npmmirror.com/wrap-ansi@7.0.0 - dev: true - - registry.npmmirror.com/interpret@1.4.0: - resolution: {integrity: sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/interpret/-/interpret-1.4.0.tgz} - name: interpret - version: 1.4.0 - engines: {node: '>= 0.10'} - dev: true - - registry.npmmirror.com/ioredis@5.3.2: - resolution: {integrity: sha512-1DKMMzlIHM02eBBVOFQ1+AolGjs6+xEcM4PDL7NqOS6szq7H9jSaEkIUH6/a5Hl241LzW6JLSiAbNvTQjUupUA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ioredis/-/ioredis-5.3.2.tgz} - name: ioredis - version: 5.3.2 - engines: {node: '>=12.22.0'} - dependencies: - '@ioredis/commands': registry.npmmirror.com/@ioredis/commands@1.2.0 - cluster-key-slot: registry.npmmirror.com/cluster-key-slot@1.1.2 - debug: registry.npmmirror.com/debug@4.3.4 - denque: registry.npmmirror.com/denque@2.1.0 - lodash.defaults: registry.npmmirror.com/lodash.defaults@4.2.0 - lodash.isarguments: registry.npmmirror.com/lodash.isarguments@3.1.0 - redis-errors: registry.npmmirror.com/redis-errors@1.2.0 - redis-parser: registry.npmmirror.com/redis-parser@3.0.0 - standard-as-callback: registry.npmmirror.com/standard-as-callback@2.1.0 - transitivePeerDependencies: - - supports-color - dev: false - - 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} - name: ipaddr.js - version: 1.9.1 - engines: {node: '>= 0.10'} - - registry.npmmirror.com/is-arrayish@0.2.1: - resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-arrayish/-/is-arrayish-0.2.1.tgz} - name: is-arrayish - version: 0.2.1 - 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} - name: is-binary-path - version: 2.1.0 - engines: {node: '>=8'} - dependencies: - binary-extensions: registry.npmmirror.com/binary-extensions@2.2.0 - dev: true - - registry.npmmirror.com/is-core-module@2.13.0: - resolution: {integrity: sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-core-module/-/is-core-module-2.13.0.tgz} - name: is-core-module - version: 2.13.0 - dependencies: - has: registry.npmmirror.com/has@1.0.3 - dev: true - - 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} - name: is-extglob - version: 2.1.1 - engines: {node: '>=0.10.0'} - dev: true - - registry.npmmirror.com/is-fullwidth-code-point@3.0.0: - resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz} - name: is-fullwidth-code-point - version: 3.0.0 - engines: {node: '>=8'} - dev: true - - registry.npmmirror.com/is-generator-fn@2.1.0: - resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz} - name: is-generator-fn - version: 2.1.0 - engines: {node: '>=6'} - dev: true - - 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} - name: is-glob - version: 4.0.3 - engines: {node: '>=0.10.0'} - dependencies: - is-extglob: registry.npmmirror.com/is-extglob@2.1.1 - dev: true - - registry.npmmirror.com/is-interactive@1.0.0: - resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-interactive/-/is-interactive-1.0.0.tgz} - name: is-interactive - version: 1.0.0 - engines: {node: '>=8'} - dev: true - - 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} - name: is-number - version: 7.0.0 - engines: {node: '>=0.12.0'} - dev: true - - registry.npmmirror.com/is-obj@2.0.0: - resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-obj/-/is-obj-2.0.0.tgz} - name: is-obj - version: 2.0.0 - engines: {node: '>=8'} - dev: false - - 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} - name: is-stream - version: 2.0.1 - engines: {node: '>=8'} - dev: true - - registry.npmmirror.com/is-typedarray@1.0.0: - resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-typedarray/-/is-typedarray-1.0.0.tgz} - name: is-typedarray - version: 1.0.0 - dev: false - - registry.npmmirror.com/is-unicode-supported@0.1.0: - resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz} - name: is-unicode-supported - version: 0.1.0 - engines: {node: '>=10'} - dev: true - - registry.npmmirror.com/isarray@1.0.0: - resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/isarray/-/isarray-1.0.0.tgz} - name: isarray - version: 1.0.0 - - 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} - name: isexe - version: 2.0.0 - dev: true - - registry.npmmirror.com/isstream@0.1.2: - resolution: {integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/isstream/-/isstream-0.1.2.tgz} - name: isstream - version: 0.1.2 - dev: false - - registry.npmmirror.com/istanbul-lib-coverage@3.2.0: - resolution: {integrity: sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz} - name: istanbul-lib-coverage - version: 3.2.0 - engines: {node: '>=8'} - dev: true - - registry.npmmirror.com/istanbul-lib-instrument@5.2.1: - resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz} - name: istanbul-lib-instrument - version: 5.2.1 - engines: {node: '>=8'} - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.17 - '@babel/parser': registry.npmmirror.com/@babel/parser@7.22.16 - '@istanbuljs/schema': registry.npmmirror.com/@istanbuljs/schema@0.1.3 - istanbul-lib-coverage: registry.npmmirror.com/istanbul-lib-coverage@3.2.0 - semver: registry.npmmirror.com/semver@6.3.1 - transitivePeerDependencies: - - supports-color - dev: true - - registry.npmmirror.com/istanbul-lib-instrument@6.0.0: - resolution: {integrity: sha512-x58orMzEVfzPUKqlbLd1hXCnySCxKdDKa6Rjg97CwuLLRI4g3FHTdnExu1OqffVFay6zeMW+T6/DowFLndWnIw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.0.tgz} - name: istanbul-lib-instrument - version: 6.0.0 - engines: {node: '>=10'} - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.17 - '@babel/parser': registry.npmmirror.com/@babel/parser@7.22.16 - '@istanbuljs/schema': registry.npmmirror.com/@istanbuljs/schema@0.1.3 - istanbul-lib-coverage: registry.npmmirror.com/istanbul-lib-coverage@3.2.0 - semver: registry.npmmirror.com/semver@7.5.4 - transitivePeerDependencies: - - supports-color - dev: true - - registry.npmmirror.com/istanbul-lib-report@3.0.1: - resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz} - name: istanbul-lib-report - version: 3.0.1 - engines: {node: '>=10'} - dependencies: - istanbul-lib-coverage: registry.npmmirror.com/istanbul-lib-coverage@3.2.0 - make-dir: registry.npmmirror.com/make-dir@4.0.0 - supports-color: registry.npmmirror.com/supports-color@7.2.0 - dev: true - - registry.npmmirror.com/istanbul-lib-source-maps@4.0.1: - resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz} - name: istanbul-lib-source-maps - version: 4.0.1 - engines: {node: '>=10'} - dependencies: - debug: registry.npmmirror.com/debug@4.3.4 - istanbul-lib-coverage: registry.npmmirror.com/istanbul-lib-coverage@3.2.0 - source-map: registry.npmmirror.com/source-map@0.6.1 - transitivePeerDependencies: - - supports-color - dev: true - - registry.npmmirror.com/istanbul-reports@3.1.6: - resolution: {integrity: sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/istanbul-reports/-/istanbul-reports-3.1.6.tgz} - name: istanbul-reports - version: 3.1.6 - engines: {node: '>=8'} - dependencies: - html-escaper: registry.npmmirror.com/html-escaper@2.0.2 - istanbul-lib-report: registry.npmmirror.com/istanbul-lib-report@3.0.1 - dev: true - - registry.npmmirror.com/iterare@1.2.1: - resolution: {integrity: sha512-RKYVTCjAnRthyJes037NX/IiqeidgN1xc3j1RjFfECFp28A1GVwK9nA+i0rJPaHqSZwygLzRnFlzUuHFoWWy+Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/iterare/-/iterare-1.2.1.tgz} - name: iterare - version: 1.2.1 - engines: {node: '>=6'} - - registry.npmmirror.com/jest-changed-files@29.6.3: - resolution: {integrity: sha512-G5wDnElqLa4/c66ma5PG9eRjE342lIbF6SUnTJi26C3J28Fv2TVY2rOyKB9YGbSA5ogwevgmxc4j4aVjrEK6Yg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-changed-files/-/jest-changed-files-29.6.3.tgz} - name: jest-changed-files - version: 29.6.3 - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - execa: registry.npmmirror.com/execa@5.1.1 - jest-util: registry.npmmirror.com/jest-util@29.6.3 - p-limit: registry.npmmirror.com/p-limit@3.1.0 - dev: true - - registry.npmmirror.com/jest-circus@29.6.4: - resolution: {integrity: sha512-YXNrRyntVUgDfZbjXWBMPslX1mQ8MrSG0oM/Y06j9EYubODIyHWP8hMUbjbZ19M3M+zamqEur7O80HODwACoJw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-circus/-/jest-circus-29.6.4.tgz} - name: jest-circus - version: 29.6.4 - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jest/environment': registry.npmmirror.com/@jest/environment@29.6.4 - '@jest/expect': registry.npmmirror.com/@jest/expect@29.6.4 - '@jest/test-result': registry.npmmirror.com/@jest/test-result@29.6.4 - '@jest/types': registry.npmmirror.com/@jest/types@29.6.3 - '@types/node': registry.npmmirror.com/@types/node@18.15.11 - chalk: registry.npmmirror.com/chalk@4.1.2 - co: registry.npmmirror.com/co@4.6.0 - dedent: registry.npmmirror.com/dedent@1.5.1 - is-generator-fn: registry.npmmirror.com/is-generator-fn@2.1.0 - jest-each: registry.npmmirror.com/jest-each@29.6.3 - jest-matcher-utils: registry.npmmirror.com/jest-matcher-utils@29.6.4 - jest-message-util: registry.npmmirror.com/jest-message-util@29.6.3 - jest-runtime: registry.npmmirror.com/jest-runtime@29.6.4 - jest-snapshot: registry.npmmirror.com/jest-snapshot@29.6.4 - jest-util: registry.npmmirror.com/jest-util@29.6.3 - p-limit: registry.npmmirror.com/p-limit@3.1.0 - pretty-format: registry.npmmirror.com/pretty-format@29.6.3 - pure-rand: registry.npmmirror.com/pure-rand@6.0.3 - slash: registry.npmmirror.com/slash@3.0.0 - stack-utils: registry.npmmirror.com/stack-utils@2.0.6 - transitivePeerDependencies: - - babel-plugin-macros - - supports-color - dev: true - - registry.npmmirror.com/jest-cli@29.6.4(@types/node@18.15.11)(ts-node@10.0.0): - resolution: {integrity: sha512-+uMCQ7oizMmh8ZwRfZzKIEszFY9ksjjEQnTEMTaL7fYiL3Kw4XhqT9bYh+A4DQKUb67hZn2KbtEnDuHvcgK4pQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-cli/-/jest-cli-29.6.4.tgz} - id: registry.npmmirror.com/jest-cli/29.6.4 - name: jest-cli - version: 29.6.4 - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - hasBin: true - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true - dependencies: - '@jest/core': registry.npmmirror.com/@jest/core@29.6.4(ts-node@10.0.0) - '@jest/test-result': registry.npmmirror.com/@jest/test-result@29.6.4 - '@jest/types': registry.npmmirror.com/@jest/types@29.6.3 - chalk: registry.npmmirror.com/chalk@4.1.2 - exit: registry.npmmirror.com/exit@0.1.2 - graceful-fs: registry.npmmirror.com/graceful-fs@4.2.11 - import-local: registry.npmmirror.com/import-local@3.1.0 - jest-config: registry.npmmirror.com/jest-config@29.6.4(@types/node@18.15.11)(ts-node@10.0.0) - jest-util: registry.npmmirror.com/jest-util@29.6.3 - jest-validate: registry.npmmirror.com/jest-validate@29.6.3 - prompts: registry.npmmirror.com/prompts@2.4.2 - yargs: registry.npmmirror.com/yargs@17.7.2 - transitivePeerDependencies: - - '@types/node' - - babel-plugin-macros - - supports-color - - ts-node - dev: true - - registry.npmmirror.com/jest-config@29.6.4(@types/node@18.15.11)(ts-node@10.0.0): - resolution: {integrity: sha512-JWohr3i9m2cVpBumQFv2akMEnFEPVOh+9L2xIBJhJ0zOaci2ZXuKJj0tgMKQCBZAKA09H049IR4HVS/43Qb19A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-config/-/jest-config-29.6.4.tgz} - id: registry.npmmirror.com/jest-config/29.6.4 - name: jest-config - version: 29.6.4 - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - '@types/node': '*' - ts-node: '>=9.0.0' - peerDependenciesMeta: - '@types/node': - optional: true - ts-node: - optional: true - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.17 - '@jest/test-sequencer': registry.npmmirror.com/@jest/test-sequencer@29.6.4 - '@jest/types': registry.npmmirror.com/@jest/types@29.6.3 - '@types/node': registry.npmmirror.com/@types/node@18.15.11 - babel-jest: registry.npmmirror.com/babel-jest@29.6.4(@babel/core@7.22.17) - chalk: registry.npmmirror.com/chalk@4.1.2 - ci-info: registry.npmmirror.com/ci-info@3.8.0 - deepmerge: registry.npmmirror.com/deepmerge@4.3.1 - glob: registry.npmmirror.com/glob@7.2.3 - graceful-fs: registry.npmmirror.com/graceful-fs@4.2.11 - jest-circus: registry.npmmirror.com/jest-circus@29.6.4 - jest-environment-node: registry.npmmirror.com/jest-environment-node@29.6.4 - jest-get-type: registry.npmmirror.com/jest-get-type@29.6.3 - jest-regex-util: registry.npmmirror.com/jest-regex-util@29.6.3 - jest-resolve: registry.npmmirror.com/jest-resolve@29.6.4 - jest-runner: registry.npmmirror.com/jest-runner@29.6.4 - jest-util: registry.npmmirror.com/jest-util@29.6.3 - jest-validate: registry.npmmirror.com/jest-validate@29.6.3 - micromatch: registry.npmmirror.com/micromatch@4.0.5 - parse-json: registry.npmmirror.com/parse-json@5.2.0 - pretty-format: registry.npmmirror.com/pretty-format@29.6.3 - slash: registry.npmmirror.com/slash@3.0.0 - strip-json-comments: registry.npmmirror.com/strip-json-comments@3.1.1 - ts-node: registry.npmmirror.com/ts-node@10.0.0(@types/node@18.15.11)(typescript@4.7.4) - transitivePeerDependencies: - - babel-plugin-macros - - supports-color - dev: true - - registry.npmmirror.com/jest-diff@29.6.4: - resolution: {integrity: sha512-9F48UxR9e4XOEZvoUXEHSWY4qC4zERJaOfrbBg9JpbJOO43R1vN76REt/aMGZoY6GD5g84nnJiBIVlscegefpw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-diff/-/jest-diff-29.6.4.tgz} - name: jest-diff - version: 29.6.4 - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - chalk: registry.npmmirror.com/chalk@4.1.2 - diff-sequences: registry.npmmirror.com/diff-sequences@29.6.3 - jest-get-type: registry.npmmirror.com/jest-get-type@29.6.3 - pretty-format: registry.npmmirror.com/pretty-format@29.6.3 - dev: true - - registry.npmmirror.com/jest-docblock@29.6.3: - resolution: {integrity: sha512-2+H+GOTQBEm2+qFSQ7Ma+BvyV+waiIFxmZF5LdpBsAEjWX8QYjSCa4FrkIYtbfXUJJJnFCYrOtt6TZ+IAiTjBQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-docblock/-/jest-docblock-29.6.3.tgz} - name: jest-docblock - version: 29.6.3 - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - detect-newline: registry.npmmirror.com/detect-newline@3.1.0 - dev: true - - registry.npmmirror.com/jest-each@29.6.3: - resolution: {integrity: sha512-KoXfJ42k8cqbkfshW7sSHcdfnv5agDdHCPA87ZBdmHP+zJstTJc0ttQaJ/x7zK6noAL76hOuTIJ6ZkQRS5dcyg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-each/-/jest-each-29.6.3.tgz} - name: jest-each - version: 29.6.3 - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jest/types': registry.npmmirror.com/@jest/types@29.6.3 - chalk: registry.npmmirror.com/chalk@4.1.2 - jest-get-type: registry.npmmirror.com/jest-get-type@29.6.3 - jest-util: registry.npmmirror.com/jest-util@29.6.3 - pretty-format: registry.npmmirror.com/pretty-format@29.6.3 - dev: true - - registry.npmmirror.com/jest-environment-node@29.6.4: - resolution: {integrity: sha512-i7SbpH2dEIFGNmxGCpSc2w9cA4qVD+wfvg2ZnfQ7XVrKL0NA5uDVBIiGH8SR4F0dKEv/0qI5r+aDomDf04DpEQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-environment-node/-/jest-environment-node-29.6.4.tgz} - name: jest-environment-node - version: 29.6.4 - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jest/environment': registry.npmmirror.com/@jest/environment@29.6.4 - '@jest/fake-timers': registry.npmmirror.com/@jest/fake-timers@29.6.4 - '@jest/types': registry.npmmirror.com/@jest/types@29.6.3 - '@types/node': registry.npmmirror.com/@types/node@18.15.11 - jest-mock: registry.npmmirror.com/jest-mock@29.6.3 - jest-util: registry.npmmirror.com/jest-util@29.6.3 - dev: true - - registry.npmmirror.com/jest-get-type@29.6.3: - resolution: {integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-get-type/-/jest-get-type-29.6.3.tgz} - name: jest-get-type - version: 29.6.3 - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dev: true - - registry.npmmirror.com/jest-haste-map@29.6.4: - resolution: {integrity: sha512-12Ad+VNTDHxKf7k+M65sviyynRoZYuL1/GTuhEVb8RYsNSNln71nANRb/faSyWvx0j+gHcivChXHIoMJrGYjog==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-haste-map/-/jest-haste-map-29.6.4.tgz} - name: jest-haste-map - version: 29.6.4 - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jest/types': registry.npmmirror.com/@jest/types@29.6.3 - '@types/graceful-fs': registry.npmmirror.com/@types/graceful-fs@4.1.6 - '@types/node': registry.npmmirror.com/@types/node@18.15.11 - anymatch: registry.npmmirror.com/anymatch@3.1.3 - fb-watchman: registry.npmmirror.com/fb-watchman@2.0.2 - graceful-fs: registry.npmmirror.com/graceful-fs@4.2.11 - jest-regex-util: registry.npmmirror.com/jest-regex-util@29.6.3 - jest-util: registry.npmmirror.com/jest-util@29.6.3 - jest-worker: registry.npmmirror.com/jest-worker@29.6.4 - micromatch: registry.npmmirror.com/micromatch@4.0.5 - walker: registry.npmmirror.com/walker@1.0.8 - optionalDependencies: - fsevents: registry.npmmirror.com/fsevents@2.3.3 - dev: true - - registry.npmmirror.com/jest-leak-detector@29.6.3: - resolution: {integrity: sha512-0kfbESIHXYdhAdpLsW7xdwmYhLf1BRu4AA118/OxFm0Ho1b2RcTmO4oF6aAMaxpxdxnJ3zve2rgwzNBD4Zbm7Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-leak-detector/-/jest-leak-detector-29.6.3.tgz} - name: jest-leak-detector - version: 29.6.3 - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - jest-get-type: registry.npmmirror.com/jest-get-type@29.6.3 - pretty-format: registry.npmmirror.com/pretty-format@29.6.3 - dev: true - - registry.npmmirror.com/jest-matcher-utils@29.6.4: - resolution: {integrity: sha512-KSzwyzGvK4HcfnserYqJHYi7sZVqdREJ9DMPAKVbS98JsIAvumihaNUbjrWw0St7p9IY7A9UskCW5MYlGmBQFQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-matcher-utils/-/jest-matcher-utils-29.6.4.tgz} - name: jest-matcher-utils - version: 29.6.4 - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - chalk: registry.npmmirror.com/chalk@4.1.2 - jest-diff: registry.npmmirror.com/jest-diff@29.6.4 - jest-get-type: registry.npmmirror.com/jest-get-type@29.6.3 - pretty-format: registry.npmmirror.com/pretty-format@29.6.3 - dev: true - - registry.npmmirror.com/jest-message-util@29.6.3: - resolution: {integrity: sha512-FtzaEEHzjDpQp51HX4UMkPZjy46ati4T5pEMyM6Ik48ztu4T9LQplZ6OsimHx7EuM9dfEh5HJa6D3trEftu3dA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-message-util/-/jest-message-util-29.6.3.tgz} - name: jest-message-util - version: 29.6.3 - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@babel/code-frame': registry.npmmirror.com/@babel/code-frame@7.22.13 - '@jest/types': registry.npmmirror.com/@jest/types@29.6.3 - '@types/stack-utils': registry.npmmirror.com/@types/stack-utils@2.0.1 - chalk: registry.npmmirror.com/chalk@4.1.2 - graceful-fs: registry.npmmirror.com/graceful-fs@4.2.11 - micromatch: registry.npmmirror.com/micromatch@4.0.5 - pretty-format: registry.npmmirror.com/pretty-format@29.6.3 - slash: registry.npmmirror.com/slash@3.0.0 - stack-utils: registry.npmmirror.com/stack-utils@2.0.6 - dev: true - - registry.npmmirror.com/jest-mock@29.6.3: - resolution: {integrity: sha512-Z7Gs/mOyTSR4yPsaZ72a/MtuK6RnC3JYqWONe48oLaoEcYwEDxqvbXz85G4SJrm2Z5Ar9zp6MiHF4AlFlRM4Pg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-mock/-/jest-mock-29.6.3.tgz} - name: jest-mock - version: 29.6.3 - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jest/types': registry.npmmirror.com/@jest/types@29.6.3 - '@types/node': registry.npmmirror.com/@types/node@18.15.11 - jest-util: registry.npmmirror.com/jest-util@29.6.3 - dev: true - - registry.npmmirror.com/jest-pnp-resolver@1.2.3(jest-resolve@29.6.4): - resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz} - id: registry.npmmirror.com/jest-pnp-resolver/1.2.3 - name: jest-pnp-resolver - version: 1.2.3 - engines: {node: '>=6'} - peerDependencies: - jest-resolve: '*' - peerDependenciesMeta: - jest-resolve: - optional: true - dependencies: - jest-resolve: registry.npmmirror.com/jest-resolve@29.6.4 - dev: true - - registry.npmmirror.com/jest-regex-util@29.6.3: - resolution: {integrity: sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-regex-util/-/jest-regex-util-29.6.3.tgz} - name: jest-regex-util - version: 29.6.3 - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dev: true - - registry.npmmirror.com/jest-resolve-dependencies@29.6.4: - resolution: {integrity: sha512-7+6eAmr1ZBF3vOAJVsfLj1QdqeXG+WYhidfLHBRZqGN24MFRIiKG20ItpLw2qRAsW/D2ZUUmCNf6irUr/v6KHA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-resolve-dependencies/-/jest-resolve-dependencies-29.6.4.tgz} - name: jest-resolve-dependencies - version: 29.6.4 - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - jest-regex-util: registry.npmmirror.com/jest-regex-util@29.6.3 - jest-snapshot: registry.npmmirror.com/jest-snapshot@29.6.4 - transitivePeerDependencies: - - supports-color - dev: true - - registry.npmmirror.com/jest-resolve@29.6.4: - resolution: {integrity: sha512-fPRq+0vcxsuGlG0O3gyoqGTAxasagOxEuyoxHeyxaZbc9QNek0AmJWSkhjlMG+mTsj+8knc/mWb3fXlRNVih7Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-resolve/-/jest-resolve-29.6.4.tgz} - name: jest-resolve - version: 29.6.4 - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - chalk: registry.npmmirror.com/chalk@4.1.2 - graceful-fs: registry.npmmirror.com/graceful-fs@4.2.11 - jest-haste-map: registry.npmmirror.com/jest-haste-map@29.6.4 - jest-pnp-resolver: registry.npmmirror.com/jest-pnp-resolver@1.2.3(jest-resolve@29.6.4) - jest-util: registry.npmmirror.com/jest-util@29.6.3 - jest-validate: registry.npmmirror.com/jest-validate@29.6.3 - resolve: registry.npmmirror.com/resolve@1.22.4 - resolve.exports: registry.npmmirror.com/resolve.exports@2.0.2 - slash: registry.npmmirror.com/slash@3.0.0 - dev: true - - registry.npmmirror.com/jest-runner@29.6.4: - resolution: {integrity: sha512-SDaLrMmtVlQYDuG0iSPYLycG8P9jLI+fRm8AF/xPKhYDB2g6xDWjXBrR5M8gEWsK6KVFlebpZ4QsrxdyIX1Jaw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-runner/-/jest-runner-29.6.4.tgz} - name: jest-runner - version: 29.6.4 - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jest/console': registry.npmmirror.com/@jest/console@29.6.4 - '@jest/environment': registry.npmmirror.com/@jest/environment@29.6.4 - '@jest/test-result': registry.npmmirror.com/@jest/test-result@29.6.4 - '@jest/transform': registry.npmmirror.com/@jest/transform@29.6.4 - '@jest/types': registry.npmmirror.com/@jest/types@29.6.3 - '@types/node': registry.npmmirror.com/@types/node@18.15.11 - chalk: registry.npmmirror.com/chalk@4.1.2 - emittery: registry.npmmirror.com/emittery@0.13.1 - graceful-fs: registry.npmmirror.com/graceful-fs@4.2.11 - jest-docblock: registry.npmmirror.com/jest-docblock@29.6.3 - jest-environment-node: registry.npmmirror.com/jest-environment-node@29.6.4 - jest-haste-map: registry.npmmirror.com/jest-haste-map@29.6.4 - jest-leak-detector: registry.npmmirror.com/jest-leak-detector@29.6.3 - jest-message-util: registry.npmmirror.com/jest-message-util@29.6.3 - jest-resolve: registry.npmmirror.com/jest-resolve@29.6.4 - jest-runtime: registry.npmmirror.com/jest-runtime@29.6.4 - jest-util: registry.npmmirror.com/jest-util@29.6.3 - jest-watcher: registry.npmmirror.com/jest-watcher@29.6.4 - jest-worker: registry.npmmirror.com/jest-worker@29.6.4 - p-limit: registry.npmmirror.com/p-limit@3.1.0 - source-map-support: registry.npmmirror.com/source-map-support@0.5.13 - transitivePeerDependencies: - - supports-color - dev: true - - registry.npmmirror.com/jest-runtime@29.6.4: - resolution: {integrity: sha512-s/QxMBLvmwLdchKEjcLfwzP7h+jsHvNEtxGP5P+Fl1FMaJX2jMiIqe4rJw4tFprzCwuSvVUo9bn0uj4gNRXsbA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-runtime/-/jest-runtime-29.6.4.tgz} - name: jest-runtime - version: 29.6.4 - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jest/environment': registry.npmmirror.com/@jest/environment@29.6.4 - '@jest/fake-timers': registry.npmmirror.com/@jest/fake-timers@29.6.4 - '@jest/globals': registry.npmmirror.com/@jest/globals@29.6.4 - '@jest/source-map': registry.npmmirror.com/@jest/source-map@29.6.3 - '@jest/test-result': registry.npmmirror.com/@jest/test-result@29.6.4 - '@jest/transform': registry.npmmirror.com/@jest/transform@29.6.4 - '@jest/types': registry.npmmirror.com/@jest/types@29.6.3 - '@types/node': registry.npmmirror.com/@types/node@18.15.11 - chalk: registry.npmmirror.com/chalk@4.1.2 - cjs-module-lexer: registry.npmmirror.com/cjs-module-lexer@1.2.3 - collect-v8-coverage: registry.npmmirror.com/collect-v8-coverage@1.0.2 - glob: registry.npmmirror.com/glob@7.2.3 - graceful-fs: registry.npmmirror.com/graceful-fs@4.2.11 - jest-haste-map: registry.npmmirror.com/jest-haste-map@29.6.4 - jest-message-util: registry.npmmirror.com/jest-message-util@29.6.3 - jest-mock: registry.npmmirror.com/jest-mock@29.6.3 - jest-regex-util: registry.npmmirror.com/jest-regex-util@29.6.3 - jest-resolve: registry.npmmirror.com/jest-resolve@29.6.4 - jest-snapshot: registry.npmmirror.com/jest-snapshot@29.6.4 - jest-util: registry.npmmirror.com/jest-util@29.6.3 - slash: registry.npmmirror.com/slash@3.0.0 - strip-bom: registry.npmmirror.com/strip-bom@4.0.0 - transitivePeerDependencies: - - supports-color - dev: true - - registry.npmmirror.com/jest-snapshot@29.6.4: - resolution: {integrity: sha512-VC1N8ED7+4uboUKGIDsbvNAZb6LakgIPgAF4RSpF13dN6YaMokfRqO+BaqK4zIh6X3JffgwbzuGqDEjHm/MrvA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-snapshot/-/jest-snapshot-29.6.4.tgz} - name: jest-snapshot - version: 29.6.4 - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.17 - '@babel/generator': registry.npmmirror.com/@babel/generator@7.22.15 - '@babel/plugin-syntax-jsx': registry.npmmirror.com/@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.22.17) - '@babel/plugin-syntax-typescript': registry.npmmirror.com/@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.22.17) - '@babel/types': registry.npmmirror.com/@babel/types@7.22.17 - '@jest/expect-utils': registry.npmmirror.com/@jest/expect-utils@29.6.4 - '@jest/transform': registry.npmmirror.com/@jest/transform@29.6.4 - '@jest/types': registry.npmmirror.com/@jest/types@29.6.3 - babel-preset-current-node-syntax: registry.npmmirror.com/babel-preset-current-node-syntax@1.0.1(@babel/core@7.22.17) - chalk: registry.npmmirror.com/chalk@4.1.2 - expect: registry.npmmirror.com/expect@29.6.4 - graceful-fs: registry.npmmirror.com/graceful-fs@4.2.11 - jest-diff: registry.npmmirror.com/jest-diff@29.6.4 - jest-get-type: registry.npmmirror.com/jest-get-type@29.6.3 - jest-matcher-utils: registry.npmmirror.com/jest-matcher-utils@29.6.4 - jest-message-util: registry.npmmirror.com/jest-message-util@29.6.3 - jest-util: registry.npmmirror.com/jest-util@29.6.3 - natural-compare: registry.npmmirror.com/natural-compare@1.4.0 - pretty-format: registry.npmmirror.com/pretty-format@29.6.3 - semver: registry.npmmirror.com/semver@7.5.4 - transitivePeerDependencies: - - supports-color - dev: true - - registry.npmmirror.com/jest-util@29.6.3: - resolution: {integrity: sha512-QUjna/xSy4B32fzcKTSz1w7YYzgiHrjjJjevdRf61HYk998R5vVMMNmrHESYZVDS5DSWs+1srPLPKxXPkeSDOA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-util/-/jest-util-29.6.3.tgz} - name: jest-util - version: 29.6.3 - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jest/types': registry.npmmirror.com/@jest/types@29.6.3 - '@types/node': registry.npmmirror.com/@types/node@18.15.11 - chalk: registry.npmmirror.com/chalk@4.1.2 - ci-info: registry.npmmirror.com/ci-info@3.8.0 - graceful-fs: registry.npmmirror.com/graceful-fs@4.2.11 - picomatch: registry.npmmirror.com/picomatch@2.3.1 - dev: true - - registry.npmmirror.com/jest-validate@29.6.3: - resolution: {integrity: sha512-e7KWZcAIX+2W1o3cHfnqpGajdCs1jSM3DkXjGeLSNmCazv1EeI1ggTeK5wdZhF+7N+g44JI2Od3veojoaumlfg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-validate/-/jest-validate-29.6.3.tgz} - name: jest-validate - version: 29.6.3 - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jest/types': registry.npmmirror.com/@jest/types@29.6.3 - camelcase: registry.npmmirror.com/camelcase@6.3.0 - chalk: registry.npmmirror.com/chalk@4.1.2 - jest-get-type: registry.npmmirror.com/jest-get-type@29.6.3 - leven: registry.npmmirror.com/leven@3.1.0 - pretty-format: registry.npmmirror.com/pretty-format@29.6.3 - dev: true - - registry.npmmirror.com/jest-watcher@29.6.4: - resolution: {integrity: sha512-oqUWvx6+On04ShsT00Ir9T4/FvBeEh2M9PTubgITPxDa739p4hoQweWPRGyYeaojgT0xTpZKF0Y/rSY1UgMxvQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-watcher/-/jest-watcher-29.6.4.tgz} - name: jest-watcher - version: 29.6.4 - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jest/test-result': registry.npmmirror.com/@jest/test-result@29.6.4 - '@jest/types': registry.npmmirror.com/@jest/types@29.6.3 - '@types/node': registry.npmmirror.com/@types/node@18.15.11 - ansi-escapes: registry.npmmirror.com/ansi-escapes@4.3.2 - chalk: registry.npmmirror.com/chalk@4.1.2 - emittery: registry.npmmirror.com/emittery@0.13.1 - jest-util: registry.npmmirror.com/jest-util@29.6.3 - string-length: registry.npmmirror.com/string-length@4.0.2 - dev: true - - registry.npmmirror.com/jest-worker@27.5.1: - resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-worker/-/jest-worker-27.5.1.tgz} - name: jest-worker - version: 27.5.1 - engines: {node: '>= 10.13.0'} - dependencies: - '@types/node': registry.npmmirror.com/@types/node@18.15.11 - merge-stream: registry.npmmirror.com/merge-stream@2.0.0 - supports-color: registry.npmmirror.com/supports-color@8.1.1 - dev: true - - registry.npmmirror.com/jest-worker@29.6.4: - resolution: {integrity: sha512-6dpvFV4WjcWbDVGgHTWo/aupl8/LbBx2NSKfiwqf79xC/yeJjKHT1+StcKy/2KTmW16hE68ccKVOtXf+WZGz7Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-worker/-/jest-worker-29.6.4.tgz} - name: jest-worker - version: 29.6.4 - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@types/node': registry.npmmirror.com/@types/node@18.15.11 - jest-util: registry.npmmirror.com/jest-util@29.6.3 - merge-stream: registry.npmmirror.com/merge-stream@2.0.0 - supports-color: registry.npmmirror.com/supports-color@8.1.1 - dev: true - - registry.npmmirror.com/jest@29.5.0(@types/node@18.15.11)(ts-node@10.0.0): - resolution: {integrity: sha512-juMg3he2uru1QoXX078zTa7pO85QyB9xajZc6bU+d9yEGwrKX6+vGmJQ3UdVZsvTEUARIdObzH68QItim6OSSQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest/-/jest-29.5.0.tgz} - id: registry.npmmirror.com/jest/29.5.0 - name: jest - version: 29.5.0 - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - hasBin: true - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true - dependencies: - '@jest/core': registry.npmmirror.com/@jest/core@29.6.4(ts-node@10.0.0) - '@jest/types': registry.npmmirror.com/@jest/types@29.6.3 - import-local: registry.npmmirror.com/import-local@3.1.0 - jest-cli: registry.npmmirror.com/jest-cli@29.6.4(@types/node@18.15.11)(ts-node@10.0.0) - transitivePeerDependencies: - - '@types/node' - - babel-plugin-macros - - supports-color - - ts-node - 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} - name: js-tokens - version: 4.0.0 - dev: true - - registry.npmmirror.com/js-yaml@3.14.1: - resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/js-yaml/-/js-yaml-3.14.1.tgz} - name: js-yaml - version: 3.14.1 - hasBin: true - dependencies: - argparse: registry.npmmirror.com/argparse@1.0.10 - esprima: registry.npmmirror.com/esprima@4.0.1 - dev: true - - 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/jsbn@0.1.1: - resolution: {integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jsbn/-/jsbn-0.1.1.tgz} - name: jsbn - version: 0.1.1 - dev: false - - 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} - name: jsesc - version: 2.5.2 - engines: {node: '>=4'} - hasBin: true - dev: true - - registry.npmmirror.com/json-buffer@3.0.1: - resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/json-buffer/-/json-buffer-3.0.1.tgz} - name: json-buffer - version: 3.0.1 - dev: true - - registry.npmmirror.com/json-parse-even-better-errors@2.3.1: - resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz} - name: json-parse-even-better-errors - version: 2.3.1 - dev: 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 - - registry.npmmirror.com/json-schema-traverse@1.0.0: - resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz} - name: json-schema-traverse - version: 1.0.0 - - registry.npmmirror.com/json-schema-typed@7.0.3: - resolution: {integrity: sha512-7DE8mpG+/fVw+dTpjbxnx47TaMnDfOI1jwft9g1VybltZCduyRQPJPvc+zzKY9WPHxhPWczyFuYa6I8Mw4iU5A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/json-schema-typed/-/json-schema-typed-7.0.3.tgz} - name: json-schema-typed - version: 7.0.3 - dev: false - - registry.npmmirror.com/json-schema@0.4.0: - resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/json-schema/-/json-schema-0.4.0.tgz} - name: json-schema - version: 0.4.0 - dev: false - - 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/json-stringify-safe@5.0.1: - resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz} - name: json-stringify-safe - version: 5.0.1 - dev: false - - registry.npmmirror.com/json5@1.0.2: - resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/json5/-/json5-1.0.2.tgz} - name: json5 - version: 1.0.2 - hasBin: true - dependencies: - minimist: registry.npmmirror.com/minimist@1.2.8 - dev: true - - registry.npmmirror.com/json5@2.2.3: - resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/json5/-/json5-2.2.3.tgz} - name: json5 - version: 2.2.3 - engines: {node: '>=6'} - hasBin: true - dev: 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} - name: jsonc-parser - version: 3.0.0 - dev: true - - 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} - name: jsonfile - version: 6.1.0 - dependencies: - universalify: registry.npmmirror.com/universalify@2.0.0 - optionalDependencies: - graceful-fs: registry.npmmirror.com/graceful-fs@4.2.11 - dev: true - - registry.npmmirror.com/jsonwebtoken@9.0.0: - resolution: {integrity: sha512-tuGfYXxkQGDPnLJ7SibiQgVgeDgfbPq2k2ICcbgqW8WxWLBAxKQM/ZCu/IT8SOSwmaYl4dpTFCW5xZv7YbbWUw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jsonwebtoken/-/jsonwebtoken-9.0.0.tgz} - name: jsonwebtoken - version: 9.0.0 - engines: {node: '>=12', npm: '>=6'} - dependencies: - jws: registry.npmmirror.com/jws@3.2.2 - lodash: registry.npmmirror.com/lodash@4.17.21 - ms: registry.npmmirror.com/ms@2.1.3 - semver: registry.npmmirror.com/semver@7.5.4 - dev: false - - registry.npmmirror.com/jsprim@1.4.2: - resolution: {integrity: sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jsprim/-/jsprim-1.4.2.tgz} - name: jsprim - version: 1.4.2 - engines: {node: '>=0.6.0'} - dependencies: - assert-plus: registry.npmmirror.com/assert-plus@1.0.0 - extsprintf: registry.npmmirror.com/extsprintf@1.3.0 - json-schema: registry.npmmirror.com/json-schema@0.4.0 - verror: registry.npmmirror.com/verror@1.10.0 - dev: false - - registry.npmmirror.com/jwa@1.4.1: - resolution: {integrity: sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jwa/-/jwa-1.4.1.tgz} - name: jwa - version: 1.4.1 - dependencies: - buffer-equal-constant-time: registry.npmmirror.com/buffer-equal-constant-time@1.0.1 - ecdsa-sig-formatter: registry.npmmirror.com/ecdsa-sig-formatter@1.0.11 - safe-buffer: registry.npmmirror.com/safe-buffer@5.2.1 - dev: false - - registry.npmmirror.com/jws@3.2.2: - resolution: {integrity: sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jws/-/jws-3.2.2.tgz} - name: jws - version: 3.2.2 - dependencies: - jwa: registry.npmmirror.com/jwa@1.4.1 - safe-buffer: registry.npmmirror.com/safe-buffer@5.2.1 - dev: false - - registry.npmmirror.com/keyv@4.5.3: - resolution: {integrity: sha512-QCiSav9WaX1PgETJ+SpNnx2PRRapJ/oRSXM4VO5OGYGSjrxbKPVFVhB3l2OCbLCk329N8qyAtsJjSjvVBWzEug==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/keyv/-/keyv-4.5.3.tgz} - name: keyv - version: 4.5.3 - dependencies: - json-buffer: registry.npmmirror.com/json-buffer@3.0.1 - dev: true - - registry.npmmirror.com/kleur@3.0.3: - resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/kleur/-/kleur-3.0.3.tgz} - name: kleur - version: 3.0.3 - engines: {node: '>=6'} - dev: true - - registry.npmmirror.com/leven@3.1.0: - resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/leven/-/leven-3.1.0.tgz} - name: leven - version: 3.1.0 - engines: {node: '>=6'} - 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/lines-and-columns@1.2.4: - resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz} - name: lines-and-columns - version: 1.2.4 - dev: true - - registry.npmmirror.com/loader-runner@4.3.0: - resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/loader-runner/-/loader-runner-4.3.0.tgz} - name: loader-runner - version: 4.3.0 - engines: {node: '>=6.11.5'} - dev: true - - registry.npmmirror.com/locate-path@3.0.0: - resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/locate-path/-/locate-path-3.0.0.tgz} - name: locate-path - version: 3.0.0 - engines: {node: '>=6'} - dependencies: - p-locate: registry.npmmirror.com/p-locate@3.0.0 - path-exists: registry.npmmirror.com/path-exists@3.0.0 - dev: false - - registry.npmmirror.com/locate-path@5.0.0: - resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/locate-path/-/locate-path-5.0.0.tgz} - name: locate-path - version: 5.0.0 - engines: {node: '>=8'} - dependencies: - p-locate: registry.npmmirror.com/p-locate@4.1.0 - dev: true - - registry.npmmirror.com/lodash.clonedeep@4.5.0: - resolution: {integrity: sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz} - name: lodash.clonedeep - version: 4.5.0 - - registry.npmmirror.com/lodash.defaults@4.2.0: - resolution: {integrity: sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/lodash.defaults/-/lodash.defaults-4.2.0.tgz} - name: lodash.defaults - version: 4.2.0 - dev: false - - registry.npmmirror.com/lodash.isarguments@3.1.0: - resolution: {integrity: sha512-chi4NHZlZqZD18a0imDHnZPrDeBbTtVN7GXMwuGdRH9qotxAjYs3aVLKc7zNOG9eddR5Ksd8rvFEBc9SsggPpg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz} - name: lodash.isarguments - version: 3.1.0 - dev: false - - registry.npmmirror.com/lodash.memoize@4.1.2: - resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz} - name: lodash.memoize - version: 4.1.2 - dev: true - - 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} - name: lodash - version: 4.17.21 - - registry.npmmirror.com/log-symbols@4.1.0: - resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/log-symbols/-/log-symbols-4.1.0.tgz} - name: log-symbols - version: 4.1.0 - engines: {node: '>=10'} - dependencies: - chalk: registry.npmmirror.com/chalk@4.1.2 - is-unicode-supported: registry.npmmirror.com/is-unicode-supported@0.1.0 - dev: true - - registry.npmmirror.com/lru-cache@5.1.1: - resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/lru-cache/-/lru-cache-5.1.1.tgz} - name: lru-cache - version: 5.1.1 - dependencies: - yallist: registry.npmmirror.com/yallist@3.1.1 - 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 - - registry.npmmirror.com/lru-cache@7.18.3: - resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/lru-cache/-/lru-cache-7.18.3.tgz} - name: lru-cache - version: 7.18.3 - engines: {node: '>=12'} - - registry.npmmirror.com/luxon@3.3.0: - resolution: {integrity: sha512-An0UCfG/rSiqtAIiBPO0Y9/zAnHUZxAMiCpTd5h2smgsj7GGmcenvrvww2cqNA8/4A5ZrD1gJpHN2mIHZQF+Mg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/luxon/-/luxon-3.3.0.tgz} - name: luxon - version: 3.3.0 - engines: {node: '>=12'} - dev: false - - registry.npmmirror.com/macos-release@2.5.1: - resolution: {integrity: sha512-DXqXhEM7gW59OjZO8NIjBCz9AQ1BEMrfiOAl4AYByHCtVHRF4KoGNO8mqQeM8lRCtQe/UnJ4imO/d2HdkKsd+A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/macos-release/-/macos-release-2.5.1.tgz} - name: macos-release - version: 2.5.1 - engines: {node: '>=6'} - dev: true - - registry.npmmirror.com/magic-string@0.26.1: - resolution: {integrity: sha512-ndThHmvgtieXe8J/VGPjG+Apu7v7ItcD5mhEIvOscWjPF/ccOiLxHaSuCAS2G+3x4GKsAbT8u7zdyamupui8Tg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/magic-string/-/magic-string-0.26.1.tgz} - name: magic-string - version: 0.26.1 - engines: {node: '>=12'} - dependencies: - sourcemap-codec: registry.npmmirror.com/sourcemap-codec@1.4.8 - dev: true - - registry.npmmirror.com/make-dir@3.1.0: - resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/make-dir/-/make-dir-3.1.0.tgz} - name: make-dir - version: 3.1.0 - engines: {node: '>=8'} - dependencies: - semver: registry.npmmirror.com/semver@6.3.1 - dev: false - - registry.npmmirror.com/make-dir@4.0.0: - resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/make-dir/-/make-dir-4.0.0.tgz} - name: make-dir - version: 4.0.0 - engines: {node: '>=10'} - dependencies: - semver: registry.npmmirror.com/semver@7.5.4 - dev: true - - registry.npmmirror.com/make-error@1.3.6: - resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/make-error/-/make-error-1.3.6.tgz} - name: make-error - version: 1.3.6 - dev: true - - registry.npmmirror.com/makeerror@1.0.12: - resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/makeerror/-/makeerror-1.0.12.tgz} - name: makeerror - version: 1.0.12 - dependencies: - tmpl: registry.npmmirror.com/tmpl@1.0.5 - dev: true - - 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} - name: media-typer - version: 0.3.0 - engines: {node: '>= 0.6'} - - registry.npmmirror.com/memfs@3.5.3: - resolution: {integrity: sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/memfs/-/memfs-3.5.3.tgz} - name: memfs - version: 3.5.3 - engines: {node: '>= 4.0.0'} - dependencies: - fs-monkey: registry.npmmirror.com/fs-monkey@1.0.4 - 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} - name: merge-descriptors - version: 1.0.1 - - 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} - name: merge-stream - version: 2.0.0 - dev: true - - 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} - name: merge2 - version: 1.4.1 - engines: {node: '>= 8'} - dev: true - - 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} - name: methods - version: 1.1.2 - engines: {node: '>= 0.6'} - - 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} - name: micromatch - version: 4.0.5 - engines: {node: '>=8.6'} - dependencies: - braces: registry.npmmirror.com/braces@3.0.2 - picomatch: registry.npmmirror.com/picomatch@2.3.1 - dev: true - - 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} - name: mime-db - version: 1.52.0 - engines: {node: '>= 0.6'} - - 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} - name: mime-types - version: 2.1.35 - engines: {node: '>= 0.6'} - dependencies: - mime-db: registry.npmmirror.com/mime-db@1.52.0 - - 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} - name: mime - version: 1.6.0 - engines: {node: '>=4'} - hasBin: true - - registry.npmmirror.com/mime@2.6.0: - resolution: {integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/mime/-/mime-2.6.0.tgz} - name: mime - version: 2.6.0 - engines: {node: '>=4.0.0'} - hasBin: true - dev: 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} - name: mimic-fn - version: 2.1.0 - engines: {node: '>=6'} - - registry.npmmirror.com/mimic-fn@3.1.0: - resolution: {integrity: sha512-Ysbi9uYW9hFyfrThdDEQuykN4Ey6BuwPD2kpI5ES/nFTDn/98yxYNLZJcgUAKPT/mcrLLKaGzJR9YVxJrIdASQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/mimic-fn/-/mimic-fn-3.1.0.tgz} - name: mimic-fn - version: 3.1.0 - engines: {node: '>=8'} - dev: false - - 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/minimist@1.2.8: - resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/minimist/-/minimist-1.2.8.tgz} - name: minimist - version: 1.2.8 - - registry.npmmirror.com/mkdirp@0.5.6: - resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/mkdirp/-/mkdirp-0.5.6.tgz} - name: mkdirp - version: 0.5.6 - hasBin: true - dependencies: - minimist: registry.npmmirror.com/minimist@1.2.8 - - 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} - name: ms - version: 2.0.0 - - 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} - 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} - name: ms - version: 2.1.3 - - registry.npmmirror.com/multer@1.4.4-lts.1: - resolution: {integrity: sha512-WeSGziVj6+Z2/MwQo3GvqzgR+9Uc+qt8SwHKh3gvNPiISKfsMfG4SvCOFYlxxgkXt7yIV2i1yczehm0EOKIxIg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/multer/-/multer-1.4.4-lts.1.tgz} - name: multer - version: 1.4.4-lts.1 - engines: {node: '>= 6.0.0'} - dependencies: - append-field: registry.npmmirror.com/append-field@1.0.0 - busboy: registry.npmmirror.com/busboy@1.6.0 - concat-stream: registry.npmmirror.com/concat-stream@1.6.2 - mkdirp: registry.npmmirror.com/mkdirp@0.5.6 - object-assign: registry.npmmirror.com/object-assign@4.1.1 - type-is: registry.npmmirror.com/type-is@1.6.18 - xtend: registry.npmmirror.com/xtend@4.0.2 - - registry.npmmirror.com/multer@1.4.5-lts.1: - resolution: {integrity: sha512-ywPWvcDMeH+z9gQq5qYHCCy+ethsk4goepZ45GLD63fOu0YcNecQxi64nDs3qluZB+murG3/D4dJ7+dGctcCQQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/multer/-/multer-1.4.5-lts.1.tgz} - name: multer - version: 1.4.5-lts.1 - engines: {node: '>= 6.0.0'} - dependencies: - append-field: registry.npmmirror.com/append-field@1.0.0 - busboy: registry.npmmirror.com/busboy@1.6.0 - concat-stream: registry.npmmirror.com/concat-stream@1.6.2 - mkdirp: registry.npmmirror.com/mkdirp@0.5.6 - object-assign: registry.npmmirror.com/object-assign@4.1.1 - type-is: registry.npmmirror.com/type-is@1.6.18 - xtend: registry.npmmirror.com/xtend@4.0.2 - dev: false - - registry.npmmirror.com/mute-stream@0.0.8: - resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/mute-stream/-/mute-stream-0.0.8.tgz} - name: mute-stream - version: 0.0.8 - dev: 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} - name: negotiator - version: 0.6.3 - engines: {node: '>= 0.6'} - - registry.npmmirror.com/neo-async@2.6.2: - resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/neo-async/-/neo-async-2.6.2.tgz} - name: neo-async - version: 2.6.2 - dev: true - - registry.npmmirror.com/node-emoji@1.11.0: - resolution: {integrity: sha512-wo2DpQkQp7Sjm2A0cq+sN7EHKO6Sl0ctXeBdFZrL9T9+UywORbufTcTZxom8YqpLQt/FqNMUkOpkZrJVYSKD3A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/node-emoji/-/node-emoji-1.11.0.tgz} - name: node-emoji - version: 1.11.0 - dependencies: - lodash: registry.npmmirror.com/lodash@4.17.21 - dev: true - - registry.npmmirror.com/node-fetch@2.7.0: - resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/node-fetch/-/node-fetch-2.7.0.tgz} - name: node-fetch - version: 2.7.0 - engines: {node: 4.x || >=6.0.0} - peerDependencies: - encoding: ^0.1.0 - peerDependenciesMeta: - encoding: - optional: true - dependencies: - whatwg-url: registry.npmmirror.com/whatwg-url@5.0.0 - - registry.npmmirror.com/node-int64@0.4.0: - resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/node-int64/-/node-int64-0.4.0.tgz} - name: node-int64 - version: 0.4.0 - dev: true - - registry.npmmirror.com/node-releases@2.0.13: - resolution: {integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/node-releases/-/node-releases-2.0.13.tgz} - name: node-releases - version: 2.0.13 - dev: true - - 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} - name: normalize-path - version: 3.0.0 - engines: {node: '>=0.10.0'} - dev: true - - 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} - name: npm-run-path - version: 4.0.1 - engines: {node: '>=8'} - dependencies: - path-key: registry.npmmirror.com/path-key@3.1.1 - dev: true - - registry.npmmirror.com/oauth-sign@0.9.0: - resolution: {integrity: sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/oauth-sign/-/oauth-sign-0.9.0.tgz} - name: oauth-sign - version: 0.9.0 - dev: false - - registry.npmmirror.com/object-assign@4.1.1: - resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/object-assign/-/object-assign-4.1.1.tgz} - name: object-assign - version: 4.1.1 - engines: {node: '>=0.10.0'} - - registry.npmmirror.com/object-hash@3.0.0: - resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/object-hash/-/object-hash-3.0.0.tgz} - name: object-hash - version: 3.0.0 - engines: {node: '>= 6'} - - registry.npmmirror.com/object-inspect@1.12.3: - resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/object-inspect/-/object-inspect-1.12.3.tgz} - name: object-inspect - version: 1.12.3 - - 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} - name: on-finished - version: 2.4.1 - engines: {node: '>= 0.8'} - dependencies: - ee-first: registry.npmmirror.com/ee-first@1.1.1 - - 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} - name: onetime - version: 5.1.2 - engines: {node: '>=6'} - dependencies: - mimic-fn: registry.npmmirror.com/mimic-fn@2.1.0 - - registry.npmmirror.com/optionator@0.9.3: - resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/optionator/-/optionator-0.9.3.tgz} - name: optionator - version: 0.9.3 - engines: {node: '>= 0.8.0'} - dependencies: - '@aashutoshrathi/word-wrap': registry.npmmirror.com/@aashutoshrathi/word-wrap@1.2.6 - 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 - dev: true - - registry.npmmirror.com/ora@5.4.1: - resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ora/-/ora-5.4.1.tgz} - name: ora - version: 5.4.1 - engines: {node: '>=10'} - dependencies: - bl: registry.npmmirror.com/bl@4.1.0 - chalk: registry.npmmirror.com/chalk@4.1.2 - cli-cursor: registry.npmmirror.com/cli-cursor@3.1.0 - cli-spinners: registry.npmmirror.com/cli-spinners@2.9.0 - is-interactive: registry.npmmirror.com/is-interactive@1.0.0 - is-unicode-supported: registry.npmmirror.com/is-unicode-supported@0.1.0 - log-symbols: registry.npmmirror.com/log-symbols@4.1.0 - strip-ansi: registry.npmmirror.com/strip-ansi@6.0.1 - wcwidth: registry.npmmirror.com/wcwidth@1.0.1 - dev: true - - registry.npmmirror.com/os-name@4.0.1: - resolution: {integrity: sha512-xl9MAoU97MH1Xt5K9ERft2YfCAoaO6msy1OBA0ozxEC0x0TmIoE6K3QvgJMMZA9yKGLmHXNY/YZoDbiGDj4zYw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/os-name/-/os-name-4.0.1.tgz} - name: os-name - version: 4.0.1 - engines: {node: '>=10'} - dependencies: - macos-release: registry.npmmirror.com/macos-release@2.5.1 - windows-release: registry.npmmirror.com/windows-release@4.0.0 - dev: true - - registry.npmmirror.com/os-tmpdir@1.0.2: - resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz} - name: os-tmpdir - version: 1.0.2 - engines: {node: '>=0.10.0'} - dev: true - - registry.npmmirror.com/p-limit@2.3.0: - resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/p-limit/-/p-limit-2.3.0.tgz} - name: p-limit - version: 2.3.0 - engines: {node: '>=6'} - dependencies: - p-try: registry.npmmirror.com/p-try@2.2.0 - - registry.npmmirror.com/p-limit@3.1.0: - resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/p-limit/-/p-limit-3.1.0.tgz} - name: p-limit - version: 3.1.0 - engines: {node: '>=10'} - dependencies: - yocto-queue: registry.npmmirror.com/yocto-queue@0.1.0 - dev: true - - registry.npmmirror.com/p-locate@3.0.0: - resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/p-locate/-/p-locate-3.0.0.tgz} - name: p-locate - version: 3.0.0 - engines: {node: '>=6'} - dependencies: - p-limit: registry.npmmirror.com/p-limit@2.3.0 - dev: false - - registry.npmmirror.com/p-locate@4.1.0: - resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/p-locate/-/p-locate-4.1.0.tgz} - name: p-locate - version: 4.1.0 - engines: {node: '>=8'} - dependencies: - p-limit: registry.npmmirror.com/p-limit@2.3.0 - dev: true - - registry.npmmirror.com/p-try@2.2.0: - resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/p-try/-/p-try-2.2.0.tgz} - name: p-try - version: 2.2.0 - engines: {node: '>=6'} - - 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-json@5.2.0: - resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/parse-json/-/parse-json-5.2.0.tgz} - name: parse-json - version: 5.2.0 - engines: {node: '>=8'} - dependencies: - '@babel/code-frame': registry.npmmirror.com/@babel/code-frame@7.22.13 - error-ex: registry.npmmirror.com/error-ex@1.3.2 - json-parse-even-better-errors: registry.npmmirror.com/json-parse-even-better-errors@2.3.1 - lines-and-columns: registry.npmmirror.com/lines-and-columns@1.2.4 - dev: true - - registry.npmmirror.com/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} - name: parseurl - version: 1.3.3 - engines: {node: '>= 0.8'} - - registry.npmmirror.com/passport-jwt@4.0.1: - resolution: {integrity: sha512-UCKMDYhNuGOBE9/9Ycuoyh7vP6jpeTp/+sfMJl7nLff/t6dps+iaeE0hhNkKN8/HZHcJ7lCdOyDxHdDoxoSvdQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/passport-jwt/-/passport-jwt-4.0.1.tgz} - name: passport-jwt - version: 4.0.1 - dependencies: - jsonwebtoken: registry.npmmirror.com/jsonwebtoken@9.0.0 - passport-strategy: registry.npmmirror.com/passport-strategy@1.0.0 - dev: false - - registry.npmmirror.com/passport-strategy@1.0.0: - resolution: {integrity: sha512-CB97UUvDKJde2V0KDWWB3lyf6PC3FaZP7YxZ2G8OAtn9p4HI9j9JLP9qjOGZFvyl8uwNT8qM+hGnz/n16NI7oA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/passport-strategy/-/passport-strategy-1.0.0.tgz} - name: passport-strategy - version: 1.0.0 - engines: {node: '>= 0.4.0'} - dev: false - - registry.npmmirror.com/passport@0.6.0: - resolution: {integrity: sha512-0fe+p3ZnrWRW74fe8+SvCyf4a3Pb2/h7gFkQ8yTJpAO50gDzlfjZUZTO1k5Eg9kUct22OxHLqDZoKUWRHOh9ug==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/passport/-/passport-0.6.0.tgz} - name: passport - version: 0.6.0 - engines: {node: '>= 0.4.0'} - dependencies: - passport-strategy: registry.npmmirror.com/passport-strategy@1.0.0 - pause: registry.npmmirror.com/pause@0.0.1 - utils-merge: registry.npmmirror.com/utils-merge@1.0.1 - dev: false - - registry.npmmirror.com/path-exists@3.0.0: - resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/path-exists/-/path-exists-3.0.0.tgz} - name: path-exists - version: 3.0.0 - engines: {node: '>=4'} - dev: false - - registry.npmmirror.com/path-exists@4.0.0: - resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/path-exists/-/path-exists-4.0.0.tgz} - name: path-exists - version: 4.0.0 - engines: {node: '>=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} - name: path-key - version: 3.1.1 - 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} - name: path-parse - version: 1.0.7 - dev: true - - 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} - name: path-to-regexp - version: 0.1.7 - - registry.npmmirror.com/path-to-regexp@0.2.5: - resolution: {integrity: sha512-l6qtdDPIkmAmzEO6egquYDfqQGPMRNGjYtrU13HAXb3YSRrt7HSb1sJY0pKp6o2bAa86tSB6iwaW2JbthPKr7Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/path-to-regexp/-/path-to-regexp-0.2.5.tgz} - name: path-to-regexp - version: 0.2.5 - dev: false - - registry.npmmirror.com/path-to-regexp@3.2.0: - resolution: {integrity: sha512-jczvQbCUS7XmS7o+y1aEO9OBVFeZBQ1MDSEqmO7xSoPgOPoowY/SxLpZ6Vh97/8qHZOteiCKb7gkG9gA2ZUxJA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/path-to-regexp/-/path-to-regexp-3.2.0.tgz} - name: path-to-regexp - version: 3.2.0 - - 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/pause@0.0.1: - resolution: {integrity: sha512-KG8UEiEVkR3wGEb4m5yZkVCzigAD+cVEJck2CzYZO37ZGJfctvVptVO192MwrtPhzONn6go8ylnOdMhKqi4nfg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/pause/-/pause-0.0.1.tgz} - name: pause - version: 0.0.1 - dev: false - - registry.npmmirror.com/performance-now@2.1.0: - resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/performance-now/-/performance-now-2.1.0.tgz} - name: performance-now - version: 2.1.0 - dev: false - - 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} - name: picocolors - version: 1.0.0 - dev: true - - 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} - name: picomatch - version: 2.3.1 - engines: {node: '>=8.6'} - dev: true - - registry.npmmirror.com/pirates@4.0.6: - resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/pirates/-/pirates-4.0.6.tgz} - name: pirates - version: 4.0.6 - engines: {node: '>= 6'} - dev: true - - registry.npmmirror.com/pkg-dir@4.2.0: - resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/pkg-dir/-/pkg-dir-4.2.0.tgz} - name: pkg-dir - version: 4.2.0 - engines: {node: '>=8'} - dependencies: - find-up: registry.npmmirror.com/find-up@4.1.0 - dev: true - - registry.npmmirror.com/pkg-up@3.1.0: - resolution: {integrity: sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/pkg-up/-/pkg-up-3.1.0.tgz} - name: pkg-up - version: 3.1.0 - engines: {node: '>=8'} - dependencies: - find-up: registry.npmmirror.com/find-up@3.0.0 - dev: false - - registry.npmmirror.com/pluralize@8.0.0: - resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/pluralize/-/pluralize-8.0.0.tgz} - name: pluralize - version: 8.0.0 - engines: {node: '>=4'} - dev: true - - 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.3.0 - dev: true - - registry.npmmirror.com/prettier@2.3.2: - resolution: {integrity: sha512-lnJzDfJ66zkMy58OL5/NY5zp70S7Nz6KqcKkXYzn2tMVrNxvbqaBpg7H3qHaLxCJ5lNMsGuM8+ohS7cZrthdLQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/prettier/-/prettier-2.3.2.tgz} - name: prettier - version: 2.3.2 - engines: {node: '>=10.13.0'} - hasBin: true - dev: true - - registry.npmmirror.com/pretty-format@29.6.3: - resolution: {integrity: sha512-ZsBgjVhFAj5KeK+nHfF1305/By3lechHQSMWCTl8iHSbfOm2TN5nHEtFc/+W7fAyUeCs2n5iow72gld4gW0xDw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/pretty-format/-/pretty-format-29.6.3.tgz} - name: pretty-format - version: 29.6.3 - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jest/schemas': registry.npmmirror.com/@jest/schemas@29.6.3 - ansi-styles: registry.npmmirror.com/ansi-styles@5.2.0 - react-is: registry.npmmirror.com/react-is@18.2.0 - dev: true - - registry.npmmirror.com/prisma@5.3.1: - resolution: {integrity: sha512-Wp2msQIlMPHe+5k5Od6xnsI/WNG7UJGgFUJgqv/ygc7kOECZapcSz/iU4NIEzISs3H1W9sFLjAPbg/gOqqtB7A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/prisma/-/prisma-5.3.1.tgz} - name: prisma - version: 5.3.1 - engines: {node: '>=16.13'} - hasBin: true - requiresBuild: true - dependencies: - '@prisma/engines': registry.npmmirror.com/@prisma/engines@5.3.1 - dev: false - - registry.npmmirror.com/process-nextick-args@2.0.1: - resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz} - name: process-nextick-args - version: 2.0.1 - - registry.npmmirror.com/progress@2.0.3: - resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/progress/-/progress-2.0.3.tgz} - name: progress - version: 2.0.3 - engines: {node: '>=0.4.0'} - dev: true - - registry.npmmirror.com/prompts@2.4.2: - resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/prompts/-/prompts-2.4.2.tgz} - name: prompts - version: 2.4.2 - engines: {node: '>= 6'} - dependencies: - kleur: registry.npmmirror.com/kleur@3.0.3 - sisteransi: registry.npmmirror.com/sisteransi@1.0.5 - 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} - name: proxy-addr - version: 2.0.7 - engines: {node: '>= 0.10'} - dependencies: - forwarded: registry.npmmirror.com/forwarded@0.2.0 - ipaddr.js: registry.npmmirror.com/ipaddr.js@1.9.1 - - registry.npmmirror.com/proxy-from-env@1.1.0: - resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz} - name: proxy-from-env - version: 1.1.0 - dev: false - - registry.npmmirror.com/psl@1.9.0: - resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/psl/-/psl-1.9.0.tgz} - name: psl - version: 1.9.0 - dev: false - - registry.npmmirror.com/pump@3.0.0: - resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/pump/-/pump-3.0.0.tgz} - name: pump - version: 3.0.0 - dependencies: - end-of-stream: registry.npmmirror.com/end-of-stream@1.4.4 - once: registry.npmmirror.com/once@1.4.0 - dev: true - - registry.npmmirror.com/punycode@2.3.0: - resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/punycode/-/punycode-2.3.0.tgz} - name: punycode - version: 2.3.0 - engines: {node: '>=6'} - - registry.npmmirror.com/pure-rand@6.0.3: - resolution: {integrity: sha512-KddyFewCsO0j3+np81IQ+SweXLDnDQTs5s67BOnrYmYe/yNmUhttQyGsYzy8yUnoljGAQ9sl38YB4vH8ur7Y+w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/pure-rand/-/pure-rand-6.0.3.tgz} - name: pure-rand - version: 6.0.3 - 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} - name: qs - version: 6.10.3 - engines: {node: '>=0.6'} - dependencies: - side-channel: registry.npmmirror.com/side-channel@1.0.4 - - registry.npmmirror.com/qs@6.11.2: - resolution: {integrity: sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/qs/-/qs-6.11.2.tgz} - name: qs - version: 6.11.2 - engines: {node: '>=0.6'} - dependencies: - side-channel: registry.npmmirror.com/side-channel@1.0.4 - dev: true - - registry.npmmirror.com/qs@6.5.3: - resolution: {integrity: sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/qs/-/qs-6.5.3.tgz} - name: qs - version: 6.5.3 - engines: {node: '>=0.6'} - dev: false - - 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} - name: queue-microtask - version: 1.2.3 - dev: true - - registry.npmmirror.com/randombytes@2.1.0: - resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/randombytes/-/randombytes-2.1.0.tgz} - name: randombytes - version: 2.1.0 - dependencies: - safe-buffer: registry.npmmirror.com/safe-buffer@5.2.1 - dev: true - - 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} - name: range-parser - version: 1.2.1 - engines: {node: '>= 0.6'} - - 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} - name: raw-body - version: 2.5.1 - engines: {node: '>= 0.8'} - dependencies: - bytes: registry.npmmirror.com/bytes@3.1.2 - http-errors: registry.npmmirror.com/http-errors@2.0.0 - iconv-lite: registry.npmmirror.com/iconv-lite@0.4.24 - unpipe: registry.npmmirror.com/unpipe@1.0.0 - - registry.npmmirror.com/react-is@18.2.0: - resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/react-is/-/react-is-18.2.0.tgz} - name: react-is - version: 18.2.0 - dev: true - - registry.npmmirror.com/readable-stream@2.3.8: - resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/readable-stream/-/readable-stream-2.3.8.tgz} - name: readable-stream - version: 2.3.8 - dependencies: - core-util-is: registry.npmmirror.com/core-util-is@1.0.3 - inherits: registry.npmmirror.com/inherits@2.0.4 - isarray: registry.npmmirror.com/isarray@1.0.0 - process-nextick-args: registry.npmmirror.com/process-nextick-args@2.0.1 - safe-buffer: registry.npmmirror.com/safe-buffer@5.1.2 - string_decoder: registry.npmmirror.com/string_decoder@1.1.1 - util-deprecate: registry.npmmirror.com/util-deprecate@1.0.2 - - registry.npmmirror.com/readable-stream@3.6.2: - resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/readable-stream/-/readable-stream-3.6.2.tgz} - name: readable-stream - version: 3.6.2 - engines: {node: '>= 6'} - dependencies: - inherits: registry.npmmirror.com/inherits@2.0.4 - string_decoder: registry.npmmirror.com/string_decoder@1.3.0 - util-deprecate: registry.npmmirror.com/util-deprecate@1.0.2 - dev: true - - 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} - name: readdirp - version: 3.6.0 - engines: {node: '>=8.10.0'} - dependencies: - picomatch: registry.npmmirror.com/picomatch@2.3.1 - dev: true - - registry.npmmirror.com/rechoir@0.6.2: - resolution: {integrity: sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rechoir/-/rechoir-0.6.2.tgz} - name: rechoir - version: 0.6.2 - engines: {node: '>= 0.10'} - dependencies: - resolve: registry.npmmirror.com/resolve@1.22.4 - dev: true - - registry.npmmirror.com/redis-errors@1.2.0: - resolution: {integrity: sha512-1qny3OExCf0UvUV/5wpYKf2YwPcOqXzkwKKSmKHiE6ZMQs5heeE/c8eXK+PNllPvmjgAbfnsbpkGZWy8cBpn9w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/redis-errors/-/redis-errors-1.2.0.tgz} - name: redis-errors - version: 1.2.0 - engines: {node: '>=4'} - dev: false - - registry.npmmirror.com/redis-parser@3.0.0: - resolution: {integrity: sha512-DJnGAeenTdpMEH6uAJRK/uiyEIH9WVsUmoLwzudwGJUwZPp80PDBWPHXSAGNPwNvIXAbe7MSUB1zQFugFml66A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/redis-parser/-/redis-parser-3.0.0.tgz} - name: redis-parser - version: 3.0.0 - engines: {node: '>=4'} - dependencies: - redis-errors: registry.npmmirror.com/redis-errors@1.2.0 - dev: false - - registry.npmmirror.com/redis@4.6.10: - resolution: {integrity: sha512-mmbyhuKgDiJ5TWUhiKhBssz+mjsuSI/lSZNPI9QvZOYzWvYGejtb+W3RlDDf8LD6Bdl5/mZeG8O1feUGhXTxEg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/redis/-/redis-4.6.10.tgz} - name: redis - version: 4.6.10 - dependencies: - '@redis/bloom': registry.npmmirror.com/@redis/bloom@1.2.0(@redis/client@1.5.11) - '@redis/client': registry.npmmirror.com/@redis/client@1.5.11 - '@redis/graph': registry.npmmirror.com/@redis/graph@1.1.0(@redis/client@1.5.11) - '@redis/json': registry.npmmirror.com/@redis/json@1.0.6(@redis/client@1.5.11) - '@redis/search': registry.npmmirror.com/@redis/search@1.1.5(@redis/client@1.5.11) - '@redis/time-series': registry.npmmirror.com/@redis/time-series@1.0.5(@redis/client@1.5.11) - dev: false - - registry.npmmirror.com/reflect-metadata@0.1.13: - resolution: {integrity: sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/reflect-metadata/-/reflect-metadata-0.1.13.tgz} - name: reflect-metadata - version: 0.1.13 - - 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/request@2.88.2: - resolution: {integrity: sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/request/-/request-2.88.2.tgz} - name: request - version: 2.88.2 - engines: {node: '>= 6'} - deprecated: request has been deprecated, see https://github.com/request/request/issues/3142 - dependencies: - aws-sign2: registry.npmmirror.com/aws-sign2@0.7.0 - aws4: registry.npmmirror.com/aws4@1.12.0 - caseless: registry.npmmirror.com/caseless@0.12.0 - combined-stream: registry.npmmirror.com/combined-stream@1.0.8 - extend: registry.npmmirror.com/extend@3.0.2 - forever-agent: registry.npmmirror.com/forever-agent@0.6.1 - form-data: registry.npmmirror.com/form-data@2.3.3 - har-validator: registry.npmmirror.com/har-validator@5.1.5 - http-signature: registry.npmmirror.com/http-signature@1.2.0 - is-typedarray: registry.npmmirror.com/is-typedarray@1.0.0 - isstream: registry.npmmirror.com/isstream@0.1.2 - json-stringify-safe: registry.npmmirror.com/json-stringify-safe@5.0.1 - mime-types: registry.npmmirror.com/mime-types@2.1.35 - oauth-sign: registry.npmmirror.com/oauth-sign@0.9.0 - performance-now: registry.npmmirror.com/performance-now@2.1.0 - qs: registry.npmmirror.com/qs@6.5.3 - safe-buffer: registry.npmmirror.com/safe-buffer@5.2.1 - tough-cookie: registry.npmmirror.com/tough-cookie@2.5.0 - tunnel-agent: registry.npmmirror.com/tunnel-agent@0.6.0 - uuid: registry.npmmirror.com/uuid@3.4.0 - dev: false - - registry.npmmirror.com/require-directory@2.1.1: - resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/require-directory/-/require-directory-2.1.1.tgz} - name: require-directory - version: 2.1.1 - engines: {node: '>=0.10.0'} - dev: true - - registry.npmmirror.com/require-from-string@2.0.2: - resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/require-from-string/-/require-from-string-2.0.2.tgz} - name: require-from-string - version: 2.0.2 - engines: {node: '>=0.10.0'} - - registry.npmmirror.com/resolve-cwd@3.0.0: - resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz} - name: resolve-cwd - version: 3.0.0 - engines: {node: '>=8'} - dependencies: - resolve-from: registry.npmmirror.com/resolve-from@5.0.0 - 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-from@5.0.0: - resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/resolve-from/-/resolve-from-5.0.0.tgz} - name: resolve-from - version: 5.0.0 - engines: {node: '>=8'} - dev: true - - registry.npmmirror.com/resolve.exports@2.0.2: - resolution: {integrity: sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/resolve.exports/-/resolve.exports-2.0.2.tgz} - name: resolve.exports - version: 2.0.2 - engines: {node: '>=10'} - dev: true - - registry.npmmirror.com/resolve@1.22.4: - resolution: {integrity: sha512-PXNdCiPqDqeUou+w1C2eTQbNfxKSuMxqTCuvlmmMsk1NWHL5fRrhY6Pl0qEYYc6+QqGClco1Qj8XnjPego4wfg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/resolve/-/resolve-1.22.4.tgz} - name: resolve - version: 1.22.4 - hasBin: true - dependencies: - is-core-module: registry.npmmirror.com/is-core-module@2.13.0 - path-parse: registry.npmmirror.com/path-parse@1.0.7 - supports-preserve-symlinks-flag: registry.npmmirror.com/supports-preserve-symlinks-flag@1.0.0 - dev: true - - registry.npmmirror.com/restore-cursor@3.1.0: - resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/restore-cursor/-/restore-cursor-3.1.0.tgz} - name: restore-cursor - version: 3.1.0 - engines: {node: '>=8'} - dependencies: - onetime: registry.npmmirror.com/onetime@5.1.2 - signal-exit: registry.npmmirror.com/signal-exit@3.0.7 - dev: true - - 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} - name: reusify - version: 1.0.4 - engines: {iojs: '>=1.0.0', node: '>=0.10.0'} - dev: true - - 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/run-async@2.4.1: - resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/run-async/-/run-async-2.4.1.tgz} - name: run-async - version: 2.4.1 - engines: {node: '>=0.12.0'} - dev: true - - 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} - name: run-parallel - version: 1.2.0 - dependencies: - queue-microtask: registry.npmmirror.com/queue-microtask@1.2.3 - dev: true - - registry.npmmirror.com/rxjs@6.6.7: - resolution: {integrity: sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rxjs/-/rxjs-6.6.7.tgz} - name: rxjs - version: 6.6.7 - engines: {npm: '>=2.0.0'} - dependencies: - tslib: registry.npmmirror.com/tslib@1.14.1 - dev: true - - registry.npmmirror.com/rxjs@7.2.0: - resolution: {integrity: sha512-aX8w9OpKrQmiPKfT1bqETtUr9JygIz6GZ+gql8v7CijClsP0laoFUdKzxFAoWuRdSlOdU2+crss+cMf+cqMTnw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rxjs/-/rxjs-7.2.0.tgz} - name: rxjs - version: 7.2.0 - dependencies: - tslib: registry.npmmirror.com/tslib@2.1.0 - - registry.npmmirror.com/rxjs@7.8.1: - resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rxjs/-/rxjs-7.8.1.tgz} - name: rxjs - version: 7.8.1 - dependencies: - tslib: registry.npmmirror.com/tslib@2.6.2 - dev: true - - 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} - 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} - name: safe-buffer - version: 5.2.1 - - 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} - name: safer-buffer - version: 2.1.2 - - registry.npmmirror.com/schema-utils@3.3.0: - resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/schema-utils/-/schema-utils-3.3.0.tgz} - name: schema-utils - version: 3.3.0 - engines: {node: '>= 10.13.0'} - dependencies: - '@types/json-schema': registry.npmmirror.com/@types/json-schema@7.0.12 - ajv: registry.npmmirror.com/ajv@6.12.6 - ajv-keywords: registry.npmmirror.com/ajv-keywords@3.5.2(ajv@6.12.6) - dev: true - - registry.npmmirror.com/semver@6.3.1: - resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/semver/-/semver-6.3.1.tgz} - name: semver - version: 6.3.1 - hasBin: true - - registry.npmmirror.com/semver@7.5.4: - resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/semver/-/semver-7.5.4.tgz} - name: semver - version: 7.5.4 - engines: {node: '>=10'} - hasBin: true - dependencies: - lru-cache: registry.npmmirror.com/lru-cache@6.0.0 - - 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} - name: send - version: 0.18.0 - engines: {node: '>= 0.8.0'} - dependencies: - debug: registry.npmmirror.com/debug@2.6.9 - depd: registry.npmmirror.com/depd@2.0.0 - destroy: registry.npmmirror.com/destroy@1.2.0 - encodeurl: registry.npmmirror.com/encodeurl@1.0.2 - escape-html: registry.npmmirror.com/escape-html@1.0.3 - etag: registry.npmmirror.com/etag@1.8.1 - fresh: registry.npmmirror.com/fresh@0.5.2 - http-errors: registry.npmmirror.com/http-errors@2.0.0 - mime: registry.npmmirror.com/mime@1.6.0 - ms: registry.npmmirror.com/ms@2.1.3 - on-finished: registry.npmmirror.com/on-finished@2.4.1 - range-parser: registry.npmmirror.com/range-parser@1.2.1 - statuses: registry.npmmirror.com/statuses@2.0.1 - transitivePeerDependencies: - - supports-color - - registry.npmmirror.com/serialize-javascript@6.0.1: - resolution: {integrity: sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/serialize-javascript/-/serialize-javascript-6.0.1.tgz} - name: serialize-javascript - version: 6.0.1 - dependencies: - randombytes: registry.npmmirror.com/randombytes@2.1.0 - 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} - name: serve-static - version: 1.15.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 - parseurl: registry.npmmirror.com/parseurl@1.3.3 - send: registry.npmmirror.com/send@0.18.0 - transitivePeerDependencies: - - supports-color - - 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} - name: setprototypeof - version: 1.2.0 - - 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} - name: shebang-command - version: 2.0.0 - 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} - name: shebang-regex - version: 3.0.0 - engines: {node: '>=8'} - dev: true - - registry.npmmirror.com/shelljs@0.8.5: - resolution: {integrity: sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/shelljs/-/shelljs-0.8.5.tgz} - name: shelljs - version: 0.8.5 - engines: {node: '>=4'} - hasBin: true - dependencies: - glob: registry.npmmirror.com/glob@7.2.3 - interpret: registry.npmmirror.com/interpret@1.4.0 - rechoir: registry.npmmirror.com/rechoir@0.6.2 - 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} - name: side-channel - version: 1.0.4 - dependencies: - call-bind: registry.npmmirror.com/call-bind@1.0.2 - get-intrinsic: registry.npmmirror.com/get-intrinsic@1.2.1 - object-inspect: registry.npmmirror.com/object-inspect@1.12.3 - - 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} - name: signal-exit - version: 3.0.7 - dev: true - - registry.npmmirror.com/sisteransi@1.0.5: - resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/sisteransi/-/sisteransi-1.0.5.tgz} - name: sisteransi - version: 1.0.5 - 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-map-support@0.5.13: - resolution: {integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/source-map-support/-/source-map-support-0.5.13.tgz} - name: source-map-support - version: 0.5.13 - dependencies: - buffer-from: registry.npmmirror.com/buffer-from@1.1.2 - source-map: registry.npmmirror.com/source-map@0.6.1 - dev: true - - registry.npmmirror.com/source-map-support@0.5.20: - resolution: {integrity: sha512-n1lZZ8Ve4ksRqizaBQgxXDgKwttHDhyfQjA6YZZn8+AroHbsIz+JjwxQDxbp+7y5OYCI8t1Yk7etjD9CRd2hIw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/source-map-support/-/source-map-support-0.5.20.tgz} - name: source-map-support - version: 0.5.20 - dependencies: - buffer-from: registry.npmmirror.com/buffer-from@1.1.2 - source-map: registry.npmmirror.com/source-map@0.6.1 - dev: true - - registry.npmmirror.com/source-map-support@0.5.21: - resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/source-map-support/-/source-map-support-0.5.21.tgz} - name: source-map-support - version: 0.5.21 - dependencies: - buffer-from: registry.npmmirror.com/buffer-from@1.1.2 - source-map: registry.npmmirror.com/source-map@0.6.1 - dev: true - - 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} - name: source-map - version: 0.6.1 - engines: {node: '>=0.10.0'} - dev: true - - registry.npmmirror.com/source-map@0.7.3: - resolution: {integrity: sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/source-map/-/source-map-0.7.3.tgz} - name: source-map - version: 0.7.3 - engines: {node: '>= 8'} - dev: true - - 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} - name: sourcemap-codec - version: 1.4.8 - deprecated: Please use @jridgewell/sourcemap-codec instead - dev: true - - registry.npmmirror.com/sprintf-js@1.0.3: - resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/sprintf-js/-/sprintf-js-1.0.3.tgz} - name: sprintf-js - version: 1.0.3 - dev: true - - registry.npmmirror.com/sshpk@1.17.0: - resolution: {integrity: sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/sshpk/-/sshpk-1.17.0.tgz} - name: sshpk - version: 1.17.0 - engines: {node: '>=0.10.0'} - hasBin: true - dependencies: - asn1: registry.npmmirror.com/asn1@0.2.6 - assert-plus: registry.npmmirror.com/assert-plus@1.0.0 - bcrypt-pbkdf: registry.npmmirror.com/bcrypt-pbkdf@1.0.2 - dashdash: registry.npmmirror.com/dashdash@1.14.1 - ecc-jsbn: registry.npmmirror.com/ecc-jsbn@0.1.2 - getpass: registry.npmmirror.com/getpass@0.1.7 - jsbn: registry.npmmirror.com/jsbn@0.1.1 - safer-buffer: registry.npmmirror.com/safer-buffer@2.1.2 - tweetnacl: registry.npmmirror.com/tweetnacl@0.14.5 - dev: false - - registry.npmmirror.com/stack-utils@2.0.6: - resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/stack-utils/-/stack-utils-2.0.6.tgz} - name: stack-utils - version: 2.0.6 - engines: {node: '>=10'} - dependencies: - escape-string-regexp: registry.npmmirror.com/escape-string-regexp@2.0.0 - dev: true - - registry.npmmirror.com/standard-as-callback@2.1.0: - resolution: {integrity: sha512-qoRRSyROncaz1z0mvYqIE4lCd9p2R90i6GxW3uZv5ucSu8tU7B5HXUP1gG8pVZsYNVaXjk8ClXHPttLyxAL48A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/standard-as-callback/-/standard-as-callback-2.1.0.tgz} - name: standard-as-callback - version: 2.1.0 - dev: false - - 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} - name: statuses - version: 2.0.1 - engines: {node: '>= 0.8'} - - registry.npmmirror.com/streamsearch@1.1.0: - resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/streamsearch/-/streamsearch-1.1.0.tgz} - name: streamsearch - version: 1.1.0 - engines: {node: '>=10.0.0'} - - registry.npmmirror.com/string-length@4.0.2: - resolution: {integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/string-length/-/string-length-4.0.2.tgz} - name: string-length - version: 4.0.2 - engines: {node: '>=10'} - dependencies: - char-regex: registry.npmmirror.com/char-regex@1.0.2 - strip-ansi: registry.npmmirror.com/strip-ansi@6.0.1 - dev: true - - registry.npmmirror.com/string-width@4.2.3: - resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/string-width/-/string-width-4.2.3.tgz} - name: string-width - version: 4.2.3 - engines: {node: '>=8'} - dependencies: - emoji-regex: registry.npmmirror.com/emoji-regex@8.0.0 - is-fullwidth-code-point: registry.npmmirror.com/is-fullwidth-code-point@3.0.0 - strip-ansi: registry.npmmirror.com/strip-ansi@6.0.1 - dev: true - - registry.npmmirror.com/string_decoder@1.1.1: - resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/string_decoder/-/string_decoder-1.1.1.tgz} - name: string_decoder - version: 1.1.1 - dependencies: - safe-buffer: registry.npmmirror.com/safe-buffer@5.1.2 - - registry.npmmirror.com/string_decoder@1.3.0: - resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/string_decoder/-/string_decoder-1.3.0.tgz} - name: string_decoder - version: 1.3.0 - dependencies: - safe-buffer: registry.npmmirror.com/safe-buffer@5.2.1 - dev: true - - 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-bom@3.0.0: - resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/strip-bom/-/strip-bom-3.0.0.tgz} - name: strip-bom - version: 3.0.0 - engines: {node: '>=4'} - dev: true - - registry.npmmirror.com/strip-bom@4.0.0: - resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/strip-bom/-/strip-bom-4.0.0.tgz} - name: strip-bom - version: 4.0.0 - engines: {node: '>=8'} - 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} - name: strip-final-newline - version: 2.0.0 - 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/strnum@1.0.5: - resolution: {integrity: sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/strnum/-/strnum-1.0.5.tgz} - name: strnum - version: 1.0.5 - dev: false - - registry.npmmirror.com/superagent@6.1.0: - resolution: {integrity: sha512-OUDHEssirmplo3F+1HWKUrUjvnQuA+nZI6i/JJBdXb5eq9IyEQwPyPpqND+SSsxf6TygpBEkUjISVRN4/VOpeg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/superagent/-/superagent-6.1.0.tgz} - name: superagent - version: 6.1.0 - engines: {node: '>= 7.0.0'} - deprecated: Please upgrade to v7.0.2+ of superagent. We have fixed numerous issues with streams, form-data, attach(), filesystem errors not bubbling up (ENOENT on attach()), and all tests are now passing. See the releases tab for more information at . - dependencies: - component-emitter: registry.npmmirror.com/component-emitter@1.3.0 - cookiejar: registry.npmmirror.com/cookiejar@2.1.4 - debug: registry.npmmirror.com/debug@4.3.4 - fast-safe-stringify: registry.npmmirror.com/fast-safe-stringify@2.1.1 - form-data: registry.npmmirror.com/form-data@3.0.1 - formidable: registry.npmmirror.com/formidable@1.2.6 - methods: registry.npmmirror.com/methods@1.1.2 - mime: registry.npmmirror.com/mime@2.6.0 - qs: registry.npmmirror.com/qs@6.11.2 - readable-stream: registry.npmmirror.com/readable-stream@3.6.2 - semver: registry.npmmirror.com/semver@7.5.4 - transitivePeerDependencies: - - supports-color - dev: true - - registry.npmmirror.com/supertest@6.1.3: - resolution: {integrity: sha512-v2NVRyP73XDewKb65adz+yug1XMtmvij63qIWHZzSX8tp6wiq6xBLUy4SUAd2NII6wIipOmHT/FD9eicpJwdgQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/supertest/-/supertest-6.1.3.tgz} - name: supertest - version: 6.1.3 - engines: {node: '>=6.0.0'} - dependencies: - methods: registry.npmmirror.com/methods@1.1.2 - superagent: registry.npmmirror.com/superagent@6.1.0 - transitivePeerDependencies: - - supports-color - 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} - name: supports-color - version: 5.5.0 - engines: {node: '>=4'} - dependencies: - has-flag: registry.npmmirror.com/has-flag@3.0.0 - dev: true - - 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 - - registry.npmmirror.com/supports-color@8.1.1: - resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/supports-color/-/supports-color-8.1.1.tgz} - name: supports-color - version: 8.1.1 - engines: {node: '>=10'} - 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} - name: supports-preserve-symlinks-flag - version: 1.0.0 - engines: {node: '>= 0.4'} - dev: true - - registry.npmmirror.com/symbol-observable@4.0.0: - resolution: {integrity: sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/symbol-observable/-/symbol-observable-4.0.0.tgz} - name: symbol-observable - version: 4.0.0 - engines: {node: '>=0.10'} - 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} - name: tapable - version: 2.2.1 - engines: {node: '>=6'} - dev: true - - registry.npmmirror.com/terser-webpack-plugin@5.3.9(webpack@5.73.0): - resolution: {integrity: sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz} - id: registry.npmmirror.com/terser-webpack-plugin/5.3.9 - name: terser-webpack-plugin - version: 5.3.9 - engines: {node: '>= 10.13.0'} - peerDependencies: - '@swc/core': '*' - esbuild: '*' - uglify-js: '*' - webpack: ^5.1.0 - peerDependenciesMeta: - '@swc/core': - optional: true - esbuild: - optional: true - uglify-js: - optional: true - dependencies: - '@jridgewell/trace-mapping': registry.npmmirror.com/@jridgewell/trace-mapping@0.3.19 - jest-worker: registry.npmmirror.com/jest-worker@27.5.1 - schema-utils: registry.npmmirror.com/schema-utils@3.3.0 - serialize-javascript: registry.npmmirror.com/serialize-javascript@6.0.1 - terser: registry.npmmirror.com/terser@5.19.4 - webpack: registry.npmmirror.com/webpack@5.73.0 - dev: true - - registry.npmmirror.com/terser-webpack-plugin@5.3.9(webpack@5.88.2): - resolution: {integrity: sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz} - id: registry.npmmirror.com/terser-webpack-plugin/5.3.9 - name: terser-webpack-plugin - version: 5.3.9 - engines: {node: '>= 10.13.0'} - peerDependencies: - '@swc/core': '*' - esbuild: '*' - uglify-js: '*' - webpack: ^5.1.0 - peerDependenciesMeta: - '@swc/core': - optional: true - esbuild: - optional: true - uglify-js: - optional: true - dependencies: - '@jridgewell/trace-mapping': registry.npmmirror.com/@jridgewell/trace-mapping@0.3.19 - jest-worker: registry.npmmirror.com/jest-worker@27.5.1 - schema-utils: registry.npmmirror.com/schema-utils@3.3.0 - serialize-javascript: registry.npmmirror.com/serialize-javascript@6.0.1 - terser: registry.npmmirror.com/terser@5.19.4 - webpack: registry.npmmirror.com/webpack@5.88.2 - dev: true - - registry.npmmirror.com/terser@5.19.4: - resolution: {integrity: sha512-6p1DjHeuluwxDXcuT9VR8p64klWJKo1ILiy19s6C9+0Bh2+NWTX6nD9EPppiER4ICkHDVB1RkVpin/YW2nQn/g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/terser/-/terser-5.19.4.tgz} - name: terser - version: 5.19.4 - engines: {node: '>=10'} - hasBin: true - dependencies: - '@jridgewell/source-map': registry.npmmirror.com/@jridgewell/source-map@0.3.5 - acorn: registry.npmmirror.com/acorn@8.10.0 - commander: registry.npmmirror.com/commander@2.20.3 - source-map-support: registry.npmmirror.com/source-map-support@0.5.20 - dev: true - - registry.npmmirror.com/test-exclude@6.0.0: - resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/test-exclude/-/test-exclude-6.0.0.tgz} - name: test-exclude - version: 6.0.0 - engines: {node: '>=8'} - dependencies: - '@istanbuljs/schema': registry.npmmirror.com/@istanbuljs/schema@0.1.3 - glob: registry.npmmirror.com/glob@7.2.3 - minimatch: registry.npmmirror.com/minimatch@3.1.2 - dev: true - - 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/through@2.3.8: - resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/through/-/through-2.3.8.tgz} - name: through - version: 2.3.8 - dev: true - - registry.npmmirror.com/tmp@0.0.33: - resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/tmp/-/tmp-0.0.33.tgz} - name: tmp - version: 0.0.33 - engines: {node: '>=0.6.0'} - dependencies: - os-tmpdir: registry.npmmirror.com/os-tmpdir@1.0.2 - dev: true - - registry.npmmirror.com/tmpl@1.0.5: - resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/tmpl/-/tmpl-1.0.5.tgz} - name: tmpl - version: 1.0.5 - 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} - name: to-fast-properties - version: 2.0.0 - engines: {node: '>=4'} - dev: true - - 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} - name: to-regex-range - version: 5.0.1 - engines: {node: '>=8.0'} - dependencies: - is-number: registry.npmmirror.com/is-number@7.0.0 - dev: true - - 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} - name: toidentifier - version: 1.0.1 - engines: {node: '>=0.6'} - - registry.npmmirror.com/tough-cookie@2.5.0: - resolution: {integrity: sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/tough-cookie/-/tough-cookie-2.5.0.tgz} - name: tough-cookie - version: 2.5.0 - engines: {node: '>=0.8'} - dependencies: - psl: registry.npmmirror.com/psl@1.9.0 - punycode: registry.npmmirror.com/punycode@2.3.0 - dev: false - - registry.npmmirror.com/tr46@0.0.3: - resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/tr46/-/tr46-0.0.3.tgz} - name: tr46 - version: 0.0.3 - - registry.npmmirror.com/tree-kill@1.2.2: - resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/tree-kill/-/tree-kill-1.2.2.tgz} - name: tree-kill - version: 1.2.2 - hasBin: true - dev: true - - registry.npmmirror.com/ts-jest@29.0.5(@babel/core@7.22.17)(jest@29.5.0)(typescript@4.7.4): - resolution: {integrity: sha512-PL3UciSgIpQ7f6XjVOmbi96vmDHUqAyqDr8YxzopDqX3kfgYtX1cuNeBjP+L9sFXi6nzsGGA6R3fP3DDDJyrxA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ts-jest/-/ts-jest-29.0.5.tgz} - id: registry.npmmirror.com/ts-jest/29.0.5 - name: ts-jest - version: 29.0.5 - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - hasBin: true - peerDependencies: - '@babel/core': '>=7.0.0-beta.0 <8' - '@jest/types': ^29.0.0 - babel-jest: ^29.0.0 - esbuild: '*' - jest: ^29.0.0 - typescript: '>=4.3' - peerDependenciesMeta: - '@babel/core': - optional: true - '@jest/types': - optional: true - babel-jest: - optional: true - esbuild: - optional: true - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.17 - bs-logger: registry.npmmirror.com/bs-logger@0.2.6 - fast-json-stable-stringify: registry.npmmirror.com/fast-json-stable-stringify@2.1.0 - jest: registry.npmmirror.com/jest@29.5.0(@types/node@18.15.11)(ts-node@10.0.0) - jest-util: registry.npmmirror.com/jest-util@29.6.3 - json5: registry.npmmirror.com/json5@2.2.3 - lodash.memoize: registry.npmmirror.com/lodash.memoize@4.1.2 - make-error: registry.npmmirror.com/make-error@1.3.6 - semver: registry.npmmirror.com/semver@7.5.4 - typescript: registry.npmmirror.com/typescript@4.7.4 - yargs-parser: registry.npmmirror.com/yargs-parser@21.1.1 - dev: true - - registry.npmmirror.com/ts-loader@9.2.3(typescript@4.7.4)(webpack@5.88.2): - resolution: {integrity: sha512-sEyWiU3JMHBL55CIeC4iqJQadI0U70A5af0kvgbNLHVNz2ACztQg0j/9x10bjjIht8WfFYLKfn4L6tkZ+pu+8Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ts-loader/-/ts-loader-9.2.3.tgz} - id: registry.npmmirror.com/ts-loader/9.2.3 - name: ts-loader - version: 9.2.3 - engines: {node: '>=12.0.0'} - peerDependencies: - typescript: '*' - webpack: ^5.0.0 - dependencies: - chalk: registry.npmmirror.com/chalk@4.1.2 - enhanced-resolve: registry.npmmirror.com/enhanced-resolve@5.15.0 - micromatch: registry.npmmirror.com/micromatch@4.0.5 - semver: registry.npmmirror.com/semver@7.5.4 - typescript: registry.npmmirror.com/typescript@4.7.4 - webpack: registry.npmmirror.com/webpack@5.88.2 - dev: true - - registry.npmmirror.com/ts-node@10.0.0(@types/node@18.15.11)(typescript@4.7.4): - resolution: {integrity: sha512-ROWeOIUvfFbPZkoDis0L/55Fk+6gFQNZwwKPLinacRl6tsxstTF1DbAcLKkovwnpKMVvOMHP1TIbnwXwtLg1gg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ts-node/-/ts-node-10.0.0.tgz} - id: registry.npmmirror.com/ts-node/10.0.0 - name: ts-node - version: 10.0.0 - engines: {node: '>=12.0.0'} - hasBin: true - peerDependencies: - '@swc/core': '>=1.2.45' - '@swc/wasm': '>=1.2.45' - '@types/node': '*' - typescript: '>=2.7' - peerDependenciesMeta: - '@swc/core': - optional: true - '@swc/wasm': - optional: true - dependencies: - '@tsconfig/node10': registry.npmmirror.com/@tsconfig/node10@1.0.9 - '@tsconfig/node12': registry.npmmirror.com/@tsconfig/node12@1.0.11 - '@tsconfig/node14': registry.npmmirror.com/@tsconfig/node14@1.0.3 - '@tsconfig/node16': registry.npmmirror.com/@tsconfig/node16@1.0.4 - '@types/node': registry.npmmirror.com/@types/node@18.15.11 - arg: registry.npmmirror.com/arg@4.1.3 - create-require: registry.npmmirror.com/create-require@1.1.1 - diff: registry.npmmirror.com/diff@4.0.2 - make-error: registry.npmmirror.com/make-error@1.3.6 - source-map-support: registry.npmmirror.com/source-map-support@0.5.20 - typescript: registry.npmmirror.com/typescript@4.7.4 - yn: registry.npmmirror.com/yn@3.1.1 - dev: true - - registry.npmmirror.com/tsconfig-paths-webpack-plugin@3.5.2: - resolution: {integrity: sha512-EhnfjHbzm5IYI9YPNVIxx1moxMI4bpHD2e0zTXeDNQcwjjRaGepP7IhTHJkyDBG0CAOoxRfe7jCG630Ou+C6Pw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/tsconfig-paths-webpack-plugin/-/tsconfig-paths-webpack-plugin-3.5.2.tgz} - name: tsconfig-paths-webpack-plugin - version: 3.5.2 - dependencies: - chalk: registry.npmmirror.com/chalk@4.1.2 - enhanced-resolve: registry.npmmirror.com/enhanced-resolve@5.15.0 - tsconfig-paths: registry.npmmirror.com/tsconfig-paths@3.14.1 - dev: true - - registry.npmmirror.com/tsconfig-paths@3.14.1: - resolution: {integrity: sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz} - name: tsconfig-paths - version: 3.14.1 - dependencies: - '@types/json5': registry.npmmirror.com/@types/json5@0.0.29 - json5: registry.npmmirror.com/json5@1.0.2 - minimist: registry.npmmirror.com/minimist@1.2.8 - strip-bom: registry.npmmirror.com/strip-bom@3.0.0 - dev: true - - registry.npmmirror.com/tsconfig-paths@4.2.0: - resolution: {integrity: sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/tsconfig-paths/-/tsconfig-paths-4.2.0.tgz} - name: tsconfig-paths - version: 4.2.0 - engines: {node: '>=6'} - dependencies: - json5: registry.npmmirror.com/json5@2.2.3 - minimist: registry.npmmirror.com/minimist@1.2.8 - strip-bom: registry.npmmirror.com/strip-bom@3.0.0 - 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/tslib@2.1.0: - resolution: {integrity: sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/tslib/-/tslib-2.1.0.tgz} - name: tslib - version: 2.1.0 - - registry.npmmirror.com/tslib@2.4.0: - resolution: {integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/tslib/-/tslib-2.4.0.tgz} - name: tslib - version: 2.4.0 - - registry.npmmirror.com/tslib@2.6.2: - resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/tslib/-/tslib-2.6.2.tgz} - name: tslib - version: 2.6.2 - dev: true - - registry.npmmirror.com/tsutils@3.21.0(typescript@4.7.4): - 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.4 - dev: true - - registry.npmmirror.com/tunnel-agent@0.6.0: - resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz} - name: tunnel-agent - version: 0.6.0 - dependencies: - safe-buffer: registry.npmmirror.com/safe-buffer@5.2.1 - dev: false - - registry.npmmirror.com/tweetnacl@0.14.5: - resolution: {integrity: sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/tweetnacl/-/tweetnacl-0.14.5.tgz} - name: tweetnacl - version: 0.14.5 - dev: false - - 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-detect@4.0.8: - resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/type-detect/-/type-detect-4.0.8.tgz} - name: type-detect - version: 4.0.8 - engines: {node: '>=4'} - 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-fest@0.21.3: - resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/type-fest/-/type-fest-0.21.3.tgz} - name: type-fest - version: 0.21.3 - 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} - name: type-is - version: 1.6.18 - 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 - - registry.npmmirror.com/typedarray@0.0.6: - resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/typedarray/-/typedarray-0.0.6.tgz} - name: typedarray - version: 0.0.6 - - registry.npmmirror.com/typescript@4.7.4: - resolution: {integrity: sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/typescript/-/typescript-4.7.4.tgz} - name: typescript - version: 4.7.4 - 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} - name: universalify - version: 2.0.0 - engines: {node: '>= 10.0.0'} - dev: true - - 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} - name: unpipe - version: 1.0.0 - engines: {node: '>= 0.8'} - - registry.npmmirror.com/update-browserslist-db@1.0.11(browserslist@4.21.10): - resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz} - id: registry.npmmirror.com/update-browserslist-db/1.0.11 - name: update-browserslist-db - version: 1.0.11 - hasBin: true - peerDependencies: - browserslist: '>= 4.21.0' - dependencies: - browserslist: registry.npmmirror.com/browserslist@4.21.10 - escalade: registry.npmmirror.com/escalade@3.1.1 - picocolors: registry.npmmirror.com/picocolors@1.0.0 - dev: true - - 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.3.0 - - 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} - 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} - name: utils-merge - version: 1.0.1 - engines: {node: '>= 0.4.0'} - - registry.npmmirror.com/uuid@3.4.0: - resolution: {integrity: sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/uuid/-/uuid-3.4.0.tgz} - name: uuid - version: 3.4.0 - deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details. - hasBin: true - dev: false - - registry.npmmirror.com/uuid@8.3.2: - resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/uuid/-/uuid-8.3.2.tgz} - name: uuid - version: 8.3.2 - hasBin: true - - registry.npmmirror.com/uuid@9.0.0: - resolution: {integrity: sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/uuid/-/uuid-9.0.0.tgz} - name: uuid - version: 9.0.0 - hasBin: true - dev: false - - registry.npmmirror.com/uuid@9.0.1: - resolution: {integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/uuid/-/uuid-9.0.1.tgz} - name: uuid - version: 9.0.1 - hasBin: true - dev: false - - registry.npmmirror.com/v8-compile-cache@2.4.0: - resolution: {integrity: sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/v8-compile-cache/-/v8-compile-cache-2.4.0.tgz} - name: v8-compile-cache - version: 2.4.0 - dev: true - - registry.npmmirror.com/v8-to-istanbul@9.1.0: - resolution: {integrity: sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz} - name: v8-to-istanbul - version: 9.1.0 - engines: {node: '>=10.12.0'} - dependencies: - '@jridgewell/trace-mapping': registry.npmmirror.com/@jridgewell/trace-mapping@0.3.19 - '@types/istanbul-lib-coverage': registry.npmmirror.com/@types/istanbul-lib-coverage@2.0.4 - convert-source-map: registry.npmmirror.com/convert-source-map@1.9.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} - name: vary - version: 1.1.2 - engines: {node: '>= 0.8'} - - registry.npmmirror.com/verror@1.10.0: - resolution: {integrity: sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/verror/-/verror-1.10.0.tgz} - name: verror - version: 1.10.0 - engines: {'0': node >=0.6.0} - dependencies: - assert-plus: registry.npmmirror.com/assert-plus@1.0.0 - core-util-is: registry.npmmirror.com/core-util-is@1.0.2 - extsprintf: registry.npmmirror.com/extsprintf@1.3.0 - dev: false - - registry.npmmirror.com/walker@1.0.8: - resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/walker/-/walker-1.0.8.tgz} - name: walker - version: 1.0.8 - dependencies: - makeerror: registry.npmmirror.com/makeerror@1.0.12 - dev: true - - registry.npmmirror.com/watchpack@2.4.0: - resolution: {integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/watchpack/-/watchpack-2.4.0.tgz} - name: watchpack - version: 2.4.0 - engines: {node: '>=10.13.0'} - dependencies: - glob-to-regexp: registry.npmmirror.com/glob-to-regexp@0.4.1 - graceful-fs: registry.npmmirror.com/graceful-fs@4.2.11 - dev: true - - registry.npmmirror.com/wcwidth@1.0.1: - resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/wcwidth/-/wcwidth-1.0.1.tgz} - name: wcwidth - version: 1.0.1 - dependencies: - defaults: registry.npmmirror.com/defaults@1.0.4 - dev: true - - registry.npmmirror.com/webidl-conversions@3.0.1: - resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz} - name: webidl-conversions - version: 3.0.1 - - registry.npmmirror.com/webpack-node-externals@3.0.0: - resolution: {integrity: sha512-LnL6Z3GGDPht/AigwRh2dvL9PQPFQ8skEpVrWZXLWBYmqcaojHNN0onvHzie6rq7EWKrrBfPYqNEzTJgiwEQDQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/webpack-node-externals/-/webpack-node-externals-3.0.0.tgz} - name: webpack-node-externals - version: 3.0.0 - engines: {node: '>=6'} - dev: true - - registry.npmmirror.com/webpack-sources@3.2.3: - resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/webpack-sources/-/webpack-sources-3.2.3.tgz} - name: webpack-sources - version: 3.2.3 - engines: {node: '>=10.13.0'} - dev: true - - registry.npmmirror.com/webpack@5.73.0: - resolution: {integrity: sha512-svjudQRPPa0YiOYa2lM/Gacw0r6PvxptHj4FuEKQ2kX05ZLkjbVc5MnPs6its5j7IZljnIqSVo/OsY2X0IpHGA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/webpack/-/webpack-5.73.0.tgz} - name: webpack - version: 5.73.0 - engines: {node: '>=10.13.0'} - hasBin: true - peerDependencies: - webpack-cli: '*' - peerDependenciesMeta: - webpack-cli: - optional: true - dependencies: - '@types/eslint-scope': registry.npmmirror.com/@types/eslint-scope@3.7.4 - '@types/estree': registry.npmmirror.com/@types/estree@0.0.51 - '@webassemblyjs/ast': registry.npmmirror.com/@webassemblyjs/ast@1.11.1 - '@webassemblyjs/wasm-edit': registry.npmmirror.com/@webassemblyjs/wasm-edit@1.11.1 - '@webassemblyjs/wasm-parser': registry.npmmirror.com/@webassemblyjs/wasm-parser@1.11.1 - acorn: registry.npmmirror.com/acorn@8.10.0 - acorn-import-assertions: registry.npmmirror.com/acorn-import-assertions@1.9.0(acorn@8.10.0) - browserslist: registry.npmmirror.com/browserslist@4.21.10 - chrome-trace-event: registry.npmmirror.com/chrome-trace-event@1.0.3 - enhanced-resolve: registry.npmmirror.com/enhanced-resolve@5.15.0 - es-module-lexer: registry.npmmirror.com/es-module-lexer@0.9.3 - eslint-scope: registry.npmmirror.com/eslint-scope@5.1.1 - events: registry.npmmirror.com/events@3.3.0 - glob-to-regexp: registry.npmmirror.com/glob-to-regexp@0.4.1 - graceful-fs: registry.npmmirror.com/graceful-fs@4.2.11 - json-parse-even-better-errors: registry.npmmirror.com/json-parse-even-better-errors@2.3.1 - loader-runner: registry.npmmirror.com/loader-runner@4.3.0 - mime-types: registry.npmmirror.com/mime-types@2.1.35 - neo-async: registry.npmmirror.com/neo-async@2.6.2 - schema-utils: registry.npmmirror.com/schema-utils@3.3.0 - tapable: registry.npmmirror.com/tapable@2.2.1 - terser-webpack-plugin: registry.npmmirror.com/terser-webpack-plugin@5.3.9(webpack@5.73.0) - watchpack: registry.npmmirror.com/watchpack@2.4.0 - webpack-sources: registry.npmmirror.com/webpack-sources@3.2.3 - transitivePeerDependencies: - - '@swc/core' - - esbuild - - uglify-js - dev: true - - registry.npmmirror.com/webpack@5.88.2: - resolution: {integrity: sha512-JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/webpack/-/webpack-5.88.2.tgz} - name: webpack - version: 5.88.2 - engines: {node: '>=10.13.0'} - hasBin: true - peerDependencies: - webpack-cli: '*' - peerDependenciesMeta: - webpack-cli: - optional: true - dependencies: - '@types/eslint-scope': registry.npmmirror.com/@types/eslint-scope@3.7.4 - '@types/estree': registry.npmmirror.com/@types/estree@1.0.1 - '@webassemblyjs/ast': registry.npmmirror.com/@webassemblyjs/ast@1.11.6 - '@webassemblyjs/wasm-edit': registry.npmmirror.com/@webassemblyjs/wasm-edit@1.11.6 - '@webassemblyjs/wasm-parser': registry.npmmirror.com/@webassemblyjs/wasm-parser@1.11.6 - acorn: registry.npmmirror.com/acorn@8.10.0 - acorn-import-assertions: registry.npmmirror.com/acorn-import-assertions@1.9.0(acorn@8.10.0) - browserslist: registry.npmmirror.com/browserslist@4.21.10 - chrome-trace-event: registry.npmmirror.com/chrome-trace-event@1.0.3 - enhanced-resolve: registry.npmmirror.com/enhanced-resolve@5.15.0 - es-module-lexer: registry.npmmirror.com/es-module-lexer@1.3.1 - eslint-scope: registry.npmmirror.com/eslint-scope@5.1.1 - events: registry.npmmirror.com/events@3.3.0 - glob-to-regexp: registry.npmmirror.com/glob-to-regexp@0.4.1 - graceful-fs: registry.npmmirror.com/graceful-fs@4.2.11 - json-parse-even-better-errors: registry.npmmirror.com/json-parse-even-better-errors@2.3.1 - loader-runner: registry.npmmirror.com/loader-runner@4.3.0 - mime-types: registry.npmmirror.com/mime-types@2.1.35 - neo-async: registry.npmmirror.com/neo-async@2.6.2 - schema-utils: registry.npmmirror.com/schema-utils@3.3.0 - tapable: registry.npmmirror.com/tapable@2.2.1 - terser-webpack-plugin: registry.npmmirror.com/terser-webpack-plugin@5.3.9(webpack@5.88.2) - watchpack: registry.npmmirror.com/watchpack@2.4.0 - webpack-sources: registry.npmmirror.com/webpack-sources@3.2.3 - transitivePeerDependencies: - - '@swc/core' - - esbuild - - uglify-js - dev: true - - registry.npmmirror.com/whatwg-url@5.0.0: - resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/whatwg-url/-/whatwg-url-5.0.0.tgz} - name: whatwg-url - version: 5.0.0 - dependencies: - tr46: registry.npmmirror.com/tr46@0.0.3 - webidl-conversions: registry.npmmirror.com/webidl-conversions@3.0.1 - - 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} - name: which - version: 2.0.2 - engines: {node: '>= 8'} - hasBin: true - dependencies: - isexe: registry.npmmirror.com/isexe@2.0.0 - dev: true - - registry.npmmirror.com/windows-release@4.0.0: - resolution: {integrity: sha512-OxmV4wzDKB1x7AZaZgXMVsdJ1qER1ed83ZrTYd5Bwq2HfJVg3DJS8nqlAG4sMoJ7mu8cuRmLEYyU13BKwctRAg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/windows-release/-/windows-release-4.0.0.tgz} - name: windows-release - version: 4.0.0 - engines: {node: '>=10'} - dependencies: - execa: registry.npmmirror.com/execa@4.1.0 - dev: true - - registry.npmmirror.com/wrap-ansi@7.0.0: - resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz} - name: wrap-ansi - version: 7.0.0 - engines: {node: '>=10'} - dependencies: - ansi-styles: registry.npmmirror.com/ansi-styles@4.3.0 - string-width: registry.npmmirror.com/string-width@4.2.3 - strip-ansi: registry.npmmirror.com/strip-ansi@6.0.1 - dev: true - - registry.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/write-file-atomic@4.0.2: - resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/write-file-atomic/-/write-file-atomic-4.0.2.tgz} - name: write-file-atomic - version: 4.0.2 - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - dependencies: - imurmurhash: registry.npmmirror.com/imurmurhash@0.1.4 - signal-exit: registry.npmmirror.com/signal-exit@3.0.7 - dev: true - - registry.npmmirror.com/xtend@4.0.2: - resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/xtend/-/xtend-4.0.2.tgz} - name: xtend - version: 4.0.2 - engines: {node: '>=0.4'} - - registry.npmmirror.com/y18n@5.0.8: - resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/y18n/-/y18n-5.0.8.tgz} - name: y18n - version: 5.0.8 - engines: {node: '>=10'} - dev: true - - registry.npmmirror.com/yallist@3.1.1: - resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/yallist/-/yallist-3.1.1.tgz} - name: yallist - version: 3.1.1 - dev: true - - 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 - - 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} - name: yaml - version: 1.10.2 - engines: {node: '>= 6'} - dev: true - - registry.npmmirror.com/yargs-parser@21.0.1: - resolution: {integrity: sha512-9BK1jFpLzJROCI5TzwZL/TU4gqjK5xiHV/RfWLOahrjAko/e4DJkRDZQXfvqAsiZzzYhgAzbgz6lg48jcm4GLg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/yargs-parser/-/yargs-parser-21.0.1.tgz} - name: yargs-parser - version: 21.0.1 - engines: {node: '>=12'} - dev: true - - registry.npmmirror.com/yargs-parser@21.1.1: - resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/yargs-parser/-/yargs-parser-21.1.1.tgz} - name: yargs-parser - version: 21.1.1 - engines: {node: '>=12'} - dev: true - - registry.npmmirror.com/yargs@17.7.2: - resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/yargs/-/yargs-17.7.2.tgz} - name: yargs - version: 17.7.2 - engines: {node: '>=12'} - dependencies: - cliui: registry.npmmirror.com/cliui@8.0.1 - escalade: registry.npmmirror.com/escalade@3.1.1 - get-caller-file: registry.npmmirror.com/get-caller-file@2.0.5 - require-directory: registry.npmmirror.com/require-directory@2.1.1 - string-width: registry.npmmirror.com/string-width@4.2.3 - y18n: registry.npmmirror.com/y18n@5.0.8 - yargs-parser: registry.npmmirror.com/yargs-parser@21.1.1 - dev: true - - registry.npmmirror.com/yn@3.1.1: - resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/yn/-/yn-3.1.1.tgz} - name: yn - version: 3.1.1 - engines: {node: '>=6'} - dev: true - - registry.npmmirror.com/yocto-queue@0.1.0: - resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/yocto-queue/-/yocto-queue-0.1.0.tgz} - name: yocto-queue - version: 0.1.0 - engines: {node: '>=10'} - dev: true diff --git a/src/laoyou_backend/prisma/migrations/20231027142628_init/migration.sql b/src/laoyou_backend/prisma/migrations/20231027142628_init/migration.sql deleted file mode 100644 index 463eb3e..0000000 --- a/src/laoyou_backend/prisma/migrations/20231027142628_init/migration.sql +++ /dev/null @@ -1,108 +0,0 @@ --- CreateTable -CREATE TABLE `User` ( - `id` INTEGER NOT NULL AUTO_INCREMENT, - `openid` VARCHAR(191) NOT NULL, - `nickname` VARCHAR(191) NOT NULL DEFAULT '微信用户', - `avatar` VARCHAR(191) NOT NULL DEFAULT 'https://laoyou-static-1300131488.cos.ap-beijing.myqcloud.com/user.png', - `sex` INTEGER NOT NULL, - `city` VARCHAR(191) NOT NULL, - `birthday` VARCHAR(191) NOT NULL, - `face_auth_status` BOOLEAN NOT NULL DEFAULT false, - `face_url` VARCHAR(191) NULL, - `createdAt` DATETIME(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3), - `updatedAt` DATETIME(3) NOT NULL, - `commonShareCount` INTEGER NOT NULL DEFAULT 0, - `videoShareCount` INTEGER NOT NULL DEFAULT 0, - `commentCount` INTEGER NOT NULL DEFAULT 0, - - UNIQUE INDEX `User_openid_key`(`openid`), - PRIMARY KEY (`id`) -) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; - --- CreateTable -CREATE TABLE `CommonShare` ( - `id` INTEGER NOT NULL AUTO_INCREMENT, - `title` VARCHAR(191) NOT NULL, - `content` TEXT NOT NULL, - `images` TEXT NOT NULL, - `cover` VARCHAR(191) NOT NULL, - `like` INTEGER NOT NULL, - `createdAt` DATETIME(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3), - `updatedAt` DATETIME(3) NOT NULL, - `openid` VARCHAR(191) NOT NULL, - `key_words` VARCHAR(191) NULL, - - PRIMARY KEY (`id`) -) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; - --- CreateTable -CREATE TABLE `VideoShare` ( - `id` INTEGER NOT NULL AUTO_INCREMENT, - `title` VARCHAR(191) NOT NULL, - `video` VARCHAR(191) NOT NULL, - `like` INTEGER NOT NULL, - `createdAt` DATETIME(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3), - `updatedAt` DATETIME(3) NOT NULL, - `openid` VARCHAR(191) NOT NULL, - - PRIMARY KEY (`id`) -) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; - --- CreateTable -CREATE TABLE `CommonShareComment` ( - `id` INTEGER NOT NULL AUTO_INCREMENT, - `content` VARCHAR(191) NOT NULL, - `createdAt` DATETIME(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3), - `updatedAt` DATETIME(3) NOT NULL, - `openid` VARCHAR(191) NOT NULL, - `like` INTEGER NOT NULL DEFAULT 0, - `share_id` INTEGER NULL, - `fa_comment_id` INTEGER NULL, - - PRIMARY KEY (`id`) -) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; - --- CreateTable -CREATE TABLE `CommonShareLike` ( - `id` INTEGER NOT NULL AUTO_INCREMENT, - `createdAt` DATETIME(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3), - `updatedAt` DATETIME(3) NOT NULL, - `openid` VARCHAR(191) NOT NULL, - `share_id_list` VARCHAR(191) NOT NULL, - - UNIQUE INDEX `CommonShareLike_openid_key`(`openid`), - PRIMARY KEY (`id`) -) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; - --- CreateTable -CREATE TABLE `CommonShareCommentLike` ( - `id` INTEGER NOT NULL AUTO_INCREMENT, - `createdAt` DATETIME(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3), - `updatedAt` DATETIME(3) NOT NULL, - `openid` VARCHAR(191) NOT NULL, - `comment_id_list` VARCHAR(191) NOT NULL, - - UNIQUE INDEX `CommonShareCommentLike_openid_key`(`openid`), - PRIMARY KEY (`id`) -) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; - --- AddForeignKey -ALTER TABLE `CommonShare` ADD CONSTRAINT `CommonShare_openid_fkey` FOREIGN KEY (`openid`) REFERENCES `User`(`openid`) ON DELETE RESTRICT ON UPDATE CASCADE; - --- AddForeignKey -ALTER TABLE `VideoShare` ADD CONSTRAINT `VideoShare_openid_fkey` FOREIGN KEY (`openid`) REFERENCES `User`(`openid`) ON DELETE RESTRICT ON UPDATE CASCADE; - --- AddForeignKey -ALTER TABLE `CommonShareComment` ADD CONSTRAINT `CommonShareComment_openid_fkey` FOREIGN KEY (`openid`) REFERENCES `User`(`openid`) ON DELETE RESTRICT ON UPDATE CASCADE; - --- AddForeignKey -ALTER TABLE `CommonShareComment` ADD CONSTRAINT `CommonShareComment_share_id_fkey` FOREIGN KEY (`share_id`) REFERENCES `CommonShare`(`id`) ON DELETE SET NULL ON UPDATE CASCADE; - --- AddForeignKey -ALTER TABLE `CommonShareComment` ADD CONSTRAINT `CommonShareComment_fa_comment_id_fkey` FOREIGN KEY (`fa_comment_id`) REFERENCES `CommonShareComment`(`id`) ON DELETE SET NULL ON UPDATE CASCADE; - --- AddForeignKey -ALTER TABLE `CommonShareLike` ADD CONSTRAINT `CommonShareLike_openid_fkey` FOREIGN KEY (`openid`) REFERENCES `User`(`openid`) ON DELETE RESTRICT ON UPDATE CASCADE; - --- AddForeignKey -ALTER TABLE `CommonShareCommentLike` ADD CONSTRAINT `CommonShareCommentLike_openid_fkey` FOREIGN KEY (`openid`) REFERENCES `User`(`openid`) ON DELETE RESTRICT ON UPDATE CASCADE; diff --git a/src/laoyou_backend/prisma/migrations/migration_lock.toml b/src/laoyou_backend/prisma/migrations/migration_lock.toml deleted file mode 100644 index e5a788a..0000000 --- a/src/laoyou_backend/prisma/migrations/migration_lock.toml +++ /dev/null @@ -1,3 +0,0 @@ -# Please do not edit this file manually -# It should be added in your version-control system (i.e. Git) -provider = "mysql" \ No newline at end of file diff --git a/src/laoyou_backend/prisma/schema.prisma b/src/laoyou_backend/prisma/schema.prisma deleted file mode 100644 index 151e5f9..0000000 --- a/src/laoyou_backend/prisma/schema.prisma +++ /dev/null @@ -1,99 +0,0 @@ -// This is your Prisma schema file, -// learn more about it in the docs: https://pris.ly/d/prisma-schema - -generator client { - provider = "prisma-client-js" -} - -datasource db { - provider = "mysql" - url = env("DATABASE_URL") -} - -model User { - id Int @id @default(autoincrement()) - openid String @unique - nickname String @default("微信用户") - avatar String @default("https://laoyou-static-1300131488.cos.ap-beijing.myqcloud.com/user.png") - sex Int - city String - birthday String - face_auth_status Boolean @default(false) - face_url String? - createdAt DateTime @default(now()) - updatedAt DateTime @updatedAt - // commonShare count - commonShareCount Int @default(0) - // videoShare count - videoShareCount Int @default(0) - // comment count - commentCount Int @default(0) - // 建立 User 与 Share 的关联关系 - common_shares CommonShare[] @relation("commonShare") - video_shares VideoShare[] @relation("videoShare") - // VideoShare VideoShare[] @relation("videoShare") - Comment CommonShareComment[] @relation("user_comment") - CommonShareLike CommonShareLike[] - CommonShareCommentLike CommonShareCommentLike[] -} - -model CommonShare { - id Int @id @default(autoincrement()) - title String - content String @db.Text - images String @db.Text - cover String - like Int - createdAt DateTime @default(now()) - updatedAt DateTime @updatedAt - // 使用 openid 字段与 User 表建立关联 - openid String - user User @relation("commonShare", fields: [openid], references: [openid]) - Comment CommonShareComment[] @relation("commshare_comment") - key_words String? -} - -model VideoShare { - id Int @id @default(autoincrement()) - title String - video String - like Int - createdAt DateTime @default(now()) - updatedAt DateTime @updatedAt - // 使用 openid 字段与 User 表建立关联 - openid String - user User @relation("videoShare", fields: [openid], references: [openid]) -} - -model CommonShareComment { - id Int @id @default(autoincrement()) - content String - createdAt DateTime @default(now()) - updatedAt DateTime @updatedAt - openid String - like Int @default(0) - user User @relation("user_comment", fields: [openid], references: [openid]) - share_id Int? - commonshare CommonShare? @relation("commshare_comment", fields: [share_id], references: [id]) - sonComment CommonShareComment[] @relation("sonComment") - fa_comment_id Int? - fa_comment CommonShareComment? @relation("sonComment", fields: [fa_comment_id], references: [id]) -} - -model CommonShareLike { - id Int @id @default(autoincrement()) - createdAt DateTime @default(now()) - updatedAt DateTime @updatedAt - openid String @unique - share_id_list String - user User @relation(fields: [openid], references: [openid]) -} - -model CommonShareCommentLike { - id Int @id @default(autoincrement()) - createdAt DateTime @default(now()) - updatedAt DateTime @updatedAt - openid String @unique - comment_id_list String - user User @relation(fields: [openid], references: [openid]) -} diff --git a/src/laoyou_backend/src/app.controller.ts b/src/laoyou_backend/src/app.controller.ts deleted file mode 100644 index 645f7c6..0000000 --- a/src/laoyou_backend/src/app.controller.ts +++ /dev/null @@ -1,16 +0,0 @@ -import { Controller, Get } from '@nestjs/common'; -import { AppService } from './app.service'; -import { HttpService } from './modules/http/http.service'; - -@Controller() -export class AppController { - constructor(private readonly appService: AppService, - private readonly httpService: HttpService - ) { } - - @Get('hello') - getHello(): string { - return this.appService.getHello(); - } - -} diff --git a/src/laoyou_backend/src/app.module.ts b/src/laoyou_backend/src/app.module.ts deleted file mode 100644 index fa7cccc..0000000 --- a/src/laoyou_backend/src/app.module.ts +++ /dev/null @@ -1,44 +0,0 @@ -import { CacheModule, Module } from '@nestjs/common'; -import { AppController } from './app.controller'; -import { AppService } from './app.service'; -import { AuthModule } from './modules/auth/auth.module'; -import { CommentModule } from './modules/comment/comment.module'; -import { FileUploadModule } from './modules/file-upload/file-upload.module'; -import { HttpModule } from './modules/http/http.module'; -import { PrismaModule } from './modules/prisma/prisma.module'; -import { UserModule } from './modules/user/user.module'; -import { CommonShareModule } from './modules/commonShare/common-share.module' -import { LikeModule } from './modules/like/like.module'; -import { ScheduleModule } from './modules/schedule/schedule.module'; -import { ApiModule } from './modules/api/api.module'; -import { TestModule } from './test/test.module'; -import { ConfigModule } from '@nestjs/config'; -import { FaceModule } from './modules/face/face.module'; -import { NewsModule } from './modules/news/news.module'; - - -@Module({ - imports: [ - UserModule, - PrismaModule, - FileUploadModule, - AuthModule, - HttpModule, - CommentModule, - CommonShareModule, - LikeModule, - ScheduleModule, - ApiModule, - TestModule, - ConfigModule.forRoot({ - isGlobal: true, - envFilePath: '.env' - }), - FaceModule, - CacheModule.register(), - NewsModule - ], - controllers: [AppController], - providers: [AppService], -}) -export class AppModule { } diff --git a/src/laoyou_backend/src/app.service.ts b/src/laoyou_backend/src/app.service.ts deleted file mode 100644 index 927d7cc..0000000 --- a/src/laoyou_backend/src/app.service.ts +++ /dev/null @@ -1,8 +0,0 @@ -import { Injectable } from '@nestjs/common'; - -@Injectable() -export class AppService { - getHello(): string { - return 'Hello World!'; - } -} diff --git a/src/laoyou_backend/src/decorator/auth.decorator.ts b/src/laoyou_backend/src/decorator/auth.decorator.ts deleted file mode 100644 index db7e1af..0000000 --- a/src/laoyou_backend/src/decorator/auth.decorator.ts +++ /dev/null @@ -1,6 +0,0 @@ -import { UseGuards, applyDecorators } from "@nestjs/common"; -import { AuthGuard } from "@nestjs/passport"; - -export function Auth() { - return applyDecorators(UseGuards(AuthGuard('jwt'))) -} \ No newline at end of file diff --git a/src/laoyou_backend/src/decorator/imgUpload.decorator.ts b/src/laoyou_backend/src/decorator/imgUpload.decorator.ts deleted file mode 100644 index 1d633bc..0000000 --- a/src/laoyou_backend/src/decorator/imgUpload.decorator.ts +++ /dev/null @@ -1,24 +0,0 @@ -import { UseInterceptors, applyDecorators } from "@nestjs/common"; -import { FileInterceptor } from "@nestjs/platform-express"; -import { FileTooLargeException, InvalidFileTypeException } from "../error/fileError"; - -export function ImgUploadInterceptors() { - return applyDecorators(UseInterceptors( - FileInterceptor('img', { - fileFilter: (req, file, callback) => { - // 限制文件大小最大为 2mb - if (file.size > 2 * 1024 * 1024) { - callback(new FileTooLargeException(), false); // 拒绝上传 - } - - // - const allowedMimes = ['image/jpeg', 'image/png', 'image/webp']; // 允许的图片上传类型 - if (allowedMimes.includes(file.mimetype)) { - callback(null, true); // 允许上传 - } else { - callback(new InvalidFileTypeException('图片'), false); // 拒绝上传 - } - }, - }) - )) -} \ No newline at end of file diff --git a/src/laoyou_backend/src/decorator/index.ts b/src/laoyou_backend/src/decorator/index.ts deleted file mode 100644 index ead5b75..0000000 --- a/src/laoyou_backend/src/decorator/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from './auth.decorator' -export * from './imgUpload.decorator' \ No newline at end of file diff --git a/src/laoyou_backend/src/dto/share/commonShare.ts b/src/laoyou_backend/src/dto/share/commonShare.ts deleted file mode 100644 index 9667f0e..0000000 --- a/src/laoyou_backend/src/dto/share/commonShare.ts +++ /dev/null @@ -1,8 +0,0 @@ -class CommonShareDto { - readonly id?: number - readonly title: string - readonly content: string - readonly images: string - // 使用 openid 字段与 User 表建立关联 - readonly openid: string -} \ No newline at end of file diff --git a/src/laoyou_backend/src/dto/share/videoShare.ts b/src/laoyou_backend/src/dto/share/videoShare.ts deleted file mode 100644 index 9e5128f..0000000 --- a/src/laoyou_backend/src/dto/share/videoShare.ts +++ /dev/null @@ -1,7 +0,0 @@ -class VideoShareDto { - readonly id: number - readonly title: String - readonly video: String - // 使用 openid 字段与 User 表建立关联 - readonly openid: String -} \ No newline at end of file diff --git a/src/laoyou_backend/src/dto/user/user.ts b/src/laoyou_backend/src/dto/user/user.ts deleted file mode 100644 index d6fc0cd..0000000 --- a/src/laoyou_backend/src/dto/user/user.ts +++ /dev/null @@ -1,10 +0,0 @@ -export class UserDto { - id?: number; - openid?: string - nickname?: string; - avatar?: string; - birthday?: string; - local?: string; - sex?: number; - city?: string; -} \ No newline at end of file diff --git a/src/laoyou_backend/src/enum/baidu.ts b/src/laoyou_backend/src/enum/baidu.ts deleted file mode 100644 index 254f9d0..0000000 --- a/src/laoyou_backend/src/enum/baidu.ts +++ /dev/null @@ -1,4 +0,0 @@ -export const enum API_TYPE { - NLP = "nlp", - FACE = "face", -} \ No newline at end of file diff --git a/src/laoyou_backend/src/enum/httpCode.ts b/src/laoyou_backend/src/enum/httpCode.ts deleted file mode 100644 index 670559d..0000000 --- a/src/laoyou_backend/src/enum/httpCode.ts +++ /dev/null @@ -1,5 +0,0 @@ -export const enum HttpCode { - SUCCESS = 201, - LOGIN_VERIFY_ERROR = 400, - LOGIN_ERROR = 401 -} diff --git a/src/laoyou_backend/src/error/fileError.ts b/src/laoyou_backend/src/error/fileError.ts deleted file mode 100644 index 4c60cb4..0000000 --- a/src/laoyou_backend/src/error/fileError.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { HttpException, HttpStatus } from '@nestjs/common'; - -// 图片格式错误 -export class InvalidFileTypeException extends HttpException { - constructor(filetype: String) { - super(`上传${filetype}格式错误`, HttpStatus.BAD_REQUEST); - } -} - - -// 文件大小超过限制 -export class FileTooLargeException extends HttpException { - constructor() { - super('文件大小超过限制', HttpStatus.BAD_REQUEST); - } -} - -//空文件异常 -export class EmptyFileException extends HttpException { - constructor() { - super('上传文件为空', HttpStatus.BAD_REQUEST); - } -} - -// 文件上传异常 -export class FileUploadException extends HttpException { - constructor() { - super('文件上传失败', HttpStatus.BAD_REQUEST); - } -} - - diff --git a/src/laoyou_backend/src/error/login.ts b/src/laoyou_backend/src/error/login.ts deleted file mode 100644 index b2001bc..0000000 --- a/src/laoyou_backend/src/error/login.ts +++ /dev/null @@ -1,16 +0,0 @@ -import { HttpException, HttpStatus } from '@nestjs/common'; -import { HttpCode } from '../enum/httpCode' - -// 图片格式错误 -export class LoginVerifyException extends HttpException { - constructor() { - super('验证码错误', HttpCode.LOGIN_VERIFY_ERROR); - } -} - -// 登录错误 -export class LoginErrorException extends HttpException { - constructor() { - super('登录错误', HttpCode.LOGIN_ERROR); - } -} \ No newline at end of file diff --git a/src/laoyou_backend/src/error/post.ts b/src/laoyou_backend/src/error/post.ts deleted file mode 100644 index 8f18dcc..0000000 --- a/src/laoyou_backend/src/error/post.ts +++ /dev/null @@ -1,14 +0,0 @@ -import { HttpException, HttpStatus } from "@nestjs/common"; - -export class ShareCreateException extends HttpException { - constructor() { - super(`分享上传失败`, HttpStatus.BAD_REQUEST); - } -} - -// 分享查询失败 -export class ShareQueryException extends HttpException { - constructor() { - super(`分享查询失败`, HttpStatus.BAD_REQUEST); - } -} \ No newline at end of file diff --git a/src/laoyou_backend/src/error/user.ts b/src/laoyou_backend/src/error/user.ts deleted file mode 100644 index 00abf9c..0000000 --- a/src/laoyou_backend/src/error/user.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { HttpException, HttpStatus } from "@nestjs/common"; - -export class UserUpdateException extends HttpException { - constructor(message: string) { - super(message, HttpStatus.BAD_REQUEST); - } -} \ No newline at end of file diff --git a/src/laoyou_backend/src/interceptor/auth.interceptor.ts b/src/laoyou_backend/src/interceptor/auth.interceptor.ts deleted file mode 100644 index 4d45131..0000000 --- a/src/laoyou_backend/src/interceptor/auth.interceptor.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { CallHandler, ExecutionContext, Injectable, NestInterceptor } from '@nestjs/common'; -import { Observable } from 'rxjs'; -import { LoginVerifyException } from 'src/error/login'; -import { getSessionKey, hasUser } from 'src/store'; - - -@Injectable() -export class AuthInterceptor implements NestInterceptor { - intercept(context: ExecutionContext, next: CallHandler): Observable { - const req = context.switchToHttp().getRequest(); - const openId = req.headers['openid']; - const seesionKey = req.headers['sessionkey']; - - if (hasUser(openId) && getSessionKey(openId) === seesionKey) { - return next.handle(); - } else { - throw new LoginVerifyException() - } - } -} diff --git a/src/laoyou_backend/src/main.ts b/src/laoyou_backend/src/main.ts deleted file mode 100644 index 8b9bd16..0000000 --- a/src/laoyou_backend/src/main.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { NestFactory } from '@nestjs/core'; -import { AppModule } from './app.module'; -import { global_prefix, port } from './utils/config/index' - - -async function bootstrap() { - const app = await NestFactory.create(AppModule); - app.setGlobalPrefix(global_prefix); - await app.listen(port); -} - -bootstrap(); diff --git a/src/laoyou_backend/src/modules/api/api.controller.ts b/src/laoyou_backend/src/modules/api/api.controller.ts deleted file mode 100644 index 1f7519c..0000000 --- a/src/laoyou_backend/src/modules/api/api.controller.ts +++ /dev/null @@ -1,35 +0,0 @@ -import { Body, Controller, Post, Req } from '@nestjs/common'; -import { Auth } from 'src/decorator'; -import { Request } from 'express'; -import { ApiService } from './api.service'; - -@Controller('api') -export class ApiController { - - constructor( - private readonly apiService: ApiService - ) { } - - - @Post('wxrun') - @Auth() - wxrun(@Req() req: Request, @Body() body: any) { - const user = req.user as any; - const session_key = user.session_key - return this.apiService.wxrun(session_key, body.encryptedData, body.iv) - } - - @Post('weather') - @Auth() - async getWeather() { - return this.apiService.getWeather(); - } - - - @Post('getKeywords') - @Auth() - async getKeyWords(@Body('content') content: string, @Body('title') title: string) { - return (await this.apiService.getKeywords(title, content)).data; - } - -} diff --git a/src/laoyou_backend/src/modules/api/api.module.ts b/src/laoyou_backend/src/modules/api/api.module.ts deleted file mode 100644 index a505f81..0000000 --- a/src/laoyou_backend/src/modules/api/api.module.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { Global, Module } from '@nestjs/common'; -import { ApiController } from './api.controller'; -import { ApiService } from './api.service'; - - -@Global() -@Module({ - controllers: [ApiController], - providers: [ApiService], - exports: [ApiService] -}) -export class ApiModule { } diff --git a/src/laoyou_backend/src/modules/api/api.service.ts b/src/laoyou_backend/src/modules/api/api.service.ts deleted file mode 100644 index 4ae51ce..0000000 --- a/src/laoyou_backend/src/modules/api/api.service.ts +++ /dev/null @@ -1,95 +0,0 @@ -import { InjectRedis, Redis } from '@nestjs-modules/ioredis'; -import { Injectable } from '@nestjs/common'; -import { ConfigService } from '@nestjs/config'; -import { API_TYPE } from 'src/enum/baidu'; -import { BAIDU_ACCESS_TOKEN_KEY } from 'src/store/redis/keys'; -import { WXBizDataCrypt } from '../../utils/fn/crypt'; -import { HttpService } from '../http/http.service'; - -@Injectable() -export class ApiService { - private readonly weatherUrl: string; - private readonly appid: string; - private readonly gaodeKey: string; - // nlp - private readonly baidu_nlp_api_key: string; - private readonly baidu_nlp_secret_key: string; - // face - private readonly baidu_face_api_key: string; - private readonly baidu_face_secret_key: string; - - constructor( - private configService: ConfigService, - @InjectRedis() private readonly redis: Redis, - private readonly httpService: HttpService, - ) { - this.appid = configService.get('WX_APP_ID'); - this.gaodeKey = configService.get('GAODE_KEY'); - this.weatherUrl = configService.get('WEATHER_URL'); - this.baidu_nlp_api_key = configService.get('BAIDU_NLP_API_KEY'); - this.baidu_nlp_secret_key = configService.get('BAIDU_NLP_SECRET_KEY'); - this.baidu_face_api_key = configService.get('BAIDU_FACE_API_KEY'); - this.baidu_face_secret_key = configService.get('BAIDU_FACE_SECRET_KEY'); - } - - - - - wxrun(session_key: string, encryptedData: string, iv: string) { - const pc = new WXBizDataCrypt(process.env.WX_APP_ID, session_key) - const data = pc.decryptData(encryptedData, iv) - return data; - } - - - // 天津市 120000 022 - async getWeather() { - return (await this.httpService.get(this.weatherUrl, { - params: { - key: this.gaodeKey, - city: '120000', - } - }) as any).data; - } - - // 获得百度 accessToken - async getBaiduOauthAccessToken(type: string, ak: string, sk: string) { - const access_token_from_redis = await this.redis.get(BAIDU_ACCESS_TOKEN_KEY + ':' + type); - if (access_token_from_redis) { - return access_token_from_redis; - } - const res = await this.httpService.get('https://aip.baidubce.com/oauth/2.0/token', { - params: { - grant_type: 'client_credentials', - client_id: ak, - client_secret: sk - } - }) - const expires_in = (res.data as any).expires_in; - const access_token = (res.data as any).access_token; - - // 存入redis - this.redis.set(BAIDU_ACCESS_TOKEN_KEY + ':' + type, access_token, 'EX', expires_in); - return access_token; - } - - // 根据文章标题和内容提取关键词 - async getKeywords(title: string, content: string) { - return await this.httpService.post('https://aip.baidubce.com/rpc/2.0/nlp/v1/topic', - { - title, - content - }, - { - params: { - access_token: await this.getBaiduOauthAccessToken(API_TYPE.NLP, this.baidu_nlp_api_key, this.baidu_nlp_secret_key), - charset: 'UTF-8' - }, - headers: { - 'Content-Type': 'application/json', - Accept: 'application/json' - } - }) - } - -} diff --git a/src/laoyou_backend/src/modules/auth/auth.controller.ts b/src/laoyou_backend/src/modules/auth/auth.controller.ts deleted file mode 100644 index 6ecdab4..0000000 --- a/src/laoyou_backend/src/modules/auth/auth.controller.ts +++ /dev/null @@ -1,51 +0,0 @@ -import { Body, Controller, Get, Post, Res } from '@nestjs/common'; -import { Response } from 'express'; -import { Auth } from 'src/decorator/auth.decorator'; -import { AuthService } from './auth.service'; - -@Controller('auth') -export class AuthController { - constructor( - private readonly authService: AuthService - ) { } - - //登陆 - @Post('login') - async login(@Body('code') code: string, @Res() res: Response) { - // 在这里进行登录逻辑,验证用户信息等 - try { - const login_info = (await this.authService.login(code)); - // 设置 Access-Control-Expose-Headers : 'Key' - // 用于前端获取自定义的响应头 - res.header('Access-Control-Expose-Headers', 'authorization,token-max-age,username'); - res.header('authorization', `Bearer ${login_info.token}`); - res.header('token-max-age', process.env.JWT_EXPIRES_IN); - return res.status(201).json({ - message: 'Login successful', - user: login_info.user - }); - } catch (error) { - return res.status(401).json({ message: 'Unauthorized' }); - } - } - - @Post('faceLogin') - async faceLogin(@Body('face_url') face_url: string, @Res() res: Response) { - try { - const login_info = (await this.authService.faceLogin(face_url)); - // 设置 Access-Control-Expose-Headers : 'Key' - // 用于前端获取自定义的响应头 - res.header('Access-Control-Expose-Headers', 'authorization,token-max-age,username'); - res.header('authorization', `Bearer ${login_info.token}`); - res.header('token-max-age', process.env.JWT_EXPIRES_IN); - return res.status(201).json({ - message: 'Login successful', - user: login_info.user - }); - } catch (error) { - return res.status(401).json({ message: 'Unauthorized' }); - } - - } - -} diff --git a/src/laoyou_backend/src/modules/auth/auth.module.ts b/src/laoyou_backend/src/modules/auth/auth.module.ts deleted file mode 100644 index ba322ea..0000000 --- a/src/laoyou_backend/src/modules/auth/auth.module.ts +++ /dev/null @@ -1,28 +0,0 @@ -import { Module } from '@nestjs/common'; -import { AuthService } from './auth.service'; -import { AuthController } from './auth.controller'; -import { JwtModule } from '@nestjs/jwt'; -import { ConfigModule } from '@nestjs/config' -import { UserService } from '../user/user.service'; -import { JwtStrategy } from 'src/strategy/jwt.strategy'; -import COS from 'cos-nodejs-sdk-v5' -import { FaceService } from '../face/face.service'; - -@Module({ - imports: [ - JwtModule.registerAsync({ - imports: [ConfigModule], - useFactory: async () => { - return { - secret: process.env.JWT_SECRET_KEY, - signOptions: { - expiresIn: process.env.JWT_EXPIRES_IN - } - } - } - }) - ], - controllers: [AuthController], - providers: [AuthService, UserService, JwtStrategy, FaceService] -}) -export class AuthModule { } diff --git a/src/laoyou_backend/src/modules/auth/auth.service.ts b/src/laoyou_backend/src/modules/auth/auth.service.ts deleted file mode 100644 index 694d7fd..0000000 --- a/src/laoyou_backend/src/modules/auth/auth.service.ts +++ /dev/null @@ -1,90 +0,0 @@ -import { Injectable } from '@nestjs/common'; -import { JwtService } from '@nestjs/jwt'; -import { LoginErrorException } from 'src/error/login'; -import { HttpService } from '../http/http.service'; -import { UserService } from '../user/user.service'; -import { ApiService } from '../api/api.service'; -import { filterObject } from '../../utils/fn/format' -import { FaceService } from '../face/face.service'; - - -@Injectable() -export class AuthService { - private readonly wx_login_url = process.env.WX_LOGIN_URL; - - constructor( - private readonly jwtService: JwtService, - private readonly httpService: HttpService, - private readonly userService: UserService, - private readonly faceService: FaceService - ) { } - - async login(code: string) { - try { - const res = await this.httpService.get(this.wx_login_url, { - params: { - appid: process.env.WX_APP_ID, - secret: process.env.WX_APP_SECRET, - js_code: code, - grant_type: 'authorization_code' - } - }) - const login_info = res.data; - const openid = login_info.openid; - let user = await this.userService.findUserByOpenId(openid); - if (user === null) { - // 创建用户 - user = await this.userService.createUser(openid); - } - return { - user, - token: (await this.token(login_info)).token - } - } catch (error) { - console.log(error); - throw new LoginErrorException(); - } - } - - - // { - // session_key: 'iEaVjg1JmLWrUI2dHfuYpg==', - // openid: 'oyBXy5ZPz7etmnwy34TICz2QT0O4' - // } - - async faceLogin(face_url: string) { - - try { - const auth_res = await this.faceService.faceMatch(face_url); - // 完全不匹配 - if (auth_res.result.user_list.length === 0) { - throw new LoginErrorException(); - } - // 匹配度低于80 - if (auth_res.result.user_list[0].score < 80) { - throw new LoginErrorException(); - } - const openid = auth_res.result.user_list[0].user_id; - // 查询用户 - let user = await this.userService.findUserByOpenId(openid); - // 用户不存在 - if (user === null) { - throw new LoginErrorException(); - } - return { - user, - token: (await this.token({ openid })).token - } - } catch (error) { - console.log('face login:', error); - throw new LoginErrorException(); - } - - } - - async token(payload: any) { - return { - token: await this.jwtService.signAsync(payload) - } - } -} diff --git a/src/laoyou_backend/src/modules/comment/comment.controller.ts b/src/laoyou_backend/src/modules/comment/comment.controller.ts deleted file mode 100644 index 9923beb..0000000 --- a/src/laoyou_backend/src/modules/comment/comment.controller.ts +++ /dev/null @@ -1,44 +0,0 @@ -import { Body, Controller, Get, ParseIntPipe, Post, Query, Req } from '@nestjs/common'; -import { Auth } from '../../decorator'; -import { Request } from 'express'; -import { CommentService } from './comment.service'; - -@Controller('comment') -export class CommentController { - - constructor( - private readonly commentService: CommentService, - ) { } - - @Post('add') - @Auth() - createPost(@Req() req: Request, @Body() comment) { - - const user = req.user as any; - const openid = user.openid; - comment.openid = openid; - return this.commentService.createComment(comment); - } - - - @Get('getCommonShareComment') - @Auth() - getCommonShareComment(@Query('share_id', ParseIntPipe) common_share_id: number) { - return this.commentService.getCommentByShareId(common_share_id); - } - - @Get('getUserSelfCommentCnt') - @Auth() - getSelfCommentCount(@Req() req: Request) { - const user = req.user as any; - const openid = user.openid; - return this.commentService.getSelfCommentCount(openid); - } - - @Get('list') - @Auth() - getCommentList(@Query('page', ParseIntPipe) page: number, @Query('size', ParseIntPipe) size: number, @Query('openid') openid?: string) { - return this.commentService.getCommentList(page, size, openid); - } - -} diff --git a/src/laoyou_backend/src/modules/comment/comment.module.ts b/src/laoyou_backend/src/modules/comment/comment.module.ts deleted file mode 100644 index 3b745d8..0000000 --- a/src/laoyou_backend/src/modules/comment/comment.module.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { Module } from '@nestjs/common'; -import { CommentController } from './comment.controller'; -import { CommentService } from './comment.service'; -import { UserService } from 'src/modules/user/user.service'; - -@Module({ - controllers: [CommentController], - providers: [CommentService,UserService] -}) -export class CommentModule {} diff --git a/src/laoyou_backend/src/modules/comment/comment.service.ts b/src/laoyou_backend/src/modules/comment/comment.service.ts deleted file mode 100644 index 8e4e250..0000000 --- a/src/laoyou_backend/src/modules/comment/comment.service.ts +++ /dev/null @@ -1,171 +0,0 @@ -import { Injectable } from '@nestjs/common'; -import { PrismaService } from '../prisma/prisma.service'; -import { UserService } from '../user/user.service'; -import { Prisma } from '@prisma/client'; - -@Injectable() -export class CommentService { - constructor( - private readonly prisma: PrismaService, - private readonly userService: UserService - ) { } - - - // { - // content: '跟评1', - // share_type: 0, - // common_share_id: 11, - // fa_comment_id: 5, - // openid: 'oyBXy5ZPz7etmnwy34TICz2QT0O4' - // } - async createComment(data) { - try { - // have fa_comment_id - let create_comment_transaction; - if (data.fa_comment_id) { - create_comment_transaction = this.prisma.commonShareComment.create({ - data: { - content: data.content, - user: { - connect: { - openid: data.openid - } - }, - commonshare: { - connect: { - id: data.common_share_id - } - }, - fa_comment: { - connect: { - id: data.fa_comment_id - } - } - }, - include: { - user: true - } - }) - } else { - create_comment_transaction = this.prisma.commonShareComment.create( - { - data: { - content: data.content, - user: { - connect: { - openid: data.openid - } - }, - commonshare: { - connect: { - id: data.common_share_id - } - }, - }, - include: { - user: true - } - } - ) - } - - - // 建立事务 - const transaction = await this.prisma.$transaction([ - // 创建评论 - create_comment_transaction, - // 用户评论数+1 - this.prisma.user.update({ - where: { - openid: data.openid, - }, - data: { - commentCount: { - increment: 1 - } - } - }) - ]); - return transaction[0]; - } catch (error) { - console.log(error); - throw new Error('评论失败') - } - } - - // 根据share id获取评论 - async getCommentByShareId(id) { - try { - return await this.prisma.commonShareComment.findMany({ - where: { - commonshare: { - id: id - } - }, - include: { - user: true - } - }); - } catch (error) { - console.log(error); - throw new Error('获取评论失败') - } - } - - // 根据openid 获取用户评论总数 - async getSelfCommentCount(openid: string) { - try { - return await this.prisma.commonShareComment.count({ - where: { - user: { - openid - } - } - }) - } catch (error) { - throw new Error('获取评论总数失败') - } - } - - // 分页获取评论列表 - async getCommentList(page: number, size: number, openid?: string) { - try { - const where_condition: Prisma.CommonShareCommentWhereInput = {}; - // 如果有openid 则查询该用户的评论 - if (openid) { - where_condition.user = { - openid: openid - } - } - const comment_list = this.prisma.commonShareComment.findMany({ - where: where_condition, - skip: (page - 1) * size, - take: size, - orderBy: { - createdAt: 'desc' - }, - include: { - user: { - select: { - id: true, - nickname: true, - avatar: true, - openid: true, - }, - }, - commonshare: true, - } - }); - const comment_total_count = this.prisma.commonShareComment.count({ - where: where_condition - }); - const res = await Promise.all([comment_list, comment_total_count]); - return { - comment_list: res[0], - total_count: res[1] - } - } catch (error) { - throw new Error('获取评论列表失败') - } - } -} diff --git a/src/laoyou_backend/src/modules/commonShare/common-share.controller.ts b/src/laoyou_backend/src/modules/commonShare/common-share.controller.ts deleted file mode 100644 index e96bb73..0000000 --- a/src/laoyou_backend/src/modules/commonShare/common-share.controller.ts +++ /dev/null @@ -1,38 +0,0 @@ -import { Body, Controller, Get, ParseIntPipe, Post, Query, Req } from '@nestjs/common'; -import { Request } from 'express'; -import { Auth } from 'src/decorator/auth.decorator'; -import { CommonShareService } from './common-share.service'; - -@Controller('commonshare') -export class CommonShareController { - - - constructor( - private readonly commonShareService: CommonShareService, - ) { } - - @Post('add/commonshare') - @Auth() - async commitShare(@Req() req: Request, @Body() body) { - return this.commonShareService.createCommonShare(req, body); - } - - - @Get('get/commonshare') - @Auth() - async getCommonShare(@Query('page', ParseIntPipe) page, @Query('size', ParseIntPipe) size, @Query('openid') openid) { - openid = openid === 'undefined' ? undefined : openid; - return await this.commonShareService.findCommonShare(page, size, openid) - } - - @Get('self/commonshare/cnt') - @Auth() - async getSelfCommonShareCount(@Req() req: Request) { - const user = req.user as any; - const openid = user.openid; - return await this.commonShareService.getSelfCommonShareCount(openid); - } - - - -} diff --git a/src/laoyou_backend/src/modules/commonShare/common-share.module.ts b/src/laoyou_backend/src/modules/commonShare/common-share.module.ts deleted file mode 100644 index 36920f3..0000000 --- a/src/laoyou_backend/src/modules/commonShare/common-share.module.ts +++ /dev/null @@ -1,17 +0,0 @@ -import { Module } from '@nestjs/common'; -import { CommonShareController } from './common-share.controller'; -import { CommonShareService } from './common-share.service'; -import { UserService } from 'src/modules/user/user.service'; -import { LikeModule } from '../like/like.module'; -import { LikeService } from '../like/like.service'; -import { ApiService } from '../api/api.service'; -import { ApiModule } from '../api/api.module'; - -@Module({ - imports: [ - LikeModule - ], - controllers: [CommonShareController], - providers: [CommonShareService, UserService, LikeService] -}) -export class CommonShareModule { } diff --git a/src/laoyou_backend/src/modules/commonShare/common-share.service.ts b/src/laoyou_backend/src/modules/commonShare/common-share.service.ts deleted file mode 100644 index 65fe1c4..0000000 --- a/src/laoyou_backend/src/modules/commonShare/common-share.service.ts +++ /dev/null @@ -1,176 +0,0 @@ -import { Inject, Injectable } from '@nestjs/common'; -import { Prisma } from '@prisma/client'; -import { Request } from 'express'; -import { ShareCreateException, ShareQueryException } from 'src/error/post'; -import { PrismaService } from 'src/modules/prisma/prisma.service'; -import { LikeService } from '../like/like.service'; -import { ApiService } from '../api/api.service'; - - - - -@Injectable() -export class CommonShareService { - private readonly like_commonshare_shareid_key = process.env.LIKE_COMMONSHARE_SHAREID_KEY; - - constructor( - private readonly prisma: PrismaService, - private readonly likeService: LikeService, - private apiService: ApiService - ) { } - - - - - // { - // pic_list: [ - // 'https://laoyou-img-1300131488.cos.ap-beijing.myqcloud.com/183493377dd45d1a34c84228c48fa8a9.jpg' - // ], - // common_share_title: '这是一个文章标题', - // common_share_content: '这是正文部分', - // nickname: '微信用户', - // avatar: 'https://laoyou-static-1300131488.cos.ap-beijing.myqcloud.com/user.png' - // } - - // 创建commonShare - async createCommonShare(req: Request, body: any) { - const user = req.user as any; - const openid = user.openid; - const imagesPath = body.pic_list.join(','); - - const content = body.common_share_content; - const title = body.common_share_title; - let key_words: TopicData; - const item_list = []; - try { - key_words = (await this.apiService.getKeywords(title, content)).data; - const article_topic = this.getArticleTopic(key_words); - - - const commonShare: Prisma.CommonShareCreateInput = { - title: body.common_share_title, - content: body.common_share_content, - images: imagesPath, - cover: body.pic_list[0], - like: 0, - key_words: article_topic, - user: { - connect: { - openid - } - } - } - - - try { - const transaction = await this.prisma.$transaction([ - this.prisma.commonShare.create({ - data: commonShare - }), - this.prisma.user.update({ - where: { - openid - }, - data: { - commonShareCount: { - increment: 1 - } - } - }) - ]); - return transaction[0]; - } catch (error) { - console.log(error); - throw new ShareCreateException(); - } - - } catch (error) { - console.log(error); - } - - - } - - getArticleTopic(topicData: TopicData) { - const lv1_tag_list = topicData.item.lv1_tag_list; - const lv2_tag_list = topicData.item.lv2_tag_list; - const tag_list = lv1_tag_list.concat(lv2_tag_list); - const tag_list_str = tag_list.map(item => { - return item.tag; - }).join(','); - return tag_list_str; - } - - - // 分页查询commonShare - async findCommonShare(page: number, pageSize: number, openid?: string | undefined) { - // 查询post 并附带user信息 - try { - const where_condition = openid ? { - user: { - openid: openid - } - } : undefined; - - const commonshare_list = await this.prisma.commonShare.findMany({ - where: where_condition, - skip: (page - 1) * pageSize, - take: pageSize, - orderBy: { - createdAt: 'desc' - }, - include: { - user: { - select: { - city: true, - nickname: true, - avatar: true, - openid: true - } - } - } - }) - const promises_commonshare_list = Promise.all(commonshare_list.map(async item => { - // 从缓存中获取like数量 - // 如果缓存中没有,就从数据库中获取 - const share_like_cnt_in_redis = await this.likeService.get_commonshare_like_cnt(item.id) - if (share_like_cnt_in_redis === null) { - // 将db中的like数量存入redis - this.likeService.change_commonshare_like_cnt(item.id, item.like); - } else { - item.like = parseInt(share_like_cnt_in_redis); - } - return item; - })) - - const total_count = this.prisma.commonShare.count({ - where: where_condition - }); - const promises = await Promise.all([promises_commonshare_list, total_count]); - - return { - commonshare_list: promises[0], - total_count: promises[1] - } - } catch (error) { - throw new ShareQueryException(); - } - - - } - - // 根据openid查询commonShare数量 - async getSelfCommonShareCount(openid: string) { - try { - return await this.prisma.commonShare.count({ - where: { - user: { - openid - } - } - }) - } catch (error) { - throw new ShareQueryException(); - } - } -} diff --git a/src/laoyou_backend/src/modules/face/face.controller.ts b/src/laoyou_backend/src/modules/face/face.controller.ts deleted file mode 100644 index 94b01cb..0000000 --- a/src/laoyou_backend/src/modules/face/face.controller.ts +++ /dev/null @@ -1,24 +0,0 @@ -import { Body, Controller, Post, Req } from '@nestjs/common'; -import { Request } from 'express'; -import { FaceService } from './face.service'; -import { Auth } from 'src/decorator'; - -@Controller('face') -export class FaceController { - - constructor( - private readonly faceService: FaceService - ) { } - - @Post('register') - @Auth() - async register(@Body('face_url') face_url: string, @Req() req: Request) { - return this.faceService.faceRegister(face_url, req.user); - } - - @Post('match') - async match(@Body('face_url') face_url: string) { - return this.faceService.faceMatch(face_url); - } - -} diff --git a/src/laoyou_backend/src/modules/face/face.module.ts b/src/laoyou_backend/src/modules/face/face.module.ts deleted file mode 100644 index 29d6e56..0000000 --- a/src/laoyou_backend/src/modules/face/face.module.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { Module } from '@nestjs/common'; -import { FaceController } from './face.controller'; -import { FaceService } from './face.service'; - -@Module({ - controllers: [FaceController], - providers: [FaceService] -}) -export class FaceModule { } diff --git a/src/laoyou_backend/src/modules/face/face.service.ts b/src/laoyou_backend/src/modules/face/face.service.ts deleted file mode 100644 index 83db4c8..0000000 --- a/src/laoyou_backend/src/modules/face/face.service.ts +++ /dev/null @@ -1,72 +0,0 @@ -import { InjectRedis, Redis } from '@nestjs-modules/ioredis'; -import { HttpException, HttpStatus, Injectable } from '@nestjs/common'; -import { ConfigService } from '@nestjs/config'; -import { API_TYPE } from 'src/enum/baidu'; -import { BAIDU_ACCESS_TOKEN_KEY } from 'src/store/redis/keys'; -import { WXBizDataCrypt } from '../../utils/fn/crypt'; -import { HttpService } from '../http/http.service'; -import { ApiService } from '../api/api.service'; -import { UserService } from '../user/user.service'; - -@Injectable() -export class FaceService { - private readonly baidu_face_api_key: string; - private readonly baidu_face_secret_key: string; - private readonly baidu_face_group_id: string; - - constructor( - private configService: ConfigService, - private readonly httpService: HttpService, - private readonly userService: UserService, - private readonly apiService: ApiService, - @InjectRedis() private readonly redis: Redis, - - ) { - this.baidu_face_api_key = configService.get('BAIDU_FACE_API_KEY'); - this.baidu_face_secret_key = configService.get('BAIDU_FACE_SECRET_KEY'); - this.baidu_face_group_id = configService.get('BAIDU_FACE_GROUP_ID'); - } - - // 创建用户组 - - // 人脸注册 - async faceRegister(face_url: string, user: any) { - try { - const access_token = await this.apiService.getBaiduOauthAccessToken(API_TYPE.FACE, this.baidu_face_api_key, this.baidu_face_secret_key); - const openid = user.openid; - const res = await this.httpService.post('https://aip.baidubce.com/rest/2.0/face/v3/faceset/user/add?access_token=' + access_token, { - group_id: this.baidu_face_group_id, - image: face_url, - image_type: "URL", - user_id: openid, - }); - this.userService.updateUser({ - openid: openid, - face_auth_status: true - }); - - return res.data; - } catch (error) { - console.log(error); - throw new HttpException('人脸注册失败', HttpStatus.BAD_REQUEST); - } - } - - // 人脸匹配 - async faceMatch(face_url: string): Promise { - try { - const access_token = await this.apiService.getBaiduOauthAccessToken(API_TYPE.FACE, this.baidu_face_api_key, this.baidu_face_secret_key); - const res = await this.httpService.post('https://aip.baidubce.com/rest/2.0/face/v3/search?access_token=' + access_token, { - image: face_url, - image_type: "URL", - group_id_list: this.baidu_face_group_id, - }) - return res.data as any; - } catch (error) { - throw new HttpException('人脸匹配失败', HttpStatus.BAD_REQUEST) - } - } - - - -} diff --git a/src/laoyou_backend/src/modules/file-upload/file-upload.controller.ts b/src/laoyou_backend/src/modules/file-upload/file-upload.controller.ts deleted file mode 100644 index 8030bc7..0000000 --- a/src/laoyou_backend/src/modules/file-upload/file-upload.controller.ts +++ /dev/null @@ -1,26 +0,0 @@ -import { Controller, Post, UploadedFile } from '@nestjs/common'; -import { ImgUploadInterceptors } from '../../decorator'; -import { FileUploadService } from './file-upload.service'; - - -@Controller('upload') -export class FileUploadController { - - constructor( - private readonly fileUploadService: FileUploadService - ) { } - - @Post('img') - @ImgUploadInterceptors() - async uploadImg(@UploadedFile() file) { - return this.fileUploadService.uploadImg(file, "img"); - } - - - @Post('face') - @ImgUploadInterceptors() - async uploadFace(@UploadedFile() file) { - // TODO 进行节流判断 - return this.fileUploadService.uploadImg(file, "face"); - } -} diff --git a/src/laoyou_backend/src/modules/file-upload/file-upload.module.ts b/src/laoyou_backend/src/modules/file-upload/file-upload.module.ts deleted file mode 100644 index 647c6f2..0000000 --- a/src/laoyou_backend/src/modules/file-upload/file-upload.module.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { Module } from '@nestjs/common'; -import { MulterModule } from '@nestjs/platform-express/multer'; -import { FileUploadController } from './file-upload.controller'; -import { FileUploadService } from './file-upload.service'; -import * as COS from 'cos-nodejs-sdk-v5' - -@Module({ - imports: [MulterModule], - controllers: [FileUploadController], - providers: [FileUploadService, - { - provide: 'COS', - useFactory: () => { - return new COS({ - SecretId: process.env.COS_SECRET_ID, - SecretKey: process.env.COS_SECRET_KEY - }) - } - }, - ], -}) -export class FileUploadModule { } diff --git a/src/laoyou_backend/src/modules/file-upload/file-upload.service.ts b/src/laoyou_backend/src/modules/file-upload/file-upload.service.ts deleted file mode 100644 index 84a2fea..0000000 --- a/src/laoyou_backend/src/modules/file-upload/file-upload.service.ts +++ /dev/null @@ -1,71 +0,0 @@ -import { Inject, Injectable } from '@nestjs/common'; -import * as COS from 'cos-nodejs-sdk-v5'; -import { extname } from 'path'; -import { EmptyFileException, FileUploadException } from '../../error/fileError'; -import { ConfigService } from '@nestjs/config'; - -type FILE_TYPE = 'img' | 'face'; - -@Injectable() -export class FileUploadService { - private readonly bucketImg: string; - private readonly bucket_face: string; - private readonly region: string; - - constructor( - private readonly config: ConfigService, - @Inject('COS') private readonly cos: COS, - ) { - this.bucketImg = config.get('COS_IMG_BUCKET'); - this.bucket_face = config.get('COS_FACE_BUCKET'); - this.region = config.get('COS_REGION'); - } - - async uploadImg(file: any, file_type: FILE_TYPE): Promise { - // 处理上传的文件 - if (!file) { - throw new EmptyFileException(); - } - - let buket_name; - switch (file_type) { - case 'img': - buket_name = this.bucketImg; - break; - case 'face': - buket_name = this.bucket_face; - break; - default: - throw new FileUploadException(); - } - - const randomName = this.generateRandomName(); - const params = { - Bucket: buket_name, - Region: this.region, - Key: randomName + extname(file.originalname), - Body: file.buffer - } as COS.PutObjectParams; - try { - await this.cos.putObject(params, (err, data) => { - if (err) { - console.log(err) - throw new FileUploadException(); - } - }) - return `https://${buket_name}.cos.${this.region}.myqcloud.com/${randomName}${extname(file.originalname)}`; - } catch (err) { - throw new FileUploadException(); - } - } - - generateRandomName(): string { - return Array(32) - .fill(null) - .map(() => Math.floor(Math.random() * 16).toString(16)) - .join(''); - } - - - -} diff --git a/src/laoyou_backend/src/modules/http/http.module.ts b/src/laoyou_backend/src/modules/http/http.module.ts deleted file mode 100644 index 2beafb0..0000000 --- a/src/laoyou_backend/src/modules/http/http.module.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { Global, Module } from '@nestjs/common'; -import { HttpService } from './http.service'; - -@Global() -@Module({ - providers: [HttpService], - exports: [HttpService] -}) -export class HttpModule { } diff --git a/src/laoyou_backend/src/modules/http/http.service.ts b/src/laoyou_backend/src/modules/http/http.service.ts deleted file mode 100644 index e45b439..0000000 --- a/src/laoyou_backend/src/modules/http/http.service.ts +++ /dev/null @@ -1,55 +0,0 @@ -import { Injectable } from '@nestjs/common'; -import axios, { AxiosInstance, AxiosRequestConfig, AxiosResponse } from 'axios'; - - -@Injectable() -export class HttpService { - private readonly instance: AxiosInstance; - constructor() { - this.instance = axios.create({ - timeout: 10000, - headers: { - 'Content-Type': 'application/json;charset=UTF-8' - } - }); - // 设置请求拦截器 - this.instance.interceptors.request.use( - (config) => { - return config; - }, - (error) => { - return Promise.reject(error); - } - ); - - // 添加响应拦截器 - this.instance.interceptors.response.use( - (response) => { - return response; - }, - (error) => { - return Promise.reject(error) - } - ) - } - - async get(url: string, config?: AxiosRequestConfig): Promise> { - const response: AxiosResponse = await this.instance.get(url, config) - return response; - } - - async post(url: string, data?: any, config?: AxiosRequestConfig) { - const response: AxiosResponse = await this.instance.post(url, data, config) - return response; - } - - // 设置token - setAuthorization(token: string): void { - this.instance.defaults.headers.common['Authorization'] = `Bearer ${token}`; - } - - getAxiosInstance(): AxiosInstance { - return this.instance; - } - -} diff --git a/src/laoyou_backend/src/modules/like/like.controller.ts b/src/laoyou_backend/src/modules/like/like.controller.ts deleted file mode 100644 index a73493c..0000000 --- a/src/laoyou_backend/src/modules/like/like.controller.ts +++ /dev/null @@ -1,48 +0,0 @@ -import { Controller, Get, ParseBoolPipe, ParseIntPipe, Query, Req } from '@nestjs/common'; -import { Auth } from 'src/decorator'; -import { LikeService } from './like.service'; -import { Request } from 'express'; - -@Controller('like') -export class LikeController { - - constructor( - private readonly likeService: LikeService - ) { } - - - @Get('change/commonshare') - @Auth() - getCommonShareLike( - @Req() req: Request, - @Query('share_id', ParseIntPipe) common_share_id: number, - @Query('like_status', ParseBoolPipe) status: boolean - ) { - const openid = (req.user as any).openid; - if (status) { - return this.likeService.add_like_to_commonshare(common_share_id, openid); - } else { - return this.likeService.del_like_to_commonshare(common_share_id, openid); - } - } - - - // 检测用户是否点赞了某个commonshare - @Get('chk/commonshare') - @Auth() - async checkCommonShareByOpenid(@Query('share_id', ParseIntPipe) share_id: number, @Query('openid') openid: string) { - return await this.likeService.checkCommonShareByOpenid(share_id, openid); - } - - // 获得用户点赞的commonshare的列表 - @Get('list/commonshare') - @Auth() - async getCommonShareListByOpenid( - @Req() req: Request, - ) { - const openid = (req.user as any).openid; - return await this.likeService.getCommonShareListByOpenid(openid); - - } - -} diff --git a/src/laoyou_backend/src/modules/like/like.module.ts b/src/laoyou_backend/src/modules/like/like.module.ts deleted file mode 100644 index bce197f..0000000 --- a/src/laoyou_backend/src/modules/like/like.module.ts +++ /dev/null @@ -1,24 +0,0 @@ -import { Module } from '@nestjs/common'; -import { LikeController } from './like.controller'; -import { LikeService } from './like.service'; -import { RedisModule } from '@nestjs-modules/ioredis'; - -@Module({ - imports: [ - RedisModule.forRoot({ - config: { - host: 'localhost', - port: 6379 - } - }), - - ], - controllers: [LikeController], - providers: [LikeService, - { - provide: 'COMMONSHARE_LIKE_KEY', - useValue: 'like:commonshare:*' - } - ] -}) -export class LikeModule { } diff --git a/src/laoyou_backend/src/modules/like/like.service.ts b/src/laoyou_backend/src/modules/like/like.service.ts deleted file mode 100644 index 18c87a9..0000000 --- a/src/laoyou_backend/src/modules/like/like.service.ts +++ /dev/null @@ -1,144 +0,0 @@ -import { Inject, Injectable } from '@nestjs/common'; -import { InjectRedis, Redis } from '@nestjs-modules/ioredis' -import { PrismaService } from '../prisma/prisma.service'; -import { LIKE_COMMONSHARE_OPENID_KEY, LIKE_COMMONSHARE_SHAREID_KEY } from '../../store/redis/keys' -import { ConfigService } from '@nestjs/config'; - -@Injectable() -export class LikeService { - // key - private readonly like_commonshare_shareid_key = LIKE_COMMONSHARE_SHAREID_KEY - private readonly like_commonshare_openid_key = LIKE_COMMONSHARE_OPENID_KEY; - - private readonly common_ex; - - constructor( - @InjectRedis() private readonly redis: Redis, - private readonly prisma: PrismaService, - private readonly config: ConfigService - ) { - this.common_ex = this.config.get('REDIS_KEY_EXPIRE'); - } - - - // 增加用户点赞列表 - async add_val_to_list(key, val) { - const listStr = await this.redis.get(key); - if (listStr === null || listStr === '') { - await this.redis.set(key, val); - return 'ok'; - } - const list = listStr.split(','); - if (list.includes(val.toString())) { - return 'ok'; - } - list.push(val.toString()); - const updateListStr = list.join(','); - await this.redis.set(key, updateListStr, 'EX', this.common_ex); - return 'ok'; - } - - //查询commonshare的点赞数 - async get_commonshare_like_cnt(share_id) { - const key = `${this.like_commonshare_shareid_key}${share_id}`; - return await this.redis.get(key); - } - - // 改变commonshare的点赞数 - async change_commonshare_like_cnt(share_id, delta) { - const key = `${this.like_commonshare_shareid_key}${share_id}`; - let val = await this.redis.get(key); - if (val === null) { - // query db - const commonshare = await this.prisma.commonShare.findUnique({ - where: { - id: share_id - }, - select: { - like: true - } - }) - val = commonshare.like.toString(); - if (commonshare !== null) { - val = parseInt(val) + delta; - } else { - val = delta; - } - await this.redis.set(key, val, 'EX', this.common_ex); - return 'ok'; - } else { - val = parseInt(val) + delta; - await this.redis.set(key, val, 'EX', this.common_ex); - return 'ok'; - } - - } - - - //增加点赞 - async add_like_to_commonshare(share_id: number, openid: string) { - await Promise.all([ - // this.add_val_to_list(this.like_commonshare_shareid_key + share_id, openid), - this.change_commonshare_like_cnt(share_id, 1), - this.add_val_to_list(this.like_commonshare_openid_key + openid, share_id) - ]) - } - - - //删除点赞 - async del_like_to_commonshare(share_id: number, openid: string) { - await Promise.all([ - this.change_commonshare_like_cnt(share_id, -1), - this.del_val_from_list(this.like_commonshare_openid_key + openid, share_id) - ]) - } - - - async del_val_from_list(key, val) { - const listStr = await this.redis.get(key); - if (listStr == null) { - return 'ok'; - } - - const list = listStr.split(',') - if (!list.includes(val.toString())) { - return 'ok'; - } - const updateListStr = list.filter((item) => item !== val.toString()).join(','); - this.redis.set(key, updateListStr,); - return 'ok'; - } - - - //检测用户是否点赞了某个commonshare - async checkCommonShareByOpenid(share_id: number, openid: string) { - const redisKey = `${this.like_commonshare_openid_key}${openid}`; - const shareidListStr = await this.redis.get(redisKey); - return shareidListStr === null ? false : shareidListStr.includes(share_id.toString()); - // TODO 如果是false,那么就去数据库中查询 - // 并将其存入redis中 - } - - //获得用户点赞的commonshare的列表 - async getCommonShareListByOpenid(openid: string) { - const redisKey = `${this.like_commonshare_openid_key}${openid}`; - let shareidListStr = await this.redis.get(redisKey); - if (shareidListStr === null) { - const commonshareLike = await this.prisma.commonShareLike.findUnique({ - where: { - openid - } - }) - if (commonshareLike === null) { - this.redis.set(redisKey, '', 'EX', this.common_ex); - shareidListStr = ''; - } else { - shareidListStr = commonshareLike.share_id_list; - this.redis.set(redisKey, commonshareLike.share_id_list, 'EX', this.common_ex); - } - } - return shareidListStr === '' ? [] : shareidListStr.split(',').map(item => parseInt(item)); - } - - -} diff --git a/src/laoyou_backend/src/modules/news/news.controller.ts b/src/laoyou_backend/src/modules/news/news.controller.ts deleted file mode 100644 index e45266c..0000000 --- a/src/laoyou_backend/src/modules/news/news.controller.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { Controller, Get } from '@nestjs/common'; -import { NewsService } from './news.service'; -import { get } from 'http'; -import { Auth } from 'src/decorator'; - -@Controller('news') -export class NewsController { - - constructor( - private readonly newsService: NewsService - ) { } - - @Get('hotList') - @Auth() - async getHotList() { - return await this.newsService.getHotList() - } - - -} diff --git a/src/laoyou_backend/src/modules/news/news.module.ts b/src/laoyou_backend/src/modules/news/news.module.ts deleted file mode 100644 index 45c7205..0000000 --- a/src/laoyou_backend/src/modules/news/news.module.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { CacheModule, Module } from '@nestjs/common'; -import { NewsController } from './news.controller'; -import { NewsService } from './news.service'; - -@Module({ - imports: [ - CacheModule.register(), - ], - controllers: [NewsController], - providers: [NewsService] -}) -export class NewsModule { } diff --git a/src/laoyou_backend/src/modules/news/news.service.ts b/src/laoyou_backend/src/modules/news/news.service.ts deleted file mode 100644 index ff58277..0000000 --- a/src/laoyou_backend/src/modules/news/news.service.ts +++ /dev/null @@ -1,29 +0,0 @@ -import { Inject, Injectable } from '@nestjs/common'; -import { CACHE_MANAGER } from '@nestjs/cache-manager' -import { HttpService } from '../http/http.service'; -import { Cache } from 'cache-manager'; - -const news_site_filter_list = ['微博', '微信'] - -@Injectable() -export class NewsService { - constructor( - private readonly httpService: HttpService, - @Inject(CACHE_MANAGER) private readonly cacheManager: Cache - ) { } - - async getHotList() { - let hot_list_cache = await this.cacheManager.get('hot_news') - if (hot_list_cache) { - return hot_list_cache - } - - - let { data: hot_list } = await this.httpService.get('https://open.tophub.today/hot'); - hot_list.data.items = hot_list.data.items.filter(item => news_site_filter_list.indexOf(item.sitename) < 0 && item.thumbnail != '') - // cache 1 hour - await this.cacheManager.set('hot_news', hot_list, 1000 * 3600) - return hot_list - } - -} diff --git a/src/laoyou_backend/src/modules/prisma/prisma.module.ts b/src/laoyou_backend/src/modules/prisma/prisma.module.ts deleted file mode 100644 index 04f3573..0000000 --- a/src/laoyou_backend/src/modules/prisma/prisma.module.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { Global, Module } from '@nestjs/common'; -import { PrismaService } from './prisma.service'; - -@Global() -@Module({ - providers: [PrismaService], - exports: [PrismaService], -}) -export class PrismaModule { } diff --git a/src/laoyou_backend/src/modules/prisma/prisma.service.ts b/src/laoyou_backend/src/modules/prisma/prisma.service.ts deleted file mode 100644 index 8b50975..0000000 --- a/src/laoyou_backend/src/modules/prisma/prisma.service.ts +++ /dev/null @@ -1,13 +0,0 @@ -import { Injectable } from '@nestjs/common'; -import { PrismaClient } from '@prisma/client'; - - - -@Injectable() -export class PrismaService extends PrismaClient { - constructor() { - super() - } - - -} diff --git a/src/laoyou_backend/src/modules/schedule/schedule.module.ts b/src/laoyou_backend/src/modules/schedule/schedule.module.ts deleted file mode 100644 index 34d5a2f..0000000 --- a/src/laoyou_backend/src/modules/schedule/schedule.module.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { Module } from '@nestjs/common'; -import { ScheduleService } from './schedule.service'; -import { ScheduleModule as _ScheduleModule } from '@nestjs/schedule' -import { RedisModule } from '@nestjs-modules/ioredis'; - - -@Module({ - imports: [ - _ScheduleModule.forRoot(), - RedisModule.forRoot({ - config: { - host: 'localhost', - port: 6379 - } - }) - ], - - providers: [ScheduleService] -}) -export class ScheduleModule { } diff --git a/src/laoyou_backend/src/modules/schedule/schedule.service.ts b/src/laoyou_backend/src/modules/schedule/schedule.service.ts deleted file mode 100644 index feefd81..0000000 --- a/src/laoyou_backend/src/modules/schedule/schedule.service.ts +++ /dev/null @@ -1,94 +0,0 @@ -import { Injectable, Logger } from '@nestjs/common'; -import { Cron } from '@nestjs/schedule' -import { InjectRedis, Redis } from '@nestjs-modules/ioredis' -import { PrismaService } from '../prisma/prisma.service'; - -@Injectable() -export class ScheduleService { - - constructor( - @InjectRedis() private readonly redis: Redis, - private readonly prisma: PrismaService - ) { } - - // // 每一个小时执行一次 - // @Cron('0 0 * * * *') - // handle_redis_Like_count_to_db() { - // // 从redis中获取所有的like:commonshare:* - // // 将其存入数据库 - // } - - // 每10min执行一次 - @Cron('0 */10 * * * *') - async handle_person_like_of_commonshare_store_to_db() { - // 从redis中获取所有的like:commonshare:openid:* - // 将其存入数据库 - const keyList = await this.redis.keys('like:commonshare:openid:*'); - - await Promise.all([keyList.map(async key => { - const openid = key.split(':')[3]; - const share_id_list_str = await this.redis.get(key); - if (share_id_list_str === null || share_id_list_str.length === 0) { - // 删除key - await this.redis.del(key); - return; - } - try { - await this.prisma.commonShareLike.upsert({ - create: { - openid, - share_id_list: share_id_list_str - }, - update: { - share_id_list: share_id_list_str - }, - where: { - openid - } - }) - } catch (error) { - // 删除key - await this.redis.del(key); - Logger.log('同步commonshare like失败'); - } - - })]) - Logger.log(`${(new Date()).toISOString()} handle_person_like_commonshare_store_to_db done`); - } - - // 每10min执行一次 - @Cron('0 */10 * * * *') - async handle_commonshare_like_of_commonshare_store_to_db() { - // 从redis中获取所有的like:commonshare:openid:* - // 将其存入数据库 - const keyList = await this.redis.keys('like:commonshare:shareid:*'); - - await Promise.all([keyList.map(async key => { - const openid = key.split(':')[3]; - const share_id_list_str = await this.redis.get(key); - if (share_id_list_str === null || share_id_list_str.length === 0) { - // 删除key - await this.redis.del(key); - return; - } - try { - await this.prisma.commonShare.update({ - data: { - like: parseInt(share_id_list_str) - }, - where: { - id: parseInt(openid) - } - }) - } catch (error) { - // 删除key - await this.redis.del(key); - Logger.log('同步commonshare like失败'); - } - - })]) - Logger.log(`${(new Date()).toISOString()} handle_commonshare_like_of_commonshare_store_to_db done`); - } - - -} diff --git a/src/laoyou_backend/src/modules/user/user.controller.ts b/src/laoyou_backend/src/modules/user/user.controller.ts deleted file mode 100644 index e1667be..0000000 --- a/src/laoyou_backend/src/modules/user/user.controller.ts +++ /dev/null @@ -1,55 +0,0 @@ -import { Body, Controller, Get, HttpCode, Post, Req } from '@nestjs/common'; -import { Request } from 'express'; -import { Auth } from 'src/decorator/auth.decorator'; -import { UserService } from './user.service'; -import { UserDto } from 'src/dto/user/user'; - -@Controller('user') -export class UserController { - constructor( - private readonly userService: UserService - ) { } - - - //获得用户自身信息 - @Get('getSelfInfo') - @Auth() - async getSelfInfo(@Req() req: Request) { - const user = req.user as any; - const openid = user.openid; - return await this.userService.findUserByOpenId(openid); - } - - - //修改用户信息 - @Post('updateuser') - @Auth() - async updateUser(@Req() req: Request, @Body() body) { - const user = req.user as any; - // from header get openId and sessionKey - const openId = user.openid; - const avatar = body.avatar - const nickname = body.nickname - const sex = body.sex - const birthday = body.birthday - const city = body.city - const userDto: UserDto = { - openid: openId, - avatar: avatar, - nickname: nickname, - sex: sex, - birthday: birthday, - city: city - } - return await this.userService.updateUser(userDto) - } - - - @Post('updateFaceToken') - @Auth() - async upadteFaceToken(@Req() req: Request, @Body('face_url') face_url: string) { - const user = req.user as any; - const openId = user.openid; - return await this.userService.updateUserFaceToken(openId, face_url) - } -} diff --git a/src/laoyou_backend/src/modules/user/user.module.ts b/src/laoyou_backend/src/modules/user/user.module.ts deleted file mode 100644 index 0099c09..0000000 --- a/src/laoyou_backend/src/modules/user/user.module.ts +++ /dev/null @@ -1,11 +0,0 @@ -import { Global, Module } from '@nestjs/common'; -import { UserController } from './user.controller'; -import { UserService } from './user.service'; - -@Global() -@Module({ - controllers: [UserController], - providers: [UserService], - exports: [UserService] -}) -export class UserModule { } diff --git a/src/laoyou_backend/src/modules/user/user.service.ts b/src/laoyou_backend/src/modules/user/user.service.ts deleted file mode 100644 index c5ac021..0000000 --- a/src/laoyou_backend/src/modules/user/user.service.ts +++ /dev/null @@ -1,99 +0,0 @@ -import { Injectable } from '@nestjs/common'; -import { Prisma } from '@prisma/client'; -import { UserDto } from 'src/dto/user/user'; -import { UserUpdateException } from 'src/error/user'; -import { ApiService } from 'src/modules/api/api.service'; -import { PrismaService } from 'src/modules/prisma/prisma.service'; -import { getSessionKey, setUserLoginMap, hasUser, deleteUser } from 'src/store/index' -import { filterObject } from '../../utils/fn/format' - - -const S = 1000 - -@Injectable() -export class UserService { - - - constructor( - private readonly prismaService: PrismaService, - private readonly apiService: ApiService - ) { } - - - // { - // openId: 'oyBXy5ZPz7etmnwy34TICz2QT0O4', - // sessionKey: 'RAC4SVcM1thb7lQiCoPPXw==' - // } - - //logout - logout(loginFrom: LoginForm) { - if (hasUser(loginFrom.openId) && getSessionKey(loginFrom.openId) === loginFrom.sessionKey) { - deleteUser(loginFrom.openId) - return true - } - return false - } - - // login - async login(loginFrom: LoginForm) { - setUserLoginMap(loginFrom.openId, loginFrom.sessionKey) - let user: UserDto | null = await this.findUserByOpenId(loginFrom.openId) - if (user === null) { - user = await this.createUser(loginFrom.openId) - } - return user; - } - - // 根据openID查找用户 - async findUserByOpenId(openId: string) { - const user = await this.prismaService.user.findUnique({ - where: { - openid: openId - }, - }) - return user - } - - //创建用户 - async createUser(openId: string) { - const cTime = new Date() - const user = await this.prismaService.user.create({ - data: { - nickname: '微信用户', - createdAt: new Date(), - updatedAt: new Date(), - // birth YYYY-MM-DD - birthday: cTime.toISOString().split('T')[0], - city: '', - sex: 0, - openid: openId - } - }) - return user - } - - //update - async updateUser(user_update_input: Prisma.UserUpdateInput) { - const user = await this.prismaService.user.update({ - where: { - openid: user_update_input.openid as string - }, - data: user_update_input - }) - return user - - } - - //通过face_token查找用户 - async findUserByFaceToken(face_token: string) { - - } - - - // 添加用户的face_token - async updateUserFaceToken(openid: string, face_url: string) { - - - } - -} diff --git a/src/laoyou_backend/src/modules/user/utils/index.ts b/src/laoyou_backend/src/modules/user/utils/index.ts deleted file mode 100644 index 0c6c044..0000000 --- a/src/laoyou_backend/src/modules/user/utils/index.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { filterObject } from '../../../utils/fn/format' - -const exclude_keys = ['face_url'] - -export const filterUser = (user) => { - return filterObject(user, exclude_keys) -} \ No newline at end of file diff --git a/src/laoyou_backend/src/store/index.ts b/src/laoyou_backend/src/store/index.ts deleted file mode 100644 index f94175d..0000000 --- a/src/laoyou_backend/src/store/index.ts +++ /dev/null @@ -1,17 +0,0 @@ -const userLoginMap = new Map(); - -export const setUserLoginMap = (openId: string, sessionKey: string) => { - userLoginMap.set(openId, sessionKey) -} - -export const hasUser = (openId) => { - return userLoginMap.get(openId) !== undefined -} - -export const getSessionKey = (openId) => { - return userLoginMap.get(openId) -} - -export const deleteUser = (openId) => { - userLoginMap.delete(openId) -} \ No newline at end of file diff --git a/src/laoyou_backend/src/store/redis/keys.ts b/src/laoyou_backend/src/store/redis/keys.ts deleted file mode 100644 index a2b10ae..0000000 --- a/src/laoyou_backend/src/store/redis/keys.ts +++ /dev/null @@ -1,6 +0,0 @@ -export const BAIDU_ACCESS_TOKEN_KEY = 'baidu_access_token'; - -export const COMMONSHARE_LIKE_KEY = 'like:commonshare:*'; - -export const LIKE_COMMONSHARE_SHAREID_KEY = "like:commonshare:shareid:" -export const LIKE_COMMONSHARE_OPENID_KEY = "like:commonshare:openid:" \ No newline at end of file diff --git a/src/laoyou_backend/src/strategy/jwt.strategy.ts b/src/laoyou_backend/src/strategy/jwt.strategy.ts deleted file mode 100644 index d7bc20e..0000000 --- a/src/laoyou_backend/src/strategy/jwt.strategy.ts +++ /dev/null @@ -1,35 +0,0 @@ -// import { PassportStrategy } from '@nestjs/passport' -// import { ExtractJwt, Strategy } from 'passport-jwt' - -// export class JwtStrategy extends PassportStrategy(Strategy, 'jwt') { -// constructor( -// ) { -// super({ -// jwtFromRequest: ExtractJwt.fromAuthHeaderAsBearerToken(), -// secretOrKey: process.env.JWT_SECRET_KEY -// }) -// } - -// async validate(payload: any) { -// return payload -// } -// } - -import { PassportStrategy } from '@nestjs/passport'; -import { ExtractJwt, Strategy } from 'passport-jwt'; - - -export class JwtStrategy extends PassportStrategy(Strategy, 'jwt') { - constructor() { - super({ - jwtFromRequest: ExtractJwt.fromAuthHeaderAsBearerToken(), - secretOrKey: process.env.JWT_SECRET_KEY, - }); - } - - async validate(userPayload: any) { - // 返回的值将被注入到request.user中 - return userPayload - } - -} \ No newline at end of file diff --git a/src/laoyou_backend/src/test/test.controller.ts b/src/laoyou_backend/src/test/test.controller.ts deleted file mode 100644 index 554f381..0000000 --- a/src/laoyou_backend/src/test/test.controller.ts +++ /dev/null @@ -1,46 +0,0 @@ -import { Controller, Get, Post } from '@nestjs/common'; -import { HttpService } from 'src/modules/http/http.service'; - -@Controller('test1') -export class TestController { - - private AK: string = 'i4uY0g3UGAzQWK0HfTcEUCI8'; - private SK: string = 'edRjTDyzgFxtzrg54ofaiTAckBn6XX2Z' - - - constructor( - private readonly httpService: HttpService, - - ) { } - - @Get('ff') - async test() { - const res = await this.getAccessToken(); - const access_token = (res.data as any).access_token; - - return (await this.httpService.post('https://aip.baidubce.com/rpc/2.0/nlp/v1/keyword', - { - "title": "iphone手机出现“白苹果”原因及解决办法,用苹果手机的可以看下", - "content": "如果下面的方法还是没有解决你的问题建议来我们门店看下成都市锦江区红星路三段99号银石广场24层01室。在通电的情况下掉进清水,这种情况一不需要拆机处理。尽快断电。用力甩干,但别把机器甩掉,主意要把屏幕内的水甩出来。如果屏幕残留有水滴,干后会有痕迹。^H3 放在台灯,射灯等轻微热源下让水分慢慢散去。" - }, - { - params: { - access_token: access_token, - charset: 'UTF-8' - }, - headers: { - 'Content-Type': 'application/json', - Accept: 'application/json' - } - })).data; - } - - - getAccessToken() { - return this.httpService.post( - 'https://aip.baidubce.com/oauth/2.0/token?grant_type=client_credentials&client_id=' + this.AK + '&client_secret=' + this.SK, - ) - } - - -} diff --git a/src/laoyou_backend/src/test/test.module.ts b/src/laoyou_backend/src/test/test.module.ts deleted file mode 100644 index c36b79f..0000000 --- a/src/laoyou_backend/src/test/test.module.ts +++ /dev/null @@ -1,15 +0,0 @@ -import { Module } from '@nestjs/common'; -import { TestController } from './test.controller'; -import { RedisModule } from '@nestjs-modules/ioredis'; - -@Module({ - imports: [ - RedisModule.forRoot({ - config: { - url: 'redis://localhost:6379', - } - }) - ], - controllers: [TestController], -}) -export class TestModule { } diff --git a/src/laoyou_backend/src/typings/api.d.ts b/src/laoyou_backend/src/typings/api.d.ts deleted file mode 100644 index 68d7971..0000000 --- a/src/laoyou_backend/src/typings/api.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -interface TopicData { - log_id: number, - item: { - lv2_tag_list: { - score: number, - tag: string - }[] - lv1_tag_list: { - score: number, - tag: string - }[] - } -} - -interface FaceAuthData { - result: { - face_token: string, - user_list: { - group_id: string, - user_id: string, - user_info: string, - score: number - }[] - } -} \ No newline at end of file diff --git a/src/laoyou_backend/src/typings/index.d.ts b/src/laoyou_backend/src/typings/index.d.ts deleted file mode 100644 index 68379d8..0000000 --- a/src/laoyou_backend/src/typings/index.d.ts +++ /dev/null @@ -1,31 +0,0 @@ -interface LoginForm { - openId: string; - sessionKey: string; -} - -interface HotNewsData { - data: { - items: HotNewsItem[], - day: string, - limit: number, - filter: string, - } - error: boolean, - status: number, -} - -interface HotNewsItem { - ID: string; - title: string; - thumbnail: string; - url: string; - md5: string; - extra: string; - time: string; - nodeids: string; - topicid: string; - domain: string; - sitename: string; - logo: string; - views: string; -} diff --git a/src/laoyou_backend/src/typings/login.d.ts b/src/laoyou_backend/src/typings/login.d.ts deleted file mode 100644 index aa716b1..0000000 --- a/src/laoyou_backend/src/typings/login.d.ts +++ /dev/null @@ -1,5 +0,0 @@ -interface WXLoginResponse { - openid: string; - session_key: string; -} - diff --git a/src/laoyou_backend/src/utils/config/index.ts b/src/laoyou_backend/src/utils/config/index.ts deleted file mode 100644 index bf9ce66..0000000 --- a/src/laoyou_backend/src/utils/config/index.ts +++ /dev/null @@ -1,6 +0,0 @@ -const global_prefix = '/api/v1'; -const host = '101.42.154.98'; -export const port = 5555; -const base_url = `http://${host}:${port}${global_prefix}`; - -export { base_url, global_prefix } \ No newline at end of file diff --git a/src/laoyou_backend/src/utils/fn/crypt.ts b/src/laoyou_backend/src/utils/fn/crypt.ts deleted file mode 100644 index 51dd0e4..0000000 --- a/src/laoyou_backend/src/utils/fn/crypt.ts +++ /dev/null @@ -1,36 +0,0 @@ -var crypto = require("crypto"); - -function WXBizDataCrypt(appId, sessionKey) { - - this.appId = appId; - this.sessionKey = sessionKey; - -} - -WXBizDataCrypt.prototype.decryptData = function (encryptedData, iv) { - - // base64 decode - var sessionKey = new Buffer(this.sessionKey, "base64"); - encryptedData = new Buffer(encryptedData, "base64"); - iv = new Buffer(iv, "base64"); - - try { - // 解密 - var decipher = crypto.createDecipheriv("aes-128-cbc", sessionKey, iv); - // 设置自动 padding 为 true,删除填充补位 - decipher.setAutoPadding(true); - var decoded = decipher.update(encryptedData, "binary", "utf8"); - decoded += decipher.final("utf8"); - decoded = JSON.parse(decoded); - } catch (err) { - throw new Error("Illegal Buffer"); - } - - if (decoded.watermark.appid !== this.appId) { - throw new Error("Illegal Buffer"); - } - - return decoded; -}; - -export { WXBizDataCrypt }; diff --git a/src/laoyou_backend/src/utils/fn/format.ts b/src/laoyou_backend/src/utils/fn/format.ts deleted file mode 100644 index 6f50c22..0000000 --- a/src/laoyou_backend/src/utils/fn/format.ts +++ /dev/null @@ -1,71 +0,0 @@ -// 对象属性过滤 -/** - * 过滤对象的属性,排除指定的属性列表 - * - * @param {Object} obj 要过滤的对象 - * @param {string[]} propsToExclude 要过滤的属性列表 like ['a.b.c','a.b.d'] - * - * @returns {Object} 过滤后的对象 - */ -export const filterObject = (obj, propsToExclude, currentKey = "") => { - // 检测obj是否为一个对象,否则直接返回原对象索引 - if (typeof obj !== "object" || obj === null) { - return obj; - } - - // 如果obj 是一个数组,递归过滤每个元素 - if (Array.isArray(obj)) { - return obj.map((item) => filterObject(item, propsToExclude)); - } - - // obj 是对象,递归过滤每个属性 - const result = {}; - for (const key in obj) { - const newkey = currentKey ? `${currentKey}.${key}` : key; - if (!propsToExclude.includes(newkey)) { - result[key] = filterObject(obj[key], propsToExclude, newkey); - } - } - return result; -}; - -//对象属性替换 -/** - * - * 根据属性列表替换对象的属性值 - * - * @param {Object} obj 要过滤的对象 - * @param {{ - * key:string, - * value:any - * }[]} propsToExclude 要过滤的属性列表 - * - * @returns {Object} 过滤后的对象 - */ -export const filterAndReplaceObject = ( - obj, - propsToExclude, - currentKey = "" -) => { - // 检测obj是否为一个对象,否则直接返回原对象索引 - if (typeof obj !== "object" || obj === null) { - return obj; - } - - // 如果obj 是一个数组,递归过滤每个元素 - if (Array.isArray(obj)) { - return obj.map((item) => filterAndReplaceObject(item, propsToExclude)); - } - - // obj 是对象,递归过滤每个属性 - const result = {}; - for (const key in obj) { - const newkey = currentKey ? `${currentKey}.${key}` : key; - if (!propsToExclude.map((it) => it.key).includes(newkey)) { - result[key] = filterAndReplaceObject(obj[key], propsToExclude, newkey); - } else { - result[key] = propsToExclude.find((it) => it.key === newkey).value; - } - } - return result; -}; diff --git a/src/laoyou_backend/test.js b/src/laoyou_backend/test.js deleted file mode 100644 index d3c69fa..0000000 --- a/src/laoyou_backend/test.js +++ /dev/null @@ -1,19 +0,0 @@ -const request = require('request'); - -async function main() { - var options = { - method: 'POST', - url: 'https://aip.baidubce.com/rpc/2.0/nlp/v1/keyword?access_token=&charset=UTF-8', - headers: { - 'Content-Type': 'application/json', - Accept: 'application/json', - }, - }; - - request(options, function (error, response) { - if (error) throw new Error(error); - console.log(response.body); - }); -} - -main(); diff --git a/src/laoyou_backend/test/app.e2e-spec.ts b/src/laoyou_backend/test/app.e2e-spec.ts deleted file mode 100644 index 50cda62..0000000 --- a/src/laoyou_backend/test/app.e2e-spec.ts +++ /dev/null @@ -1,24 +0,0 @@ -import { Test, TestingModule } from '@nestjs/testing'; -import { INestApplication } from '@nestjs/common'; -import * as request from 'supertest'; -import { AppModule } from './../src/app.module'; - -describe('AppController (e2e)', () => { - let app: INestApplication; - - beforeEach(async () => { - const moduleFixture: TestingModule = await Test.createTestingModule({ - imports: [AppModule], - }).compile(); - - app = moduleFixture.createNestApplication(); - await app.init(); - }); - - it('/ (GET)', () => { - return request(app.getHttpServer()) - .get('/') - .expect(200) - .expect('Hello World!'); - }); -}); diff --git a/src/laoyou_backend/test/jest-e2e.json b/src/laoyou_backend/test/jest-e2e.json deleted file mode 100644 index e9d912f..0000000 --- a/src/laoyou_backend/test/jest-e2e.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "moduleFileExtensions": ["js", "json", "ts"], - "rootDir": ".", - "testEnvironment": "node", - "testRegex": ".e2e-spec.ts$", - "transform": { - "^.+\\.(t|j)s$": "ts-jest" - } -} diff --git a/src/laoyou_backend/tsconfig.build.json b/src/laoyou_backend/tsconfig.build.json deleted file mode 100644 index 64f86c6..0000000 --- a/src/laoyou_backend/tsconfig.build.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "extends": "./tsconfig.json", - "exclude": ["node_modules", "test", "dist", "**/*spec.ts"] -} diff --git a/src/laoyou_backend/tsconfig.json b/src/laoyou_backend/tsconfig.json deleted file mode 100644 index adb614c..0000000 --- a/src/laoyou_backend/tsconfig.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "compilerOptions": { - "module": "commonjs", - "declaration": true, - "removeComments": true, - "emitDecoratorMetadata": true, - "experimentalDecorators": true, - "allowSyntheticDefaultImports": true, - "target": "es2017", - "sourceMap": true, - "outDir": "./dist", - "baseUrl": "./", - "incremental": true, - "skipLibCheck": true, - "strictNullChecks": false, - "noImplicitAny": false, - "strictBindCallApply": false, - "forceConsistentCasingInFileNames": false, - "noFallthroughCasesInSwitch": false - } -} diff --git a/src/laoyou_client/.gitignore b/src/laoyou_client/.gitignore deleted file mode 100644 index 7ce6e50..0000000 --- a/src/laoyou_client/.gitignore +++ /dev/null @@ -1,21 +0,0 @@ -# Logs -logs -*.log -npm-debug.log* -yarn-debug.log* -yarn-error.log* -pnpm-debug.log* -lerna-debug.log* - -node_modules -.DS_Store -dist -*.local - -# Editor directories and files -.idea -*.suo -*.ntvs* -*.njsproj -*.sln -*.sw? \ No newline at end of file diff --git a/src/laoyou_client/.vscode/settings.json b/src/laoyou_client/.vscode/settings.json deleted file mode 100644 index 55712c1..0000000 --- a/src/laoyou_client/.vscode/settings.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "typescript.tsdk": "node_modules/typescript/lib" -} \ No newline at end of file diff --git a/src/laoyou_client/demo1.js b/src/laoyou_client/demo1.js deleted file mode 100644 index 440e9e3..0000000 --- a/src/laoyou_client/demo1.js +++ /dev/null @@ -1,73 +0,0 @@ -const filterObject = (obj, propsToExclude, currentKey = "") => { - // 检测obj是否为一个对象,否则直接返回原对象索引 - if (typeof obj !== "object" || obj === null) { - return obj; - } - - // 如果obj 是一个数组,递归过滤每个元素 - if (Array.isArray(obj)) { - return obj.map((item) => filterObject(item, propsToExclude)); - } - - // obj 是对象,递归过滤每个属性 - const result = {}; - for (const key in obj) { - const newkey = currentKey ? `${currentKey}.${key}` : key; - if (!propsToExclude.includes(newkey)) { - result[key] = filterObject(obj[key], propsToExclude, newkey); - } - } - return result; -}; - -const filterAndReplaceObject = (obj, propsToExclude, currentKey = "") => { - // 检测obj是否为一个对象,否则直接返回原对象索引 - if (typeof obj !== "object" || obj === null) { - return obj; - } - - // 如果obj 是一个数组,递归过滤每个元素 - if (Array.isArray(obj)) { - return obj.map((item) => filterAndReplaceObject(item, propsToExclude)); - } - - // obj 是对象,递归过滤每个属性 - const result = {}; - for (const key in obj) { - const newkey = currentKey ? `${currentKey}.${key}` : key; - if (!propsToExclude.map((it) => it.key).includes(newkey)) { - result[key] = filterAndReplaceObject(obj[key], propsToExclude, newkey); - } else { - result[key] = propsToExclude.find((it) => it.key === newkey).value; - } - } - return result; -}; - -const obj = { - a: 1, - b: 2, - c: 3, - d: { - a: 1, - b: 2, - }, -}; - -const exclude_props_list = ["a", "d.a"]; - -const exclude_props_list2 = [ - { - key: "a", - value: "a", - }, - { - key: "d.a", - value: "d.a", - }, -]; - -const new_obj = filterObject(obj, exclude_props_list); -const new_obj2 = filterAndReplaceObject(obj, exclude_props_list2); -console.log(new_obj); -console.log(new_obj2); diff --git a/src/laoyou_client/index.html b/src/laoyou_client/index.html deleted file mode 100644 index 487bfcc..0000000 --- a/src/laoyou_client/index.html +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - -
- - - diff --git a/src/laoyou_client/package.json b/src/laoyou_client/package.json deleted file mode 100644 index 0899271..0000000 --- a/src/laoyou_client/package.json +++ /dev/null @@ -1,75 +0,0 @@ -{ - "name": "uni-preset-vue", - "version": "0.0.0", - "scripts": { - "dev": "uni -p mp-weixin", - "dev:app": "uni -p app", - "dev:app-android": "uni -p app-android", - "dev:app-ios": "uni -p app-ios", - "dev:custom": "uni -p", - "dev:h5": "uni", - "dev:h5:ssr": "uni --ssr", - "dev:mp-alipay": "uni -p mp-alipay", - "dev:mp-baidu": "uni -p mp-baidu", - "dev:mp-jd": "uni -p mp-jd", - "dev:mp-kuaishou": "uni -p mp-kuaishou", - "dev:mp-lark": "uni -p mp-lark", - "dev:mp-qq": "uni -p mp-qq", - "dev:mp-toutiao": "uni -p mp-toutiao", - "dev:mp-weixin": "uni -p mp-weixin", - "dev:quickapp-webview": "uni -p quickapp-webview", - "dev:quickapp-webview-huawei": "uni -p quickapp-webview-huawei", - "dev:quickapp-webview-union": "uni -p quickapp-webview-union", - "build:app": "uni build -p app", - "build:app-android": "uni build -p app-android", - "build:app-ios": "uni build -p app-ios", - "build:custom": "uni build -p", - "build:h5": "uni build", - "build:h5:ssr": "uni build --ssr", - "build:mp-alipay": "uni build -p mp-alipay", - "build:mp-baidu": "uni build -p mp-baidu", - "build:mp-jd": "uni build -p mp-jd", - "build:mp-kuaishou": "uni build -p mp-kuaishou", - "build:mp-lark": "uni build -p mp-lark", - "build:mp-qq": "uni build -p mp-qq", - "build:mp-toutiao": "uni build -p mp-toutiao", - "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" - }, - "dependencies": { - "@dcloudio/uni-app": "3.0.0-3081220230817001", - "@dcloudio/uni-app-plus": "3.0.0-3081220230817001", - "@dcloudio/uni-components": "3.0.0-3081220230817001", - "@dcloudio/uni-h5": "3.0.0-3081220230817001", - "@dcloudio/uni-mp-alipay": "3.0.0-3081220230817001", - "@dcloudio/uni-mp-baidu": "3.0.0-3081220230817001", - "@dcloudio/uni-mp-jd": "3.0.0-3081220230817001", - "@dcloudio/uni-mp-kuaishou": "3.0.0-3081220230817001", - "@dcloudio/uni-mp-lark": "3.0.0-3081220230817001", - "@dcloudio/uni-mp-qq": "3.0.0-3081220230817001", - "@dcloudio/uni-mp-toutiao": "3.0.0-3081220230817001", - "@dcloudio/uni-mp-weixin": "3.0.0-3081220230817001", - "@dcloudio/uni-quickapp-webview": "3.0.0-3081220230817001", - "axios": "^1.5.0", - "highlight.js": "^11.8.0", - "marked": "^9.0.0", - "mp-html": "^2.4.2", - "pinia": "2.0.33", - "sass": "^1.66.1", - "uni-read-pages": "^1.0.5", - "uni-simple-router": "2.0.8-beta.4", - "vue": "^3.2.45", - "vue-i18n": "^9.1.9" - }, - "devDependencies": { - "@dcloudio/types": "^3.3.2", - "@dcloudio/uni-automator": "3.0.0-3081220230817001", - "@dcloudio/uni-cli-shared": "3.0.0-3081220230817001", - "@dcloudio/uni-stacktracey": "3.0.0-3081220230817001", - "@dcloudio/vite-plugin-uni": "3.0.0-3081220230817001", - "@vue/runtime-core": "^3.2.45", - "vite": "4.0.0" - } -} diff --git a/src/laoyou_client/pnpm-lock.yaml b/src/laoyou_client/pnpm-lock.yaml deleted file mode 100644 index 433c81a..0000000 --- a/src/laoyou_client/pnpm-lock.yaml +++ /dev/null @@ -1,8140 +0,0 @@ -lockfileVersion: '6.0' - -dependencies: - '@dcloudio/uni-app': - specifier: 3.0.0-3081220230817001 - version: registry.npmmirror.com/@dcloudio/uni-app@3.0.0-3081220230817001(@dcloudio/types@3.3.2)(postcss@8.4.29)(vue@3.2.45) - '@dcloudio/uni-app-plus': - specifier: 3.0.0-3081220230817001 - version: registry.npmmirror.com/@dcloudio/uni-app-plus@3.0.0-3081220230817001(postcss@8.4.29)(vite@4.0.0)(vue@3.2.45) - '@dcloudio/uni-components': - specifier: 3.0.0-3081220230817001 - version: registry.npmmirror.com/@dcloudio/uni-components@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45) - '@dcloudio/uni-h5': - specifier: 3.0.0-3081220230817001 - version: registry.npmmirror.com/@dcloudio/uni-h5@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45) - '@dcloudio/uni-mp-alipay': - specifier: 3.0.0-3081220230817001 - version: registry.npmmirror.com/@dcloudio/uni-mp-alipay@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45) - '@dcloudio/uni-mp-baidu': - specifier: 3.0.0-3081220230817001 - version: registry.npmmirror.com/@dcloudio/uni-mp-baidu@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45) - '@dcloudio/uni-mp-jd': - specifier: 3.0.0-3081220230817001 - version: registry.npmmirror.com/@dcloudio/uni-mp-jd@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45) - '@dcloudio/uni-mp-kuaishou': - specifier: 3.0.0-3081220230817001 - version: registry.npmmirror.com/@dcloudio/uni-mp-kuaishou@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45) - '@dcloudio/uni-mp-lark': - specifier: 3.0.0-3081220230817001 - version: registry.npmmirror.com/@dcloudio/uni-mp-lark@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45) - '@dcloudio/uni-mp-qq': - specifier: 3.0.0-3081220230817001 - version: registry.npmmirror.com/@dcloudio/uni-mp-qq@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45) - '@dcloudio/uni-mp-toutiao': - specifier: 3.0.0-3081220230817001 - version: registry.npmmirror.com/@dcloudio/uni-mp-toutiao@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45) - '@dcloudio/uni-mp-weixin': - specifier: 3.0.0-3081220230817001 - version: registry.npmmirror.com/@dcloudio/uni-mp-weixin@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45) - '@dcloudio/uni-quickapp-webview': - specifier: 3.0.0-3081220230817001 - version: registry.npmmirror.com/@dcloudio/uni-quickapp-webview@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45) - axios: - specifier: ^1.5.0 - version: registry.npmmirror.com/axios@1.5.0 - highlight.js: - specifier: ^11.8.0 - version: registry.npmmirror.com/highlight.js@11.8.0 - marked: - specifier: ^9.0.0 - version: registry.npmmirror.com/marked@9.0.0 - mp-html: - specifier: ^2.4.2 - version: registry.npmmirror.com/mp-html@2.4.2 - pinia: - specifier: 2.0.33 - version: registry.npmmirror.com/pinia@2.0.33(vue@3.2.45) - sass: - specifier: ^1.66.1 - version: registry.npmmirror.com/sass@1.66.1 - uni-read-pages: - specifier: ^1.0.5 - version: registry.npmmirror.com/uni-read-pages@1.0.5 - uni-simple-router: - specifier: 2.0.8-beta.4 - version: registry.npmmirror.com/uni-simple-router@2.0.8-beta.4 - vue: - specifier: ^3.2.45 - version: registry.npmmirror.com/vue@3.2.45 - vue-i18n: - specifier: ^9.1.9 - version: registry.npmmirror.com/vue-i18n@9.1.9(vue@3.2.45) - -devDependencies: - '@dcloudio/types': - specifier: ^3.3.2 - version: registry.npmmirror.com/@dcloudio/types@3.3.2 - '@dcloudio/uni-automator': - specifier: 3.0.0-3081220230817001 - version: registry.npmmirror.com/@dcloudio/uni-automator@3.0.0-3081220230817001(jest-environment-node@27.5.1)(jest@27.0.4)(postcss@8.4.29)(vue@3.2.45) - '@dcloudio/uni-cli-shared': - specifier: 3.0.0-3081220230817001 - version: registry.npmmirror.com/@dcloudio/uni-cli-shared@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45) - '@dcloudio/uni-stacktracey': - specifier: 3.0.0-3081220230817001 - version: registry.npmmirror.com/@dcloudio/uni-stacktracey@3.0.0-3081220230817001 - '@dcloudio/vite-plugin-uni': - specifier: 3.0.0-3081220230817001 - version: registry.npmmirror.com/@dcloudio/vite-plugin-uni@3.0.0-3081220230817001(postcss@8.4.29)(vite@4.0.0)(vue@3.2.45) - '@vue/runtime-core': - specifier: ^3.2.45 - version: registry.npmmirror.com/@vue/runtime-core@3.2.45 - vite: - specifier: 4.0.0 - version: registry.npmmirror.com/vite@4.0.0(sass@1.66.1)(terser@5.19.4) - -packages: - - registry.npmmirror.com/@ampproject/remapping@2.2.1: - resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ampproject/remapping/-/remapping-2.2.1.tgz} - name: '@ampproject/remapping' - version: 2.2.1 - engines: {node: '>=6.0.0'} - dependencies: - '@jridgewell/gen-mapping': registry.npmmirror.com/@jridgewell/gen-mapping@0.3.3 - '@jridgewell/trace-mapping': registry.npmmirror.com/@jridgewell/trace-mapping@0.3.19 - - registry.npmmirror.com/@babel/code-frame@7.22.13: - resolution: {integrity: sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/code-frame/-/code-frame-7.22.13.tgz} - name: '@babel/code-frame' - version: 7.22.13 - engines: {node: '>=6.9.0'} - dependencies: - '@babel/highlight': registry.npmmirror.com/@babel/highlight@7.22.13 - chalk: registry.npmmirror.com/chalk@2.4.2 - - registry.npmmirror.com/@babel/compat-data@7.22.9: - resolution: {integrity: sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/compat-data/-/compat-data-7.22.9.tgz} - name: '@babel/compat-data' - version: 7.22.9 - engines: {node: '>=6.9.0'} - - registry.npmmirror.com/@babel/core@7.22.15: - resolution: {integrity: sha512-PtZqMmgRrvj8ruoEOIwVA3yoF91O+Hgw9o7DAUTNBA6Mo2jpu31clx9a7Nz/9JznqetTR6zwfC4L3LAjKQXUwA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/core/-/core-7.22.15.tgz} - name: '@babel/core' - version: 7.22.15 - engines: {node: '>=6.9.0'} - dependencies: - '@ampproject/remapping': registry.npmmirror.com/@ampproject/remapping@2.2.1 - '@babel/code-frame': registry.npmmirror.com/@babel/code-frame@7.22.13 - '@babel/generator': registry.npmmirror.com/@babel/generator@7.22.15 - '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets@7.22.15 - '@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms@7.22.15(@babel/core@7.22.15) - '@babel/helpers': registry.npmmirror.com/@babel/helpers@7.22.15 - '@babel/parser': registry.npmmirror.com/@babel/parser@7.22.15 - '@babel/template': registry.npmmirror.com/@babel/template@7.22.15 - '@babel/traverse': registry.npmmirror.com/@babel/traverse@7.22.15 - '@babel/types': registry.npmmirror.com/@babel/types@7.22.15 - convert-source-map: registry.npmmirror.com/convert-source-map@1.9.0 - debug: registry.npmmirror.com/debug@4.3.4 - gensync: registry.npmmirror.com/gensync@1.0.0-beta.2 - json5: registry.npmmirror.com/json5@2.2.3 - semver: registry.npmmirror.com/semver@6.3.1 - transitivePeerDependencies: - - supports-color - - registry.npmmirror.com/@babel/generator@7.22.15: - resolution: {integrity: sha512-Zu9oWARBqeVOW0dZOjXc3JObrzuqothQ3y/n1kUtrjCoCPLkXUwMvOo/F/TCfoHMbWIFlWwpZtkZVb9ga4U2pA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/generator/-/generator-7.22.15.tgz} - name: '@babel/generator' - version: 7.22.15 - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': registry.npmmirror.com/@babel/types@7.22.15 - '@jridgewell/gen-mapping': registry.npmmirror.com/@jridgewell/gen-mapping@0.3.3 - '@jridgewell/trace-mapping': registry.npmmirror.com/@jridgewell/trace-mapping@0.3.19 - jsesc: registry.npmmirror.com/jsesc@2.5.2 - - registry.npmmirror.com/@babel/helper-annotate-as-pure@7.22.5: - resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz} - name: '@babel/helper-annotate-as-pure' - version: 7.22.5 - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': registry.npmmirror.com/@babel/types@7.22.15 - dev: true - - registry.npmmirror.com/@babel/helper-builder-binary-assignment-operator-visitor@7.22.15: - resolution: {integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.15.tgz} - name: '@babel/helper-builder-binary-assignment-operator-visitor' - version: 7.22.15 - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': registry.npmmirror.com/@babel/types@7.22.15 - dev: true - - registry.npmmirror.com/@babel/helper-compilation-targets@7.22.15: - resolution: {integrity: sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.15.tgz} - name: '@babel/helper-compilation-targets' - version: 7.22.15 - engines: {node: '>=6.9.0'} - dependencies: - '@babel/compat-data': registry.npmmirror.com/@babel/compat-data@7.22.9 - '@babel/helper-validator-option': registry.npmmirror.com/@babel/helper-validator-option@7.22.15 - browserslist: registry.npmmirror.com/browserslist@4.21.10 - lru-cache: registry.npmmirror.com/lru-cache@5.1.1 - semver: registry.npmmirror.com/semver@6.3.1 - - registry.npmmirror.com/@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.22.15): - resolution: {integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.15.tgz} - id: registry.npmmirror.com/@babel/helper-create-class-features-plugin/7.22.15 - name: '@babel/helper-create-class-features-plugin' - version: 7.22.15 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure@7.22.5 - '@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor@7.22.5 - '@babel/helper-function-name': registry.npmmirror.com/@babel/helper-function-name@7.22.5 - '@babel/helper-member-expression-to-functions': registry.npmmirror.com/@babel/helper-member-expression-to-functions@7.22.15 - '@babel/helper-optimise-call-expression': registry.npmmirror.com/@babel/helper-optimise-call-expression@7.22.5 - '@babel/helper-replace-supers': registry.npmmirror.com/@babel/helper-replace-supers@7.22.9(@babel/core@7.22.15) - '@babel/helper-skip-transparent-expression-wrappers': registry.npmmirror.com/@babel/helper-skip-transparent-expression-wrappers@7.22.5 - '@babel/helper-split-export-declaration': registry.npmmirror.com/@babel/helper-split-export-declaration@7.22.6 - semver: registry.npmmirror.com/semver@6.3.1 - dev: true - - registry.npmmirror.com/@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.22.15): - resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.15.tgz} - id: registry.npmmirror.com/@babel/helper-create-regexp-features-plugin/7.22.15 - name: '@babel/helper-create-regexp-features-plugin' - version: 7.22.15 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure@7.22.5 - regexpu-core: registry.npmmirror.com/regexpu-core@5.3.2 - semver: registry.npmmirror.com/semver@6.3.1 - dev: true - - registry.npmmirror.com/@babel/helper-define-polyfill-provider@0.4.2(@babel/core@7.22.15): - resolution: {integrity: sha512-k0qnnOqHn5dK9pZpfD5XXZ9SojAITdCKRn2Lp6rnDGzIbaP0rHyMPk/4wsSxVBVz4RfN0q6VpXWP2pDGIoQ7hw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.2.tgz} - id: registry.npmmirror.com/@babel/helper-define-polyfill-provider/0.4.2 - name: '@babel/helper-define-polyfill-provider' - version: 0.4.2 - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets@7.22.15 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - debug: registry.npmmirror.com/debug@4.3.4 - lodash.debounce: registry.npmmirror.com/lodash.debounce@4.0.8 - resolve: registry.npmmirror.com/resolve@1.22.4 - transitivePeerDependencies: - - supports-color - dev: true - - registry.npmmirror.com/@babel/helper-environment-visitor@7.22.5: - resolution: {integrity: sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz} - name: '@babel/helper-environment-visitor' - version: 7.22.5 - engines: {node: '>=6.9.0'} - - registry.npmmirror.com/@babel/helper-function-name@7.22.5: - resolution: {integrity: sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz} - name: '@babel/helper-function-name' - version: 7.22.5 - engines: {node: '>=6.9.0'} - dependencies: - '@babel/template': registry.npmmirror.com/@babel/template@7.22.15 - '@babel/types': registry.npmmirror.com/@babel/types@7.22.15 - - registry.npmmirror.com/@babel/helper-hoist-variables@7.22.5: - resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz} - name: '@babel/helper-hoist-variables' - version: 7.22.5 - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': registry.npmmirror.com/@babel/types@7.22.15 - - registry.npmmirror.com/@babel/helper-member-expression-to-functions@7.22.15: - resolution: {integrity: sha512-qLNsZbgrNh0fDQBCPocSL8guki1hcPvltGDv/NxvUoABwFq7GkKSu1nRXeJkVZc+wJvne2E0RKQz+2SQrz6eAA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.22.15.tgz} - name: '@babel/helper-member-expression-to-functions' - version: 7.22.15 - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': registry.npmmirror.com/@babel/types@7.22.15 - dev: true - - registry.npmmirror.com/@babel/helper-module-imports@7.22.15: - resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz} - name: '@babel/helper-module-imports' - version: 7.22.15 - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': registry.npmmirror.com/@babel/types@7.22.15 - - registry.npmmirror.com/@babel/helper-module-transforms@7.22.15(@babel/core@7.22.15): - resolution: {integrity: sha512-l1UiX4UyHSFsYt17iQ3Se5pQQZZHa22zyIXURmvkmLCD4t/aU+dvNWHatKac/D9Vm9UES7nvIqHs4jZqKviUmQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-module-transforms/-/helper-module-transforms-7.22.15.tgz} - id: registry.npmmirror.com/@babel/helper-module-transforms/7.22.15 - name: '@babel/helper-module-transforms' - version: 7.22.15 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor@7.22.5 - '@babel/helper-module-imports': registry.npmmirror.com/@babel/helper-module-imports@7.22.15 - '@babel/helper-simple-access': registry.npmmirror.com/@babel/helper-simple-access@7.22.5 - '@babel/helper-split-export-declaration': registry.npmmirror.com/@babel/helper-split-export-declaration@7.22.6 - '@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier@7.22.15 - - registry.npmmirror.com/@babel/helper-optimise-call-expression@7.22.5: - resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz} - name: '@babel/helper-optimise-call-expression' - version: 7.22.5 - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': registry.npmmirror.com/@babel/types@7.22.15 - dev: true - - registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5: - resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz} - name: '@babel/helper-plugin-utils' - version: 7.22.5 - engines: {node: '>=6.9.0'} - dev: true - - registry.npmmirror.com/@babel/helper-remap-async-to-generator@7.22.9(@babel/core@7.22.15): - resolution: {integrity: sha512-8WWC4oR4Px+tr+Fp0X3RHDVfINGpF3ad1HIbrc8A77epiR6eMMc6jsgozkzT2uDiOOdoS9cLIQ+XD2XvI2WSmQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.9.tgz} - id: registry.npmmirror.com/@babel/helper-remap-async-to-generator/7.22.9 - name: '@babel/helper-remap-async-to-generator' - version: 7.22.9 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure@7.22.5 - '@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor@7.22.5 - '@babel/helper-wrap-function': registry.npmmirror.com/@babel/helper-wrap-function@7.22.10 - dev: true - - registry.npmmirror.com/@babel/helper-replace-supers@7.22.9(@babel/core@7.22.15): - resolution: {integrity: sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-replace-supers/-/helper-replace-supers-7.22.9.tgz} - id: registry.npmmirror.com/@babel/helper-replace-supers/7.22.9 - name: '@babel/helper-replace-supers' - version: 7.22.9 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor@7.22.5 - '@babel/helper-member-expression-to-functions': registry.npmmirror.com/@babel/helper-member-expression-to-functions@7.22.15 - '@babel/helper-optimise-call-expression': registry.npmmirror.com/@babel/helper-optimise-call-expression@7.22.5 - dev: true - - registry.npmmirror.com/@babel/helper-simple-access@7.22.5: - resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz} - name: '@babel/helper-simple-access' - version: 7.22.5 - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': registry.npmmirror.com/@babel/types@7.22.15 - - registry.npmmirror.com/@babel/helper-skip-transparent-expression-wrappers@7.22.5: - resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz} - name: '@babel/helper-skip-transparent-expression-wrappers' - version: 7.22.5 - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': registry.npmmirror.com/@babel/types@7.22.15 - dev: true - - registry.npmmirror.com/@babel/helper-split-export-declaration@7.22.6: - resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz} - name: '@babel/helper-split-export-declaration' - version: 7.22.6 - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': registry.npmmirror.com/@babel/types@7.22.15 - - registry.npmmirror.com/@babel/helper-string-parser@7.22.5: - resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz} - name: '@babel/helper-string-parser' - version: 7.22.5 - engines: {node: '>=6.9.0'} - - registry.npmmirror.com/@babel/helper-validator-identifier@7.22.15: - resolution: {integrity: sha512-4E/F9IIEi8WR94324mbDUMo074YTheJmd7eZF5vITTeYchqAi6sYXRLHUVsmkdmY4QjfKTcB2jB7dVP3NaBElQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.15.tgz} - name: '@babel/helper-validator-identifier' - version: 7.22.15 - engines: {node: '>=6.9.0'} - - registry.npmmirror.com/@babel/helper-validator-option@7.22.15: - resolution: {integrity: sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-validator-option/-/helper-validator-option-7.22.15.tgz} - name: '@babel/helper-validator-option' - version: 7.22.15 - engines: {node: '>=6.9.0'} - - registry.npmmirror.com/@babel/helper-wrap-function@7.22.10: - resolution: {integrity: sha512-OnMhjWjuGYtdoO3FmsEFWvBStBAe2QOgwOLsLNDjN+aaiMD8InJk1/O3HSD8lkqTjCgg5YI34Tz15KNNA3p+nQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-wrap-function/-/helper-wrap-function-7.22.10.tgz} - name: '@babel/helper-wrap-function' - version: 7.22.10 - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-function-name': registry.npmmirror.com/@babel/helper-function-name@7.22.5 - '@babel/template': registry.npmmirror.com/@babel/template@7.22.15 - '@babel/types': registry.npmmirror.com/@babel/types@7.22.15 - dev: true - - registry.npmmirror.com/@babel/helpers@7.22.15: - resolution: {integrity: sha512-7pAjK0aSdxOwR+CcYAqgWOGy5dcfvzsTIfFTb2odQqW47MDfv14UaJDY6eng8ylM2EaeKXdxaSWESbkmaQHTmw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helpers/-/helpers-7.22.15.tgz} - name: '@babel/helpers' - version: 7.22.15 - engines: {node: '>=6.9.0'} - dependencies: - '@babel/template': registry.npmmirror.com/@babel/template@7.22.15 - '@babel/traverse': registry.npmmirror.com/@babel/traverse@7.22.15 - '@babel/types': registry.npmmirror.com/@babel/types@7.22.15 - transitivePeerDependencies: - - supports-color - - registry.npmmirror.com/@babel/highlight@7.22.13: - resolution: {integrity: sha512-C/BaXcnnvBCmHTpz/VGZ8jgtE2aYlW4hxDhseJAWZb7gqGM/qtCK6iZUb0TyKFf7BOUsBH7Q7fkRsDRhg1XklQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/highlight/-/highlight-7.22.13.tgz} - name: '@babel/highlight' - version: 7.22.13 - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier@7.22.15 - chalk: registry.npmmirror.com/chalk@2.4.2 - js-tokens: registry.npmmirror.com/js-tokens@4.0.0 - - registry.npmmirror.com/@babel/parser@7.22.15: - resolution: {integrity: sha512-RWmQ/sklUN9BvGGpCDgSubhHWfAx24XDTDObup4ffvxaYsptOg2P3KG0j+1eWKLxpkX0j0uHxmpq2Z1SP/VhxA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/parser/-/parser-7.22.15.tgz} - name: '@babel/parser' - version: 7.22.15 - engines: {node: '>=6.0.0'} - hasBin: true - dependencies: - '@babel/types': registry.npmmirror.com/@babel/types@7.22.15 - - registry.npmmirror.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.15(@babel/core@7.22.15): - resolution: {integrity: sha512-FB9iYlz7rURmRJyXRKEnalYPPdn87H5no108cyuQQyMwlpJ2SJtpIUBI27kdTin956pz+LPypkPVPUTlxOmrsg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.15.tgz} - id: registry.npmmirror.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.22.15 - name: '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression' - version: 7.22.15 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.15(@babel/core@7.22.15): - resolution: {integrity: sha512-Hyph9LseGvAeeXzikV88bczhsrLrIZqDPxO+sSmAunMPaGrBGhfMWzCPYTtiW9t+HzSE2wtV8e5cc5P6r1xMDQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.15.tgz} - id: registry.npmmirror.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.22.15 - name: '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining' - version: 7.22.15 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.13.0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - '@babel/helper-skip-transparent-expression-wrappers': registry.npmmirror.com/@babel/helper-skip-transparent-expression-wrappers@7.22.5 - '@babel/plugin-transform-optional-chaining': registry.npmmirror.com/@babel/plugin-transform-optional-chaining@7.22.15(@babel/core@7.22.15) - dev: true - - registry.npmmirror.com/@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.22.15): - resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz} - id: registry.npmmirror.com/@babel/plugin-proposal-private-property-in-object/7.21.0-placeholder-for-preset-env.2 - name: '@babel/plugin-proposal-private-property-in-object' - version: 7.21.0-placeholder-for-preset-env.2 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - dev: true - - registry.npmmirror.com/@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.22.15): - resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz} - id: registry.npmmirror.com/@babel/plugin-syntax-async-generators/7.8.4 - name: '@babel/plugin-syntax-async-generators' - version: 7.8.4 - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.22.15): - resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz} - id: registry.npmmirror.com/@babel/plugin-syntax-bigint/7.8.3 - name: '@babel/plugin-syntax-bigint' - version: 7.8.3 - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.22.15): - resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz} - id: registry.npmmirror.com/@babel/plugin-syntax-class-properties/7.12.13 - name: '@babel/plugin-syntax-class-properties' - version: 7.12.13 - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.22.15): - resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz} - id: registry.npmmirror.com/@babel/plugin-syntax-class-static-block/7.14.5 - name: '@babel/plugin-syntax-class-static-block' - version: 7.14.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.22.15): - resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz} - id: registry.npmmirror.com/@babel/plugin-syntax-dynamic-import/7.8.3 - name: '@babel/plugin-syntax-dynamic-import' - version: 7.8.3 - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.22.15): - resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz} - id: registry.npmmirror.com/@babel/plugin-syntax-export-namespace-from/7.8.3 - name: '@babel/plugin-syntax-export-namespace-from' - version: 7.8.3 - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.22.15): - resolution: {integrity: sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.22.5.tgz} - id: registry.npmmirror.com/@babel/plugin-syntax-import-assertions/7.22.5 - name: '@babel/plugin-syntax-import-assertions' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-syntax-import-attributes@7.22.5(@babel/core@7.22.15): - resolution: {integrity: sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.22.5.tgz} - id: registry.npmmirror.com/@babel/plugin-syntax-import-attributes/7.22.5 - name: '@babel/plugin-syntax-import-attributes' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.22.15): - 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 - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.22.15): - resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz} - id: registry.npmmirror.com/@babel/plugin-syntax-json-strings/7.8.3 - name: '@babel/plugin-syntax-json-strings' - version: 7.8.3 - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.22.15): - resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz} - id: registry.npmmirror.com/@babel/plugin-syntax-jsx/7.22.5 - name: '@babel/plugin-syntax-jsx' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.22.15): - resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz} - id: registry.npmmirror.com/@babel/plugin-syntax-logical-assignment-operators/7.10.4 - name: '@babel/plugin-syntax-logical-assignment-operators' - version: 7.10.4 - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.22.15): - resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz} - id: registry.npmmirror.com/@babel/plugin-syntax-nullish-coalescing-operator/7.8.3 - name: '@babel/plugin-syntax-nullish-coalescing-operator' - version: 7.8.3 - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.22.15): - resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz} - id: registry.npmmirror.com/@babel/plugin-syntax-numeric-separator/7.10.4 - name: '@babel/plugin-syntax-numeric-separator' - version: 7.10.4 - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.22.15): - resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz} - id: registry.npmmirror.com/@babel/plugin-syntax-object-rest-spread/7.8.3 - name: '@babel/plugin-syntax-object-rest-spread' - version: 7.8.3 - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.22.15): - resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz} - id: registry.npmmirror.com/@babel/plugin-syntax-optional-catch-binding/7.8.3 - name: '@babel/plugin-syntax-optional-catch-binding' - version: 7.8.3 - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.22.15): - resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz} - id: registry.npmmirror.com/@babel/plugin-syntax-optional-chaining/7.8.3 - name: '@babel/plugin-syntax-optional-chaining' - version: 7.8.3 - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.22.15): - resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz} - id: registry.npmmirror.com/@babel/plugin-syntax-private-property-in-object/7.14.5 - name: '@babel/plugin-syntax-private-property-in-object' - version: 7.14.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.22.15): - resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz} - id: registry.npmmirror.com/@babel/plugin-syntax-top-level-await/7.14.5 - name: '@babel/plugin-syntax-top-level-await' - version: 7.14.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.22.15): - resolution: {integrity: sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz} - id: registry.npmmirror.com/@babel/plugin-syntax-typescript/7.22.5 - name: '@babel/plugin-syntax-typescript' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.22.15): - resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz} - id: registry.npmmirror.com/@babel/plugin-syntax-unicode-sets-regex/7.18.6 - name: '@babel/plugin-syntax-unicode-sets-regex' - version: 7.18.6 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-create-regexp-features-plugin': registry.npmmirror.com/@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.22.15) - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.22.15): - resolution: {integrity: sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.22.5.tgz} - id: registry.npmmirror.com/@babel/plugin-transform-arrow-functions/7.22.5 - name: '@babel/plugin-transform-arrow-functions' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-transform-async-generator-functions@7.22.15(@babel/core@7.22.15): - resolution: {integrity: sha512-jBm1Es25Y+tVoTi5rfd5t1KLmL8ogLKpXszboWOTTtGFGz2RKnQe2yn7HbZ+kb/B8N0FVSGQo874NSlOU1T4+w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.22.15.tgz} - id: registry.npmmirror.com/@babel/plugin-transform-async-generator-functions/7.22.15 - name: '@babel/plugin-transform-async-generator-functions' - version: 7.22.15 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor@7.22.5 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - '@babel/helper-remap-async-to-generator': registry.npmmirror.com/@babel/helper-remap-async-to-generator@7.22.9(@babel/core@7.22.15) - '@babel/plugin-syntax-async-generators': registry.npmmirror.com/@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.22.15) - dev: true - - registry.npmmirror.com/@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.22.15): - resolution: {integrity: sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.22.5.tgz} - id: registry.npmmirror.com/@babel/plugin-transform-async-to-generator/7.22.5 - name: '@babel/plugin-transform-async-to-generator' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-module-imports': registry.npmmirror.com/@babel/helper-module-imports@7.22.15 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - '@babel/helper-remap-async-to-generator': registry.npmmirror.com/@babel/helper-remap-async-to-generator@7.22.9(@babel/core@7.22.15) - dev: true - - registry.npmmirror.com/@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.22.15): - resolution: {integrity: sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.22.5.tgz} - id: registry.npmmirror.com/@babel/plugin-transform-block-scoped-functions/7.22.5 - name: '@babel/plugin-transform-block-scoped-functions' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-transform-block-scoping@7.22.15(@babel/core@7.22.15): - resolution: {integrity: sha512-G1czpdJBZCtngoK1sJgloLiOHUnkb/bLZwqVZD8kXmq0ZnVfTTWUcs9OWtp0mBtYJ+4LQY1fllqBkOIPhXmFmw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.22.15.tgz} - id: registry.npmmirror.com/@babel/plugin-transform-block-scoping/7.22.15 - name: '@babel/plugin-transform-block-scoping' - version: 7.22.15 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-transform-class-properties@7.22.5(@babel/core@7.22.15): - resolution: {integrity: sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.22.5.tgz} - id: registry.npmmirror.com/@babel/plugin-transform-class-properties/7.22.5 - name: '@babel/plugin-transform-class-properties' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-create-class-features-plugin': registry.npmmirror.com/@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.22.15) - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-transform-class-static-block@7.22.11(@babel/core@7.22.15): - resolution: {integrity: sha512-GMM8gGmqI7guS/llMFk1bJDkKfn3v3C4KHK9Yg1ey5qcHcOlKb0QvcMrgzvxo+T03/4szNh5lghY+fEC98Kq9g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.22.11.tgz} - id: registry.npmmirror.com/@babel/plugin-transform-class-static-block/7.22.11 - name: '@babel/plugin-transform-class-static-block' - version: 7.22.11 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.12.0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-create-class-features-plugin': registry.npmmirror.com/@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.22.15) - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - '@babel/plugin-syntax-class-static-block': registry.npmmirror.com/@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.22.15) - dev: true - - registry.npmmirror.com/@babel/plugin-transform-classes@7.22.15(@babel/core@7.22.15): - resolution: {integrity: sha512-VbbC3PGjBdE0wAWDdHM9G8Gm977pnYI0XpqMd6LrKISj8/DJXEsWqgRuTYaNE9Bv0JGhTZUzHDlMk18IpOuoqw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.15.tgz} - id: registry.npmmirror.com/@babel/plugin-transform-classes/7.22.15 - name: '@babel/plugin-transform-classes' - version: 7.22.15 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure@7.22.5 - '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets@7.22.15 - '@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor@7.22.5 - '@babel/helper-function-name': registry.npmmirror.com/@babel/helper-function-name@7.22.5 - '@babel/helper-optimise-call-expression': registry.npmmirror.com/@babel/helper-optimise-call-expression@7.22.5 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - '@babel/helper-replace-supers': registry.npmmirror.com/@babel/helper-replace-supers@7.22.9(@babel/core@7.22.15) - '@babel/helper-split-export-declaration': registry.npmmirror.com/@babel/helper-split-export-declaration@7.22.6 - globals: registry.npmmirror.com/globals@11.12.0 - dev: true - - registry.npmmirror.com/@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.22.15): - resolution: {integrity: sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.22.5.tgz} - id: registry.npmmirror.com/@babel/plugin-transform-computed-properties/7.22.5 - name: '@babel/plugin-transform-computed-properties' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - '@babel/template': registry.npmmirror.com/@babel/template@7.22.15 - dev: true - - registry.npmmirror.com/@babel/plugin-transform-destructuring@7.22.15(@babel/core@7.22.15): - resolution: {integrity: sha512-HzG8sFl1ZVGTme74Nw+X01XsUTqERVQ6/RLHo3XjGRzm7XD6QTtfS3NJotVgCGy8BzkDqRjRBD8dAyJn5TuvSQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.22.15.tgz} - id: registry.npmmirror.com/@babel/plugin-transform-destructuring/7.22.15 - name: '@babel/plugin-transform-destructuring' - version: 7.22.15 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-transform-dotall-regex@7.22.5(@babel/core@7.22.15): - resolution: {integrity: sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.22.5.tgz} - id: registry.npmmirror.com/@babel/plugin-transform-dotall-regex/7.22.5 - name: '@babel/plugin-transform-dotall-regex' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-create-regexp-features-plugin': registry.npmmirror.com/@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.22.15) - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-transform-duplicate-keys@7.22.5(@babel/core@7.22.15): - resolution: {integrity: sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.22.5.tgz} - id: registry.npmmirror.com/@babel/plugin-transform-duplicate-keys/7.22.5 - name: '@babel/plugin-transform-duplicate-keys' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-transform-dynamic-import@7.22.11(@babel/core@7.22.15): - resolution: {integrity: sha512-g/21plo58sfteWjaO0ZNVb+uEOkJNjAaHhbejrnBmu011l/eNDScmkbjCC3l4FKb10ViaGU4aOkFznSu2zRHgA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.22.11.tgz} - id: registry.npmmirror.com/@babel/plugin-transform-dynamic-import/7.22.11 - name: '@babel/plugin-transform-dynamic-import' - version: 7.22.11 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - '@babel/plugin-syntax-dynamic-import': registry.npmmirror.com/@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.22.15) - dev: true - - registry.npmmirror.com/@babel/plugin-transform-exponentiation-operator@7.22.5(@babel/core@7.22.15): - resolution: {integrity: sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.22.5.tgz} - id: registry.npmmirror.com/@babel/plugin-transform-exponentiation-operator/7.22.5 - name: '@babel/plugin-transform-exponentiation-operator' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-builder-binary-assignment-operator-visitor': registry.npmmirror.com/@babel/helper-builder-binary-assignment-operator-visitor@7.22.15 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-transform-export-namespace-from@7.22.11(@babel/core@7.22.15): - resolution: {integrity: sha512-xa7aad7q7OiT8oNZ1mU7NrISjlSkVdMbNxn9IuLZyL9AJEhs1Apba3I+u5riX1dIkdptP5EKDG5XDPByWxtehw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.22.11.tgz} - id: registry.npmmirror.com/@babel/plugin-transform-export-namespace-from/7.22.11 - name: '@babel/plugin-transform-export-namespace-from' - version: 7.22.11 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - '@babel/plugin-syntax-export-namespace-from': registry.npmmirror.com/@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.22.15) - dev: true - - registry.npmmirror.com/@babel/plugin-transform-for-of@7.22.15(@babel/core@7.22.15): - resolution: {integrity: sha512-me6VGeHsx30+xh9fbDLLPi0J1HzmeIIyenoOQHuw2D4m2SAU3NrspX5XxJLBpqn5yrLzrlw2Iy3RA//Bx27iOA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.15.tgz} - id: registry.npmmirror.com/@babel/plugin-transform-for-of/7.22.15 - name: '@babel/plugin-transform-for-of' - version: 7.22.15 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-transform-function-name@7.22.5(@babel/core@7.22.15): - resolution: {integrity: sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.22.5.tgz} - id: registry.npmmirror.com/@babel/plugin-transform-function-name/7.22.5 - name: '@babel/plugin-transform-function-name' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets@7.22.15 - '@babel/helper-function-name': registry.npmmirror.com/@babel/helper-function-name@7.22.5 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-transform-json-strings@7.22.11(@babel/core@7.22.15): - resolution: {integrity: sha512-CxT5tCqpA9/jXFlme9xIBCc5RPtdDq3JpkkhgHQqtDdiTnTI0jtZ0QzXhr5DILeYifDPp2wvY2ad+7+hLMW5Pw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.22.11.tgz} - id: registry.npmmirror.com/@babel/plugin-transform-json-strings/7.22.11 - name: '@babel/plugin-transform-json-strings' - version: 7.22.11 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - '@babel/plugin-syntax-json-strings': registry.npmmirror.com/@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.22.15) - dev: true - - registry.npmmirror.com/@babel/plugin-transform-literals@7.22.5(@babel/core@7.22.15): - resolution: {integrity: sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.22.5.tgz} - id: registry.npmmirror.com/@babel/plugin-transform-literals/7.22.5 - name: '@babel/plugin-transform-literals' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-transform-logical-assignment-operators@7.22.11(@babel/core@7.22.15): - resolution: {integrity: sha512-qQwRTP4+6xFCDV5k7gZBF3C31K34ut0tbEcTKxlX/0KXxm9GLcO14p570aWxFvVzx6QAfPgq7gaeIHXJC8LswQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.22.11.tgz} - id: registry.npmmirror.com/@babel/plugin-transform-logical-assignment-operators/7.22.11 - name: '@babel/plugin-transform-logical-assignment-operators' - version: 7.22.11 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - '@babel/plugin-syntax-logical-assignment-operators': registry.npmmirror.com/@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.22.15) - dev: true - - registry.npmmirror.com/@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.22.15): - resolution: {integrity: sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.22.5.tgz} - id: registry.npmmirror.com/@babel/plugin-transform-member-expression-literals/7.22.5 - name: '@babel/plugin-transform-member-expression-literals' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-transform-modules-amd@7.22.5(@babel/core@7.22.15): - resolution: {integrity: sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.22.5.tgz} - id: registry.npmmirror.com/@babel/plugin-transform-modules-amd/7.22.5 - name: '@babel/plugin-transform-modules-amd' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms@7.22.15(@babel/core@7.22.15) - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-transform-modules-commonjs@7.22.15(@babel/core@7.22.15): - resolution: {integrity: sha512-jWL4eh90w0HQOTKP2MoXXUpVxilxsB2Vl4ji69rSjS3EcZ/v4sBmn+A3NpepuJzBhOaEBbR7udonlHHn5DWidg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.22.15.tgz} - id: registry.npmmirror.com/@babel/plugin-transform-modules-commonjs/7.22.15 - name: '@babel/plugin-transform-modules-commonjs' - version: 7.22.15 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms@7.22.15(@babel/core@7.22.15) - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - '@babel/helper-simple-access': registry.npmmirror.com/@babel/helper-simple-access@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-transform-modules-systemjs@7.22.11(@babel/core@7.22.15): - resolution: {integrity: sha512-rIqHmHoMEOhI3VkVf5jQ15l539KrwhzqcBO6wdCNWPWc/JWt9ILNYNUssbRpeq0qWns8svuw8LnMNCvWBIJ8wA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.22.11.tgz} - id: registry.npmmirror.com/@babel/plugin-transform-modules-systemjs/7.22.11 - name: '@babel/plugin-transform-modules-systemjs' - version: 7.22.11 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-hoist-variables': registry.npmmirror.com/@babel/helper-hoist-variables@7.22.5 - '@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms@7.22.15(@babel/core@7.22.15) - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - '@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier@7.22.15 - dev: true - - registry.npmmirror.com/@babel/plugin-transform-modules-umd@7.22.5(@babel/core@7.22.15): - resolution: {integrity: sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.22.5.tgz} - id: registry.npmmirror.com/@babel/plugin-transform-modules-umd/7.22.5 - name: '@babel/plugin-transform-modules-umd' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms@7.22.15(@babel/core@7.22.15) - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.22.15): - resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz} - id: registry.npmmirror.com/@babel/plugin-transform-named-capturing-groups-regex/7.22.5 - name: '@babel/plugin-transform-named-capturing-groups-regex' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-create-regexp-features-plugin': registry.npmmirror.com/@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.22.15) - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-transform-new-target@7.22.5(@babel/core@7.22.15): - resolution: {integrity: sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.22.5.tgz} - id: registry.npmmirror.com/@babel/plugin-transform-new-target/7.22.5 - name: '@babel/plugin-transform-new-target' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-transform-nullish-coalescing-operator@7.22.11(@babel/core@7.22.15): - resolution: {integrity: sha512-YZWOw4HxXrotb5xsjMJUDlLgcDXSfO9eCmdl1bgW4+/lAGdkjaEvOnQ4p5WKKdUgSzO39dgPl0pTnfxm0OAXcg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.22.11.tgz} - id: registry.npmmirror.com/@babel/plugin-transform-nullish-coalescing-operator/7.22.11 - name: '@babel/plugin-transform-nullish-coalescing-operator' - version: 7.22.11 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - '@babel/plugin-syntax-nullish-coalescing-operator': registry.npmmirror.com/@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.22.15) - dev: true - - registry.npmmirror.com/@babel/plugin-transform-numeric-separator@7.22.11(@babel/core@7.22.15): - resolution: {integrity: sha512-3dzU4QGPsILdJbASKhF/V2TVP+gJya1PsueQCxIPCEcerqF21oEcrob4mzjsp2Py/1nLfF5m+xYNMDpmA8vffg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.22.11.tgz} - id: registry.npmmirror.com/@babel/plugin-transform-numeric-separator/7.22.11 - name: '@babel/plugin-transform-numeric-separator' - version: 7.22.11 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - '@babel/plugin-syntax-numeric-separator': registry.npmmirror.com/@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.22.15) - dev: true - - registry.npmmirror.com/@babel/plugin-transform-object-rest-spread@7.22.15(@babel/core@7.22.15): - resolution: {integrity: sha512-fEB+I1+gAmfAyxZcX1+ZUwLeAuuf8VIg67CTznZE0MqVFumWkh8xWtn58I4dxdVf080wn7gzWoF8vndOViJe9Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.22.15.tgz} - id: registry.npmmirror.com/@babel/plugin-transform-object-rest-spread/7.22.15 - name: '@babel/plugin-transform-object-rest-spread' - version: 7.22.15 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/compat-data': registry.npmmirror.com/@babel/compat-data@7.22.9 - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets@7.22.15 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - '@babel/plugin-syntax-object-rest-spread': registry.npmmirror.com/@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.22.15) - '@babel/plugin-transform-parameters': registry.npmmirror.com/@babel/plugin-transform-parameters@7.22.15(@babel/core@7.22.15) - dev: true - - registry.npmmirror.com/@babel/plugin-transform-object-super@7.22.5(@babel/core@7.22.15): - resolution: {integrity: sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.22.5.tgz} - id: registry.npmmirror.com/@babel/plugin-transform-object-super/7.22.5 - name: '@babel/plugin-transform-object-super' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - '@babel/helper-replace-supers': registry.npmmirror.com/@babel/helper-replace-supers@7.22.9(@babel/core@7.22.15) - dev: true - - registry.npmmirror.com/@babel/plugin-transform-optional-catch-binding@7.22.11(@babel/core@7.22.15): - resolution: {integrity: sha512-rli0WxesXUeCJnMYhzAglEjLWVDF6ahb45HuprcmQuLidBJFWjNnOzssk2kuc6e33FlLaiZhG/kUIzUMWdBKaQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.22.11.tgz} - id: registry.npmmirror.com/@babel/plugin-transform-optional-catch-binding/7.22.11 - name: '@babel/plugin-transform-optional-catch-binding' - version: 7.22.11 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - '@babel/plugin-syntax-optional-catch-binding': registry.npmmirror.com/@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.22.15) - dev: true - - registry.npmmirror.com/@babel/plugin-transform-optional-chaining@7.22.15(@babel/core@7.22.15): - resolution: {integrity: sha512-ngQ2tBhq5vvSJw2Q2Z9i7ealNkpDMU0rGWnHPKqRZO0tzZ5tlaoz4hDvhXioOoaE0X2vfNss1djwg0DXlfu30A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.22.15.tgz} - id: registry.npmmirror.com/@babel/plugin-transform-optional-chaining/7.22.15 - name: '@babel/plugin-transform-optional-chaining' - version: 7.22.15 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - '@babel/helper-skip-transparent-expression-wrappers': registry.npmmirror.com/@babel/helper-skip-transparent-expression-wrappers@7.22.5 - '@babel/plugin-syntax-optional-chaining': registry.npmmirror.com/@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.22.15) - dev: true - - registry.npmmirror.com/@babel/plugin-transform-parameters@7.22.15(@babel/core@7.22.15): - resolution: {integrity: sha512-hjk7qKIqhyzhhUvRT683TYQOFa/4cQKwQy7ALvTpODswN40MljzNDa0YldevS6tGbxwaEKVn502JmY0dP7qEtQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.15.tgz} - id: registry.npmmirror.com/@babel/plugin-transform-parameters/7.22.15 - name: '@babel/plugin-transform-parameters' - version: 7.22.15 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-transform-private-methods@7.22.5(@babel/core@7.22.15): - resolution: {integrity: sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.22.5.tgz} - id: registry.npmmirror.com/@babel/plugin-transform-private-methods/7.22.5 - name: '@babel/plugin-transform-private-methods' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-create-class-features-plugin': registry.npmmirror.com/@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.22.15) - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-transform-private-property-in-object@7.22.11(@babel/core@7.22.15): - resolution: {integrity: sha512-sSCbqZDBKHetvjSwpyWzhuHkmW5RummxJBVbYLkGkaiTOWGxml7SXt0iWa03bzxFIx7wOj3g/ILRd0RcJKBeSQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.22.11.tgz} - id: registry.npmmirror.com/@babel/plugin-transform-private-property-in-object/7.22.11 - name: '@babel/plugin-transform-private-property-in-object' - version: 7.22.11 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure@7.22.5 - '@babel/helper-create-class-features-plugin': registry.npmmirror.com/@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.22.15) - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - '@babel/plugin-syntax-private-property-in-object': registry.npmmirror.com/@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.22.15) - dev: true - - registry.npmmirror.com/@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.22.15): - resolution: {integrity: sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.22.5.tgz} - id: registry.npmmirror.com/@babel/plugin-transform-property-literals/7.22.5 - name: '@babel/plugin-transform-property-literals' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-transform-regenerator@7.22.10(@babel/core@7.22.15): - resolution: {integrity: sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.10.tgz} - id: registry.npmmirror.com/@babel/plugin-transform-regenerator/7.22.10 - name: '@babel/plugin-transform-regenerator' - version: 7.22.10 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - regenerator-transform: registry.npmmirror.com/regenerator-transform@0.15.2 - dev: true - - registry.npmmirror.com/@babel/plugin-transform-reserved-words@7.22.5(@babel/core@7.22.15): - resolution: {integrity: sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.22.5.tgz} - id: registry.npmmirror.com/@babel/plugin-transform-reserved-words/7.22.5 - name: '@babel/plugin-transform-reserved-words' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.22.15): - resolution: {integrity: sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.22.5.tgz} - id: registry.npmmirror.com/@babel/plugin-transform-shorthand-properties/7.22.5 - name: '@babel/plugin-transform-shorthand-properties' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-transform-spread@7.22.5(@babel/core@7.22.15): - resolution: {integrity: sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.22.5.tgz} - id: registry.npmmirror.com/@babel/plugin-transform-spread/7.22.5 - name: '@babel/plugin-transform-spread' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - '@babel/helper-skip-transparent-expression-wrappers': registry.npmmirror.com/@babel/helper-skip-transparent-expression-wrappers@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-transform-sticky-regex@7.22.5(@babel/core@7.22.15): - resolution: {integrity: sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.22.5.tgz} - id: registry.npmmirror.com/@babel/plugin-transform-sticky-regex/7.22.5 - name: '@babel/plugin-transform-sticky-regex' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.22.15): - resolution: {integrity: sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.22.5.tgz} - id: registry.npmmirror.com/@babel/plugin-transform-template-literals/7.22.5 - name: '@babel/plugin-transform-template-literals' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-transform-typeof-symbol@7.22.5(@babel/core@7.22.15): - resolution: {integrity: sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.22.5.tgz} - id: registry.npmmirror.com/@babel/plugin-transform-typeof-symbol/7.22.5 - name: '@babel/plugin-transform-typeof-symbol' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-transform-typescript@7.22.15(@babel/core@7.22.15): - resolution: {integrity: sha512-1uirS0TnijxvQLnlv5wQBwOX3E1wCFX7ITv+9pBV2wKEk4K+M5tqDaoNXnTH8tjEIYHLO98MwiTWO04Ggz4XuA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.22.15.tgz} - id: registry.npmmirror.com/@babel/plugin-transform-typescript/7.22.15 - name: '@babel/plugin-transform-typescript' - version: 7.22.15 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure@7.22.5 - '@babel/helper-create-class-features-plugin': registry.npmmirror.com/@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.22.15) - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - '@babel/plugin-syntax-typescript': registry.npmmirror.com/@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.22.15) - dev: true - - registry.npmmirror.com/@babel/plugin-transform-unicode-escapes@7.22.10(@babel/core@7.22.15): - resolution: {integrity: sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.10.tgz} - id: registry.npmmirror.com/@babel/plugin-transform-unicode-escapes/7.22.10 - name: '@babel/plugin-transform-unicode-escapes' - version: 7.22.10 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-transform-unicode-property-regex@7.22.5(@babel/core@7.22.15): - resolution: {integrity: sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.22.5.tgz} - id: registry.npmmirror.com/@babel/plugin-transform-unicode-property-regex/7.22.5 - name: '@babel/plugin-transform-unicode-property-regex' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-create-regexp-features-plugin': registry.npmmirror.com/@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.22.15) - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-transform-unicode-regex@7.22.5(@babel/core@7.22.15): - resolution: {integrity: sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.22.5.tgz} - id: registry.npmmirror.com/@babel/plugin-transform-unicode-regex/7.22.5 - name: '@babel/plugin-transform-unicode-regex' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-create-regexp-features-plugin': registry.npmmirror.com/@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.22.15) - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-transform-unicode-sets-regex@7.22.5(@babel/core@7.22.15): - resolution: {integrity: sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.22.5.tgz} - id: registry.npmmirror.com/@babel/plugin-transform-unicode-sets-regex/7.22.5 - name: '@babel/plugin-transform-unicode-sets-regex' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-create-regexp-features-plugin': registry.npmmirror.com/@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.22.15) - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/preset-env@7.22.15(@babel/core@7.22.15): - resolution: {integrity: sha512-tZFHr54GBkHk6hQuVA8w4Fmq+MSPsfvMG0vPnOYyTnJpyfMqybL8/MbNCPRT9zc2KBO2pe4tq15g6Uno4Jpoag==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/preset-env/-/preset-env-7.22.15.tgz} - id: registry.npmmirror.com/@babel/preset-env/7.22.15 - name: '@babel/preset-env' - version: 7.22.15 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/compat-data': registry.npmmirror.com/@babel/compat-data@7.22.9 - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets@7.22.15 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - '@babel/helper-validator-option': registry.npmmirror.com/@babel/helper-validator-option@7.22.15 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': registry.npmmirror.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.15(@babel/core@7.22.15) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': registry.npmmirror.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.15(@babel/core@7.22.15) - '@babel/plugin-proposal-private-property-in-object': registry.npmmirror.com/@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.22.15) - '@babel/plugin-syntax-async-generators': registry.npmmirror.com/@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.22.15) - '@babel/plugin-syntax-class-properties': registry.npmmirror.com/@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.22.15) - '@babel/plugin-syntax-class-static-block': registry.npmmirror.com/@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.22.15) - '@babel/plugin-syntax-dynamic-import': registry.npmmirror.com/@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.22.15) - '@babel/plugin-syntax-export-namespace-from': registry.npmmirror.com/@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.22.15) - '@babel/plugin-syntax-import-assertions': registry.npmmirror.com/@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.22.15) - '@babel/plugin-syntax-import-attributes': registry.npmmirror.com/@babel/plugin-syntax-import-attributes@7.22.5(@babel/core@7.22.15) - '@babel/plugin-syntax-import-meta': registry.npmmirror.com/@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.22.15) - '@babel/plugin-syntax-json-strings': registry.npmmirror.com/@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.22.15) - '@babel/plugin-syntax-logical-assignment-operators': registry.npmmirror.com/@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.22.15) - '@babel/plugin-syntax-nullish-coalescing-operator': registry.npmmirror.com/@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.22.15) - '@babel/plugin-syntax-numeric-separator': registry.npmmirror.com/@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.22.15) - '@babel/plugin-syntax-object-rest-spread': registry.npmmirror.com/@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.22.15) - '@babel/plugin-syntax-optional-catch-binding': registry.npmmirror.com/@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.22.15) - '@babel/plugin-syntax-optional-chaining': registry.npmmirror.com/@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.22.15) - '@babel/plugin-syntax-private-property-in-object': registry.npmmirror.com/@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.22.15) - '@babel/plugin-syntax-top-level-await': registry.npmmirror.com/@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.22.15) - '@babel/plugin-syntax-unicode-sets-regex': registry.npmmirror.com/@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.22.15) - '@babel/plugin-transform-arrow-functions': registry.npmmirror.com/@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.22.15) - '@babel/plugin-transform-async-generator-functions': registry.npmmirror.com/@babel/plugin-transform-async-generator-functions@7.22.15(@babel/core@7.22.15) - '@babel/plugin-transform-async-to-generator': registry.npmmirror.com/@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.22.15) - '@babel/plugin-transform-block-scoped-functions': registry.npmmirror.com/@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.22.15) - '@babel/plugin-transform-block-scoping': registry.npmmirror.com/@babel/plugin-transform-block-scoping@7.22.15(@babel/core@7.22.15) - '@babel/plugin-transform-class-properties': registry.npmmirror.com/@babel/plugin-transform-class-properties@7.22.5(@babel/core@7.22.15) - '@babel/plugin-transform-class-static-block': registry.npmmirror.com/@babel/plugin-transform-class-static-block@7.22.11(@babel/core@7.22.15) - '@babel/plugin-transform-classes': registry.npmmirror.com/@babel/plugin-transform-classes@7.22.15(@babel/core@7.22.15) - '@babel/plugin-transform-computed-properties': registry.npmmirror.com/@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.22.15) - '@babel/plugin-transform-destructuring': registry.npmmirror.com/@babel/plugin-transform-destructuring@7.22.15(@babel/core@7.22.15) - '@babel/plugin-transform-dotall-regex': registry.npmmirror.com/@babel/plugin-transform-dotall-regex@7.22.5(@babel/core@7.22.15) - '@babel/plugin-transform-duplicate-keys': registry.npmmirror.com/@babel/plugin-transform-duplicate-keys@7.22.5(@babel/core@7.22.15) - '@babel/plugin-transform-dynamic-import': registry.npmmirror.com/@babel/plugin-transform-dynamic-import@7.22.11(@babel/core@7.22.15) - '@babel/plugin-transform-exponentiation-operator': registry.npmmirror.com/@babel/plugin-transform-exponentiation-operator@7.22.5(@babel/core@7.22.15) - '@babel/plugin-transform-export-namespace-from': registry.npmmirror.com/@babel/plugin-transform-export-namespace-from@7.22.11(@babel/core@7.22.15) - '@babel/plugin-transform-for-of': registry.npmmirror.com/@babel/plugin-transform-for-of@7.22.15(@babel/core@7.22.15) - '@babel/plugin-transform-function-name': registry.npmmirror.com/@babel/plugin-transform-function-name@7.22.5(@babel/core@7.22.15) - '@babel/plugin-transform-json-strings': registry.npmmirror.com/@babel/plugin-transform-json-strings@7.22.11(@babel/core@7.22.15) - '@babel/plugin-transform-literals': registry.npmmirror.com/@babel/plugin-transform-literals@7.22.5(@babel/core@7.22.15) - '@babel/plugin-transform-logical-assignment-operators': registry.npmmirror.com/@babel/plugin-transform-logical-assignment-operators@7.22.11(@babel/core@7.22.15) - '@babel/plugin-transform-member-expression-literals': registry.npmmirror.com/@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.22.15) - '@babel/plugin-transform-modules-amd': registry.npmmirror.com/@babel/plugin-transform-modules-amd@7.22.5(@babel/core@7.22.15) - '@babel/plugin-transform-modules-commonjs': registry.npmmirror.com/@babel/plugin-transform-modules-commonjs@7.22.15(@babel/core@7.22.15) - '@babel/plugin-transform-modules-systemjs': registry.npmmirror.com/@babel/plugin-transform-modules-systemjs@7.22.11(@babel/core@7.22.15) - '@babel/plugin-transform-modules-umd': registry.npmmirror.com/@babel/plugin-transform-modules-umd@7.22.5(@babel/core@7.22.15) - '@babel/plugin-transform-named-capturing-groups-regex': registry.npmmirror.com/@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.22.15) - '@babel/plugin-transform-new-target': registry.npmmirror.com/@babel/plugin-transform-new-target@7.22.5(@babel/core@7.22.15) - '@babel/plugin-transform-nullish-coalescing-operator': registry.npmmirror.com/@babel/plugin-transform-nullish-coalescing-operator@7.22.11(@babel/core@7.22.15) - '@babel/plugin-transform-numeric-separator': registry.npmmirror.com/@babel/plugin-transform-numeric-separator@7.22.11(@babel/core@7.22.15) - '@babel/plugin-transform-object-rest-spread': registry.npmmirror.com/@babel/plugin-transform-object-rest-spread@7.22.15(@babel/core@7.22.15) - '@babel/plugin-transform-object-super': registry.npmmirror.com/@babel/plugin-transform-object-super@7.22.5(@babel/core@7.22.15) - '@babel/plugin-transform-optional-catch-binding': registry.npmmirror.com/@babel/plugin-transform-optional-catch-binding@7.22.11(@babel/core@7.22.15) - '@babel/plugin-transform-optional-chaining': registry.npmmirror.com/@babel/plugin-transform-optional-chaining@7.22.15(@babel/core@7.22.15) - '@babel/plugin-transform-parameters': registry.npmmirror.com/@babel/plugin-transform-parameters@7.22.15(@babel/core@7.22.15) - '@babel/plugin-transform-private-methods': registry.npmmirror.com/@babel/plugin-transform-private-methods@7.22.5(@babel/core@7.22.15) - '@babel/plugin-transform-private-property-in-object': registry.npmmirror.com/@babel/plugin-transform-private-property-in-object@7.22.11(@babel/core@7.22.15) - '@babel/plugin-transform-property-literals': registry.npmmirror.com/@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.22.15) - '@babel/plugin-transform-regenerator': registry.npmmirror.com/@babel/plugin-transform-regenerator@7.22.10(@babel/core@7.22.15) - '@babel/plugin-transform-reserved-words': registry.npmmirror.com/@babel/plugin-transform-reserved-words@7.22.5(@babel/core@7.22.15) - '@babel/plugin-transform-shorthand-properties': registry.npmmirror.com/@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.22.15) - '@babel/plugin-transform-spread': registry.npmmirror.com/@babel/plugin-transform-spread@7.22.5(@babel/core@7.22.15) - '@babel/plugin-transform-sticky-regex': registry.npmmirror.com/@babel/plugin-transform-sticky-regex@7.22.5(@babel/core@7.22.15) - '@babel/plugin-transform-template-literals': registry.npmmirror.com/@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.22.15) - '@babel/plugin-transform-typeof-symbol': registry.npmmirror.com/@babel/plugin-transform-typeof-symbol@7.22.5(@babel/core@7.22.15) - '@babel/plugin-transform-unicode-escapes': registry.npmmirror.com/@babel/plugin-transform-unicode-escapes@7.22.10(@babel/core@7.22.15) - '@babel/plugin-transform-unicode-property-regex': registry.npmmirror.com/@babel/plugin-transform-unicode-property-regex@7.22.5(@babel/core@7.22.15) - '@babel/plugin-transform-unicode-regex': registry.npmmirror.com/@babel/plugin-transform-unicode-regex@7.22.5(@babel/core@7.22.15) - '@babel/plugin-transform-unicode-sets-regex': registry.npmmirror.com/@babel/plugin-transform-unicode-sets-regex@7.22.5(@babel/core@7.22.15) - '@babel/preset-modules': registry.npmmirror.com/@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.22.15) - '@babel/types': registry.npmmirror.com/@babel/types@7.22.15 - babel-plugin-polyfill-corejs2: registry.npmmirror.com/babel-plugin-polyfill-corejs2@0.4.5(@babel/core@7.22.15) - babel-plugin-polyfill-corejs3: registry.npmmirror.com/babel-plugin-polyfill-corejs3@0.8.3(@babel/core@7.22.15) - babel-plugin-polyfill-regenerator: registry.npmmirror.com/babel-plugin-polyfill-regenerator@0.5.2(@babel/core@7.22.15) - core-js-compat: registry.npmmirror.com/core-js-compat@3.32.1 - semver: registry.npmmirror.com/semver@6.3.1 - transitivePeerDependencies: - - supports-color - dev: true - - registry.npmmirror.com/@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.22.15): - resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz} - id: registry.npmmirror.com/@babel/preset-modules/0.1.6-no-external-plugins - name: '@babel/preset-modules' - version: 0.1.6-no-external-plugins - peerDependencies: - '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - '@babel/types': registry.npmmirror.com/@babel/types@7.22.15 - esutils: registry.npmmirror.com/esutils@2.0.3 - dev: true - - registry.npmmirror.com/@babel/regjsgen@0.8.0: - resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/regjsgen/-/regjsgen-0.8.0.tgz} - name: '@babel/regjsgen' - version: 0.8.0 - dev: true - - registry.npmmirror.com/@babel/runtime@7.22.15: - resolution: {integrity: sha512-T0O+aa+4w0u06iNmapipJXMV4HoUir03hpx3/YqXXhu9xim3w+dVphjFWl1OH8NbZHw5Lbm9k45drDkgq2VNNA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/runtime/-/runtime-7.22.15.tgz} - name: '@babel/runtime' - version: 7.22.15 - engines: {node: '>=6.9.0'} - dependencies: - regenerator-runtime: registry.npmmirror.com/regenerator-runtime@0.14.0 - - registry.npmmirror.com/@babel/template@7.22.15: - resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/template/-/template-7.22.15.tgz} - name: '@babel/template' - version: 7.22.15 - engines: {node: '>=6.9.0'} - dependencies: - '@babel/code-frame': registry.npmmirror.com/@babel/code-frame@7.22.13 - '@babel/parser': registry.npmmirror.com/@babel/parser@7.22.15 - '@babel/types': registry.npmmirror.com/@babel/types@7.22.15 - - registry.npmmirror.com/@babel/traverse@7.22.15: - resolution: {integrity: sha512-DdHPwvJY0sEeN4xJU5uRLmZjgMMDIvMPniLuYzUVXj/GGzysPl0/fwt44JBkyUIzGJPV8QgHMcQdQ34XFuKTYQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/traverse/-/traverse-7.22.15.tgz} - name: '@babel/traverse' - version: 7.22.15 - engines: {node: '>=6.9.0'} - dependencies: - '@babel/code-frame': registry.npmmirror.com/@babel/code-frame@7.22.13 - '@babel/generator': registry.npmmirror.com/@babel/generator@7.22.15 - '@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor@7.22.5 - '@babel/helper-function-name': registry.npmmirror.com/@babel/helper-function-name@7.22.5 - '@babel/helper-hoist-variables': registry.npmmirror.com/@babel/helper-hoist-variables@7.22.5 - '@babel/helper-split-export-declaration': registry.npmmirror.com/@babel/helper-split-export-declaration@7.22.6 - '@babel/parser': registry.npmmirror.com/@babel/parser@7.22.15 - '@babel/types': registry.npmmirror.com/@babel/types@7.22.15 - debug: registry.npmmirror.com/debug@4.3.4 - globals: registry.npmmirror.com/globals@11.12.0 - transitivePeerDependencies: - - supports-color - - registry.npmmirror.com/@babel/types@7.22.15: - resolution: {integrity: sha512-X+NLXr0N8XXmN5ZsaQdm9U2SSC3UbIYq/doL++sueHOTisgZHoKaQtZxGuV2cUPQHMfjKEfg/g6oy7Hm6SKFtA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/types/-/types-7.22.15.tgz} - name: '@babel/types' - version: 7.22.15 - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-string-parser': registry.npmmirror.com/@babel/helper-string-parser@7.22.5 - '@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier@7.22.15 - to-fast-properties: registry.npmmirror.com/to-fast-properties@2.0.0 - - registry.npmmirror.com/@bcoe/v8-coverage@0.2.3: - resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz} - name: '@bcoe/v8-coverage' - version: 0.2.3 - dev: true - - registry.npmmirror.com/@dcloudio/types@3.3.2: - resolution: {integrity: sha512-O+7M55RXqYJMCTh3MC86IGJvDPTR+v214yUeaoz1YUIHa2gJdgObs4RRwfAwZoLMtdoZ9J5BElZZqRy5oi+UTg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/types/-/types-3.3.2.tgz} - name: '@dcloudio/types' - version: 3.3.2 - - registry.npmmirror.com/@dcloudio/uni-app-plus@3.0.0-3081220230817001(postcss@8.4.29)(vite@4.0.0)(vue@3.2.45): - resolution: {integrity: sha512-GpQobx3WbcyOZ49f8JM+febzKvlthFBAxcs4xrbtNVzmkj0jLJoh9GoH37oa7m5DI1k4l5wUuwvg4/JxBbhOSA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/uni-app-plus/-/uni-app-plus-3.0.0-3081220230817001.tgz} - id: registry.npmmirror.com/@dcloudio/uni-app-plus/3.0.0-3081220230817001 - name: '@dcloudio/uni-app-plus' - version: 3.0.0-3081220230817001 - dependencies: - '@dcloudio/uni-app-uts': registry.npmmirror.com/@dcloudio/uni-app-uts@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45) - '@dcloudio/uni-app-vite': registry.npmmirror.com/@dcloudio/uni-app-vite@3.0.0-3081220230817001(postcss@8.4.29)(vite@4.0.0)(vue@3.2.45) - '@dcloudio/uni-app-vue': registry.npmmirror.com/@dcloudio/uni-app-vue@3.0.0-3081220230817001 - debug: registry.npmmirror.com/debug@4.3.4 - fs-extra: registry.npmmirror.com/fs-extra@10.1.0 - licia: registry.npmmirror.com/licia@1.38.2 - postcss-selector-parser: registry.npmmirror.com/postcss-selector-parser@6.0.13 - transitivePeerDependencies: - - postcss - - supports-color - - ts-node - - vite - - vue - dev: false - - registry.npmmirror.com/@dcloudio/uni-app-uts@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45): - resolution: {integrity: sha512-snMFEpTw5T0TT5uFwp0piytLRB0FBRHDM5ML00E1nrzfts0XlaFKoB4UsvLySG5sE5+Xt8F5/uzKxid3mcgTLQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/uni-app-uts/-/uni-app-uts-3.0.0-3081220230817001.tgz} - id: registry.npmmirror.com/@dcloudio/uni-app-uts/3.0.0-3081220230817001 - name: '@dcloudio/uni-app-uts' - version: 3.0.0-3081220230817001 - dependencies: - '@babel/parser': registry.npmmirror.com/@babel/parser@7.22.15 - '@babel/types': registry.npmmirror.com/@babel/types@7.22.15 - '@dcloudio/uni-cli-shared': registry.npmmirror.com/@dcloudio/uni-cli-shared@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45) - '@dcloudio/uni-i18n': registry.npmmirror.com/@dcloudio/uni-i18n@3.0.0-3081220230817001 - '@dcloudio/uni-nvue-styler': registry.npmmirror.com/@dcloudio/uni-nvue-styler@3.0.0-3081220230817001 - '@dcloudio/uni-shared': registry.npmmirror.com/@dcloudio/uni-shared@3.0.0-3081220230817001 - '@rollup/pluginutils': registry.npmmirror.com/@rollup/pluginutils@4.2.1 - '@vue/compiler-core': registry.npmmirror.com/@vue/compiler-core@3.2.47 - '@vue/compiler-sfc': registry.npmmirror.com/@vue/compiler-sfc@3.2.47 - '@vue/shared': registry.npmmirror.com/@vue/shared@3.2.47 - debug: registry.npmmirror.com/debug@4.3.4 - es-module-lexer: registry.npmmirror.com/es-module-lexer@1.3.0 - fs-extra: registry.npmmirror.com/fs-extra@10.1.0 - picocolors: registry.npmmirror.com/picocolors@1.0.0 - source-map: registry.npmmirror.com/source-map@0.6.1 - transitivePeerDependencies: - - postcss - - supports-color - - ts-node - - vue - dev: false - - registry.npmmirror.com/@dcloudio/uni-app-vite@3.0.0-3081220230817001(postcss@8.4.29)(vite@4.0.0)(vue@3.2.45): - resolution: {integrity: sha512-iHmKh6hjPGh+FC6Fi4qqwT5N31QiWv9JymCLdbkOJRi71A3byDjxoH7ScSEEEg+A5AAPky6LHbmFmznPMeSwAg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/uni-app-vite/-/uni-app-vite-3.0.0-3081220230817001.tgz} - id: registry.npmmirror.com/@dcloudio/uni-app-vite/3.0.0-3081220230817001 - name: '@dcloudio/uni-app-vite' - version: 3.0.0-3081220230817001 - dependencies: - '@dcloudio/uni-cli-shared': registry.npmmirror.com/@dcloudio/uni-cli-shared@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45) - '@dcloudio/uni-i18n': registry.npmmirror.com/@dcloudio/uni-i18n@3.0.0-3081220230817001 - '@dcloudio/uni-nvue-styler': registry.npmmirror.com/@dcloudio/uni-nvue-styler@3.0.0-3081220230817001 - '@dcloudio/uni-shared': registry.npmmirror.com/@dcloudio/uni-shared@3.0.0-3081220230817001 - '@rollup/pluginutils': registry.npmmirror.com/@rollup/pluginutils@4.2.1 - '@vitejs/plugin-vue': registry.npmmirror.com/@vitejs/plugin-vue@4.3.4(vite@4.0.0)(vue@3.2.45) - '@vue/compiler-dom': registry.npmmirror.com/@vue/compiler-dom@3.2.47 - '@vue/compiler-sfc': registry.npmmirror.com/@vue/compiler-sfc@3.2.47 - debug: registry.npmmirror.com/debug@4.3.4 - fs-extra: registry.npmmirror.com/fs-extra@10.1.0 - picocolors: registry.npmmirror.com/picocolors@1.0.0 - transitivePeerDependencies: - - postcss - - supports-color - - ts-node - - vite - - vue - dev: false - - registry.npmmirror.com/@dcloudio/uni-app-vue@3.0.0-3081220230817001: - resolution: {integrity: sha512-08ZUIn2a+OZWjqvjTbLygWZOY9YXbf2J1ns2letBI9aoMZDx+Sgx2lUFWHDksmOhvApPLKrRjJM0Hmmxi2mjJw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/uni-app-vue/-/uni-app-vue-3.0.0-3081220230817001.tgz} - name: '@dcloudio/uni-app-vue' - version: 3.0.0-3081220230817001 - dev: false - - registry.npmmirror.com/@dcloudio/uni-app@3.0.0-3081220230817001(@dcloudio/types@3.3.2)(postcss@8.4.29)(vue@3.2.45): - resolution: {integrity: sha512-sf8PzXHSd/VFCn7X9+QbD4nrY21FnIwjrhyX2hFit7PZK9kpyQluqCmG7YuotuXJzsNML8c8u2O9q5FaeOyTHg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/uni-app/-/uni-app-3.0.0-3081220230817001.tgz} - id: registry.npmmirror.com/@dcloudio/uni-app/3.0.0-3081220230817001 - name: '@dcloudio/uni-app' - version: 3.0.0-3081220230817001 - peerDependencies: - '@dcloudio/types': ^3.3.2 - dependencies: - '@dcloudio/types': registry.npmmirror.com/@dcloudio/types@3.3.2 - '@dcloudio/uni-cloud': registry.npmmirror.com/@dcloudio/uni-cloud@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45) - '@dcloudio/uni-components': registry.npmmirror.com/@dcloudio/uni-components@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45) - '@dcloudio/uni-i18n': registry.npmmirror.com/@dcloudio/uni-i18n@3.0.0-3081220230817001 - '@dcloudio/uni-push': registry.npmmirror.com/@dcloudio/uni-push@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45) - '@dcloudio/uni-shared': registry.npmmirror.com/@dcloudio/uni-shared@3.0.0-3081220230817001 - '@dcloudio/uni-stat': registry.npmmirror.com/@dcloudio/uni-stat@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45) - '@vue/shared': registry.npmmirror.com/@vue/shared@3.2.47 - transitivePeerDependencies: - - postcss - - supports-color - - ts-node - - vue - dev: false - - registry.npmmirror.com/@dcloudio/uni-automator@3.0.0-3081220230817001(jest-environment-node@27.5.1)(jest@27.0.4)(postcss@8.4.29)(vue@3.2.45): - resolution: {integrity: sha512-boaRlUAAXsEh4aN5PbtMVvzdmvXqoEWa8eQBD4oCH36lyGgK8q75vsjLRi4LBFFwNlCNMrYepTNbBCjP+Sgt0g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/uni-automator/-/uni-automator-3.0.0-3081220230817001.tgz} - id: registry.npmmirror.com/@dcloudio/uni-automator/3.0.0-3081220230817001 - name: '@dcloudio/uni-automator' - version: 3.0.0-3081220230817001 - peerDependencies: - jest: 27.0.4 - jest-environment-node: 27.5.1 - dependencies: - '@dcloudio/uni-cli-shared': registry.npmmirror.com/@dcloudio/uni-cli-shared@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45) - address: registry.npmmirror.com/address@1.2.2 - cross-env: registry.npmmirror.com/cross-env@7.0.3 - debug: registry.npmmirror.com/debug@4.3.4 - default-gateway: registry.npmmirror.com/default-gateway@6.0.3 - fs-extra: registry.npmmirror.com/fs-extra@10.1.0 - jest: registry.npmmirror.com/jest@27.0.4 - jest-environment-node: registry.npmmirror.com/jest-environment-node@27.5.1 - jsonc-parser: registry.npmmirror.com/jsonc-parser@3.2.0 - licia: registry.npmmirror.com/licia@1.38.2 - qrcode-reader: registry.npmmirror.com/qrcode-reader@1.0.4 - qrcode-terminal: registry.npmmirror.com/qrcode-terminal@0.12.0 - ws: registry.npmmirror.com/ws@8.13.0 - transitivePeerDependencies: - - bufferutil - - postcss - - supports-color - - ts-node - - utf-8-validate - - vue - dev: true - - registry.npmmirror.com/@dcloudio/uni-cli-shared@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45): - resolution: {integrity: sha512-FOeydfIdKZg+MnQsHSFLXBzzmXtgCWnmEyjw3MHNN5mGwQB6+f7vK8sLw+yjizD/j71eMnh8XXCk+dV3nD/Vzg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/uni-cli-shared/-/uni-cli-shared-3.0.0-3081220230817001.tgz} - id: registry.npmmirror.com/@dcloudio/uni-cli-shared/3.0.0-3081220230817001 - name: '@dcloudio/uni-cli-shared' - version: 3.0.0-3081220230817001 - engines: {node: ^14.18.0 || >=16.0.0} - dependencies: - '@ampproject/remapping': registry.npmmirror.com/@ampproject/remapping@2.2.1 - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/parser': registry.npmmirror.com/@babel/parser@7.22.15 - '@babel/types': registry.npmmirror.com/@babel/types@7.22.15 - '@dcloudio/uni-i18n': registry.npmmirror.com/@dcloudio/uni-i18n@3.0.0-3081220230817001 - '@dcloudio/uni-shared': registry.npmmirror.com/@dcloudio/uni-shared@3.0.0-3081220230817001 - '@intlify/core-base': registry.npmmirror.com/@intlify/core-base@9.1.9 - '@intlify/shared': registry.npmmirror.com/@intlify/shared@9.1.9 - '@intlify/vue-devtools': registry.npmmirror.com/@intlify/vue-devtools@9.1.9 - '@rollup/pluginutils': registry.npmmirror.com/@rollup/pluginutils@4.2.1 - '@vue/compiler-core': registry.npmmirror.com/@vue/compiler-core@3.2.47 - '@vue/compiler-dom': registry.npmmirror.com/@vue/compiler-dom@3.2.47 - '@vue/compiler-sfc': registry.npmmirror.com/@vue/compiler-sfc@3.2.47 - '@vue/server-renderer': registry.npmmirror.com/@vue/server-renderer@3.2.47(vue@3.2.45) - '@vue/shared': registry.npmmirror.com/@vue/shared@3.2.47 - autoprefixer: registry.npmmirror.com/autoprefixer@10.4.15(postcss@8.4.29) - base64url: registry.npmmirror.com/base64url@3.0.1 - chokidar: registry.npmmirror.com/chokidar@3.5.3 - compare-versions: registry.npmmirror.com/compare-versions@3.6.0 - debug: registry.npmmirror.com/debug@4.3.4 - es-module-lexer: registry.npmmirror.com/es-module-lexer@1.3.0 - esbuild: registry.npmmirror.com/esbuild@0.17.19 - estree-walker: registry.npmmirror.com/estree-walker@2.0.2 - fast-glob: registry.npmmirror.com/fast-glob@3.3.1 - fs-extra: registry.npmmirror.com/fs-extra@10.1.0 - hash-sum: registry.npmmirror.com/hash-sum@2.0.0 - jsonc-parser: registry.npmmirror.com/jsonc-parser@3.2.0 - magic-string: registry.npmmirror.com/magic-string@0.30.3 - merge: registry.npmmirror.com/merge@2.1.1 - mime: registry.npmmirror.com/mime@3.0.0 - module-alias: registry.npmmirror.com/module-alias@2.2.3 - os-locale-s-fix: registry.npmmirror.com/os-locale-s-fix@1.0.8-fix-1 - picocolors: registry.npmmirror.com/picocolors@1.0.0 - postcss-import: registry.npmmirror.com/postcss-import@14.1.0(postcss@8.4.29) - postcss-load-config: registry.npmmirror.com/postcss-load-config@3.1.4(postcss@8.4.29) - postcss-modules: registry.npmmirror.com/postcss-modules@4.3.1(postcss@8.4.29) - postcss-selector-parser: registry.npmmirror.com/postcss-selector-parser@6.0.13 - resolve: registry.npmmirror.com/resolve@1.22.4 - tapable: registry.npmmirror.com/tapable@2.2.1 - xregexp: registry.npmmirror.com/xregexp@3.1.0 - transitivePeerDependencies: - - postcss - - supports-color - - ts-node - - vue - - registry.npmmirror.com/@dcloudio/uni-cloud@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45): - resolution: {integrity: sha512-rrHN4PvvylrhmivAoSv4h8ZcQ3ZWHnMRXhQWPC9FBR1TInrrxrrAHuMqSZn6pTIXhCiRA3Kuy6aDNVCbt6VA+g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/uni-cloud/-/uni-cloud-3.0.0-3081220230817001.tgz} - id: registry.npmmirror.com/@dcloudio/uni-cloud/3.0.0-3081220230817001 - name: '@dcloudio/uni-cloud' - version: 3.0.0-3081220230817001 - dependencies: - '@dcloudio/uni-cli-shared': registry.npmmirror.com/@dcloudio/uni-cli-shared@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45) - '@dcloudio/uni-i18n': registry.npmmirror.com/@dcloudio/uni-i18n@3.0.0-3081220230817001 - '@dcloudio/uni-shared': registry.npmmirror.com/@dcloudio/uni-shared@3.0.0-3081220230817001 - '@vue/shared': registry.npmmirror.com/@vue/shared@3.2.47 - fast-glob: registry.npmmirror.com/fast-glob@3.3.1 - transitivePeerDependencies: - - postcss - - supports-color - - ts-node - - vue - dev: false - - registry.npmmirror.com/@dcloudio/uni-components@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45): - resolution: {integrity: sha512-FlIrTgR/9Yp8FWYfhXfLPd0jJtBwJwRBAWWmLNaufkTojm6X7rX8wQOd13n+7gJGKzfXcEV8npOYpVou4P46Pw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/uni-components/-/uni-components-3.0.0-3081220230817001.tgz} - id: registry.npmmirror.com/@dcloudio/uni-components/3.0.0-3081220230817001 - name: '@dcloudio/uni-components' - version: 3.0.0-3081220230817001 - dependencies: - '@dcloudio/uni-cloud': registry.npmmirror.com/@dcloudio/uni-cloud@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45) - '@dcloudio/uni-h5': registry.npmmirror.com/@dcloudio/uni-h5@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45) - '@dcloudio/uni-i18n': registry.npmmirror.com/@dcloudio/uni-i18n@3.0.0-3081220230817001 - transitivePeerDependencies: - - postcss - - supports-color - - ts-node - - vue - dev: false - - registry.npmmirror.com/@dcloudio/uni-h5-vite@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45): - resolution: {integrity: sha512-x7F6mUTjHiOx7+lj5yIrzhD7gr0HTNJaku5gV3O8bFjxKLcIkFkAyliKPbqJ4QZCmCCmEfJpOGKrDhk35tlibg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/uni-h5-vite/-/uni-h5-vite-3.0.0-3081220230817001.tgz} - id: registry.npmmirror.com/@dcloudio/uni-h5-vite/3.0.0-3081220230817001 - name: '@dcloudio/uni-h5-vite' - version: 3.0.0-3081220230817001 - dependencies: - '@dcloudio/uni-cli-shared': registry.npmmirror.com/@dcloudio/uni-cli-shared@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45) - '@dcloudio/uni-shared': registry.npmmirror.com/@dcloudio/uni-shared@3.0.0-3081220230817001 - '@rollup/pluginutils': registry.npmmirror.com/@rollup/pluginutils@4.2.1 - '@vue/compiler-dom': registry.npmmirror.com/@vue/compiler-dom@3.2.47 - '@vue/compiler-sfc': registry.npmmirror.com/@vue/compiler-sfc@3.2.47 - '@vue/server-renderer': registry.npmmirror.com/@vue/server-renderer@3.2.47(vue@3.2.45) - '@vue/shared': registry.npmmirror.com/@vue/shared@3.2.47 - debug: registry.npmmirror.com/debug@4.3.4 - fs-extra: registry.npmmirror.com/fs-extra@10.1.0 - mime: registry.npmmirror.com/mime@3.0.0 - module-alias: registry.npmmirror.com/module-alias@2.2.3 - transitivePeerDependencies: - - postcss - - supports-color - - ts-node - - vue - dev: false - - registry.npmmirror.com/@dcloudio/uni-h5-vue@3.0.0-3081220230817001(vue@3.2.45): - resolution: {integrity: sha512-q1eFoXb5/4whNIJ1CumKmeypPjZofw8xDQRHZeGZ7NVRQ0/MYnEm6A0n/vkmEo1IgTZIY83m/jr6RNg7a9Ko/A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/uni-h5-vue/-/uni-h5-vue-3.0.0-3081220230817001.tgz} - id: registry.npmmirror.com/@dcloudio/uni-h5-vue/3.0.0-3081220230817001 - name: '@dcloudio/uni-h5-vue' - version: 3.0.0-3081220230817001 - dependencies: - '@dcloudio/uni-shared': registry.npmmirror.com/@dcloudio/uni-shared@3.0.0-3081220230817001 - '@vue/server-renderer': registry.npmmirror.com/@vue/server-renderer@3.2.47(vue@3.2.45) - transitivePeerDependencies: - - vue - dev: false - - registry.npmmirror.com/@dcloudio/uni-h5@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45): - resolution: {integrity: sha512-m2RCZpYxuAGnXlQKSQ8FGy4OlnUJJ8XMx2HNQWriDwtjDpAGDU8I2LZQZ7MHCNPIUd503y+mgU2NPlSQHnrlkQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/uni-h5/-/uni-h5-3.0.0-3081220230817001.tgz} - id: registry.npmmirror.com/@dcloudio/uni-h5/3.0.0-3081220230817001 - name: '@dcloudio/uni-h5' - version: 3.0.0-3081220230817001 - dependencies: - '@dcloudio/uni-h5-vite': registry.npmmirror.com/@dcloudio/uni-h5-vite@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45) - '@dcloudio/uni-h5-vue': registry.npmmirror.com/@dcloudio/uni-h5-vue@3.0.0-3081220230817001(vue@3.2.45) - '@dcloudio/uni-i18n': registry.npmmirror.com/@dcloudio/uni-i18n@3.0.0-3081220230817001 - '@dcloudio/uni-shared': registry.npmmirror.com/@dcloudio/uni-shared@3.0.0-3081220230817001 - '@vue/server-renderer': registry.npmmirror.com/@vue/server-renderer@3.2.47(vue@3.2.45) - '@vue/shared': registry.npmmirror.com/@vue/shared@3.2.47 - debug: registry.npmmirror.com/debug@4.3.4 - localstorage-polyfill: registry.npmmirror.com/localstorage-polyfill@1.0.1 - postcss-selector-parser: registry.npmmirror.com/postcss-selector-parser@6.0.13 - safe-area-insets: registry.npmmirror.com/safe-area-insets@1.4.1 - vue-router: registry.npmmirror.com/vue-router@4.2.4(vue@3.2.45) - xmlhttprequest: registry.npmmirror.com/xmlhttprequest@1.8.0 - transitivePeerDependencies: - - postcss - - supports-color - - ts-node - - vue - dev: false - - registry.npmmirror.com/@dcloudio/uni-i18n@3.0.0-3081220230817001: - resolution: {integrity: sha512-ooAIoNCy+DPlMtA4k9eoaJJsYQtici85le+ietIIzLdJoa2YUnudYv9CvG9Mw/RsKQI+MLl96ADAPgUpGzounw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/uni-i18n/-/uni-i18n-3.0.0-3081220230817001.tgz} - name: '@dcloudio/uni-i18n' - version: 3.0.0-3081220230817001 - - registry.npmmirror.com/@dcloudio/uni-mp-alipay@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45): - resolution: {integrity: sha512-lZR2u8sxJ/ZaDqaxEmGzgWWKHcjnLGedDTrMh8kOEPLHO6THVNe5TP6XeiTcE0HKJfWEXv6X13erjn0FCstz3A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/uni-mp-alipay/-/uni-mp-alipay-3.0.0-3081220230817001.tgz} - id: registry.npmmirror.com/@dcloudio/uni-mp-alipay/3.0.0-3081220230817001 - name: '@dcloudio/uni-mp-alipay' - version: 3.0.0-3081220230817001 - dependencies: - '@dcloudio/uni-cli-shared': registry.npmmirror.com/@dcloudio/uni-cli-shared@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45) - '@dcloudio/uni-mp-vite': registry.npmmirror.com/@dcloudio/uni-mp-vite@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45) - '@dcloudio/uni-mp-vue': registry.npmmirror.com/@dcloudio/uni-mp-vue@3.0.0-3081220230817001 - '@dcloudio/uni-shared': registry.npmmirror.com/@dcloudio/uni-shared@3.0.0-3081220230817001 - '@vue/compiler-core': registry.npmmirror.com/@vue/compiler-core@3.2.47 - '@vue/shared': registry.npmmirror.com/@vue/shared@3.2.47 - transitivePeerDependencies: - - postcss - - supports-color - - ts-node - - vue - dev: false - - registry.npmmirror.com/@dcloudio/uni-mp-baidu@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45): - resolution: {integrity: sha512-FYwK1AqSc+NvtvaCia/fOP57ELx5O5icHjuwPKMsJv5eGtqlwhXzyvSCoGEFyYQcsWP9ZqYSb3fTuxVlbiEYdA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/uni-mp-baidu/-/uni-mp-baidu-3.0.0-3081220230817001.tgz} - id: registry.npmmirror.com/@dcloudio/uni-mp-baidu/3.0.0-3081220230817001 - name: '@dcloudio/uni-mp-baidu' - version: 3.0.0-3081220230817001 - dependencies: - '@dcloudio/uni-cli-shared': registry.npmmirror.com/@dcloudio/uni-cli-shared@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45) - '@dcloudio/uni-mp-compiler': registry.npmmirror.com/@dcloudio/uni-mp-compiler@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45) - '@dcloudio/uni-mp-vite': registry.npmmirror.com/@dcloudio/uni-mp-vite@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45) - '@dcloudio/uni-mp-vue': registry.npmmirror.com/@dcloudio/uni-mp-vue@3.0.0-3081220230817001 - '@dcloudio/uni-mp-weixin': registry.npmmirror.com/@dcloudio/uni-mp-weixin@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45) - '@dcloudio/uni-shared': registry.npmmirror.com/@dcloudio/uni-shared@3.0.0-3081220230817001 - '@vue/compiler-core': registry.npmmirror.com/@vue/compiler-core@3.2.47 - '@vue/shared': registry.npmmirror.com/@vue/shared@3.2.47 - jimp: registry.npmmirror.com/jimp@0.10.3 - licia: registry.npmmirror.com/licia@1.38.2 - qrcode-reader: registry.npmmirror.com/qrcode-reader@1.0.4 - qrcode-terminal: registry.npmmirror.com/qrcode-terminal@0.12.0 - ws: registry.npmmirror.com/ws@8.13.0 - transitivePeerDependencies: - - bufferutil - - postcss - - supports-color - - ts-node - - utf-8-validate - - vue - dev: false - - registry.npmmirror.com/@dcloudio/uni-mp-compiler@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45): - resolution: {integrity: sha512-KDfwEr9jFNSkNbYmdDc+zfGuZwXGkz3bW3c4cuV44IncTf/UW2m594Z2UzhJkx/p662aQ2W9M4BFZ0o5QSfQDw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/uni-mp-compiler/-/uni-mp-compiler-3.0.0-3081220230817001.tgz} - id: registry.npmmirror.com/@dcloudio/uni-mp-compiler/3.0.0-3081220230817001 - name: '@dcloudio/uni-mp-compiler' - version: 3.0.0-3081220230817001 - dependencies: - '@babel/generator': registry.npmmirror.com/@babel/generator@7.22.15 - '@babel/parser': registry.npmmirror.com/@babel/parser@7.22.15 - '@babel/types': registry.npmmirror.com/@babel/types@7.22.15 - '@dcloudio/uni-cli-shared': registry.npmmirror.com/@dcloudio/uni-cli-shared@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45) - '@dcloudio/uni-shared': registry.npmmirror.com/@dcloudio/uni-shared@3.0.0-3081220230817001 - '@vue/compiler-core': registry.npmmirror.com/@vue/compiler-core@3.2.47 - '@vue/compiler-dom': registry.npmmirror.com/@vue/compiler-dom@3.2.47 - '@vue/shared': registry.npmmirror.com/@vue/shared@3.2.47 - estree-walker: registry.npmmirror.com/estree-walker@2.0.2 - transitivePeerDependencies: - - postcss - - supports-color - - ts-node - - vue - dev: false - - registry.npmmirror.com/@dcloudio/uni-mp-jd@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45): - resolution: {integrity: sha512-sKDppXhk7k8Euce9v7ItQ2cs3+XpQV/DX8FjXzfO9DfjQEKiR/Pyfis7e3ANQrF4V/W3uwK5wgN/PyI3/NRloQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/uni-mp-jd/-/uni-mp-jd-3.0.0-3081220230817001.tgz} - id: registry.npmmirror.com/@dcloudio/uni-mp-jd/3.0.0-3081220230817001 - name: '@dcloudio/uni-mp-jd' - version: 3.0.0-3081220230817001 - dependencies: - '@dcloudio/uni-cli-shared': registry.npmmirror.com/@dcloudio/uni-cli-shared@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45) - '@dcloudio/uni-mp-compiler': registry.npmmirror.com/@dcloudio/uni-mp-compiler@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45) - '@dcloudio/uni-mp-vite': registry.npmmirror.com/@dcloudio/uni-mp-vite@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45) - '@dcloudio/uni-mp-vue': registry.npmmirror.com/@dcloudio/uni-mp-vue@3.0.0-3081220230817001 - '@dcloudio/uni-shared': registry.npmmirror.com/@dcloudio/uni-shared@3.0.0-3081220230817001 - '@vue/shared': registry.npmmirror.com/@vue/shared@3.2.47 - transitivePeerDependencies: - - postcss - - supports-color - - ts-node - - vue - dev: false - - registry.npmmirror.com/@dcloudio/uni-mp-kuaishou@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45): - resolution: {integrity: sha512-wYXwoxcdms8PviNsKg2Y9oqHawKqseoD97sYs94RLDVSnyO9c6NOoUMsYjXwIZXt05E56bJ9EbxDqYDwwJhEKw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/uni-mp-kuaishou/-/uni-mp-kuaishou-3.0.0-3081220230817001.tgz} - id: registry.npmmirror.com/@dcloudio/uni-mp-kuaishou/3.0.0-3081220230817001 - name: '@dcloudio/uni-mp-kuaishou' - version: 3.0.0-3081220230817001 - dependencies: - '@dcloudio/uni-cli-shared': registry.npmmirror.com/@dcloudio/uni-cli-shared@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45) - '@dcloudio/uni-mp-compiler': registry.npmmirror.com/@dcloudio/uni-mp-compiler@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45) - '@dcloudio/uni-mp-vite': registry.npmmirror.com/@dcloudio/uni-mp-vite@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45) - '@dcloudio/uni-mp-vue': registry.npmmirror.com/@dcloudio/uni-mp-vue@3.0.0-3081220230817001 - '@dcloudio/uni-mp-weixin': registry.npmmirror.com/@dcloudio/uni-mp-weixin@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45) - '@dcloudio/uni-shared': registry.npmmirror.com/@dcloudio/uni-shared@3.0.0-3081220230817001 - '@vue/compiler-core': registry.npmmirror.com/@vue/compiler-core@3.2.47 - '@vue/shared': registry.npmmirror.com/@vue/shared@3.2.47 - transitivePeerDependencies: - - bufferutil - - postcss - - supports-color - - ts-node - - utf-8-validate - - vue - dev: false - - registry.npmmirror.com/@dcloudio/uni-mp-lark@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45): - resolution: {integrity: sha512-4aHwULp+Nx55BoJvj1jCXWnVJrzl0ACEbDlXVvxmNUI5tkqn2kYL4AZgrXP1vCx8MHKVPI4E34Z+lrBTfSfKMA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/uni-mp-lark/-/uni-mp-lark-3.0.0-3081220230817001.tgz} - id: registry.npmmirror.com/@dcloudio/uni-mp-lark/3.0.0-3081220230817001 - name: '@dcloudio/uni-mp-lark' - version: 3.0.0-3081220230817001 - dependencies: - '@dcloudio/uni-cli-shared': registry.npmmirror.com/@dcloudio/uni-cli-shared@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45) - '@dcloudio/uni-mp-compiler': registry.npmmirror.com/@dcloudio/uni-mp-compiler@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45) - '@dcloudio/uni-mp-toutiao': registry.npmmirror.com/@dcloudio/uni-mp-toutiao@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45) - '@dcloudio/uni-mp-vite': registry.npmmirror.com/@dcloudio/uni-mp-vite@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45) - '@dcloudio/uni-mp-vue': registry.npmmirror.com/@dcloudio/uni-mp-vue@3.0.0-3081220230817001 - '@dcloudio/uni-shared': registry.npmmirror.com/@dcloudio/uni-shared@3.0.0-3081220230817001 - '@vue/compiler-core': registry.npmmirror.com/@vue/compiler-core@3.2.47 - '@vue/shared': registry.npmmirror.com/@vue/shared@3.2.47 - transitivePeerDependencies: - - postcss - - supports-color - - ts-node - - vue - dev: false - - registry.npmmirror.com/@dcloudio/uni-mp-qq@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45): - resolution: {integrity: sha512-StSsxCCKMdZCghUZ+wdX1otCmlYkIV+O2Z/AxMv772HfIKlpDp44PPaxlKBG4L6+X7h2JsCvyZW1iSznM5A3CQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/uni-mp-qq/-/uni-mp-qq-3.0.0-3081220230817001.tgz} - id: registry.npmmirror.com/@dcloudio/uni-mp-qq/3.0.0-3081220230817001 - name: '@dcloudio/uni-mp-qq' - version: 3.0.0-3081220230817001 - dependencies: - '@dcloudio/uni-cli-shared': registry.npmmirror.com/@dcloudio/uni-cli-shared@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45) - '@dcloudio/uni-mp-vite': registry.npmmirror.com/@dcloudio/uni-mp-vite@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45) - '@dcloudio/uni-mp-vue': registry.npmmirror.com/@dcloudio/uni-mp-vue@3.0.0-3081220230817001 - '@dcloudio/uni-shared': registry.npmmirror.com/@dcloudio/uni-shared@3.0.0-3081220230817001 - '@vue/shared': registry.npmmirror.com/@vue/shared@3.2.47 - fs-extra: registry.npmmirror.com/fs-extra@10.1.0 - transitivePeerDependencies: - - postcss - - supports-color - - ts-node - - vue - dev: false - - registry.npmmirror.com/@dcloudio/uni-mp-toutiao@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45): - resolution: {integrity: sha512-ZMSNNjQpCV4z+76OA8rDKKhqr+vQmTvKNUOzKfND5KPYhgWbqviEBZ8ptiDT5gaWXMpkUHNfWz32hdi5CLbj5Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/uni-mp-toutiao/-/uni-mp-toutiao-3.0.0-3081220230817001.tgz} - id: registry.npmmirror.com/@dcloudio/uni-mp-toutiao/3.0.0-3081220230817001 - name: '@dcloudio/uni-mp-toutiao' - version: 3.0.0-3081220230817001 - dependencies: - '@dcloudio/uni-cli-shared': registry.npmmirror.com/@dcloudio/uni-cli-shared@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45) - '@dcloudio/uni-mp-compiler': registry.npmmirror.com/@dcloudio/uni-mp-compiler@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45) - '@dcloudio/uni-mp-vite': registry.npmmirror.com/@dcloudio/uni-mp-vite@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45) - '@dcloudio/uni-mp-vue': registry.npmmirror.com/@dcloudio/uni-mp-vue@3.0.0-3081220230817001 - '@dcloudio/uni-shared': registry.npmmirror.com/@dcloudio/uni-shared@3.0.0-3081220230817001 - '@vue/compiler-core': registry.npmmirror.com/@vue/compiler-core@3.2.47 - '@vue/shared': registry.npmmirror.com/@vue/shared@3.2.47 - transitivePeerDependencies: - - postcss - - supports-color - - ts-node - - vue - dev: false - - registry.npmmirror.com/@dcloudio/uni-mp-vite@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45): - resolution: {integrity: sha512-jmEbsVOJ1dlj46QiSFMB2C3zbgGivkGf1KXoPTAprv0WZrkmjF1uNLj0pHFOOUnnyHwHPViEApsMOPS4twIjIQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/uni-mp-vite/-/uni-mp-vite-3.0.0-3081220230817001.tgz} - id: registry.npmmirror.com/@dcloudio/uni-mp-vite/3.0.0-3081220230817001 - name: '@dcloudio/uni-mp-vite' - version: 3.0.0-3081220230817001 - dependencies: - '@dcloudio/uni-cli-shared': registry.npmmirror.com/@dcloudio/uni-cli-shared@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45) - '@dcloudio/uni-i18n': registry.npmmirror.com/@dcloudio/uni-i18n@3.0.0-3081220230817001 - '@dcloudio/uni-mp-compiler': registry.npmmirror.com/@dcloudio/uni-mp-compiler@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45) - '@dcloudio/uni-mp-vue': registry.npmmirror.com/@dcloudio/uni-mp-vue@3.0.0-3081220230817001 - '@dcloudio/uni-shared': registry.npmmirror.com/@dcloudio/uni-shared@3.0.0-3081220230817001 - '@vue/compiler-sfc': registry.npmmirror.com/@vue/compiler-sfc@3.2.47 - '@vue/shared': registry.npmmirror.com/@vue/shared@3.2.47 - debug: registry.npmmirror.com/debug@4.3.4 - transitivePeerDependencies: - - postcss - - supports-color - - ts-node - - vue - dev: false - - registry.npmmirror.com/@dcloudio/uni-mp-vue@3.0.0-3081220230817001: - resolution: {integrity: sha512-EfdTH6+qGXRh3402+psl8X4K34/gHfBPaMfxbwMsne1rGnB8ZVXiN73gVXKfCWeznvJqdWuTWmmjqaLoBhjOjA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/uni-mp-vue/-/uni-mp-vue-3.0.0-3081220230817001.tgz} - name: '@dcloudio/uni-mp-vue' - version: 3.0.0-3081220230817001 - dependencies: - '@dcloudio/uni-shared': registry.npmmirror.com/@dcloudio/uni-shared@3.0.0-3081220230817001 - '@vue/shared': registry.npmmirror.com/@vue/shared@3.2.47 - dev: false - - registry.npmmirror.com/@dcloudio/uni-mp-weixin@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45): - resolution: {integrity: sha512-vo2k8OaWFOvoXuRX83UCR0AOOKXXwjRDIOX0y/jUC9TX63Ne5OTdRKH9253D9109FrwtrtsUWqnpfn1ynKXl9g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/uni-mp-weixin/-/uni-mp-weixin-3.0.0-3081220230817001.tgz} - id: registry.npmmirror.com/@dcloudio/uni-mp-weixin/3.0.0-3081220230817001 - name: '@dcloudio/uni-mp-weixin' - version: 3.0.0-3081220230817001 - dependencies: - '@dcloudio/uni-cli-shared': registry.npmmirror.com/@dcloudio/uni-cli-shared@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45) - '@dcloudio/uni-mp-vite': registry.npmmirror.com/@dcloudio/uni-mp-vite@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45) - '@dcloudio/uni-mp-vue': registry.npmmirror.com/@dcloudio/uni-mp-vue@3.0.0-3081220230817001 - '@dcloudio/uni-shared': registry.npmmirror.com/@dcloudio/uni-shared@3.0.0-3081220230817001 - '@vue/shared': registry.npmmirror.com/@vue/shared@3.2.47 - jimp: registry.npmmirror.com/jimp@0.10.3 - licia: registry.npmmirror.com/licia@1.38.2 - qrcode-reader: registry.npmmirror.com/qrcode-reader@1.0.4 - qrcode-terminal: registry.npmmirror.com/qrcode-terminal@0.12.0 - ws: registry.npmmirror.com/ws@8.13.0 - transitivePeerDependencies: - - bufferutil - - postcss - - supports-color - - ts-node - - utf-8-validate - - vue - dev: false - - registry.npmmirror.com/@dcloudio/uni-nvue-styler@3.0.0-3081220230817001: - resolution: {integrity: sha512-EImnyrYHmAc7ibKfIMkBG1uMavS5sPdrtQj52m40o/QNU5kcsqUk2Od9c1ULkQloxhmK2E4FZvXo4cgszE/Txw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/uni-nvue-styler/-/uni-nvue-styler-3.0.0-3081220230817001.tgz} - name: '@dcloudio/uni-nvue-styler' - version: 3.0.0-3081220230817001 - dependencies: - '@vue/shared': registry.npmmirror.com/@vue/shared@3.2.47 - parse-css-font: registry.npmmirror.com/parse-css-font@4.0.0 - postcss: registry.npmmirror.com/postcss@8.4.29 - dev: false - - registry.npmmirror.com/@dcloudio/uni-push@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45): - resolution: {integrity: sha512-1IyVJlBnZVVvY49SQKpZG5Oxak5Wl51NvYEozuYoeBaaTeZObm7B6eyd722sXi0Dd6N1sE3kIdm/XReprK53eg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/uni-push/-/uni-push-3.0.0-3081220230817001.tgz} - id: registry.npmmirror.com/@dcloudio/uni-push/3.0.0-3081220230817001 - name: '@dcloudio/uni-push' - version: 3.0.0-3081220230817001 - dependencies: - '@dcloudio/uni-cli-shared': registry.npmmirror.com/@dcloudio/uni-cli-shared@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45) - transitivePeerDependencies: - - postcss - - supports-color - - ts-node - - vue - dev: false - - registry.npmmirror.com/@dcloudio/uni-quickapp-webview@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45): - resolution: {integrity: sha512-w6yitVyCKEFSO+UDsJPjc5RfAstIdOEbBHgim0gInTfOl90odmyUPKDxWhwQgS5vqezBXpCj0/6ywVMHvZu+7A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/uni-quickapp-webview/-/uni-quickapp-webview-3.0.0-3081220230817001.tgz} - id: registry.npmmirror.com/@dcloudio/uni-quickapp-webview/3.0.0-3081220230817001 - name: '@dcloudio/uni-quickapp-webview' - version: 3.0.0-3081220230817001 - dependencies: - '@dcloudio/uni-cli-shared': registry.npmmirror.com/@dcloudio/uni-cli-shared@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45) - '@dcloudio/uni-mp-vite': registry.npmmirror.com/@dcloudio/uni-mp-vite@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45) - '@dcloudio/uni-mp-vue': registry.npmmirror.com/@dcloudio/uni-mp-vue@3.0.0-3081220230817001 - '@dcloudio/uni-shared': registry.npmmirror.com/@dcloudio/uni-shared@3.0.0-3081220230817001 - '@vue/shared': registry.npmmirror.com/@vue/shared@3.2.47 - transitivePeerDependencies: - - postcss - - supports-color - - ts-node - - vue - dev: false - - registry.npmmirror.com/@dcloudio/uni-shared@3.0.0-3081220230817001: - resolution: {integrity: sha512-NI1pBO40VqvnWjwNXad3CqrUYvr4ffGjiDMgJGMP13rgOEAqamU7ozBimoASDVPKyyfSHTeuYuh0gtaaLu4CsQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/uni-shared/-/uni-shared-3.0.0-3081220230817001.tgz} - name: '@dcloudio/uni-shared' - version: 3.0.0-3081220230817001 - dependencies: - '@vue/shared': registry.npmmirror.com/@vue/shared@3.2.47 - - registry.npmmirror.com/@dcloudio/uni-stacktracey@3.0.0-3081220230817001: - resolution: {integrity: sha512-DUTTN8JWXxjO3ryz7uhD3+vazHVMflln15+r0ycWBjXO0p0MepRY3gX5gKCyiq9D3NUIxazcFAUJ6agFVUbDog==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/uni-stacktracey/-/uni-stacktracey-3.0.0-3081220230817001.tgz} - name: '@dcloudio/uni-stacktracey' - version: 3.0.0-3081220230817001 - dev: true - - registry.npmmirror.com/@dcloudio/uni-stat@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45): - resolution: {integrity: sha512-xpbsor5WKU1eCbo0dmQ0hBUX6RrdG7DNDzCSD6oimndIXVGLkFhWrIC3brQ7S1G2GQvXdXnXJpUVskI3qNe/uw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/uni-stat/-/uni-stat-3.0.0-3081220230817001.tgz} - id: registry.npmmirror.com/@dcloudio/uni-stat/3.0.0-3081220230817001 - name: '@dcloudio/uni-stat' - version: 3.0.0-3081220230817001 - dependencies: - '@dcloudio/uni-cli-shared': registry.npmmirror.com/@dcloudio/uni-cli-shared@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45) - '@dcloudio/uni-shared': registry.npmmirror.com/@dcloudio/uni-shared@3.0.0-3081220230817001 - debug: registry.npmmirror.com/debug@4.3.4 - transitivePeerDependencies: - - postcss - - supports-color - - ts-node - - vue - dev: false - - registry.npmmirror.com/@dcloudio/vite-plugin-uni@3.0.0-3081220230817001(postcss@8.4.29)(vite@4.0.0)(vue@3.2.45): - resolution: {integrity: sha512-dLeqqyrNNUBTZfI0ppPk4YoD+DBI0gJLeTjpN6bK5i3nFKkju9g2K6IWl62YMObjTiXwQF8qAEDb+fyWoe4Ksw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/vite-plugin-uni/-/vite-plugin-uni-3.0.0-3081220230817001.tgz} - id: registry.npmmirror.com/@dcloudio/vite-plugin-uni/3.0.0-3081220230817001 - name: '@dcloudio/vite-plugin-uni' - version: 3.0.0-3081220230817001 - engines: {node: ^14.18.0 || >=16.0.0} - hasBin: true - peerDependencies: - vite: ^4.0.0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/plugin-syntax-import-meta': registry.npmmirror.com/@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.22.15) - '@babel/plugin-transform-typescript': registry.npmmirror.com/@babel/plugin-transform-typescript@7.22.15(@babel/core@7.22.15) - '@dcloudio/uni-cli-shared': registry.npmmirror.com/@dcloudio/uni-cli-shared@3.0.0-3081220230817001(postcss@8.4.29)(vue@3.2.45) - '@dcloudio/uni-shared': registry.npmmirror.com/@dcloudio/uni-shared@3.0.0-3081220230817001 - '@rollup/pluginutils': registry.npmmirror.com/@rollup/pluginutils@4.2.1 - '@vitejs/plugin-legacy': registry.npmmirror.com/@vitejs/plugin-legacy@4.1.1(terser@5.19.4)(vite@4.0.0) - '@vitejs/plugin-vue': registry.npmmirror.com/@vitejs/plugin-vue@4.3.4(vite@4.0.0)(vue@3.2.45) - '@vitejs/plugin-vue-jsx': registry.npmmirror.com/@vitejs/plugin-vue-jsx@3.0.2(vite@4.0.0)(vue@3.2.45) - '@vue/compiler-core': registry.npmmirror.com/@vue/compiler-core@3.2.47 - '@vue/compiler-dom': registry.npmmirror.com/@vue/compiler-dom@3.2.47 - '@vue/compiler-sfc': registry.npmmirror.com/@vue/compiler-sfc@3.2.47 - '@vue/shared': registry.npmmirror.com/@vue/shared@3.2.47 - cac: registry.npmmirror.com/cac@6.7.9 - debug: registry.npmmirror.com/debug@4.3.4 - estree-walker: registry.npmmirror.com/estree-walker@2.0.2 - express: registry.npmmirror.com/express@4.18.2 - fast-glob: registry.npmmirror.com/fast-glob@3.3.1 - fs-extra: registry.npmmirror.com/fs-extra@10.1.0 - hash-sum: registry.npmmirror.com/hash-sum@2.0.0 - jsonc-parser: registry.npmmirror.com/jsonc-parser@3.2.0 - magic-string: registry.npmmirror.com/magic-string@0.30.3 - picocolors: registry.npmmirror.com/picocolors@1.0.0 - terser: registry.npmmirror.com/terser@5.19.4 - vite: registry.npmmirror.com/vite@4.0.0(sass@1.66.1)(terser@5.19.4) - transitivePeerDependencies: - - postcss - - supports-color - - ts-node - - vue - dev: true - - registry.npmmirror.com/@esbuild/android-arm64@0.16.17: - resolution: {integrity: sha512-MIGl6p5sc3RDTLLkYL1MyL8BMRN4tLMRCn+yRJJmEDvYZ2M7tmAf80hx1kbNEUX2KJ50RRtxZ4JHLvCfuB6kBg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/android-arm64/-/android-arm64-0.16.17.tgz} - name: '@esbuild/android-arm64' - version: 0.16.17 - engines: {node: '>=12'} - cpu: [arm64] - os: [android] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/android-arm64@0.17.19: - resolution: {integrity: sha512-KBMWvEZooR7+kzY0BtbTQn0OAYY7CsiydT63pVEaPtVYF0hXbUaOyZog37DKxK7NF3XacBJOpYT4adIJh+avxA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/android-arm64/-/android-arm64-0.17.19.tgz} - name: '@esbuild/android-arm64' - version: 0.17.19 - engines: {node: '>=12'} - cpu: [arm64] - os: [android] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/android-arm@0.16.17: - resolution: {integrity: sha512-N9x1CMXVhtWEAMS7pNNONyA14f71VPQN9Cnavj1XQh6T7bskqiLLrSca4O0Vr8Wdcga943eThxnVp3JLnBMYtw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/android-arm/-/android-arm-0.16.17.tgz} - name: '@esbuild/android-arm' - version: 0.16.17 - engines: {node: '>=12'} - cpu: [arm] - os: [android] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/android-arm@0.17.19: - resolution: {integrity: sha512-rIKddzqhmav7MSmoFCmDIb6e2W57geRsM94gV2l38fzhXMwq7hZoClug9USI2pFRGL06f4IOPHHpFNOkWieR8A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/android-arm/-/android-arm-0.17.19.tgz} - name: '@esbuild/android-arm' - version: 0.17.19 - engines: {node: '>=12'} - cpu: [arm] - os: [android] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/android-x64@0.16.17: - resolution: {integrity: sha512-a3kTv3m0Ghh4z1DaFEuEDfz3OLONKuFvI4Xqczqx4BqLyuFaFkuaG4j2MtA6fuWEFeC5x9IvqnX7drmRq/fyAQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/android-x64/-/android-x64-0.16.17.tgz} - name: '@esbuild/android-x64' - version: 0.16.17 - engines: {node: '>=12'} - cpu: [x64] - os: [android] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/android-x64@0.17.19: - resolution: {integrity: sha512-uUTTc4xGNDT7YSArp/zbtmbhO0uEEK9/ETW29Wk1thYUJBz3IVnvgEiEwEa9IeLyvnpKrWK64Utw2bgUmDveww==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/android-x64/-/android-x64-0.17.19.tgz} - name: '@esbuild/android-x64' - version: 0.17.19 - engines: {node: '>=12'} - cpu: [x64] - os: [android] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/darwin-arm64@0.16.17: - resolution: {integrity: sha512-/2agbUEfmxWHi9ARTX6OQ/KgXnOWfsNlTeLcoV7HSuSTv63E4DqtAc+2XqGw1KHxKMHGZgbVCZge7HXWX9Vn+w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/darwin-arm64/-/darwin-arm64-0.16.17.tgz} - name: '@esbuild/darwin-arm64' - version: 0.16.17 - engines: {node: '>=12'} - cpu: [arm64] - os: [darwin] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/darwin-arm64@0.17.19: - resolution: {integrity: sha512-80wEoCfF/hFKM6WE1FyBHc9SfUblloAWx6FJkFWTWiCoht9Mc0ARGEM47e67W9rI09YoUxJL68WHfDRYEAvOhg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/darwin-arm64/-/darwin-arm64-0.17.19.tgz} - name: '@esbuild/darwin-arm64' - version: 0.17.19 - engines: {node: '>=12'} - cpu: [arm64] - os: [darwin] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/darwin-x64@0.16.17: - resolution: {integrity: sha512-2By45OBHulkd9Svy5IOCZt376Aa2oOkiE9QWUK9fe6Tb+WDr8hXL3dpqi+DeLiMed8tVXspzsTAvd0jUl96wmg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/darwin-x64/-/darwin-x64-0.16.17.tgz} - name: '@esbuild/darwin-x64' - version: 0.16.17 - engines: {node: '>=12'} - cpu: [x64] - os: [darwin] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/darwin-x64@0.17.19: - resolution: {integrity: sha512-IJM4JJsLhRYr9xdtLytPLSH9k/oxR3boaUIYiHkAawtwNOXKE8KoU8tMvryogdcT8AU+Bflmh81Xn6Q0vTZbQw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/darwin-x64/-/darwin-x64-0.17.19.tgz} - name: '@esbuild/darwin-x64' - version: 0.17.19 - engines: {node: '>=12'} - cpu: [x64] - os: [darwin] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/freebsd-arm64@0.16.17: - resolution: {integrity: sha512-mt+cxZe1tVx489VTb4mBAOo2aKSnJ33L9fr25JXpqQqzbUIw/yzIzi+NHwAXK2qYV1lEFp4OoVeThGjUbmWmdw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.16.17.tgz} - name: '@esbuild/freebsd-arm64' - version: 0.16.17 - engines: {node: '>=12'} - cpu: [arm64] - os: [freebsd] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/freebsd-arm64@0.17.19: - resolution: {integrity: sha512-pBwbc7DufluUeGdjSU5Si+P3SoMF5DQ/F/UmTSb8HXO80ZEAJmrykPyzo1IfNbAoaqw48YRpv8shwd1NoI0jcQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.19.tgz} - name: '@esbuild/freebsd-arm64' - version: 0.17.19 - engines: {node: '>=12'} - cpu: [arm64] - os: [freebsd] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/freebsd-x64@0.16.17: - resolution: {integrity: sha512-8ScTdNJl5idAKjH8zGAsN7RuWcyHG3BAvMNpKOBaqqR7EbUhhVHOqXRdL7oZvz8WNHL2pr5+eIT5c65kA6NHug==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/freebsd-x64/-/freebsd-x64-0.16.17.tgz} - name: '@esbuild/freebsd-x64' - version: 0.16.17 - engines: {node: '>=12'} - cpu: [x64] - os: [freebsd] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/freebsd-x64@0.17.19: - resolution: {integrity: sha512-4lu+n8Wk0XlajEhbEffdy2xy53dpR06SlzvhGByyg36qJw6Kpfk7cp45DR/62aPH9mtJRmIyrXAS5UWBrJT6TQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/freebsd-x64/-/freebsd-x64-0.17.19.tgz} - name: '@esbuild/freebsd-x64' - version: 0.17.19 - engines: {node: '>=12'} - cpu: [x64] - os: [freebsd] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/linux-arm64@0.16.17: - resolution: {integrity: sha512-7S8gJnSlqKGVJunnMCrXHU9Q8Q/tQIxk/xL8BqAP64wchPCTzuM6W3Ra8cIa1HIflAvDnNOt2jaL17vaW+1V0g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-arm64/-/linux-arm64-0.16.17.tgz} - name: '@esbuild/linux-arm64' - version: 0.16.17 - engines: {node: '>=12'} - cpu: [arm64] - os: [linux] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/linux-arm64@0.17.19: - resolution: {integrity: sha512-ct1Tg3WGwd3P+oZYqic+YZF4snNl2bsnMKRkb3ozHmnM0dGWuxcPTTntAF6bOP0Sp4x0PjSF+4uHQ1xvxfRKqg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-arm64/-/linux-arm64-0.17.19.tgz} - name: '@esbuild/linux-arm64' - version: 0.17.19 - engines: {node: '>=12'} - cpu: [arm64] - os: [linux] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/linux-arm@0.16.17: - resolution: {integrity: sha512-iihzrWbD4gIT7j3caMzKb/RsFFHCwqqbrbH9SqUSRrdXkXaygSZCZg1FybsZz57Ju7N/SHEgPyaR0LZ8Zbe9gQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-arm/-/linux-arm-0.16.17.tgz} - name: '@esbuild/linux-arm' - version: 0.16.17 - engines: {node: '>=12'} - cpu: [arm] - os: [linux] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/linux-arm@0.17.19: - resolution: {integrity: sha512-cdmT3KxjlOQ/gZ2cjfrQOtmhG4HJs6hhvm3mWSRDPtZ/lP5oe8FWceS10JaSJC13GBd4eH/haHnqf7hhGNLerA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-arm/-/linux-arm-0.17.19.tgz} - name: '@esbuild/linux-arm' - version: 0.17.19 - engines: {node: '>=12'} - cpu: [arm] - os: [linux] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/linux-ia32@0.16.17: - resolution: {integrity: sha512-kiX69+wcPAdgl3Lonh1VI7MBr16nktEvOfViszBSxygRQqSpzv7BffMKRPMFwzeJGPxcio0pdD3kYQGpqQ2SSg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-ia32/-/linux-ia32-0.16.17.tgz} - name: '@esbuild/linux-ia32' - version: 0.16.17 - engines: {node: '>=12'} - cpu: [ia32] - os: [linux] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/linux-ia32@0.17.19: - resolution: {integrity: sha512-w4IRhSy1VbsNxHRQpeGCHEmibqdTUx61Vc38APcsRbuVgK0OPEnQ0YD39Brymn96mOx48Y2laBQGqgZ0j9w6SQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-ia32/-/linux-ia32-0.17.19.tgz} - name: '@esbuild/linux-ia32' - version: 0.17.19 - engines: {node: '>=12'} - cpu: [ia32] - os: [linux] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/linux-loong64@0.16.17: - resolution: {integrity: sha512-dTzNnQwembNDhd654cA4QhbS9uDdXC3TKqMJjgOWsC0yNCbpzfWoXdZvp0mY7HU6nzk5E0zpRGGx3qoQg8T2DQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-loong64/-/linux-loong64-0.16.17.tgz} - name: '@esbuild/linux-loong64' - version: 0.16.17 - engines: {node: '>=12'} - cpu: [loong64] - os: [linux] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/linux-loong64@0.17.19: - resolution: {integrity: sha512-2iAngUbBPMq439a+z//gE+9WBldoMp1s5GWsUSgqHLzLJ9WoZLZhpwWuym0u0u/4XmZ3gpHmzV84PonE+9IIdQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-loong64/-/linux-loong64-0.17.19.tgz} - name: '@esbuild/linux-loong64' - version: 0.17.19 - engines: {node: '>=12'} - cpu: [loong64] - os: [linux] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/linux-mips64el@0.16.17: - resolution: {integrity: sha512-ezbDkp2nDl0PfIUn0CsQ30kxfcLTlcx4Foz2kYv8qdC6ia2oX5Q3E/8m6lq84Dj/6b0FrkgD582fJMIfHhJfSw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-mips64el/-/linux-mips64el-0.16.17.tgz} - name: '@esbuild/linux-mips64el' - version: 0.16.17 - engines: {node: '>=12'} - cpu: [mips64el] - os: [linux] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/linux-mips64el@0.17.19: - resolution: {integrity: sha512-LKJltc4LVdMKHsrFe4MGNPp0hqDFA1Wpt3jE1gEyM3nKUvOiO//9PheZZHfYRfYl6AwdTH4aTcXSqBerX0ml4A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-mips64el/-/linux-mips64el-0.17.19.tgz} - name: '@esbuild/linux-mips64el' - version: 0.17.19 - engines: {node: '>=12'} - cpu: [mips64el] - os: [linux] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/linux-ppc64@0.16.17: - resolution: {integrity: sha512-dzS678gYD1lJsW73zrFhDApLVdM3cUF2MvAa1D8K8KtcSKdLBPP4zZSLy6LFZ0jYqQdQ29bjAHJDgz0rVbLB3g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-ppc64/-/linux-ppc64-0.16.17.tgz} - name: '@esbuild/linux-ppc64' - version: 0.16.17 - engines: {node: '>=12'} - cpu: [ppc64] - os: [linux] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/linux-ppc64@0.17.19: - resolution: {integrity: sha512-/c/DGybs95WXNS8y3Ti/ytqETiW7EU44MEKuCAcpPto3YjQbyK3IQVKfF6nbghD7EcLUGl0NbiL5Rt5DMhn5tg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-ppc64/-/linux-ppc64-0.17.19.tgz} - name: '@esbuild/linux-ppc64' - version: 0.17.19 - engines: {node: '>=12'} - cpu: [ppc64] - os: [linux] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/linux-riscv64@0.16.17: - resolution: {integrity: sha512-ylNlVsxuFjZK8DQtNUwiMskh6nT0vI7kYl/4fZgV1llP5d6+HIeL/vmmm3jpuoo8+NuXjQVZxmKuhDApK0/cKw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-riscv64/-/linux-riscv64-0.16.17.tgz} - name: '@esbuild/linux-riscv64' - version: 0.16.17 - engines: {node: '>=12'} - cpu: [riscv64] - os: [linux] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/linux-riscv64@0.17.19: - resolution: {integrity: sha512-FC3nUAWhvFoutlhAkgHf8f5HwFWUL6bYdvLc/TTuxKlvLi3+pPzdZiFKSWz/PF30TB1K19SuCxDTI5KcqASJqA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-riscv64/-/linux-riscv64-0.17.19.tgz} - name: '@esbuild/linux-riscv64' - version: 0.17.19 - engines: {node: '>=12'} - cpu: [riscv64] - os: [linux] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/linux-s390x@0.16.17: - resolution: {integrity: sha512-gzy7nUTO4UA4oZ2wAMXPNBGTzZFP7mss3aKR2hH+/4UUkCOyqmjXiKpzGrY2TlEUhbbejzXVKKGazYcQTZWA/w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-s390x/-/linux-s390x-0.16.17.tgz} - name: '@esbuild/linux-s390x' - version: 0.16.17 - engines: {node: '>=12'} - cpu: [s390x] - os: [linux] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/linux-s390x@0.17.19: - resolution: {integrity: sha512-IbFsFbxMWLuKEbH+7sTkKzL6NJmG2vRyy6K7JJo55w+8xDk7RElYn6xvXtDW8HCfoKBFK69f3pgBJSUSQPr+4Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-s390x/-/linux-s390x-0.17.19.tgz} - name: '@esbuild/linux-s390x' - version: 0.17.19 - engines: {node: '>=12'} - cpu: [s390x] - os: [linux] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/linux-x64@0.16.17: - resolution: {integrity: sha512-mdPjPxfnmoqhgpiEArqi4egmBAMYvaObgn4poorpUaqmvzzbvqbowRllQ+ZgzGVMGKaPkqUmPDOOFQRUFDmeUw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-x64/-/linux-x64-0.16.17.tgz} - name: '@esbuild/linux-x64' - version: 0.16.17 - engines: {node: '>=12'} - cpu: [x64] - os: [linux] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/linux-x64@0.17.19: - resolution: {integrity: sha512-68ngA9lg2H6zkZcyp22tsVt38mlhWde8l3eJLWkyLrp4HwMUr3c1s/M2t7+kHIhvMjglIBrFpncX1SzMckomGw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-x64/-/linux-x64-0.17.19.tgz} - name: '@esbuild/linux-x64' - version: 0.17.19 - engines: {node: '>=12'} - cpu: [x64] - os: [linux] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/netbsd-x64@0.16.17: - resolution: {integrity: sha512-/PzmzD/zyAeTUsduZa32bn0ORug+Jd1EGGAUJvqfeixoEISYpGnAezN6lnJoskauoai0Jrs+XSyvDhppCPoKOA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/netbsd-x64/-/netbsd-x64-0.16.17.tgz} - name: '@esbuild/netbsd-x64' - version: 0.16.17 - engines: {node: '>=12'} - cpu: [x64] - os: [netbsd] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/netbsd-x64@0.17.19: - resolution: {integrity: sha512-CwFq42rXCR8TYIjIfpXCbRX0rp1jo6cPIUPSaWwzbVI4aOfX96OXY8M6KNmtPcg7QjYeDmN+DD0Wp3LaBOLf4Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/netbsd-x64/-/netbsd-x64-0.17.19.tgz} - name: '@esbuild/netbsd-x64' - version: 0.17.19 - engines: {node: '>=12'} - cpu: [x64] - os: [netbsd] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/openbsd-x64@0.16.17: - resolution: {integrity: sha512-2yaWJhvxGEz2RiftSk0UObqJa/b+rIAjnODJgv2GbGGpRwAfpgzyrg1WLK8rqA24mfZa9GvpjLcBBg8JHkoodg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/openbsd-x64/-/openbsd-x64-0.16.17.tgz} - name: '@esbuild/openbsd-x64' - version: 0.16.17 - engines: {node: '>=12'} - cpu: [x64] - os: [openbsd] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/openbsd-x64@0.17.19: - resolution: {integrity: sha512-cnq5brJYrSZ2CF6c35eCmviIN3k3RczmHz8eYaVlNasVqsNY+JKohZU5MKmaOI+KkllCdzOKKdPs762VCPC20g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/openbsd-x64/-/openbsd-x64-0.17.19.tgz} - name: '@esbuild/openbsd-x64' - version: 0.17.19 - engines: {node: '>=12'} - cpu: [x64] - os: [openbsd] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/sunos-x64@0.16.17: - resolution: {integrity: sha512-xtVUiev38tN0R3g8VhRfN7Zl42YCJvyBhRKw1RJjwE1d2emWTVToPLNEQj/5Qxc6lVFATDiy6LjVHYhIPrLxzw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/sunos-x64/-/sunos-x64-0.16.17.tgz} - name: '@esbuild/sunos-x64' - version: 0.16.17 - engines: {node: '>=12'} - cpu: [x64] - os: [sunos] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/sunos-x64@0.17.19: - resolution: {integrity: sha512-vCRT7yP3zX+bKWFeP/zdS6SqdWB8OIpaRq/mbXQxTGHnIxspRtigpkUcDMlSCOejlHowLqII7K2JKevwyRP2rg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/sunos-x64/-/sunos-x64-0.17.19.tgz} - name: '@esbuild/sunos-x64' - version: 0.17.19 - engines: {node: '>=12'} - cpu: [x64] - os: [sunos] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/win32-arm64@0.16.17: - resolution: {integrity: sha512-ga8+JqBDHY4b6fQAmOgtJJue36scANy4l/rL97W+0wYmijhxKetzZdKOJI7olaBaMhWt8Pac2McJdZLxXWUEQw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/win32-arm64/-/win32-arm64-0.16.17.tgz} - name: '@esbuild/win32-arm64' - version: 0.16.17 - engines: {node: '>=12'} - cpu: [arm64] - os: [win32] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/win32-arm64@0.17.19: - resolution: {integrity: sha512-yYx+8jwowUstVdorcMdNlzklLYhPxjniHWFKgRqH7IFlUEa0Umu3KuYplf1HUZZ422e3NU9F4LGb+4O0Kdcaag==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/win32-arm64/-/win32-arm64-0.17.19.tgz} - name: '@esbuild/win32-arm64' - version: 0.17.19 - engines: {node: '>=12'} - cpu: [arm64] - os: [win32] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/win32-ia32@0.16.17: - resolution: {integrity: sha512-WnsKaf46uSSF/sZhwnqE4L/F89AYNMiD4YtEcYekBt9Q7nj0DiId2XH2Ng2PHM54qi5oPrQ8luuzGszqi/veig==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/win32-ia32/-/win32-ia32-0.16.17.tgz} - name: '@esbuild/win32-ia32' - version: 0.16.17 - engines: {node: '>=12'} - cpu: [ia32] - os: [win32] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/win32-ia32@0.17.19: - resolution: {integrity: sha512-eggDKanJszUtCdlVs0RB+h35wNlb5v4TWEkq4vZcmVt5u/HiDZrTXe2bWFQUez3RgNHwx/x4sk5++4NSSicKkw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/win32-ia32/-/win32-ia32-0.17.19.tgz} - name: '@esbuild/win32-ia32' - version: 0.17.19 - engines: {node: '>=12'} - cpu: [ia32] - os: [win32] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/win32-x64@0.16.17: - resolution: {integrity: sha512-y+EHuSchhL7FjHgvQL/0fnnFmO4T1bhvWANX6gcnqTjtnKWbTvUMCpGnv2+t+31d7RzyEAYAd4u2fnIhHL6N/Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/win32-x64/-/win32-x64-0.16.17.tgz} - name: '@esbuild/win32-x64' - version: 0.16.17 - engines: {node: '>=12'} - cpu: [x64] - os: [win32] - requiresBuild: true - optional: true - - registry.npmmirror.com/@esbuild/win32-x64@0.17.19: - resolution: {integrity: sha512-lAhycmKnVOuRYNtRtatQR1LPQf2oYCkRGkSFnseDAKPl8lu5SOsK/e1sXe5a0Pc5kHIHe6P2I/ilntNv2xf3cA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/win32-x64/-/win32-x64-0.17.19.tgz} - name: '@esbuild/win32-x64' - version: 0.17.19 - engines: {node: '>=12'} - cpu: [x64] - os: [win32] - requiresBuild: true - optional: true - - 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} - name: '@intlify/core-base' - version: 9.1.9 - 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 - '@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 - '@intlify/vue-devtools': registry.npmmirror.com/@intlify/vue-devtools@9.1.9 - - 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} - name: '@intlify/devtools-if' - version: 9.1.9 - engines: {node: '>= 10'} - dependencies: - '@intlify/shared': registry.npmmirror.com/@intlify/shared@9.1.9 - - 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} - name: '@intlify/message-compiler' - version: 9.1.9 - 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.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} - name: '@intlify/message-resolver' - version: 9.1.9 - engines: {node: '>= 10'} - - 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} - name: '@intlify/runtime' - version: 9.1.9 - 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.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} - name: '@intlify/shared' - version: 9.1.9 - engines: {node: '>= 10'} - - 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} - name: '@intlify/vue-devtools' - version: 9.1.9 - 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/@istanbuljs/load-nyc-config@1.1.0: - resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz} - name: '@istanbuljs/load-nyc-config' - version: 1.1.0 - engines: {node: '>=8'} - dependencies: - camelcase: registry.npmmirror.com/camelcase@5.3.1 - find-up: registry.npmmirror.com/find-up@4.1.0 - get-package-type: registry.npmmirror.com/get-package-type@0.1.0 - js-yaml: registry.npmmirror.com/js-yaml@3.14.1 - resolve-from: registry.npmmirror.com/resolve-from@5.0.0 - dev: true - - registry.npmmirror.com/@istanbuljs/schema@0.1.3: - resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@istanbuljs/schema/-/schema-0.1.3.tgz} - name: '@istanbuljs/schema' - version: 0.1.3 - engines: {node: '>=8'} - dev: true - - registry.npmmirror.com/@jest/console@27.5.1: - resolution: {integrity: sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jest/console/-/console-27.5.1.tgz} - name: '@jest/console' - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - '@jest/types': registry.npmmirror.com/@jest/types@27.5.1 - '@types/node': registry.npmmirror.com/@types/node@20.5.9 - chalk: registry.npmmirror.com/chalk@4.1.2 - jest-message-util: registry.npmmirror.com/jest-message-util@27.5.1 - jest-util: registry.npmmirror.com/jest-util@27.5.1 - slash: registry.npmmirror.com/slash@3.0.0 - dev: true - - registry.npmmirror.com/@jest/core@27.5.1: - resolution: {integrity: sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jest/core/-/core-27.5.1.tgz} - name: '@jest/core' - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true - dependencies: - '@jest/console': registry.npmmirror.com/@jest/console@27.5.1 - '@jest/reporters': registry.npmmirror.com/@jest/reporters@27.5.1 - '@jest/test-result': registry.npmmirror.com/@jest/test-result@27.5.1 - '@jest/transform': registry.npmmirror.com/@jest/transform@27.5.1 - '@jest/types': registry.npmmirror.com/@jest/types@27.5.1 - '@types/node': registry.npmmirror.com/@types/node@20.5.9 - ansi-escapes: registry.npmmirror.com/ansi-escapes@4.3.2 - chalk: registry.npmmirror.com/chalk@4.1.2 - emittery: registry.npmmirror.com/emittery@0.8.1 - exit: registry.npmmirror.com/exit@0.1.2 - graceful-fs: registry.npmmirror.com/graceful-fs@4.2.11 - jest-changed-files: registry.npmmirror.com/jest-changed-files@27.5.1 - jest-config: registry.npmmirror.com/jest-config@27.5.1 - jest-haste-map: registry.npmmirror.com/jest-haste-map@27.5.1 - jest-message-util: registry.npmmirror.com/jest-message-util@27.5.1 - jest-regex-util: registry.npmmirror.com/jest-regex-util@27.5.1 - jest-resolve: registry.npmmirror.com/jest-resolve@27.5.1 - jest-resolve-dependencies: registry.npmmirror.com/jest-resolve-dependencies@27.5.1 - jest-runner: registry.npmmirror.com/jest-runner@27.5.1 - jest-runtime: registry.npmmirror.com/jest-runtime@27.5.1 - jest-snapshot: registry.npmmirror.com/jest-snapshot@27.5.1 - jest-util: registry.npmmirror.com/jest-util@27.5.1 - jest-validate: registry.npmmirror.com/jest-validate@27.5.1 - jest-watcher: registry.npmmirror.com/jest-watcher@27.5.1 - micromatch: registry.npmmirror.com/micromatch@4.0.5 - rimraf: registry.npmmirror.com/rimraf@3.0.2 - slash: registry.npmmirror.com/slash@3.0.0 - strip-ansi: registry.npmmirror.com/strip-ansi@6.0.1 - transitivePeerDependencies: - - bufferutil - - canvas - - supports-color - - ts-node - - utf-8-validate - dev: true - - registry.npmmirror.com/@jest/environment@27.5.1: - resolution: {integrity: sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jest/environment/-/environment-27.5.1.tgz} - name: '@jest/environment' - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - '@jest/fake-timers': registry.npmmirror.com/@jest/fake-timers@27.5.1 - '@jest/types': registry.npmmirror.com/@jest/types@27.5.1 - '@types/node': registry.npmmirror.com/@types/node@20.5.9 - jest-mock: registry.npmmirror.com/jest-mock@27.5.1 - dev: true - - registry.npmmirror.com/@jest/fake-timers@27.5.1: - resolution: {integrity: sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jest/fake-timers/-/fake-timers-27.5.1.tgz} - name: '@jest/fake-timers' - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - '@jest/types': registry.npmmirror.com/@jest/types@27.5.1 - '@sinonjs/fake-timers': registry.npmmirror.com/@sinonjs/fake-timers@8.1.0 - '@types/node': registry.npmmirror.com/@types/node@20.5.9 - jest-message-util: registry.npmmirror.com/jest-message-util@27.5.1 - jest-mock: registry.npmmirror.com/jest-mock@27.5.1 - jest-util: registry.npmmirror.com/jest-util@27.5.1 - dev: true - - registry.npmmirror.com/@jest/globals@27.5.1: - resolution: {integrity: sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jest/globals/-/globals-27.5.1.tgz} - name: '@jest/globals' - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - '@jest/environment': registry.npmmirror.com/@jest/environment@27.5.1 - '@jest/types': registry.npmmirror.com/@jest/types@27.5.1 - expect: registry.npmmirror.com/expect@27.5.1 - dev: true - - registry.npmmirror.com/@jest/reporters@27.5.1: - resolution: {integrity: sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jest/reporters/-/reporters-27.5.1.tgz} - name: '@jest/reporters' - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true - dependencies: - '@bcoe/v8-coverage': registry.npmmirror.com/@bcoe/v8-coverage@0.2.3 - '@jest/console': registry.npmmirror.com/@jest/console@27.5.1 - '@jest/test-result': registry.npmmirror.com/@jest/test-result@27.5.1 - '@jest/transform': registry.npmmirror.com/@jest/transform@27.5.1 - '@jest/types': registry.npmmirror.com/@jest/types@27.5.1 - '@types/node': registry.npmmirror.com/@types/node@20.5.9 - chalk: registry.npmmirror.com/chalk@4.1.2 - collect-v8-coverage: registry.npmmirror.com/collect-v8-coverage@1.0.2 - exit: registry.npmmirror.com/exit@0.1.2 - glob: registry.npmmirror.com/glob@7.2.3 - graceful-fs: registry.npmmirror.com/graceful-fs@4.2.11 - istanbul-lib-coverage: registry.npmmirror.com/istanbul-lib-coverage@3.2.0 - istanbul-lib-instrument: registry.npmmirror.com/istanbul-lib-instrument@5.2.1 - istanbul-lib-report: registry.npmmirror.com/istanbul-lib-report@3.0.1 - istanbul-lib-source-maps: registry.npmmirror.com/istanbul-lib-source-maps@4.0.1 - istanbul-reports: registry.npmmirror.com/istanbul-reports@3.1.6 - jest-haste-map: registry.npmmirror.com/jest-haste-map@27.5.1 - jest-resolve: registry.npmmirror.com/jest-resolve@27.5.1 - jest-util: registry.npmmirror.com/jest-util@27.5.1 - jest-worker: registry.npmmirror.com/jest-worker@27.5.1 - slash: registry.npmmirror.com/slash@3.0.0 - source-map: registry.npmmirror.com/source-map@0.6.1 - string-length: registry.npmmirror.com/string-length@4.0.2 - terminal-link: registry.npmmirror.com/terminal-link@2.1.1 - v8-to-istanbul: registry.npmmirror.com/v8-to-istanbul@8.1.1 - transitivePeerDependencies: - - supports-color - dev: true - - registry.npmmirror.com/@jest/source-map@27.5.1: - resolution: {integrity: sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jest/source-map/-/source-map-27.5.1.tgz} - name: '@jest/source-map' - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - callsites: registry.npmmirror.com/callsites@3.1.0 - graceful-fs: registry.npmmirror.com/graceful-fs@4.2.11 - source-map: registry.npmmirror.com/source-map@0.6.1 - dev: true - - registry.npmmirror.com/@jest/test-result@27.5.1: - resolution: {integrity: sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jest/test-result/-/test-result-27.5.1.tgz} - name: '@jest/test-result' - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - '@jest/console': registry.npmmirror.com/@jest/console@27.5.1 - '@jest/types': registry.npmmirror.com/@jest/types@27.5.1 - '@types/istanbul-lib-coverage': registry.npmmirror.com/@types/istanbul-lib-coverage@2.0.4 - collect-v8-coverage: registry.npmmirror.com/collect-v8-coverage@1.0.2 - dev: true - - registry.npmmirror.com/@jest/test-sequencer@27.5.1: - resolution: {integrity: sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jest/test-sequencer/-/test-sequencer-27.5.1.tgz} - name: '@jest/test-sequencer' - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - '@jest/test-result': registry.npmmirror.com/@jest/test-result@27.5.1 - graceful-fs: registry.npmmirror.com/graceful-fs@4.2.11 - jest-haste-map: registry.npmmirror.com/jest-haste-map@27.5.1 - jest-runtime: registry.npmmirror.com/jest-runtime@27.5.1 - transitivePeerDependencies: - - supports-color - dev: true - - registry.npmmirror.com/@jest/transform@27.5.1: - resolution: {integrity: sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jest/transform/-/transform-27.5.1.tgz} - name: '@jest/transform' - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@jest/types': registry.npmmirror.com/@jest/types@27.5.1 - babel-plugin-istanbul: registry.npmmirror.com/babel-plugin-istanbul@6.1.1 - chalk: registry.npmmirror.com/chalk@4.1.2 - convert-source-map: registry.npmmirror.com/convert-source-map@1.9.0 - fast-json-stable-stringify: registry.npmmirror.com/fast-json-stable-stringify@2.1.0 - graceful-fs: registry.npmmirror.com/graceful-fs@4.2.11 - jest-haste-map: registry.npmmirror.com/jest-haste-map@27.5.1 - jest-regex-util: registry.npmmirror.com/jest-regex-util@27.5.1 - jest-util: registry.npmmirror.com/jest-util@27.5.1 - micromatch: registry.npmmirror.com/micromatch@4.0.5 - pirates: registry.npmmirror.com/pirates@4.0.6 - slash: registry.npmmirror.com/slash@3.0.0 - source-map: registry.npmmirror.com/source-map@0.6.1 - write-file-atomic: registry.npmmirror.com/write-file-atomic@3.0.3 - transitivePeerDependencies: - - supports-color - dev: true - - registry.npmmirror.com/@jest/types@27.5.1: - resolution: {integrity: sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jest/types/-/types-27.5.1.tgz} - name: '@jest/types' - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - '@types/istanbul-lib-coverage': registry.npmmirror.com/@types/istanbul-lib-coverage@2.0.4 - '@types/istanbul-reports': registry.npmmirror.com/@types/istanbul-reports@3.0.1 - '@types/node': registry.npmmirror.com/@types/node@20.5.9 - '@types/yargs': registry.npmmirror.com/@types/yargs@16.0.5 - chalk: registry.npmmirror.com/chalk@4.1.2 - dev: true - - registry.npmmirror.com/@jimp/bmp@0.10.3(@jimp/custom@0.10.3): - resolution: {integrity: sha512-keMOc5woiDmONXsB/6aXLR4Z5Q+v8lFq3EY2rcj2FmstbDMhRuGbmcBxlEgOqfRjwvtf/wOtJ3Of37oAWtVfLg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/bmp/-/bmp-0.10.3.tgz} - id: registry.npmmirror.com/@jimp/bmp/0.10.3 - name: '@jimp/bmp' - version: 0.10.3 - peerDependencies: - '@jimp/custom': '>=0.3.5' - dependencies: - '@babel/runtime': registry.npmmirror.com/@babel/runtime@7.22.15 - '@jimp/custom': registry.npmmirror.com/@jimp/custom@0.10.3 - '@jimp/utils': registry.npmmirror.com/@jimp/utils@0.10.3 - bmp-js: registry.npmmirror.com/bmp-js@0.1.0 - core-js: registry.npmmirror.com/core-js@3.32.1 - dev: false - - registry.npmmirror.com/@jimp/core@0.10.3: - resolution: {integrity: sha512-Gd5IpL3U2bFIO57Fh/OA3HCpWm4uW/pU01E75rI03BXfTdz3T+J7TwvyG1XaqsQ7/DSlS99GXtLQPlfFIe28UA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/core/-/core-0.10.3.tgz} - name: '@jimp/core' - version: 0.10.3 - dependencies: - '@babel/runtime': registry.npmmirror.com/@babel/runtime@7.22.15 - '@jimp/utils': registry.npmmirror.com/@jimp/utils@0.10.3 - any-base: registry.npmmirror.com/any-base@1.1.0 - buffer: registry.npmmirror.com/buffer@5.7.1 - core-js: registry.npmmirror.com/core-js@3.32.1 - exif-parser: registry.npmmirror.com/exif-parser@0.1.12 - file-type: registry.npmmirror.com/file-type@9.0.0 - load-bmfont: registry.npmmirror.com/load-bmfont@1.4.1 - mkdirp: registry.npmmirror.com/mkdirp@0.5.6 - phin: registry.npmmirror.com/phin@2.9.3 - pixelmatch: registry.npmmirror.com/pixelmatch@4.0.2 - tinycolor2: registry.npmmirror.com/tinycolor2@1.6.0 - dev: false - - registry.npmmirror.com/@jimp/custom@0.10.3: - resolution: {integrity: sha512-nZmSI+jwTi5IRyNLbKSXQovoeqsw+D0Jn0SxW08wYQvdkiWA8bTlDQFgQ7HVwCAKBm8oKkDB/ZEo9qvHJ+1gAQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/custom/-/custom-0.10.3.tgz} - name: '@jimp/custom' - version: 0.10.3 - dependencies: - '@babel/runtime': registry.npmmirror.com/@babel/runtime@7.22.15 - '@jimp/core': registry.npmmirror.com/@jimp/core@0.10.3 - core-js: registry.npmmirror.com/core-js@3.32.1 - dev: false - - registry.npmmirror.com/@jimp/gif@0.10.3(@jimp/custom@0.10.3): - resolution: {integrity: sha512-vjlRodSfz1CrUvvrnUuD/DsLK1GHB/yDZXHthVdZu23zYJIW7/WrIiD1IgQ5wOMV7NocfrvPn2iqUfBP81/WWA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/gif/-/gif-0.10.3.tgz} - id: registry.npmmirror.com/@jimp/gif/0.10.3 - name: '@jimp/gif' - version: 0.10.3 - peerDependencies: - '@jimp/custom': '>=0.3.5' - dependencies: - '@babel/runtime': registry.npmmirror.com/@babel/runtime@7.22.15 - '@jimp/custom': registry.npmmirror.com/@jimp/custom@0.10.3 - '@jimp/utils': registry.npmmirror.com/@jimp/utils@0.10.3 - core-js: registry.npmmirror.com/core-js@3.32.1 - omggif: registry.npmmirror.com/omggif@1.0.10 - dev: false - - registry.npmmirror.com/@jimp/jpeg@0.10.3(@jimp/custom@0.10.3): - resolution: {integrity: sha512-AAANwgUZOt6f6P7LZxY9lyJ9xclqutYJlsxt3JbriXUGJgrrFAIkcKcqv1nObgmQASSAQKYaMV9KdHjMlWFKlQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/jpeg/-/jpeg-0.10.3.tgz} - id: registry.npmmirror.com/@jimp/jpeg/0.10.3 - name: '@jimp/jpeg' - version: 0.10.3 - peerDependencies: - '@jimp/custom': '>=0.3.5' - dependencies: - '@babel/runtime': registry.npmmirror.com/@babel/runtime@7.22.15 - '@jimp/custom': registry.npmmirror.com/@jimp/custom@0.10.3 - '@jimp/utils': registry.npmmirror.com/@jimp/utils@0.10.3 - core-js: registry.npmmirror.com/core-js@3.32.1 - jpeg-js: registry.npmmirror.com/jpeg-js@0.3.7 - dev: false - - registry.npmmirror.com/@jimp/plugin-blit@0.10.3(@jimp/custom@0.10.3): - resolution: {integrity: sha512-5zlKlCfx4JWw9qUVC7GI4DzXyxDWyFvgZLaoGFoT00mlXlN75SarlDwc9iZ/2e2kp4bJWxz3cGgG4G/WXrbg3Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/plugin-blit/-/plugin-blit-0.10.3.tgz} - id: registry.npmmirror.com/@jimp/plugin-blit/0.10.3 - name: '@jimp/plugin-blit' - version: 0.10.3 - peerDependencies: - '@jimp/custom': '>=0.3.5' - dependencies: - '@babel/runtime': registry.npmmirror.com/@babel/runtime@7.22.15 - '@jimp/custom': registry.npmmirror.com/@jimp/custom@0.10.3 - '@jimp/utils': registry.npmmirror.com/@jimp/utils@0.10.3 - core-js: registry.npmmirror.com/core-js@3.32.1 - dev: false - - registry.npmmirror.com/@jimp/plugin-blur@0.10.3(@jimp/custom@0.10.3): - resolution: {integrity: sha512-cTOK3rjh1Yjh23jSfA6EHCHjsPJDEGLC8K2y9gM7dnTUK1y9NNmkFS23uHpyjgsWFIoH9oRh2SpEs3INjCpZhQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/plugin-blur/-/plugin-blur-0.10.3.tgz} - id: registry.npmmirror.com/@jimp/plugin-blur/0.10.3 - name: '@jimp/plugin-blur' - version: 0.10.3 - peerDependencies: - '@jimp/custom': '>=0.3.5' - dependencies: - '@babel/runtime': registry.npmmirror.com/@babel/runtime@7.22.15 - '@jimp/custom': registry.npmmirror.com/@jimp/custom@0.10.3 - '@jimp/utils': registry.npmmirror.com/@jimp/utils@0.10.3 - core-js: registry.npmmirror.com/core-js@3.32.1 - dev: false - - registry.npmmirror.com/@jimp/plugin-circle@0.10.3(@jimp/custom@0.10.3): - resolution: {integrity: sha512-51GAPIVelqAcfuUpaM5JWJ0iWl4vEjNXB7p4P7SX5udugK5bxXUjO6KA2qgWmdpHuCKtoNgkzWU9fNSuYp7tCA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/plugin-circle/-/plugin-circle-0.10.3.tgz} - id: registry.npmmirror.com/@jimp/plugin-circle/0.10.3 - name: '@jimp/plugin-circle' - version: 0.10.3 - peerDependencies: - '@jimp/custom': '>=0.3.5' - dependencies: - '@babel/runtime': registry.npmmirror.com/@babel/runtime@7.22.15 - '@jimp/custom': registry.npmmirror.com/@jimp/custom@0.10.3 - '@jimp/utils': registry.npmmirror.com/@jimp/utils@0.10.3 - core-js: registry.npmmirror.com/core-js@3.32.1 - dev: false - - registry.npmmirror.com/@jimp/plugin-color@0.10.3(@jimp/custom@0.10.3): - resolution: {integrity: sha512-RgeHUElmlTH7vpI4WyQrz6u59spiKfVQbsG/XUzfWGamFSixa24ZDwX/yV/Ts+eNaz7pZeIuv533qmKPvw2ujg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/plugin-color/-/plugin-color-0.10.3.tgz} - id: registry.npmmirror.com/@jimp/plugin-color/0.10.3 - name: '@jimp/plugin-color' - version: 0.10.3 - peerDependencies: - '@jimp/custom': '>=0.3.5' - dependencies: - '@babel/runtime': registry.npmmirror.com/@babel/runtime@7.22.15 - '@jimp/custom': registry.npmmirror.com/@jimp/custom@0.10.3 - '@jimp/utils': registry.npmmirror.com/@jimp/utils@0.10.3 - core-js: registry.npmmirror.com/core-js@3.32.1 - tinycolor2: registry.npmmirror.com/tinycolor2@1.6.0 - dev: false - - registry.npmmirror.com/@jimp/plugin-contain@0.10.3(@jimp/custom@0.10.3)(@jimp/plugin-blit@0.10.3)(@jimp/plugin-resize@0.10.3)(@jimp/plugin-scale@0.10.3): - resolution: {integrity: sha512-bYJKW9dqzcB0Ihc6u7jSyKa3juStzbLs2LFr6fu8TzA2WkMS/R8h+ddkiO36+F9ILTWHP0CIA3HFe5OdOGcigw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/plugin-contain/-/plugin-contain-0.10.3.tgz} - id: registry.npmmirror.com/@jimp/plugin-contain/0.10.3 - name: '@jimp/plugin-contain' - version: 0.10.3 - peerDependencies: - '@jimp/custom': '>=0.3.5' - '@jimp/plugin-blit': '>=0.3.5' - '@jimp/plugin-resize': '>=0.3.5' - '@jimp/plugin-scale': '>=0.3.5' - dependencies: - '@babel/runtime': registry.npmmirror.com/@babel/runtime@7.22.15 - '@jimp/custom': registry.npmmirror.com/@jimp/custom@0.10.3 - '@jimp/plugin-blit': registry.npmmirror.com/@jimp/plugin-blit@0.10.3(@jimp/custom@0.10.3) - '@jimp/plugin-resize': registry.npmmirror.com/@jimp/plugin-resize@0.10.3(@jimp/custom@0.10.3) - '@jimp/plugin-scale': registry.npmmirror.com/@jimp/plugin-scale@0.10.3(@jimp/custom@0.10.3)(@jimp/plugin-resize@0.10.3) - '@jimp/utils': registry.npmmirror.com/@jimp/utils@0.10.3 - core-js: registry.npmmirror.com/core-js@3.32.1 - dev: false - - registry.npmmirror.com/@jimp/plugin-cover@0.10.3(@jimp/custom@0.10.3)(@jimp/plugin-crop@0.10.3)(@jimp/plugin-resize@0.10.3)(@jimp/plugin-scale@0.10.3): - resolution: {integrity: sha512-pOxu0cM0BRPzdV468n4dMocJXoMbTnARDY/EpC3ZW15SpMuc/dr1KhWQHgoQX5kVW1Wt8zgqREAJJCQ5KuPKDA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/plugin-cover/-/plugin-cover-0.10.3.tgz} - id: registry.npmmirror.com/@jimp/plugin-cover/0.10.3 - name: '@jimp/plugin-cover' - version: 0.10.3 - peerDependencies: - '@jimp/custom': '>=0.3.5' - '@jimp/plugin-crop': '>=0.3.5' - '@jimp/plugin-resize': '>=0.3.5' - '@jimp/plugin-scale': '>=0.3.5' - dependencies: - '@babel/runtime': registry.npmmirror.com/@babel/runtime@7.22.15 - '@jimp/custom': registry.npmmirror.com/@jimp/custom@0.10.3 - '@jimp/plugin-crop': registry.npmmirror.com/@jimp/plugin-crop@0.10.3(@jimp/custom@0.10.3) - '@jimp/plugin-resize': registry.npmmirror.com/@jimp/plugin-resize@0.10.3(@jimp/custom@0.10.3) - '@jimp/plugin-scale': registry.npmmirror.com/@jimp/plugin-scale@0.10.3(@jimp/custom@0.10.3)(@jimp/plugin-resize@0.10.3) - '@jimp/utils': registry.npmmirror.com/@jimp/utils@0.10.3 - core-js: registry.npmmirror.com/core-js@3.32.1 - dev: false - - registry.npmmirror.com/@jimp/plugin-crop@0.10.3(@jimp/custom@0.10.3): - resolution: {integrity: sha512-nB7HgOjjl9PgdHr076xZ3Sr6qHYzeBYBs9qvs3tfEEUeYMNnvzgCCGtUl6eMakazZFCMk3mhKmcB9zQuHFOvkg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/plugin-crop/-/plugin-crop-0.10.3.tgz} - id: registry.npmmirror.com/@jimp/plugin-crop/0.10.3 - name: '@jimp/plugin-crop' - version: 0.10.3 - peerDependencies: - '@jimp/custom': '>=0.3.5' - dependencies: - '@babel/runtime': registry.npmmirror.com/@babel/runtime@7.22.15 - '@jimp/custom': registry.npmmirror.com/@jimp/custom@0.10.3 - '@jimp/utils': registry.npmmirror.com/@jimp/utils@0.10.3 - core-js: registry.npmmirror.com/core-js@3.32.1 - dev: false - - registry.npmmirror.com/@jimp/plugin-displace@0.10.3(@jimp/custom@0.10.3): - resolution: {integrity: sha512-8t3fVKCH5IVqI4lewe4lFFjpxxr69SQCz5/tlpDLQZsrNScNJivHdQ09zljTrVTCSgeCqQJIKgH2Q7Sk/pAZ0w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/plugin-displace/-/plugin-displace-0.10.3.tgz} - id: registry.npmmirror.com/@jimp/plugin-displace/0.10.3 - name: '@jimp/plugin-displace' - version: 0.10.3 - peerDependencies: - '@jimp/custom': '>=0.3.5' - dependencies: - '@babel/runtime': registry.npmmirror.com/@babel/runtime@7.22.15 - '@jimp/custom': registry.npmmirror.com/@jimp/custom@0.10.3 - '@jimp/utils': registry.npmmirror.com/@jimp/utils@0.10.3 - core-js: registry.npmmirror.com/core-js@3.32.1 - dev: false - - registry.npmmirror.com/@jimp/plugin-dither@0.10.3(@jimp/custom@0.10.3): - resolution: {integrity: sha512-JCX/oNSnEg1kGQ8ffZ66bEgQOLCY3Rn+lrd6v1jjLy/mn9YVZTMsxLtGCXpiCDC2wG/KTmi4862ysmP9do9dAQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/plugin-dither/-/plugin-dither-0.10.3.tgz} - id: registry.npmmirror.com/@jimp/plugin-dither/0.10.3 - name: '@jimp/plugin-dither' - version: 0.10.3 - peerDependencies: - '@jimp/custom': '>=0.3.5' - dependencies: - '@babel/runtime': registry.npmmirror.com/@babel/runtime@7.22.15 - '@jimp/custom': registry.npmmirror.com/@jimp/custom@0.10.3 - '@jimp/utils': registry.npmmirror.com/@jimp/utils@0.10.3 - core-js: registry.npmmirror.com/core-js@3.32.1 - dev: false - - registry.npmmirror.com/@jimp/plugin-fisheye@0.10.3(@jimp/custom@0.10.3): - resolution: {integrity: sha512-RRZb1wqe+xdocGcFtj2xHU7sF7xmEZmIa6BmrfSchjyA2b32TGPWKnP3qyj7p6LWEsXn+19hRYbjfyzyebPElQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/plugin-fisheye/-/plugin-fisheye-0.10.3.tgz} - id: registry.npmmirror.com/@jimp/plugin-fisheye/0.10.3 - name: '@jimp/plugin-fisheye' - version: 0.10.3 - peerDependencies: - '@jimp/custom': '>=0.3.5' - dependencies: - '@babel/runtime': registry.npmmirror.com/@babel/runtime@7.22.15 - '@jimp/custom': registry.npmmirror.com/@jimp/custom@0.10.3 - '@jimp/utils': registry.npmmirror.com/@jimp/utils@0.10.3 - core-js: registry.npmmirror.com/core-js@3.32.1 - dev: false - - registry.npmmirror.com/@jimp/plugin-flip@0.10.3(@jimp/custom@0.10.3)(@jimp/plugin-rotate@0.10.3): - resolution: {integrity: sha512-0epbi8XEzp0wmSjoW9IB0iMu0yNF17aZOxLdURCN3Zr+8nWPs5VNIMqSVa1Y62GSyiMDpVpKF/ITiXre+EqrPg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/plugin-flip/-/plugin-flip-0.10.3.tgz} - id: registry.npmmirror.com/@jimp/plugin-flip/0.10.3 - name: '@jimp/plugin-flip' - version: 0.10.3 - peerDependencies: - '@jimp/custom': '>=0.3.5' - '@jimp/plugin-rotate': '>=0.3.5' - dependencies: - '@babel/runtime': registry.npmmirror.com/@babel/runtime@7.22.15 - '@jimp/custom': registry.npmmirror.com/@jimp/custom@0.10.3 - '@jimp/plugin-rotate': registry.npmmirror.com/@jimp/plugin-rotate@0.10.3(@jimp/custom@0.10.3)(@jimp/plugin-blit@0.10.3)(@jimp/plugin-crop@0.10.3)(@jimp/plugin-resize@0.10.3) - '@jimp/utils': registry.npmmirror.com/@jimp/utils@0.10.3 - core-js: registry.npmmirror.com/core-js@3.32.1 - dev: false - - registry.npmmirror.com/@jimp/plugin-gaussian@0.10.3(@jimp/custom@0.10.3): - resolution: {integrity: sha512-25eHlFbHUDnMMGpgRBBeQ2AMI4wsqCg46sue0KklI+c2BaZ+dGXmJA5uT8RTOrt64/K9Wz5E+2n7eBnny4dfpQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/plugin-gaussian/-/plugin-gaussian-0.10.3.tgz} - id: registry.npmmirror.com/@jimp/plugin-gaussian/0.10.3 - name: '@jimp/plugin-gaussian' - version: 0.10.3 - peerDependencies: - '@jimp/custom': '>=0.3.5' - dependencies: - '@babel/runtime': registry.npmmirror.com/@babel/runtime@7.22.15 - '@jimp/custom': registry.npmmirror.com/@jimp/custom@0.10.3 - '@jimp/utils': registry.npmmirror.com/@jimp/utils@0.10.3 - core-js: registry.npmmirror.com/core-js@3.32.1 - dev: false - - registry.npmmirror.com/@jimp/plugin-invert@0.10.3(@jimp/custom@0.10.3): - resolution: {integrity: sha512-effYSApWY/FbtlzqsKXlTLkgloKUiHBKjkQnqh5RL4oQxh/33j6aX+HFdDyQKtsXb8CMd4xd7wyiD2YYabTa0g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/plugin-invert/-/plugin-invert-0.10.3.tgz} - id: registry.npmmirror.com/@jimp/plugin-invert/0.10.3 - name: '@jimp/plugin-invert' - version: 0.10.3 - peerDependencies: - '@jimp/custom': '>=0.3.5' - dependencies: - '@babel/runtime': registry.npmmirror.com/@babel/runtime@7.22.15 - '@jimp/custom': registry.npmmirror.com/@jimp/custom@0.10.3 - '@jimp/utils': registry.npmmirror.com/@jimp/utils@0.10.3 - core-js: registry.npmmirror.com/core-js@3.32.1 - dev: false - - registry.npmmirror.com/@jimp/plugin-mask@0.10.3(@jimp/custom@0.10.3): - resolution: {integrity: sha512-twrg8q8TIhM9Z6Jcu9/5f+OCAPaECb0eKrrbbIajJqJ3bCUlj5zbfgIhiQIzjPJ6KjpnFPSqHQfHkU1Vvk/nVw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/plugin-mask/-/plugin-mask-0.10.3.tgz} - id: registry.npmmirror.com/@jimp/plugin-mask/0.10.3 - name: '@jimp/plugin-mask' - version: 0.10.3 - peerDependencies: - '@jimp/custom': '>=0.3.5' - dependencies: - '@babel/runtime': registry.npmmirror.com/@babel/runtime@7.22.15 - '@jimp/custom': registry.npmmirror.com/@jimp/custom@0.10.3 - '@jimp/utils': registry.npmmirror.com/@jimp/utils@0.10.3 - core-js: registry.npmmirror.com/core-js@3.32.1 - dev: false - - registry.npmmirror.com/@jimp/plugin-normalize@0.10.3(@jimp/custom@0.10.3): - resolution: {integrity: sha512-xkb5eZI/mMlbwKkDN79+1/t/+DBo8bBXZUMsT4gkFgMRKNRZ6NQPxlv1d3QpRzlocsl6UMxrHnhgnXdLAcgrXw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/plugin-normalize/-/plugin-normalize-0.10.3.tgz} - id: registry.npmmirror.com/@jimp/plugin-normalize/0.10.3 - name: '@jimp/plugin-normalize' - version: 0.10.3 - peerDependencies: - '@jimp/custom': '>=0.3.5' - dependencies: - '@babel/runtime': registry.npmmirror.com/@babel/runtime@7.22.15 - '@jimp/custom': registry.npmmirror.com/@jimp/custom@0.10.3 - '@jimp/utils': registry.npmmirror.com/@jimp/utils@0.10.3 - core-js: registry.npmmirror.com/core-js@3.32.1 - dev: false - - registry.npmmirror.com/@jimp/plugin-print@0.10.3(@jimp/custom@0.10.3)(@jimp/plugin-blit@0.10.3): - resolution: {integrity: sha512-wjRiI6yjXsAgMe6kVjizP+RgleUCLkH256dskjoNvJzmzbEfO7xQw9g6M02VET+emnbY0CO83IkrGm2q43VRyg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/plugin-print/-/plugin-print-0.10.3.tgz} - id: registry.npmmirror.com/@jimp/plugin-print/0.10.3 - name: '@jimp/plugin-print' - version: 0.10.3 - peerDependencies: - '@jimp/custom': '>=0.3.5' - '@jimp/plugin-blit': '>=0.3.5' - dependencies: - '@babel/runtime': registry.npmmirror.com/@babel/runtime@7.22.15 - '@jimp/custom': registry.npmmirror.com/@jimp/custom@0.10.3 - '@jimp/plugin-blit': registry.npmmirror.com/@jimp/plugin-blit@0.10.3(@jimp/custom@0.10.3) - '@jimp/utils': registry.npmmirror.com/@jimp/utils@0.10.3 - core-js: registry.npmmirror.com/core-js@3.32.1 - load-bmfont: registry.npmmirror.com/load-bmfont@1.4.1 - dev: false - - registry.npmmirror.com/@jimp/plugin-resize@0.10.3(@jimp/custom@0.10.3): - resolution: {integrity: sha512-rf8YmEB1d7Sg+g4LpqF0Mp+dfXfb6JFJkwlAIWPUOR7lGsPWALavEwTW91c0etEdnp0+JB9AFpy6zqq7Lwkq6w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/plugin-resize/-/plugin-resize-0.10.3.tgz} - id: registry.npmmirror.com/@jimp/plugin-resize/0.10.3 - name: '@jimp/plugin-resize' - version: 0.10.3 - peerDependencies: - '@jimp/custom': '>=0.3.5' - dependencies: - '@babel/runtime': registry.npmmirror.com/@babel/runtime@7.22.15 - '@jimp/custom': registry.npmmirror.com/@jimp/custom@0.10.3 - '@jimp/utils': registry.npmmirror.com/@jimp/utils@0.10.3 - core-js: registry.npmmirror.com/core-js@3.32.1 - dev: false - - registry.npmmirror.com/@jimp/plugin-rotate@0.10.3(@jimp/custom@0.10.3)(@jimp/plugin-blit@0.10.3)(@jimp/plugin-crop@0.10.3)(@jimp/plugin-resize@0.10.3): - resolution: {integrity: sha512-YXLlRjm18fkW9MOHUaVAxWjvgZM851ofOipytz5FyKp4KZWDLk+dZK1JNmVmK7MyVmAzZ5jsgSLhIgj+GgN0Eg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/plugin-rotate/-/plugin-rotate-0.10.3.tgz} - id: registry.npmmirror.com/@jimp/plugin-rotate/0.10.3 - name: '@jimp/plugin-rotate' - version: 0.10.3 - peerDependencies: - '@jimp/custom': '>=0.3.5' - '@jimp/plugin-blit': '>=0.3.5' - '@jimp/plugin-crop': '>=0.3.5' - '@jimp/plugin-resize': '>=0.3.5' - dependencies: - '@babel/runtime': registry.npmmirror.com/@babel/runtime@7.22.15 - '@jimp/custom': registry.npmmirror.com/@jimp/custom@0.10.3 - '@jimp/plugin-blit': registry.npmmirror.com/@jimp/plugin-blit@0.10.3(@jimp/custom@0.10.3) - '@jimp/plugin-crop': registry.npmmirror.com/@jimp/plugin-crop@0.10.3(@jimp/custom@0.10.3) - '@jimp/plugin-resize': registry.npmmirror.com/@jimp/plugin-resize@0.10.3(@jimp/custom@0.10.3) - '@jimp/utils': registry.npmmirror.com/@jimp/utils@0.10.3 - core-js: registry.npmmirror.com/core-js@3.32.1 - dev: false - - registry.npmmirror.com/@jimp/plugin-scale@0.10.3(@jimp/custom@0.10.3)(@jimp/plugin-resize@0.10.3): - resolution: {integrity: sha512-5DXD7x7WVcX1gUgnlFXQa8F+Q3ThRYwJm+aesgrYvDOY+xzRoRSdQvhmdd4JEEue3lyX44DvBSgCIHPtGcEPaw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/plugin-scale/-/plugin-scale-0.10.3.tgz} - id: registry.npmmirror.com/@jimp/plugin-scale/0.10.3 - name: '@jimp/plugin-scale' - version: 0.10.3 - peerDependencies: - '@jimp/custom': '>=0.3.5' - '@jimp/plugin-resize': '>=0.3.5' - dependencies: - '@babel/runtime': registry.npmmirror.com/@babel/runtime@7.22.15 - '@jimp/custom': registry.npmmirror.com/@jimp/custom@0.10.3 - '@jimp/plugin-resize': registry.npmmirror.com/@jimp/plugin-resize@0.10.3(@jimp/custom@0.10.3) - '@jimp/utils': registry.npmmirror.com/@jimp/utils@0.10.3 - core-js: registry.npmmirror.com/core-js@3.32.1 - dev: false - - registry.npmmirror.com/@jimp/plugin-shadow@0.10.3(@jimp/custom@0.10.3)(@jimp/plugin-blur@0.10.3)(@jimp/plugin-resize@0.10.3): - resolution: {integrity: sha512-/nkFXpt2zVcdP4ETdkAUL0fSzyrC5ZFxdcphbYBodqD7fXNqChS/Un1eD4xCXWEpW8cnG9dixZgQgStjywH0Mg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/plugin-shadow/-/plugin-shadow-0.10.3.tgz} - id: registry.npmmirror.com/@jimp/plugin-shadow/0.10.3 - name: '@jimp/plugin-shadow' - version: 0.10.3 - peerDependencies: - '@jimp/custom': '>=0.3.5' - '@jimp/plugin-blur': '>=0.3.5' - '@jimp/plugin-resize': '>=0.3.5' - dependencies: - '@babel/runtime': registry.npmmirror.com/@babel/runtime@7.22.15 - '@jimp/custom': registry.npmmirror.com/@jimp/custom@0.10.3 - '@jimp/plugin-blur': registry.npmmirror.com/@jimp/plugin-blur@0.10.3(@jimp/custom@0.10.3) - '@jimp/plugin-resize': registry.npmmirror.com/@jimp/plugin-resize@0.10.3(@jimp/custom@0.10.3) - '@jimp/utils': registry.npmmirror.com/@jimp/utils@0.10.3 - core-js: registry.npmmirror.com/core-js@3.32.1 - dev: false - - registry.npmmirror.com/@jimp/plugin-threshold@0.10.3(@jimp/custom@0.10.3)(@jimp/plugin-color@0.10.3)(@jimp/plugin-resize@0.10.3): - resolution: {integrity: sha512-Dzh0Yq2wXP2SOnxcbbiyA4LJ2luwrdf1MghNIt9H+NX7B+IWw/N8qA2GuSm9n4BPGSLluuhdAWJqHcTiREriVA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/plugin-threshold/-/plugin-threshold-0.10.3.tgz} - id: registry.npmmirror.com/@jimp/plugin-threshold/0.10.3 - name: '@jimp/plugin-threshold' - version: 0.10.3 - peerDependencies: - '@jimp/custom': '>=0.3.5' - '@jimp/plugin-color': '>=0.8.0' - '@jimp/plugin-resize': '>=0.8.0' - dependencies: - '@babel/runtime': registry.npmmirror.com/@babel/runtime@7.22.15 - '@jimp/custom': registry.npmmirror.com/@jimp/custom@0.10.3 - '@jimp/plugin-color': registry.npmmirror.com/@jimp/plugin-color@0.10.3(@jimp/custom@0.10.3) - '@jimp/plugin-resize': registry.npmmirror.com/@jimp/plugin-resize@0.10.3(@jimp/custom@0.10.3) - '@jimp/utils': registry.npmmirror.com/@jimp/utils@0.10.3 - core-js: registry.npmmirror.com/core-js@3.32.1 - dev: false - - registry.npmmirror.com/@jimp/plugins@0.10.3(@jimp/custom@0.10.3): - resolution: {integrity: sha512-jTT3/7hOScf0EIKiAXmxwayHhryhc1wWuIe3FrchjDjr9wgIGNN2a7XwCgPl3fML17DXK1x8EzDneCdh261bkw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/plugins/-/plugins-0.10.3.tgz} - id: registry.npmmirror.com/@jimp/plugins/0.10.3 - name: '@jimp/plugins' - version: 0.10.3 - peerDependencies: - '@jimp/custom': '>=0.3.5' - dependencies: - '@babel/runtime': registry.npmmirror.com/@babel/runtime@7.22.15 - '@jimp/custom': registry.npmmirror.com/@jimp/custom@0.10.3 - '@jimp/plugin-blit': registry.npmmirror.com/@jimp/plugin-blit@0.10.3(@jimp/custom@0.10.3) - '@jimp/plugin-blur': registry.npmmirror.com/@jimp/plugin-blur@0.10.3(@jimp/custom@0.10.3) - '@jimp/plugin-circle': registry.npmmirror.com/@jimp/plugin-circle@0.10.3(@jimp/custom@0.10.3) - '@jimp/plugin-color': registry.npmmirror.com/@jimp/plugin-color@0.10.3(@jimp/custom@0.10.3) - '@jimp/plugin-contain': registry.npmmirror.com/@jimp/plugin-contain@0.10.3(@jimp/custom@0.10.3)(@jimp/plugin-blit@0.10.3)(@jimp/plugin-resize@0.10.3)(@jimp/plugin-scale@0.10.3) - '@jimp/plugin-cover': registry.npmmirror.com/@jimp/plugin-cover@0.10.3(@jimp/custom@0.10.3)(@jimp/plugin-crop@0.10.3)(@jimp/plugin-resize@0.10.3)(@jimp/plugin-scale@0.10.3) - '@jimp/plugin-crop': registry.npmmirror.com/@jimp/plugin-crop@0.10.3(@jimp/custom@0.10.3) - '@jimp/plugin-displace': registry.npmmirror.com/@jimp/plugin-displace@0.10.3(@jimp/custom@0.10.3) - '@jimp/plugin-dither': registry.npmmirror.com/@jimp/plugin-dither@0.10.3(@jimp/custom@0.10.3) - '@jimp/plugin-fisheye': registry.npmmirror.com/@jimp/plugin-fisheye@0.10.3(@jimp/custom@0.10.3) - '@jimp/plugin-flip': registry.npmmirror.com/@jimp/plugin-flip@0.10.3(@jimp/custom@0.10.3)(@jimp/plugin-rotate@0.10.3) - '@jimp/plugin-gaussian': registry.npmmirror.com/@jimp/plugin-gaussian@0.10.3(@jimp/custom@0.10.3) - '@jimp/plugin-invert': registry.npmmirror.com/@jimp/plugin-invert@0.10.3(@jimp/custom@0.10.3) - '@jimp/plugin-mask': registry.npmmirror.com/@jimp/plugin-mask@0.10.3(@jimp/custom@0.10.3) - '@jimp/plugin-normalize': registry.npmmirror.com/@jimp/plugin-normalize@0.10.3(@jimp/custom@0.10.3) - '@jimp/plugin-print': registry.npmmirror.com/@jimp/plugin-print@0.10.3(@jimp/custom@0.10.3)(@jimp/plugin-blit@0.10.3) - '@jimp/plugin-resize': registry.npmmirror.com/@jimp/plugin-resize@0.10.3(@jimp/custom@0.10.3) - '@jimp/plugin-rotate': registry.npmmirror.com/@jimp/plugin-rotate@0.10.3(@jimp/custom@0.10.3)(@jimp/plugin-blit@0.10.3)(@jimp/plugin-crop@0.10.3)(@jimp/plugin-resize@0.10.3) - '@jimp/plugin-scale': registry.npmmirror.com/@jimp/plugin-scale@0.10.3(@jimp/custom@0.10.3)(@jimp/plugin-resize@0.10.3) - '@jimp/plugin-shadow': registry.npmmirror.com/@jimp/plugin-shadow@0.10.3(@jimp/custom@0.10.3)(@jimp/plugin-blur@0.10.3)(@jimp/plugin-resize@0.10.3) - '@jimp/plugin-threshold': registry.npmmirror.com/@jimp/plugin-threshold@0.10.3(@jimp/custom@0.10.3)(@jimp/plugin-color@0.10.3)(@jimp/plugin-resize@0.10.3) - core-js: registry.npmmirror.com/core-js@3.32.1 - timm: registry.npmmirror.com/timm@1.7.1 - dev: false - - registry.npmmirror.com/@jimp/png@0.10.3(@jimp/custom@0.10.3): - resolution: {integrity: sha512-YKqk/dkl+nGZxSYIDQrqhmaP8tC3IK8H7dFPnnzFVvbhDnyYunqBZZO3SaZUKTichClRw8k/CjBhbc+hifSGWg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/png/-/png-0.10.3.tgz} - id: registry.npmmirror.com/@jimp/png/0.10.3 - name: '@jimp/png' - version: 0.10.3 - peerDependencies: - '@jimp/custom': '>=0.3.5' - dependencies: - '@babel/runtime': registry.npmmirror.com/@babel/runtime@7.22.15 - '@jimp/custom': registry.npmmirror.com/@jimp/custom@0.10.3 - '@jimp/utils': registry.npmmirror.com/@jimp/utils@0.10.3 - core-js: registry.npmmirror.com/core-js@3.32.1 - pngjs: registry.npmmirror.com/pngjs@3.4.0 - dev: false - - registry.npmmirror.com/@jimp/tiff@0.10.3(@jimp/custom@0.10.3): - resolution: {integrity: sha512-7EsJzZ5Y/EtinkBGuwX3Bi4S+zgbKouxjt9c82VJTRJOQgLWsE/RHqcyRCOQBhHAZ9QexYmDz34medfLKdoX0g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/tiff/-/tiff-0.10.3.tgz} - id: registry.npmmirror.com/@jimp/tiff/0.10.3 - name: '@jimp/tiff' - version: 0.10.3 - peerDependencies: - '@jimp/custom': '>=0.3.5' - dependencies: - '@babel/runtime': registry.npmmirror.com/@babel/runtime@7.22.15 - '@jimp/custom': registry.npmmirror.com/@jimp/custom@0.10.3 - core-js: registry.npmmirror.com/core-js@3.32.1 - utif: registry.npmmirror.com/utif@2.0.1 - dev: false - - registry.npmmirror.com/@jimp/types@0.10.3(@jimp/custom@0.10.3): - resolution: {integrity: sha512-XGmBakiHZqseSWr/puGN+CHzx0IKBSpsKlmEmsNV96HKDiP6eu8NSnwdGCEq2mmIHe0JNcg1hqg59hpwtQ7Tiw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/types/-/types-0.10.3.tgz} - id: registry.npmmirror.com/@jimp/types/0.10.3 - name: '@jimp/types' - version: 0.10.3 - peerDependencies: - '@jimp/custom': '>=0.3.5' - dependencies: - '@babel/runtime': registry.npmmirror.com/@babel/runtime@7.22.15 - '@jimp/bmp': registry.npmmirror.com/@jimp/bmp@0.10.3(@jimp/custom@0.10.3) - '@jimp/custom': registry.npmmirror.com/@jimp/custom@0.10.3 - '@jimp/gif': registry.npmmirror.com/@jimp/gif@0.10.3(@jimp/custom@0.10.3) - '@jimp/jpeg': registry.npmmirror.com/@jimp/jpeg@0.10.3(@jimp/custom@0.10.3) - '@jimp/png': registry.npmmirror.com/@jimp/png@0.10.3(@jimp/custom@0.10.3) - '@jimp/tiff': registry.npmmirror.com/@jimp/tiff@0.10.3(@jimp/custom@0.10.3) - core-js: registry.npmmirror.com/core-js@3.32.1 - timm: registry.npmmirror.com/timm@1.7.1 - dev: false - - registry.npmmirror.com/@jimp/utils@0.10.3: - resolution: {integrity: sha512-VcSlQhkil4ReYmg1KkN+WqHyYfZ2XfZxDsKAHSfST1GEz/RQHxKZbX+KhFKtKflnL0F4e6DlNQj3vznMNXCR2w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/utils/-/utils-0.10.3.tgz} - name: '@jimp/utils' - version: 0.10.3 - dependencies: - '@babel/runtime': registry.npmmirror.com/@babel/runtime@7.22.15 - core-js: registry.npmmirror.com/core-js@3.32.1 - regenerator-runtime: registry.npmmirror.com/regenerator-runtime@0.13.11 - dev: false - - registry.npmmirror.com/@jridgewell/gen-mapping@0.3.3: - resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz} - name: '@jridgewell/gen-mapping' - version: 0.3.3 - engines: {node: '>=6.0.0'} - dependencies: - '@jridgewell/set-array': registry.npmmirror.com/@jridgewell/set-array@1.1.2 - '@jridgewell/sourcemap-codec': registry.npmmirror.com/@jridgewell/sourcemap-codec@1.4.15 - '@jridgewell/trace-mapping': registry.npmmirror.com/@jridgewell/trace-mapping@0.3.19 - - registry.npmmirror.com/@jridgewell/resolve-uri@3.1.1: - resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz} - name: '@jridgewell/resolve-uri' - version: 3.1.1 - engines: {node: '>=6.0.0'} - - registry.npmmirror.com/@jridgewell/set-array@1.1.2: - resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/set-array/-/set-array-1.1.2.tgz} - name: '@jridgewell/set-array' - version: 1.1.2 - engines: {node: '>=6.0.0'} - - registry.npmmirror.com/@jridgewell/source-map@0.3.5: - resolution: {integrity: sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/source-map/-/source-map-0.3.5.tgz} - name: '@jridgewell/source-map' - version: 0.3.5 - dependencies: - '@jridgewell/gen-mapping': registry.npmmirror.com/@jridgewell/gen-mapping@0.3.3 - '@jridgewell/trace-mapping': registry.npmmirror.com/@jridgewell/trace-mapping@0.3.19 - - registry.npmmirror.com/@jridgewell/sourcemap-codec@1.4.15: - resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz} - name: '@jridgewell/sourcemap-codec' - version: 1.4.15 - - registry.npmmirror.com/@jridgewell/trace-mapping@0.3.19: - resolution: {integrity: sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz} - name: '@jridgewell/trace-mapping' - version: 0.3.19 - dependencies: - '@jridgewell/resolve-uri': registry.npmmirror.com/@jridgewell/resolve-uri@3.1.1 - '@jridgewell/sourcemap-codec': registry.npmmirror.com/@jridgewell/sourcemap-codec@1.4.15 - - 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} - name: '@nodelib/fs.scandir' - version: 2.1.5 - 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} - name: '@nodelib/fs.stat' - version: 2.0.5 - 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} - name: '@nodelib/fs.walk' - version: 1.2.8 - engines: {node: '>= 8'} - dependencies: - '@nodelib/fs.scandir': registry.npmmirror.com/@nodelib/fs.scandir@2.1.5 - fastq: registry.npmmirror.com/fastq@1.15.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} - name: '@rollup/pluginutils' - version: 4.2.1 - 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/@sinonjs/commons@1.8.6: - resolution: {integrity: sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@sinonjs/commons/-/commons-1.8.6.tgz} - name: '@sinonjs/commons' - version: 1.8.6 - dependencies: - type-detect: registry.npmmirror.com/type-detect@4.0.8 - dev: true - - registry.npmmirror.com/@sinonjs/fake-timers@8.1.0: - resolution: {integrity: sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz} - name: '@sinonjs/fake-timers' - version: 8.1.0 - dependencies: - '@sinonjs/commons': registry.npmmirror.com/@sinonjs/commons@1.8.6 - dev: true - - registry.npmmirror.com/@tootallnate/once@1.1.2: - resolution: {integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@tootallnate/once/-/once-1.1.2.tgz} - name: '@tootallnate/once' - version: 1.1.2 - engines: {node: '>= 6'} - dev: true - - registry.npmmirror.com/@types/babel__core@7.20.1: - resolution: {integrity: sha512-aACu/U/omhdk15O4Nfb+fHgH/z3QsfQzpnvRZhYhThms83ZnAOZz7zZAWO7mn2yyNQaA4xTO8GLK3uqFU4bYYw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/babel__core/-/babel__core-7.20.1.tgz} - name: '@types/babel__core' - version: 7.20.1 - dependencies: - '@babel/parser': registry.npmmirror.com/@babel/parser@7.22.15 - '@babel/types': registry.npmmirror.com/@babel/types@7.22.15 - '@types/babel__generator': registry.npmmirror.com/@types/babel__generator@7.6.4 - '@types/babel__template': registry.npmmirror.com/@types/babel__template@7.4.1 - '@types/babel__traverse': registry.npmmirror.com/@types/babel__traverse@7.20.1 - dev: true - - registry.npmmirror.com/@types/babel__generator@7.6.4: - resolution: {integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/babel__generator/-/babel__generator-7.6.4.tgz} - name: '@types/babel__generator' - version: 7.6.4 - dependencies: - '@babel/types': registry.npmmirror.com/@babel/types@7.22.15 - dev: true - - registry.npmmirror.com/@types/babel__template@7.4.1: - resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/babel__template/-/babel__template-7.4.1.tgz} - name: '@types/babel__template' - version: 7.4.1 - dependencies: - '@babel/parser': registry.npmmirror.com/@babel/parser@7.22.15 - '@babel/types': registry.npmmirror.com/@babel/types@7.22.15 - dev: true - - registry.npmmirror.com/@types/babel__traverse@7.20.1: - resolution: {integrity: sha512-MitHFXnhtgwsGZWtT68URpOvLN4EREih1u3QtQiN4VdAxWKRVvGCSvw/Qth0M0Qq3pJpnGOu5JaM/ydK7OGbqg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/babel__traverse/-/babel__traverse-7.20.1.tgz} - name: '@types/babel__traverse' - version: 7.20.1 - dependencies: - '@babel/types': registry.npmmirror.com/@babel/types@7.22.15 - dev: true - - registry.npmmirror.com/@types/graceful-fs@4.1.6: - resolution: {integrity: sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/graceful-fs/-/graceful-fs-4.1.6.tgz} - name: '@types/graceful-fs' - version: 4.1.6 - dependencies: - '@types/node': registry.npmmirror.com/@types/node@20.5.9 - dev: true - - registry.npmmirror.com/@types/istanbul-lib-coverage@2.0.4: - resolution: {integrity: sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz} - name: '@types/istanbul-lib-coverage' - version: 2.0.4 - dev: true - - registry.npmmirror.com/@types/istanbul-lib-report@3.0.0: - resolution: {integrity: sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz} - name: '@types/istanbul-lib-report' - version: 3.0.0 - dependencies: - '@types/istanbul-lib-coverage': registry.npmmirror.com/@types/istanbul-lib-coverage@2.0.4 - dev: true - - registry.npmmirror.com/@types/istanbul-reports@3.0.1: - resolution: {integrity: sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz} - name: '@types/istanbul-reports' - version: 3.0.1 - dependencies: - '@types/istanbul-lib-report': registry.npmmirror.com/@types/istanbul-lib-report@3.0.0 - dev: true - - registry.npmmirror.com/@types/node@20.5.9: - resolution: {integrity: sha512-PcGNd//40kHAS3sTlzKB9C9XL4K0sTup8nbG5lC14kzEteTNuAFh9u5nA0o5TWnSG2r/JNPRXFVcHJIIeRlmqQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/node/-/node-20.5.9.tgz} - name: '@types/node' - version: 20.5.9 - dev: true - - registry.npmmirror.com/@types/prettier@2.7.3: - resolution: {integrity: sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/prettier/-/prettier-2.7.3.tgz} - name: '@types/prettier' - version: 2.7.3 - dev: true - - registry.npmmirror.com/@types/stack-utils@2.0.1: - resolution: {integrity: sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/stack-utils/-/stack-utils-2.0.1.tgz} - name: '@types/stack-utils' - version: 2.0.1 - dev: true - - registry.npmmirror.com/@types/yargs-parser@21.0.0: - resolution: {integrity: sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/yargs-parser/-/yargs-parser-21.0.0.tgz} - name: '@types/yargs-parser' - version: 21.0.0 - dev: true - - registry.npmmirror.com/@types/yargs@16.0.5: - resolution: {integrity: sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/yargs/-/yargs-16.0.5.tgz} - name: '@types/yargs' - version: 16.0.5 - dependencies: - '@types/yargs-parser': registry.npmmirror.com/@types/yargs-parser@21.0.0 - dev: true - - registry.npmmirror.com/@vitejs/plugin-legacy@4.1.1(terser@5.19.4)(vite@4.0.0): - resolution: {integrity: sha512-um3gbVouD2Q/g19C0qpDfHwveXDCAHzs8OC3e9g6aXpKoD1H14himgs7wkMnhAynBJy7QqUoZNAXDuqN8zLR2g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vitejs/plugin-legacy/-/plugin-legacy-4.1.1.tgz} - id: registry.npmmirror.com/@vitejs/plugin-legacy/4.1.1 - name: '@vitejs/plugin-legacy' - version: 4.1.1 - engines: {node: ^14.18.0 || >=16.0.0} - peerDependencies: - terser: ^5.4.0 - vite: ^4.0.0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/preset-env': registry.npmmirror.com/@babel/preset-env@7.22.15(@babel/core@7.22.15) - browserslist: registry.npmmirror.com/browserslist@4.21.10 - core-js: registry.npmmirror.com/core-js@3.32.1 - magic-string: registry.npmmirror.com/magic-string@0.30.3 - regenerator-runtime: registry.npmmirror.com/regenerator-runtime@0.13.11 - systemjs: registry.npmmirror.com/systemjs@6.14.2 - terser: registry.npmmirror.com/terser@5.19.4 - vite: registry.npmmirror.com/vite@4.0.0(sass@1.66.1)(terser@5.19.4) - transitivePeerDependencies: - - supports-color - dev: true - - registry.npmmirror.com/@vitejs/plugin-vue-jsx@3.0.2(vite@4.0.0)(vue@3.2.45): - resolution: {integrity: sha512-obF26P2Z4Ogy3cPp07B4VaW6rpiu0ue4OT2Y15UxT5BZZ76haUY9guOsZV3uWh/I6xc+VeiW+ZVabRE82FyzWw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vitejs/plugin-vue-jsx/-/plugin-vue-jsx-3.0.2.tgz} - id: registry.npmmirror.com/@vitejs/plugin-vue-jsx/3.0.2 - name: '@vitejs/plugin-vue-jsx' - version: 3.0.2 - engines: {node: ^14.18.0 || >=16.0.0} - peerDependencies: - vite: ^4.0.0 - vue: ^3.0.0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/plugin-transform-typescript': registry.npmmirror.com/@babel/plugin-transform-typescript@7.22.15(@babel/core@7.22.15) - '@vue/babel-plugin-jsx': registry.npmmirror.com/@vue/babel-plugin-jsx@1.1.5(@babel/core@7.22.15) - vite: registry.npmmirror.com/vite@4.0.0(sass@1.66.1)(terser@5.19.4) - vue: registry.npmmirror.com/vue@3.2.45 - transitivePeerDependencies: - - supports-color - dev: true - - registry.npmmirror.com/@vitejs/plugin-vue@4.3.4(vite@4.0.0)(vue@3.2.45): - resolution: {integrity: sha512-ciXNIHKPriERBisHFBvnTbfKa6r9SAesOYXeGDzgegcvy9Q4xdScSHAmKbNT0M3O0S9LKhIf5/G+UYG4NnnzYw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vitejs/plugin-vue/-/plugin-vue-4.3.4.tgz} - id: registry.npmmirror.com/@vitejs/plugin-vue/4.3.4 - name: '@vitejs/plugin-vue' - version: 4.3.4 - engines: {node: ^14.18.0 || >=16.0.0} - peerDependencies: - vite: ^4.0.0 - vue: ^3.2.25 - dependencies: - vite: registry.npmmirror.com/vite@4.0.0(sass@1.66.1)(terser@5.19.4) - vue: registry.npmmirror.com/vue@3.2.45 - - registry.npmmirror.com/@vue/babel-helper-vue-transform-on@1.1.5: - resolution: {integrity: sha512-SgUymFpMoAyWeYWLAY+MkCK3QEROsiUnfaw5zxOVD/M64KQs8D/4oK6Q5omVA2hnvEOE0SCkH2TZxs/jnnUj7w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/babel-helper-vue-transform-on/-/babel-helper-vue-transform-on-1.1.5.tgz} - name: '@vue/babel-helper-vue-transform-on' - version: 1.1.5 - dev: true - - registry.npmmirror.com/@vue/babel-plugin-jsx@1.1.5(@babel/core@7.22.15): - resolution: {integrity: sha512-nKs1/Bg9U1n3qSWnsHhCVQtAzI6aQXqua8j/bZrau8ywT1ilXQbK4FwEJGmU8fV7tcpuFvWmmN7TMmV1OBma1g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/babel-plugin-jsx/-/babel-plugin-jsx-1.1.5.tgz} - id: registry.npmmirror.com/@vue/babel-plugin-jsx/1.1.5 - name: '@vue/babel-plugin-jsx' - version: 1.1.5 - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-module-imports': registry.npmmirror.com/@babel/helper-module-imports@7.22.15 - '@babel/plugin-syntax-jsx': registry.npmmirror.com/@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.22.15) - '@babel/template': registry.npmmirror.com/@babel/template@7.22.15 - '@babel/traverse': registry.npmmirror.com/@babel/traverse@7.22.15 - '@babel/types': registry.npmmirror.com/@babel/types@7.22.15 - '@vue/babel-helper-vue-transform-on': registry.npmmirror.com/@vue/babel-helper-vue-transform-on@1.1.5 - camelcase: registry.npmmirror.com/camelcase@6.3.0 - html-tags: registry.npmmirror.com/html-tags@3.3.1 - svg-tags: registry.npmmirror.com/svg-tags@1.0.0 - transitivePeerDependencies: - - supports-color - dev: true - - registry.npmmirror.com/@vue/compiler-core@3.2.45: - resolution: {integrity: sha512-rcMj7H+PYe5wBV3iYeUgbCglC+pbpN8hBLTJvRiK2eKQiWqu+fG9F+8sW99JdL4LQi7Re178UOxn09puSXvn4A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.2.45.tgz} - name: '@vue/compiler-core' - version: 3.2.45 - dependencies: - '@babel/parser': registry.npmmirror.com/@babel/parser@7.22.15 - '@vue/shared': registry.npmmirror.com/@vue/shared@3.2.45 - estree-walker: registry.npmmirror.com/estree-walker@2.0.2 - source-map: registry.npmmirror.com/source-map@0.6.1 - - registry.npmmirror.com/@vue/compiler-core@3.2.47: - resolution: {integrity: sha512-p4D7FDnQb7+YJmO2iPEv0SQNeNzcbHdGByJDsT4lynf63AFkOTFN07HsiRSvjGo0QrxR/o3d0hUyNCUnBU2Tig==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.2.47.tgz} - name: '@vue/compiler-core' - version: 3.2.47 - dependencies: - '@babel/parser': registry.npmmirror.com/@babel/parser@7.22.15 - '@vue/shared': registry.npmmirror.com/@vue/shared@3.2.47 - estree-walker: registry.npmmirror.com/estree-walker@2.0.2 - source-map: registry.npmmirror.com/source-map@0.6.1 - - registry.npmmirror.com/@vue/compiler-dom@3.2.45: - resolution: {integrity: sha512-tyYeUEuKqqZO137WrZkpwfPCdiiIeXYCcJ8L4gWz9vqaxzIQRccTSwSWZ/Axx5YR2z+LvpUbmPNXxuBU45lyRw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.2.45.tgz} - name: '@vue/compiler-dom' - version: 3.2.45 - dependencies: - '@vue/compiler-core': registry.npmmirror.com/@vue/compiler-core@3.2.45 - '@vue/shared': registry.npmmirror.com/@vue/shared@3.2.45 - - registry.npmmirror.com/@vue/compiler-dom@3.2.47: - resolution: {integrity: sha512-dBBnEHEPoftUiS03a4ggEig74J2YBZ2UIeyfpcRM2tavgMWo4bsEfgCGsu+uJIL/vax9S+JztH8NmQerUo7shQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.2.47.tgz} - name: '@vue/compiler-dom' - version: 3.2.47 - dependencies: - '@vue/compiler-core': registry.npmmirror.com/@vue/compiler-core@3.2.47 - '@vue/shared': registry.npmmirror.com/@vue/shared@3.2.47 - - registry.npmmirror.com/@vue/compiler-sfc@3.2.45: - resolution: {integrity: sha512-1jXDuWah1ggsnSAOGsec8cFjT/K6TMZ0sPL3o3d84Ft2AYZi2jWJgRMjw4iaK0rBfA89L5gw427H4n1RZQBu6Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/compiler-sfc/-/compiler-sfc-3.2.45.tgz} - name: '@vue/compiler-sfc' - version: 3.2.45 - dependencies: - '@babel/parser': registry.npmmirror.com/@babel/parser@7.22.15 - '@vue/compiler-core': registry.npmmirror.com/@vue/compiler-core@3.2.45 - '@vue/compiler-dom': registry.npmmirror.com/@vue/compiler-dom@3.2.45 - '@vue/compiler-ssr': registry.npmmirror.com/@vue/compiler-ssr@3.2.45 - '@vue/reactivity-transform': registry.npmmirror.com/@vue/reactivity-transform@3.2.45 - '@vue/shared': registry.npmmirror.com/@vue/shared@3.2.45 - estree-walker: registry.npmmirror.com/estree-walker@2.0.2 - magic-string: registry.npmmirror.com/magic-string@0.25.9 - postcss: registry.npmmirror.com/postcss@8.4.29 - source-map: registry.npmmirror.com/source-map@0.6.1 - - registry.npmmirror.com/@vue/compiler-sfc@3.2.47: - resolution: {integrity: sha512-rog05W+2IFfxjMcFw10tM9+f7i/+FFpZJJ5XHX72NP9eC2uRD+42M3pYcQqDXVYoj74kHMSEdQ/WmCjt8JFksQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/compiler-sfc/-/compiler-sfc-3.2.47.tgz} - name: '@vue/compiler-sfc' - version: 3.2.47 - dependencies: - '@babel/parser': registry.npmmirror.com/@babel/parser@7.22.15 - '@vue/compiler-core': registry.npmmirror.com/@vue/compiler-core@3.2.47 - '@vue/compiler-dom': registry.npmmirror.com/@vue/compiler-dom@3.2.47 - '@vue/compiler-ssr': registry.npmmirror.com/@vue/compiler-ssr@3.2.47 - '@vue/reactivity-transform': registry.npmmirror.com/@vue/reactivity-transform@3.2.47 - '@vue/shared': registry.npmmirror.com/@vue/shared@3.2.47 - estree-walker: registry.npmmirror.com/estree-walker@2.0.2 - magic-string: registry.npmmirror.com/magic-string@0.25.9 - postcss: registry.npmmirror.com/postcss@8.4.29 - source-map: registry.npmmirror.com/source-map@0.6.1 - - registry.npmmirror.com/@vue/compiler-ssr@3.2.45: - resolution: {integrity: sha512-6BRaggEGqhWht3lt24CrIbQSRD5O07MTmd+LjAn5fJj568+R9eUD2F7wMQJjX859seSlrYog7sUtrZSd7feqrQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.2.45.tgz} - name: '@vue/compiler-ssr' - version: 3.2.45 - dependencies: - '@vue/compiler-dom': registry.npmmirror.com/@vue/compiler-dom@3.2.45 - '@vue/shared': registry.npmmirror.com/@vue/shared@3.2.45 - - registry.npmmirror.com/@vue/compiler-ssr@3.2.47: - resolution: {integrity: sha512-wVXC+gszhulcMD8wpxMsqSOpvDZ6xKXSVWkf50Guf/S+28hTAXPDYRTbLQ3EDkOP5Xz/+SY37YiwDquKbJOgZw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.2.47.tgz} - name: '@vue/compiler-ssr' - version: 3.2.47 - dependencies: - '@vue/compiler-dom': registry.npmmirror.com/@vue/compiler-dom@3.2.47 - '@vue/shared': registry.npmmirror.com/@vue/shared@3.2.47 - - registry.npmmirror.com/@vue/devtools-api@6.5.0: - resolution: {integrity: sha512-o9KfBeaBmCKl10usN4crU53fYtC1r7jJwdGKjPT24t348rHxgfpZ0xL3Xm/gLUYnc0oTp8LAmrxOeLyu6tbk2Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/devtools-api/-/devtools-api-6.5.0.tgz} - name: '@vue/devtools-api' - version: 6.5.0 - dev: false - - registry.npmmirror.com/@vue/reactivity-transform@3.2.45: - resolution: {integrity: sha512-BHVmzYAvM7vcU5WmuYqXpwaBHjsS8T63jlKGWVtHxAHIoMIlmaMyurUSEs1Zcg46M4AYT5MtB1U274/2aNzjJQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/reactivity-transform/-/reactivity-transform-3.2.45.tgz} - name: '@vue/reactivity-transform' - version: 3.2.45 - dependencies: - '@babel/parser': registry.npmmirror.com/@babel/parser@7.22.15 - '@vue/compiler-core': registry.npmmirror.com/@vue/compiler-core@3.2.45 - '@vue/shared': registry.npmmirror.com/@vue/shared@3.2.45 - estree-walker: registry.npmmirror.com/estree-walker@2.0.2 - magic-string: registry.npmmirror.com/magic-string@0.25.9 - - registry.npmmirror.com/@vue/reactivity-transform@3.2.47: - resolution: {integrity: sha512-m8lGXw8rdnPVVIdIFhf0LeQ/ixyHkH5plYuS83yop5n7ggVJU+z5v0zecwEnX7fa7HNLBhh2qngJJkxpwEEmYA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/reactivity-transform/-/reactivity-transform-3.2.47.tgz} - name: '@vue/reactivity-transform' - version: 3.2.47 - dependencies: - '@babel/parser': registry.npmmirror.com/@babel/parser@7.22.15 - '@vue/compiler-core': registry.npmmirror.com/@vue/compiler-core@3.2.47 - '@vue/shared': registry.npmmirror.com/@vue/shared@3.2.47 - estree-walker: registry.npmmirror.com/estree-walker@2.0.2 - magic-string: registry.npmmirror.com/magic-string@0.25.9 - - registry.npmmirror.com/@vue/reactivity@3.2.45: - resolution: {integrity: sha512-PRvhCcQcyEVohW0P8iQ7HDcIOXRjZfAsOds3N99X/Dzewy8TVhTCT4uXpAHfoKjVTJRA0O0K+6QNkDIZAxNi3A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/reactivity/-/reactivity-3.2.45.tgz} - name: '@vue/reactivity' - version: 3.2.45 - dependencies: - '@vue/shared': registry.npmmirror.com/@vue/shared@3.2.45 - - registry.npmmirror.com/@vue/runtime-core@3.2.45: - resolution: {integrity: sha512-gzJiTA3f74cgARptqzYswmoQx0fIA+gGYBfokYVhF8YSXjWTUA2SngRzZRku2HbGbjzB6LBYSbKGIaK8IW+s0A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/runtime-core/-/runtime-core-3.2.45.tgz} - name: '@vue/runtime-core' - version: 3.2.45 - dependencies: - '@vue/reactivity': registry.npmmirror.com/@vue/reactivity@3.2.45 - '@vue/shared': registry.npmmirror.com/@vue/shared@3.2.45 - - registry.npmmirror.com/@vue/runtime-dom@3.2.45: - resolution: {integrity: sha512-cy88YpfP5Ue2bDBbj75Cb4bIEZUMM/mAkDMfqDTpUYVgTf/kuQ2VQ8LebuZ8k6EudgH8pYhsGWHlY0lcxlvTwA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/runtime-dom/-/runtime-dom-3.2.45.tgz} - name: '@vue/runtime-dom' - version: 3.2.45 - dependencies: - '@vue/runtime-core': registry.npmmirror.com/@vue/runtime-core@3.2.45 - '@vue/shared': registry.npmmirror.com/@vue/shared@3.2.45 - csstype: registry.npmmirror.com/csstype@2.6.21 - - registry.npmmirror.com/@vue/server-renderer@3.2.45(vue@3.2.45): - resolution: {integrity: sha512-ebiMq7q24WBU1D6uhPK//2OTR1iRIyxjF5iVq/1a5I1SDMDyDu4Ts6fJaMnjrvD3MqnaiFkKQj+LKAgz5WIK3g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/server-renderer/-/server-renderer-3.2.45.tgz} - id: registry.npmmirror.com/@vue/server-renderer/3.2.45 - name: '@vue/server-renderer' - version: 3.2.45 - peerDependencies: - vue: 3.2.45 - dependencies: - '@vue/compiler-ssr': registry.npmmirror.com/@vue/compiler-ssr@3.2.45 - '@vue/shared': registry.npmmirror.com/@vue/shared@3.2.45 - vue: registry.npmmirror.com/vue@3.2.45 - - registry.npmmirror.com/@vue/server-renderer@3.2.47(vue@3.2.45): - resolution: {integrity: sha512-dN9gc1i8EvmP9RCzvneONXsKfBRgqFeFZLurmHOveL7oH6HiFXJw5OGu294n1nHc/HMgTy6LulU/tv5/A7f/LA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/server-renderer/-/server-renderer-3.2.47.tgz} - id: registry.npmmirror.com/@vue/server-renderer/3.2.47 - name: '@vue/server-renderer' - version: 3.2.47 - peerDependencies: - vue: 3.2.47 - dependencies: - '@vue/compiler-ssr': registry.npmmirror.com/@vue/compiler-ssr@3.2.47 - '@vue/shared': registry.npmmirror.com/@vue/shared@3.2.47 - vue: registry.npmmirror.com/vue@3.2.45 - - registry.npmmirror.com/@vue/shared@3.2.45: - resolution: {integrity: sha512-Ewzq5Yhimg7pSztDV+RH1UDKBzmtqieXQlpTVm2AwraoRL/Rks96mvd8Vgi7Lj+h+TH8dv7mXD3FRZR3TUvbSg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/shared/-/shared-3.2.45.tgz} - name: '@vue/shared' - version: 3.2.45 - - registry.npmmirror.com/@vue/shared@3.2.47: - resolution: {integrity: sha512-BHGyyGN3Q97EZx0taMQ+OLNuZcW3d37ZEVmEAyeoA9ERdGvm9Irc/0Fua8SNyOtV1w6BS4q25wbMzJujO9HIfQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/shared/-/shared-3.2.47.tgz} - name: '@vue/shared' - version: 3.2.47 - - registry.npmmirror.com/abab@2.0.6: - resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/abab/-/abab-2.0.6.tgz} - name: abab - version: 2.0.6 - 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} - name: accepts - version: 1.3.8 - 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-globals@6.0.0: - resolution: {integrity: sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/acorn-globals/-/acorn-globals-6.0.0.tgz} - name: acorn-globals - version: 6.0.0 - dependencies: - acorn: registry.npmmirror.com/acorn@7.4.1 - acorn-walk: registry.npmmirror.com/acorn-walk@7.2.0 - dev: true - - registry.npmmirror.com/acorn-walk@7.2.0: - resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/acorn-walk/-/acorn-walk-7.2.0.tgz} - name: acorn-walk - version: 7.2.0 - engines: {node: '>=0.4.0'} - dev: true - - registry.npmmirror.com/acorn@7.4.1: - resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/acorn/-/acorn-7.4.1.tgz} - name: acorn - version: 7.4.1 - engines: {node: '>=0.4.0'} - hasBin: true - dev: true - - registry.npmmirror.com/acorn@8.10.0: - resolution: {integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/acorn/-/acorn-8.10.0.tgz} - name: acorn - version: 8.10.0 - engines: {node: '>=0.4.0'} - hasBin: true - - registry.npmmirror.com/address@1.2.2: - resolution: {integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/address/-/address-1.2.2.tgz} - name: address - version: 1.2.2 - engines: {node: '>= 10.0.0'} - dev: true - - registry.npmmirror.com/agent-base@6.0.2: - resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/agent-base/-/agent-base-6.0.2.tgz} - name: agent-base - version: 6.0.2 - engines: {node: '>= 6.0.0'} - dependencies: - debug: registry.npmmirror.com/debug@4.3.4 - transitivePeerDependencies: - - supports-color - dev: true - - registry.npmmirror.com/ansi-escapes@4.3.2: - resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz} - name: ansi-escapes - version: 4.3.2 - engines: {node: '>=8'} - dependencies: - type-fest: registry.npmmirror.com/type-fest@0.21.3 - dev: true - - registry.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} - name: ansi-styles - version: 3.2.1 - 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/ansi-styles@5.2.0: - resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ansi-styles/-/ansi-styles-5.2.0.tgz} - name: ansi-styles - version: 5.2.0 - engines: {node: '>=10'} - dev: true - - registry.npmmirror.com/any-base@1.1.0: - resolution: {integrity: sha512-uMgjozySS8adZZYePpaWs8cxB9/kdzmpX6SgJZ+wbz1K5eYk5QMYDVJaZKhxyIHUdnnJkfR7SVgStgH7LkGUyg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/any-base/-/any-base-1.1.0.tgz} - name: any-base - version: 1.1.0 - dev: false - - registry.npmmirror.com/anymatch@3.1.3: - resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/anymatch/-/anymatch-3.1.3.tgz} - name: anymatch - version: 3.1.3 - 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@1.0.10: - resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/argparse/-/argparse-1.0.10.tgz} - name: argparse - version: 1.0.10 - dependencies: - sprintf-js: registry.npmmirror.com/sprintf-js@1.0.3 - 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} - name: array-flatten - version: 1.1.1 - dev: true - - registry.npmmirror.com/asynckit@0.4.0: - resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/asynckit/-/asynckit-0.4.0.tgz} - name: asynckit - version: 0.4.0 - - registry.npmmirror.com/autoprefixer@10.4.15(postcss@8.4.29): - resolution: {integrity: sha512-KCuPB8ZCIqFdA4HwKXsvz7j6gvSDNhDP7WnUjBleRkKjPdvCmHFuQ77ocavI8FT6NdvlBnE2UFr2H4Mycn8Vew==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/autoprefixer/-/autoprefixer-10.4.15.tgz} - id: registry.npmmirror.com/autoprefixer/10.4.15 - name: autoprefixer - version: 10.4.15 - engines: {node: ^10 || ^12 || >=14} - hasBin: true - peerDependencies: - postcss: ^8.1.0 - dependencies: - browserslist: registry.npmmirror.com/browserslist@4.21.10 - caniuse-lite: registry.npmmirror.com/caniuse-lite@1.0.30001527 - fraction.js: registry.npmmirror.com/fraction.js@4.3.6 - normalize-range: registry.npmmirror.com/normalize-range@0.1.2 - picocolors: registry.npmmirror.com/picocolors@1.0.0 - postcss: registry.npmmirror.com/postcss@8.4.29 - postcss-value-parser: registry.npmmirror.com/postcss-value-parser@4.2.0 - - registry.npmmirror.com/axios@1.5.0: - resolution: {integrity: sha512-D4DdjDo5CY50Qms0qGQTTw6Q44jl7zRwY7bthds06pUGfChBCTcQs+N743eFWGEd6pRTMd6A+I87aWyFV5wiZQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/axios/-/axios-1.5.0.tgz} - name: axios - version: 1.5.0 - dependencies: - follow-redirects: registry.npmmirror.com/follow-redirects@1.15.3 - form-data: registry.npmmirror.com/form-data@4.0.0 - proxy-from-env: registry.npmmirror.com/proxy-from-env@1.1.0 - transitivePeerDependencies: - - debug - dev: false - - registry.npmmirror.com/babel-jest@27.5.1(@babel/core@7.22.15): - resolution: {integrity: sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/babel-jest/-/babel-jest-27.5.1.tgz} - id: registry.npmmirror.com/babel-jest/27.5.1 - name: babel-jest - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - peerDependencies: - '@babel/core': ^7.8.0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@jest/transform': registry.npmmirror.com/@jest/transform@27.5.1 - '@jest/types': registry.npmmirror.com/@jest/types@27.5.1 - '@types/babel__core': registry.npmmirror.com/@types/babel__core@7.20.1 - babel-plugin-istanbul: registry.npmmirror.com/babel-plugin-istanbul@6.1.1 - babel-preset-jest: registry.npmmirror.com/babel-preset-jest@27.5.1(@babel/core@7.22.15) - chalk: registry.npmmirror.com/chalk@4.1.2 - graceful-fs: registry.npmmirror.com/graceful-fs@4.2.11 - slash: registry.npmmirror.com/slash@3.0.0 - transitivePeerDependencies: - - supports-color - dev: true - - registry.npmmirror.com/babel-plugin-istanbul@6.1.1: - resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz} - name: babel-plugin-istanbul - version: 6.1.1 - engines: {node: '>=8'} - dependencies: - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - '@istanbuljs/load-nyc-config': registry.npmmirror.com/@istanbuljs/load-nyc-config@1.1.0 - '@istanbuljs/schema': registry.npmmirror.com/@istanbuljs/schema@0.1.3 - istanbul-lib-instrument: registry.npmmirror.com/istanbul-lib-instrument@5.2.1 - test-exclude: registry.npmmirror.com/test-exclude@6.0.0 - transitivePeerDependencies: - - supports-color - dev: true - - registry.npmmirror.com/babel-plugin-jest-hoist@27.5.1: - resolution: {integrity: sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.5.1.tgz} - name: babel-plugin-jest-hoist - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - '@babel/template': registry.npmmirror.com/@babel/template@7.22.15 - '@babel/types': registry.npmmirror.com/@babel/types@7.22.15 - '@types/babel__core': registry.npmmirror.com/@types/babel__core@7.20.1 - '@types/babel__traverse': registry.npmmirror.com/@types/babel__traverse@7.20.1 - dev: true - - registry.npmmirror.com/babel-plugin-polyfill-corejs2@0.4.5(@babel/core@7.22.15): - resolution: {integrity: sha512-19hwUH5FKl49JEsvyTcoHakh6BE0wgXLLptIyKZ3PijHc/Ci521wygORCUCCred+E/twuqRyAkE02BAWPmsHOg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.5.tgz} - id: registry.npmmirror.com/babel-plugin-polyfill-corejs2/0.4.5 - name: babel-plugin-polyfill-corejs2 - version: 0.4.5 - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - dependencies: - '@babel/compat-data': registry.npmmirror.com/@babel/compat-data@7.22.9 - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-define-polyfill-provider': registry.npmmirror.com/@babel/helper-define-polyfill-provider@0.4.2(@babel/core@7.22.15) - semver: registry.npmmirror.com/semver@6.3.1 - transitivePeerDependencies: - - supports-color - dev: true - - registry.npmmirror.com/babel-plugin-polyfill-corejs3@0.8.3(@babel/core@7.22.15): - resolution: {integrity: sha512-z41XaniZL26WLrvjy7soabMXrfPWARN25PZoriDEiLMxAp50AUW3t35BGQUMg5xK3UrpVTtagIDklxYa+MhiNA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.3.tgz} - id: registry.npmmirror.com/babel-plugin-polyfill-corejs3/0.8.3 - name: babel-plugin-polyfill-corejs3 - version: 0.8.3 - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-define-polyfill-provider': registry.npmmirror.com/@babel/helper-define-polyfill-provider@0.4.2(@babel/core@7.22.15) - core-js-compat: registry.npmmirror.com/core-js-compat@3.32.1 - transitivePeerDependencies: - - supports-color - dev: true - - registry.npmmirror.com/babel-plugin-polyfill-regenerator@0.5.2(@babel/core@7.22.15): - resolution: {integrity: sha512-tAlOptU0Xj34V1Y2PNTL4Y0FOJMDB6bZmoW39FeCQIhigGLkqu3Fj6uiXpxIf6Ij274ENdYx64y6Au+ZKlb1IA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.2.tgz} - id: registry.npmmirror.com/babel-plugin-polyfill-regenerator/0.5.2 - name: babel-plugin-polyfill-regenerator - version: 0.5.2 - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/helper-define-polyfill-provider': registry.npmmirror.com/@babel/helper-define-polyfill-provider@0.4.2(@babel/core@7.22.15) - transitivePeerDependencies: - - supports-color - dev: true - - registry.npmmirror.com/babel-preset-current-node-syntax@1.0.1(@babel/core@7.22.15): - resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz} - id: registry.npmmirror.com/babel-preset-current-node-syntax/1.0.1 - name: babel-preset-current-node-syntax - version: 1.0.1 - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/plugin-syntax-async-generators': registry.npmmirror.com/@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.22.15) - '@babel/plugin-syntax-bigint': registry.npmmirror.com/@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.22.15) - '@babel/plugin-syntax-class-properties': registry.npmmirror.com/@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.22.15) - '@babel/plugin-syntax-import-meta': registry.npmmirror.com/@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.22.15) - '@babel/plugin-syntax-json-strings': registry.npmmirror.com/@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.22.15) - '@babel/plugin-syntax-logical-assignment-operators': registry.npmmirror.com/@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.22.15) - '@babel/plugin-syntax-nullish-coalescing-operator': registry.npmmirror.com/@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.22.15) - '@babel/plugin-syntax-numeric-separator': registry.npmmirror.com/@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.22.15) - '@babel/plugin-syntax-object-rest-spread': registry.npmmirror.com/@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.22.15) - '@babel/plugin-syntax-optional-catch-binding': registry.npmmirror.com/@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.22.15) - '@babel/plugin-syntax-optional-chaining': registry.npmmirror.com/@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.22.15) - '@babel/plugin-syntax-top-level-await': registry.npmmirror.com/@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.22.15) - dev: true - - registry.npmmirror.com/babel-preset-jest@27.5.1(@babel/core@7.22.15): - resolution: {integrity: sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/babel-preset-jest/-/babel-preset-jest-27.5.1.tgz} - id: registry.npmmirror.com/babel-preset-jest/27.5.1 - name: babel-preset-jest - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - babel-plugin-jest-hoist: registry.npmmirror.com/babel-plugin-jest-hoist@27.5.1 - babel-preset-current-node-syntax: registry.npmmirror.com/babel-preset-current-node-syntax@1.0.1(@babel/core@7.22.15) - dev: true - - 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/base64-js@1.5.1: - resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/base64-js/-/base64-js-1.5.1.tgz} - name: base64-js - version: 1.5.1 - dev: false - - 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} - name: base64url - version: 3.0.1 - engines: {node: '>=6.0.0'} - - 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} - name: binary-extensions - version: 2.2.0 - engines: {node: '>=8'} - - registry.npmmirror.com/bmp-js@0.1.0: - resolution: {integrity: sha512-vHdS19CnY3hwiNdkaqk93DvjVLfbEcI8mys4UjuWrlX1haDmroo8o4xCzh4wD6DGV6HxRCyauwhHRqMTfERtjw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/bmp-js/-/bmp-js-0.1.0.tgz} - name: bmp-js - version: 0.1.0 - dev: false - - registry.npmmirror.com/body-parser@1.20.1: - resolution: {integrity: sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/body-parser/-/body-parser-1.20.1.tgz} - name: body-parser - version: 1.20.1 - 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.5 - debug: registry.npmmirror.com/debug@2.6.9 - depd: registry.npmmirror.com/depd@2.0.0 - destroy: registry.npmmirror.com/destroy@1.2.0 - http-errors: registry.npmmirror.com/http-errors@2.0.0 - iconv-lite: registry.npmmirror.com/iconv-lite@0.4.24 - on-finished: registry.npmmirror.com/on-finished@2.4.1 - qs: registry.npmmirror.com/qs@6.11.0 - raw-body: registry.npmmirror.com/raw-body@2.5.1 - type-is: registry.npmmirror.com/type-is@1.6.18 - unpipe: registry.npmmirror.com/unpipe@1.0.0 - transitivePeerDependencies: - - supports-color - 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.npmmirror.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} - name: braces - version: 3.0.2 - engines: {node: '>=8'} - dependencies: - fill-range: registry.npmmirror.com/fill-range@7.0.1 - - registry.npmmirror.com/browser-process-hrtime@1.0.0: - resolution: {integrity: sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz} - name: browser-process-hrtime - version: 1.0.0 - dev: true - - registry.npmmirror.com/browserslist@4.21.10: - resolution: {integrity: sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/browserslist/-/browserslist-4.21.10.tgz} - name: browserslist - version: 4.21.10 - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} - hasBin: true - dependencies: - caniuse-lite: registry.npmmirror.com/caniuse-lite@1.0.30001527 - electron-to-chromium: registry.npmmirror.com/electron-to-chromium@1.4.508 - node-releases: registry.npmmirror.com/node-releases@2.0.13 - update-browserslist-db: registry.npmmirror.com/update-browserslist-db@1.0.11(browserslist@4.21.10) - - registry.npmmirror.com/bser@2.1.1: - resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/bser/-/bser-2.1.1.tgz} - name: bser - version: 2.1.1 - dependencies: - node-int64: registry.npmmirror.com/node-int64@0.4.0 - dev: true - - registry.npmmirror.com/buffer-equal@0.0.1: - resolution: {integrity: sha512-RgSV6InVQ9ODPdLWJ5UAqBqJBOg370Nz6ZQtRzpt6nUjc8v0St97uJ4PYC6NztqIScrAXafKM3mZPMygSe1ggA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/buffer-equal/-/buffer-equal-0.0.1.tgz} - name: buffer-equal - version: 0.0.1 - engines: {node: '>=0.4.0'} - dev: false - - registry.npmmirror.com/buffer-from@1.1.2: - resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/buffer-from/-/buffer-from-1.1.2.tgz} - name: buffer-from - version: 1.1.2 - - registry.npmmirror.com/buffer@5.7.1: - resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/buffer/-/buffer-5.7.1.tgz} - name: buffer - version: 5.7.1 - dependencies: - base64-js: registry.npmmirror.com/base64-js@1.5.1 - ieee754: registry.npmmirror.com/ieee754@1.2.1 - dev: false - - 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} - name: bytes - version: 3.1.2 - 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} - name: cac - version: 6.7.9 - 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} - name: call-bind - version: 1.0.2 - dependencies: - function-bind: registry.npmmirror.com/function-bind@1.1.1 - get-intrinsic: registry.npmmirror.com/get-intrinsic@1.2.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@5.3.1: - resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/camelcase/-/camelcase-5.3.1.tgz} - name: camelcase - version: 5.3.1 - 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} - name: camelcase - version: 6.3.0 - engines: {node: '>=10'} - dev: true - - registry.npmmirror.com/caniuse-lite@1.0.30001527: - resolution: {integrity: sha512-YkJi7RwPgWtXVSgK4lG9AHH57nSzvvOp9MesgXmw4Q7n0C3H04L0foHqfxcmSAm5AcWb8dW9AYj2tR7/5GnddQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/caniuse-lite/-/caniuse-lite-1.0.30001527.tgz} - name: caniuse-lite - version: 1.0.30001527 - - 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} - name: chalk - version: 2.4.2 - 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/char-regex@1.0.2: - resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/char-regex/-/char-regex-1.0.2.tgz} - name: char-regex - version: 1.0.2 - engines: {node: '>=10'} - 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} - name: chokidar - version: 3.5.3 - engines: {node: '>= 8.10.0'} - dependencies: - anymatch: registry.npmmirror.com/anymatch@3.1.3 - braces: registry.npmmirror.com/braces@3.0.2 - glob-parent: registry.npmmirror.com/glob-parent@5.1.2 - is-binary-path: registry.npmmirror.com/is-binary-path@2.1.0 - is-glob: registry.npmmirror.com/is-glob@4.0.3 - normalize-path: registry.npmmirror.com/normalize-path@3.0.0 - readdirp: registry.npmmirror.com/readdirp@3.6.0 - optionalDependencies: - fsevents: registry.npmmirror.com/fsevents@2.3.3 - - registry.npmmirror.com/ci-info@3.8.0: - resolution: {integrity: sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ci-info/-/ci-info-3.8.0.tgz} - name: ci-info - version: 3.8.0 - engines: {node: '>=8'} - dev: true - - registry.npmmirror.com/cjs-module-lexer@1.2.3: - resolution: {integrity: sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz} - name: cjs-module-lexer - version: 1.2.3 - dev: true - - registry.npmmirror.com/cliui@7.0.4: - resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/cliui/-/cliui-7.0.4.tgz} - name: cliui - version: 7.0.4 - dependencies: - string-width: registry.npmmirror.com/string-width@4.2.3 - strip-ansi: registry.npmmirror.com/strip-ansi@6.0.1 - wrap-ansi: registry.npmmirror.com/wrap-ansi@7.0.0 - dev: true - - registry.npmmirror.com/co@4.6.0: - resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/co/-/co-4.6.0.tgz} - name: co - version: 4.6.0 - engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} - dev: true - - registry.npmmirror.com/collect-v8-coverage@1.0.2: - resolution: {integrity: sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz} - name: collect-v8-coverage - version: 1.0.2 - dev: true - - 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} - 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} - 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/combined-stream@1.0.8: - resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/combined-stream/-/combined-stream-1.0.8.tgz} - name: combined-stream - version: 1.0.8 - engines: {node: '>= 0.8'} - dependencies: - delayed-stream: registry.npmmirror.com/delayed-stream@1.0.0 - - registry.npmmirror.com/commander@2.20.3: - resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/commander/-/commander-2.20.3.tgz} - name: commander - version: 2.20.3 - - 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} - name: compare-versions - version: 3.6.0 - - registry.npmmirror.com/concat-map@0.0.1: - resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/concat-map/-/concat-map-0.0.1.tgz} - name: concat-map - version: 0.0.1 - dev: true - - 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} - name: content-disposition - version: 0.5.4 - engines: {node: '>= 0.6'} - dependencies: - safe-buffer: registry.npmmirror.com/safe-buffer@5.2.1 - dev: true - - registry.npmmirror.com/content-type@1.0.5: - resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/content-type/-/content-type-1.0.5.tgz} - name: content-type - version: 1.0.5 - engines: {node: '>= 0.6'} - dev: true - - registry.npmmirror.com/convert-source-map@1.9.0: - resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/convert-source-map/-/convert-source-map-1.9.0.tgz} - name: convert-source-map - version: 1.9.0 - - 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} - 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} - name: cookie - version: 0.5.0 - engines: {node: '>= 0.6'} - dev: true - - registry.npmmirror.com/core-js-compat@3.32.1: - resolution: {integrity: sha512-GSvKDv4wE0bPnQtjklV101juQ85g6H3rm5PDP20mqlS5j0kXF3pP97YvAu5hl+uFHqMictp3b2VxOHljWMAtuA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/core-js-compat/-/core-js-compat-3.32.1.tgz} - name: core-js-compat - version: 3.32.1 - dependencies: - browserslist: registry.npmmirror.com/browserslist@4.21.10 - dev: true - - registry.npmmirror.com/core-js@3.32.1: - resolution: {integrity: sha512-lqufgNn9NLnESg5mQeYsxQP5w7wrViSj0jr/kv6ECQiByzQkrn1MKvV0L3acttpDqfQrHLwr2KCMgX5b8X+lyQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/core-js/-/core-js-3.32.1.tgz} - name: core-js - version: 3.32.1 - requiresBuild: 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} - name: cross-env - version: 7.0.3 - 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} - name: cross-spawn - version: 7.0.3 - engines: {node: '>= 8'} - dependencies: - path-key: registry.npmmirror.com/path-key@3.1.1 - shebang-command: registry.npmmirror.com/shebang-command@2.0.0 - which: registry.npmmirror.com/which@2.0.2 - 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} - 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} - 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} - 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} - 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} - 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} - 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} - name: cssesc - version: 3.0.0 - engines: {node: '>=4'} - hasBin: true - - registry.npmmirror.com/cssom@0.3.8: - resolution: {integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/cssom/-/cssom-0.3.8.tgz} - name: cssom - version: 0.3.8 - dev: true - - registry.npmmirror.com/cssom@0.4.4: - resolution: {integrity: sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/cssom/-/cssom-0.4.4.tgz} - name: cssom - version: 0.4.4 - dev: true - - registry.npmmirror.com/cssstyle@2.3.0: - resolution: {integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/cssstyle/-/cssstyle-2.3.0.tgz} - name: cssstyle - version: 2.3.0 - engines: {node: '>=8'} - dependencies: - cssom: registry.npmmirror.com/cssom@0.3.8 - dev: true - - registry.npmmirror.com/csstype@2.6.21: - resolution: {integrity: sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/csstype/-/csstype-2.6.21.tgz} - name: csstype - version: 2.6.21 - - registry.npmmirror.com/data-urls@2.0.0: - resolution: {integrity: sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/data-urls/-/data-urls-2.0.0.tgz} - name: data-urls - version: 2.0.0 - engines: {node: '>=10'} - dependencies: - abab: registry.npmmirror.com/abab@2.0.6 - whatwg-mimetype: registry.npmmirror.com/whatwg-mimetype@2.3.0 - whatwg-url: registry.npmmirror.com/whatwg-url@8.7.0 - dev: true - - 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} - name: debug - version: 2.6.9 - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - dependencies: - ms: registry.npmmirror.com/ms@2.0.0 - 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} - name: debug - version: 4.3.4 - engines: {node: '>=6.0'} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - dependencies: - ms: registry.npmmirror.com/ms@2.1.2 - - registry.npmmirror.com/decimal.js@10.4.3: - resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/decimal.js/-/decimal.js-10.4.3.tgz} - name: decimal.js - version: 10.4.3 - dev: true - - registry.npmmirror.com/dedent@0.7.0: - resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/dedent/-/dedent-0.7.0.tgz} - name: dedent - version: 0.7.0 - dev: true - - registry.npmmirror.com/deepmerge@4.3.1: - resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/deepmerge/-/deepmerge-4.3.1.tgz} - name: deepmerge - version: 4.3.1 - engines: {node: '>=0.10.0'} - 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} - name: default-gateway - version: 6.0.3 - engines: {node: '>= 10'} - dependencies: - execa: registry.npmmirror.com/execa@5.1.1 - dev: true - - registry.npmmirror.com/delayed-stream@1.0.0: - resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/delayed-stream/-/delayed-stream-1.0.0.tgz} - name: delayed-stream - version: 1.0.0 - engines: {node: '>=0.4.0'} - - 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} - name: depd - version: 2.0.0 - 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} - name: destroy - version: 1.2.0 - engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} - dev: true - - registry.npmmirror.com/detect-newline@3.1.0: - resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/detect-newline/-/detect-newline-3.1.0.tgz} - name: detect-newline - version: 3.1.0 - engines: {node: '>=8'} - dev: true - - registry.npmmirror.com/diff-sequences@27.5.1: - resolution: {integrity: sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/diff-sequences/-/diff-sequences-27.5.1.tgz} - name: diff-sequences - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dev: true - - registry.npmmirror.com/dom-walk@0.1.2: - resolution: {integrity: sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/dom-walk/-/dom-walk-0.1.2.tgz} - name: dom-walk - version: 0.1.2 - dev: false - - registry.npmmirror.com/domexception@2.0.1: - resolution: {integrity: sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/domexception/-/domexception-2.0.1.tgz} - name: domexception - version: 2.0.1 - engines: {node: '>=8'} - dependencies: - webidl-conversions: registry.npmmirror.com/webidl-conversions@5.0.0 - 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} - name: ee-first - version: 1.1.1 - dev: true - - registry.npmmirror.com/electron-to-chromium@1.4.508: - resolution: {integrity: sha512-FFa8QKjQK/A5QuFr2167myhMesGrhlOBD+3cYNxO9/S4XzHEXesyTD/1/xF644gC8buFPz3ca6G1LOQD0tZrrg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/electron-to-chromium/-/electron-to-chromium-1.4.508.tgz} - name: electron-to-chromium - version: 1.4.508 - - registry.npmmirror.com/emittery@0.8.1: - resolution: {integrity: sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/emittery/-/emittery-0.8.1.tgz} - name: emittery - version: 0.8.1 - engines: {node: '>=10'} - dev: true - - registry.npmmirror.com/emoji-regex@8.0.0: - resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/emoji-regex/-/emoji-regex-8.0.0.tgz} - name: emoji-regex - version: 8.0.0 - 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} - name: encodeurl - version: 1.0.2 - engines: {node: '>= 0.8'} - dev: true - - registry.npmmirror.com/error-ex@1.3.2: - resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/error-ex/-/error-ex-1.3.2.tgz} - name: error-ex - version: 1.3.2 - dependencies: - is-arrayish: registry.npmmirror.com/is-arrayish@0.2.1 - dev: true - - registry.npmmirror.com/es-module-lexer@1.3.0: - resolution: {integrity: sha512-vZK7T0N2CBmBOixhmjdqx2gWVbFZ4DXZ/NyRMZVlJXPa7CyFS+/a4QQsDGDQy9ZfEzxFuNEsMLeQJnKP2p5/JA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/es-module-lexer/-/es-module-lexer-1.3.0.tgz} - name: es-module-lexer - version: 1.3.0 - - registry.npmmirror.com/esbuild@0.16.17: - resolution: {integrity: sha512-G8LEkV0XzDMNwXKgM0Jwu3nY3lSTwSGY6XbxM9cr9+s0T/qSV1q1JVPBGzm3dcjhCic9+emZDmMffkwgPeOeLg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild/-/esbuild-0.16.17.tgz} - name: esbuild - version: 0.16.17 - engines: {node: '>=12'} - hasBin: true - requiresBuild: true - optionalDependencies: - '@esbuild/android-arm': registry.npmmirror.com/@esbuild/android-arm@0.16.17 - '@esbuild/android-arm64': registry.npmmirror.com/@esbuild/android-arm64@0.16.17 - '@esbuild/android-x64': registry.npmmirror.com/@esbuild/android-x64@0.16.17 - '@esbuild/darwin-arm64': registry.npmmirror.com/@esbuild/darwin-arm64@0.16.17 - '@esbuild/darwin-x64': registry.npmmirror.com/@esbuild/darwin-x64@0.16.17 - '@esbuild/freebsd-arm64': registry.npmmirror.com/@esbuild/freebsd-arm64@0.16.17 - '@esbuild/freebsd-x64': registry.npmmirror.com/@esbuild/freebsd-x64@0.16.17 - '@esbuild/linux-arm': registry.npmmirror.com/@esbuild/linux-arm@0.16.17 - '@esbuild/linux-arm64': registry.npmmirror.com/@esbuild/linux-arm64@0.16.17 - '@esbuild/linux-ia32': registry.npmmirror.com/@esbuild/linux-ia32@0.16.17 - '@esbuild/linux-loong64': registry.npmmirror.com/@esbuild/linux-loong64@0.16.17 - '@esbuild/linux-mips64el': registry.npmmirror.com/@esbuild/linux-mips64el@0.16.17 - '@esbuild/linux-ppc64': registry.npmmirror.com/@esbuild/linux-ppc64@0.16.17 - '@esbuild/linux-riscv64': registry.npmmirror.com/@esbuild/linux-riscv64@0.16.17 - '@esbuild/linux-s390x': registry.npmmirror.com/@esbuild/linux-s390x@0.16.17 - '@esbuild/linux-x64': registry.npmmirror.com/@esbuild/linux-x64@0.16.17 - '@esbuild/netbsd-x64': registry.npmmirror.com/@esbuild/netbsd-x64@0.16.17 - '@esbuild/openbsd-x64': registry.npmmirror.com/@esbuild/openbsd-x64@0.16.17 - '@esbuild/sunos-x64': registry.npmmirror.com/@esbuild/sunos-x64@0.16.17 - '@esbuild/win32-arm64': registry.npmmirror.com/@esbuild/win32-arm64@0.16.17 - '@esbuild/win32-ia32': registry.npmmirror.com/@esbuild/win32-ia32@0.16.17 - '@esbuild/win32-x64': registry.npmmirror.com/@esbuild/win32-x64@0.16.17 - - registry.npmmirror.com/esbuild@0.17.19: - resolution: {integrity: sha512-XQ0jAPFkK/u3LcVRcvVHQcTIqD6E2H1fvZMA5dQPSOWb3suUbWbfbRf94pjc0bNzRYLfIrDRQXr7X+LHIm5oHw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild/-/esbuild-0.17.19.tgz} - name: esbuild - version: 0.17.19 - engines: {node: '>=12'} - hasBin: true - requiresBuild: true - optionalDependencies: - '@esbuild/android-arm': registry.npmmirror.com/@esbuild/android-arm@0.17.19 - '@esbuild/android-arm64': registry.npmmirror.com/@esbuild/android-arm64@0.17.19 - '@esbuild/android-x64': registry.npmmirror.com/@esbuild/android-x64@0.17.19 - '@esbuild/darwin-arm64': registry.npmmirror.com/@esbuild/darwin-arm64@0.17.19 - '@esbuild/darwin-x64': registry.npmmirror.com/@esbuild/darwin-x64@0.17.19 - '@esbuild/freebsd-arm64': registry.npmmirror.com/@esbuild/freebsd-arm64@0.17.19 - '@esbuild/freebsd-x64': registry.npmmirror.com/@esbuild/freebsd-x64@0.17.19 - '@esbuild/linux-arm': registry.npmmirror.com/@esbuild/linux-arm@0.17.19 - '@esbuild/linux-arm64': registry.npmmirror.com/@esbuild/linux-arm64@0.17.19 - '@esbuild/linux-ia32': registry.npmmirror.com/@esbuild/linux-ia32@0.17.19 - '@esbuild/linux-loong64': registry.npmmirror.com/@esbuild/linux-loong64@0.17.19 - '@esbuild/linux-mips64el': registry.npmmirror.com/@esbuild/linux-mips64el@0.17.19 - '@esbuild/linux-ppc64': registry.npmmirror.com/@esbuild/linux-ppc64@0.17.19 - '@esbuild/linux-riscv64': registry.npmmirror.com/@esbuild/linux-riscv64@0.17.19 - '@esbuild/linux-s390x': registry.npmmirror.com/@esbuild/linux-s390x@0.17.19 - '@esbuild/linux-x64': registry.npmmirror.com/@esbuild/linux-x64@0.17.19 - '@esbuild/netbsd-x64': registry.npmmirror.com/@esbuild/netbsd-x64@0.17.19 - '@esbuild/openbsd-x64': registry.npmmirror.com/@esbuild/openbsd-x64@0.17.19 - '@esbuild/sunos-x64': registry.npmmirror.com/@esbuild/sunos-x64@0.17.19 - '@esbuild/win32-arm64': registry.npmmirror.com/@esbuild/win32-arm64@0.17.19 - '@esbuild/win32-ia32': registry.npmmirror.com/@esbuild/win32-ia32@0.17.19 - '@esbuild/win32-x64': registry.npmmirror.com/@esbuild/win32-x64@0.17.19 - - 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} - name: escalade - version: 3.1.1 - 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} - 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} - name: escape-string-regexp - version: 1.0.5 - engines: {node: '>=0.8.0'} - - registry.npmmirror.com/escape-string-regexp@2.0.0: - resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz} - name: escape-string-regexp - version: 2.0.0 - engines: {node: '>=8'} - dev: true - - registry.npmmirror.com/escodegen@2.1.0: - resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/escodegen/-/escodegen-2.1.0.tgz} - name: escodegen - version: 2.1.0 - engines: {node: '>=6.0'} - hasBin: true - dependencies: - esprima: registry.npmmirror.com/esprima@4.0.1 - estraverse: registry.npmmirror.com/estraverse@5.3.0 - esutils: registry.npmmirror.com/esutils@2.0.3 - optionalDependencies: - source-map: registry.npmmirror.com/source-map@0.6.1 - dev: true - - registry.npmmirror.com/esprima@4.0.1: - resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esprima/-/esprima-4.0.1.tgz} - name: esprima - version: 4.0.1 - engines: {node: '>=4'} - hasBin: true - 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} - 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} - name: etag - version: 1.8.1 - 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} - name: execa - version: 5.1.1 - engines: {node: '>=10'} - dependencies: - cross-spawn: registry.npmmirror.com/cross-spawn@7.0.3 - get-stream: registry.npmmirror.com/get-stream@6.0.1 - human-signals: registry.npmmirror.com/human-signals@2.1.0 - is-stream: registry.npmmirror.com/is-stream@2.0.1 - merge-stream: registry.npmmirror.com/merge-stream@2.0.0 - npm-run-path: registry.npmmirror.com/npm-run-path@4.0.1 - onetime: registry.npmmirror.com/onetime@5.1.2 - signal-exit: registry.npmmirror.com/signal-exit@3.0.7 - strip-final-newline: registry.npmmirror.com/strip-final-newline@2.0.0 - dev: true - - registry.npmmirror.com/exif-parser@0.1.12: - resolution: {integrity: sha512-c2bQfLNbMzLPmzQuOr8fy0csy84WmwnER81W88DzTp9CYNPJ6yzOj2EZAh9pywYpqHnshVLHQJ8WzldAyfY+Iw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/exif-parser/-/exif-parser-0.1.12.tgz} - name: exif-parser - version: 0.1.12 - dev: false - - registry.npmmirror.com/exit@0.1.2: - resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/exit/-/exit-0.1.2.tgz} - name: exit - version: 0.1.2 - engines: {node: '>= 0.8.0'} - dev: true - - registry.npmmirror.com/expect@27.5.1: - resolution: {integrity: sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/expect/-/expect-27.5.1.tgz} - name: expect - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - '@jest/types': registry.npmmirror.com/@jest/types@27.5.1 - jest-get-type: registry.npmmirror.com/jest-get-type@27.5.1 - jest-matcher-utils: registry.npmmirror.com/jest-matcher-utils@27.5.1 - jest-message-util: registry.npmmirror.com/jest-message-util@27.5.1 - dev: true - - registry.npmmirror.com/express@4.18.2: - resolution: {integrity: sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/express/-/express-4.18.2.tgz} - name: express - version: 4.18.2 - engines: {node: '>= 0.10.0'} - dependencies: - accepts: registry.npmmirror.com/accepts@1.3.8 - array-flatten: registry.npmmirror.com/array-flatten@1.1.1 - body-parser: registry.npmmirror.com/body-parser@1.20.1 - content-disposition: registry.npmmirror.com/content-disposition@0.5.4 - content-type: registry.npmmirror.com/content-type@1.0.5 - cookie: registry.npmmirror.com/cookie@0.5.0 - cookie-signature: registry.npmmirror.com/cookie-signature@1.0.6 - debug: registry.npmmirror.com/debug@2.6.9 - depd: registry.npmmirror.com/depd@2.0.0 - encodeurl: registry.npmmirror.com/encodeurl@1.0.2 - escape-html: registry.npmmirror.com/escape-html@1.0.3 - etag: registry.npmmirror.com/etag@1.8.1 - finalhandler: registry.npmmirror.com/finalhandler@1.2.0 - fresh: registry.npmmirror.com/fresh@0.5.2 - http-errors: registry.npmmirror.com/http-errors@2.0.0 - merge-descriptors: registry.npmmirror.com/merge-descriptors@1.0.1 - methods: registry.npmmirror.com/methods@1.1.2 - on-finished: registry.npmmirror.com/on-finished@2.4.1 - parseurl: registry.npmmirror.com/parseurl@1.3.3 - path-to-regexp: registry.npmmirror.com/path-to-regexp@0.1.7 - proxy-addr: registry.npmmirror.com/proxy-addr@2.0.7 - qs: registry.npmmirror.com/qs@6.11.0 - range-parser: registry.npmmirror.com/range-parser@1.2.1 - safe-buffer: registry.npmmirror.com/safe-buffer@5.2.1 - send: registry.npmmirror.com/send@0.18.0 - serve-static: registry.npmmirror.com/serve-static@1.15.0 - setprototypeof: registry.npmmirror.com/setprototypeof@1.2.0 - statuses: registry.npmmirror.com/statuses@2.0.1 - type-is: registry.npmmirror.com/type-is@1.6.18 - utils-merge: registry.npmmirror.com/utils-merge@1.0.1 - vary: registry.npmmirror.com/vary@1.1.2 - transitivePeerDependencies: - - supports-color - dev: true - - registry.npmmirror.com/fast-glob@3.3.1: - resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fast-glob/-/fast-glob-3.3.1.tgz} - name: fast-glob - version: 3.3.1 - engines: {node: '>=8.6.0'} - 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 - glob-parent: registry.npmmirror.com/glob-parent@5.1.2 - 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/fastq@1.15.0: - resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fastq/-/fastq-1.15.0.tgz} - name: fastq - version: 1.15.0 - dependencies: - reusify: registry.npmmirror.com/reusify@1.0.4 - - registry.npmmirror.com/fb-watchman@2.0.2: - resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fb-watchman/-/fb-watchman-2.0.2.tgz} - name: fb-watchman - version: 2.0.2 - dependencies: - bser: registry.npmmirror.com/bser@2.1.1 - dev: true - - registry.npmmirror.com/file-type@9.0.0: - resolution: {integrity: sha512-Qe/5NJrgIOlwijpq3B7BEpzPFcgzggOTagZmkXQY4LA6bsXKTUstK7Wp12lEJ/mLKTpvIZxmIuRcLYWT6ov9lw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/file-type/-/file-type-9.0.0.tgz} - name: file-type - version: 9.0.0 - engines: {node: '>=6'} - dev: false - - 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} - name: fill-range - version: 7.0.1 - 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} - name: finalhandler - version: 1.2.0 - engines: {node: '>= 0.8'} - dependencies: - debug: registry.npmmirror.com/debug@2.6.9 - encodeurl: registry.npmmirror.com/encodeurl@1.0.2 - escape-html: registry.npmmirror.com/escape-html@1.0.3 - on-finished: registry.npmmirror.com/on-finished@2.4.1 - parseurl: registry.npmmirror.com/parseurl@1.3.3 - statuses: registry.npmmirror.com/statuses@2.0.1 - unpipe: registry.npmmirror.com/unpipe@1.0.0 - transitivePeerDependencies: - - supports-color - dev: true - - registry.npmmirror.com/find-up@4.1.0: - resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/find-up/-/find-up-4.1.0.tgz} - name: find-up - version: 4.1.0 - engines: {node: '>=8'} - dependencies: - locate-path: registry.npmmirror.com/locate-path@5.0.0 - path-exists: registry.npmmirror.com/path-exists@4.0.0 - dev: true - - registry.npmmirror.com/follow-redirects@1.15.3: - resolution: {integrity: sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/follow-redirects/-/follow-redirects-1.15.3.tgz} - name: follow-redirects - version: 1.15.3 - engines: {node: '>=4.0'} - peerDependencies: - debug: '*' - peerDependenciesMeta: - debug: - optional: true - dev: false - - registry.npmmirror.com/form-data@3.0.1: - resolution: {integrity: sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/form-data/-/form-data-3.0.1.tgz} - name: form-data - version: 3.0.1 - engines: {node: '>= 6'} - dependencies: - asynckit: registry.npmmirror.com/asynckit@0.4.0 - combined-stream: registry.npmmirror.com/combined-stream@1.0.8 - mime-types: registry.npmmirror.com/mime-types@2.1.35 - dev: true - - registry.npmmirror.com/form-data@4.0.0: - resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/form-data/-/form-data-4.0.0.tgz} - name: form-data - version: 4.0.0 - engines: {node: '>= 6'} - dependencies: - asynckit: registry.npmmirror.com/asynckit@0.4.0 - combined-stream: registry.npmmirror.com/combined-stream@1.0.8 - mime-types: registry.npmmirror.com/mime-types@2.1.35 - dev: false - - 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} - name: forwarded - version: 0.2.0 - engines: {node: '>= 0.6'} - dev: true - - registry.npmmirror.com/fraction.js@4.3.6: - resolution: {integrity: sha512-n2aZ9tNfYDwaHhvFTkhFErqOMIb8uyzSQ+vGJBjZyanAKZVbGUQ1sngfk9FdkBw7G26O7AgNjLcecLffD1c7eg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fraction.js/-/fraction.js-4.3.6.tgz} - name: fraction.js - version: 4.3.6 - - 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} - name: fresh - version: 0.5.2 - 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} - name: fs-extra - version: 10.1.0 - engines: {node: '>=12'} - dependencies: - graceful-fs: registry.npmmirror.com/graceful-fs@4.2.11 - 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.3: - resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fsevents/-/fsevents-2.3.3.tgz} - name: fsevents - version: 2.3.3 - 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} - name: function-bind - version: 1.1.1 - - 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} - name: generic-names - version: 4.0.0 - dependencies: - loader-utils: registry.npmmirror.com/loader-utils@3.2.1 - - 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} - name: gensync - version: 1.0.0-beta.2 - engines: {node: '>=6.9.0'} - - registry.npmmirror.com/get-caller-file@2.0.5: - resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/get-caller-file/-/get-caller-file-2.0.5.tgz} - name: get-caller-file - version: 2.0.5 - engines: {node: 6.* || 8.* || >= 10.*} - dev: true - - registry.npmmirror.com/get-intrinsic@1.2.1: - resolution: {integrity: sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz} - name: get-intrinsic - version: 1.2.1 - dependencies: - function-bind: registry.npmmirror.com/function-bind@1.1.1 - has: registry.npmmirror.com/has@1.0.3 - has-proto: registry.npmmirror.com/has-proto@1.0.1 - has-symbols: registry.npmmirror.com/has-symbols@1.0.3 - dev: true - - registry.npmmirror.com/get-package-type@0.1.0: - resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/get-package-type/-/get-package-type-0.1.0.tgz} - name: get-package-type - version: 0.1.0 - engines: {node: '>=8.0.0'} - 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} - name: get-stream - version: 6.0.1 - 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} - name: glob-parent - version: 5.1.2 - engines: {node: '>= 6'} - dependencies: - is-glob: registry.npmmirror.com/is-glob@4.0.3 - - 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/global@4.4.0: - resolution: {integrity: sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/global/-/global-4.4.0.tgz} - name: global - version: 4.4.0 - dependencies: - min-document: registry.npmmirror.com/min-document@2.19.0 - process: registry.npmmirror.com/process@0.11.10 - dev: false - - 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} - name: globals - version: 11.12.0 - engines: {node: '>=4'} - - registry.npmmirror.com/graceful-fs@4.2.11: - resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/graceful-fs/-/graceful-fs-4.2.11.tgz} - name: graceful-fs - version: 4.2.11 - - 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} - name: has-flag - version: 3.0.0 - 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-proto@1.0.1: - resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/has-proto/-/has-proto-1.0.1.tgz} - name: has-proto - version: 1.0.1 - engines: {node: '>= 0.4'} - 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} - name: has-symbols - version: 1.0.3 - 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} - name: has - version: 1.0.3 - 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} - name: hash-sum - version: 2.0.0 - - registry.npmmirror.com/highlight.js@11.8.0: - resolution: {integrity: sha512-MedQhoqVdr0U6SSnWPzfiadUcDHfN/Wzq25AkXiQv9oiOO/sG0S7XkvpFIqWBl9Yq1UYyYOOVORs5UW2XlPyzg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/highlight.js/-/highlight.js-11.8.0.tgz} - name: highlight.js - version: 11.8.0 - engines: {node: '>=12.0.0'} - dev: false - - registry.npmmirror.com/html-encoding-sniffer@2.0.1: - resolution: {integrity: sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz} - name: html-encoding-sniffer - version: 2.0.1 - engines: {node: '>=10'} - dependencies: - whatwg-encoding: registry.npmmirror.com/whatwg-encoding@1.0.5 - dev: true - - registry.npmmirror.com/html-escaper@2.0.2: - resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/html-escaper/-/html-escaper-2.0.2.tgz} - name: html-escaper - version: 2.0.2 - dev: true - - registry.npmmirror.com/html-tags@3.3.1: - resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/html-tags/-/html-tags-3.3.1.tgz} - name: html-tags - version: 3.3.1 - 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} - name: http-errors - version: 2.0.0 - engines: {node: '>= 0.8'} - dependencies: - depd: registry.npmmirror.com/depd@2.0.0 - inherits: registry.npmmirror.com/inherits@2.0.4 - setprototypeof: registry.npmmirror.com/setprototypeof@1.2.0 - statuses: registry.npmmirror.com/statuses@2.0.1 - toidentifier: registry.npmmirror.com/toidentifier@1.0.1 - dev: true - - registry.npmmirror.com/http-proxy-agent@4.0.1: - resolution: {integrity: sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz} - name: http-proxy-agent - version: 4.0.1 - engines: {node: '>= 6'} - dependencies: - '@tootallnate/once': registry.npmmirror.com/@tootallnate/once@1.1.2 - agent-base: registry.npmmirror.com/agent-base@6.0.2 - debug: registry.npmmirror.com/debug@4.3.4 - transitivePeerDependencies: - - supports-color - dev: true - - registry.npmmirror.com/https-proxy-agent@5.0.1: - resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz} - name: https-proxy-agent - version: 5.0.1 - engines: {node: '>= 6'} - dependencies: - agent-base: registry.npmmirror.com/agent-base@6.0.2 - debug: registry.npmmirror.com/debug@4.3.4 - transitivePeerDependencies: - - supports-color - 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} - name: human-signals - version: 2.1.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} - name: iconv-lite - version: 0.4.24 - 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} - name: icss-replace-symbols - version: 1.1.0 - - registry.npmmirror.com/icss-utils@5.1.0(postcss@8.4.29): - resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/icss-utils/-/icss-utils-5.1.0.tgz} - id: registry.npmmirror.com/icss-utils/5.1.0 - name: icss-utils - version: 5.1.0 - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 - dependencies: - postcss: registry.npmmirror.com/postcss@8.4.29 - - registry.npmmirror.com/ieee754@1.2.1: - resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ieee754/-/ieee754-1.2.1.tgz} - name: ieee754 - version: 1.2.1 - dev: false - - registry.npmmirror.com/immutable@4.3.4: - resolution: {integrity: sha512-fsXeu4J4i6WNWSikpI88v/PcVflZz+6kMhUfIwc5SY+poQRPnaf5V7qds6SUyUN3cVxEzuCab7QIoLOQ+DQ1wA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/immutable/-/immutable-4.3.4.tgz} - name: immutable - version: 4.3.4 - - registry.npmmirror.com/import-local@3.1.0: - resolution: {integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/import-local/-/import-local-3.1.0.tgz} - name: import-local - version: 3.1.0 - engines: {node: '>=8'} - hasBin: true - dependencies: - pkg-dir: registry.npmmirror.com/pkg-dir@4.2.0 - resolve-cwd: registry.npmmirror.com/resolve-cwd@3.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} - name: inherits - version: 2.0.4 - dev: true - - registry.npmmirror.com/invert-kv@3.0.1: - resolution: {integrity: sha512-CYdFeFexxhv/Bcny+Q0BfOV+ltRlJcd4BBZBYFX/O0u4npJrgZtIcjokegtiSMAvlMTJ+Koq0GBCc//3bueQxw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/invert-kv/-/invert-kv-3.0.1.tgz} - name: invert-kv - version: 3.0.1 - engines: {node: '>=8'} - - 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} - name: ipaddr.js - version: 1.9.1 - engines: {node: '>= 0.10'} - dev: true - - registry.npmmirror.com/is-arrayish@0.2.1: - resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-arrayish/-/is-arrayish-0.2.1.tgz} - name: is-arrayish - version: 0.2.1 - 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} - name: is-binary-path - version: 2.1.0 - engines: {node: '>=8'} - dependencies: - binary-extensions: registry.npmmirror.com/binary-extensions@2.2.0 - - registry.npmmirror.com/is-core-module@2.13.0: - resolution: {integrity: sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-core-module/-/is-core-module-2.13.0.tgz} - name: is-core-module - version: 2.13.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} - name: is-extglob - version: 2.1.1 - engines: {node: '>=0.10.0'} - - registry.npmmirror.com/is-fullwidth-code-point@3.0.0: - resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz} - name: is-fullwidth-code-point - version: 3.0.0 - engines: {node: '>=8'} - dev: true - - registry.npmmirror.com/is-function@1.0.2: - resolution: {integrity: sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-function/-/is-function-1.0.2.tgz} - name: is-function - version: 1.0.2 - dev: false - - registry.npmmirror.com/is-generator-fn@2.1.0: - resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz} - name: is-generator-fn - version: 2.1.0 - engines: {node: '>=6'} - dev: true - - 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} - name: is-glob - version: 4.0.3 - 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} - name: is-number - version: 7.0.0 - engines: {node: '>=0.12.0'} - - registry.npmmirror.com/is-potential-custom-element-name@1.0.1: - resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz} - name: is-potential-custom-element-name - version: 1.0.1 - dev: true - - 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} - name: is-stream - version: 2.0.1 - engines: {node: '>=8'} - dev: true - - registry.npmmirror.com/is-typedarray@1.0.0: - resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-typedarray/-/is-typedarray-1.0.0.tgz} - name: is-typedarray - version: 1.0.0 - 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} - name: isexe - version: 2.0.0 - dev: true - - registry.npmmirror.com/istanbul-lib-coverage@3.2.0: - resolution: {integrity: sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz} - name: istanbul-lib-coverage - version: 3.2.0 - engines: {node: '>=8'} - dev: true - - registry.npmmirror.com/istanbul-lib-instrument@5.2.1: - resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz} - name: istanbul-lib-instrument - version: 5.2.1 - engines: {node: '>=8'} - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/parser': registry.npmmirror.com/@babel/parser@7.22.15 - '@istanbuljs/schema': registry.npmmirror.com/@istanbuljs/schema@0.1.3 - istanbul-lib-coverage: registry.npmmirror.com/istanbul-lib-coverage@3.2.0 - semver: registry.npmmirror.com/semver@6.3.1 - transitivePeerDependencies: - - supports-color - dev: true - - registry.npmmirror.com/istanbul-lib-report@3.0.1: - resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz} - name: istanbul-lib-report - version: 3.0.1 - engines: {node: '>=10'} - dependencies: - istanbul-lib-coverage: registry.npmmirror.com/istanbul-lib-coverage@3.2.0 - make-dir: registry.npmmirror.com/make-dir@4.0.0 - supports-color: registry.npmmirror.com/supports-color@7.2.0 - dev: true - - registry.npmmirror.com/istanbul-lib-source-maps@4.0.1: - resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz} - name: istanbul-lib-source-maps - version: 4.0.1 - engines: {node: '>=10'} - dependencies: - debug: registry.npmmirror.com/debug@4.3.4 - istanbul-lib-coverage: registry.npmmirror.com/istanbul-lib-coverage@3.2.0 - source-map: registry.npmmirror.com/source-map@0.6.1 - transitivePeerDependencies: - - supports-color - dev: true - - registry.npmmirror.com/istanbul-reports@3.1.6: - resolution: {integrity: sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/istanbul-reports/-/istanbul-reports-3.1.6.tgz} - name: istanbul-reports - version: 3.1.6 - engines: {node: '>=8'} - dependencies: - html-escaper: registry.npmmirror.com/html-escaper@2.0.2 - istanbul-lib-report: registry.npmmirror.com/istanbul-lib-report@3.0.1 - dev: true - - registry.npmmirror.com/jest-changed-files@27.5.1: - resolution: {integrity: sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-changed-files/-/jest-changed-files-27.5.1.tgz} - name: jest-changed-files - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - '@jest/types': registry.npmmirror.com/@jest/types@27.5.1 - execa: registry.npmmirror.com/execa@5.1.1 - throat: registry.npmmirror.com/throat@6.0.2 - dev: true - - registry.npmmirror.com/jest-circus@27.5.1: - resolution: {integrity: sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-circus/-/jest-circus-27.5.1.tgz} - name: jest-circus - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - '@jest/environment': registry.npmmirror.com/@jest/environment@27.5.1 - '@jest/test-result': registry.npmmirror.com/@jest/test-result@27.5.1 - '@jest/types': registry.npmmirror.com/@jest/types@27.5.1 - '@types/node': registry.npmmirror.com/@types/node@20.5.9 - chalk: registry.npmmirror.com/chalk@4.1.2 - co: registry.npmmirror.com/co@4.6.0 - dedent: registry.npmmirror.com/dedent@0.7.0 - expect: registry.npmmirror.com/expect@27.5.1 - is-generator-fn: registry.npmmirror.com/is-generator-fn@2.1.0 - jest-each: registry.npmmirror.com/jest-each@27.5.1 - jest-matcher-utils: registry.npmmirror.com/jest-matcher-utils@27.5.1 - jest-message-util: registry.npmmirror.com/jest-message-util@27.5.1 - jest-runtime: registry.npmmirror.com/jest-runtime@27.5.1 - jest-snapshot: registry.npmmirror.com/jest-snapshot@27.5.1 - jest-util: registry.npmmirror.com/jest-util@27.5.1 - pretty-format: registry.npmmirror.com/pretty-format@27.5.1 - slash: registry.npmmirror.com/slash@3.0.0 - stack-utils: registry.npmmirror.com/stack-utils@2.0.6 - throat: registry.npmmirror.com/throat@6.0.2 - transitivePeerDependencies: - - supports-color - dev: true - - registry.npmmirror.com/jest-cli@27.5.1: - resolution: {integrity: sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-cli/-/jest-cli-27.5.1.tgz} - name: jest-cli - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - hasBin: true - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true - dependencies: - '@jest/core': registry.npmmirror.com/@jest/core@27.5.1 - '@jest/test-result': registry.npmmirror.com/@jest/test-result@27.5.1 - '@jest/types': registry.npmmirror.com/@jest/types@27.5.1 - chalk: registry.npmmirror.com/chalk@4.1.2 - exit: registry.npmmirror.com/exit@0.1.2 - graceful-fs: registry.npmmirror.com/graceful-fs@4.2.11 - import-local: registry.npmmirror.com/import-local@3.1.0 - jest-config: registry.npmmirror.com/jest-config@27.5.1 - jest-util: registry.npmmirror.com/jest-util@27.5.1 - jest-validate: registry.npmmirror.com/jest-validate@27.5.1 - prompts: registry.npmmirror.com/prompts@2.4.2 - yargs: registry.npmmirror.com/yargs@16.2.0 - transitivePeerDependencies: - - bufferutil - - canvas - - supports-color - - ts-node - - utf-8-validate - dev: true - - registry.npmmirror.com/jest-config@27.5.1: - resolution: {integrity: sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-config/-/jest-config-27.5.1.tgz} - name: jest-config - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - peerDependencies: - ts-node: '>=9.0.0' - peerDependenciesMeta: - ts-node: - optional: true - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@jest/test-sequencer': registry.npmmirror.com/@jest/test-sequencer@27.5.1 - '@jest/types': registry.npmmirror.com/@jest/types@27.5.1 - babel-jest: registry.npmmirror.com/babel-jest@27.5.1(@babel/core@7.22.15) - chalk: registry.npmmirror.com/chalk@4.1.2 - ci-info: registry.npmmirror.com/ci-info@3.8.0 - deepmerge: registry.npmmirror.com/deepmerge@4.3.1 - glob: registry.npmmirror.com/glob@7.2.3 - graceful-fs: registry.npmmirror.com/graceful-fs@4.2.11 - jest-circus: registry.npmmirror.com/jest-circus@27.5.1 - jest-environment-jsdom: registry.npmmirror.com/jest-environment-jsdom@27.5.1 - jest-environment-node: registry.npmmirror.com/jest-environment-node@27.5.1 - jest-get-type: registry.npmmirror.com/jest-get-type@27.5.1 - jest-jasmine2: registry.npmmirror.com/jest-jasmine2@27.5.1 - jest-regex-util: registry.npmmirror.com/jest-regex-util@27.5.1 - jest-resolve: registry.npmmirror.com/jest-resolve@27.5.1 - jest-runner: registry.npmmirror.com/jest-runner@27.5.1 - jest-util: registry.npmmirror.com/jest-util@27.5.1 - jest-validate: registry.npmmirror.com/jest-validate@27.5.1 - micromatch: registry.npmmirror.com/micromatch@4.0.5 - parse-json: registry.npmmirror.com/parse-json@5.2.0 - pretty-format: registry.npmmirror.com/pretty-format@27.5.1 - slash: registry.npmmirror.com/slash@3.0.0 - strip-json-comments: registry.npmmirror.com/strip-json-comments@3.1.1 - transitivePeerDependencies: - - bufferutil - - canvas - - supports-color - - utf-8-validate - dev: true - - registry.npmmirror.com/jest-diff@27.5.1: - resolution: {integrity: sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-diff/-/jest-diff-27.5.1.tgz} - name: jest-diff - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - chalk: registry.npmmirror.com/chalk@4.1.2 - diff-sequences: registry.npmmirror.com/diff-sequences@27.5.1 - jest-get-type: registry.npmmirror.com/jest-get-type@27.5.1 - pretty-format: registry.npmmirror.com/pretty-format@27.5.1 - dev: true - - registry.npmmirror.com/jest-docblock@27.5.1: - resolution: {integrity: sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-docblock/-/jest-docblock-27.5.1.tgz} - name: jest-docblock - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - detect-newline: registry.npmmirror.com/detect-newline@3.1.0 - dev: true - - registry.npmmirror.com/jest-each@27.5.1: - resolution: {integrity: sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-each/-/jest-each-27.5.1.tgz} - name: jest-each - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - '@jest/types': registry.npmmirror.com/@jest/types@27.5.1 - chalk: registry.npmmirror.com/chalk@4.1.2 - jest-get-type: registry.npmmirror.com/jest-get-type@27.5.1 - jest-util: registry.npmmirror.com/jest-util@27.5.1 - pretty-format: registry.npmmirror.com/pretty-format@27.5.1 - dev: true - - registry.npmmirror.com/jest-environment-jsdom@27.5.1: - resolution: {integrity: sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz} - name: jest-environment-jsdom - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - '@jest/environment': registry.npmmirror.com/@jest/environment@27.5.1 - '@jest/fake-timers': registry.npmmirror.com/@jest/fake-timers@27.5.1 - '@jest/types': registry.npmmirror.com/@jest/types@27.5.1 - '@types/node': registry.npmmirror.com/@types/node@20.5.9 - jest-mock: registry.npmmirror.com/jest-mock@27.5.1 - jest-util: registry.npmmirror.com/jest-util@27.5.1 - jsdom: registry.npmmirror.com/jsdom@16.7.0 - transitivePeerDependencies: - - bufferutil - - canvas - - supports-color - - utf-8-validate - dev: true - - registry.npmmirror.com/jest-environment-node@27.5.1: - resolution: {integrity: sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-environment-node/-/jest-environment-node-27.5.1.tgz} - name: jest-environment-node - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - '@jest/environment': registry.npmmirror.com/@jest/environment@27.5.1 - '@jest/fake-timers': registry.npmmirror.com/@jest/fake-timers@27.5.1 - '@jest/types': registry.npmmirror.com/@jest/types@27.5.1 - '@types/node': registry.npmmirror.com/@types/node@20.5.9 - jest-mock: registry.npmmirror.com/jest-mock@27.5.1 - jest-util: registry.npmmirror.com/jest-util@27.5.1 - dev: true - - registry.npmmirror.com/jest-get-type@27.5.1: - resolution: {integrity: sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-get-type/-/jest-get-type-27.5.1.tgz} - name: jest-get-type - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dev: true - - registry.npmmirror.com/jest-haste-map@27.5.1: - resolution: {integrity: sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-haste-map/-/jest-haste-map-27.5.1.tgz} - name: jest-haste-map - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - '@jest/types': registry.npmmirror.com/@jest/types@27.5.1 - '@types/graceful-fs': registry.npmmirror.com/@types/graceful-fs@4.1.6 - '@types/node': registry.npmmirror.com/@types/node@20.5.9 - anymatch: registry.npmmirror.com/anymatch@3.1.3 - fb-watchman: registry.npmmirror.com/fb-watchman@2.0.2 - graceful-fs: registry.npmmirror.com/graceful-fs@4.2.11 - jest-regex-util: registry.npmmirror.com/jest-regex-util@27.5.1 - jest-serializer: registry.npmmirror.com/jest-serializer@27.5.1 - jest-util: registry.npmmirror.com/jest-util@27.5.1 - jest-worker: registry.npmmirror.com/jest-worker@27.5.1 - micromatch: registry.npmmirror.com/micromatch@4.0.5 - walker: registry.npmmirror.com/walker@1.0.8 - optionalDependencies: - fsevents: registry.npmmirror.com/fsevents@2.3.3 - dev: true - - registry.npmmirror.com/jest-jasmine2@27.5.1: - resolution: {integrity: sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-jasmine2/-/jest-jasmine2-27.5.1.tgz} - name: jest-jasmine2 - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - '@jest/environment': registry.npmmirror.com/@jest/environment@27.5.1 - '@jest/source-map': registry.npmmirror.com/@jest/source-map@27.5.1 - '@jest/test-result': registry.npmmirror.com/@jest/test-result@27.5.1 - '@jest/types': registry.npmmirror.com/@jest/types@27.5.1 - '@types/node': registry.npmmirror.com/@types/node@20.5.9 - chalk: registry.npmmirror.com/chalk@4.1.2 - co: registry.npmmirror.com/co@4.6.0 - expect: registry.npmmirror.com/expect@27.5.1 - is-generator-fn: registry.npmmirror.com/is-generator-fn@2.1.0 - jest-each: registry.npmmirror.com/jest-each@27.5.1 - jest-matcher-utils: registry.npmmirror.com/jest-matcher-utils@27.5.1 - jest-message-util: registry.npmmirror.com/jest-message-util@27.5.1 - jest-runtime: registry.npmmirror.com/jest-runtime@27.5.1 - jest-snapshot: registry.npmmirror.com/jest-snapshot@27.5.1 - jest-util: registry.npmmirror.com/jest-util@27.5.1 - pretty-format: registry.npmmirror.com/pretty-format@27.5.1 - throat: registry.npmmirror.com/throat@6.0.2 - transitivePeerDependencies: - - supports-color - dev: true - - registry.npmmirror.com/jest-leak-detector@27.5.1: - resolution: {integrity: sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-leak-detector/-/jest-leak-detector-27.5.1.tgz} - name: jest-leak-detector - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - jest-get-type: registry.npmmirror.com/jest-get-type@27.5.1 - pretty-format: registry.npmmirror.com/pretty-format@27.5.1 - dev: true - - registry.npmmirror.com/jest-matcher-utils@27.5.1: - resolution: {integrity: sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz} - name: jest-matcher-utils - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - chalk: registry.npmmirror.com/chalk@4.1.2 - jest-diff: registry.npmmirror.com/jest-diff@27.5.1 - jest-get-type: registry.npmmirror.com/jest-get-type@27.5.1 - pretty-format: registry.npmmirror.com/pretty-format@27.5.1 - dev: true - - registry.npmmirror.com/jest-message-util@27.5.1: - resolution: {integrity: sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-message-util/-/jest-message-util-27.5.1.tgz} - name: jest-message-util - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - '@babel/code-frame': registry.npmmirror.com/@babel/code-frame@7.22.13 - '@jest/types': registry.npmmirror.com/@jest/types@27.5.1 - '@types/stack-utils': registry.npmmirror.com/@types/stack-utils@2.0.1 - chalk: registry.npmmirror.com/chalk@4.1.2 - graceful-fs: registry.npmmirror.com/graceful-fs@4.2.11 - micromatch: registry.npmmirror.com/micromatch@4.0.5 - pretty-format: registry.npmmirror.com/pretty-format@27.5.1 - slash: registry.npmmirror.com/slash@3.0.0 - stack-utils: registry.npmmirror.com/stack-utils@2.0.6 - dev: true - - registry.npmmirror.com/jest-mock@27.5.1: - resolution: {integrity: sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-mock/-/jest-mock-27.5.1.tgz} - name: jest-mock - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - '@jest/types': registry.npmmirror.com/@jest/types@27.5.1 - '@types/node': registry.npmmirror.com/@types/node@20.5.9 - dev: true - - registry.npmmirror.com/jest-pnp-resolver@1.2.3(jest-resolve@27.5.1): - resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz} - id: registry.npmmirror.com/jest-pnp-resolver/1.2.3 - name: jest-pnp-resolver - version: 1.2.3 - engines: {node: '>=6'} - peerDependencies: - jest-resolve: '*' - peerDependenciesMeta: - jest-resolve: - optional: true - dependencies: - jest-resolve: registry.npmmirror.com/jest-resolve@27.5.1 - dev: true - - registry.npmmirror.com/jest-regex-util@27.5.1: - resolution: {integrity: sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-regex-util/-/jest-regex-util-27.5.1.tgz} - name: jest-regex-util - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dev: true - - registry.npmmirror.com/jest-resolve-dependencies@27.5.1: - resolution: {integrity: sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-resolve-dependencies/-/jest-resolve-dependencies-27.5.1.tgz} - name: jest-resolve-dependencies - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - '@jest/types': registry.npmmirror.com/@jest/types@27.5.1 - jest-regex-util: registry.npmmirror.com/jest-regex-util@27.5.1 - jest-snapshot: registry.npmmirror.com/jest-snapshot@27.5.1 - transitivePeerDependencies: - - supports-color - dev: true - - registry.npmmirror.com/jest-resolve@27.5.1: - resolution: {integrity: sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-resolve/-/jest-resolve-27.5.1.tgz} - name: jest-resolve - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - '@jest/types': registry.npmmirror.com/@jest/types@27.5.1 - chalk: registry.npmmirror.com/chalk@4.1.2 - graceful-fs: registry.npmmirror.com/graceful-fs@4.2.11 - jest-haste-map: registry.npmmirror.com/jest-haste-map@27.5.1 - jest-pnp-resolver: registry.npmmirror.com/jest-pnp-resolver@1.2.3(jest-resolve@27.5.1) - jest-util: registry.npmmirror.com/jest-util@27.5.1 - jest-validate: registry.npmmirror.com/jest-validate@27.5.1 - resolve: registry.npmmirror.com/resolve@1.22.4 - resolve.exports: registry.npmmirror.com/resolve.exports@1.1.1 - slash: registry.npmmirror.com/slash@3.0.0 - dev: true - - registry.npmmirror.com/jest-runner@27.5.1: - resolution: {integrity: sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-runner/-/jest-runner-27.5.1.tgz} - name: jest-runner - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - '@jest/console': registry.npmmirror.com/@jest/console@27.5.1 - '@jest/environment': registry.npmmirror.com/@jest/environment@27.5.1 - '@jest/test-result': registry.npmmirror.com/@jest/test-result@27.5.1 - '@jest/transform': registry.npmmirror.com/@jest/transform@27.5.1 - '@jest/types': registry.npmmirror.com/@jest/types@27.5.1 - '@types/node': registry.npmmirror.com/@types/node@20.5.9 - chalk: registry.npmmirror.com/chalk@4.1.2 - emittery: registry.npmmirror.com/emittery@0.8.1 - graceful-fs: registry.npmmirror.com/graceful-fs@4.2.11 - jest-docblock: registry.npmmirror.com/jest-docblock@27.5.1 - jest-environment-jsdom: registry.npmmirror.com/jest-environment-jsdom@27.5.1 - jest-environment-node: registry.npmmirror.com/jest-environment-node@27.5.1 - jest-haste-map: registry.npmmirror.com/jest-haste-map@27.5.1 - jest-leak-detector: registry.npmmirror.com/jest-leak-detector@27.5.1 - jest-message-util: registry.npmmirror.com/jest-message-util@27.5.1 - jest-resolve: registry.npmmirror.com/jest-resolve@27.5.1 - jest-runtime: registry.npmmirror.com/jest-runtime@27.5.1 - jest-util: registry.npmmirror.com/jest-util@27.5.1 - jest-worker: registry.npmmirror.com/jest-worker@27.5.1 - source-map-support: registry.npmmirror.com/source-map-support@0.5.21 - throat: registry.npmmirror.com/throat@6.0.2 - transitivePeerDependencies: - - bufferutil - - canvas - - supports-color - - utf-8-validate - dev: true - - registry.npmmirror.com/jest-runtime@27.5.1: - resolution: {integrity: sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-runtime/-/jest-runtime-27.5.1.tgz} - name: jest-runtime - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - '@jest/environment': registry.npmmirror.com/@jest/environment@27.5.1 - '@jest/fake-timers': registry.npmmirror.com/@jest/fake-timers@27.5.1 - '@jest/globals': registry.npmmirror.com/@jest/globals@27.5.1 - '@jest/source-map': registry.npmmirror.com/@jest/source-map@27.5.1 - '@jest/test-result': registry.npmmirror.com/@jest/test-result@27.5.1 - '@jest/transform': registry.npmmirror.com/@jest/transform@27.5.1 - '@jest/types': registry.npmmirror.com/@jest/types@27.5.1 - chalk: registry.npmmirror.com/chalk@4.1.2 - cjs-module-lexer: registry.npmmirror.com/cjs-module-lexer@1.2.3 - collect-v8-coverage: registry.npmmirror.com/collect-v8-coverage@1.0.2 - execa: registry.npmmirror.com/execa@5.1.1 - glob: registry.npmmirror.com/glob@7.2.3 - graceful-fs: registry.npmmirror.com/graceful-fs@4.2.11 - jest-haste-map: registry.npmmirror.com/jest-haste-map@27.5.1 - jest-message-util: registry.npmmirror.com/jest-message-util@27.5.1 - jest-mock: registry.npmmirror.com/jest-mock@27.5.1 - jest-regex-util: registry.npmmirror.com/jest-regex-util@27.5.1 - jest-resolve: registry.npmmirror.com/jest-resolve@27.5.1 - jest-snapshot: registry.npmmirror.com/jest-snapshot@27.5.1 - jest-util: registry.npmmirror.com/jest-util@27.5.1 - slash: registry.npmmirror.com/slash@3.0.0 - strip-bom: registry.npmmirror.com/strip-bom@4.0.0 - transitivePeerDependencies: - - supports-color - dev: true - - registry.npmmirror.com/jest-serializer@27.5.1: - resolution: {integrity: sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-serializer/-/jest-serializer-27.5.1.tgz} - name: jest-serializer - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - '@types/node': registry.npmmirror.com/@types/node@20.5.9 - graceful-fs: registry.npmmirror.com/graceful-fs@4.2.11 - dev: true - - registry.npmmirror.com/jest-snapshot@27.5.1: - resolution: {integrity: sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-snapshot/-/jest-snapshot-27.5.1.tgz} - name: jest-snapshot - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.15 - '@babel/generator': registry.npmmirror.com/@babel/generator@7.22.15 - '@babel/plugin-syntax-typescript': registry.npmmirror.com/@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.22.15) - '@babel/traverse': registry.npmmirror.com/@babel/traverse@7.22.15 - '@babel/types': registry.npmmirror.com/@babel/types@7.22.15 - '@jest/transform': registry.npmmirror.com/@jest/transform@27.5.1 - '@jest/types': registry.npmmirror.com/@jest/types@27.5.1 - '@types/babel__traverse': registry.npmmirror.com/@types/babel__traverse@7.20.1 - '@types/prettier': registry.npmmirror.com/@types/prettier@2.7.3 - babel-preset-current-node-syntax: registry.npmmirror.com/babel-preset-current-node-syntax@1.0.1(@babel/core@7.22.15) - chalk: registry.npmmirror.com/chalk@4.1.2 - expect: registry.npmmirror.com/expect@27.5.1 - graceful-fs: registry.npmmirror.com/graceful-fs@4.2.11 - jest-diff: registry.npmmirror.com/jest-diff@27.5.1 - jest-get-type: registry.npmmirror.com/jest-get-type@27.5.1 - jest-haste-map: registry.npmmirror.com/jest-haste-map@27.5.1 - jest-matcher-utils: registry.npmmirror.com/jest-matcher-utils@27.5.1 - jest-message-util: registry.npmmirror.com/jest-message-util@27.5.1 - jest-util: registry.npmmirror.com/jest-util@27.5.1 - natural-compare: registry.npmmirror.com/natural-compare@1.4.0 - pretty-format: registry.npmmirror.com/pretty-format@27.5.1 - semver: registry.npmmirror.com/semver@7.5.4 - transitivePeerDependencies: - - supports-color - dev: true - - registry.npmmirror.com/jest-util@27.5.1: - resolution: {integrity: sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-util/-/jest-util-27.5.1.tgz} - name: jest-util - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - '@jest/types': registry.npmmirror.com/@jest/types@27.5.1 - '@types/node': registry.npmmirror.com/@types/node@20.5.9 - chalk: registry.npmmirror.com/chalk@4.1.2 - ci-info: registry.npmmirror.com/ci-info@3.8.0 - graceful-fs: registry.npmmirror.com/graceful-fs@4.2.11 - picomatch: registry.npmmirror.com/picomatch@2.3.1 - dev: true - - registry.npmmirror.com/jest-validate@27.5.1: - resolution: {integrity: sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-validate/-/jest-validate-27.5.1.tgz} - name: jest-validate - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - '@jest/types': registry.npmmirror.com/@jest/types@27.5.1 - camelcase: registry.npmmirror.com/camelcase@6.3.0 - chalk: registry.npmmirror.com/chalk@4.1.2 - jest-get-type: registry.npmmirror.com/jest-get-type@27.5.1 - leven: registry.npmmirror.com/leven@3.1.0 - pretty-format: registry.npmmirror.com/pretty-format@27.5.1 - dev: true - - registry.npmmirror.com/jest-watcher@27.5.1: - resolution: {integrity: sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-watcher/-/jest-watcher-27.5.1.tgz} - name: jest-watcher - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - '@jest/test-result': registry.npmmirror.com/@jest/test-result@27.5.1 - '@jest/types': registry.npmmirror.com/@jest/types@27.5.1 - '@types/node': registry.npmmirror.com/@types/node@20.5.9 - ansi-escapes: registry.npmmirror.com/ansi-escapes@4.3.2 - chalk: registry.npmmirror.com/chalk@4.1.2 - jest-util: registry.npmmirror.com/jest-util@27.5.1 - string-length: registry.npmmirror.com/string-length@4.0.2 - dev: true - - registry.npmmirror.com/jest-worker@27.5.1: - resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-worker/-/jest-worker-27.5.1.tgz} - name: jest-worker - version: 27.5.1 - engines: {node: '>= 10.13.0'} - dependencies: - '@types/node': registry.npmmirror.com/@types/node@20.5.9 - merge-stream: registry.npmmirror.com/merge-stream@2.0.0 - supports-color: registry.npmmirror.com/supports-color@8.1.1 - dev: true - - registry.npmmirror.com/jest@27.0.4: - resolution: {integrity: sha512-Px1iKFooXgGSkk1H8dJxxBIrM3tsc5SIuI4kfKYK2J+4rvCvPGr/cXktxh0e9zIPQ5g09kOMNfHQEmusBUf/ZA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest/-/jest-27.0.4.tgz} - name: jest - version: 27.0.4 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - hasBin: true - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 - peerDependenciesMeta: - node-notifier: - optional: true - dependencies: - '@jest/core': registry.npmmirror.com/@jest/core@27.5.1 - import-local: registry.npmmirror.com/import-local@3.1.0 - jest-cli: registry.npmmirror.com/jest-cli@27.5.1 - transitivePeerDependencies: - - bufferutil - - canvas - - supports-color - - ts-node - - utf-8-validate - dev: true - - registry.npmmirror.com/jimp@0.10.3: - resolution: {integrity: sha512-meVWmDMtyUG5uYjFkmzu0zBgnCvvxwWNi27c4cg55vWNVC9ES4Lcwb+ogx+uBBQE3Q+dLKjXaLl0JVW+nUNwbQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jimp/-/jimp-0.10.3.tgz} - name: jimp - version: 0.10.3 - dependencies: - '@babel/runtime': registry.npmmirror.com/@babel/runtime@7.22.15 - '@jimp/custom': registry.npmmirror.com/@jimp/custom@0.10.3 - '@jimp/plugins': registry.npmmirror.com/@jimp/plugins@0.10.3(@jimp/custom@0.10.3) - '@jimp/types': registry.npmmirror.com/@jimp/types@0.10.3(@jimp/custom@0.10.3) - core-js: registry.npmmirror.com/core-js@3.32.1 - regenerator-runtime: registry.npmmirror.com/regenerator-runtime@0.13.11 - dev: false - - registry.npmmirror.com/jpeg-js@0.3.7: - resolution: {integrity: sha512-9IXdWudL61npZjvLuVe/ktHiA41iE8qFyLB+4VDTblEsWBzeg8WQTlktdUK4CdncUqtUgUg0bbOmTE2bKBKaBQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jpeg-js/-/jpeg-js-0.3.7.tgz} - name: jpeg-js - version: 0.3.7 - dev: false - - 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} - name: js-tokens - version: 4.0.0 - - registry.npmmirror.com/js-yaml@3.14.1: - resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/js-yaml/-/js-yaml-3.14.1.tgz} - name: js-yaml - version: 3.14.1 - hasBin: true - dependencies: - argparse: registry.npmmirror.com/argparse@1.0.10 - esprima: registry.npmmirror.com/esprima@4.0.1 - dev: true - - registry.npmmirror.com/jsdom@16.7.0: - resolution: {integrity: sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jsdom/-/jsdom-16.7.0.tgz} - name: jsdom - version: 16.7.0 - engines: {node: '>=10'} - peerDependencies: - canvas: ^2.5.0 - peerDependenciesMeta: - canvas: - optional: true - dependencies: - abab: registry.npmmirror.com/abab@2.0.6 - acorn: registry.npmmirror.com/acorn@8.10.0 - acorn-globals: registry.npmmirror.com/acorn-globals@6.0.0 - cssom: registry.npmmirror.com/cssom@0.4.4 - cssstyle: registry.npmmirror.com/cssstyle@2.3.0 - data-urls: registry.npmmirror.com/data-urls@2.0.0 - decimal.js: registry.npmmirror.com/decimal.js@10.4.3 - domexception: registry.npmmirror.com/domexception@2.0.1 - escodegen: registry.npmmirror.com/escodegen@2.1.0 - form-data: registry.npmmirror.com/form-data@3.0.1 - html-encoding-sniffer: registry.npmmirror.com/html-encoding-sniffer@2.0.1 - http-proxy-agent: registry.npmmirror.com/http-proxy-agent@4.0.1 - https-proxy-agent: registry.npmmirror.com/https-proxy-agent@5.0.1 - is-potential-custom-element-name: registry.npmmirror.com/is-potential-custom-element-name@1.0.1 - nwsapi: registry.npmmirror.com/nwsapi@2.2.7 - parse5: registry.npmmirror.com/parse5@6.0.1 - saxes: registry.npmmirror.com/saxes@5.0.1 - symbol-tree: registry.npmmirror.com/symbol-tree@3.2.4 - tough-cookie: registry.npmmirror.com/tough-cookie@4.1.3 - w3c-hr-time: registry.npmmirror.com/w3c-hr-time@1.0.2 - w3c-xmlserializer: registry.npmmirror.com/w3c-xmlserializer@2.0.0 - webidl-conversions: registry.npmmirror.com/webidl-conversions@6.1.0 - whatwg-encoding: registry.npmmirror.com/whatwg-encoding@1.0.5 - whatwg-mimetype: registry.npmmirror.com/whatwg-mimetype@2.3.0 - whatwg-url: registry.npmmirror.com/whatwg-url@8.7.0 - ws: registry.npmmirror.com/ws@7.5.9 - xml-name-validator: registry.npmmirror.com/xml-name-validator@3.0.0 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - dev: true - - registry.npmmirror.com/jsesc@0.5.0: - resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jsesc/-/jsesc-0.5.0.tgz} - name: jsesc - version: 0.5.0 - hasBin: true - 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} - name: jsesc - version: 2.5.2 - engines: {node: '>=4'} - hasBin: true - - registry.npmmirror.com/json-parse-even-better-errors@2.3.1: - resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz} - name: json-parse-even-better-errors - version: 2.3.1 - dev: true - - registry.npmmirror.com/json5@2.2.3: - resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/json5/-/json5-2.2.3.tgz} - name: json5 - version: 2.2.3 - engines: {node: '>=6'} - hasBin: true - - registry.npmmirror.com/jsonc-parser@3.2.0: - resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jsonc-parser/-/jsonc-parser-3.2.0.tgz} - name: jsonc-parser - version: 3.2.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} - name: jsonfile - version: 6.1.0 - dependencies: - universalify: registry.npmmirror.com/universalify@2.0.0 - optionalDependencies: - graceful-fs: registry.npmmirror.com/graceful-fs@4.2.11 - - registry.npmmirror.com/kleur@3.0.3: - resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/kleur/-/kleur-3.0.3.tgz} - name: kleur - version: 3.0.3 - engines: {node: '>=6'} - dev: true - - registry.npmmirror.com/lcid@3.1.1: - resolution: {integrity: sha512-M6T051+5QCGLBQb8id3hdvIW8+zeFV2FyBGFS9IEK5H9Wt4MueD4bW1eWikpHgZp+5xR3l5c8pZUkQsIA0BFZg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/lcid/-/lcid-3.1.1.tgz} - name: lcid - version: 3.1.1 - engines: {node: '>=8'} - dependencies: - invert-kv: registry.npmmirror.com/invert-kv@3.0.1 - - registry.npmmirror.com/leven@3.1.0: - resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/leven/-/leven-3.1.0.tgz} - name: leven - version: 3.1.0 - engines: {node: '>=6'} - dev: true - - registry.npmmirror.com/licia@1.38.2: - resolution: {integrity: sha512-QsX3fZt88e1KaNdZXTSXqGYNHFXMV8xgfwa3eCTYdv8k4OLQimxwjTdXXej11BdSyUUp0rCZROI8rcTvnZRZ7w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/licia/-/licia-1.38.2.tgz} - name: licia - version: 1.38.2 - - registry.npmmirror.com/lilconfig@2.1.0: - resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/lilconfig/-/lilconfig-2.1.0.tgz} - name: lilconfig - version: 2.1.0 - engines: {node: '>=10'} - - registry.npmmirror.com/lines-and-columns@1.2.4: - resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz} - name: lines-and-columns - version: 1.2.4 - dev: true - - registry.npmmirror.com/load-bmfont@1.4.1: - resolution: {integrity: sha512-8UyQoYmdRDy81Brz6aLAUhfZLwr5zV0L3taTQ4hju7m6biuwiWiJXjPhBJxbUQJA8PrkvJ/7Enqmwk2sM14soA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/load-bmfont/-/load-bmfont-1.4.1.tgz} - name: load-bmfont - version: 1.4.1 - dependencies: - buffer-equal: registry.npmmirror.com/buffer-equal@0.0.1 - mime: registry.npmmirror.com/mime@1.6.0 - parse-bmfont-ascii: registry.npmmirror.com/parse-bmfont-ascii@1.0.6 - parse-bmfont-binary: registry.npmmirror.com/parse-bmfont-binary@1.0.6 - parse-bmfont-xml: registry.npmmirror.com/parse-bmfont-xml@1.1.4 - phin: registry.npmmirror.com/phin@2.9.3 - xhr: registry.npmmirror.com/xhr@2.6.0 - xtend: registry.npmmirror.com/xtend@4.0.2 - dev: false - - registry.npmmirror.com/loader-utils@3.2.1: - resolution: {integrity: sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/loader-utils/-/loader-utils-3.2.1.tgz} - name: loader-utils - version: 3.2.1 - 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} - name: localstorage-polyfill - version: 1.0.1 - engines: {node: '>=6'} - dev: false - - registry.npmmirror.com/locate-path@5.0.0: - resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/locate-path/-/locate-path-5.0.0.tgz} - name: locate-path - version: 5.0.0 - engines: {node: '>=8'} - dependencies: - p-locate: registry.npmmirror.com/p-locate@4.1.0 - dev: true - - 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} - name: lodash.camelcase - version: 4.3.0 - - registry.npmmirror.com/lodash.debounce@4.0.8: - resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz} - name: lodash.debounce - version: 4.0.8 - 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} - name: lodash - version: 4.17.21 - dev: true - - registry.npmmirror.com/lru-cache@5.1.1: - resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/lru-cache/-/lru-cache-5.1.1.tgz} - name: lru-cache - version: 5.1.1 - dependencies: - yallist: registry.npmmirror.com/yallist@3.1.1 - - 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} - name: magic-string - version: 0.25.9 - dependencies: - sourcemap-codec: registry.npmmirror.com/sourcemap-codec@1.4.8 - - registry.npmmirror.com/magic-string@0.30.3: - resolution: {integrity: sha512-B7xGbll2fG/VjP+SWg4sX3JynwIU0mjoTc6MPpKNuIvftk6u6vqhDnk1R80b8C2GBR6ywqy+1DcKBrevBg+bmw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/magic-string/-/magic-string-0.30.3.tgz} - name: magic-string - version: 0.30.3 - engines: {node: '>=12'} - dependencies: - '@jridgewell/sourcemap-codec': registry.npmmirror.com/@jridgewell/sourcemap-codec@1.4.15 - - registry.npmmirror.com/make-dir@4.0.0: - resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/make-dir/-/make-dir-4.0.0.tgz} - name: make-dir - version: 4.0.0 - engines: {node: '>=10'} - dependencies: - semver: registry.npmmirror.com/semver@7.5.4 - dev: true - - registry.npmmirror.com/makeerror@1.0.12: - resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/makeerror/-/makeerror-1.0.12.tgz} - name: makeerror - version: 1.0.12 - dependencies: - tmpl: registry.npmmirror.com/tmpl@1.0.5 - dev: true - - registry.npmmirror.com/marked@9.0.0: - resolution: {integrity: sha512-37yoTpjU+TSXb9OBYY5n78z/CqXh76KiQj9xsKxEdztzU9fRLmbWO5YqKxgCVGKlNdexppnbKTkwB3RipVri8w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/marked/-/marked-9.0.0.tgz} - name: marked - version: 9.0.0 - engines: {node: '>= 16'} - hasBin: true - dev: false - - 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} - name: media-typer - version: 0.3.0 - 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} - 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} - name: merge-stream - version: 2.0.0 - dev: true - - 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} - name: merge2 - version: 1.4.1 - engines: {node: '>= 8'} - - 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} - name: merge - version: 2.1.1 - - 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} - name: methods - version: 1.1.2 - 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} - name: micromatch - version: 4.0.5 - 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} - name: mime-db - version: 1.52.0 - engines: {node: '>= 0.6'} - - 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} - name: mime-types - version: 2.1.35 - engines: {node: '>= 0.6'} - dependencies: - mime-db: registry.npmmirror.com/mime-db@1.52.0 - - 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} - name: mime - version: 1.6.0 - engines: {node: '>=4'} - hasBin: 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} - name: mime - version: 3.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} - name: mimic-fn - version: 2.1.0 - engines: {node: '>=6'} - dev: true - - registry.npmmirror.com/min-document@2.19.0: - resolution: {integrity: sha512-9Wy1B3m3f66bPPmU5hdA4DR4PB2OfDU/+GS3yAB7IQozE3tqXaVv2zOjgla7MEGSRv95+ILmOuvhLkOK6wJtCQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/min-document/-/min-document-2.19.0.tgz} - name: min-document - version: 2.19.0 - dependencies: - dom-walk: registry.npmmirror.com/dom-walk@0.1.2 - dev: false - - 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/minimist@1.2.8: - resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/minimist/-/minimist-1.2.8.tgz} - name: minimist - version: 1.2.8 - dev: false - - registry.npmmirror.com/mkdirp@0.5.6: - resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/mkdirp/-/mkdirp-0.5.6.tgz} - name: mkdirp - version: 0.5.6 - hasBin: true - dependencies: - minimist: registry.npmmirror.com/minimist@1.2.8 - dev: false - - registry.npmmirror.com/module-alias@2.2.3: - resolution: {integrity: sha512-23g5BFj4zdQL/b6tor7Ji+QY4pEfNH784BMslY9Qb0UnJWRAt+lQGLYmRaM0KDBwIG23ffEBELhZDP2rhi9f/Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/module-alias/-/module-alias-2.2.3.tgz} - name: module-alias - version: 2.2.3 - - registry.npmmirror.com/mp-html@2.4.2: - resolution: {integrity: sha512-MSfJh5ckuaI2uibeO4qiUl2e/j5fpXy6cmW/ZzSkb+U3rTJfMSNzODqrDwG0YWOd8BVI+tD9/jLZiBhJbMupUg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/mp-html/-/mp-html-2.4.2.tgz} - name: mp-html - version: 2.4.2 - dev: false - - 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} - 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} - 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} - name: ms - version: 2.1.3 - dev: true - - registry.npmmirror.com/nanoid@3.3.6: - resolution: {integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/nanoid/-/nanoid-3.3.6.tgz} - name: nanoid - version: 3.3.6 - engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} - hasBin: true - - 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} - name: negotiator - version: 0.6.3 - engines: {node: '>= 0.6'} - dev: true - - registry.npmmirror.com/node-int64@0.4.0: - resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/node-int64/-/node-int64-0.4.0.tgz} - name: node-int64 - version: 0.4.0 - dev: true - - registry.npmmirror.com/node-releases@2.0.13: - resolution: {integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/node-releases/-/node-releases-2.0.13.tgz} - name: node-releases - version: 2.0.13 - - 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} - name: normalize-path - version: 3.0.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} - name: normalize-range - version: 0.1.2 - 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} - name: npm-run-path - version: 4.0.1 - engines: {node: '>=8'} - dependencies: - path-key: registry.npmmirror.com/path-key@3.1.1 - dev: true - - registry.npmmirror.com/nwsapi@2.2.7: - resolution: {integrity: sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/nwsapi/-/nwsapi-2.2.7.tgz} - name: nwsapi - version: 2.2.7 - dev: true - - registry.npmmirror.com/object-inspect@1.12.3: - resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/object-inspect/-/object-inspect-1.12.3.tgz} - name: object-inspect - version: 1.12.3 - dev: true - - registry.npmmirror.com/omggif@1.0.10: - resolution: {integrity: sha512-LMJTtvgc/nugXj0Vcrrs68Mn2D1r0zf630VNtqtpI1FEO7e+O9FP4gqs9AcnBaSEeoHIPm28u6qgPR0oyEpGSw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/omggif/-/omggif-1.0.10.tgz} - name: omggif - version: 1.0.10 - dev: false - - 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} - name: on-finished - version: 2.4.1 - 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} - name: onetime - version: 5.1.2 - engines: {node: '>=6'} - dependencies: - mimic-fn: registry.npmmirror.com/mimic-fn@2.1.0 - dev: true - - registry.npmmirror.com/os-locale-s-fix@1.0.8-fix-1: - resolution: {integrity: sha512-Sv0OvhPiMutICiwORAUefv02DCPb62IelBmo8ZsSrRHyI3FStqIWZvjqDkvtjU+lcujo7UNir+dCwKSqlEQ/5w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/os-locale-s-fix/-/os-locale-s-fix-1.0.8-fix-1.tgz} - name: os-locale-s-fix - version: 1.0.8-fix-1 - engines: {node: '>=10', yarn: ^1.22.4} - dependencies: - lcid: registry.npmmirror.com/lcid@3.1.1 - - registry.npmmirror.com/p-limit@2.3.0: - resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/p-limit/-/p-limit-2.3.0.tgz} - name: p-limit - version: 2.3.0 - engines: {node: '>=6'} - dependencies: - p-try: registry.npmmirror.com/p-try@2.2.0 - dev: true - - registry.npmmirror.com/p-locate@4.1.0: - resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/p-locate/-/p-locate-4.1.0.tgz} - name: p-locate - version: 4.1.0 - engines: {node: '>=8'} - dependencies: - p-limit: registry.npmmirror.com/p-limit@2.3.0 - dev: true - - registry.npmmirror.com/p-try@2.2.0: - resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/p-try/-/p-try-2.2.0.tgz} - name: p-try - version: 2.2.0 - engines: {node: '>=6'} - dev: true - - registry.npmmirror.com/pako@1.0.11: - resolution: {integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/pako/-/pako-1.0.11.tgz} - name: pako - version: 1.0.11 - dev: false - - registry.npmmirror.com/parse-bmfont-ascii@1.0.6: - resolution: {integrity: sha512-U4RrVsUFCleIOBsIGYOMKjn9PavsGOXxbvYGtMOEfnId0SVNsgehXh1DxUdVPLoxd5mvcEtvmKs2Mmf0Mpa1ZA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/parse-bmfont-ascii/-/parse-bmfont-ascii-1.0.6.tgz} - name: parse-bmfont-ascii - version: 1.0.6 - dev: false - - registry.npmmirror.com/parse-bmfont-binary@1.0.6: - resolution: {integrity: sha512-GxmsRea0wdGdYthjuUeWTMWPqm2+FAd4GI8vCvhgJsFnoGhTrLhXDDupwTo7rXVAgaLIGoVHDZS9p/5XbSqeWA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/parse-bmfont-binary/-/parse-bmfont-binary-1.0.6.tgz} - name: parse-bmfont-binary - version: 1.0.6 - dev: false - - registry.npmmirror.com/parse-bmfont-xml@1.1.4: - resolution: {integrity: sha512-bjnliEOmGv3y1aMEfREMBJ9tfL3WR0i0CKPj61DnSLaoxWR3nLrsQrEbCId/8rF4NyRF0cCqisSVXyQYWM+mCQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/parse-bmfont-xml/-/parse-bmfont-xml-1.1.4.tgz} - name: parse-bmfont-xml - version: 1.1.4 - dependencies: - xml-parse-from-string: registry.npmmirror.com/xml-parse-from-string@1.0.1 - xml2js: registry.npmmirror.com/xml2js@0.4.23 - dev: false - - 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} - name: parse-css-font - version: 4.0.0 - dependencies: - css-font-size-keywords: registry.npmmirror.com/css-font-size-keywords@1.0.0 - css-font-stretch-keywords: registry.npmmirror.com/css-font-stretch-keywords@1.0.1 - css-font-style-keywords: registry.npmmirror.com/css-font-style-keywords@1.0.1 - css-font-weight-keywords: registry.npmmirror.com/css-font-weight-keywords@1.0.0 - css-list-helpers: registry.npmmirror.com/css-list-helpers@2.0.0 - css-system-font-keywords: registry.npmmirror.com/css-system-font-keywords@1.0.0 - unquote: registry.npmmirror.com/unquote@1.1.1 - dev: false - - registry.npmmirror.com/parse-headers@2.0.5: - resolution: {integrity: sha512-ft3iAoLOB/MlwbNXgzy43SWGP6sQki2jQvAyBg/zDFAgr9bfNWZIUj42Kw2eJIl8kEi4PbgE6U1Zau/HwI75HA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/parse-headers/-/parse-headers-2.0.5.tgz} - name: parse-headers - version: 2.0.5 - dev: false - - registry.npmmirror.com/parse-json@5.2.0: - resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/parse-json/-/parse-json-5.2.0.tgz} - name: parse-json - version: 5.2.0 - engines: {node: '>=8'} - dependencies: - '@babel/code-frame': registry.npmmirror.com/@babel/code-frame@7.22.13 - error-ex: registry.npmmirror.com/error-ex@1.3.2 - json-parse-even-better-errors: registry.npmmirror.com/json-parse-even-better-errors@2.3.1 - lines-and-columns: registry.npmmirror.com/lines-and-columns@1.2.4 - dev: true - - registry.npmmirror.com/parse5@6.0.1: - resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/parse5/-/parse5-6.0.1.tgz} - name: parse5 - version: 6.0.1 - dev: true - - 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} - name: parseurl - version: 1.3.3 - engines: {node: '>= 0.8'} - dev: true - - registry.npmmirror.com/path-exists@4.0.0: - resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/path-exists/-/path-exists-4.0.0.tgz} - name: path-exists - version: 4.0.0 - engines: {node: '>=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} - name: path-key - version: 3.1.1 - 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} - 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} - name: path-to-regexp - version: 0.1.7 - dev: true - - registry.npmmirror.com/phin@2.9.3: - resolution: {integrity: sha512-CzFr90qM24ju5f88quFC/6qohjC144rehe5n6DH900lgXmUe86+xCKc10ev56gRKC4/BkHUoG4uSiQgBiIXwDA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/phin/-/phin-2.9.3.tgz} - name: phin - version: 2.9.3 - dev: false - - 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} - 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} - name: picomatch - version: 2.3.1 - 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} - name: pify - version: 2.3.0 - engines: {node: '>=0.10.0'} - - registry.npmmirror.com/pinia@2.0.33(vue@3.2.45): - resolution: {integrity: sha512-HOj1yVV2itw6rNIrR2f7+MirGNxhORjrULL8GWgRwXsGSvEqIQ+SE0MYt6cwtpegzCda3i+rVTZM+AM7CG+kRg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/pinia/-/pinia-2.0.33.tgz} - id: registry.npmmirror.com/pinia/2.0.33 - name: pinia - version: 2.0.33 - peerDependencies: - '@vue/composition-api': ^1.4.0 - typescript: '>=4.4.4' - vue: ^2.6.14 || ^3.2.0 - peerDependenciesMeta: - '@vue/composition-api': - optional: true - typescript: - optional: true - dependencies: - '@vue/devtools-api': registry.npmmirror.com/@vue/devtools-api@6.5.0 - vue: registry.npmmirror.com/vue@3.2.45 - vue-demi: registry.npmmirror.com/vue-demi@0.14.6(vue@3.2.45) - dev: false - - registry.npmmirror.com/pirates@4.0.6: - resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/pirates/-/pirates-4.0.6.tgz} - name: pirates - version: 4.0.6 - engines: {node: '>= 6'} - dev: true - - registry.npmmirror.com/pixelmatch@4.0.2: - resolution: {integrity: sha512-J8B6xqiO37sU/gkcMglv6h5Jbd9xNER7aHzpfRdNmV4IbQBzBpe4l9XmbG+xPF/znacgu2jfEw+wHffaq/YkXA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/pixelmatch/-/pixelmatch-4.0.2.tgz} - name: pixelmatch - version: 4.0.2 - hasBin: true - dependencies: - pngjs: registry.npmmirror.com/pngjs@3.4.0 - dev: false - - registry.npmmirror.com/pkg-dir@4.2.0: - resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/pkg-dir/-/pkg-dir-4.2.0.tgz} - name: pkg-dir - version: 4.2.0 - engines: {node: '>=8'} - dependencies: - find-up: registry.npmmirror.com/find-up@4.1.0 - dev: true - - registry.npmmirror.com/pngjs@3.4.0: - resolution: {integrity: sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/pngjs/-/pngjs-3.4.0.tgz} - name: pngjs - version: 3.4.0 - engines: {node: '>=4.0.0'} - dev: false - - registry.npmmirror.com/postcss-import@14.1.0(postcss@8.4.29): - 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} - id: registry.npmmirror.com/postcss-import/14.1.0 - name: postcss-import - version: 14.1.0 - engines: {node: '>=10.0.0'} - peerDependencies: - postcss: ^8.0.0 - dependencies: - postcss: registry.npmmirror.com/postcss@8.4.29 - postcss-value-parser: registry.npmmirror.com/postcss-value-parser@4.2.0 - read-cache: registry.npmmirror.com/read-cache@1.0.0 - resolve: registry.npmmirror.com/resolve@1.22.4 - - registry.npmmirror.com/postcss-load-config@3.1.4(postcss@8.4.29): - 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} - id: registry.npmmirror.com/postcss-load-config/3.1.4 - name: postcss-load-config - version: 3.1.4 - engines: {node: '>= 10'} - peerDependencies: - postcss: '>=8.0.9' - ts-node: '>=9.0.0' - peerDependenciesMeta: - postcss: - optional: true - ts-node: - optional: true - dependencies: - lilconfig: registry.npmmirror.com/lilconfig@2.1.0 - postcss: registry.npmmirror.com/postcss@8.4.29 - yaml: registry.npmmirror.com/yaml@1.10.2 - - registry.npmmirror.com/postcss-modules-extract-imports@3.0.0(postcss@8.4.29): - 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} - id: registry.npmmirror.com/postcss-modules-extract-imports/3.0.0 - name: postcss-modules-extract-imports - version: 3.0.0 - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 - dependencies: - postcss: registry.npmmirror.com/postcss@8.4.29 - - registry.npmmirror.com/postcss-modules-local-by-default@4.0.3(postcss@8.4.29): - resolution: {integrity: sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.3.tgz} - id: registry.npmmirror.com/postcss-modules-local-by-default/4.0.3 - name: postcss-modules-local-by-default - version: 4.0.3 - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 - dependencies: - icss-utils: registry.npmmirror.com/icss-utils@5.1.0(postcss@8.4.29) - postcss: registry.npmmirror.com/postcss@8.4.29 - postcss-selector-parser: registry.npmmirror.com/postcss-selector-parser@6.0.13 - postcss-value-parser: registry.npmmirror.com/postcss-value-parser@4.2.0 - - registry.npmmirror.com/postcss-modules-scope@3.0.0(postcss@8.4.29): - 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} - id: registry.npmmirror.com/postcss-modules-scope/3.0.0 - name: postcss-modules-scope - version: 3.0.0 - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 - dependencies: - postcss: registry.npmmirror.com/postcss@8.4.29 - postcss-selector-parser: registry.npmmirror.com/postcss-selector-parser@6.0.13 - - registry.npmmirror.com/postcss-modules-values@4.0.0(postcss@8.4.29): - 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} - id: registry.npmmirror.com/postcss-modules-values/4.0.0 - name: postcss-modules-values - version: 4.0.0 - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 - dependencies: - icss-utils: registry.npmmirror.com/icss-utils@5.1.0(postcss@8.4.29) - postcss: registry.npmmirror.com/postcss@8.4.29 - - registry.npmmirror.com/postcss-modules@4.3.1(postcss@8.4.29): - 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} - id: registry.npmmirror.com/postcss-modules/4.3.1 - name: postcss-modules - version: 4.3.1 - peerDependencies: - postcss: ^8.0.0 - dependencies: - generic-names: registry.npmmirror.com/generic-names@4.0.0 - icss-replace-symbols: registry.npmmirror.com/icss-replace-symbols@1.1.0 - lodash.camelcase: registry.npmmirror.com/lodash.camelcase@4.3.0 - postcss: registry.npmmirror.com/postcss@8.4.29 - postcss-modules-extract-imports: registry.npmmirror.com/postcss-modules-extract-imports@3.0.0(postcss@8.4.29) - postcss-modules-local-by-default: registry.npmmirror.com/postcss-modules-local-by-default@4.0.3(postcss@8.4.29) - postcss-modules-scope: registry.npmmirror.com/postcss-modules-scope@3.0.0(postcss@8.4.29) - postcss-modules-values: registry.npmmirror.com/postcss-modules-values@4.0.0(postcss@8.4.29) - string-hash: registry.npmmirror.com/string-hash@1.1.3 - - registry.npmmirror.com/postcss-selector-parser@6.0.13: - resolution: {integrity: sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz} - name: postcss-selector-parser - version: 6.0.13 - engines: {node: '>=4'} - 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} - name: postcss-value-parser - version: 4.2.0 - - registry.npmmirror.com/postcss@8.4.29: - resolution: {integrity: sha512-cbI+jaqIeu/VGqXEarWkRCCffhjgXc0qjBtXpqJhTBohMUjUQnbBr0xqX3vEKudc4iviTewcJo5ajcec5+wdJw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/postcss/-/postcss-8.4.29.tgz} - name: postcss - version: 8.4.29 - engines: {node: ^10 || ^12 || >=14} - dependencies: - nanoid: registry.npmmirror.com/nanoid@3.3.6 - picocolors: registry.npmmirror.com/picocolors@1.0.0 - source-map-js: registry.npmmirror.com/source-map-js@1.0.2 - - registry.npmmirror.com/pretty-format@27.5.1: - resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/pretty-format/-/pretty-format-27.5.1.tgz} - name: pretty-format - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - ansi-regex: registry.npmmirror.com/ansi-regex@5.0.1 - ansi-styles: registry.npmmirror.com/ansi-styles@5.2.0 - react-is: registry.npmmirror.com/react-is@17.0.2 - dev: true - - registry.npmmirror.com/process@0.11.10: - resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/process/-/process-0.11.10.tgz} - name: process - version: 0.11.10 - engines: {node: '>= 0.6.0'} - dev: false - - registry.npmmirror.com/prompts@2.4.2: - resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/prompts/-/prompts-2.4.2.tgz} - name: prompts - version: 2.4.2 - engines: {node: '>= 6'} - dependencies: - kleur: registry.npmmirror.com/kleur@3.0.3 - sisteransi: registry.npmmirror.com/sisteransi@1.0.5 - 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} - name: proxy-addr - version: 2.0.7 - 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/proxy-from-env@1.1.0: - resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz} - name: proxy-from-env - version: 1.1.0 - dev: false - - registry.npmmirror.com/psl@1.9.0: - resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/psl/-/psl-1.9.0.tgz} - name: psl - version: 1.9.0 - dev: true - - registry.npmmirror.com/punycode@2.3.0: - resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/punycode/-/punycode-2.3.0.tgz} - name: punycode - version: 2.3.0 - 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} - name: qrcode-reader - version: 1.0.4 - - 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} - name: qrcode-terminal - version: 0.12.0 - hasBin: true - - registry.npmmirror.com/qs@6.11.0: - resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/qs/-/qs-6.11.0.tgz} - name: qs - version: 6.11.0 - engines: {node: '>=0.6'} - dependencies: - side-channel: registry.npmmirror.com/side-channel@1.0.4 - dev: true - - registry.npmmirror.com/querystringify@2.2.0: - resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/querystringify/-/querystringify-2.2.0.tgz} - name: querystringify - version: 2.2.0 - 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} - 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} - name: range-parser - version: 1.2.1 - 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} - name: raw-body - version: 2.5.1 - engines: {node: '>= 0.8'} - dependencies: - bytes: registry.npmmirror.com/bytes@3.1.2 - http-errors: registry.npmmirror.com/http-errors@2.0.0 - iconv-lite: registry.npmmirror.com/iconv-lite@0.4.24 - unpipe: registry.npmmirror.com/unpipe@1.0.0 - dev: true - - registry.npmmirror.com/react-is@17.0.2: - resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/react-is/-/react-is-17.0.2.tgz} - name: react-is - version: 17.0.2 - 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} - 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} - name: readdirp - version: 3.6.0 - engines: {node: '>=8.10.0'} - dependencies: - picomatch: registry.npmmirror.com/picomatch@2.3.1 - - registry.npmmirror.com/regenerate-unicode-properties@10.1.0: - resolution: {integrity: sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz} - name: regenerate-unicode-properties - version: 10.1.0 - engines: {node: '>=4'} - dependencies: - regenerate: registry.npmmirror.com/regenerate@1.4.2 - dev: true - - registry.npmmirror.com/regenerate@1.4.2: - resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/regenerate/-/regenerate-1.4.2.tgz} - name: regenerate - version: 1.4.2 - dev: true - - registry.npmmirror.com/regenerator-runtime@0.13.11: - resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz} - name: regenerator-runtime - version: 0.13.11 - - registry.npmmirror.com/regenerator-runtime@0.14.0: - resolution: {integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz} - name: regenerator-runtime - version: 0.14.0 - - registry.npmmirror.com/regenerator-transform@0.15.2: - resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/regenerator-transform/-/regenerator-transform-0.15.2.tgz} - name: regenerator-transform - version: 0.15.2 - dependencies: - '@babel/runtime': registry.npmmirror.com/@babel/runtime@7.22.15 - dev: true - - registry.npmmirror.com/regexpu-core@5.3.2: - resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/regexpu-core/-/regexpu-core-5.3.2.tgz} - name: regexpu-core - version: 5.3.2 - engines: {node: '>=4'} - dependencies: - '@babel/regjsgen': registry.npmmirror.com/@babel/regjsgen@0.8.0 - regenerate: registry.npmmirror.com/regenerate@1.4.2 - regenerate-unicode-properties: registry.npmmirror.com/regenerate-unicode-properties@10.1.0 - regjsparser: registry.npmmirror.com/regjsparser@0.9.1 - unicode-match-property-ecmascript: registry.npmmirror.com/unicode-match-property-ecmascript@2.0.0 - unicode-match-property-value-ecmascript: registry.npmmirror.com/unicode-match-property-value-ecmascript@2.1.0 - dev: true - - registry.npmmirror.com/regjsparser@0.9.1: - resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/regjsparser/-/regjsparser-0.9.1.tgz} - name: regjsparser - version: 0.9.1 - hasBin: true - dependencies: - jsesc: registry.npmmirror.com/jsesc@0.5.0 - dev: true - - registry.npmmirror.com/require-directory@2.1.1: - resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/require-directory/-/require-directory-2.1.1.tgz} - name: require-directory - version: 2.1.1 - engines: {node: '>=0.10.0'} - dev: true - - registry.npmmirror.com/requires-port@1.0.0: - resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/requires-port/-/requires-port-1.0.0.tgz} - name: requires-port - version: 1.0.0 - dev: true - - registry.npmmirror.com/resolve-cwd@3.0.0: - resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz} - name: resolve-cwd - version: 3.0.0 - engines: {node: '>=8'} - dependencies: - resolve-from: registry.npmmirror.com/resolve-from@5.0.0 - dev: true - - registry.npmmirror.com/resolve-from@5.0.0: - resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/resolve-from/-/resolve-from-5.0.0.tgz} - name: resolve-from - version: 5.0.0 - engines: {node: '>=8'} - dev: true - - registry.npmmirror.com/resolve.exports@1.1.1: - resolution: {integrity: sha512-/NtpHNDN7jWhAaQ9BvBUYZ6YTXsRBgfqWFWP7BZBaoMJO/I3G5OFzvTuWNlZC3aPjins1F+TNrLKsGbH4rfsRQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/resolve.exports/-/resolve.exports-1.1.1.tgz} - name: resolve.exports - version: 1.1.1 - engines: {node: '>=10'} - dev: true - - registry.npmmirror.com/resolve@1.22.4: - resolution: {integrity: sha512-PXNdCiPqDqeUou+w1C2eTQbNfxKSuMxqTCuvlmmMsk1NWHL5fRrhY6Pl0qEYYc6+QqGClco1Qj8XnjPego4wfg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/resolve/-/resolve-1.22.4.tgz} - name: resolve - version: 1.22.4 - hasBin: true - dependencies: - is-core-module: registry.npmmirror.com/is-core-module@2.13.0 - path-parse: registry.npmmirror.com/path-parse@1.0.7 - 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} - name: reusify - version: 1.0.4 - 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@3.28.1: - resolution: {integrity: sha512-R9OMQmIHJm9znrU3m3cpE8uhN0fGdXiawME7aZIpQqvpS/85+Vt1Hq1/yVIcYfOmaQiHjvXkQAoJukvLpau6Yw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rollup/-/rollup-3.28.1.tgz} - name: rollup - version: 3.28.1 - engines: {node: '>=14.18.0', npm: '>=8.0.0'} - hasBin: true - optionalDependencies: - fsevents: registry.npmmirror.com/fsevents@2.3.3 - - 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} - 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} - name: safe-area-insets - version: 1.4.1 - dev: false - - 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} - 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} - name: safer-buffer - version: 2.1.2 - dev: true - - registry.npmmirror.com/sass@1.66.1: - resolution: {integrity: sha512-50c+zTsZOJVgFfTgwwEzkjA3/QACgdNsKueWPyAR0mRINIvLAStVQBbPg14iuqEQ74NPDbXzJARJ/O4SI1zftA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/sass/-/sass-1.66.1.tgz} - name: sass - version: 1.66.1 - engines: {node: '>=14.0.0'} - hasBin: true - dependencies: - chokidar: registry.npmmirror.com/chokidar@3.5.3 - immutable: registry.npmmirror.com/immutable@4.3.4 - source-map-js: registry.npmmirror.com/source-map-js@1.0.2 - - registry.npmmirror.com/sax@1.2.4: - resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/sax/-/sax-1.2.4.tgz} - name: sax - version: 1.2.4 - dev: false - - registry.npmmirror.com/saxes@5.0.1: - resolution: {integrity: sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/saxes/-/saxes-5.0.1.tgz} - name: saxes - version: 5.0.1 - engines: {node: '>=10'} - dependencies: - xmlchars: registry.npmmirror.com/xmlchars@2.2.0 - dev: true - - registry.npmmirror.com/semver@6.3.1: - resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/semver/-/semver-6.3.1.tgz} - name: semver - version: 6.3.1 - hasBin: true - - registry.npmmirror.com/semver@7.5.4: - resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/semver/-/semver-7.5.4.tgz} - name: semver - version: 7.5.4 - 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} - name: send - version: 0.18.0 - engines: {node: '>= 0.8.0'} - dependencies: - debug: registry.npmmirror.com/debug@2.6.9 - depd: registry.npmmirror.com/depd@2.0.0 - destroy: registry.npmmirror.com/destroy@1.2.0 - encodeurl: registry.npmmirror.com/encodeurl@1.0.2 - escape-html: registry.npmmirror.com/escape-html@1.0.3 - etag: registry.npmmirror.com/etag@1.8.1 - fresh: registry.npmmirror.com/fresh@0.5.2 - http-errors: registry.npmmirror.com/http-errors@2.0.0 - mime: registry.npmmirror.com/mime@1.6.0 - ms: registry.npmmirror.com/ms@2.1.3 - on-finished: registry.npmmirror.com/on-finished@2.4.1 - range-parser: registry.npmmirror.com/range-parser@1.2.1 - statuses: registry.npmmirror.com/statuses@2.0.1 - transitivePeerDependencies: - - supports-color - 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} - name: serve-static - version: 1.15.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 - parseurl: registry.npmmirror.com/parseurl@1.3.3 - send: registry.npmmirror.com/send@0.18.0 - transitivePeerDependencies: - - supports-color - 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} - 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} - name: shebang-command - version: 2.0.0 - 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} - name: shebang-regex - version: 3.0.0 - 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} - name: side-channel - version: 1.0.4 - dependencies: - call-bind: registry.npmmirror.com/call-bind@1.0.2 - get-intrinsic: registry.npmmirror.com/get-intrinsic@1.2.1 - object-inspect: registry.npmmirror.com/object-inspect@1.12.3 - 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} - name: signal-exit - version: 3.0.7 - dev: true - - registry.npmmirror.com/sisteransi@1.0.5: - resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/sisteransi/-/sisteransi-1.0.5.tgz} - name: sisteransi - version: 1.0.5 - 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-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} - name: source-map-js - version: 1.0.2 - engines: {node: '>=0.10.0'} - - registry.npmmirror.com/source-map-support@0.5.21: - resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/source-map-support/-/source-map-support-0.5.21.tgz} - name: source-map-support - version: 0.5.21 - dependencies: - buffer-from: registry.npmmirror.com/buffer-from@1.1.2 - source-map: registry.npmmirror.com/source-map@0.6.1 - - 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} - name: source-map - version: 0.6.1 - engines: {node: '>=0.10.0'} - - registry.npmmirror.com/source-map@0.7.4: - resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/source-map/-/source-map-0.7.4.tgz} - name: source-map - version: 0.7.4 - engines: {node: '>= 8'} - dev: true - - 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} - name: sourcemap-codec - version: 1.4.8 - deprecated: Please use @jridgewell/sourcemap-codec instead - - registry.npmmirror.com/sprintf-js@1.0.3: - resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/sprintf-js/-/sprintf-js-1.0.3.tgz} - name: sprintf-js - version: 1.0.3 - dev: true - - registry.npmmirror.com/stack-utils@2.0.6: - resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/stack-utils/-/stack-utils-2.0.6.tgz} - name: stack-utils - version: 2.0.6 - engines: {node: '>=10'} - dependencies: - escape-string-regexp: registry.npmmirror.com/escape-string-regexp@2.0.0 - dev: true - - 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} - name: statuses - version: 2.0.1 - 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} - name: string-hash - version: 1.1.3 - - registry.npmmirror.com/string-length@4.0.2: - resolution: {integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/string-length/-/string-length-4.0.2.tgz} - name: string-length - version: 4.0.2 - engines: {node: '>=10'} - dependencies: - char-regex: registry.npmmirror.com/char-regex@1.0.2 - strip-ansi: registry.npmmirror.com/strip-ansi@6.0.1 - dev: true - - registry.npmmirror.com/string-width@4.2.3: - resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/string-width/-/string-width-4.2.3.tgz} - name: string-width - version: 4.2.3 - engines: {node: '>=8'} - dependencies: - emoji-regex: registry.npmmirror.com/emoji-regex@8.0.0 - is-fullwidth-code-point: registry.npmmirror.com/is-fullwidth-code-point@3.0.0 - strip-ansi: registry.npmmirror.com/strip-ansi@6.0.1 - dev: true - - 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-bom@4.0.0: - resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/strip-bom/-/strip-bom-4.0.0.tgz} - name: strip-bom - version: 4.0.0 - engines: {node: '>=8'} - 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} - name: strip-final-newline - version: 2.0.0 - 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} - name: supports-color - version: 5.5.0 - 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-color@8.1.1: - resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/supports-color/-/supports-color-8.1.1.tgz} - name: supports-color - version: 8.1.1 - engines: {node: '>=10'} - dependencies: - has-flag: registry.npmmirror.com/has-flag@4.0.0 - dev: true - - registry.npmmirror.com/supports-hyperlinks@2.3.0: - resolution: {integrity: sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz} - name: supports-hyperlinks - version: 2.3.0 - engines: {node: '>=8'} - dependencies: - has-flag: registry.npmmirror.com/has-flag@4.0.0 - supports-color: registry.npmmirror.com/supports-color@7.2.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} - name: supports-preserve-symlinks-flag - version: 1.0.0 - 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} - name: svg-tags - version: 1.0.0 - dev: true - - registry.npmmirror.com/symbol-tree@3.2.4: - resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/symbol-tree/-/symbol-tree-3.2.4.tgz} - name: symbol-tree - version: 3.2.4 - dev: true - - registry.npmmirror.com/systemjs@6.14.2: - resolution: {integrity: sha512-1TlOwvKWdXxAY9vba+huLu99zrQURDWA8pUTYsRIYDZYQbGyK+pyEP4h4dlySsqo7ozyJBmYD20F+iUHhAltEg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/systemjs/-/systemjs-6.14.2.tgz} - name: systemjs - version: 6.14.2 - 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} - name: tapable - version: 2.2.1 - engines: {node: '>=6'} - - registry.npmmirror.com/terminal-link@2.1.1: - resolution: {integrity: sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/terminal-link/-/terminal-link-2.1.1.tgz} - name: terminal-link - version: 2.1.1 - engines: {node: '>=8'} - dependencies: - ansi-escapes: registry.npmmirror.com/ansi-escapes@4.3.2 - supports-hyperlinks: registry.npmmirror.com/supports-hyperlinks@2.3.0 - dev: true - - registry.npmmirror.com/terser@5.19.4: - resolution: {integrity: sha512-6p1DjHeuluwxDXcuT9VR8p64klWJKo1ILiy19s6C9+0Bh2+NWTX6nD9EPppiER4ICkHDVB1RkVpin/YW2nQn/g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/terser/-/terser-5.19.4.tgz} - name: terser - version: 5.19.4 - engines: {node: '>=10'} - hasBin: true - dependencies: - '@jridgewell/source-map': registry.npmmirror.com/@jridgewell/source-map@0.3.5 - acorn: registry.npmmirror.com/acorn@8.10.0 - commander: registry.npmmirror.com/commander@2.20.3 - source-map-support: registry.npmmirror.com/source-map-support@0.5.21 - - registry.npmmirror.com/test-exclude@6.0.0: - resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/test-exclude/-/test-exclude-6.0.0.tgz} - name: test-exclude - version: 6.0.0 - engines: {node: '>=8'} - dependencies: - '@istanbuljs/schema': registry.npmmirror.com/@istanbuljs/schema@0.1.3 - glob: registry.npmmirror.com/glob@7.2.3 - minimatch: registry.npmmirror.com/minimatch@3.1.2 - dev: true - - registry.npmmirror.com/throat@6.0.2: - resolution: {integrity: sha512-WKexMoJj3vEuK0yFEapj8y64V0A6xcuPuK9Gt1d0R+dzCSJc0lHqQytAbSB4cDAK0dWh4T0E2ETkoLE2WZ41OQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/throat/-/throat-6.0.2.tgz} - name: throat - version: 6.0.2 - dev: true - - registry.npmmirror.com/timm@1.7.1: - resolution: {integrity: sha512-IjZc9KIotudix8bMaBW6QvMuq64BrJWFs1+4V0lXwWGQZwH+LnX87doAYhem4caOEusRP9/g6jVDQmZ8XOk1nw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/timm/-/timm-1.7.1.tgz} - name: timm - version: 1.7.1 - dev: false - - registry.npmmirror.com/tinycolor2@1.6.0: - resolution: {integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/tinycolor2/-/tinycolor2-1.6.0.tgz} - name: tinycolor2 - version: 1.6.0 - dev: false - - registry.npmmirror.com/tmpl@1.0.5: - resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/tmpl/-/tmpl-1.0.5.tgz} - name: tmpl - version: 1.0.5 - 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} - name: to-fast-properties - version: 2.0.0 - 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} - name: to-regex-range - version: 5.0.1 - 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} - name: toidentifier - version: 1.0.1 - engines: {node: '>=0.6'} - dev: true - - registry.npmmirror.com/tough-cookie@4.1.3: - resolution: {integrity: sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/tough-cookie/-/tough-cookie-4.1.3.tgz} - name: tough-cookie - version: 4.1.3 - engines: {node: '>=6'} - dependencies: - psl: registry.npmmirror.com/psl@1.9.0 - punycode: registry.npmmirror.com/punycode@2.3.0 - universalify: registry.npmmirror.com/universalify@0.2.0 - url-parse: registry.npmmirror.com/url-parse@1.5.10 - dev: true - - registry.npmmirror.com/tr46@2.1.0: - resolution: {integrity: sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/tr46/-/tr46-2.1.0.tgz} - name: tr46 - version: 2.1.0 - engines: {node: '>=8'} - dependencies: - punycode: registry.npmmirror.com/punycode@2.3.0 - dev: true - - registry.npmmirror.com/type-detect@4.0.8: - resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/type-detect/-/type-detect-4.0.8.tgz} - name: type-detect - version: 4.0.8 - engines: {node: '>=4'} - dev: true - - registry.npmmirror.com/type-fest@0.21.3: - resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/type-fest/-/type-fest-0.21.3.tgz} - name: type-fest - version: 0.21.3 - 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} - name: type-is - version: 1.6.18 - 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/typedarray-to-buffer@3.1.5: - resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz} - name: typedarray-to-buffer - version: 3.1.5 - dependencies: - is-typedarray: registry.npmmirror.com/is-typedarray@1.0.0 - dev: true - - registry.npmmirror.com/uni-read-pages@1.0.5: - resolution: {integrity: sha512-GkrrZ0LX0vn9R5k6RKEi0Ez3Q3e2vUpjXQ8Z6/K/d28KudI9ajqgt8WEjQFlG5EPm1K6uTArN8LlqmZTEixDUA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/uni-read-pages/-/uni-read-pages-1.0.5.tgz} - name: uni-read-pages - version: 1.0.5 - requiresBuild: true - dev: false - - registry.npmmirror.com/uni-simple-router@2.0.8-beta.4: - resolution: {integrity: sha512-ipTHhOaRvjV8qrt3HosX5pNMhwFYBnFOuKyV5joH0evfXubjrGI5tjdwpmwzfW5h3VBth3iAqScv+pW/QmIJXw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/uni-simple-router/-/uni-simple-router-2.0.8-beta.4.tgz} - name: uni-simple-router - version: 2.0.8-beta.4 - dev: false - - registry.npmmirror.com/unicode-canonical-property-names-ecmascript@2.0.0: - resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz} - name: unicode-canonical-property-names-ecmascript - version: 2.0.0 - engines: {node: '>=4'} - dev: true - - registry.npmmirror.com/unicode-match-property-ecmascript@2.0.0: - resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz} - name: unicode-match-property-ecmascript - version: 2.0.0 - engines: {node: '>=4'} - dependencies: - unicode-canonical-property-names-ecmascript: registry.npmmirror.com/unicode-canonical-property-names-ecmascript@2.0.0 - unicode-property-aliases-ecmascript: registry.npmmirror.com/unicode-property-aliases-ecmascript@2.1.0 - dev: true - - registry.npmmirror.com/unicode-match-property-value-ecmascript@2.1.0: - resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz} - name: unicode-match-property-value-ecmascript - version: 2.1.0 - engines: {node: '>=4'} - dev: true - - registry.npmmirror.com/unicode-property-aliases-ecmascript@2.1.0: - resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz} - name: unicode-property-aliases-ecmascript - version: 2.1.0 - engines: {node: '>=4'} - dev: true - - registry.npmmirror.com/universalify@0.2.0: - resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/universalify/-/universalify-0.2.0.tgz} - name: universalify - version: 0.2.0 - engines: {node: '>= 4.0.0'} - 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} - name: universalify - version: 2.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} - name: unpipe - version: 1.0.0 - 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} - name: unquote - version: 1.1.1 - dev: false - - registry.npmmirror.com/update-browserslist-db@1.0.11(browserslist@4.21.10): - resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz} - id: registry.npmmirror.com/update-browserslist-db/1.0.11 - name: update-browserslist-db - version: 1.0.11 - hasBin: true - peerDependencies: - browserslist: '>= 4.21.0' - dependencies: - browserslist: registry.npmmirror.com/browserslist@4.21.10 - escalade: registry.npmmirror.com/escalade@3.1.1 - picocolors: registry.npmmirror.com/picocolors@1.0.0 - - registry.npmmirror.com/url-parse@1.5.10: - resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/url-parse/-/url-parse-1.5.10.tgz} - name: url-parse - version: 1.5.10 - dependencies: - querystringify: registry.npmmirror.com/querystringify@2.2.0 - requires-port: registry.npmmirror.com/requires-port@1.0.0 - dev: true - - registry.npmmirror.com/utif@2.0.1: - resolution: {integrity: sha512-Z/S1fNKCicQTf375lIP9G8Sa1H/phcysstNrrSdZKj1f9g58J4NMgb5IgiEZN9/nLMPDwF0W7hdOe9Qq2IYoLg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/utif/-/utif-2.0.1.tgz} - name: utif - version: 2.0.1 - dependencies: - pako: registry.npmmirror.com/pako@1.0.11 - dev: false - - 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} - 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} - name: utils-merge - version: 1.0.1 - engines: {node: '>= 0.4.0'} - dev: true - - registry.npmmirror.com/v8-to-istanbul@8.1.1: - resolution: {integrity: sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/v8-to-istanbul/-/v8-to-istanbul-8.1.1.tgz} - name: v8-to-istanbul - version: 8.1.1 - engines: {node: '>=10.12.0'} - dependencies: - '@types/istanbul-lib-coverage': registry.npmmirror.com/@types/istanbul-lib-coverage@2.0.4 - convert-source-map: registry.npmmirror.com/convert-source-map@1.9.0 - source-map: registry.npmmirror.com/source-map@0.7.4 - 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} - name: vary - version: 1.1.2 - engines: {node: '>= 0.8'} - dev: true - - registry.npmmirror.com/vite@4.0.0(sass@1.66.1)(terser@5.19.4): - resolution: {integrity: sha512-ynad+4kYs8Jcnn8J7SacS9vAbk7eMy0xWg6E7bAhS1s79TK+D7tVFGXVZ55S7RNLRROU1rxoKlvZ/qjaB41DGA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vite/-/vite-4.0.0.tgz} - id: registry.npmmirror.com/vite/4.0.0 - name: vite - version: 4.0.0 - engines: {node: ^14.18.0 || >=16.0.0} - hasBin: true - peerDependencies: - '@types/node': '>= 14' - less: '*' - sass: '*' - stylus: '*' - sugarss: '*' - terser: ^5.4.0 - peerDependenciesMeta: - '@types/node': - optional: true - less: - optional: true - sass: - optional: true - stylus: - optional: true - sugarss: - optional: true - terser: - optional: true - dependencies: - esbuild: registry.npmmirror.com/esbuild@0.16.17 - postcss: registry.npmmirror.com/postcss@8.4.29 - resolve: registry.npmmirror.com/resolve@1.22.4 - rollup: registry.npmmirror.com/rollup@3.28.1 - sass: registry.npmmirror.com/sass@1.66.1 - terser: registry.npmmirror.com/terser@5.19.4 - optionalDependencies: - fsevents: registry.npmmirror.com/fsevents@2.3.3 - - registry.npmmirror.com/vue-demi@0.14.6(vue@3.2.45): - resolution: {integrity: sha512-8QA7wrYSHKaYgUxDA5ZC24w+eHm3sYCbp0EzcDwKqN3p6HqtTCGR/GVsPyZW92unff4UlcSh++lmqDWN3ZIq4w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.6.tgz} - id: registry.npmmirror.com/vue-demi/0.14.6 - name: vue-demi - version: 0.14.6 - engines: {node: '>=12'} - hasBin: true - requiresBuild: true - peerDependencies: - '@vue/composition-api': ^1.0.0-rc.1 - vue: ^3.0.0-0 || ^2.6.0 - peerDependenciesMeta: - '@vue/composition-api': - optional: true - dependencies: - vue: registry.npmmirror.com/vue@3.2.45 - dev: false - - registry.npmmirror.com/vue-i18n@9.1.9(vue@3.2.45): - resolution: {integrity: sha512-JeRdNVxS2OGp1E+pye5XB6+M6BBkHwAv9C80Q7+kzoMdUDGRna06tjC0vCB/jDX9aWrl5swxOMFcyAr7or8XTA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vue-i18n/-/vue-i18n-9.1.9.tgz} - id: registry.npmmirror.com/vue-i18n/9.1.9 - name: vue-i18n - version: 9.1.9 - engines: {node: '>= 10'} - peerDependencies: - vue: ^3.0.0 - dependencies: - '@intlify/core-base': registry.npmmirror.com/@intlify/core-base@9.1.9 - '@intlify/shared': registry.npmmirror.com/@intlify/shared@9.1.9 - '@intlify/vue-devtools': registry.npmmirror.com/@intlify/vue-devtools@9.1.9 - '@vue/devtools-api': registry.npmmirror.com/@vue/devtools-api@6.5.0 - vue: registry.npmmirror.com/vue@3.2.45 - dev: false - - registry.npmmirror.com/vue-router@4.2.4(vue@3.2.45): - resolution: {integrity: sha512-9PISkmaCO02OzPVOMq2w82ilty6+xJmQrarYZDkjZBfl4RvYAlt4PKnEX21oW4KTtWfa9OuO/b3qk1Od3AEdCQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vue-router/-/vue-router-4.2.4.tgz} - id: registry.npmmirror.com/vue-router/4.2.4 - name: vue-router - version: 4.2.4 - peerDependencies: - vue: ^3.2.0 - dependencies: - '@vue/devtools-api': registry.npmmirror.com/@vue/devtools-api@6.5.0 - vue: registry.npmmirror.com/vue@3.2.45 - dev: false - - registry.npmmirror.com/vue@3.2.45: - resolution: {integrity: sha512-9Nx/Mg2b2xWlXykmCwiTUCWHbWIj53bnkizBxKai1g61f2Xit700A1ljowpTIM11e3uipOeiPcSqnmBg6gyiaA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vue/-/vue-3.2.45.tgz} - name: vue - version: 3.2.45 - dependencies: - '@vue/compiler-dom': registry.npmmirror.com/@vue/compiler-dom@3.2.45 - '@vue/compiler-sfc': registry.npmmirror.com/@vue/compiler-sfc@3.2.45 - '@vue/runtime-dom': registry.npmmirror.com/@vue/runtime-dom@3.2.45 - '@vue/server-renderer': registry.npmmirror.com/@vue/server-renderer@3.2.45(vue@3.2.45) - '@vue/shared': registry.npmmirror.com/@vue/shared@3.2.45 - - registry.npmmirror.com/w3c-hr-time@1.0.2: - resolution: {integrity: sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz} - name: w3c-hr-time - version: 1.0.2 - deprecated: Use your platform's native performance.now() and performance.timeOrigin. - dependencies: - browser-process-hrtime: registry.npmmirror.com/browser-process-hrtime@1.0.0 - dev: true - - registry.npmmirror.com/w3c-xmlserializer@2.0.0: - resolution: {integrity: sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz} - name: w3c-xmlserializer - version: 2.0.0 - engines: {node: '>=10'} - dependencies: - xml-name-validator: registry.npmmirror.com/xml-name-validator@3.0.0 - dev: true - - registry.npmmirror.com/walker@1.0.8: - resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/walker/-/walker-1.0.8.tgz} - name: walker - version: 1.0.8 - dependencies: - makeerror: registry.npmmirror.com/makeerror@1.0.12 - dev: true - - registry.npmmirror.com/webidl-conversions@5.0.0: - resolution: {integrity: sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/webidl-conversions/-/webidl-conversions-5.0.0.tgz} - name: webidl-conversions - version: 5.0.0 - engines: {node: '>=8'} - dev: true - - registry.npmmirror.com/webidl-conversions@6.1.0: - resolution: {integrity: sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/webidl-conversions/-/webidl-conversions-6.1.0.tgz} - name: webidl-conversions - version: 6.1.0 - engines: {node: '>=10.4'} - dev: true - - registry.npmmirror.com/whatwg-encoding@1.0.5: - resolution: {integrity: sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz} - name: whatwg-encoding - version: 1.0.5 - dependencies: - iconv-lite: registry.npmmirror.com/iconv-lite@0.4.24 - dev: true - - registry.npmmirror.com/whatwg-mimetype@2.3.0: - resolution: {integrity: sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz} - name: whatwg-mimetype - version: 2.3.0 - dev: true - - registry.npmmirror.com/whatwg-url@8.7.0: - resolution: {integrity: sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/whatwg-url/-/whatwg-url-8.7.0.tgz} - name: whatwg-url - version: 8.7.0 - engines: {node: '>=10'} - dependencies: - lodash: registry.npmmirror.com/lodash@4.17.21 - tr46: registry.npmmirror.com/tr46@2.1.0 - webidl-conversions: registry.npmmirror.com/webidl-conversions@6.1.0 - 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} - name: which - version: 2.0.2 - engines: {node: '>= 8'} - hasBin: true - dependencies: - isexe: registry.npmmirror.com/isexe@2.0.0 - dev: true - - registry.npmmirror.com/wrap-ansi@7.0.0: - resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz} - name: wrap-ansi - version: 7.0.0 - engines: {node: '>=10'} - dependencies: - ansi-styles: registry.npmmirror.com/ansi-styles@4.3.0 - string-width: registry.npmmirror.com/string-width@4.2.3 - strip-ansi: registry.npmmirror.com/strip-ansi@6.0.1 - dev: true - - registry.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/write-file-atomic@3.0.3: - resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz} - name: write-file-atomic - version: 3.0.3 - dependencies: - imurmurhash: registry.npmmirror.com/imurmurhash@0.1.4 - is-typedarray: registry.npmmirror.com/is-typedarray@1.0.0 - signal-exit: registry.npmmirror.com/signal-exit@3.0.7 - typedarray-to-buffer: registry.npmmirror.com/typedarray-to-buffer@3.1.5 - dev: true - - registry.npmmirror.com/ws@7.5.9: - resolution: {integrity: sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ws/-/ws-7.5.9.tgz} - name: ws - version: 7.5.9 - engines: {node: '>=8.3.0'} - peerDependencies: - bufferutil: ^4.0.1 - utf-8-validate: ^5.0.2 - peerDependenciesMeta: - bufferutil: - optional: true - utf-8-validate: - optional: true - dev: true - - registry.npmmirror.com/ws@8.13.0: - resolution: {integrity: sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ws/-/ws-8.13.0.tgz} - name: ws - version: 8.13.0 - engines: {node: '>=10.0.0'} - peerDependencies: - bufferutil: ^4.0.1 - utf-8-validate: '>=5.0.2' - peerDependenciesMeta: - bufferutil: - optional: true - utf-8-validate: - optional: true - - registry.npmmirror.com/xhr@2.6.0: - resolution: {integrity: sha512-/eCGLb5rxjx5e3mF1A7s+pLlR6CGyqWN91fv1JgER5mVWg1MZmlhBvy9kjcsOdRk8RrIujotWyJamfyrp+WIcA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/xhr/-/xhr-2.6.0.tgz} - name: xhr - version: 2.6.0 - dependencies: - global: registry.npmmirror.com/global@4.4.0 - is-function: registry.npmmirror.com/is-function@1.0.2 - parse-headers: registry.npmmirror.com/parse-headers@2.0.5 - xtend: registry.npmmirror.com/xtend@4.0.2 - dev: false - - registry.npmmirror.com/xml-name-validator@3.0.0: - resolution: {integrity: sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz} - name: xml-name-validator - version: 3.0.0 - dev: true - - registry.npmmirror.com/xml-parse-from-string@1.0.1: - resolution: {integrity: sha512-ErcKwJTF54uRzzNMXq2X5sMIy88zJvfN2DmdoQvy7PAFJ+tPRU6ydWuOKNMyfmOjdyBQTFREi60s0Y0SyI0G0g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/xml-parse-from-string/-/xml-parse-from-string-1.0.1.tgz} - name: xml-parse-from-string - version: 1.0.1 - dev: false - - registry.npmmirror.com/xml2js@0.4.23: - resolution: {integrity: sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/xml2js/-/xml2js-0.4.23.tgz} - name: xml2js - version: 0.4.23 - engines: {node: '>=4.0.0'} - dependencies: - sax: registry.npmmirror.com/sax@1.2.4 - xmlbuilder: registry.npmmirror.com/xmlbuilder@11.0.1 - dev: false - - registry.npmmirror.com/xmlbuilder@11.0.1: - resolution: {integrity: sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/xmlbuilder/-/xmlbuilder-11.0.1.tgz} - name: xmlbuilder - version: 11.0.1 - engines: {node: '>=4.0'} - dev: false - - registry.npmmirror.com/xmlchars@2.2.0: - resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/xmlchars/-/xmlchars-2.2.0.tgz} - name: xmlchars - version: 2.2.0 - 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} - name: xmlhttprequest - version: 1.8.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} - name: xregexp - version: 3.1.0 - - registry.npmmirror.com/xtend@4.0.2: - resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/xtend/-/xtend-4.0.2.tgz} - name: xtend - version: 4.0.2 - engines: {node: '>=0.4'} - dev: false - - registry.npmmirror.com/y18n@5.0.8: - resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/y18n/-/y18n-5.0.8.tgz} - name: y18n - version: 5.0.8 - engines: {node: '>=10'} - dev: true - - registry.npmmirror.com/yallist@3.1.1: - resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/yallist/-/yallist-3.1.1.tgz} - name: yallist - version: 3.1.1 - - 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} - name: yaml - version: 1.10.2 - engines: {node: '>= 6'} - - registry.npmmirror.com/yargs-parser@20.2.9: - resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/yargs-parser/-/yargs-parser-20.2.9.tgz} - name: yargs-parser - version: 20.2.9 - engines: {node: '>=10'} - dev: true - - registry.npmmirror.com/yargs@16.2.0: - resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/yargs/-/yargs-16.2.0.tgz} - name: yargs - version: 16.2.0 - engines: {node: '>=10'} - dependencies: - cliui: registry.npmmirror.com/cliui@7.0.4 - escalade: registry.npmmirror.com/escalade@3.1.1 - get-caller-file: registry.npmmirror.com/get-caller-file@2.0.5 - require-directory: registry.npmmirror.com/require-directory@2.1.1 - string-width: registry.npmmirror.com/string-width@4.2.3 - y18n: registry.npmmirror.com/y18n@5.0.8 - yargs-parser: registry.npmmirror.com/yargs-parser@20.2.9 - dev: true diff --git a/src/laoyou_client/project.config.json b/src/laoyou_client/project.config.json deleted file mode 100644 index 29a94f6..0000000 --- a/src/laoyou_client/project.config.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "compileType": "miniprogram", - "setting": { - "coverView": true, - "es6": true, - "postcss": true, - "minified": true, - "enhance": true, - "showShadowRootInWxmlPanel": true, - "packNpmRelationList": [], - "babelSetting": { - "ignore": [], - "disablePlugins": [], - "outputPath": "" - }, - "ignoreUploadUnusedFiles": true - }, - "condition": {}, - "editorSetting": { - "tabIndent": "insertSpaces", - "tabSize": 4 - }, - "libVersion": "3.0.2", - "packOptions": { - "ignore": [], - "include": [] - }, - "appid": "wx4c765f9dbc6e4ce8" -} \ No newline at end of file diff --git a/src/laoyou_client/project.private.config.json b/src/laoyou_client/project.private.config.json deleted file mode 100644 index 5f8497a..0000000 --- a/src/laoyou_client/project.private.config.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "description": "项目私有配置文件。此文件中的内容将覆盖 project.config.json 中的相同字段。项目的改动优先同步到此文件中。详见文档:https://developers.weixin.qq.com/miniprogram/dev/devtools/projectconfig.html", - "projectname": "oldbbs", - "setting": { - "compileHotReLoad": true - } -} \ No newline at end of file diff --git a/src/laoyou_client/shims-uni.d.ts b/src/laoyou_client/shims-uni.d.ts deleted file mode 100644 index ed4adcf..0000000 --- a/src/laoyou_client/shims-uni.d.ts +++ /dev/null @@ -1,10 +0,0 @@ -/// -import 'vue' - -declare module '@vue/runtime-core' { - type Hooks = App.AppInstance & Page.PageInstance; - - interface ComponentCustomOptions extends Hooks { - - } -} diff --git a/src/laoyou_client/src/App.vue b/src/laoyou_client/src/App.vue deleted file mode 100644 index 28a8f7c..0000000 --- a/src/laoyou_client/src/App.vue +++ /dev/null @@ -1,12 +0,0 @@ - - - diff --git a/src/laoyou_client/src/component/block/customBlock.vue b/src/laoyou_client/src/component/block/customBlock.vue deleted file mode 100644 index f5d1a90..0000000 --- a/src/laoyou_client/src/component/block/customBlock.vue +++ /dev/null @@ -1,58 +0,0 @@ - - - - - diff --git a/src/laoyou_client/src/component/block/editBlock.vue b/src/laoyou_client/src/component/block/editBlock.vue deleted file mode 100644 index b1bf972..0000000 --- a/src/laoyou_client/src/component/block/editBlock.vue +++ /dev/null @@ -1,41 +0,0 @@ - - - - - diff --git a/src/laoyou_client/src/component/box/closeBox.vue b/src/laoyou_client/src/component/box/closeBox.vue deleted file mode 100644 index 5f1eb82..0000000 --- a/src/laoyou_client/src/component/box/closeBox.vue +++ /dev/null @@ -1,42 +0,0 @@ - - - - - diff --git a/src/laoyou_client/src/component/box/newbox.vue b/src/laoyou_client/src/component/box/newbox.vue deleted file mode 100644 index 8d91aa9..0000000 --- a/src/laoyou_client/src/component/box/newbox.vue +++ /dev/null @@ -1,83 +0,0 @@ - - - - - diff --git a/src/laoyou_client/src/component/button/at.png b/src/laoyou_client/src/component/button/at.png deleted file mode 100644 index 0bd17a9..0000000 Binary files a/src/laoyou_client/src/component/button/at.png and /dev/null differ diff --git a/src/laoyou_client/src/component/button/likeButton.vue b/src/laoyou_client/src/component/button/likeButton.vue deleted file mode 100644 index d6a2f10..0000000 --- a/src/laoyou_client/src/component/button/likeButton.vue +++ /dev/null @@ -1,94 +0,0 @@ - - - - - diff --git a/src/laoyou_client/src/component/button/smallButton.vue b/src/laoyou_client/src/component/button/smallButton.vue deleted file mode 100644 index 25889f8..0000000 --- a/src/laoyou_client/src/component/button/smallButton.vue +++ /dev/null @@ -1,46 +0,0 @@ - - - - - diff --git a/src/laoyou_client/src/component/card/WideCommentCard.vue b/src/laoyou_client/src/component/card/WideCommentCard.vue deleted file mode 100644 index 3613b1d..0000000 --- a/src/laoyou_client/src/component/card/WideCommentCard.vue +++ /dev/null @@ -1,138 +0,0 @@ - - - - - diff --git a/src/laoyou_client/src/component/card/WideCommonShareCard..vue b/src/laoyou_client/src/component/card/WideCommonShareCard..vue deleted file mode 100644 index 6b1c11a..0000000 --- a/src/laoyou_client/src/component/card/WideCommonShareCard..vue +++ /dev/null @@ -1,188 +0,0 @@ - - - - - diff --git a/src/laoyou_client/src/component/card/card.vue b/src/laoyou_client/src/component/card/card.vue deleted file mode 100644 index 24a29d5..0000000 --- a/src/laoyou_client/src/component/card/card.vue +++ /dev/null @@ -1,143 +0,0 @@ - - - - - diff --git a/src/laoyou_client/src/component/commentInput/commentInput.vue b/src/laoyou_client/src/component/commentInput/commentInput.vue deleted file mode 100644 index 519d411..0000000 --- a/src/laoyou_client/src/component/commentInput/commentInput.vue +++ /dev/null @@ -1,176 +0,0 @@ - - - - - diff --git a/src/laoyou_client/src/component/comments/commentDetail.vue b/src/laoyou_client/src/component/comments/commentDetail.vue deleted file mode 100644 index 22435cb..0000000 --- a/src/laoyou_client/src/component/comments/commentDetail.vue +++ /dev/null @@ -1,127 +0,0 @@ - - - - - diff --git a/src/laoyou_client/src/component/comments/commentList.vue b/src/laoyou_client/src/component/comments/commentList.vue deleted file mode 100644 index d9d1989..0000000 --- a/src/laoyou_client/src/component/comments/commentList.vue +++ /dev/null @@ -1,34 +0,0 @@ - - - - - diff --git a/src/laoyou_client/src/component/comments/comments.vue b/src/laoyou_client/src/component/comments/comments.vue deleted file mode 100644 index 77f882a..0000000 --- a/src/laoyou_client/src/component/comments/comments.vue +++ /dev/null @@ -1,131 +0,0 @@ - - - - - diff --git a/src/laoyou_client/src/component/comments/footerComment.vue b/src/laoyou_client/src/component/comments/footerComment.vue deleted file mode 100644 index b34ab3f..0000000 --- a/src/laoyou_client/src/component/comments/footerComment.vue +++ /dev/null @@ -1,129 +0,0 @@ - - - - - diff --git a/src/laoyou_client/src/component/commitBox/commitBox.vue b/src/laoyou_client/src/component/commitBox/commitBox.vue deleted file mode 100644 index f765957..0000000 --- a/src/laoyou_client/src/component/commitBox/commitBox.vue +++ /dev/null @@ -1,114 +0,0 @@ - - - - - diff --git a/src/laoyou_client/src/component/drawer/drawer.vue b/src/laoyou_client/src/component/drawer/drawer.vue deleted file mode 100644 index fdc5680..0000000 --- a/src/laoyou_client/src/component/drawer/drawer.vue +++ /dev/null @@ -1,81 +0,0 @@ - - - - - diff --git a/src/laoyou_client/src/component/header/fade-header.vue b/src/laoyou_client/src/component/header/fade-header.vue deleted file mode 100644 index 53178f0..0000000 --- a/src/laoyou_client/src/component/header/fade-header.vue +++ /dev/null @@ -1,100 +0,0 @@ - - - - - diff --git a/src/laoyou_client/src/component/header/header.vue b/src/laoyou_client/src/component/header/header.vue deleted file mode 100644 index 171cb71..0000000 --- a/src/laoyou_client/src/component/header/header.vue +++ /dev/null @@ -1,85 +0,0 @@ - - - - - diff --git a/src/laoyou_client/src/component/lazyImg/lazyImg.vue b/src/laoyou_client/src/component/lazyImg/lazyImg.vue deleted file mode 100644 index 35dc604..0000000 --- a/src/laoyou_client/src/component/lazyImg/lazyImg.vue +++ /dev/null @@ -1,97 +0,0 @@ - - - - - diff --git a/src/laoyou_client/src/component/loading/commonLoading.vue b/src/laoyou_client/src/component/loading/commonLoading.vue deleted file mode 100644 index 9e06a41..0000000 --- a/src/laoyou_client/src/component/loading/commonLoading.vue +++ /dev/null @@ -1,70 +0,0 @@ - - - - - diff --git a/src/laoyou_client/src/component/loading/loading_v2.vue b/src/laoyou_client/src/component/loading/loading_v2.vue deleted file mode 100644 index cecfe69..0000000 --- a/src/laoyou_client/src/component/loading/loading_v2.vue +++ /dev/null @@ -1,77 +0,0 @@ - - - - - diff --git a/src/laoyou_client/src/component/other/scroll-footer.vue b/src/laoyou_client/src/component/other/scroll-footer.vue deleted file mode 100644 index 96b350c..0000000 --- a/src/laoyou_client/src/component/other/scroll-footer.vue +++ /dev/null @@ -1,55 +0,0 @@ - - - - - diff --git a/src/laoyou_client/src/component/picker/mulPicker.vue b/src/laoyou_client/src/component/picker/mulPicker.vue deleted file mode 100644 index 60bcf88..0000000 --- a/src/laoyou_client/src/component/picker/mulPicker.vue +++ /dev/null @@ -1,184 +0,0 @@ - - - - - diff --git a/src/laoyou_client/src/component/picker/picker.vue b/src/laoyou_client/src/component/picker/picker.vue deleted file mode 100644 index e0af829..0000000 --- a/src/laoyou_client/src/component/picker/picker.vue +++ /dev/null @@ -1,134 +0,0 @@ - - - - - diff --git a/src/laoyou_client/src/component/toast/customToast.vue b/src/laoyou_client/src/component/toast/customToast.vue deleted file mode 100644 index ce5d7ea..0000000 --- a/src/laoyou_client/src/component/toast/customToast.vue +++ /dev/null @@ -1,90 +0,0 @@ - - - - - diff --git a/src/laoyou_client/src/component/topTabBar/news-tab-bar.vue b/src/laoyou_client/src/component/topTabBar/news-tab-bar.vue deleted file mode 100644 index 3322c7a..0000000 --- a/src/laoyou_client/src/component/topTabBar/news-tab-bar.vue +++ /dev/null @@ -1,48 +0,0 @@ - - - - - diff --git a/src/laoyou_client/src/component/topTabBar/topTabBar.vue b/src/laoyou_client/src/component/topTabBar/topTabBar.vue deleted file mode 100644 index 03ce0d5..0000000 --- a/src/laoyou_client/src/component/topTabBar/topTabBar.vue +++ /dev/null @@ -1,148 +0,0 @@ - - - - - diff --git a/src/laoyou_client/src/component/transiton/config.js b/src/laoyou_client/src/component/transiton/config.js deleted file mode 100644 index 8f7f73b..0000000 --- a/src/laoyou_client/src/component/transiton/config.js +++ /dev/null @@ -1 +0,0 @@ -export const fadeTime = 300; \ No newline at end of file diff --git a/src/laoyou_client/src/component/transiton/fadeTransiton.vue b/src/laoyou_client/src/component/transiton/fadeTransiton.vue deleted file mode 100644 index 15ab0c1..0000000 --- a/src/laoyou_client/src/component/transiton/fadeTransiton.vue +++ /dev/null @@ -1,81 +0,0 @@ - - - - - diff --git a/src/laoyou_client/src/global.scss b/src/laoyou_client/src/global.scss deleted file mode 100644 index 219ca9a..0000000 --- a/src/laoyou_client/src/global.scss +++ /dev/null @@ -1,104 +0,0 @@ -/** - * 这里是uni-app内置的常用样式变量 - * - * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 - * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App - * - */ - -/** - * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 - * - * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 - */ - -/* 颜色变量 */ -// @import "./static/css/var.scss"; - -/* 行为相关颜色 */ -$uni-color-primary: #007aff; -$uni-color-success: #4cd964; -$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-placeholder: #808080; -$uni-text-color-disable: #c0c0c0; - -/* 背景颜色 */ -$uni-bg-color: #fff; -$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-font-size-sm: 12px; -$uni-font-size-base: 14px; -$uni-font-size-lg: 16; - -/* 图片尺寸 */ -$uni-img-size-sm: 20px; -$uni-img-size-base: 26px; -$uni-img-size-lg: 40px; - -/* Border Radius */ -$uni-border-radius-sm: 2px; -$uni-border-radius-base: 3px; -$uni-border-radius-lg: 6px; -$uni-border-radius-circle: 50%; - -/* 水平间距 */ -$uni-spacing-row-sm: 5px; -$uni-spacing-row-base: 10px; -$uni-spacing-row-lg: 15px; - -/* 垂直间距 */ -$uni-spacing-col-sm: 4px; -$uni-spacing-col-base: 8px; -$uni-spacing-col-lg: 12px; - -/* 透明度 */ -$uni-opacity-disabled: 0.3; // 组件禁用态的透明度 - -/* 文章场景相关 */ -$uni-color-title: #2c405a; // 文章标题颜色 -$uni-font-size-title: 20px; -$uni-color-subtitle: #555; // 二级标题颜色 -$uni-font-size-subtitle: 18px; -$uni-color-paragraph: #3f536e; // 文章段落颜色 -$uni-font-size-paragraph: 15px; - -.image-h { - height: 150px; -} - -button::after { - border: none; -} - -.avatar { - width: 30px; - height: 30px; - border-radius: 50%; - object-fit: contain; -} - -.mr-10 { - margin-right: 10px; -} - -.ml-10 { - margin-left: 10px; -} - -.mi-10 { - margin-inline: 10px; -} diff --git a/src/laoyou_client/src/layouts/commonLayout.vue b/src/laoyou_client/src/layouts/commonLayout.vue deleted file mode 100644 index f48c365..0000000 --- a/src/laoyou_client/src/layouts/commonLayout.vue +++ /dev/null @@ -1,80 +0,0 @@ - - - - - diff --git a/src/laoyou_client/src/main.js b/src/laoyou_client/src/main.js deleted file mode 100644 index 2fbf00e..0000000 --- a/src/laoyou_client/src/main.js +++ /dev/null @@ -1,14 +0,0 @@ -import { createSSRApp } from "vue"; -import App from "./App.vue"; -// pinia -import * as Pinia from "pinia"; - - -export function createApp() { - const app = createSSRApp(App); - app.use(Pinia.createPinia()); - return { - app, - Pinia, - }; -} diff --git a/src/laoyou_client/src/manifest.json b/src/laoyou_client/src/manifest.json deleted file mode 100644 index 37cdd23..0000000 --- a/src/laoyou_client/src/manifest.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "name": "", - "appid": "", - "description": "", - "versionName": "1.0.0", - "versionCode": "100", - "transformPx": false, - "app-plus": { - "usingComponents": true, - "nvueStyleCompiler": "uni-app", - "compilerVersion": 3, - "splashscreen": { - "alwaysShowBeforeRender": true, - "waiting": true, - "autoclose": true, - "delay": 0 - }, - "modules": {}, - "distribute": { - "android": { - "permissions": [ - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "" - ] - }, - "ios": {}, - "sdkConfigs": {} - } - }, - "quickapp": {}, - "mp-weixin": { - "appid": "wx4c765f9dbc6e4ce8", - "setting": { - "urlCheck": false - }, - "usingComponents": true, - "permission": { - "scope.userLocation": { - "desc": "小程序将使用定位功能" - } - } - }, - "mp-alipay": { - "usingComponents": true - }, - "mp-baidu": { - "usingComponents": true - }, - "mp-toutiao": { - "usingComponents": true - }, - "uniStatistics": { - "enable": false - }, - "vueVersion": "3" -} diff --git a/src/laoyou_client/src/pages.json b/src/laoyou_client/src/pages.json deleted file mode 100644 index cd78e5b..0000000 --- a/src/laoyou_client/src/pages.json +++ /dev/null @@ -1,175 +0,0 @@ -{ - "pages": [ - { - "path": "pages/index/index", - "style": { - "navigationStyle": "custom" - } - }, - { - "path": "pages/test/test", - "style": { - "navigationStyle": "custom" - } - }, - { - "path": "pages/function/function", - "style": { - "navigationStyle": "custom" - } - }, - { - "path": "pages/news/news", - "style": { - "navigationStyle": "custom" - } - }, - { - "path": "pages/setting/setting", - "style": { - "navigationStyle": "custom" - } - }, - - { - "path": "pages/setting/face-auth-setting", - "style": { - "navigationStyle": "custom" - } - }, - { - "path": "pages/verify/login", - "style": { - "navigationStyle": "custom" - } - }, - { - "path": "pages/verify/face-login", - "style": { - "navigationStyle": "custom" - } - }, - - { - "path": "pages/share/share", - "style": { - "navigationStyle": "custom" - } - }, - { - "path": "pages/post/post", - "style": { - "navigationStyle": "custom" - } - }, - { - "path": "pages/setting/userSetting", - "style": { - "navigationStyle": "custom" - } - }, - { - "path": "pages/learn/learn", - "style": { - "navigationStyle": "default", - "navigationBarTitleText": "在线学习" - } - }, - { - "path": "pages/health/health", - "style": { - "navigationStyle": "custom" - } - }, - { - "path": "pages/weather/weather", - "style": { - "navigationStyle": "default" - } - }, - { - "path": "pages/learn/detail/detailone/detailone", - "style": { - "navigationStyle": "default", - "navigationBarTitleText": "在线学习" - } - }, - { - "path": "pages/learn/detail/detailtwo/detailtwo", - "style": { - "navigationStyle": "default", - "navigationBarTitleText": "在线学习" - } - }, - { - "path": "pages/learn/detail/detailthree/detailthree", - "style": { - "navigationStyle": "default", - "navigationBarTitleText": "在线学习" - } - }, - { - "path": "pages/learn/detail/detailfour/detailfour", - "style": { - "navigationStyle": "default", - "navigationBarTitleText": "在线学习" - } - }, - { - "path": "pages/learn/detail/detailfive/detailfive", - "style": { - "navigationStyle": "default", - "navigationBarTitleText": "在线学习" - } - }, - { - "path": "pages/learn/detail/detailsix/detailsix", - "style": { - "navigationStyle": "default", - "navigationBarTitleText": "在线学习" - } - }, - { - "path": "pages/learn/detail/detailseven/detailseven", - "style": { - "navigationStyle": "default", - "navigationBarTitleText": "在线学习" - } - } - ], - "globalStyle": { - "navigationBarTextStyle": "black", - "navigationBarTitleText": "uni-app", - "navigationBarBackgroundColor": "#F8F8F8", - "backgroundColor": "#F8F8F8" - }, - "easycom": { - "autoscan": true, - "custom": { - "tui-(.*)": "thorui-uni/lib/thorui/tui-$1/tui-$1.vue" - } - }, - "tabBar": { - "color": "#7A7E83", - "selectedColor": "#3cc51f", - "backgroundColor": "#ffffff", - - "list": [ - { - "pagePath": "pages/index/index", - "iconPath": "./static/icon/home.png", - "selectedIconPath": "./static/icon/home_selected.png" - }, - { - "pagePath": "pages/share/share", - "iconPath": "/static/icon/share.png", - "selectedIconPath": "/static/icon/share.png" - }, - { - "pagePath": "pages/function/function", - "iconPath": "./static/icon/function.png", - "selectedIconPath": "./static/icon/function_selected.png" - } - ] - } -} diff --git a/src/laoyou_client/src/pages/function/function.vue b/src/laoyou_client/src/pages/function/function.vue deleted file mode 100644 index 480dab0..0000000 --- a/src/laoyou_client/src/pages/function/function.vue +++ /dev/null @@ -1,299 +0,0 @@ - - - - - diff --git a/src/laoyou_client/src/pages/function/user-interaction.vue b/src/laoyou_client/src/pages/function/user-interaction.vue deleted file mode 100644 index 4e506aa..0000000 --- a/src/laoyou_client/src/pages/function/user-interaction.vue +++ /dev/null @@ -1,373 +0,0 @@ - - - - - diff --git a/src/laoyou_client/src/pages/health/health.vue b/src/laoyou_client/src/pages/health/health.vue deleted file mode 100644 index 7d91cc2..0000000 --- a/src/laoyou_client/src/pages/health/health.vue +++ /dev/null @@ -1,302 +0,0 @@ - - - - - diff --git a/src/laoyou_client/src/pages/index/components/news-view.vue b/src/laoyou_client/src/pages/index/components/news-view.vue deleted file mode 100644 index 6ccf6be..0000000 --- a/src/laoyou_client/src/pages/index/components/news-view.vue +++ /dev/null @@ -1,366 +0,0 @@ - - - - - - - diff --git a/src/laoyou_client/src/pages/index/components/post-view.vue b/src/laoyou_client/src/pages/index/components/post-view.vue deleted file mode 100644 index 9eeeca4..0000000 --- a/src/laoyou_client/src/pages/index/components/post-view.vue +++ /dev/null @@ -1,151 +0,0 @@ - - - - diff --git a/src/laoyou_client/src/pages/index/index.vue b/src/laoyou_client/src/pages/index/index.vue deleted file mode 100644 index 20d362a..0000000 --- a/src/laoyou_client/src/pages/index/index.vue +++ /dev/null @@ -1,64 +0,0 @@ - - - - - diff --git a/src/laoyou_client/src/pages/learn/detail/detailfive/detailfive.vue b/src/laoyou_client/src/pages/learn/detail/detailfive/detailfive.vue deleted file mode 100644 index e90a96c..0000000 --- a/src/laoyou_client/src/pages/learn/detail/detailfive/detailfive.vue +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/pages/learn/detail/detailfour/detailfour.vue b/src/laoyou_client/src/pages/learn/detail/detailfour/detailfour.vue deleted file mode 100644 index 813a25c..0000000 --- a/src/laoyou_client/src/pages/learn/detail/detailfour/detailfour.vue +++ /dev/null @@ -1,92 +0,0 @@ - - - - - diff --git a/src/laoyou_client/src/pages/learn/detail/detailone/detailone.vue b/src/laoyou_client/src/pages/learn/detail/detailone/detailone.vue deleted file mode 100644 index 4409132..0000000 --- a/src/laoyou_client/src/pages/learn/detail/detailone/detailone.vue +++ /dev/null @@ -1,73 +0,0 @@ - - - - - diff --git a/src/laoyou_client/src/pages/learn/detail/detailseven/detailseven.vue b/src/laoyou_client/src/pages/learn/detail/detailseven/detailseven.vue deleted file mode 100644 index a7a8f90..0000000 --- a/src/laoyou_client/src/pages/learn/detail/detailseven/detailseven.vue +++ /dev/null @@ -1,153 +0,0 @@ - - - - diff --git a/src/laoyou_client/src/pages/learn/detail/detailsix/detailsix.vue b/src/laoyou_client/src/pages/learn/detail/detailsix/detailsix.vue deleted file mode 100644 index 0dae087..0000000 --- a/src/laoyou_client/src/pages/learn/detail/detailsix/detailsix.vue +++ /dev/null @@ -1,119 +0,0 @@ - - - - diff --git a/src/laoyou_client/src/pages/learn/detail/detailthree/detailthree.vue b/src/laoyou_client/src/pages/learn/detail/detailthree/detailthree.vue deleted file mode 100644 index 602fb08..0000000 --- a/src/laoyou_client/src/pages/learn/detail/detailthree/detailthree.vue +++ /dev/null @@ -1,62 +0,0 @@ - - - - - - diff --git a/src/laoyou_client/src/pages/learn/detail/detailtwo/detailtwo.vue b/src/laoyou_client/src/pages/learn/detail/detailtwo/detailtwo.vue deleted file mode 100644 index 7e0174e..0000000 --- a/src/laoyou_client/src/pages/learn/detail/detailtwo/detailtwo.vue +++ /dev/null @@ -1,53 +0,0 @@ - - - - - diff --git a/src/laoyou_client/src/pages/learn/learn.vue b/src/laoyou_client/src/pages/learn/learn.vue deleted file mode 100644 index a75cd47..0000000 --- a/src/laoyou_client/src/pages/learn/learn.vue +++ /dev/null @@ -1,185 +0,0 @@ - - - - - diff --git a/src/laoyou_client/src/pages/news/news.vue b/src/laoyou_client/src/pages/news/news.vue deleted file mode 100644 index 338abc5..0000000 --- a/src/laoyou_client/src/pages/news/news.vue +++ /dev/null @@ -1,24 +0,0 @@ - - - - - diff --git a/src/laoyou_client/src/pages/post/post.vue b/src/laoyou_client/src/pages/post/post.vue deleted file mode 100644 index 67af18c..0000000 --- a/src/laoyou_client/src/pages/post/post.vue +++ /dev/null @@ -1,237 +0,0 @@ - - - - - diff --git a/src/laoyou_client/src/pages/post/postHeader.vue b/src/laoyou_client/src/pages/post/postHeader.vue deleted file mode 100644 index 6a12d27..0000000 --- a/src/laoyou_client/src/pages/post/postHeader.vue +++ /dev/null @@ -1,93 +0,0 @@ - - - - - diff --git a/src/laoyou_client/src/pages/setting/face-auth-setting.vue b/src/laoyou_client/src/pages/setting/face-auth-setting.vue deleted file mode 100644 index d51b414..0000000 --- a/src/laoyou_client/src/pages/setting/face-auth-setting.vue +++ /dev/null @@ -1,216 +0,0 @@ - - - - - diff --git a/src/laoyou_client/src/pages/setting/setting.vue b/src/laoyou_client/src/pages/setting/setting.vue deleted file mode 100644 index 2393818..0000000 --- a/src/laoyou_client/src/pages/setting/setting.vue +++ /dev/null @@ -1,93 +0,0 @@ - - - - - diff --git a/src/laoyou_client/src/pages/setting/userSetting.vue b/src/laoyou_client/src/pages/setting/userSetting.vue deleted file mode 100644 index 11efae9..0000000 --- a/src/laoyou_client/src/pages/setting/userSetting.vue +++ /dev/null @@ -1,356 +0,0 @@ - - - - - diff --git a/src/laoyou_client/src/pages/share/commonShare.vue b/src/laoyou_client/src/pages/share/commonShare.vue deleted file mode 100644 index ff05659..0000000 --- a/src/laoyou_client/src/pages/share/commonShare.vue +++ /dev/null @@ -1,214 +0,0 @@ - - - - - diff --git a/src/laoyou_client/src/pages/share/share.vue b/src/laoyou_client/src/pages/share/share.vue deleted file mode 100644 index c19202f..0000000 --- a/src/laoyou_client/src/pages/share/share.vue +++ /dev/null @@ -1,244 +0,0 @@ - - - - - diff --git a/src/laoyou_client/src/pages/share/videoShare.vue b/src/laoyou_client/src/pages/share/videoShare.vue deleted file mode 100644 index c28755e..0000000 --- a/src/laoyou_client/src/pages/share/videoShare.vue +++ /dev/null @@ -1,281 +0,0 @@ - - - - - diff --git a/src/laoyou_client/src/pages/test/test.vue b/src/laoyou_client/src/pages/test/test.vue deleted file mode 100644 index 270ed43..0000000 --- a/src/laoyou_client/src/pages/test/test.vue +++ /dev/null @@ -1,9 +0,0 @@ - - - - - diff --git a/src/laoyou_client/src/pages/verify/face-login.vue b/src/laoyou_client/src/pages/verify/face-login.vue deleted file mode 100644 index 3c3232c..0000000 --- a/src/laoyou_client/src/pages/verify/face-login.vue +++ /dev/null @@ -1,166 +0,0 @@ - - - - - diff --git a/src/laoyou_client/src/pages/verify/login.vue b/src/laoyou_client/src/pages/verify/login.vue deleted file mode 100644 index 4640b9f..0000000 --- a/src/laoyou_client/src/pages/verify/login.vue +++ /dev/null @@ -1,167 +0,0 @@ - - - - - diff --git a/src/laoyou_client/src/pages/weather/weather.vue b/src/laoyou_client/src/pages/weather/weather.vue deleted file mode 100644 index 5c8dac8..0000000 --- a/src/laoyou_client/src/pages/weather/weather.vue +++ /dev/null @@ -1,596 +0,0 @@ - - - - - diff --git a/src/laoyou_client/src/shime-uni.d.ts b/src/laoyou_client/src/shime-uni.d.ts deleted file mode 100644 index 547c1e9..0000000 --- a/src/laoyou_client/src/shime-uni.d.ts +++ /dev/null @@ -1,6 +0,0 @@ -export { }; - -declare module "vue" { - type Hooks = App.AppInstance & Page.PageInstance; - interface ComponentCustomOptions extends Hooks { } -} \ No newline at end of file diff --git a/src/laoyou_client/src/static/css/var.scss b/src/laoyou_client/src/static/css/var.scss deleted file mode 100644 index 464cee5..0000000 --- a/src/laoyou_client/src/static/css/var.scss +++ /dev/null @@ -1,4 +0,0 @@ -:root { - --main-content-padding: 50rpx 30rpx; - --block-gap: 30rpx; -} diff --git a/src/laoyou_client/src/static/icon/at.png b/src/laoyou_client/src/static/icon/at.png deleted file mode 100644 index 0bd17a9..0000000 Binary files a/src/laoyou_client/src/static/icon/at.png and /dev/null differ diff --git a/src/laoyou_client/src/static/icon/body-scan-line.png b/src/laoyou_client/src/static/icon/body-scan-line.png deleted file mode 100644 index e7d7c7e..0000000 Binary files a/src/laoyou_client/src/static/icon/body-scan-line.png and /dev/null differ diff --git a/src/laoyou_client/src/static/icon/cancel.png b/src/laoyou_client/src/static/icon/cancel.png deleted file mode 100644 index c6ea693..0000000 Binary files a/src/laoyou_client/src/static/icon/cancel.png and /dev/null differ diff --git a/src/laoyou_client/src/static/icon/close-fill.png b/src/laoyou_client/src/static/icon/close-fill.png deleted file mode 100644 index 45f60ed..0000000 Binary files a/src/laoyou_client/src/static/icon/close-fill.png and /dev/null differ diff --git a/src/laoyou_client/src/static/icon/close.png b/src/laoyou_client/src/static/icon/close.png deleted file mode 100644 index 61d789c..0000000 Binary files a/src/laoyou_client/src/static/icon/close.png and /dev/null differ diff --git a/src/laoyou_client/src/static/icon/comment.png b/src/laoyou_client/src/static/icon/comment.png deleted file mode 100644 index 4766d81..0000000 Binary files a/src/laoyou_client/src/static/icon/comment.png and /dev/null differ diff --git a/src/laoyou_client/src/static/icon/customer.png b/src/laoyou_client/src/static/icon/customer.png deleted file mode 100644 index f1212c1..0000000 Binary files a/src/laoyou_client/src/static/icon/customer.png and /dev/null differ diff --git a/src/laoyou_client/src/static/icon/discuss-line.png b/src/laoyou_client/src/static/icon/discuss-line.png deleted file mode 100644 index 5482cf9..0000000 Binary files a/src/laoyou_client/src/static/icon/discuss-line.png and /dev/null differ diff --git a/src/laoyou_client/src/static/icon/edit.png b/src/laoyou_client/src/static/icon/edit.png deleted file mode 100644 index 27ae93e..0000000 Binary files a/src/laoyou_client/src/static/icon/edit.png and /dev/null differ diff --git a/src/laoyou_client/src/static/icon/emoji.png b/src/laoyou_client/src/static/icon/emoji.png deleted file mode 100644 index 7758057..0000000 Binary files a/src/laoyou_client/src/static/icon/emoji.png and /dev/null differ diff --git a/src/laoyou_client/src/static/icon/function.png b/src/laoyou_client/src/static/icon/function.png deleted file mode 100644 index ce87415..0000000 Binary files a/src/laoyou_client/src/static/icon/function.png and /dev/null differ diff --git a/src/laoyou_client/src/static/icon/function_selected.png b/src/laoyou_client/src/static/icon/function_selected.png deleted file mode 100644 index aba744e..0000000 Binary files a/src/laoyou_client/src/static/icon/function_selected.png and /dev/null differ diff --git a/src/laoyou_client/src/static/icon/github-line.png b/src/laoyou_client/src/static/icon/github-line.png deleted file mode 100644 index 1400adc..0000000 Binary files a/src/laoyou_client/src/static/icon/github-line.png and /dev/null differ diff --git a/src/laoyou_client/src/static/icon/health.png b/src/laoyou_client/src/static/icon/health.png deleted file mode 100644 index 6645a7a..0000000 Binary files a/src/laoyou_client/src/static/icon/health.png and /dev/null differ diff --git a/src/laoyou_client/src/static/icon/home.png b/src/laoyou_client/src/static/icon/home.png deleted file mode 100644 index e15268d..0000000 Binary files a/src/laoyou_client/src/static/icon/home.png and /dev/null differ diff --git a/src/laoyou_client/src/static/icon/home_selected.png b/src/laoyou_client/src/static/icon/home_selected.png deleted file mode 100644 index 2c9b779..0000000 Binary files a/src/laoyou_client/src/static/icon/home_selected.png and /dev/null differ diff --git a/src/laoyou_client/src/static/icon/img.png b/src/laoyou_client/src/static/icon/img.png deleted file mode 100644 index f6969a5..0000000 Binary files a/src/laoyou_client/src/static/icon/img.png and /dev/null differ diff --git a/src/laoyou_client/src/static/icon/learn.png b/src/laoyou_client/src/static/icon/learn.png deleted file mode 100644 index e561171..0000000 Binary files a/src/laoyou_client/src/static/icon/learn.png and /dev/null differ diff --git a/src/laoyou_client/src/static/icon/left.png b/src/laoyou_client/src/static/icon/left.png deleted file mode 100644 index f3662e3..0000000 Binary files a/src/laoyou_client/src/static/icon/left.png and /dev/null differ diff --git a/src/laoyou_client/src/static/icon/like_kx.png b/src/laoyou_client/src/static/icon/like_kx.png deleted file mode 100644 index 3b1fab6..0000000 Binary files a/src/laoyou_client/src/static/icon/like_kx.png and /dev/null differ diff --git a/src/laoyou_client/src/static/icon/like_sx.png b/src/laoyou_client/src/static/icon/like_sx.png deleted file mode 100644 index 7b93ecf..0000000 Binary files a/src/laoyou_client/src/static/icon/like_sx.png and /dev/null differ diff --git a/src/laoyou_client/src/static/icon/logo.png b/src/laoyou_client/src/static/icon/logo.png deleted file mode 100644 index a76f66a..0000000 Binary files a/src/laoyou_client/src/static/icon/logo.png and /dev/null differ diff --git a/src/laoyou_client/src/static/icon/more.png b/src/laoyou_client/src/static/icon/more.png deleted file mode 100644 index c3b0335..0000000 Binary files a/src/laoyou_client/src/static/icon/more.png and /dev/null differ diff --git a/src/laoyou_client/src/static/icon/phone.png b/src/laoyou_client/src/static/icon/phone.png deleted file mode 100644 index 025a91b..0000000 Binary files a/src/laoyou_client/src/static/icon/phone.png and /dev/null differ diff --git a/src/laoyou_client/src/static/icon/plus.png b/src/laoyou_client/src/static/icon/plus.png deleted file mode 100644 index 0b543b6..0000000 Binary files a/src/laoyou_client/src/static/icon/plus.png and /dev/null differ diff --git a/src/laoyou_client/src/static/icon/refresh.png b/src/laoyou_client/src/static/icon/refresh.png deleted file mode 100644 index 876247a..0000000 Binary files a/src/laoyou_client/src/static/icon/refresh.png and /dev/null differ diff --git a/src/laoyou_client/src/static/icon/right.png b/src/laoyou_client/src/static/icon/right.png deleted file mode 100644 index 993dc6c..0000000 Binary files a/src/laoyou_client/src/static/icon/right.png and /dev/null differ diff --git a/src/laoyou_client/src/static/icon/search.png b/src/laoyou_client/src/static/icon/search.png deleted file mode 100644 index 89fb188..0000000 Binary files a/src/laoyou_client/src/static/icon/search.png and /dev/null differ diff --git a/src/laoyou_client/src/static/icon/setting.png b/src/laoyou_client/src/static/icon/setting.png deleted file mode 100644 index eb1d77c..0000000 Binary files a/src/laoyou_client/src/static/icon/setting.png and /dev/null differ diff --git a/src/laoyou_client/src/static/icon/share.png b/src/laoyou_client/src/static/icon/share.png deleted file mode 100644 index 64ddb8c..0000000 Binary files a/src/laoyou_client/src/static/icon/share.png and /dev/null differ diff --git a/src/laoyou_client/src/static/icon/star.png b/src/laoyou_client/src/static/icon/star.png deleted file mode 100644 index 609275e..0000000 Binary files a/src/laoyou_client/src/static/icon/star.png and /dev/null differ diff --git a/src/laoyou_client/src/static/icon/unstar.png b/src/laoyou_client/src/static/icon/unstar.png deleted file mode 100644 index 6eafe7a..0000000 Binary files a/src/laoyou_client/src/static/icon/unstar.png and /dev/null differ diff --git a/src/laoyou_client/src/static/icon/user-line.png b/src/laoyou_client/src/static/icon/user-line.png deleted file mode 100644 index 65bc231..0000000 Binary files a/src/laoyou_client/src/static/icon/user-line.png and /dev/null differ diff --git a/src/laoyou_client/src/static/icon/user.png b/src/laoyou_client/src/static/icon/user.png deleted file mode 100644 index 7127aa8..0000000 Binary files a/src/laoyou_client/src/static/icon/user.png and /dev/null differ diff --git a/src/laoyou_client/src/static/icon/weather.png b/src/laoyou_client/src/static/icon/weather.png deleted file mode 100644 index f1054eb..0000000 Binary files a/src/laoyou_client/src/static/icon/weather.png and /dev/null differ diff --git a/src/laoyou_client/src/static/images/icon_location.png b/src/laoyou_client/src/static/images/icon_location.png deleted file mode 100644 index a2dc020..0000000 Binary files a/src/laoyou_client/src/static/images/icon_location.png and /dev/null differ diff --git a/src/laoyou_client/src/static/images/speaker-1.png b/src/laoyou_client/src/static/images/speaker-1.png deleted file mode 100644 index 7905277..0000000 Binary files a/src/laoyou_client/src/static/images/speaker-1.png and /dev/null differ diff --git a/src/laoyou_client/src/static/images/speaker.png b/src/laoyou_client/src/static/images/speaker.png deleted file mode 100644 index c67e53a..0000000 Binary files a/src/laoyou_client/src/static/images/speaker.png and /dev/null differ diff --git a/src/laoyou_client/src/static/news/news1.webp b/src/laoyou_client/src/static/news/news1.webp deleted file mode 100644 index 46d7f09..0000000 Binary files a/src/laoyou_client/src/static/news/news1.webp and /dev/null differ diff --git a/src/laoyou_client/src/static/news/news2.webp b/src/laoyou_client/src/static/news/news2.webp deleted file mode 100644 index f2bcfee..0000000 Binary files a/src/laoyou_client/src/static/news/news2.webp and /dev/null differ diff --git a/src/laoyou_client/src/static/news/news3.png b/src/laoyou_client/src/static/news/news3.png deleted file mode 100644 index 1c4a606..0000000 Binary files a/src/laoyou_client/src/static/news/news3.png and /dev/null differ diff --git a/src/laoyou_client/src/static/news/news3.webp b/src/laoyou_client/src/static/news/news3.webp deleted file mode 100644 index e96abf2..0000000 Binary files a/src/laoyou_client/src/static/news/news3.webp and /dev/null differ diff --git a/src/laoyou_client/src/static/news/news4.webp b/src/laoyou_client/src/static/news/news4.webp deleted file mode 100644 index 8291e49..0000000 Binary files a/src/laoyou_client/src/static/news/news4.webp and /dev/null differ diff --git a/src/laoyou_client/src/static/news/news5.webp b/src/laoyou_client/src/static/news/news5.webp deleted file mode 100644 index d5a53c4..0000000 Binary files a/src/laoyou_client/src/static/news/news5.webp and /dev/null differ diff --git a/src/laoyou_client/src/static/news/news6.webp b/src/laoyou_client/src/static/news/news6.webp deleted file mode 100644 index 79de061..0000000 Binary files a/src/laoyou_client/src/static/news/news6.webp and /dev/null differ diff --git a/src/laoyou_client/src/static/news/news7.webp b/src/laoyou_client/src/static/news/news7.webp deleted file mode 100644 index 1f2f936..0000000 Binary files a/src/laoyou_client/src/static/news/news7.webp and /dev/null differ diff --git a/src/laoyou_client/src/static/qweather-icons/LICENSE b/src/laoyou_client/src/static/qweather-icons/LICENSE deleted file mode 100644 index aa2286b..0000000 --- a/src/laoyou_client/src/static/qweather-icons/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2021 QWeather 和风天气 - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/src/laoyou_client/src/static/qweather-icons/README.md b/src/laoyou_client/src/static/qweather-icons/README.md deleted file mode 100644 index ac8826e..0000000 --- a/src/laoyou_client/src/static/qweather-icons/README.md +++ /dev/null @@ -1,159 +0,0 @@ -# 和风天气图标 QWeather Icons - -[English](#qweather-icons) - -和风天气图标是一个开源、漂亮的天气图标库,支持SVG和Web Font,兼容[和风天气API](https://dev.qweather.com),适用于任何需要天气图标的项目。 - -## 下载和安装 - -你可以通过多种方式下载和安装和风天气图标: - -**npm** - -```bash -npm i qweather-icons -``` - -**CDN** - -```bash - -``` - -或[下载.zip](https://github.com/qwd/Icons/releases) - -## 如何使用 - -- 在HTML中嵌入SVG -- 在`img`中使用 -- 通过web font加载 - -> 如果你是[和风天气开发者](https://dev.qweather.com/),图标和字体的命名与`icon`字段是一致的,因此你可以直接通过`icon`字段找到你需要的图标和字体。 - -具体使用方式请参考[使用文档](https://icons.qweather.com/usage/)。 - -## 设计文件 - -所有图标的设计资源可以[在Figma中查看](https://www.figma.com/community/file/1196353857920331062)。 - -## 开发 - -假设你已经拥有[Node.js](https://nodejs.org)环境。克隆本项目到本地,并安装依赖。 - -```bash -git clone https://github.com/qwd/Icons.git -cd Icons -npm install -``` - -### 运行文档 - -```bash -npm run docs -``` - -在浏览器打开`https://localhost:1313`即可。 - -### 创建图标 - -```bash -npm run icons -``` - -### 其他scripts - -请查看`package.json`。 - -## 自定义图标 - -参考[自定义文档](https://icons.qweather.com/customize/)。 - -## 灵感 - -灵感来自[Boogstrap Icons](https://icons.getbootstrap.com/) - -## 许可 - -版权所属 [QWeather](https://www.qweather.com/) - -代码 [MIT](https://github.com/qwd/Icons/blob/main/LICENSE) - -图标 [知识共享署名4.0](https://creativecommons.org/licenses/by/4.0/deed.zh) - -# QWeather Icons - -QWeather Icons is an open source, beautiful weather icon library that supports SVG and Web Font, compatible with [QWeather API](https://dev.qweather.com/en/), and also works in any project that needs weather icons. - -## Install - -**npm** - -```bash -npm i qweather-icons -``` - -**CDN** - -```bash - -``` - -Or [Download .zip](https://github.com/qwd/Icons/releases) - -## How to Use - -- Embedding SVG in HTML -- Use `img` element -- Loading via web font - -> For [QWeather developers](https://dev.qweather.com/en/), the icons and fonts are named the same as the `icon` field, so you can find the icons and fonts you need directly through the `icon` field. - -See [Usage](https://icons.qweather.com/en/usage/) for more. - -## Design resources - -All design resources for icons can be found in [Figma](https://www.figma.com/community/file/1196353857920331062). - -## Development - -Assume you already have a [Node.js](https://nodejs.org) environment. Clone this project locally and install the dependencies. - -```bash -git clone https://github.com/qwd/Icons.git -cd Icons -npm install -``` - -### Run docs server - -```bash -npm run docs -``` - -Open `https://localhost:1313` in your browser. - -### Build icons - -```bash -npm run icons -``` - -### Other scripts - -See `package.json` for more. - -## Customize - -See [Customize](https://icons.qweather.com/customize/) for more. - -## Inspiration - -Inspired by [Boogstrap Icons](https://icons.getbootstrap.com/) - -## License - -Copyright [QWeather](https://www.qweather.com/en/) - -Code for [MIT](https://github.com/qwd/Icons/blob/main/LICENSE) - -Icon for [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/) diff --git a/src/laoyou_client/src/static/qweather-icons/icons/100-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/100-fill.svg deleted file mode 100644 index 8eb998a..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/100-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/100.svg b/src/laoyou_client/src/static/qweather-icons/icons/100.svg deleted file mode 100644 index c09c805..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/100.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1001.svg b/src/laoyou_client/src/static/qweather-icons/icons/1001.svg deleted file mode 100644 index 94a63dc..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1001.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1002.svg b/src/laoyou_client/src/static/qweather-icons/icons/1002.svg deleted file mode 100644 index 40812fa..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1002.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1003.svg b/src/laoyou_client/src/static/qweather-icons/icons/1003.svg deleted file mode 100644 index 62f2797..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1003.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1004.svg b/src/laoyou_client/src/static/qweather-icons/icons/1004.svg deleted file mode 100644 index 436bba6..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1004.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1005.svg b/src/laoyou_client/src/static/qweather-icons/icons/1005.svg deleted file mode 100644 index e20a99b..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1005.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1006.svg b/src/laoyou_client/src/static/qweather-icons/icons/1006.svg deleted file mode 100644 index 4c7c42c..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1006.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1007.svg b/src/laoyou_client/src/static/qweather-icons/icons/1007.svg deleted file mode 100644 index 4e0cca2..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1007.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1008.svg b/src/laoyou_client/src/static/qweather-icons/icons/1008.svg deleted file mode 100644 index 329f6c7..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1008.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1009.svg b/src/laoyou_client/src/static/qweather-icons/icons/1009.svg deleted file mode 100644 index e066c19..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1009.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/101-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/101-fill.svg deleted file mode 100644 index dae24c3..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/101-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/101.svg b/src/laoyou_client/src/static/qweather-icons/icons/101.svg deleted file mode 100644 index 690c923..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/101.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1010.svg b/src/laoyou_client/src/static/qweather-icons/icons/1010.svg deleted file mode 100644 index ce17e9b..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1010.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1011.svg b/src/laoyou_client/src/static/qweather-icons/icons/1011.svg deleted file mode 100644 index 791c2a9..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1011.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1012.svg b/src/laoyou_client/src/static/qweather-icons/icons/1012.svg deleted file mode 100644 index 0ca6ee6..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1012.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1013.svg b/src/laoyou_client/src/static/qweather-icons/icons/1013.svg deleted file mode 100644 index b1f0cdf..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1013.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1014.svg b/src/laoyou_client/src/static/qweather-icons/icons/1014.svg deleted file mode 100644 index 4800932..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1014.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1015.svg b/src/laoyou_client/src/static/qweather-icons/icons/1015.svg deleted file mode 100644 index 9876330..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1015.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1016.svg b/src/laoyou_client/src/static/qweather-icons/icons/1016.svg deleted file mode 100644 index 903efef..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1016.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1017.svg b/src/laoyou_client/src/static/qweather-icons/icons/1017.svg deleted file mode 100644 index d8ef224..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1017.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1018.svg b/src/laoyou_client/src/static/qweather-icons/icons/1018.svg deleted file mode 100644 index 4a06063..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1018.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1019.svg b/src/laoyou_client/src/static/qweather-icons/icons/1019.svg deleted file mode 100644 index 7d81f72..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1019.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/102-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/102-fill.svg deleted file mode 100644 index 2add978..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/102-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/102.svg b/src/laoyou_client/src/static/qweather-icons/icons/102.svg deleted file mode 100644 index a37a503..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/102.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1020.svg b/src/laoyou_client/src/static/qweather-icons/icons/1020.svg deleted file mode 100644 index adcca8e..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1020.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1021.svg b/src/laoyou_client/src/static/qweather-icons/icons/1021.svg deleted file mode 100644 index 24eb564..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1021.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1022.svg b/src/laoyou_client/src/static/qweather-icons/icons/1022.svg deleted file mode 100644 index af2a3af..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1022.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1023.svg b/src/laoyou_client/src/static/qweather-icons/icons/1023.svg deleted file mode 100644 index 8d07633..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1023.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1024.svg b/src/laoyou_client/src/static/qweather-icons/icons/1024.svg deleted file mode 100644 index 0dd41ac..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1024.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1025.svg b/src/laoyou_client/src/static/qweather-icons/icons/1025.svg deleted file mode 100644 index 469aede..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1025.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1026.svg b/src/laoyou_client/src/static/qweather-icons/icons/1026.svg deleted file mode 100644 index 5ebad73..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1026.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1027.svg b/src/laoyou_client/src/static/qweather-icons/icons/1027.svg deleted file mode 100644 index 434aa1e..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1027.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1028.svg b/src/laoyou_client/src/static/qweather-icons/icons/1028.svg deleted file mode 100644 index 6369a48..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1028.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1029.svg b/src/laoyou_client/src/static/qweather-icons/icons/1029.svg deleted file mode 100644 index 178c3d0..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1029.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/103-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/103-fill.svg deleted file mode 100644 index d629442..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/103-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/103.svg b/src/laoyou_client/src/static/qweather-icons/icons/103.svg deleted file mode 100644 index bbc124f..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/103.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1030.svg b/src/laoyou_client/src/static/qweather-icons/icons/1030.svg deleted file mode 100644 index e9b8501..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1030.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1031.svg b/src/laoyou_client/src/static/qweather-icons/icons/1031.svg deleted file mode 100644 index 43f8d44..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1031.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1032.svg b/src/laoyou_client/src/static/qweather-icons/icons/1032.svg deleted file mode 100644 index da53958..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1032.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1033.svg b/src/laoyou_client/src/static/qweather-icons/icons/1033.svg deleted file mode 100644 index bb7787b..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1033.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1034.svg b/src/laoyou_client/src/static/qweather-icons/icons/1034.svg deleted file mode 100644 index c277460..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1034.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1035.svg b/src/laoyou_client/src/static/qweather-icons/icons/1035.svg deleted file mode 100644 index a168b4c..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1035.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1036.svg b/src/laoyou_client/src/static/qweather-icons/icons/1036.svg deleted file mode 100644 index 6437f27..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1036.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1037.svg b/src/laoyou_client/src/static/qweather-icons/icons/1037.svg deleted file mode 100644 index db7dcef..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1037.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1038.svg b/src/laoyou_client/src/static/qweather-icons/icons/1038.svg deleted file mode 100644 index 5bc07b1..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1038.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1039.svg b/src/laoyou_client/src/static/qweather-icons/icons/1039.svg deleted file mode 100644 index 3822b50..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1039.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/104-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/104-fill.svg deleted file mode 100644 index 02d8ee1..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/104-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/104.svg b/src/laoyou_client/src/static/qweather-icons/icons/104.svg deleted file mode 100644 index 4c6fec8..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/104.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1040.svg b/src/laoyou_client/src/static/qweather-icons/icons/1040.svg deleted file mode 100644 index e4c9118..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1040.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1041.svg b/src/laoyou_client/src/static/qweather-icons/icons/1041.svg deleted file mode 100644 index 4746bee..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1041.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1042.svg b/src/laoyou_client/src/static/qweather-icons/icons/1042.svg deleted file mode 100644 index 54015f7..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1042.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1043.svg b/src/laoyou_client/src/static/qweather-icons/icons/1043.svg deleted file mode 100644 index 4f04d54..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1043.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1044.svg b/src/laoyou_client/src/static/qweather-icons/icons/1044.svg deleted file mode 100644 index 0dad496..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1044.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1045.svg b/src/laoyou_client/src/static/qweather-icons/icons/1045.svg deleted file mode 100644 index e3c7f50..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1045.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1046.svg b/src/laoyou_client/src/static/qweather-icons/icons/1046.svg deleted file mode 100644 index 53a56aa..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1046.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1047.svg b/src/laoyou_client/src/static/qweather-icons/icons/1047.svg deleted file mode 100644 index 34cbaf0..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1047.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1048.svg b/src/laoyou_client/src/static/qweather-icons/icons/1048.svg deleted file mode 100644 index a58beb9..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1048.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1049.svg b/src/laoyou_client/src/static/qweather-icons/icons/1049.svg deleted file mode 100644 index 5ffaa6a..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1049.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1050.svg b/src/laoyou_client/src/static/qweather-icons/icons/1050.svg deleted file mode 100644 index 037e525..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1050.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1051.svg b/src/laoyou_client/src/static/qweather-icons/icons/1051.svg deleted file mode 100644 index f0fd308..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1051.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1052.svg b/src/laoyou_client/src/static/qweather-icons/icons/1052.svg deleted file mode 100644 index 39d4662..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1052.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1053.svg b/src/laoyou_client/src/static/qweather-icons/icons/1053.svg deleted file mode 100644 index d79c9f6..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1053.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1054.svg b/src/laoyou_client/src/static/qweather-icons/icons/1054.svg deleted file mode 100644 index 464c044..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1054.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1055.svg b/src/laoyou_client/src/static/qweather-icons/icons/1055.svg deleted file mode 100644 index 9d8315c..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1055.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1056.svg b/src/laoyou_client/src/static/qweather-icons/icons/1056.svg deleted file mode 100644 index b106fed..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1056.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1057.svg b/src/laoyou_client/src/static/qweather-icons/icons/1057.svg deleted file mode 100644 index b0a541e..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1057.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1058.svg b/src/laoyou_client/src/static/qweather-icons/icons/1058.svg deleted file mode 100644 index aea2b8f..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1058.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1059.svg b/src/laoyou_client/src/static/qweather-icons/icons/1059.svg deleted file mode 100644 index d17130e..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1059.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1060.svg b/src/laoyou_client/src/static/qweather-icons/icons/1060.svg deleted file mode 100644 index 1133fd3..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1060.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1061.svg b/src/laoyou_client/src/static/qweather-icons/icons/1061.svg deleted file mode 100644 index 4c4adf2..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1061.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1062.svg b/src/laoyou_client/src/static/qweather-icons/icons/1062.svg deleted file mode 100644 index 34161da..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1062.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1063.svg b/src/laoyou_client/src/static/qweather-icons/icons/1063.svg deleted file mode 100644 index ec0e1b6..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1063.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1064.svg b/src/laoyou_client/src/static/qweather-icons/icons/1064.svg deleted file mode 100644 index ae669d9..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1064.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1065.svg b/src/laoyou_client/src/static/qweather-icons/icons/1065.svg deleted file mode 100644 index 98f95e5..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1065.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1066.svg b/src/laoyou_client/src/static/qweather-icons/icons/1066.svg deleted file mode 100644 index 1883b60..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1066.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1067.svg b/src/laoyou_client/src/static/qweather-icons/icons/1067.svg deleted file mode 100644 index d2fde3e..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1067.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1068.svg b/src/laoyou_client/src/static/qweather-icons/icons/1068.svg deleted file mode 100644 index 3feab39..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1068.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1069.svg b/src/laoyou_client/src/static/qweather-icons/icons/1069.svg deleted file mode 100644 index a4680fa..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1069.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1071.svg b/src/laoyou_client/src/static/qweather-icons/icons/1071.svg deleted file mode 100644 index c27ced5..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1071.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1072.svg b/src/laoyou_client/src/static/qweather-icons/icons/1072.svg deleted file mode 100644 index 5a382fe..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1072.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1073.svg b/src/laoyou_client/src/static/qweather-icons/icons/1073.svg deleted file mode 100644 index 415717d..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1073.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1074.svg b/src/laoyou_client/src/static/qweather-icons/icons/1074.svg deleted file mode 100644 index daa1694..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1074.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1075.svg b/src/laoyou_client/src/static/qweather-icons/icons/1075.svg deleted file mode 100644 index 423056b..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1075.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1076.svg b/src/laoyou_client/src/static/qweather-icons/icons/1076.svg deleted file mode 100644 index 3cfd9ba..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1076.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1077.svg b/src/laoyou_client/src/static/qweather-icons/icons/1077.svg deleted file mode 100644 index 0c69bd8..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1077.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1078.svg b/src/laoyou_client/src/static/qweather-icons/icons/1078.svg deleted file mode 100644 index 0f1a9e0..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1078.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1079.svg b/src/laoyou_client/src/static/qweather-icons/icons/1079.svg deleted file mode 100644 index 5d8f67e..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1079.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1080.svg b/src/laoyou_client/src/static/qweather-icons/icons/1080.svg deleted file mode 100644 index 72f8233..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1080.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1081.svg b/src/laoyou_client/src/static/qweather-icons/icons/1081.svg deleted file mode 100644 index a9a9a8f..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1081.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1082.svg b/src/laoyou_client/src/static/qweather-icons/icons/1082.svg deleted file mode 100644 index ad1de1a..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1082.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1084.svg b/src/laoyou_client/src/static/qweather-icons/icons/1084.svg deleted file mode 100644 index 3335919..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1084.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1085.svg b/src/laoyou_client/src/static/qweather-icons/icons/1085.svg deleted file mode 100644 index 70e0797..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1085.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1086.svg b/src/laoyou_client/src/static/qweather-icons/icons/1086.svg deleted file mode 100644 index e1e0f17..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1086.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1087.svg b/src/laoyou_client/src/static/qweather-icons/icons/1087.svg deleted file mode 100644 index 636d3b8..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1087.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1088.svg b/src/laoyou_client/src/static/qweather-icons/icons/1088.svg deleted file mode 100644 index dcdb94f..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1088.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1089.svg b/src/laoyou_client/src/static/qweather-icons/icons/1089.svg deleted file mode 100644 index b4ad9e8..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1089.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1201.svg b/src/laoyou_client/src/static/qweather-icons/icons/1201.svg deleted file mode 100644 index a354837..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1201.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1202.svg b/src/laoyou_client/src/static/qweather-icons/icons/1202.svg deleted file mode 100644 index eccdcef..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1202.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1203.svg b/src/laoyou_client/src/static/qweather-icons/icons/1203.svg deleted file mode 100644 index 39db56e..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1203.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1204.svg b/src/laoyou_client/src/static/qweather-icons/icons/1204.svg deleted file mode 100644 index d895006..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1204.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1205.svg b/src/laoyou_client/src/static/qweather-icons/icons/1205.svg deleted file mode 100644 index 77c8f22..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1205.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1206.svg b/src/laoyou_client/src/static/qweather-icons/icons/1206.svg deleted file mode 100644 index 890a97f..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1206.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1207.svg b/src/laoyou_client/src/static/qweather-icons/icons/1207.svg deleted file mode 100644 index 51a2e30..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1207.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1208.svg b/src/laoyou_client/src/static/qweather-icons/icons/1208.svg deleted file mode 100644 index a8c10e0..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1208.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1209.svg b/src/laoyou_client/src/static/qweather-icons/icons/1209.svg deleted file mode 100644 index 095caf5..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1209.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1210.svg b/src/laoyou_client/src/static/qweather-icons/icons/1210.svg deleted file mode 100644 index 2d9ceea..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1210.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1211.svg b/src/laoyou_client/src/static/qweather-icons/icons/1211.svg deleted file mode 100644 index 2a1b965..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1211.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1212.svg b/src/laoyou_client/src/static/qweather-icons/icons/1212.svg deleted file mode 100644 index 781c77e..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1212.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1213.svg b/src/laoyou_client/src/static/qweather-icons/icons/1213.svg deleted file mode 100644 index 943fdbe..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1213.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1214.svg b/src/laoyou_client/src/static/qweather-icons/icons/1214.svg deleted file mode 100644 index 6193798..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1214.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1215.svg b/src/laoyou_client/src/static/qweather-icons/icons/1215.svg deleted file mode 100644 index 9cc0964..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1215.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1216.svg b/src/laoyou_client/src/static/qweather-icons/icons/1216.svg deleted file mode 100644 index 7d92e74..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1216.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1217.svg b/src/laoyou_client/src/static/qweather-icons/icons/1217.svg deleted file mode 100644 index 275a382..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1217.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1218.svg b/src/laoyou_client/src/static/qweather-icons/icons/1218.svg deleted file mode 100644 index 3b5fb1e..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1218.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1219.svg b/src/laoyou_client/src/static/qweather-icons/icons/1219.svg deleted file mode 100644 index 6467fd9..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1219.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1221.svg b/src/laoyou_client/src/static/qweather-icons/icons/1221.svg deleted file mode 100644 index a4532ad..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1221.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1241.svg b/src/laoyou_client/src/static/qweather-icons/icons/1241.svg deleted file mode 100644 index 354ff65..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1241.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1242.svg b/src/laoyou_client/src/static/qweather-icons/icons/1242.svg deleted file mode 100644 index d9d61bd..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1242.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1243.svg b/src/laoyou_client/src/static/qweather-icons/icons/1243.svg deleted file mode 100644 index 19c10b5..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1243.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1244.svg b/src/laoyou_client/src/static/qweather-icons/icons/1244.svg deleted file mode 100644 index cd74ff5..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1244.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1245.svg b/src/laoyou_client/src/static/qweather-icons/icons/1245.svg deleted file mode 100644 index e39e90b..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1245.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1246.svg b/src/laoyou_client/src/static/qweather-icons/icons/1246.svg deleted file mode 100644 index a56c005..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1246.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1247.svg b/src/laoyou_client/src/static/qweather-icons/icons/1247.svg deleted file mode 100644 index a064864..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1247.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1248.svg b/src/laoyou_client/src/static/qweather-icons/icons/1248.svg deleted file mode 100644 index e89ad75..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1248.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1249.svg b/src/laoyou_client/src/static/qweather-icons/icons/1249.svg deleted file mode 100644 index 506e4bd..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1249.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1250.svg b/src/laoyou_client/src/static/qweather-icons/icons/1250.svg deleted file mode 100644 index 886d7a6..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1250.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1251.svg b/src/laoyou_client/src/static/qweather-icons/icons/1251.svg deleted file mode 100644 index 46acf7d..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1251.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/150-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/150-fill.svg deleted file mode 100644 index 18b4fc0..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/150-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/150.svg b/src/laoyou_client/src/static/qweather-icons/icons/150.svg deleted file mode 100644 index 3b78903..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/150.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/151-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/151-fill.svg deleted file mode 100644 index f0ac138..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/151-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/151.svg b/src/laoyou_client/src/static/qweather-icons/icons/151.svg deleted file mode 100644 index 48b4502..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/151.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/152-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/152-fill.svg deleted file mode 100644 index d26dada..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/152-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/152.svg b/src/laoyou_client/src/static/qweather-icons/icons/152.svg deleted file mode 100644 index 091390d..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/152.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/153-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/153-fill.svg deleted file mode 100644 index daa1a1e..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/153-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/153.svg b/src/laoyou_client/src/static/qweather-icons/icons/153.svg deleted file mode 100644 index 052f33f..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/153.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1601.svg b/src/laoyou_client/src/static/qweather-icons/icons/1601.svg deleted file mode 100644 index 7fe3c0e..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1601.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1602.svg b/src/laoyou_client/src/static/qweather-icons/icons/1602.svg deleted file mode 100644 index 2761af8..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1602.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1603.svg b/src/laoyou_client/src/static/qweather-icons/icons/1603.svg deleted file mode 100644 index 890ed8f..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1603.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1604.svg b/src/laoyou_client/src/static/qweather-icons/icons/1604.svg deleted file mode 100644 index 18d5ecb..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1604.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1605.svg b/src/laoyou_client/src/static/qweather-icons/icons/1605.svg deleted file mode 100644 index a1158fd..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1605.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1606.svg b/src/laoyou_client/src/static/qweather-icons/icons/1606.svg deleted file mode 100644 index 8441735..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1606.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1607.svg b/src/laoyou_client/src/static/qweather-icons/icons/1607.svg deleted file mode 100644 index 45662d8..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1607.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1608.svg b/src/laoyou_client/src/static/qweather-icons/icons/1608.svg deleted file mode 100644 index ca87c16..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1608.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1609.svg b/src/laoyou_client/src/static/qweather-icons/icons/1609.svg deleted file mode 100644 index 235ab40..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1609.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1610.svg b/src/laoyou_client/src/static/qweather-icons/icons/1610.svg deleted file mode 100644 index cd61c4a..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1610.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1701.svg b/src/laoyou_client/src/static/qweather-icons/icons/1701.svg deleted file mode 100644 index 44a5c13..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1701.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1702.svg b/src/laoyou_client/src/static/qweather-icons/icons/1702.svg deleted file mode 100644 index a372af1..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1702.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1703.svg b/src/laoyou_client/src/static/qweather-icons/icons/1703.svg deleted file mode 100644 index 8cb4bbf..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1703.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1801.svg b/src/laoyou_client/src/static/qweather-icons/icons/1801.svg deleted file mode 100644 index 16d1e6c..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1801.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1802.svg b/src/laoyou_client/src/static/qweather-icons/icons/1802.svg deleted file mode 100644 index 55c9185..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1802.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1803.svg b/src/laoyou_client/src/static/qweather-icons/icons/1803.svg deleted file mode 100644 index f363401..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1803.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1804.svg b/src/laoyou_client/src/static/qweather-icons/icons/1804.svg deleted file mode 100644 index 392f65c..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1804.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/1805.svg b/src/laoyou_client/src/static/qweather-icons/icons/1805.svg deleted file mode 100644 index 8452bed..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/1805.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2001.svg b/src/laoyou_client/src/static/qweather-icons/icons/2001.svg deleted file mode 100644 index 89bc944..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2001.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2002.svg b/src/laoyou_client/src/static/qweather-icons/icons/2002.svg deleted file mode 100644 index 8fadf83..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2002.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2003.svg b/src/laoyou_client/src/static/qweather-icons/icons/2003.svg deleted file mode 100644 index c0fdedf..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2003.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2004.svg b/src/laoyou_client/src/static/qweather-icons/icons/2004.svg deleted file mode 100644 index 2ddaecc..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2004.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2005.svg b/src/laoyou_client/src/static/qweather-icons/icons/2005.svg deleted file mode 100644 index 67ad7c4..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2005.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2006.svg b/src/laoyou_client/src/static/qweather-icons/icons/2006.svg deleted file mode 100644 index 11fac49..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2006.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2007.svg b/src/laoyou_client/src/static/qweather-icons/icons/2007.svg deleted file mode 100644 index cf3cb87..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2007.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2029.svg b/src/laoyou_client/src/static/qweather-icons/icons/2029.svg deleted file mode 100644 index dd3759b..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2029.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2030.svg b/src/laoyou_client/src/static/qweather-icons/icons/2030.svg deleted file mode 100644 index a22023c..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2030.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2031.svg b/src/laoyou_client/src/static/qweather-icons/icons/2031.svg deleted file mode 100644 index 8800e51..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2031.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2032.svg b/src/laoyou_client/src/static/qweather-icons/icons/2032.svg deleted file mode 100644 index 05848d8..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2032.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2033.svg b/src/laoyou_client/src/static/qweather-icons/icons/2033.svg deleted file mode 100644 index 4a79897..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2033.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2050.svg b/src/laoyou_client/src/static/qweather-icons/icons/2050.svg deleted file mode 100644 index 393e8b2..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2050.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2051.svg b/src/laoyou_client/src/static/qweather-icons/icons/2051.svg deleted file mode 100644 index b8e6133..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2051.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2052.svg b/src/laoyou_client/src/static/qweather-icons/icons/2052.svg deleted file mode 100644 index 6a68373..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2052.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2053.svg b/src/laoyou_client/src/static/qweather-icons/icons/2053.svg deleted file mode 100644 index 85417c2..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2053.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2054.svg b/src/laoyou_client/src/static/qweather-icons/icons/2054.svg deleted file mode 100644 index 040dbc3..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2054.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2070.svg b/src/laoyou_client/src/static/qweather-icons/icons/2070.svg deleted file mode 100644 index 8ff2960..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2070.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2071.svg b/src/laoyou_client/src/static/qweather-icons/icons/2071.svg deleted file mode 100644 index 090b0aa..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2071.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2072.svg b/src/laoyou_client/src/static/qweather-icons/icons/2072.svg deleted file mode 100644 index 8fd9e7c..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2072.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2073.svg b/src/laoyou_client/src/static/qweather-icons/icons/2073.svg deleted file mode 100644 index 0f1cc40..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2073.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2074.svg b/src/laoyou_client/src/static/qweather-icons/icons/2074.svg deleted file mode 100644 index 87ffaa3..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2074.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2075.svg b/src/laoyou_client/src/static/qweather-icons/icons/2075.svg deleted file mode 100644 index 243f0e1..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2075.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2076.svg b/src/laoyou_client/src/static/qweather-icons/icons/2076.svg deleted file mode 100644 index 2cde19f..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2076.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2077.svg b/src/laoyou_client/src/static/qweather-icons/icons/2077.svg deleted file mode 100644 index 7587cf9..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2077.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2078.svg b/src/laoyou_client/src/static/qweather-icons/icons/2078.svg deleted file mode 100644 index 993893d..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2078.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2079.svg b/src/laoyou_client/src/static/qweather-icons/icons/2079.svg deleted file mode 100644 index 9f60056..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2079.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2080.svg b/src/laoyou_client/src/static/qweather-icons/icons/2080.svg deleted file mode 100644 index 19d181d..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2080.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2081.svg b/src/laoyou_client/src/static/qweather-icons/icons/2081.svg deleted file mode 100644 index dc016b3..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2081.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2082.svg b/src/laoyou_client/src/static/qweather-icons/icons/2082.svg deleted file mode 100644 index b46b251..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2082.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2083.svg b/src/laoyou_client/src/static/qweather-icons/icons/2083.svg deleted file mode 100644 index dd730aa..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2083.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2084.svg b/src/laoyou_client/src/static/qweather-icons/icons/2084.svg deleted file mode 100644 index fe9aaf4..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2084.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2085.svg b/src/laoyou_client/src/static/qweather-icons/icons/2085.svg deleted file mode 100644 index 5ad4117..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2085.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2100.svg b/src/laoyou_client/src/static/qweather-icons/icons/2100.svg deleted file mode 100644 index 06a3379..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2100.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2101.svg b/src/laoyou_client/src/static/qweather-icons/icons/2101.svg deleted file mode 100644 index dc1e4f7..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2101.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2102.svg b/src/laoyou_client/src/static/qweather-icons/icons/2102.svg deleted file mode 100644 index c669238..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2102.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2103.svg b/src/laoyou_client/src/static/qweather-icons/icons/2103.svg deleted file mode 100644 index 69142bb..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2103.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2104.svg b/src/laoyou_client/src/static/qweather-icons/icons/2104.svg deleted file mode 100644 index c17aaf3..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2104.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2105.svg b/src/laoyou_client/src/static/qweather-icons/icons/2105.svg deleted file mode 100644 index 4bd7f83..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2105.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2106.svg b/src/laoyou_client/src/static/qweather-icons/icons/2106.svg deleted file mode 100644 index 6d2b09f..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2106.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2107.svg b/src/laoyou_client/src/static/qweather-icons/icons/2107.svg deleted file mode 100644 index ee9602b..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2107.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2108.svg b/src/laoyou_client/src/static/qweather-icons/icons/2108.svg deleted file mode 100644 index 1bc2bd6..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2108.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2109.svg b/src/laoyou_client/src/static/qweather-icons/icons/2109.svg deleted file mode 100644 index 0fc99a2..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2109.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2111.svg b/src/laoyou_client/src/static/qweather-icons/icons/2111.svg deleted file mode 100644 index 73e82ae..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2111.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2120.svg b/src/laoyou_client/src/static/qweather-icons/icons/2120.svg deleted file mode 100644 index d3b8b5d..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2120.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2121.svg b/src/laoyou_client/src/static/qweather-icons/icons/2121.svg deleted file mode 100644 index d282d3d..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2121.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2122.svg b/src/laoyou_client/src/static/qweather-icons/icons/2122.svg deleted file mode 100644 index 80c4740..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2122.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2123.svg b/src/laoyou_client/src/static/qweather-icons/icons/2123.svg deleted file mode 100644 index 39b692e..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2123.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2124.svg b/src/laoyou_client/src/static/qweather-icons/icons/2124.svg deleted file mode 100644 index edba0a2..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2124.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2125.svg b/src/laoyou_client/src/static/qweather-icons/icons/2125.svg deleted file mode 100644 index 8eece54..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2125.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2126.svg b/src/laoyou_client/src/static/qweather-icons/icons/2126.svg deleted file mode 100644 index abbf223..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2126.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2127.svg b/src/laoyou_client/src/static/qweather-icons/icons/2127.svg deleted file mode 100644 index 298108f..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2127.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2128.svg b/src/laoyou_client/src/static/qweather-icons/icons/2128.svg deleted file mode 100644 index 843a5eb..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2128.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2129.svg b/src/laoyou_client/src/static/qweather-icons/icons/2129.svg deleted file mode 100644 index addaf56..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2129.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2130.svg b/src/laoyou_client/src/static/qweather-icons/icons/2130.svg deleted file mode 100644 index 89f28fc..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2130.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2131.svg b/src/laoyou_client/src/static/qweather-icons/icons/2131.svg deleted file mode 100644 index 265c5f6..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2131.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2132.svg b/src/laoyou_client/src/static/qweather-icons/icons/2132.svg deleted file mode 100644 index f0e5344..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2132.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2133.svg b/src/laoyou_client/src/static/qweather-icons/icons/2133.svg deleted file mode 100644 index dd1aec0..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2133.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2134.svg b/src/laoyou_client/src/static/qweather-icons/icons/2134.svg deleted file mode 100644 index 24d8846..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2134.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2135.svg b/src/laoyou_client/src/static/qweather-icons/icons/2135.svg deleted file mode 100644 index 9bd2ae5..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2135.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2150.svg b/src/laoyou_client/src/static/qweather-icons/icons/2150.svg deleted file mode 100644 index 2f62269..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2150.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2151.svg b/src/laoyou_client/src/static/qweather-icons/icons/2151.svg deleted file mode 100644 index 78a04a9..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2151.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2152.svg b/src/laoyou_client/src/static/qweather-icons/icons/2152.svg deleted file mode 100644 index be19f65..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2152.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2153.svg b/src/laoyou_client/src/static/qweather-icons/icons/2153.svg deleted file mode 100644 index c2a0f29..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2153.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2154.svg b/src/laoyou_client/src/static/qweather-icons/icons/2154.svg deleted file mode 100644 index 5dd08ee..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2154.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2155.svg b/src/laoyou_client/src/static/qweather-icons/icons/2155.svg deleted file mode 100644 index ea4bf54..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2155.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2156.svg b/src/laoyou_client/src/static/qweather-icons/icons/2156.svg deleted file mode 100644 index 7e8a21f..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2156.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2157.svg b/src/laoyou_client/src/static/qweather-icons/icons/2157.svg deleted file mode 100644 index d9cba84..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2157.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2158.svg b/src/laoyou_client/src/static/qweather-icons/icons/2158.svg deleted file mode 100644 index 78649a9..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2158.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2159.svg b/src/laoyou_client/src/static/qweather-icons/icons/2159.svg deleted file mode 100644 index cdc4d82..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2159.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2160.svg b/src/laoyou_client/src/static/qweather-icons/icons/2160.svg deleted file mode 100644 index 50af78c..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2160.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2161.svg b/src/laoyou_client/src/static/qweather-icons/icons/2161.svg deleted file mode 100644 index 10d94a6..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2161.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2162.svg b/src/laoyou_client/src/static/qweather-icons/icons/2162.svg deleted file mode 100644 index bee6977..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2162.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2163.svg b/src/laoyou_client/src/static/qweather-icons/icons/2163.svg deleted file mode 100644 index 3917621..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2163.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2164.svg b/src/laoyou_client/src/static/qweather-icons/icons/2164.svg deleted file mode 100644 index 37cab87..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2164.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2165.svg b/src/laoyou_client/src/static/qweather-icons/icons/2165.svg deleted file mode 100644 index c9d3df8..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2165.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2166.svg b/src/laoyou_client/src/static/qweather-icons/icons/2166.svg deleted file mode 100644 index da8ad78..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2166.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2190.svg b/src/laoyou_client/src/static/qweather-icons/icons/2190.svg deleted file mode 100644 index 80584de..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2190.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2191.svg b/src/laoyou_client/src/static/qweather-icons/icons/2191.svg deleted file mode 100644 index eea7488..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2191.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2192.svg b/src/laoyou_client/src/static/qweather-icons/icons/2192.svg deleted file mode 100644 index 6b43507..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2192.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2193.svg b/src/laoyou_client/src/static/qweather-icons/icons/2193.svg deleted file mode 100644 index 5c4a9d0..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2193.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2200.svg b/src/laoyou_client/src/static/qweather-icons/icons/2200.svg deleted file mode 100644 index 4670433..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2200.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2201.svg b/src/laoyou_client/src/static/qweather-icons/icons/2201.svg deleted file mode 100644 index 6efab12..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2201.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2202.svg b/src/laoyou_client/src/static/qweather-icons/icons/2202.svg deleted file mode 100644 index e58a023..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2202.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2203.svg b/src/laoyou_client/src/static/qweather-icons/icons/2203.svg deleted file mode 100644 index ef22be7..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2203.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2204.svg b/src/laoyou_client/src/static/qweather-icons/icons/2204.svg deleted file mode 100644 index 633600d..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2204.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2205.svg b/src/laoyou_client/src/static/qweather-icons/icons/2205.svg deleted file mode 100644 index 487da31..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2205.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2207.svg b/src/laoyou_client/src/static/qweather-icons/icons/2207.svg deleted file mode 100644 index e633e5b..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2207.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2208.svg b/src/laoyou_client/src/static/qweather-icons/icons/2208.svg deleted file mode 100644 index 03da20d..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2208.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2209.svg b/src/laoyou_client/src/static/qweather-icons/icons/2209.svg deleted file mode 100644 index 1b77a50..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2209.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2210.svg b/src/laoyou_client/src/static/qweather-icons/icons/2210.svg deleted file mode 100644 index 23aec9b..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2210.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2211.svg b/src/laoyou_client/src/static/qweather-icons/icons/2211.svg deleted file mode 100644 index 2c05724..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2211.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2212.svg b/src/laoyou_client/src/static/qweather-icons/icons/2212.svg deleted file mode 100644 index 0bc1621..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2212.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2213.svg b/src/laoyou_client/src/static/qweather-icons/icons/2213.svg deleted file mode 100644 index d4ff0e3..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2213.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2214.svg b/src/laoyou_client/src/static/qweather-icons/icons/2214.svg deleted file mode 100644 index ce6daa6..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2214.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2215.svg b/src/laoyou_client/src/static/qweather-icons/icons/2215.svg deleted file mode 100644 index 3b00639..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2215.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2216.svg b/src/laoyou_client/src/static/qweather-icons/icons/2216.svg deleted file mode 100644 index 88c40d7..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2216.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2217.svg b/src/laoyou_client/src/static/qweather-icons/icons/2217.svg deleted file mode 100644 index 98dc35b..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2217.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2218.svg b/src/laoyou_client/src/static/qweather-icons/icons/2218.svg deleted file mode 100644 index 833ab49..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2218.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2300.svg b/src/laoyou_client/src/static/qweather-icons/icons/2300.svg deleted file mode 100644 index dbf3bec..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2300.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2301.svg b/src/laoyou_client/src/static/qweather-icons/icons/2301.svg deleted file mode 100644 index 1bd72fa..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2301.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2302.svg b/src/laoyou_client/src/static/qweather-icons/icons/2302.svg deleted file mode 100644 index 87df1b4..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2302.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2303.svg b/src/laoyou_client/src/static/qweather-icons/icons/2303.svg deleted file mode 100644 index a0a5dab..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2303.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2304.svg b/src/laoyou_client/src/static/qweather-icons/icons/2304.svg deleted file mode 100644 index 4a3f01e..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2304.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2305.svg b/src/laoyou_client/src/static/qweather-icons/icons/2305.svg deleted file mode 100644 index 73a797f..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2305.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2306.svg b/src/laoyou_client/src/static/qweather-icons/icons/2306.svg deleted file mode 100644 index 31631aa..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2306.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2307.svg b/src/laoyou_client/src/static/qweather-icons/icons/2307.svg deleted file mode 100644 index 1ec69e7..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2307.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2308.svg b/src/laoyou_client/src/static/qweather-icons/icons/2308.svg deleted file mode 100644 index 32d9db1..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2308.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2309.svg b/src/laoyou_client/src/static/qweather-icons/icons/2309.svg deleted file mode 100644 index 21640bb..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2309.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2311.svg b/src/laoyou_client/src/static/qweather-icons/icons/2311.svg deleted file mode 100644 index ae172f5..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2311.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2312.svg b/src/laoyou_client/src/static/qweather-icons/icons/2312.svg deleted file mode 100644 index c5e5320..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2312.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2313.svg b/src/laoyou_client/src/static/qweather-icons/icons/2313.svg deleted file mode 100644 index ac90056..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2313.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2314.svg b/src/laoyou_client/src/static/qweather-icons/icons/2314.svg deleted file mode 100644 index 10e7fb6..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2314.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2315.svg b/src/laoyou_client/src/static/qweather-icons/icons/2315.svg deleted file mode 100644 index 32f99f6..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2315.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2316.svg b/src/laoyou_client/src/static/qweather-icons/icons/2316.svg deleted file mode 100644 index 4841bdd..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2316.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2317.svg b/src/laoyou_client/src/static/qweather-icons/icons/2317.svg deleted file mode 100644 index 903299a..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2317.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2318.svg b/src/laoyou_client/src/static/qweather-icons/icons/2318.svg deleted file mode 100644 index eb3667a..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2318.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2319.svg b/src/laoyou_client/src/static/qweather-icons/icons/2319.svg deleted file mode 100644 index c3e387e..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2319.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2320.svg b/src/laoyou_client/src/static/qweather-icons/icons/2320.svg deleted file mode 100644 index 685bebf..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2320.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2321.svg b/src/laoyou_client/src/static/qweather-icons/icons/2321.svg deleted file mode 100644 index 91ee16c..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2321.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2322.svg b/src/laoyou_client/src/static/qweather-icons/icons/2322.svg deleted file mode 100644 index bee58cd..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2322.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2323.svg b/src/laoyou_client/src/static/qweather-icons/icons/2323.svg deleted file mode 100644 index 0480365..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2323.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2324.svg b/src/laoyou_client/src/static/qweather-icons/icons/2324.svg deleted file mode 100644 index 7d9db6d..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2324.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2325.svg b/src/laoyou_client/src/static/qweather-icons/icons/2325.svg deleted file mode 100644 index 57c8084..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2325.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2326.svg b/src/laoyou_client/src/static/qweather-icons/icons/2326.svg deleted file mode 100644 index 9d99f04..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2326.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2327.svg b/src/laoyou_client/src/static/qweather-icons/icons/2327.svg deleted file mode 100644 index 8e68119..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2327.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2328.svg b/src/laoyou_client/src/static/qweather-icons/icons/2328.svg deleted file mode 100644 index 252677e..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2328.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2330.svg b/src/laoyou_client/src/static/qweather-icons/icons/2330.svg deleted file mode 100644 index 474c74d..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2330.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2331.svg b/src/laoyou_client/src/static/qweather-icons/icons/2331.svg deleted file mode 100644 index f00559b..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2331.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2332.svg b/src/laoyou_client/src/static/qweather-icons/icons/2332.svg deleted file mode 100644 index 5d95372..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2332.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2333.svg b/src/laoyou_client/src/static/qweather-icons/icons/2333.svg deleted file mode 100644 index 58ed7da..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2333.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2341.svg b/src/laoyou_client/src/static/qweather-icons/icons/2341.svg deleted file mode 100644 index 185eef0..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2341.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2343.svg b/src/laoyou_client/src/static/qweather-icons/icons/2343.svg deleted file mode 100644 index d44a28a..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2343.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2345.svg b/src/laoyou_client/src/static/qweather-icons/icons/2345.svg deleted file mode 100644 index 8d3ada2..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2345.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2346.svg b/src/laoyou_client/src/static/qweather-icons/icons/2346.svg deleted file mode 100644 index 4607eb1..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2346.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2348.svg b/src/laoyou_client/src/static/qweather-icons/icons/2348.svg deleted file mode 100644 index 1b6944e..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2348.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2349.svg b/src/laoyou_client/src/static/qweather-icons/icons/2349.svg deleted file mode 100644 index 386a3e8..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2349.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2350.svg b/src/laoyou_client/src/static/qweather-icons/icons/2350.svg deleted file mode 100644 index ddc83d1..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2350.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2351.svg b/src/laoyou_client/src/static/qweather-icons/icons/2351.svg deleted file mode 100644 index 74b5eb8..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2351.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2352.svg b/src/laoyou_client/src/static/qweather-icons/icons/2352.svg deleted file mode 100644 index 9924426..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2352.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2353.svg b/src/laoyou_client/src/static/qweather-icons/icons/2353.svg deleted file mode 100644 index fb480b4..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2353.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2354.svg b/src/laoyou_client/src/static/qweather-icons/icons/2354.svg deleted file mode 100644 index 1c92250..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2354.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2355.svg b/src/laoyou_client/src/static/qweather-icons/icons/2355.svg deleted file mode 100644 index 92b8540..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2355.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2356.svg b/src/laoyou_client/src/static/qweather-icons/icons/2356.svg deleted file mode 100644 index 3a2ffb0..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2356.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2357.svg b/src/laoyou_client/src/static/qweather-icons/icons/2357.svg deleted file mode 100644 index 57cb5d7..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2357.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2358.svg b/src/laoyou_client/src/static/qweather-icons/icons/2358.svg deleted file mode 100644 index 55c509b..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2358.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2359.svg b/src/laoyou_client/src/static/qweather-icons/icons/2359.svg deleted file mode 100644 index b8ce8d4..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2359.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2360.svg b/src/laoyou_client/src/static/qweather-icons/icons/2360.svg deleted file mode 100644 index 91e4e3e..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2360.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2361.svg b/src/laoyou_client/src/static/qweather-icons/icons/2361.svg deleted file mode 100644 index f731066..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2361.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2362.svg b/src/laoyou_client/src/static/qweather-icons/icons/2362.svg deleted file mode 100644 index e141b7f..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2362.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2363.svg b/src/laoyou_client/src/static/qweather-icons/icons/2363.svg deleted file mode 100644 index f69a147..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2363.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2364.svg b/src/laoyou_client/src/static/qweather-icons/icons/2364.svg deleted file mode 100644 index dba246d..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2364.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2365.svg b/src/laoyou_client/src/static/qweather-icons/icons/2365.svg deleted file mode 100644 index b22301e..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2365.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2366.svg b/src/laoyou_client/src/static/qweather-icons/icons/2366.svg deleted file mode 100644 index 07e3d4a..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2366.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2367.svg b/src/laoyou_client/src/static/qweather-icons/icons/2367.svg deleted file mode 100644 index 79bbbff..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2367.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2368.svg b/src/laoyou_client/src/static/qweather-icons/icons/2368.svg deleted file mode 100644 index 09a5345..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2368.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2369.svg b/src/laoyou_client/src/static/qweather-icons/icons/2369.svg deleted file mode 100644 index fb5e7b5..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2369.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2370.svg b/src/laoyou_client/src/static/qweather-icons/icons/2370.svg deleted file mode 100644 index 6a6c308..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2370.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2371.svg b/src/laoyou_client/src/static/qweather-icons/icons/2371.svg deleted file mode 100644 index b548764..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2371.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2372.svg b/src/laoyou_client/src/static/qweather-icons/icons/2372.svg deleted file mode 100644 index 1f2084f..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2372.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2373.svg b/src/laoyou_client/src/static/qweather-icons/icons/2373.svg deleted file mode 100644 index ca1c0b6..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2373.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2374.svg b/src/laoyou_client/src/static/qweather-icons/icons/2374.svg deleted file mode 100644 index 341d923..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2374.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2375.svg b/src/laoyou_client/src/static/qweather-icons/icons/2375.svg deleted file mode 100644 index 16e6d50..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2375.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2376.svg b/src/laoyou_client/src/static/qweather-icons/icons/2376.svg deleted file mode 100644 index 8b27291..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2376.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2377.svg b/src/laoyou_client/src/static/qweather-icons/icons/2377.svg deleted file mode 100644 index fe09b42..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2377.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2378.svg b/src/laoyou_client/src/static/qweather-icons/icons/2378.svg deleted file mode 100644 index db5587b..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2378.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2379.svg b/src/laoyou_client/src/static/qweather-icons/icons/2379.svg deleted file mode 100644 index ea7cfbe..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2379.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2380.svg b/src/laoyou_client/src/static/qweather-icons/icons/2380.svg deleted file mode 100644 index 2638ba5..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2380.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2381.svg b/src/laoyou_client/src/static/qweather-icons/icons/2381.svg deleted file mode 100644 index 4043048..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2381.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2382.svg b/src/laoyou_client/src/static/qweather-icons/icons/2382.svg deleted file mode 100644 index 768764a..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2382.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2383.svg b/src/laoyou_client/src/static/qweather-icons/icons/2383.svg deleted file mode 100644 index b54aec8..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2383.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2384.svg b/src/laoyou_client/src/static/qweather-icons/icons/2384.svg deleted file mode 100644 index 0fe5430..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2384.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2385.svg b/src/laoyou_client/src/static/qweather-icons/icons/2385.svg deleted file mode 100644 index 845881c..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2385.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2386.svg b/src/laoyou_client/src/static/qweather-icons/icons/2386.svg deleted file mode 100644 index 21583a6..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2386.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2387.svg b/src/laoyou_client/src/static/qweather-icons/icons/2387.svg deleted file mode 100644 index 0e1055a..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2387.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2388.svg b/src/laoyou_client/src/static/qweather-icons/icons/2388.svg deleted file mode 100644 index 7424b52..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2388.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2389.svg b/src/laoyou_client/src/static/qweather-icons/icons/2389.svg deleted file mode 100644 index ecf82d3..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2389.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2390.svg b/src/laoyou_client/src/static/qweather-icons/icons/2390.svg deleted file mode 100644 index 85194ed..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2390.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2391.svg b/src/laoyou_client/src/static/qweather-icons/icons/2391.svg deleted file mode 100644 index 75cb711..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2391.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2392.svg b/src/laoyou_client/src/static/qweather-icons/icons/2392.svg deleted file mode 100644 index b0f2e10..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2392.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2393.svg b/src/laoyou_client/src/static/qweather-icons/icons/2393.svg deleted file mode 100644 index c5f8160..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2393.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2394.svg b/src/laoyou_client/src/static/qweather-icons/icons/2394.svg deleted file mode 100644 index 70b2078..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2394.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2395.svg b/src/laoyou_client/src/static/qweather-icons/icons/2395.svg deleted file mode 100644 index 4b0e634..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2395.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2396.svg b/src/laoyou_client/src/static/qweather-icons/icons/2396.svg deleted file mode 100644 index 246cfe9..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2396.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2397.svg b/src/laoyou_client/src/static/qweather-icons/icons/2397.svg deleted file mode 100644 index 5d11876..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2397.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2398.svg b/src/laoyou_client/src/static/qweather-icons/icons/2398.svg deleted file mode 100644 index 7b9888f..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2398.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2399.svg b/src/laoyou_client/src/static/qweather-icons/icons/2399.svg deleted file mode 100644 index 3eb4246..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2399.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2400.svg b/src/laoyou_client/src/static/qweather-icons/icons/2400.svg deleted file mode 100644 index 5d98903..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2400.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2409.svg b/src/laoyou_client/src/static/qweather-icons/icons/2409.svg deleted file mode 100644 index d4de888..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2409.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2411.svg b/src/laoyou_client/src/static/qweather-icons/icons/2411.svg deleted file mode 100644 index c73b9be..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2411.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2412.svg b/src/laoyou_client/src/static/qweather-icons/icons/2412.svg deleted file mode 100644 index 40405d9..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2412.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2413.svg b/src/laoyou_client/src/static/qweather-icons/icons/2413.svg deleted file mode 100644 index 55f8e73..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2413.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2414.svg b/src/laoyou_client/src/static/qweather-icons/icons/2414.svg deleted file mode 100644 index dda86d6..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2414.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2415.svg b/src/laoyou_client/src/static/qweather-icons/icons/2415.svg deleted file mode 100644 index ba163d7..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2415.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2416.svg b/src/laoyou_client/src/static/qweather-icons/icons/2416.svg deleted file mode 100644 index 7a34c89..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2416.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2417.svg b/src/laoyou_client/src/static/qweather-icons/icons/2417.svg deleted file mode 100644 index 22f8f22..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2417.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2418.svg b/src/laoyou_client/src/static/qweather-icons/icons/2418.svg deleted file mode 100644 index f0b2ea1..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2418.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2419.svg b/src/laoyou_client/src/static/qweather-icons/icons/2419.svg deleted file mode 100644 index 64f7f3e..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2419.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2420.svg b/src/laoyou_client/src/static/qweather-icons/icons/2420.svg deleted file mode 100644 index 9928b68..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2420.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2421.svg b/src/laoyou_client/src/static/qweather-icons/icons/2421.svg deleted file mode 100644 index c36b000..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2421.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2422.svg b/src/laoyou_client/src/static/qweather-icons/icons/2422.svg deleted file mode 100644 index a688a1f..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2422.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2423.svg b/src/laoyou_client/src/static/qweather-icons/icons/2423.svg deleted file mode 100644 index 8fdd950..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2423.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2424.svg b/src/laoyou_client/src/static/qweather-icons/icons/2424.svg deleted file mode 100644 index d618b99..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2424.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2425.svg b/src/laoyou_client/src/static/qweather-icons/icons/2425.svg deleted file mode 100644 index b970315..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2425.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/2426.svg b/src/laoyou_client/src/static/qweather-icons/icons/2426.svg deleted file mode 100644 index 1ea0713..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/2426.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/300-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/300-fill.svg deleted file mode 100644 index 1ee4a8b..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/300-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/300.svg b/src/laoyou_client/src/static/qweather-icons/icons/300.svg deleted file mode 100644 index 4a70d96..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/300.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/301-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/301-fill.svg deleted file mode 100644 index b0b043f..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/301-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/301.svg b/src/laoyou_client/src/static/qweather-icons/icons/301.svg deleted file mode 100644 index 50c116f..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/301.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/302-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/302-fill.svg deleted file mode 100644 index 2a2f2e5..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/302-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/302.svg b/src/laoyou_client/src/static/qweather-icons/icons/302.svg deleted file mode 100644 index 51c6536..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/302.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/303-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/303-fill.svg deleted file mode 100644 index d92a701..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/303-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/303.svg b/src/laoyou_client/src/static/qweather-icons/icons/303.svg deleted file mode 100644 index 64b5cf9..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/303.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/304-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/304-fill.svg deleted file mode 100644 index bb4a8b4..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/304-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/304.svg b/src/laoyou_client/src/static/qweather-icons/icons/304.svg deleted file mode 100644 index 167ed4f..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/304.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/305-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/305-fill.svg deleted file mode 100644 index 788d595..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/305-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/305.svg b/src/laoyou_client/src/static/qweather-icons/icons/305.svg deleted file mode 100644 index 5190dcd..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/305.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/306-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/306-fill.svg deleted file mode 100644 index 9eb78ac..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/306-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/306.svg b/src/laoyou_client/src/static/qweather-icons/icons/306.svg deleted file mode 100644 index e2fedd5..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/306.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/307-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/307-fill.svg deleted file mode 100644 index a672532..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/307-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/307.svg b/src/laoyou_client/src/static/qweather-icons/icons/307.svg deleted file mode 100644 index 73e3025..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/307.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/308-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/308-fill.svg deleted file mode 100644 index 22aba0f..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/308-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/308.svg b/src/laoyou_client/src/static/qweather-icons/icons/308.svg deleted file mode 100644 index 950f6e4..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/308.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/309-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/309-fill.svg deleted file mode 100644 index dd03e77..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/309-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/309.svg b/src/laoyou_client/src/static/qweather-icons/icons/309.svg deleted file mode 100644 index 5268dd1..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/309.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/310-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/310-fill.svg deleted file mode 100644 index 6d438c1..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/310-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/310.svg b/src/laoyou_client/src/static/qweather-icons/icons/310.svg deleted file mode 100644 index b1a16f4..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/310.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/311-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/311-fill.svg deleted file mode 100644 index c1f4cd2..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/311-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/311.svg b/src/laoyou_client/src/static/qweather-icons/icons/311.svg deleted file mode 100644 index 211cf25..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/311.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/312-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/312-fill.svg deleted file mode 100644 index 8f12212..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/312-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/312.svg b/src/laoyou_client/src/static/qweather-icons/icons/312.svg deleted file mode 100644 index d98270a..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/312.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/313-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/313-fill.svg deleted file mode 100644 index b2a5830..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/313-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/313.svg b/src/laoyou_client/src/static/qweather-icons/icons/313.svg deleted file mode 100644 index c32f953..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/313.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/314-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/314-fill.svg deleted file mode 100644 index 2c2ea76..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/314-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/314.svg b/src/laoyou_client/src/static/qweather-icons/icons/314.svg deleted file mode 100644 index a384dee..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/314.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/315-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/315-fill.svg deleted file mode 100644 index e4bc831..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/315-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/315.svg b/src/laoyou_client/src/static/qweather-icons/icons/315.svg deleted file mode 100644 index 68fba7d..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/315.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/316-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/316-fill.svg deleted file mode 100644 index 74a63b7..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/316-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/316.svg b/src/laoyou_client/src/static/qweather-icons/icons/316.svg deleted file mode 100644 index 32119ec..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/316.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/317-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/317-fill.svg deleted file mode 100644 index a7db999..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/317-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/317.svg b/src/laoyou_client/src/static/qweather-icons/icons/317.svg deleted file mode 100644 index c1b1d9e..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/317.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/318-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/318-fill.svg deleted file mode 100644 index 1198ceb..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/318-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/318.svg b/src/laoyou_client/src/static/qweather-icons/icons/318.svg deleted file mode 100644 index 8349d00..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/318.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/350-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/350-fill.svg deleted file mode 100644 index bc33bc1..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/350-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/350.svg b/src/laoyou_client/src/static/qweather-icons/icons/350.svg deleted file mode 100644 index 3639e45..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/350.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/351-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/351-fill.svg deleted file mode 100644 index f497a28..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/351-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/351.svg b/src/laoyou_client/src/static/qweather-icons/icons/351.svg deleted file mode 100644 index 35811eb..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/351.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/399-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/399-fill.svg deleted file mode 100644 index 6165118..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/399-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/399.svg b/src/laoyou_client/src/static/qweather-icons/icons/399.svg deleted file mode 100644 index 01946d3..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/399.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/400-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/400-fill.svg deleted file mode 100644 index 8b2855e..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/400-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/400.svg b/src/laoyou_client/src/static/qweather-icons/icons/400.svg deleted file mode 100644 index 7e726e5..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/400.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/401-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/401-fill.svg deleted file mode 100644 index 9fccde0..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/401-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/401.svg b/src/laoyou_client/src/static/qweather-icons/icons/401.svg deleted file mode 100644 index 8fe4027..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/401.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/402-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/402-fill.svg deleted file mode 100644 index c3446d7..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/402-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/402.svg b/src/laoyou_client/src/static/qweather-icons/icons/402.svg deleted file mode 100644 index 9ae768e..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/402.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/403-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/403-fill.svg deleted file mode 100644 index e801c0b..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/403-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/403.svg b/src/laoyou_client/src/static/qweather-icons/icons/403.svg deleted file mode 100644 index 4707249..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/403.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/404-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/404-fill.svg deleted file mode 100644 index fd74359..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/404-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/404.svg b/src/laoyou_client/src/static/qweather-icons/icons/404.svg deleted file mode 100644 index 38e6570..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/404.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/405-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/405-fill.svg deleted file mode 100644 index e9a5ef1..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/405-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/405.svg b/src/laoyou_client/src/static/qweather-icons/icons/405.svg deleted file mode 100644 index 5b9f849..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/405.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/406-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/406-fill.svg deleted file mode 100644 index d995ccb..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/406-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/406.svg b/src/laoyou_client/src/static/qweather-icons/icons/406.svg deleted file mode 100644 index 4b83f04..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/406.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/407-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/407-fill.svg deleted file mode 100644 index 7e839fb..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/407-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/407.svg b/src/laoyou_client/src/static/qweather-icons/icons/407.svg deleted file mode 100644 index 8a85a5f..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/407.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/408-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/408-fill.svg deleted file mode 100644 index ef30073..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/408-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/408.svg b/src/laoyou_client/src/static/qweather-icons/icons/408.svg deleted file mode 100644 index e40c728..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/408.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/409-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/409-fill.svg deleted file mode 100644 index 7810ae4..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/409-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/409.svg b/src/laoyou_client/src/static/qweather-icons/icons/409.svg deleted file mode 100644 index f03f720..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/409.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/410-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/410-fill.svg deleted file mode 100644 index 408854e..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/410-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/410.svg b/src/laoyou_client/src/static/qweather-icons/icons/410.svg deleted file mode 100644 index a0d3f10..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/410.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/456-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/456-fill.svg deleted file mode 100644 index edd6df4..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/456-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/456.svg b/src/laoyou_client/src/static/qweather-icons/icons/456.svg deleted file mode 100644 index c85ae19..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/456.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/457-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/457-fill.svg deleted file mode 100644 index 946990e..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/457-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/457.svg b/src/laoyou_client/src/static/qweather-icons/icons/457.svg deleted file mode 100644 index b5fdf64..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/457.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/499-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/499-fill.svg deleted file mode 100644 index 412acfe..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/499-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/499.svg b/src/laoyou_client/src/static/qweather-icons/icons/499.svg deleted file mode 100644 index c6c1111..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/499.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/500-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/500-fill.svg deleted file mode 100644 index 7f23e70..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/500-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/500.svg b/src/laoyou_client/src/static/qweather-icons/icons/500.svg deleted file mode 100644 index 0fed18c..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/500.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/501-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/501-fill.svg deleted file mode 100644 index 4293cb4..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/501-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/501.svg b/src/laoyou_client/src/static/qweather-icons/icons/501.svg deleted file mode 100644 index 4ff02b6..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/501.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/502-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/502-fill.svg deleted file mode 100644 index c77fc0a..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/502-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/502.svg b/src/laoyou_client/src/static/qweather-icons/icons/502.svg deleted file mode 100644 index f0f0afb..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/502.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/503-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/503-fill.svg deleted file mode 100644 index 46775e3..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/503-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/503.svg b/src/laoyou_client/src/static/qweather-icons/icons/503.svg deleted file mode 100644 index c866876..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/503.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/504-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/504-fill.svg deleted file mode 100644 index 51b1f72..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/504-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/504.svg b/src/laoyou_client/src/static/qweather-icons/icons/504.svg deleted file mode 100644 index d65b694..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/504.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/507-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/507-fill.svg deleted file mode 100644 index 56d21bf..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/507-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/507.svg b/src/laoyou_client/src/static/qweather-icons/icons/507.svg deleted file mode 100644 index 5c566db..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/507.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/508-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/508-fill.svg deleted file mode 100644 index 40e1d12..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/508-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/508.svg b/src/laoyou_client/src/static/qweather-icons/icons/508.svg deleted file mode 100644 index 9794844..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/508.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/509-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/509-fill.svg deleted file mode 100644 index f23ab92..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/509-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/509.svg b/src/laoyou_client/src/static/qweather-icons/icons/509.svg deleted file mode 100644 index 15c4552..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/509.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/510-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/510-fill.svg deleted file mode 100644 index 98f8fe4..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/510-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/510.svg b/src/laoyou_client/src/static/qweather-icons/icons/510.svg deleted file mode 100644 index 3eb2d13..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/510.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/511-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/511-fill.svg deleted file mode 100644 index ada9420..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/511-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/511.svg b/src/laoyou_client/src/static/qweather-icons/icons/511.svg deleted file mode 100644 index 44c91b3..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/511.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/512-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/512-fill.svg deleted file mode 100644 index aaa7215..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/512-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/512.svg b/src/laoyou_client/src/static/qweather-icons/icons/512.svg deleted file mode 100644 index af48401..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/512.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/513-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/513-fill.svg deleted file mode 100644 index 95646d8..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/513-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/513.svg b/src/laoyou_client/src/static/qweather-icons/icons/513.svg deleted file mode 100644 index 30e9382..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/513.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/514-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/514-fill.svg deleted file mode 100644 index 47af727..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/514-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/514.svg b/src/laoyou_client/src/static/qweather-icons/icons/514.svg deleted file mode 100644 index 9167a40..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/514.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/515-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/515-fill.svg deleted file mode 100644 index 6ff6c6a..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/515-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/515.svg b/src/laoyou_client/src/static/qweather-icons/icons/515.svg deleted file mode 100644 index 36f0cc3..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/515.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/800.svg b/src/laoyou_client/src/static/qweather-icons/icons/800.svg deleted file mode 100644 index 7a5f34d..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/800.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/801.svg b/src/laoyou_client/src/static/qweather-icons/icons/801.svg deleted file mode 100644 index 4f6c991..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/801.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/802.svg b/src/laoyou_client/src/static/qweather-icons/icons/802.svg deleted file mode 100644 index 2ed2032..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/802.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/803.svg b/src/laoyou_client/src/static/qweather-icons/icons/803.svg deleted file mode 100644 index c713455..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/803.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/804.svg b/src/laoyou_client/src/static/qweather-icons/icons/804.svg deleted file mode 100644 index ed21f1e..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/804.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/805.svg b/src/laoyou_client/src/static/qweather-icons/icons/805.svg deleted file mode 100644 index 7601207..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/805.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/806.svg b/src/laoyou_client/src/static/qweather-icons/icons/806.svg deleted file mode 100644 index a0b70b6..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/806.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/807.svg b/src/laoyou_client/src/static/qweather-icons/icons/807.svg deleted file mode 100644 index 38e5727..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/807.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/900-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/900-fill.svg deleted file mode 100644 index 193c0b8..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/900-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/900.svg b/src/laoyou_client/src/static/qweather-icons/icons/900.svg deleted file mode 100644 index 4991e01..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/900.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/901-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/901-fill.svg deleted file mode 100644 index be28bd8..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/901-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/901.svg b/src/laoyou_client/src/static/qweather-icons/icons/901.svg deleted file mode 100644 index 7f1fe14..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/901.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/999-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/999-fill.svg deleted file mode 100644 index 91d9d4f..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/999-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/999.svg b/src/laoyou_client/src/static/qweather-icons/icons/999.svg deleted file mode 100644 index 865cc87..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/999.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/9998.svg b/src/laoyou_client/src/static/qweather-icons/icons/9998.svg deleted file mode 100644 index 9c4daba..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/9998.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/9999.svg b/src/laoyou_client/src/static/qweather-icons/icons/9999.svg deleted file mode 100644 index 51a7425..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/9999.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/qweather-fill.svg b/src/laoyou_client/src/static/qweather-icons/icons/qweather-fill.svg deleted file mode 100644 index 819aa6a..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/qweather-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/icons/qweather.svg b/src/laoyou_client/src/static/qweather-icons/icons/qweather.svg deleted file mode 100644 index 6a7cd02..0000000 --- a/src/laoyou_client/src/static/qweather-icons/icons/qweather.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/laoyou_client/src/static/qweather-icons/package.json b/src/laoyou_client/src/static/qweather-icons/package.json deleted file mode 100644 index 3b41d0e..0000000 --- a/src/laoyou_client/src/static/qweather-icons/package.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "name": "qweather-icons", - "version": "1.5.0", - "description": "Open source weather SVG icons and fonts, for QWeather and all developers", - "author": "QWeather", - "license": "MIT", - "homepage": "https://icons.qweather.com", - "repository": { - "type": "git", - "url": "https://github.com/qwd/Icons.git" - }, - "keywords": [ - "qweather", - "icons" - ], - "hugo-bin": { - "buildTags": "extended" - }, - "scripts": { - "icons": "npm run icons-main && npm run icons-font", - "icons-main": "node build/build-svgs.js", - "icons-zip": "cross-env-shell \"rm -rf QWeather-Icons-$npm_package_version && mkdir QWeather-Icons-$npm_package_version && cp -r icons/ QWeather-Icons-$npm_package_version/icons && cp -r font/ QWeather-Icons-$npm_package_version/font && cp LICENSE QWeather-Icons-$npm_package_version && cp README.md QWeather-Icons-$npm_package_version && zip -r9 QWeather-Icons-$npm_package_version.zip QWeather-Icons-$npm_package_version && rm -rf QWeather-Icons-$npm_package_version\"", - "icons-font": "node build/keep-last-icons.js && fantasticon && node build/build-alias.js", - "docs-build:docs": "hugo --cleanDestinationDir", - "docs-build:css": "npx tailwindcss -i ./docs/assets/css/tw.css -o ./docs/assets/css/style.css -m", - "docs-build": "npm run docs-build:css && npm run docs-build:docs", - "docs-server:css": "npx tailwindcss -i ./docs/assets/css/tw.css -o ./docs/assets/css/style.css -w", - "docs-server:docs": "hugo server", - "docs": "run-p docs-server:*", - "build-all": "run-s icons icons-zip docs-build", - "test:linkinator": "linkinator public --recurse --silent --skip \"^(?!http://localhost)\"", - "test:lockfile-lint": "lockfile-lint --allowed-hosts npm --allowed-schemes https: --empty-hostname false --type npm --path package-lock.json", - "test": "run-p --continue-on-error test:*" - }, - "devDependencies": { - "autoprefixer": "^10.4.12", - "chalk": "^4.1.2", - "cheerio": "^1.0.0-rc.10", - "cross-env": "^7.0.3", - "fantasticon": "^1.2.3", - "hugo-bin": "^0.102.0", - "linkinator": "^4.1.2", - "lockfile-lint": "^4.10.0", - "npm-run-all": "^4.1.5", - "postcss": "^8.4.20", - "postcss-cli": "^10.1.0", - "purgecss": "^4.0.3", - "stylelint": "^14.16.1", - "svg-sprite": "^3.0.0-alpha1", - "svgo": "^2.8.0", - "tailwindcss": "^3.3.2", - "vnu-jar": "21.6.11" - }, - "engines": { - "node": ">=10" - }, - "files": [ - "icons/*.svg", - "font", - "!.DS_Store" - ] -} diff --git a/src/laoyou_client/src/store/index.js b/src/laoyou_client/src/store/index.js deleted file mode 100644 index b2d98a0..0000000 --- a/src/laoyou_client/src/store/index.js +++ /dev/null @@ -1,7 +0,0 @@ -export * from "./modules/user/index"; -export * from "./modules/share"; -export * from "./modules/home"; -export * from "./modules/common"; -export * from "./modules/toast"; -export * from "./modules/comment"; -export * from "./modules/post"; diff --git a/src/laoyou_client/src/store/modules/comment/comment.js b/src/laoyou_client/src/store/modules/comment/comment.js deleted file mode 100644 index 7f4e3e4..0000000 --- a/src/laoyou_client/src/store/modules/comment/comment.js +++ /dev/null @@ -1,191 +0,0 @@ -import { defineStore } from "pinia"; -import { ref } from "vue"; -import { - getCommentListByShareId, - submitComment, -} from "../../../utils/api/comment"; -import { formatDateTime } from "../../../utils/fn/index"; -import { useUserStore } from "../../../store"; -import { storeToRefs } from "pinia"; - -export const useCommentStore = defineStore("comment", () => { - // -------------------- P R O P S -------------------- // - - const userStore = useUserStore(); - const { self_comment_cnt } = storeToRefs(userStore); - - // 是否显示底部评论框 - const show_footer_comment_box = ref(false); - // 分享类型 - const share_type = ref(0); //暂时定为0,表示图文分享 - // post id - const post_id = ref(0); - // post 评论列表 - const comment_list = ref([]); - const comment_list_tree = ref([]); - // 回复评论 用户openid - const reply_user = ref(); - const reply_comment_id = ref(); - - // ----------------- F U N C T I O N ----------------- // - - const reflush_footer_comment_box = () => { - reply_user.value = undefined; - reply_comment_id.value = undefined; - }; - - const addCommonShareComment = (comment_data, reply_user) => { - return new Promise((resolve, reject) => { - submitComment(comment_data) - .then((res) => { - //判断添加评论是否成功 - if (res.statusCode !== 201) { - reject(res.errMsg); - return; - } - - if (res.data.fa_comment_id === null) { - comment_list.value.push({ - author: { - avatar: res.data.user.avatar, - name: res.data.user.nickname, - // openid: res.data.user.openid, - }, - id: res.data.id, - text: res.data.content, - date: formatDateTime(res.data.createdAt), - area: res.data.user.city, - like: 0, - fa_comment_id: res.data.fa_comment_id, - son: [], - }); - } else { - // 找到父评论 - comment_list.value.forEach((item) => { - if (item.id === res.data.fa_comment_id) { - // 在一级评论下添加二级评论 - item.son.push({ - author: { - avatar: res.data.user.avatar, - name: res.data.user.nickname, - // openid: res.data.user.openid, - }, - id: res.data.id, - text: res.data.content, - date: formatDateTime(res.data.createdAt), - area: res.data.user.city, - like: 0, - fa_comment_id: res.data.fa_comment_id, - son: res.data.like, - reply_user: reply_user, - }); - } else if (item.son !== undefined && item.son.length > 0) { - item.son.forEach((son) => { - if (son.id === res.data.fa_comment_id) { - item.son.push({ - author: { - avatar: res.data.user.avatar, - name: res.data.user.nickname, - // openid: res.data.user.openid, - }, - id: res.data.id, - text: res.data.content, - date: formatDateTime(res.data.createdAt), - area: res.data.user.city, - like: 0, - fa_comment_id: res.data.fa_comment_id, - son: res.data.like, - reply_user: reply_user, - }); - } - }); - } - }); - } - userStore.updateSelfCommentCnt(self_comment_cnt.value + 1); - resolve(); - }) - .catch((err) => { - reject(err); - }); - }); - }; - - const getCommonShareCommentList = async (share_id) => { - await getCommentListByShareId(share_id).then((res) => { - if (res.statusCode === 200) { - comment_list.value = []; - res.data.forEach((item) => { - comment_list.value.push({ - author: { - avatar: item.user.avatar, - name: item.user.nickname, - openid: item.user.openid, - }, - id: item.id, - text: item.content, - date: formatDateTime(item.createdAt), - area: item.user.city, - like: item.like, - fa_comment_id: item.fa_comment_id, - son: [], - }); - }); - makeCommonShareCommentListTree(); - } - }); - }; - - // 根据fa_comment_id id 生成树形结构 - const makeCommonShareCommentListTree = () => { - for (let comment of comment_list.value) { - if (comment.fa_comment_id !== null) { - const f_comment = comment_list.value.find( - (_comment) => _comment.id === comment.fa_comment_id - ); - if (f_comment.son === null) { - f_comment.son = []; - } - comment.reply_user = f_comment.author; - f_comment.son.push(comment); - } - } - comment_list_tree.value = []; - for (let comment of comment_list.value) { - if (comment.fa_comment_id === null) { - comment_list_tree.value.push(comment); - } - } - // 对tree 进行扁平化处理 最多只有两层 - for (let comment of comment_list_tree.value) { - flatTree(comment); - } - comment_list.value = comment_list_tree.value; - }; - - const flatTree = (comment, fa_comment) => { - for (let son of comment.son) { - flatTree(son, comment); - } - - if (fa_comment !== undefined) { - // 将自身的儿子节点添加到父节点的儿子节点中 - fa_comment.son = [...fa_comment.son, ...comment.son]; - // 删除自身sonlist - delete comment.son; - } - }; - - return { - show_footer_comment_box, - share_type, - post_id, - comment_list, - comment_list_tree, - reply_user, - reply_comment_id, - getCommonShareCommentList, - addCommonShareComment, - reflush_footer_comment_box, - }; -}); diff --git a/src/laoyou_client/src/store/modules/comment/index.js b/src/laoyou_client/src/store/modules/comment/index.js deleted file mode 100644 index aa12cd3..0000000 --- a/src/laoyou_client/src/store/modules/comment/index.js +++ /dev/null @@ -1 +0,0 @@ -export * from "./comment"; diff --git a/src/laoyou_client/src/store/modules/common/common.js b/src/laoyou_client/src/store/modules/common/common.js deleted file mode 100644 index 4bd4f40..0000000 --- a/src/laoyou_client/src/store/modules/common/common.js +++ /dev/null @@ -1,23 +0,0 @@ -import { defineStore } from "pinia"; -import { ref } from "vue"; -export const useCommonStore = defineStore("common", () => { - // -------------------- P R O P S -------------------- // - const show_loading = ref(false); - - const scroll_pos_stk = ref([]); - - // ----------------- F U N C T I O N ----------------- // - const getScrollPos = () => { - return scroll_pos_stk.value.pop(); - }; - - const setScrollPos = (pos) => { - scroll_pos_stk.value.push(pos); - }; - - return { - show_loading, - getScrollPos, - setScrollPos, - }; -}); diff --git a/src/laoyou_client/src/store/modules/common/index.js b/src/laoyou_client/src/store/modules/common/index.js deleted file mode 100644 index 38bd338..0000000 --- a/src/laoyou_client/src/store/modules/common/index.js +++ /dev/null @@ -1 +0,0 @@ -export * from './common' \ No newline at end of file diff --git a/src/laoyou_client/src/store/modules/home/home.js b/src/laoyou_client/src/store/modules/home/home.js deleted file mode 100644 index a5fbf8c..0000000 --- a/src/laoyou_client/src/store/modules/home/home.js +++ /dev/null @@ -1,14 +0,0 @@ -import { defineStore } from "pinia"; -import { ref } from 'vue' - -export const useHomeStore = defineStore("home", () => { - - const tab_list = ref([{ name: "分享" }, { name: "新闻" }]); - const tab_list_active_idx = ref(0); - - - return { - tab_list_active_idx, - tab_list, - }; -}); diff --git a/src/laoyou_client/src/store/modules/home/index.js b/src/laoyou_client/src/store/modules/home/index.js deleted file mode 100644 index 8d4ce6d..0000000 --- a/src/laoyou_client/src/store/modules/home/index.js +++ /dev/null @@ -1 +0,0 @@ -export * from "./home.js"; diff --git a/src/laoyou_client/src/store/modules/post/index.js b/src/laoyou_client/src/store/modules/post/index.js deleted file mode 100644 index 0d2aafb..0000000 --- a/src/laoyou_client/src/store/modules/post/index.js +++ /dev/null @@ -1 +0,0 @@ -export * from "./post"; diff --git a/src/laoyou_client/src/store/modules/post/post.js b/src/laoyou_client/src/store/modules/post/post.js deleted file mode 100644 index 64f73ef..0000000 --- a/src/laoyou_client/src/store/modules/post/post.js +++ /dev/null @@ -1,53 +0,0 @@ -import { defineStore } from "pinia"; -import { ref } from "vue"; -import { getCommonShareList } from "../../../utils/api/post"; - -export const usePostStore = defineStore("post", () => { - // -------------------- P R O P S -------------------- // - - const choose_post_data = ref({}); - - // ----------------- F U N C T I O N ----------------- // - - const _get_common_share_list = async (page) => { - try { - const res = await getCommonShareList(page); - if (res.statusCode == 200) { - return { - list: res.data.commonshare_list.map((item) => { - return { - id: item.id, - title: item.title, - content: item.content, - cover_url: item.cover, - images: item.images.split(","), - like: item.like, - createdAt: item.createdAt, - key_words: item.key_words, - author: { - author_openid: item.user.openid, - name: item.user.nickname, - avatar: item.user.avatar, - city: item.user.city, - }, - }; - }), - total_count: res.data.total_count, - }; - } - } catch (error) { - console.log(error); - return []; - } - }; - - const choose_common_share = (data) => { - choose_post_data.value = data; - }; - - return { - choose_post_data, - _get_common_share_list, - choose_common_share, - }; -}); diff --git a/src/laoyou_client/src/store/modules/share/commonShare.js b/src/laoyou_client/src/store/modules/share/commonShare.js deleted file mode 100644 index 4e8f96c..0000000 --- a/src/laoyou_client/src/store/modules/share/commonShare.js +++ /dev/null @@ -1,147 +0,0 @@ -import { defineStore, storeToRefs } from "pinia"; -import { computed, ref } from "vue"; -import { addCommonshare } from "../../../utils/api/post"; -import { uploadImg } from "../../../utils/api/upload"; -import { Auth } from "../../../utils/enum/auth"; -import { useUserStore } from "../../index"; - -const SuccessCode = 201; - -export const useCommonShareStore = defineStore("commonShare", () => { - const userStore = useUserStore(); - const { avatar, nickname, self_commonshare_cnt } = storeToRefs(userStore); - const pic_id = ref(0); - const pic_list = ref([]); - const _pic_list = ref([]); - const common_share_title = ref(""); - const common_share_content = ref(""); - - //getter - const commonShare_is_empty = computed(() => { - return ( - pic_list.value.length === 0 && - common_share_title.value === "" && - common_share_content.value === "" - ); - }); - - // 数据不完整 - const commonShare_is_not_complete = computed(() => { - return ( - pic_list.value.length === 0 || - common_share_title.value === "" || - common_share_content.value === "" - ); - }); - - // 数据总和 - const commonshare_totalData = computed(() => { - return { - pic_list: pic_list.value, - common_share_title: common_share_title.value, - common_share_content: common_share_content.value, - }; - }); - - //上传图文分享 图片列表 - const commit_pic_list = async () => { - _pic_list.value = []; - const uploadPromises = pic_list.value.map((item) => { - return new Promise((resolve, reject) => { - uploadImg({ - filePath: item.url, - type: "commonshare", - }) - .then((res) => { - if (res.statusCode === SuccessCode) { - _pic_list.value.push(res.data); - resolve(); - } else { - reject(`Upload failed with status code ${res.statusCode}`); - } - }) - .catch((err) => { - reject(`Upload failed: ${err}`); - }); - }); - }); - - return await Promise.all(uploadPromises); - }; - - const _postCommonshare = async () => { - return new Promise((resolve, reject) => { - addCommonshare({ - pic_list: _pic_list.value, - common_share_title: common_share_title.value, - avatar: avatar.value, - common_share_content: common_share_content.value, - nickname: nickname.value, - }).then((res) => { - if (res.statusCode !== 201) { - reject(`Request failed with status code ${res.statusCode}`); - } - resolve(res); - }).catch; - }); - }; - - const postCommonshare = async () => { - try { - const user_storage = uni.getStorageSync(Auth.USER_TOKEN); - const expire = user_storage.expire; - const now = new Date(); - if (!user_storage) { - throw new Error("请先登陆"); - } - if (now.getTime() > expire) { - uni.removeStorageSync(Auth.USER_TOKEN); - throw new Error("请先登陆"); - } - if (commonShare_is_not_complete.value) { - throw new Error("数据不完整"); - } - - await commit_pic_list(); - const res = await _postCommonshare(); - userStore.updateSelfCommonshareCnt(self_commonshare_cnt.value + 1); - return res; - } catch (error) { - throw error; - } - }; - - const add_pic = (pic) => { - pic_list.value.push({ - id: pic_id.value++, - url: pic, - }); - }; - - const del_pic = (id) => { - pic_list.value = pic_list.value.filter((item) => item.id !== id); - }; - - //清空数据 - const clear_data = () => { - pic_list.value = []; - pic_id.value = 0; - common_share_title.value = ""; - common_share_content.value = ""; - }; - - return { - pic_id, - pic_list, - common_share_title, - common_share_content, - commonShare_is_empty, - commonshare_totalData, - commonShare_is_not_complete, - commit_pic_list, - postCommonshare, - add_pic, - del_pic, - clear_data, - }; -}); diff --git a/src/laoyou_client/src/store/modules/share/index.js b/src/laoyou_client/src/store/modules/share/index.js deleted file mode 100644 index 6564354..0000000 --- a/src/laoyou_client/src/store/modules/share/index.js +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./commonShare"; -export * from "./videoShare"; diff --git a/src/laoyou_client/src/store/modules/share/videoShare.js b/src/laoyou_client/src/store/modules/share/videoShare.js deleted file mode 100644 index a4a52df..0000000 --- a/src/laoyou_client/src/store/modules/share/videoShare.js +++ /dev/null @@ -1,46 +0,0 @@ -import { defineStore } from "pinia"; -import { ref, computed } from "vue"; - -export const useVidoShareStore = defineStore("videoShare", () => { - const video_share_title = ref(""); - const sub_video_url = ref(""); - - //getter - const videoShare_is_empty = computed(() => { - return sub_video_url.value === "" && video_share_title.value === ""; - }); - - const videoShare_totalData = computed(() => { - return { - video_share_title: video_share_title.value, - sub_video_url: sub_video_url.value, - }; - }); - - //function - // 添加视频 - const add_video = (url) => { - sub_video_url.value = url; - }; - - // 删除当前视频 - const del_video = () => { - sub_video_url.value = ""; - }; - - // 清空分享数据 - const clear_data = () => { - video_share_title.value = ""; - sub_video_url.value = ""; - }; - - return { - video_share_title, - sub_video_url, - videoShare_is_empty, - videoShare_totalData, - add_video, - del_video, - clear_data, - }; -}); diff --git a/src/laoyou_client/src/store/modules/toast/index.js b/src/laoyou_client/src/store/modules/toast/index.js deleted file mode 100644 index 105d613..0000000 --- a/src/laoyou_client/src/store/modules/toast/index.js +++ /dev/null @@ -1 +0,0 @@ -export * from './toast' \ No newline at end of file diff --git a/src/laoyou_client/src/store/modules/toast/toast.js b/src/laoyou_client/src/store/modules/toast/toast.js deleted file mode 100644 index 04aa3a6..0000000 --- a/src/laoyou_client/src/store/modules/toast/toast.js +++ /dev/null @@ -1,15 +0,0 @@ -import { defineStore } from "pinia"; -import { ref } from "vue"; - -export const useToastStore = defineStore("toast", () => { - const show_custom_toast = ref(false); - const toast_text = ref(); - const toast_duration = ref(); - const toast_type = ref(); //success error - return { - show_custom_toast, - toast_text, - toast_type, - toast_duration, - }; -}); diff --git a/src/laoyou_client/src/store/modules/user/index.js b/src/laoyou_client/src/store/modules/user/index.js deleted file mode 100644 index 7616f9e..0000000 --- a/src/laoyou_client/src/store/modules/user/index.js +++ /dev/null @@ -1 +0,0 @@ -export * from "./user"; diff --git a/src/laoyou_client/src/store/modules/user/user.js b/src/laoyou_client/src/store/modules/user/user.js deleted file mode 100644 index 7b56f9d..0000000 --- a/src/laoyou_client/src/store/modules/user/user.js +++ /dev/null @@ -1,388 +0,0 @@ -import { defineStore } from "pinia"; -import { computed, ref } from "vue"; -import { getCommentList } from "../../../utils/api/comment"; -import { - changeCommonshareLikeStatus, - getCommonshareLikeList, -} from "../../../utils/api/like"; -import { getCommonShareList } from "../../../utils/api/post"; -import { uploadImg } from "../../../utils/api/upload"; -import { - getUserSelfInfo, - updateUserAvatar, - updateUserInfo, -} from "../../../utils/api/user"; -import { CACHE_EMPTY } from "../../../utils/config/constants"; -import { baseUrl } from "../../../utils/config/http"; -import { Auth } from "../../../utils/enum/auth"; -import { timeFormat } from "../../../utils/fn"; - -const successCode = 201; - -export const useUserStore = defineStore("user", () => { - // -------------------- P R O P S -------------------- // - - // 用户昵称 - const nickname = ref(""); - // 用户头像 - const avatar = ref(""); - // 用户性别 - const user_sex = ref(0); - // 用户生日 - const birthday = ref(""); - // 用户所在城市 - const city = ref(""); - // 登陆状态 - const loginStatus = ref(false); - // 人脸识别状态 - const face_auth_status = ref(false); - // 用户个人的分享数量 - const self_commonshare_cnt = ref(0); - // 用户个人的评论数量 - const self_comment_cnt = ref(0); - // 用户文章点赞列表 - const self_commonshare_like_list = ref(); - // 用户个人的发帖列表 - const self_commonshare_list = ref(); - // 用户个人评论列表 - const self_comment_list = ref(); - //getter - const user_is_login = computed(() => { - return loginStatus.value; - }); - - // ----------------- F U N C T I O N ----------------- // - - // ---------------------- G E T ---------------------- // - - // 获取用户点赞列表 - const getSelfCommonshareLikeList = () => { - // 获取用户点赞列表 - getCommonshareLikeList() - .then((res) => { - self_commonshare_like_list.value = res.data; - }) - .catch((err) => { - console.log(err); - }); - }; - - // 获取用户个人发帖列表 - const getSelfCommonShareList = () => { - //从缓存中获取用户信息 openid - const openid = uni.getStorageSync(Auth.USER_TOKEN).data.user.openid; - getCommonShareList(openid) - .then((res) => { - self_commonshare_list.value = res.data.commonshare_list; - console.log("self_commonshare_list", self_commonshare_list.value); - }) - .catch((err) => { - console.log("userStore getSelfCommonShareList:", err); - }); - }; - - // 分页查询 根据openid 获取用户 发帖 列表 - const getUserCommonShareList = (page, openid) => { - console.log("page:", page, "openid:", openid); - return getCommonShareList(page, openid); - }; - - // 分页查询 根据openid 获取用户 评论 列表 - const getUserCommentList = (page, openid) => { - return getCommentList(page, openid, undefined); - }; - - // ------------------- U P D A T E ------------------- // - - const updateSelfCommonshareCnt = (cnt) => { - self_commonshare_cnt.value = cnt; - const user_cache = uni.getStorageSync(Auth.USER_TOKEN); - user_cache.data.user.commonShareCount = cnt; - uni.setStorageSync(Auth.USER_TOKEN, user_cache); - }; - - const updateSelfCommentCnt = (cnt) => { - self_comment_cnt.value = cnt; - const user_cache = uni.getStorageSync(Auth.USER_TOKEN); - user_cache.data.user.commentCount = cnt; - uni.setStorageSync(Auth.USER_TOKEN, user_cache); - }; - - //微信登陆 - const loginByWx = () => { - return new Promise((resolve, reject) => { - uni.login({ - provider: "weixin", - success: (res) => { - uni.request({ - url: baseUrl + `/auth/login`, - method: "POST", - data: { - code: res.code, - }, - success: async (res) => { - if (res.statusCode !== successCode) { - reject(res.errMsg); - return; - } - // 组装用户信息 - assemble_user_info(res.data.user); - // token and expire from header - const token = - res.header["authorization"] || res.header["Authorization"]; - const token_max_age = - res.header["token-max-age"] || res.header["Token-Max-Age"]; - const now = new Date(); - // 时间戳相加 - const expire = now.getTime() + timeFormat(token_max_age); - // 进行缓存 - uni.setStorageSync(Auth.USER_TOKEN, { - data: { - token: token, - user: res.data.user, - }, - expire: expire, - }); - resolve(res); - }, - fail: (err) => { - reject(err); - }, - }); - }, - }); - }); - }; - - //微信登陆 - const loginByFace = (face_url) => { - return new Promise((resolve, reject) => { - uni.request({ - url: baseUrl + `/auth/faceLogin`, - method: "POST", - data: { - face_url: face_url, - }, - success: async (res) => { - if (res.statusCode !== successCode) { - reject(res.errMsg); - return; - } - // 组装用户信息 - assemble_user_info(res.data.user); - // token and expire from header - const token = - res.header["authorization"] || res.header["Authorization"]; - const token_max_age = - res.header["token-max-age"] || res.header["Token-Max-Age"]; - const now = new Date(); - // 时间戳相加 - const expire = now.getTime() + timeFormat(token_max_age); - // 进行缓存 - uni.setStorageSync(Auth.USER_TOKEN, { - data: { - token: token, - user: res.data.user, - }, - expire: expire, - }); - resolve(res); - }, - fail: (err) => { - reject(err); - }, - }); - }); - }; - - // 微信登出 - const logoutByWx = () => { - clearUserInfo(); - }; - - // 组装用户信息 - const assemble_user_info = async (user) => { - console.log("user info:", user); - // console.log("组装用户信息"); - nickname.value = user.nickname; - avatar.value = user.avatar; - city.value = user.city; - birthday.value = user.birthday; - user_sex.value = user.sex; - loginStatus.value = true; - self_comment_cnt.value = user.commentCount; - self_commonshare_cnt.value = user.commonShareCount; - face_auth_status.value = user.face_auth_status; - }; - - // 清除用户信息 - const clearUserInfo = () => { - nickname.value = ""; - avatar.value = ""; - city.value = ""; - user_sex.value = 0; - birthday.value = ""; - loginStatus.value = false; - self_comment_cnt.value = 0; - self_commonshare_cnt.value = 0; - self_commonshare_like_list.value = []; - uni.removeStorageSync(Auth.USER_TOKEN); - }; - - //更改头像图片 - const update_user_avatar = (avatarUrl) => { - return new Promise((resolve, reject) => { - if (loginStatus.value === false) { - reject("请先登录"); - } - // 更新用户头像 - // 先上传头像 - uploadImg({ - filePath: avatarUrl, - type: "avatar", - }).then((uploadRes) => { - if (uploadRes.statusCode !== successCode) { - reject(`Upload failed with status code ${uploadRes.statusCode}`); - } - avatar.value = avatarUrl; - // 更改缓存中的用户头像 - const user_storage = uni.getStorageSync(Auth.USER_TOKEN); - user_storage.data.user.avatar = uploadRes.data; - uni.setStorageSync(Auth.USER_TOKEN, user_storage); - - // 更新用户信息 - updateUserAvatar(uploadRes.data) - .then((updateRes) => { - if (updateRes.statusCode !== successCode) { - reject(`Update failed with status code ${updateRes.statusCode}`); - } - resolve(updateRes); - }) - .catch((updateErr) => { - reject(`Update failed: ${updateErr}`); - }); - }); - }); - }; - - // 更改用户信息 - const update_user = async (userDetail) => { - return new Promise((resolve, reject) => { - if (loginStatus.value === false) { - reject("请先登录"); - } - - // 更新用户信息 - updateUserInfo(userDetail) - .then((updateRes) => { - if (updateRes.statusCode !== successCode) { - reject(updateRes.errMsg); - } - // 更改缓存中的用户信息 - const user_storage = uni.getStorageSync(Auth.USER_TOKEN); - // 合并对象 用userDetail来覆盖user_storage.data.user - Object.assign(user_storage.data.user, userDetail); - uni.setStorageSync(Auth.USER_TOKEN, user_storage); - resolve(updateRes); - }) - .catch((updateErr) => { - reject(`Update failed: ${updateErr}`); - }); - }); - }; - - //从缓存中恢复用户信息 - // 传入标志参数 是否需要从服务端获取 - const restoreUserInfo = (need_reflush = false) => { - console.log("从缓存中恢复用户信息"); - - const user_storage = uni.getStorageSync(Auth.USER_TOKEN); - if (user_storage === CACHE_EMPTY) { - return false; - } - const expire = user_storage.expire; - const now = new Date(); - if (now.getTime() > expire) { - uni.removeStorageSync(Auth.USER_TOKEN); - return false; - } - const user = user_storage.data.user; - assemble_user_info(user); - return true; - }; - - // 刷新用户信息 - const reflushUserSelfInfo = () => { - return new Promise((resolve, reject) => { - getUserSelfInfo() - .then((res) => { - if (res.statusCode !== 200 && res.statusCode !== 201) { - return; - } - assemble_user_info(res.data); - resolve(res); - }) - .catch((err) => { - console.log(err); - reject(err); - }); - }); - }; - - // 更改用户 commonshare like 状态 - const change_commonshare_like_status = ({ share_id, like_status }) => { - return new Promise((resolve, reject) => { - changeCommonshareLikeStatus({ - share_id: share_id, - like_status: like_status, - }) - .then((res) => { - if (like_status) { - self_commonshare_like_list.value.push(share_id); - } else if (self_commonshare_like_list.value.includes(share_id)) { - self_commonshare_like_list.value.splice( - self_commonshare_like_list.value.indexOf(share_id), - 1 - ); - } - resolve(res); - }) - .catch((err) => { - reject(err); - }); - }); - }; - - return { - // state - nickname, - avatar, - city, - birthday, - user_sex, - loginStatus, - face_auth_status, - self_commonshare_cnt, - self_comment_cnt, - self_commonshare_like_list, - self_commonshare_list, - self_comment_list, - // getter - user_is_login, - // function - getSelfCommonShareList, - getUserCommentList, - getSelfCommonshareLikeList, - getUserCommonShareList, - loginByWx, - loginByFace, - logoutByWx, - update_user_avatar, - update_user, - restoreUserInfo, - reflushUserSelfInfo, - change_commonshare_like_status, - updateSelfCommentCnt, - updateSelfCommonshareCnt, - }; -}); diff --git a/src/laoyou_client/src/utils/api/api.js b/src/laoyou_client/src/utils/api/api.js deleted file mode 100644 index 9c2c7e3..0000000 --- a/src/laoyou_client/src/utils/api/api.js +++ /dev/null @@ -1,11 +0,0 @@ -import { post } from "./base"; - -// 获取微信运动数据 -export const getWxRunData = (data) => { - return post("/api/wxrun", data); -}; - -//获取天气 -export const getWeather = (data) => { - return post("/api/weather", data); -}; diff --git a/src/laoyou_client/src/utils/api/base.js b/src/laoyou_client/src/utils/api/base.js deleted file mode 100644 index 5e7b9fb..0000000 --- a/src/laoyou_client/src/utils/api/base.js +++ /dev/null @@ -1,72 +0,0 @@ -import { baseUrl } from "../config/http"; -import { Auth } from "../enum/auth"; - -const TIME_OUT = 10000; - -export const get = (url, params, auth = true) => { - return new Promise((resolve, reject) => { - uni.request({ - url: baseUrl + url, - method: "GET", - data: params, - header: { - authorization: auth - ? uni.getStorageSync(Auth.USER_TOKEN).data.token - : "", - }, - timeout: 3000, - success: (res) => { - resolve(res); - }, - fail: (err) => { - reject(err); - }, - }); - }); -}; - -export const post = (url, data, auth = true) => { - return new Promise((resolve, reject) => { - uni.request({ - url: baseUrl + url, - method: "POST", - data: data, - header: { - authorization: auth - ? uni.getStorageSync(Auth.USER_TOKEN).data.token - : "", - }, - timeout: 3000, - success: (res) => { - resolve(res); - }, - fail: (err) => { - reject(err); - }, - }); - }); -}; - -export const uploadFile = (url, filePath, name, formData, auth = true) => { - return new Promise((resolve, reject) => { - uni.uploadFile({ - url: baseUrl + url, - filePath: filePath, - name: name, - timeout: TIME_OUT, - header: { - authorization: auth - ? uni.getStorageSync(Auth.USER_TOKEN).data.token - : "", - }, - formData: formData, - timeout: 3000, - success: (res) => { - resolve(res); - }, - fail: (err) => { - reject(err); - }, - }); - }); -}; diff --git a/src/laoyou_client/src/utils/api/comment.js b/src/laoyou_client/src/utils/api/comment.js deleted file mode 100644 index ddc7839..0000000 --- a/src/laoyou_client/src/utils/api/comment.js +++ /dev/null @@ -1,47 +0,0 @@ -import { COMMENT_PAGE_SIZE } from "../config/constants"; -import { get, post } from "./base"; - -// 创建图文分享评论 -export const submitComment = (data) => { - return new Promise((resolve, reject) => { - post("/comment/add", data) - .then((res) => { - resolve(res); - }) - .catch((err) => { - reject(err); - }); - }); -}; - -// 获取图文分享评论列表 -export const getCommentListByShareId = (share_id) => { - return new Promise((resolve, reject) => { - get(`/comment/getCommonShareComment`, { share_id: share_id }) - .then((res) => { - resolve(res); - }) - .catch((err) => { - reject(err); - }); - }); -}; - -// 分页获取评论列表 -// 可以通过 openid 或者 shareid 进行查询 二选一 -export const getCommentList = (page, openid, share_id) => { - return new Promise((resolve, reject) => { - get(`/comment/list`, { - page: page, - size: COMMENT_PAGE_SIZE, - openid: openid, - share_id: share_id, - }) - .then((res) => { - resolve(res); - }) - .catch((err) => { - reject(err); - }); - }); -}; diff --git a/src/laoyou_client/src/utils/api/face.js b/src/laoyou_client/src/utils/api/face.js deleted file mode 100644 index f103e3e..0000000 --- a/src/laoyou_client/src/utils/api/face.js +++ /dev/null @@ -1,11 +0,0 @@ -import { post } from "./base"; - -// 人脸注册 -export const faceRegister = (data) => { - return post("/face/register", data); -}; - -// 人脸匹配 -export const faceMatch = (data) => { - return post("/face/match", data, false); -}; diff --git a/src/laoyou_client/src/utils/api/like.js b/src/laoyou_client/src/utils/api/like.js deleted file mode 100644 index bd5a187..0000000 --- a/src/laoyou_client/src/utils/api/like.js +++ /dev/null @@ -1,22 +0,0 @@ -import { get } from "./base"; - -// 变更 图文分享 状态 true 点赞 false 不点赞 -export const changeCommonshareLikeStatus = ({ share_id, like_status }) => { - return get("/like/change/commonshare", { - share_id: share_id, - like_status: like_status, - }); -}; - -//根据openid 获取图文分享点赞列表 -export const getCommonshareLikeList = () => { - return new Promise((resolve, reject) => { - get("/like/list/commonshare") - .then((res) => { - resolve(res); - }) - .catch((err) => { - reject(err); - }); - }); -}; diff --git a/src/laoyou_client/src/utils/api/news.js b/src/laoyou_client/src/utils/api/news.js deleted file mode 100644 index 8e9283e..0000000 --- a/src/laoyou_client/src/utils/api/news.js +++ /dev/null @@ -1,5 +0,0 @@ -import { get } from './base' - - -// 获得热点新闻列表 -export const getHotNewsList = () => get('/news/hotList') \ No newline at end of file diff --git a/src/laoyou_client/src/utils/api/post.js b/src/laoyou_client/src/utils/api/post.js deleted file mode 100644 index eb266d2..0000000 --- a/src/laoyou_client/src/utils/api/post.js +++ /dev/null @@ -1,62 +0,0 @@ -import { COMMONSHARE_PAGE_SIZE } from "../config/constants"; -import { get, post } from "./base"; - -// 获取图文分享列表 todo 未完成 分页获取 -export const getCommonShareList = async (page, openid) => { - return get("/commonshare/get/commonshare", { - page: page, - size: COMMONSHARE_PAGE_SIZE, - openid: openid, - }); -}; - -// 创建图文分享 -export const addCommonshare = ({ - pic_list, - common_share_title, - common_share_content, - nickname, - avatar, -}) => { - return post("/commonshare/add/commonshare", { - pic_list: pic_list, - common_share_title: common_share_title, - common_share_content: common_share_content, - nickname: nickname, - avatar: avatar, - }); - // return new Promise((resolve, reject) => { - // uni.request({ - // url: baseUrl + "/commonshare/add/commonshare", - // method: "POST", - // header: { - // authorization: uni.getStorageSync(Auth.USER_TOKEN).data.token, - // }, - // data: { - // pic_list: pic_list.value.map((item) => { - // // 除去baseUrl - // return { - // url: item.url, - // id: item.id, - // }; - // }), - // common_share_title: common_share_title.value, - // common_share_content: common_share_content.value, - // nickname: nickname.value, - // avatar: avatar.value, - // like: 1314, - // }, - // timeout: 3000, - // success: (res) => { - // if (res.statusCode === SuccessCode) { - // resolve(res); - // } else { - // reject(`Request failed with status code ${res.statusCode}`); - // } - // }, - // fail: (err) => { - // reject(`Request failed: ${err}`); - // }, - // }); - // }); -}; diff --git a/src/laoyou_client/src/utils/api/upload.js b/src/laoyou_client/src/utils/api/upload.js deleted file mode 100644 index 63e43f3..0000000 --- a/src/laoyou_client/src/utils/api/upload.js +++ /dev/null @@ -1,37 +0,0 @@ -import { uploadFile } from "./base"; - -export const uploadImg = ({ filePath, type }) => { - return new Promise((resolve, reject) => { - uploadFile("/upload/img", filePath, "img", { - pic_type: type, - }) - .then((res) => { - resolve(res); - }) - .catch((err) => { - reject(err); - }); - }); -}; - - -//TODO 防跳设置 -export const uploadFace = ({ filePath, type }) => { - return new Promise((resolve, reject) => { - uploadFile( - "/upload/face", - filePath, - "img", - { - pic_type: type, - }, - false - ) - .then((res) => { - resolve(res); - }) - .catch((err) => { - reject(err); - }); - }); -}; diff --git a/src/laoyou_client/src/utils/api/user.js b/src/laoyou_client/src/utils/api/user.js deleted file mode 100644 index 2436206..0000000 --- a/src/laoyou_client/src/utils/api/user.js +++ /dev/null @@ -1,74 +0,0 @@ -import { baseUrl } from "../config/http"; -import { Auth } from "../enum/auth"; -import { post } from './base' - -// 更新用户头像 -export const updateUserAvatar = (avatarUrl) => { - return new Promise((resolve, reject) => { - // 更新用户信息 - uni.request({ - url: baseUrl + "/user/updateuser", - method: "POST", - header: { - Authorization: uni.getStorageSync(Auth.USER_TOKEN).data.token, - }, - data: { - avatar: avatarUrl, - }, - timeout: 3000, - success: (res) => { - resolve(res); - }, - fail: (err) => { - reject(err); - }, - }); - }); -}; - -//更新用户信息 -export const updateUserInfo = (userDetail) => { - return new Promise((resolve, reject) => { - uni - .request({ - url: baseUrl + "/user/updateuser", - method: "POST", - header: { - Authorization: uni.getStorageSync(Auth.USER_TOKEN).data.token, - }, - data: userDetail, - timeout: 3000, - }) - .then((updateRes) => { - resolve(updateRes); - }) - .catch((updateErr) => { - reject(`Update failed: ${updateErr}`); - }); - }); -}; - -// 获取用户信息 -export const getUserSelfInfo = () => { - return new Promise((resolve, reject) => { - uni.request({ - url: baseUrl + "/user/getSelfInfo", - method: "GET", - header: { - Authorization: uni.getStorageSync(Auth.USER_TOKEN).data.token, - }, - timeout: 3000, - success: (res) => { - resolve(res); - }, - fail: (err) => { - reject(err); - }, - }); - }); -}; - -// 更新用户face_token -export const updateUserFaceToken = (face_url)=>{ - return post('/user/updateFaceToken', {face_url}) -} diff --git a/src/laoyou_client/src/utils/config/constants.js b/src/laoyou_client/src/utils/config/constants.js deleted file mode 100644 index 1c12483..0000000 --- a/src/laoyou_client/src/utils/config/constants.js +++ /dev/null @@ -1,10 +0,0 @@ -export const MAX_LEN_NICKNAME = 16; - -// 缓存空 -export const CACHE_EMPTY = ""; - -//分页查询 -// 评论 -export const COMMENT_PAGE_SIZE = 5; -// 图文分享 -export const COMMONSHARE_PAGE_SIZE = 6; \ No newline at end of file diff --git a/src/laoyou_client/src/utils/config/http.js b/src/laoyou_client/src/utils/config/http.js deleted file mode 100644 index 8df2e30..0000000 --- a/src/laoyou_client/src/utils/config/http.js +++ /dev/null @@ -1,5 +0,0 @@ -// const host = "101.42.154.98"; -const host = "localhost"; -const a = 1; -// export const baseUrl = `http://${host}:5555/api/v1`; -export const baseUrl = "http://101.42.154.98:5555/api/v1"; diff --git a/src/laoyou_client/src/utils/enum/auth.js b/src/laoyou_client/src/utils/enum/auth.js deleted file mode 100644 index e955b55..0000000 --- a/src/laoyou_client/src/utils/enum/auth.js +++ /dev/null @@ -1,7 +0,0 @@ -export const Auth = { - USER_TOKEN: "user_token", -}; - -export const face_register = { - 223105: "人脸已经存在", -}; diff --git a/src/laoyou_client/src/utils/enum/http.js b/src/laoyou_client/src/utils/enum/http.js deleted file mode 100644 index 86d92cb..0000000 --- a/src/laoyou_client/src/utils/enum/http.js +++ /dev/null @@ -1,4 +0,0 @@ -export const httpStatus = { - POST: 201, - GET: 200, -}; diff --git a/src/laoyou_client/src/utils/fn/index.js b/src/laoyou_client/src/utils/fn/index.js deleted file mode 100644 index e2dec37..0000000 --- a/src/laoyou_client/src/utils/fn/index.js +++ /dev/null @@ -1,186 +0,0 @@ -import CToast from "../../utils/fn/toast"; - -/** - * 节流函数 - * - * @param {Function} fn 要节流的函数 - * @param {number} gapTime 节流时间间隔 - * - * @returns {Function} 节流后的函数 - */ -export const throttle = (fn, gapTime) => { - if (gapTime == null || gapTime == undefined) { - gapTime = 1500; - } - let _lastTime = null; - // 返回新的函数 - return function () { - let _nowTime = +new Date(); - if (_nowTime - _lastTime > gapTime || !_lastTime) { - fn.apply(this, arguments); //将this和参数传给原函数 - _lastTime = _nowTime; - } else { - // 重复点击提示剩余时间 - uni.showToast({ - title: `请${Math.ceil( - (gapTime - (_nowTime - _lastTime)) / 1000 - )}秒后再试`, - icon: "none", - }); - } - }; -}; - -// TODO提示 -export const todo = () => { - CToast.error("暂未开放"); -}; - -/** - * 数字规格化 - * - * @param {number} num 数字 - * @returns {string} 规格化后的数字字符串 - */ -export const formatNumber = (num) => { - if (num < 1000) { - return num; - } else if (num < 10000) { - return (num / 1000).toFixed(1) + "k"; - } else if (num < 1000000) { - return (num / 10000).toFixed(1) + "w"; - } else { - return (num / 1000000).toFixed(1) + "m"; - } -}; - -export const linkTo = (url, isTab = false, pass_auth = true) => { - if (!pass_auth) { - CToast.error("请先登陆"); - return; - } - isTab ? uni.switchTab({ url }) : uni.navigateTo({ url }); -}; - -/** - * 1d = 24*60*60*1000 - * 1h = 60*60*1000 - * 1m = 60*1000 - * - * @param {string} time 时间字符串 - * - * @return {number} 时间毫秒数 - */ -export const timeFormat = (time) => { - if (time.includes("d")) { - return time.replace("d", "") * 24 * 60 * 60 * 1000; - } else if (time.includes("h")) { - return time.replace("h", "") * 60 * 60 * 1000; - } else if (time.includes("m")) { - return time.replace("m", "") * 60 * 1000; - } else if (time.includes("s")) { - return time.replace("s", "") * 1000; - } -}; - -// - -/** - * 日期格式化 2023-10-08T03:09:48.939Z => 2023-10-08 - * - * @param {string} time 日期字符串 - * @returns {string} 格式化后的日期字符串 - */ -export const formatDateTime = (time) => { - return time.split("T")[0]; -}; - -// - -/** - * 根据date 获取 yy-mm 不足2位补0 使用padStart - * - * @param {string|Date} dateStr 日期字符串 - * @returns {string} 格式化后的日期字符串 - */ -export const getMonthAndDay = (dateStr) => { - let date = dateStr; - if (typeof dateStr === "string") { - date = new Date(dateStr); - } - const month = (date.getMonth() + 1).toString().padStart(2, "0"); - const day = date.getDate().toString().padStart(2, "0"); - return `${month}-${day}`; -}; - -// 对象属性过滤 -/** - * 过滤对象的属性,排除指定的属性列表 - * - * @param {Object} obj 要过滤的对象 - * @param {string[]} propsToExclude 要过滤的属性列表 - * - * @returns {Object} 过滤后的对象 - */ -export const filterObject = (obj, propsToExclude, currentKey = "") => { - // 检测obj是否为一个对象,否则直接返回原对象索引 - if (typeof obj !== "object" || obj === null) { - return obj; - } - - // 如果obj 是一个数组,递归过滤每个元素 - if (Array.isArray(obj)) { - return obj.map((item) => filterObject(item, propsToExclude)); - } - - // obj 是对象,递归过滤每个属性 - const result = {}; - for (const key in obj) { - const newkey = currentKey ? `${currentKey}.${key}` : key; - if (!propsToExclude.includes(newkey)) { - result[key] = filterObject(obj[key], propsToExclude, newkey); - } - } - return result; -}; - -//对象属性替换 -/** - * - * 根据属性列表替换对象的属性值 - * - * @param {Object} obj 要过滤的对象 - * @param {{ - * key:string, - * value:any - * }[]} propsToExclude 要过滤的属性列表 - * - * @returns {Object} 过滤后的对象 - */ -export const filterAndReplaceObject = ( - obj, - propsToExclude, - currentKey = "" -) => { - // 检测obj是否为一个对象,否则直接返回原对象索引 - if (typeof obj !== "object" || obj === null) { - return obj; - } - - // 如果obj 是一个数组,递归过滤每个元素 - if (Array.isArray(obj)) { - return obj.map((item) => filterAndReplaceObject(item, propsToExclude)); - } - - // obj 是对象,递归过滤每个属性 - const result = {}; - for (const key in obj) { - const newkey = currentKey ? `${currentKey}.${key}` : key; - if (!propsToExclude.map((it) => it.key).includes(newkey)) { - result[key] = filterAndReplaceObject(obj[key], propsToExclude, newkey); - } else { - result[key] = propsToExclude.find((it) => it.key === newkey).value; - } - } - return result; -}; diff --git a/src/laoyou_client/src/utils/fn/init.js b/src/laoyou_client/src/utils/fn/init.js deleted file mode 100644 index 6e25688..0000000 --- a/src/laoyou_client/src/utils/fn/init.js +++ /dev/null @@ -1,31 +0,0 @@ -import { ref } from "vue"; -// 1900年到2023年的日期数组 -const date_list = ref([]); -for (let i = 1900; i <= 2023; i++) { - // 构建第i年的日期数组 - const year_list = []; - for (let j = 1; j <= 12; j++) { - // 构建第j月的日期数组 - const month_list = []; - // 获取第j月的天数 - const day_count = new Date(i, j, 0).getDate(); - for (let k = 1; k <= day_count; k++) { - month_list.push({ - val: k, - }); - } - year_list.push({ - val: j, - child: month_list, - }); - } - date_list.value.push({ - val: i, - child: year_list, - }); -} - -// 地区表 -const cities = ref(["北京", "上海", "天津", "重庆", "河北", "山西", "内蒙古", "辽宁", "吉林", "黑龙江",]); - -export { date_list ,cities}; diff --git a/src/laoyou_client/src/utils/fn/toast.js b/src/laoyou_client/src/utils/fn/toast.js deleted file mode 100644 index 5a6302d..0000000 --- a/src/laoyou_client/src/utils/fn/toast.js +++ /dev/null @@ -1,40 +0,0 @@ -import { useToastStore } from "../../store"; -import { storeToRefs } from "pinia"; - -const CToast = () => { - const { show_custom_toast, toast_duration, toast_text, toast_type } = - storeToRefs(useToastStore()); - const play = () => { - show_custom_toast.value = true; - setTimeout(() => { - show_custom_toast.value = false; - }, toast_duration.value); - }; - - const checkInput = (text, duration) => { - if (text == undefined || text == null || text == "") { - throw new Error("text is required"); - } - if (duration == undefined || duration == null || duration == "") { - throw new Error("duration is required"); - } - }; - return { - success: (text, duration = 5000) => { - checkInput(text, duration); - text && (toast_text.value = text); - toast_type.value = "success"; - duration && (toast_duration.value = duration); - play(); - }, - error: (text, duration = 5000) => { - checkInput(text, duration); - text && (toast_text.value = text); - toast_type.value = "error"; - duration && (toast_duration.value = duration); - play(); - }, - }; -}; - -export default CToast(); diff --git a/src/laoyou_client/vite.config.js b/src/laoyou_client/vite.config.js deleted file mode 100644 index 0c97232..0000000 --- a/src/laoyou_client/vite.config.js +++ /dev/null @@ -1,13 +0,0 @@ -import { defineConfig } from "vite"; -import uni from "@dcloudio/vite-plugin-uni"; -import path from "path"; - -// https://vitejs.dev/config/ -export default defineConfig({ - plugins: [uni()], - resolve: { - alias: { - "@": path.resolve(__dirname, "src"), - }, - }, -});