├── env.d.ts
├── public
└── favicon.ico
├── src
├── assets
│ ├── logo.png
│ ├── main.css
│ └── base.css
├── main.ts
├── components
│ ├── icons
│ │ ├── IconSupport.vue
│ │ ├── IconTooling.vue
│ │ ├── IconCommunity.vue
│ │ ├── IconDocumentation.vue
│ │ └── IconEcosystem.vue
│ ├── HelloWorld.vue
│ ├── WelcomeItem.vue
│ └── TheWelcome.vue
└── App.vue
├── .prettierrc.json
├── tsconfig.node.json
├── readme.md
├── tsconfig.json
├── vite.config.ts
├── .eslintrc.cjs
├── index.html
├── .gitignore
├── package.json
└── pnpm-lock.yaml
/env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vastsa/openai-apikey-query/HEAD/public/favicon.ico
--------------------------------------------------------------------------------
/src/assets/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vastsa/openai-apikey-query/HEAD/src/assets/logo.png
--------------------------------------------------------------------------------
/src/main.ts:
--------------------------------------------------------------------------------
1 | import { createApp } from 'vue'
2 | import App from './App.vue'
3 |
4 | import './assets/main.css'
5 |
6 | createApp(App).mount('#app')
7 |
--------------------------------------------------------------------------------
/.prettierrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "$schema": "https://json.schemastore.org/prettierrc",
3 | "semi": false,
4 | "tabWidth": 2,
5 | "singleQuote": true,
6 | "printWidth": 100,
7 | "trailingComma": "none"
8 | }
--------------------------------------------------------------------------------
/tsconfig.node.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "@vue/tsconfig/tsconfig.node.json",
3 | "include": ["vite.config.*", "vitest.config.*", "cypress.config.*", "playwright.config.*"],
4 | "compilerOptions": {
5 | "composite": true,
6 | "types": ["node"]
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/readme.md:
--------------------------------------------------------------------------------
1 | # 广告
2 | 最强AI 商业版,集合各大厂商模型于一体:ailink.aixk.net
3 | # 构建教程
4 | ```shell
5 | # 安装依赖
6 | pnpm install
7 | # 构建
8 | pnpm build
9 | ```
10 |
11 | # 可能需要修改的
12 | ## -> OpenAI 接口地址
13 | src->components->TheWelcome.vue->line 6
14 |
15 | ## 尾部超链接
16 | src->App.vue-> line 19
17 |
18 | # 原理
19 | 调用官方面板的查询历史用量接口,然后进行计算
20 |
--------------------------------------------------------------------------------
/src/components/icons/IconSupport.vue:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "@vue/tsconfig/tsconfig.web.json",
3 | "include": ["env.d.ts", "src/**/*", "src/**/*.vue"],
4 | "compilerOptions": {
5 | "baseUrl": ".",
6 | "paths": {
7 | "@/*": ["./src/*"]
8 | }
9 | },
10 |
11 | "references": [
12 | {
13 | "path": "./tsconfig.node.json"
14 | }
15 | ]
16 | }
17 |
--------------------------------------------------------------------------------
/vite.config.ts:
--------------------------------------------------------------------------------
1 | import { fileURLToPath, URL } from 'node:url'
2 |
3 | import { defineConfig } from 'vite'
4 | import vue from '@vitejs/plugin-vue'
5 |
6 | // https://vitejs.dev/config/
7 | export default defineConfig({
8 | plugins: [vue()],
9 | resolve: {
10 | alias: {
11 | '@': fileURLToPath(new URL('./src', import.meta.url))
12 | }
13 | }
14 | })
15 |
--------------------------------------------------------------------------------
/.eslintrc.cjs:
--------------------------------------------------------------------------------
1 | /* eslint-env node */
2 | require('@rushstack/eslint-patch/modern-module-resolution')
3 |
4 | module.exports = {
5 | root: true,
6 | 'extends': [
7 | 'plugin:vue/vue3-essential',
8 | 'eslint:recommended',
9 | '@vue/eslint-config-typescript',
10 | '@vue/eslint-config-prettier/skip-formatting'
11 | ],
12 | parserOptions: {
13 | ecmaVersion: 'latest'
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | OpenAI Usage
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # Logs
2 | logs
3 | *.log
4 | npm-debug.log*
5 | yarn-debug.log*
6 | yarn-error.log*
7 | pnpm-debug.log*
8 | lerna-debug.log*
9 |
10 | node_modules
11 | .DS_Store
12 | dist
13 | dist-ssr
14 | coverage
15 | *.local
16 |
17 | /cypress/videos/
18 | /cypress/screenshots/
19 |
20 | # Editor directories and files
21 | .vscode/*
22 | !.vscode/extensions.json
23 | .idea
24 | *.suo
25 | *.ntvs*
26 | *.njsproj
27 | *.sln
28 | *.sw?
29 |
--------------------------------------------------------------------------------
/src/assets/main.css:
--------------------------------------------------------------------------------
1 | @import './base.css';
2 |
3 | #app {
4 | max-width: 1280px;
5 | margin: 0 auto;
6 | padding: 2rem;
7 |
8 | font-weight: normal;
9 | }
10 |
11 | a,
12 | .green {
13 | text-decoration: none;
14 | color: hsla(160, 100%, 37%, 1);
15 | transition: 0.4s;
16 | }
17 |
18 | @media (hover: hover) {
19 | a:hover {
20 | background-color: hsla(160, 100%, 37%, 0.2);
21 | }
22 | }
23 |
24 | @media (min-width: 1024px) {
25 | body {
26 | display: flex;
27 | place-items: center;
28 | }
29 |
30 | #app {
31 | display: grid;
32 | grid-template-columns: 1fr 1fr;
33 | padding: 0 2rem;
34 | }
35 | }
36 |
--------------------------------------------------------------------------------
/src/components/HelloWorld.vue:
--------------------------------------------------------------------------------
1 |
6 |
7 |
8 |
9 |
{{ msg }}
10 | Select OpenAI ApiKeys Usage
11 |
12 |
13 |
14 |
37 |
--------------------------------------------------------------------------------
/src/components/icons/IconTooling.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
19 |
20 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "apikeyquery",
3 | "version": "0.0.0",
4 | "private": true,
5 | "scripts": {
6 | "dev": "vite",
7 | "build": "run-p type-check build-only",
8 | "preview": "vite preview",
9 | "build-only": "vite build",
10 | "type-check": "vue-tsc --noEmit",
11 | "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
12 | "format": "prettier --write src/"
13 | },
14 | "dependencies": {
15 | "axios": "^1.3.4",
16 | "vue": "^3.2.47"
17 | },
18 | "devDependencies": {
19 | "@rushstack/eslint-patch": "^1.2.0",
20 | "@types/node": "^18.14.2",
21 | "@vitejs/plugin-vue": "^4.0.0",
22 | "@vue/eslint-config-prettier": "^7.1.0",
23 | "@vue/eslint-config-typescript": "^11.0.2",
24 | "@vue/tsconfig": "^0.1.3",
25 | "eslint": "^8.34.0",
26 | "eslint-plugin-vue": "^9.9.0",
27 | "npm-run-all": "^4.1.5",
28 | "prettier": "^2.8.4",
29 | "typescript": "~4.8.4",
30 | "vite": "^4.1.4",
31 | "vue-tsc": "^1.2.0"
32 | }
33 | }
34 |
--------------------------------------------------------------------------------
/src/components/icons/IconCommunity.vue:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
--------------------------------------------------------------------------------
/src/App.vue:
--------------------------------------------------------------------------------
1 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 | AiLink
21 | Github
22 |
23 |
24 |
25 |
55 |
--------------------------------------------------------------------------------
/src/components/icons/IconDocumentation.vue:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
--------------------------------------------------------------------------------
/src/components/WelcomeItem.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
87 |
--------------------------------------------------------------------------------
/src/components/icons/IconEcosystem.vue:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
--------------------------------------------------------------------------------
/src/assets/base.css:
--------------------------------------------------------------------------------
1 | /* color palette from */
2 | :root {
3 | --vt-c-white: #ffffff;
4 | --vt-c-white-soft: #f8f8f8;
5 | --vt-c-white-mute: #f2f2f2;
6 |
7 | --vt-c-black: #181818;
8 | --vt-c-black-soft: #222222;
9 | --vt-c-black-mute: #282828;
10 |
11 | --vt-c-indigo: #2c3e50;
12 |
13 | --vt-c-divider-light-1: rgba(60, 60, 60, 0.29);
14 | --vt-c-divider-light-2: rgba(60, 60, 60, 0.12);
15 | --vt-c-divider-dark-1: rgba(84, 84, 84, 0.65);
16 | --vt-c-divider-dark-2: rgba(84, 84, 84, 0.48);
17 |
18 | --vt-c-text-light-1: var(--vt-c-indigo);
19 | --vt-c-text-light-2: rgba(60, 60, 60, 0.66);
20 | --vt-c-text-dark-1: var(--vt-c-white);
21 | --vt-c-text-dark-2: rgba(235, 235, 235, 0.64);
22 | }
23 |
24 | /* semantic color variables for this project */
25 | :root {
26 | --color-background: var(--vt-c-white);
27 | --color-background-soft: var(--vt-c-white-soft);
28 | --color-background-mute: var(--vt-c-white-mute);
29 |
30 | --color-border: var(--vt-c-divider-light-2);
31 | --color-border-hover: var(--vt-c-divider-light-1);
32 |
33 | --color-heading: var(--vt-c-text-light-1);
34 | --color-text: var(--vt-c-text-light-1);
35 |
36 | --section-gap: 160px;
37 | }
38 |
39 | @media (prefers-color-scheme: dark) {
40 | :root {
41 | --color-background: var(--vt-c-black);
42 | --color-background-soft: var(--vt-c-black-soft);
43 | --color-background-mute: var(--vt-c-black-mute);
44 |
45 | --color-border: var(--vt-c-divider-dark-2);
46 | --color-border-hover: var(--vt-c-divider-dark-1);
47 |
48 | --color-heading: var(--vt-c-text-dark-1);
49 | --color-text: var(--vt-c-text-dark-2);
50 | }
51 | }
52 |
53 | *,
54 | *::before,
55 | *::after {
56 | box-sizing: border-box;
57 | margin: 0;
58 | position: relative;
59 | font-weight: normal;
60 | }
61 |
62 | body {
63 | min-height: 100vh;
64 | color: var(--color-text);
65 | background: var(--color-background);
66 | transition: color 0.5s, background-color 0.5s;
67 | line-height: 1.6;
68 | font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
69 | Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
70 | font-size: 15px;
71 | text-rendering: optimizeLegibility;
72 | -webkit-font-smoothing: antialiased;
73 | -moz-osx-font-smoothing: grayscale;
74 | }
75 |
--------------------------------------------------------------------------------
/src/components/TheWelcome.vue:
--------------------------------------------------------------------------------
1 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 | | Key |
57 | 使用额度 |
58 | 状态 |
59 |
60 |
61 | | {{ row.key }} |
62 | {{ row.quota }} |
63 | {{ row.status }} |
64 |
65 |
66 |
67 |
68 |
69 |
--------------------------------------------------------------------------------
/pnpm-lock.yaml:
--------------------------------------------------------------------------------
1 | lockfileVersion: 5.4
2 |
3 | specifiers:
4 | '@rushstack/eslint-patch': ^1.2.0
5 | '@types/node': ^18.14.2
6 | '@vitejs/plugin-vue': ^4.0.0
7 | '@vue/eslint-config-prettier': ^7.1.0
8 | '@vue/eslint-config-typescript': ^11.0.2
9 | '@vue/tsconfig': ^0.1.3
10 | axios: ^1.3.4
11 | eslint: ^8.34.0
12 | eslint-plugin-vue: ^9.9.0
13 | npm-run-all: ^4.1.5
14 | prettier: ^2.8.4
15 | typescript: ~4.8.4
16 | vite: ^4.1.4
17 | vue: ^3.2.47
18 | vue-tsc: ^1.2.0
19 |
20 | dependencies:
21 | axios: registry.npmmirror.com/axios/1.3.4
22 | vue: registry.npmmirror.com/vue/3.2.47
23 |
24 | devDependencies:
25 | '@rushstack/eslint-patch': registry.npmmirror.com/@rushstack/eslint-patch/1.2.0
26 | '@types/node': registry.npmmirror.com/@types/node/18.15.5
27 | '@vitejs/plugin-vue': registry.npmmirror.com/@vitejs/plugin-vue/4.1.0_vite@4.2.1+vue@3.2.47
28 | '@vue/eslint-config-prettier': registry.npmmirror.com/@vue/eslint-config-prettier/7.1.0_bpfktk52wn6m2x6u3idob4lxru
29 | '@vue/eslint-config-typescript': registry.npmmirror.com/@vue/eslint-config-typescript/11.0.2_lrwndgfnjtuj2xuykkt4cl53wy
30 | '@vue/tsconfig': registry.npmmirror.com/@vue/tsconfig/0.1.3_@types+node@18.15.5
31 | eslint: registry.npmmirror.com/eslint/8.36.0
32 | eslint-plugin-vue: registry.npmmirror.com/eslint-plugin-vue/9.9.0_eslint@8.36.0
33 | npm-run-all: registry.npmmirror.com/npm-run-all/4.1.5
34 | prettier: registry.npmmirror.com/prettier/2.8.6
35 | typescript: registry.npmmirror.com/typescript/4.8.4
36 | vite: registry.npmmirror.com/vite/4.2.1_@types+node@18.15.5
37 | vue-tsc: registry.npmmirror.com/vue-tsc/1.2.0_typescript@4.8.4
38 |
39 | packages:
40 |
41 | registry.npmmirror.com/@babel/helper-string-parser/7.19.4:
42 | resolution: {integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz}
43 | name: '@babel/helper-string-parser'
44 | version: 7.19.4
45 | engines: {node: '>=6.9.0'}
46 |
47 | registry.npmmirror.com/@babel/helper-validator-identifier/7.19.1:
48 | resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz}
49 | name: '@babel/helper-validator-identifier'
50 | version: 7.19.1
51 | engines: {node: '>=6.9.0'}
52 |
53 | registry.npmmirror.com/@babel/parser/7.21.3:
54 | resolution: {integrity: sha512-lobG0d7aOfQRXh8AyklEAgZGvA4FShxo6xQbUrrT/cNBPUdIDojlokwJsQyCC/eKia7ifqM0yP+2DRZ4WKw2RQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/parser/-/parser-7.21.3.tgz}
55 | name: '@babel/parser'
56 | version: 7.21.3
57 | engines: {node: '>=6.0.0'}
58 | hasBin: true
59 | dependencies:
60 | '@babel/types': registry.npmmirror.com/@babel/types/7.21.3
61 |
62 | registry.npmmirror.com/@babel/types/7.21.3:
63 | resolution: {integrity: sha512-sBGdETxC+/M4o/zKC0sl6sjWv62WFR/uzxrJ6uYyMLZOUlPnwzw0tKgVHOXxaAd5l2g8pEDM5RZ495GPQI77kg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/types/-/types-7.21.3.tgz}
64 | name: '@babel/types'
65 | version: 7.21.3
66 | engines: {node: '>=6.9.0'}
67 | dependencies:
68 | '@babel/helper-string-parser': registry.npmmirror.com/@babel/helper-string-parser/7.19.4
69 | '@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier/7.19.1
70 | to-fast-properties: registry.npmmirror.com/to-fast-properties/2.0.0
71 |
72 | registry.npmmirror.com/@esbuild/android-arm/0.17.12:
73 | resolution: {integrity: sha512-E/sgkvwoIfj4aMAPL2e35VnUJspzVYl7+M1B2cqeubdBhADV4uPon0KCc8p2G+LqSJ6i8ocYPCqY3A4GGq0zkQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/android-arm/-/android-arm-0.17.12.tgz}
74 | name: '@esbuild/android-arm'
75 | version: 0.17.12
76 | engines: {node: '>=12'}
77 | cpu: [arm]
78 | os: [android]
79 | requiresBuild: true
80 | dev: true
81 | optional: true
82 |
83 | registry.npmmirror.com/@esbuild/android-arm64/0.17.12:
84 | resolution: {integrity: sha512-WQ9p5oiXXYJ33F2EkE3r0FRDFVpEdcDiwNX3u7Xaibxfx6vQE0Sb8ytrfQsA5WO6kDn6mDfKLh6KrPBjvkk7xA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/android-arm64/-/android-arm64-0.17.12.tgz}
85 | name: '@esbuild/android-arm64'
86 | version: 0.17.12
87 | engines: {node: '>=12'}
88 | cpu: [arm64]
89 | os: [android]
90 | requiresBuild: true
91 | dev: true
92 | optional: true
93 |
94 | registry.npmmirror.com/@esbuild/android-x64/0.17.12:
95 | resolution: {integrity: sha512-m4OsaCr5gT+se25rFPHKQXARMyAehHTQAz4XX1Vk3d27VtqiX0ALMBPoXZsGaB6JYryCLfgGwUslMqTfqeLU0w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/android-x64/-/android-x64-0.17.12.tgz}
96 | name: '@esbuild/android-x64'
97 | version: 0.17.12
98 | engines: {node: '>=12'}
99 | cpu: [x64]
100 | os: [android]
101 | requiresBuild: true
102 | dev: true
103 | optional: true
104 |
105 | registry.npmmirror.com/@esbuild/darwin-arm64/0.17.12:
106 | resolution: {integrity: sha512-O3GCZghRIx+RAN0NDPhyyhRgwa19MoKlzGonIb5hgTj78krqp9XZbYCvFr9N1eUxg0ZQEpiiZ4QvsOQwBpP+lg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/darwin-arm64/-/darwin-arm64-0.17.12.tgz}
107 | name: '@esbuild/darwin-arm64'
108 | version: 0.17.12
109 | engines: {node: '>=12'}
110 | cpu: [arm64]
111 | os: [darwin]
112 | requiresBuild: true
113 | dev: true
114 | optional: true
115 |
116 | registry.npmmirror.com/@esbuild/darwin-x64/0.17.12:
117 | resolution: {integrity: sha512-5D48jM3tW27h1qjaD9UNRuN+4v0zvksqZSPZqeSWggfMlsVdAhH3pwSfQIFJwcs9QJ9BRibPS4ViZgs3d2wsCA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/darwin-x64/-/darwin-x64-0.17.12.tgz}
118 | name: '@esbuild/darwin-x64'
119 | version: 0.17.12
120 | engines: {node: '>=12'}
121 | cpu: [x64]
122 | os: [darwin]
123 | requiresBuild: true
124 | dev: true
125 | optional: true
126 |
127 | registry.npmmirror.com/@esbuild/freebsd-arm64/0.17.12:
128 | resolution: {integrity: sha512-OWvHzmLNTdF1erSvrfoEBGlN94IE6vCEaGEkEH29uo/VoONqPnoDFfShi41Ew+yKimx4vrmmAJEGNoyyP+OgOQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.12.tgz}
129 | name: '@esbuild/freebsd-arm64'
130 | version: 0.17.12
131 | engines: {node: '>=12'}
132 | cpu: [arm64]
133 | os: [freebsd]
134 | requiresBuild: true
135 | dev: true
136 | optional: true
137 |
138 | registry.npmmirror.com/@esbuild/freebsd-x64/0.17.12:
139 | resolution: {integrity: sha512-A0Xg5CZv8MU9xh4a+7NUpi5VHBKh1RaGJKqjxe4KG87X+mTjDE6ZvlJqpWoeJxgfXHT7IMP9tDFu7IZ03OtJAw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/freebsd-x64/-/freebsd-x64-0.17.12.tgz}
140 | name: '@esbuild/freebsd-x64'
141 | version: 0.17.12
142 | engines: {node: '>=12'}
143 | cpu: [x64]
144 | os: [freebsd]
145 | requiresBuild: true
146 | dev: true
147 | optional: true
148 |
149 | registry.npmmirror.com/@esbuild/linux-arm/0.17.12:
150 | resolution: {integrity: sha512-WsHyJ7b7vzHdJ1fv67Yf++2dz3D726oO3QCu8iNYik4fb5YuuReOI9OtA+n7Mk0xyQivNTPbl181s+5oZ38gyA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-arm/-/linux-arm-0.17.12.tgz}
151 | name: '@esbuild/linux-arm'
152 | version: 0.17.12
153 | engines: {node: '>=12'}
154 | cpu: [arm]
155 | os: [linux]
156 | requiresBuild: true
157 | dev: true
158 | optional: true
159 |
160 | registry.npmmirror.com/@esbuild/linux-arm64/0.17.12:
161 | resolution: {integrity: sha512-cK3AjkEc+8v8YG02hYLQIQlOznW+v9N+OI9BAFuyqkfQFR+DnDLhEM5N8QRxAUz99cJTo1rLNXqRrvY15gbQUg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-arm64/-/linux-arm64-0.17.12.tgz}
162 | name: '@esbuild/linux-arm64'
163 | version: 0.17.12
164 | engines: {node: '>=12'}
165 | cpu: [arm64]
166 | os: [linux]
167 | requiresBuild: true
168 | dev: true
169 | optional: true
170 |
171 | registry.npmmirror.com/@esbuild/linux-ia32/0.17.12:
172 | resolution: {integrity: sha512-jdOBXJqcgHlah/nYHnj3Hrnl9l63RjtQ4vn9+bohjQPI2QafASB5MtHAoEv0JQHVb/xYQTFOeuHnNYE1zF7tYw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-ia32/-/linux-ia32-0.17.12.tgz}
173 | name: '@esbuild/linux-ia32'
174 | version: 0.17.12
175 | engines: {node: '>=12'}
176 | cpu: [ia32]
177 | os: [linux]
178 | requiresBuild: true
179 | dev: true
180 | optional: true
181 |
182 | registry.npmmirror.com/@esbuild/linux-loong64/0.17.12:
183 | resolution: {integrity: sha512-GTOEtj8h9qPKXCyiBBnHconSCV9LwFyx/gv3Phw0pa25qPYjVuuGZ4Dk14bGCfGX3qKF0+ceeQvwmtI+aYBbVA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-loong64/-/linux-loong64-0.17.12.tgz}
184 | name: '@esbuild/linux-loong64'
185 | version: 0.17.12
186 | engines: {node: '>=12'}
187 | cpu: [loong64]
188 | os: [linux]
189 | requiresBuild: true
190 | dev: true
191 | optional: true
192 |
193 | registry.npmmirror.com/@esbuild/linux-mips64el/0.17.12:
194 | resolution: {integrity: sha512-o8CIhfBwKcxmEENOH9RwmUejs5jFiNoDw7YgS0EJTF6kgPgcqLFjgoc5kDey5cMHRVCIWc6kK2ShUePOcc7RbA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-mips64el/-/linux-mips64el-0.17.12.tgz}
195 | name: '@esbuild/linux-mips64el'
196 | version: 0.17.12
197 | engines: {node: '>=12'}
198 | cpu: [mips64el]
199 | os: [linux]
200 | requiresBuild: true
201 | dev: true
202 | optional: true
203 |
204 | registry.npmmirror.com/@esbuild/linux-ppc64/0.17.12:
205 | resolution: {integrity: sha512-biMLH6NR/GR4z+ap0oJYb877LdBpGac8KfZoEnDiBKd7MD/xt8eaw1SFfYRUeMVx519kVkAOL2GExdFmYnZx3A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-ppc64/-/linux-ppc64-0.17.12.tgz}
206 | name: '@esbuild/linux-ppc64'
207 | version: 0.17.12
208 | engines: {node: '>=12'}
209 | cpu: [ppc64]
210 | os: [linux]
211 | requiresBuild: true
212 | dev: true
213 | optional: true
214 |
215 | registry.npmmirror.com/@esbuild/linux-riscv64/0.17.12:
216 | resolution: {integrity: sha512-jkphYUiO38wZGeWlfIBMB72auOllNA2sLfiZPGDtOBb1ELN8lmqBrlMiucgL8awBw1zBXN69PmZM6g4yTX84TA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-riscv64/-/linux-riscv64-0.17.12.tgz}
217 | name: '@esbuild/linux-riscv64'
218 | version: 0.17.12
219 | engines: {node: '>=12'}
220 | cpu: [riscv64]
221 | os: [linux]
222 | requiresBuild: true
223 | dev: true
224 | optional: true
225 |
226 | registry.npmmirror.com/@esbuild/linux-s390x/0.17.12:
227 | resolution: {integrity: sha512-j3ucLdeY9HBcvODhCY4b+Ds3hWGO8t+SAidtmWu/ukfLLG/oYDMaA+dnugTVAg5fnUOGNbIYL9TOjhWgQB8W5g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-s390x/-/linux-s390x-0.17.12.tgz}
228 | name: '@esbuild/linux-s390x'
229 | version: 0.17.12
230 | engines: {node: '>=12'}
231 | cpu: [s390x]
232 | os: [linux]
233 | requiresBuild: true
234 | dev: true
235 | optional: true
236 |
237 | registry.npmmirror.com/@esbuild/linux-x64/0.17.12:
238 | resolution: {integrity: sha512-uo5JL3cgaEGotaqSaJdRfFNSCUJOIliKLnDGWaVCgIKkHxwhYMm95pfMbWZ9l7GeW9kDg0tSxcy9NYdEtjwwmA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-x64/-/linux-x64-0.17.12.tgz}
239 | name: '@esbuild/linux-x64'
240 | version: 0.17.12
241 | engines: {node: '>=12'}
242 | cpu: [x64]
243 | os: [linux]
244 | requiresBuild: true
245 | dev: true
246 | optional: true
247 |
248 | registry.npmmirror.com/@esbuild/netbsd-x64/0.17.12:
249 | resolution: {integrity: sha512-DNdoRg8JX+gGsbqt2gPgkgb00mqOgOO27KnrWZtdABl6yWTST30aibGJ6geBq3WM2TIeW6COs5AScnC7GwtGPg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/netbsd-x64/-/netbsd-x64-0.17.12.tgz}
250 | name: '@esbuild/netbsd-x64'
251 | version: 0.17.12
252 | engines: {node: '>=12'}
253 | cpu: [x64]
254 | os: [netbsd]
255 | requiresBuild: true
256 | dev: true
257 | optional: true
258 |
259 | registry.npmmirror.com/@esbuild/openbsd-x64/0.17.12:
260 | resolution: {integrity: sha512-aVsENlr7B64w8I1lhHShND5o8cW6sB9n9MUtLumFlPhG3elhNWtE7M1TFpj3m7lT3sKQUMkGFjTQBrvDDO1YWA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/openbsd-x64/-/openbsd-x64-0.17.12.tgz}
261 | name: '@esbuild/openbsd-x64'
262 | version: 0.17.12
263 | engines: {node: '>=12'}
264 | cpu: [x64]
265 | os: [openbsd]
266 | requiresBuild: true
267 | dev: true
268 | optional: true
269 |
270 | registry.npmmirror.com/@esbuild/sunos-x64/0.17.12:
271 | resolution: {integrity: sha512-qbHGVQdKSwi0JQJuZznS4SyY27tYXYF0mrgthbxXrZI3AHKuRvU+Eqbg/F0rmLDpW/jkIZBlCO1XfHUBMNJ1pg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/sunos-x64/-/sunos-x64-0.17.12.tgz}
272 | name: '@esbuild/sunos-x64'
273 | version: 0.17.12
274 | engines: {node: '>=12'}
275 | cpu: [x64]
276 | os: [sunos]
277 | requiresBuild: true
278 | dev: true
279 | optional: true
280 |
281 | registry.npmmirror.com/@esbuild/win32-arm64/0.17.12:
282 | resolution: {integrity: sha512-zsCp8Ql+96xXTVTmm6ffvoTSZSV2B/LzzkUXAY33F/76EajNw1m+jZ9zPfNJlJ3Rh4EzOszNDHsmG/fZOhtqDg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/win32-arm64/-/win32-arm64-0.17.12.tgz}
283 | name: '@esbuild/win32-arm64'
284 | version: 0.17.12
285 | engines: {node: '>=12'}
286 | cpu: [arm64]
287 | os: [win32]
288 | requiresBuild: true
289 | dev: true
290 | optional: true
291 |
292 | registry.npmmirror.com/@esbuild/win32-ia32/0.17.12:
293 | resolution: {integrity: sha512-FfrFjR4id7wcFYOdqbDfDET3tjxCozUgbqdkOABsSFzoZGFC92UK7mg4JKRc/B3NNEf1s2WHxJ7VfTdVDPN3ng==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/win32-ia32/-/win32-ia32-0.17.12.tgz}
294 | name: '@esbuild/win32-ia32'
295 | version: 0.17.12
296 | engines: {node: '>=12'}
297 | cpu: [ia32]
298 | os: [win32]
299 | requiresBuild: true
300 | dev: true
301 | optional: true
302 |
303 | registry.npmmirror.com/@esbuild/win32-x64/0.17.12:
304 | resolution: {integrity: sha512-JOOxw49BVZx2/5tW3FqkdjSD/5gXYeVGPDcB0lvap0gLQshkh1Nyel1QazC+wNxus3xPlsYAgqU1BUmrmCvWtw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/win32-x64/-/win32-x64-0.17.12.tgz}
305 | name: '@esbuild/win32-x64'
306 | version: 0.17.12
307 | engines: {node: '>=12'}
308 | cpu: [x64]
309 | os: [win32]
310 | requiresBuild: true
311 | dev: true
312 | optional: true
313 |
314 | registry.npmmirror.com/@eslint-community/eslint-utils/4.3.0_eslint@8.36.0:
315 | resolution: {integrity: sha512-v3oplH6FYCULtFuCeqyuTd9D2WKO937Dxdq+GmHOLL72TTRriLxz2VLlNfkZRsvj6PKnOPAtuT6dwrs/pA5DvA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@eslint-community/eslint-utils/-/eslint-utils-4.3.0.tgz}
316 | id: registry.npmmirror.com/@eslint-community/eslint-utils/4.3.0
317 | name: '@eslint-community/eslint-utils'
318 | version: 4.3.0
319 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
320 | peerDependencies:
321 | eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
322 | dependencies:
323 | eslint: registry.npmmirror.com/eslint/8.36.0
324 | eslint-visitor-keys: registry.npmmirror.com/eslint-visitor-keys/3.3.0
325 | dev: true
326 |
327 | registry.npmmirror.com/@eslint-community/regexpp/4.4.0:
328 | resolution: {integrity: sha512-A9983Q0LnDGdLPjxyXQ00sbV+K+O+ko2Dr+CZigbHWtX9pNfxlaBkMR8X1CztI73zuEyEBXTVjx7CE+/VSwDiQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@eslint-community/regexpp/-/regexpp-4.4.0.tgz}
329 | name: '@eslint-community/regexpp'
330 | version: 4.4.0
331 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
332 | dev: true
333 |
334 | registry.npmmirror.com/@eslint/eslintrc/2.0.1:
335 | resolution: {integrity: sha512-eFRmABvW2E5Ho6f5fHLqgena46rOj7r7OKHYfLElqcBfGFHHpjBhivyi5+jOEQuSpdc/1phIZJlbC2te+tZNIw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@eslint/eslintrc/-/eslintrc-2.0.1.tgz}
336 | name: '@eslint/eslintrc'
337 | version: 2.0.1
338 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
339 | dependencies:
340 | ajv: registry.npmmirror.com/ajv/6.12.6
341 | debug: registry.npmmirror.com/debug/4.3.4
342 | espree: registry.npmmirror.com/espree/9.5.0
343 | globals: registry.npmmirror.com/globals/13.20.0
344 | ignore: registry.npmmirror.com/ignore/5.2.4
345 | import-fresh: registry.npmmirror.com/import-fresh/3.3.0
346 | js-yaml: registry.npmmirror.com/js-yaml/4.1.0
347 | minimatch: registry.npmmirror.com/minimatch/3.1.2
348 | strip-json-comments: registry.npmmirror.com/strip-json-comments/3.1.1
349 | transitivePeerDependencies:
350 | - supports-color
351 | dev: true
352 |
353 | registry.npmmirror.com/@eslint/js/8.36.0:
354 | resolution: {integrity: sha512-lxJ9R5ygVm8ZWgYdUweoq5ownDlJ4upvoWmO4eLxBYHdMo+vZ/Rx0EN6MbKWDJOSUGrqJy2Gt+Dyv/VKml0fjg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@eslint/js/-/js-8.36.0.tgz}
355 | name: '@eslint/js'
356 | version: 8.36.0
357 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
358 | dev: true
359 |
360 | registry.npmmirror.com/@humanwhocodes/config-array/0.11.8:
361 | resolution: {integrity: sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@humanwhocodes/config-array/-/config-array-0.11.8.tgz}
362 | name: '@humanwhocodes/config-array'
363 | version: 0.11.8
364 | engines: {node: '>=10.10.0'}
365 | dependencies:
366 | '@humanwhocodes/object-schema': registry.npmmirror.com/@humanwhocodes/object-schema/1.2.1
367 | debug: registry.npmmirror.com/debug/4.3.4
368 | minimatch: registry.npmmirror.com/minimatch/3.1.2
369 | transitivePeerDependencies:
370 | - supports-color
371 | dev: true
372 |
373 | registry.npmmirror.com/@humanwhocodes/module-importer/1.0.1:
374 | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz}
375 | name: '@humanwhocodes/module-importer'
376 | version: 1.0.1
377 | engines: {node: '>=12.22'}
378 | dev: true
379 |
380 | registry.npmmirror.com/@humanwhocodes/object-schema/1.2.1:
381 | 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}
382 | name: '@humanwhocodes/object-schema'
383 | version: 1.2.1
384 | dev: true
385 |
386 | registry.npmmirror.com/@nodelib/fs.scandir/2.1.5:
387 | 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}
388 | name: '@nodelib/fs.scandir'
389 | version: 2.1.5
390 | engines: {node: '>= 8'}
391 | dependencies:
392 | '@nodelib/fs.stat': registry.npmmirror.com/@nodelib/fs.stat/2.0.5
393 | run-parallel: registry.npmmirror.com/run-parallel/1.2.0
394 | dev: true
395 |
396 | registry.npmmirror.com/@nodelib/fs.stat/2.0.5:
397 | 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}
398 | name: '@nodelib/fs.stat'
399 | version: 2.0.5
400 | engines: {node: '>= 8'}
401 | dev: true
402 |
403 | registry.npmmirror.com/@nodelib/fs.walk/1.2.8:
404 | 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}
405 | name: '@nodelib/fs.walk'
406 | version: 1.2.8
407 | engines: {node: '>= 8'}
408 | dependencies:
409 | '@nodelib/fs.scandir': registry.npmmirror.com/@nodelib/fs.scandir/2.1.5
410 | fastq: registry.npmmirror.com/fastq/1.15.0
411 | dev: true
412 |
413 | registry.npmmirror.com/@rushstack/eslint-patch/1.2.0:
414 | resolution: {integrity: sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@rushstack/eslint-patch/-/eslint-patch-1.2.0.tgz}
415 | name: '@rushstack/eslint-patch'
416 | version: 1.2.0
417 | dev: true
418 |
419 | registry.npmmirror.com/@types/json-schema/7.0.11:
420 | resolution: {integrity: sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/json-schema/-/json-schema-7.0.11.tgz}
421 | name: '@types/json-schema'
422 | version: 7.0.11
423 | dev: true
424 |
425 | registry.npmmirror.com/@types/node/18.15.5:
426 | resolution: {integrity: sha512-Ark2WDjjZO7GmvsyFFf81MXuGTA/d6oP38anyxWOL6EREyBKAxKoFHwBhaZxCfLRLpO8JgVXwqOwSwa7jRcjew==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/node/-/node-18.15.5.tgz}
427 | name: '@types/node'
428 | version: 18.15.5
429 | dev: true
430 |
431 | registry.npmmirror.com/@types/semver/7.3.13:
432 | resolution: {integrity: sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/semver/-/semver-7.3.13.tgz}
433 | name: '@types/semver'
434 | version: 7.3.13
435 | dev: true
436 |
437 | registry.npmmirror.com/@typescript-eslint/eslint-plugin/5.56.0_5usxfyjmq7oqnmqnfeoqunnmyu:
438 | resolution: {integrity: sha512-ZNW37Ccl3oMZkzxrYDUX4o7cnuPgU+YrcaYXzsRtLB16I1FR5SHMqga3zGsaSliZADCWo2v8qHWqAYIj8nWCCg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.56.0.tgz}
439 | id: registry.npmmirror.com/@typescript-eslint/eslint-plugin/5.56.0
440 | name: '@typescript-eslint/eslint-plugin'
441 | version: 5.56.0
442 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
443 | peerDependencies:
444 | '@typescript-eslint/parser': ^5.0.0
445 | eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
446 | typescript: '*'
447 | peerDependenciesMeta:
448 | typescript:
449 | optional: true
450 | dependencies:
451 | '@eslint-community/regexpp': registry.npmmirror.com/@eslint-community/regexpp/4.4.0
452 | '@typescript-eslint/parser': registry.npmmirror.com/@typescript-eslint/parser/5.56.0_oetr3kuzbjncgm24ninkrag7ya
453 | '@typescript-eslint/scope-manager': registry.npmmirror.com/@typescript-eslint/scope-manager/5.56.0
454 | '@typescript-eslint/type-utils': registry.npmmirror.com/@typescript-eslint/type-utils/5.56.0_oetr3kuzbjncgm24ninkrag7ya
455 | '@typescript-eslint/utils': registry.npmmirror.com/@typescript-eslint/utils/5.56.0_oetr3kuzbjncgm24ninkrag7ya
456 | debug: registry.npmmirror.com/debug/4.3.4
457 | eslint: registry.npmmirror.com/eslint/8.36.0
458 | grapheme-splitter: registry.npmmirror.com/grapheme-splitter/1.0.4
459 | ignore: registry.npmmirror.com/ignore/5.2.4
460 | natural-compare-lite: registry.npmmirror.com/natural-compare-lite/1.4.0
461 | semver: registry.npmmirror.com/semver/7.3.8
462 | tsutils: registry.npmmirror.com/tsutils/3.21.0_typescript@4.8.4
463 | typescript: registry.npmmirror.com/typescript/4.8.4
464 | transitivePeerDependencies:
465 | - supports-color
466 | dev: true
467 |
468 | registry.npmmirror.com/@typescript-eslint/parser/5.56.0_oetr3kuzbjncgm24ninkrag7ya:
469 | resolution: {integrity: sha512-sn1OZmBxUsgxMmR8a8U5QM/Wl+tyqlH//jTqCg8daTAmhAk26L2PFhcqPLlYBhYUJMZJK276qLXlHN3a83o2cg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@typescript-eslint/parser/-/parser-5.56.0.tgz}
470 | id: registry.npmmirror.com/@typescript-eslint/parser/5.56.0
471 | name: '@typescript-eslint/parser'
472 | version: 5.56.0
473 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
474 | peerDependencies:
475 | eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
476 | typescript: '*'
477 | peerDependenciesMeta:
478 | typescript:
479 | optional: true
480 | dependencies:
481 | '@typescript-eslint/scope-manager': registry.npmmirror.com/@typescript-eslint/scope-manager/5.56.0
482 | '@typescript-eslint/types': registry.npmmirror.com/@typescript-eslint/types/5.56.0
483 | '@typescript-eslint/typescript-estree': registry.npmmirror.com/@typescript-eslint/typescript-estree/5.56.0_typescript@4.8.4
484 | debug: registry.npmmirror.com/debug/4.3.4
485 | eslint: registry.npmmirror.com/eslint/8.36.0
486 | typescript: registry.npmmirror.com/typescript/4.8.4
487 | transitivePeerDependencies:
488 | - supports-color
489 | dev: true
490 |
491 | registry.npmmirror.com/@typescript-eslint/scope-manager/5.56.0:
492 | resolution: {integrity: sha512-jGYKyt+iBakD0SA5Ww8vFqGpoV2asSjwt60Gl6YcO8ksQ8s2HlUEyHBMSa38bdLopYqGf7EYQMUIGdT/Luw+sw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@typescript-eslint/scope-manager/-/scope-manager-5.56.0.tgz}
493 | name: '@typescript-eslint/scope-manager'
494 | version: 5.56.0
495 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
496 | dependencies:
497 | '@typescript-eslint/types': registry.npmmirror.com/@typescript-eslint/types/5.56.0
498 | '@typescript-eslint/visitor-keys': registry.npmmirror.com/@typescript-eslint/visitor-keys/5.56.0
499 | dev: true
500 |
501 | registry.npmmirror.com/@typescript-eslint/type-utils/5.56.0_oetr3kuzbjncgm24ninkrag7ya:
502 | resolution: {integrity: sha512-8WxgOgJjWRy6m4xg9KoSHPzBNZeQbGlQOH7l2QEhQID/+YseaFxg5J/DLwWSsi9Axj4e/cCiKx7PVzOq38tY4A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@typescript-eslint/type-utils/-/type-utils-5.56.0.tgz}
503 | id: registry.npmmirror.com/@typescript-eslint/type-utils/5.56.0
504 | name: '@typescript-eslint/type-utils'
505 | version: 5.56.0
506 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
507 | peerDependencies:
508 | eslint: '*'
509 | typescript: '*'
510 | peerDependenciesMeta:
511 | typescript:
512 | optional: true
513 | dependencies:
514 | '@typescript-eslint/typescript-estree': registry.npmmirror.com/@typescript-eslint/typescript-estree/5.56.0_typescript@4.8.4
515 | '@typescript-eslint/utils': registry.npmmirror.com/@typescript-eslint/utils/5.56.0_oetr3kuzbjncgm24ninkrag7ya
516 | debug: registry.npmmirror.com/debug/4.3.4
517 | eslint: registry.npmmirror.com/eslint/8.36.0
518 | tsutils: registry.npmmirror.com/tsutils/3.21.0_typescript@4.8.4
519 | typescript: registry.npmmirror.com/typescript/4.8.4
520 | transitivePeerDependencies:
521 | - supports-color
522 | dev: true
523 |
524 | registry.npmmirror.com/@typescript-eslint/types/5.56.0:
525 | resolution: {integrity: sha512-JyAzbTJcIyhuUhogmiu+t79AkdnqgPUEsxMTMc/dCZczGMJQh1MK2wgrju++yMN6AWroVAy2jxyPcPr3SWCq5w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@typescript-eslint/types/-/types-5.56.0.tgz}
526 | name: '@typescript-eslint/types'
527 | version: 5.56.0
528 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
529 | dev: true
530 |
531 | registry.npmmirror.com/@typescript-eslint/typescript-estree/5.56.0_typescript@4.8.4:
532 | resolution: {integrity: sha512-41CH/GncsLXOJi0jb74SnC7jVPWeVJ0pxQj8bOjH1h2O26jXN3YHKDT1ejkVz5YeTEQPeLCCRY0U2r68tfNOcg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.56.0.tgz}
533 | id: registry.npmmirror.com/@typescript-eslint/typescript-estree/5.56.0
534 | name: '@typescript-eslint/typescript-estree'
535 | version: 5.56.0
536 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
537 | peerDependencies:
538 | typescript: '*'
539 | peerDependenciesMeta:
540 | typescript:
541 | optional: true
542 | dependencies:
543 | '@typescript-eslint/types': registry.npmmirror.com/@typescript-eslint/types/5.56.0
544 | '@typescript-eslint/visitor-keys': registry.npmmirror.com/@typescript-eslint/visitor-keys/5.56.0
545 | debug: registry.npmmirror.com/debug/4.3.4
546 | globby: registry.npmmirror.com/globby/11.1.0
547 | is-glob: registry.npmmirror.com/is-glob/4.0.3
548 | semver: registry.npmmirror.com/semver/7.3.8
549 | tsutils: registry.npmmirror.com/tsutils/3.21.0_typescript@4.8.4
550 | typescript: registry.npmmirror.com/typescript/4.8.4
551 | transitivePeerDependencies:
552 | - supports-color
553 | dev: true
554 |
555 | registry.npmmirror.com/@typescript-eslint/utils/5.56.0_oetr3kuzbjncgm24ninkrag7ya:
556 | resolution: {integrity: sha512-XhZDVdLnUJNtbzaJeDSCIYaM+Tgr59gZGbFuELgF7m0IY03PlciidS7UQNKLE0+WpUTn1GlycEr6Ivb/afjbhA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@typescript-eslint/utils/-/utils-5.56.0.tgz}
557 | id: registry.npmmirror.com/@typescript-eslint/utils/5.56.0
558 | name: '@typescript-eslint/utils'
559 | version: 5.56.0
560 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
561 | peerDependencies:
562 | eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
563 | dependencies:
564 | '@eslint-community/eslint-utils': registry.npmmirror.com/@eslint-community/eslint-utils/4.3.0_eslint@8.36.0
565 | '@types/json-schema': registry.npmmirror.com/@types/json-schema/7.0.11
566 | '@types/semver': registry.npmmirror.com/@types/semver/7.3.13
567 | '@typescript-eslint/scope-manager': registry.npmmirror.com/@typescript-eslint/scope-manager/5.56.0
568 | '@typescript-eslint/types': registry.npmmirror.com/@typescript-eslint/types/5.56.0
569 | '@typescript-eslint/typescript-estree': registry.npmmirror.com/@typescript-eslint/typescript-estree/5.56.0_typescript@4.8.4
570 | eslint: registry.npmmirror.com/eslint/8.36.0
571 | eslint-scope: registry.npmmirror.com/eslint-scope/5.1.1
572 | semver: registry.npmmirror.com/semver/7.3.8
573 | transitivePeerDependencies:
574 | - supports-color
575 | - typescript
576 | dev: true
577 |
578 | registry.npmmirror.com/@typescript-eslint/visitor-keys/5.56.0:
579 | resolution: {integrity: sha512-1mFdED7u5bZpX6Xxf5N9U2c18sb+8EvU3tyOIj6LQZ5OOvnmj8BVeNNP603OFPm5KkS1a7IvCIcwrdHXaEMG/Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.56.0.tgz}
580 | name: '@typescript-eslint/visitor-keys'
581 | version: 5.56.0
582 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
583 | dependencies:
584 | '@typescript-eslint/types': registry.npmmirror.com/@typescript-eslint/types/5.56.0
585 | eslint-visitor-keys: registry.npmmirror.com/eslint-visitor-keys/3.3.0
586 | dev: true
587 |
588 | registry.npmmirror.com/@vitejs/plugin-vue/4.1.0_vite@4.2.1+vue@3.2.47:
589 | resolution: {integrity: sha512-++9JOAFdcXI3lyer9UKUV4rfoQ3T1RN8yDqoCLar86s0xQct5yblxAE+yWgRnU5/0FOlVCpTZpYSBV/bGWrSrQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vitejs/plugin-vue/-/plugin-vue-4.1.0.tgz}
590 | id: registry.npmmirror.com/@vitejs/plugin-vue/4.1.0
591 | name: '@vitejs/plugin-vue'
592 | version: 4.1.0
593 | engines: {node: ^14.18.0 || >=16.0.0}
594 | peerDependencies:
595 | vite: ^4.0.0
596 | vue: ^3.2.25
597 | dependencies:
598 | vite: registry.npmmirror.com/vite/4.2.1_@types+node@18.15.5
599 | vue: registry.npmmirror.com/vue/3.2.47
600 | dev: true
601 |
602 | registry.npmmirror.com/@volar/language-core/1.3.0-alpha.0:
603 | resolution: {integrity: sha512-W3uMzecHPcbwddPu4SJpUcPakRBK/y/BP+U0U6NiPpUX1tONLC4yCawt+QBJqtgJ+sfD6ztf5PyvPL3hQRqfOA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@volar/language-core/-/language-core-1.3.0-alpha.0.tgz}
604 | name: '@volar/language-core'
605 | version: 1.3.0-alpha.0
606 | dependencies:
607 | '@volar/source-map': registry.npmmirror.com/@volar/source-map/1.3.0-alpha.0
608 | dev: true
609 |
610 | registry.npmmirror.com/@volar/source-map/1.3.0-alpha.0:
611 | resolution: {integrity: sha512-jSdizxWFvDTvkPYZnO6ew3sBZUnS0abKCbuopkc0JrIlFbznWC/fPH3iPFIMS8/IIkRxq1Jh9VVG60SmtsdaMQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@volar/source-map/-/source-map-1.3.0-alpha.0.tgz}
612 | name: '@volar/source-map'
613 | version: 1.3.0-alpha.0
614 | dependencies:
615 | muggle-string: registry.npmmirror.com/muggle-string/0.2.2
616 | dev: true
617 |
618 | registry.npmmirror.com/@volar/typescript/1.3.0-alpha.0:
619 | resolution: {integrity: sha512-5UItyW2cdH2mBLu4RrECRNJRgtvvzKrSCn2y3v/D61QwIDkGx4aeil6x8RFuUL5TFtV6QvVHXnsOHxNgd+sCow==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@volar/typescript/-/typescript-1.3.0-alpha.0.tgz}
620 | name: '@volar/typescript'
621 | version: 1.3.0-alpha.0
622 | dependencies:
623 | '@volar/language-core': registry.npmmirror.com/@volar/language-core/1.3.0-alpha.0
624 | dev: true
625 |
626 | registry.npmmirror.com/@volar/vue-language-core/1.2.0:
627 | resolution: {integrity: sha512-w7yEiaITh2WzKe6u8ZdeLKCUz43wdmY/OqAmsB/PGDvvhTcVhCJ6f0W/RprZL1IhqH8wALoWiwEh/Wer7ZviMQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@volar/vue-language-core/-/vue-language-core-1.2.0.tgz}
628 | name: '@volar/vue-language-core'
629 | version: 1.2.0
630 | dependencies:
631 | '@volar/language-core': registry.npmmirror.com/@volar/language-core/1.3.0-alpha.0
632 | '@volar/source-map': registry.npmmirror.com/@volar/source-map/1.3.0-alpha.0
633 | '@vue/compiler-dom': registry.npmmirror.com/@vue/compiler-dom/3.2.47
634 | '@vue/compiler-sfc': registry.npmmirror.com/@vue/compiler-sfc/3.2.47
635 | '@vue/reactivity': registry.npmmirror.com/@vue/reactivity/3.2.47
636 | '@vue/shared': registry.npmmirror.com/@vue/shared/3.2.47
637 | minimatch: registry.npmmirror.com/minimatch/6.2.0
638 | muggle-string: registry.npmmirror.com/muggle-string/0.2.2
639 | vue-template-compiler: registry.npmmirror.com/vue-template-compiler/2.7.14
640 | dev: true
641 |
642 | registry.npmmirror.com/@volar/vue-typescript/1.2.0:
643 | resolution: {integrity: sha512-zjmRi9y3J1EkG+pfuHp8IbHmibihrKK485cfzsHjiuvJMGrpkWvlO5WVEk8oslMxxeGC5XwBFE9AOlvh378EPA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@volar/vue-typescript/-/vue-typescript-1.2.0.tgz}
644 | name: '@volar/vue-typescript'
645 | version: 1.2.0
646 | dependencies:
647 | '@volar/typescript': registry.npmmirror.com/@volar/typescript/1.3.0-alpha.0
648 | '@volar/vue-language-core': registry.npmmirror.com/@volar/vue-language-core/1.2.0
649 | dev: true
650 |
651 | registry.npmmirror.com/@vue/compiler-core/3.2.47:
652 | 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}
653 | name: '@vue/compiler-core'
654 | version: 3.2.47
655 | dependencies:
656 | '@babel/parser': registry.npmmirror.com/@babel/parser/7.21.3
657 | '@vue/shared': registry.npmmirror.com/@vue/shared/3.2.47
658 | estree-walker: registry.npmmirror.com/estree-walker/2.0.2
659 | source-map: registry.npmmirror.com/source-map/0.6.1
660 |
661 | registry.npmmirror.com/@vue/compiler-dom/3.2.47:
662 | 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}
663 | name: '@vue/compiler-dom'
664 | version: 3.2.47
665 | dependencies:
666 | '@vue/compiler-core': registry.npmmirror.com/@vue/compiler-core/3.2.47
667 | '@vue/shared': registry.npmmirror.com/@vue/shared/3.2.47
668 |
669 | registry.npmmirror.com/@vue/compiler-sfc/3.2.47:
670 | 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}
671 | name: '@vue/compiler-sfc'
672 | version: 3.2.47
673 | dependencies:
674 | '@babel/parser': registry.npmmirror.com/@babel/parser/7.21.3
675 | '@vue/compiler-core': registry.npmmirror.com/@vue/compiler-core/3.2.47
676 | '@vue/compiler-dom': registry.npmmirror.com/@vue/compiler-dom/3.2.47
677 | '@vue/compiler-ssr': registry.npmmirror.com/@vue/compiler-ssr/3.2.47
678 | '@vue/reactivity-transform': registry.npmmirror.com/@vue/reactivity-transform/3.2.47
679 | '@vue/shared': registry.npmmirror.com/@vue/shared/3.2.47
680 | estree-walker: registry.npmmirror.com/estree-walker/2.0.2
681 | magic-string: registry.npmmirror.com/magic-string/0.25.9
682 | postcss: registry.npmmirror.com/postcss/8.4.21
683 | source-map: registry.npmmirror.com/source-map/0.6.1
684 |
685 | registry.npmmirror.com/@vue/compiler-ssr/3.2.47:
686 | 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}
687 | name: '@vue/compiler-ssr'
688 | version: 3.2.47
689 | dependencies:
690 | '@vue/compiler-dom': registry.npmmirror.com/@vue/compiler-dom/3.2.47
691 | '@vue/shared': registry.npmmirror.com/@vue/shared/3.2.47
692 |
693 | registry.npmmirror.com/@vue/eslint-config-prettier/7.1.0_bpfktk52wn6m2x6u3idob4lxru:
694 | resolution: {integrity: sha512-Pv/lVr0bAzSIHLd9iz0KnvAr4GKyCEl+h52bc4e5yWuDVtLgFwycF7nrbWTAQAS+FU6q1geVd07lc6EWfJiWKQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/eslint-config-prettier/-/eslint-config-prettier-7.1.0.tgz}
695 | id: registry.npmmirror.com/@vue/eslint-config-prettier/7.1.0
696 | name: '@vue/eslint-config-prettier'
697 | version: 7.1.0
698 | peerDependencies:
699 | eslint: '>= 7.28.0'
700 | prettier: '>= 2.0.0'
701 | dependencies:
702 | eslint: registry.npmmirror.com/eslint/8.36.0
703 | eslint-config-prettier: registry.npmmirror.com/eslint-config-prettier/8.8.0_eslint@8.36.0
704 | eslint-plugin-prettier: registry.npmmirror.com/eslint-plugin-prettier/4.2.1_ose2zoovovx4ulolhifz3tfzx4
705 | prettier: registry.npmmirror.com/prettier/2.8.6
706 | dev: true
707 |
708 | registry.npmmirror.com/@vue/eslint-config-typescript/11.0.2_lrwndgfnjtuj2xuykkt4cl53wy:
709 | resolution: {integrity: sha512-EiKud1NqlWmSapBFkeSrE994qpKx7/27uCGnhdqzllYDpQZroyX/O6bwjEpeuyKamvLbsGdO6PMR2faIf+zFnw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/eslint-config-typescript/-/eslint-config-typescript-11.0.2.tgz}
710 | id: registry.npmmirror.com/@vue/eslint-config-typescript/11.0.2
711 | name: '@vue/eslint-config-typescript'
712 | version: 11.0.2
713 | engines: {node: ^14.17.0 || >=16.0.0}
714 | peerDependencies:
715 | eslint: ^6.2.0 || ^7.0.0 || ^8.0.0
716 | eslint-plugin-vue: ^9.0.0
717 | typescript: '*'
718 | peerDependenciesMeta:
719 | typescript:
720 | optional: true
721 | dependencies:
722 | '@typescript-eslint/eslint-plugin': registry.npmmirror.com/@typescript-eslint/eslint-plugin/5.56.0_5usxfyjmq7oqnmqnfeoqunnmyu
723 | '@typescript-eslint/parser': registry.npmmirror.com/@typescript-eslint/parser/5.56.0_oetr3kuzbjncgm24ninkrag7ya
724 | eslint: registry.npmmirror.com/eslint/8.36.0
725 | eslint-plugin-vue: registry.npmmirror.com/eslint-plugin-vue/9.9.0_eslint@8.36.0
726 | typescript: registry.npmmirror.com/typescript/4.8.4
727 | vue-eslint-parser: registry.npmmirror.com/vue-eslint-parser/9.1.0_eslint@8.36.0
728 | transitivePeerDependencies:
729 | - supports-color
730 | dev: true
731 |
732 | registry.npmmirror.com/@vue/reactivity-transform/3.2.47:
733 | 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}
734 | name: '@vue/reactivity-transform'
735 | version: 3.2.47
736 | dependencies:
737 | '@babel/parser': registry.npmmirror.com/@babel/parser/7.21.3
738 | '@vue/compiler-core': registry.npmmirror.com/@vue/compiler-core/3.2.47
739 | '@vue/shared': registry.npmmirror.com/@vue/shared/3.2.47
740 | estree-walker: registry.npmmirror.com/estree-walker/2.0.2
741 | magic-string: registry.npmmirror.com/magic-string/0.25.9
742 |
743 | registry.npmmirror.com/@vue/reactivity/3.2.47:
744 | resolution: {integrity: sha512-7khqQ/75oyyg+N/e+iwV6lpy1f5wq759NdlS1fpAhFXa8VeAIKGgk2E/C4VF59lx5b+Ezs5fpp/5WsRYXQiKxQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/reactivity/-/reactivity-3.2.47.tgz}
745 | name: '@vue/reactivity'
746 | version: 3.2.47
747 | dependencies:
748 | '@vue/shared': registry.npmmirror.com/@vue/shared/3.2.47
749 |
750 | registry.npmmirror.com/@vue/runtime-core/3.2.47:
751 | resolution: {integrity: sha512-RZxbLQIRB/K0ev0K9FXhNbBzT32H9iRtYbaXb0ZIz2usLms/D55dJR2t6cIEUn6vyhS3ALNvNthI+Q95C+NOpA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/runtime-core/-/runtime-core-3.2.47.tgz}
752 | name: '@vue/runtime-core'
753 | version: 3.2.47
754 | dependencies:
755 | '@vue/reactivity': registry.npmmirror.com/@vue/reactivity/3.2.47
756 | '@vue/shared': registry.npmmirror.com/@vue/shared/3.2.47
757 |
758 | registry.npmmirror.com/@vue/runtime-dom/3.2.47:
759 | resolution: {integrity: sha512-ArXrFTjS6TsDei4qwNvgrdmHtD930KgSKGhS5M+j8QxXrDJYLqYw4RRcDy1bz1m1wMmb6j+zGLifdVHtkXA7gA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/runtime-dom/-/runtime-dom-3.2.47.tgz}
760 | name: '@vue/runtime-dom'
761 | version: 3.2.47
762 | dependencies:
763 | '@vue/runtime-core': registry.npmmirror.com/@vue/runtime-core/3.2.47
764 | '@vue/shared': registry.npmmirror.com/@vue/shared/3.2.47
765 | csstype: registry.npmmirror.com/csstype/2.6.21
766 |
767 | registry.npmmirror.com/@vue/server-renderer/3.2.47_vue@3.2.47:
768 | 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}
769 | id: registry.npmmirror.com/@vue/server-renderer/3.2.47
770 | name: '@vue/server-renderer'
771 | version: 3.2.47
772 | peerDependencies:
773 | vue: 3.2.47
774 | dependencies:
775 | '@vue/compiler-ssr': registry.npmmirror.com/@vue/compiler-ssr/3.2.47
776 | '@vue/shared': registry.npmmirror.com/@vue/shared/3.2.47
777 | vue: registry.npmmirror.com/vue/3.2.47
778 |
779 | registry.npmmirror.com/@vue/shared/3.2.47:
780 | resolution: {integrity: sha512-BHGyyGN3Q97EZx0taMQ+OLNuZcW3d37ZEVmEAyeoA9ERdGvm9Irc/0Fua8SNyOtV1w6BS4q25wbMzJujO9HIfQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/shared/-/shared-3.2.47.tgz}
781 | name: '@vue/shared'
782 | version: 3.2.47
783 |
784 | registry.npmmirror.com/@vue/tsconfig/0.1.3_@types+node@18.15.5:
785 | resolution: {integrity: sha512-kQVsh8yyWPvHpb8gIc9l/HIDiiVUy1amynLNpCy8p+FoCiZXCo6fQos5/097MmnNZc9AtseDsCrfkhqCrJ8Olg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/tsconfig/-/tsconfig-0.1.3.tgz}
786 | id: registry.npmmirror.com/@vue/tsconfig/0.1.3
787 | name: '@vue/tsconfig'
788 | version: 0.1.3
789 | peerDependencies:
790 | '@types/node': '*'
791 | peerDependenciesMeta:
792 | '@types/node':
793 | optional: true
794 | dependencies:
795 | '@types/node': registry.npmmirror.com/@types/node/18.15.5
796 | dev: true
797 |
798 | registry.npmmirror.com/acorn-jsx/5.3.2_acorn@8.8.2:
799 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz}
800 | id: registry.npmmirror.com/acorn-jsx/5.3.2
801 | name: acorn-jsx
802 | version: 5.3.2
803 | peerDependencies:
804 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
805 | dependencies:
806 | acorn: registry.npmmirror.com/acorn/8.8.2
807 | dev: true
808 |
809 | registry.npmmirror.com/acorn/8.8.2:
810 | resolution: {integrity: sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/acorn/-/acorn-8.8.2.tgz}
811 | name: acorn
812 | version: 8.8.2
813 | engines: {node: '>=0.4.0'}
814 | hasBin: true
815 | dev: true
816 |
817 | registry.npmmirror.com/ajv/6.12.6:
818 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ajv/-/ajv-6.12.6.tgz}
819 | name: ajv
820 | version: 6.12.6
821 | dependencies:
822 | fast-deep-equal: registry.npmmirror.com/fast-deep-equal/3.1.3
823 | fast-json-stable-stringify: registry.npmmirror.com/fast-json-stable-stringify/2.1.0
824 | json-schema-traverse: registry.npmmirror.com/json-schema-traverse/0.4.1
825 | uri-js: registry.npmmirror.com/uri-js/4.4.1
826 | dev: true
827 |
828 | registry.npmmirror.com/ansi-regex/5.0.1:
829 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ansi-regex/-/ansi-regex-5.0.1.tgz}
830 | name: ansi-regex
831 | version: 5.0.1
832 | engines: {node: '>=8'}
833 | dev: true
834 |
835 | registry.npmmirror.com/ansi-styles/3.2.1:
836 | 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}
837 | name: ansi-styles
838 | version: 3.2.1
839 | engines: {node: '>=4'}
840 | dependencies:
841 | color-convert: registry.npmmirror.com/color-convert/1.9.3
842 | dev: true
843 |
844 | registry.npmmirror.com/ansi-styles/4.3.0:
845 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ansi-styles/-/ansi-styles-4.3.0.tgz}
846 | name: ansi-styles
847 | version: 4.3.0
848 | engines: {node: '>=8'}
849 | dependencies:
850 | color-convert: registry.npmmirror.com/color-convert/2.0.1
851 | dev: true
852 |
853 | registry.npmmirror.com/argparse/2.0.1:
854 | 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}
855 | name: argparse
856 | version: 2.0.1
857 | dev: true
858 |
859 | registry.npmmirror.com/array-buffer-byte-length/1.0.0:
860 | resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz}
861 | name: array-buffer-byte-length
862 | version: 1.0.0
863 | dependencies:
864 | call-bind: registry.npmmirror.com/call-bind/1.0.2
865 | is-array-buffer: registry.npmmirror.com/is-array-buffer/3.0.2
866 | dev: true
867 |
868 | registry.npmmirror.com/array-union/2.1.0:
869 | 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}
870 | name: array-union
871 | version: 2.1.0
872 | engines: {node: '>=8'}
873 | dev: true
874 |
875 | registry.npmmirror.com/asynckit/0.4.0:
876 | resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/asynckit/-/asynckit-0.4.0.tgz}
877 | name: asynckit
878 | version: 0.4.0
879 | dev: false
880 |
881 | registry.npmmirror.com/available-typed-arrays/1.0.5:
882 | resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz}
883 | name: available-typed-arrays
884 | version: 1.0.5
885 | engines: {node: '>= 0.4'}
886 | dev: true
887 |
888 | registry.npmmirror.com/axios/1.3.4:
889 | resolution: {integrity: sha512-toYm+Bsyl6VC5wSkfkbbNB6ROv7KY93PEBBL6xyDczaIHasAiv4wPqQ/c4RjoQzipxRD2W5g21cOqQulZ7rHwQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/axios/-/axios-1.3.4.tgz}
890 | name: axios
891 | version: 1.3.4
892 | dependencies:
893 | follow-redirects: registry.npmmirror.com/follow-redirects/1.15.2
894 | form-data: registry.npmmirror.com/form-data/4.0.0
895 | proxy-from-env: registry.npmmirror.com/proxy-from-env/1.1.0
896 | transitivePeerDependencies:
897 | - debug
898 | dev: false
899 |
900 | registry.npmmirror.com/balanced-match/1.0.2:
901 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/balanced-match/-/balanced-match-1.0.2.tgz}
902 | name: balanced-match
903 | version: 1.0.2
904 | dev: true
905 |
906 | registry.npmmirror.com/boolbase/1.0.0:
907 | 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}
908 | name: boolbase
909 | version: 1.0.0
910 | dev: true
911 |
912 | registry.npmmirror.com/brace-expansion/1.1.11:
913 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/brace-expansion/-/brace-expansion-1.1.11.tgz}
914 | name: brace-expansion
915 | version: 1.1.11
916 | dependencies:
917 | balanced-match: registry.npmmirror.com/balanced-match/1.0.2
918 | concat-map: registry.npmmirror.com/concat-map/0.0.1
919 | dev: true
920 |
921 | registry.npmmirror.com/brace-expansion/2.0.1:
922 | 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}
923 | name: brace-expansion
924 | version: 2.0.1
925 | dependencies:
926 | balanced-match: registry.npmmirror.com/balanced-match/1.0.2
927 | dev: true
928 |
929 | registry.npmmirror.com/braces/3.0.2:
930 | resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/braces/-/braces-3.0.2.tgz}
931 | name: braces
932 | version: 3.0.2
933 | engines: {node: '>=8'}
934 | dependencies:
935 | fill-range: registry.npmmirror.com/fill-range/7.0.1
936 | dev: true
937 |
938 | registry.npmmirror.com/call-bind/1.0.2:
939 | 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}
940 | name: call-bind
941 | version: 1.0.2
942 | dependencies:
943 | function-bind: registry.npmmirror.com/function-bind/1.1.1
944 | get-intrinsic: registry.npmmirror.com/get-intrinsic/1.2.0
945 | dev: true
946 |
947 | registry.npmmirror.com/callsites/3.1.0:
948 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/callsites/-/callsites-3.1.0.tgz}
949 | name: callsites
950 | version: 3.1.0
951 | engines: {node: '>=6'}
952 | dev: true
953 |
954 | registry.npmmirror.com/chalk/2.4.2:
955 | 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}
956 | name: chalk
957 | version: 2.4.2
958 | engines: {node: '>=4'}
959 | dependencies:
960 | ansi-styles: registry.npmmirror.com/ansi-styles/3.2.1
961 | escape-string-regexp: registry.npmmirror.com/escape-string-regexp/1.0.5
962 | supports-color: registry.npmmirror.com/supports-color/5.5.0
963 | dev: true
964 |
965 | registry.npmmirror.com/chalk/4.1.2:
966 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz}
967 | name: chalk
968 | version: 4.1.2
969 | engines: {node: '>=10'}
970 | dependencies:
971 | ansi-styles: registry.npmmirror.com/ansi-styles/4.3.0
972 | supports-color: registry.npmmirror.com/supports-color/7.2.0
973 | dev: true
974 |
975 | registry.npmmirror.com/color-convert/1.9.3:
976 | 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}
977 | name: color-convert
978 | version: 1.9.3
979 | dependencies:
980 | color-name: registry.npmmirror.com/color-name/1.1.3
981 | dev: true
982 |
983 | registry.npmmirror.com/color-convert/2.0.1:
984 | 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}
985 | name: color-convert
986 | version: 2.0.1
987 | engines: {node: '>=7.0.0'}
988 | dependencies:
989 | color-name: registry.npmmirror.com/color-name/1.1.4
990 | dev: true
991 |
992 | registry.npmmirror.com/color-name/1.1.3:
993 | 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}
994 | name: color-name
995 | version: 1.1.3
996 | dev: true
997 |
998 | registry.npmmirror.com/color-name/1.1.4:
999 | 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}
1000 | name: color-name
1001 | version: 1.1.4
1002 | dev: true
1003 |
1004 | registry.npmmirror.com/combined-stream/1.0.8:
1005 | 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}
1006 | name: combined-stream
1007 | version: 1.0.8
1008 | engines: {node: '>= 0.8'}
1009 | dependencies:
1010 | delayed-stream: registry.npmmirror.com/delayed-stream/1.0.0
1011 | dev: false
1012 |
1013 | registry.npmmirror.com/concat-map/0.0.1:
1014 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/concat-map/-/concat-map-0.0.1.tgz}
1015 | name: concat-map
1016 | version: 0.0.1
1017 | dev: true
1018 |
1019 | registry.npmmirror.com/cross-spawn/6.0.5:
1020 | resolution: {integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/cross-spawn/-/cross-spawn-6.0.5.tgz}
1021 | name: cross-spawn
1022 | version: 6.0.5
1023 | engines: {node: '>=4.8'}
1024 | dependencies:
1025 | nice-try: registry.npmmirror.com/nice-try/1.0.5
1026 | path-key: registry.npmmirror.com/path-key/2.0.1
1027 | semver: registry.npmmirror.com/semver/5.7.1
1028 | shebang-command: registry.npmmirror.com/shebang-command/1.2.0
1029 | which: registry.npmmirror.com/which/1.3.1
1030 | dev: true
1031 |
1032 | registry.npmmirror.com/cross-spawn/7.0.3:
1033 | resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/cross-spawn/-/cross-spawn-7.0.3.tgz}
1034 | name: cross-spawn
1035 | version: 7.0.3
1036 | engines: {node: '>= 8'}
1037 | dependencies:
1038 | path-key: registry.npmmirror.com/path-key/3.1.1
1039 | shebang-command: registry.npmmirror.com/shebang-command/2.0.0
1040 | which: registry.npmmirror.com/which/2.0.2
1041 | dev: true
1042 |
1043 | registry.npmmirror.com/cssesc/3.0.0:
1044 | 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}
1045 | name: cssesc
1046 | version: 3.0.0
1047 | engines: {node: '>=4'}
1048 | hasBin: true
1049 | dev: true
1050 |
1051 | registry.npmmirror.com/csstype/2.6.21:
1052 | 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}
1053 | name: csstype
1054 | version: 2.6.21
1055 |
1056 | registry.npmmirror.com/de-indent/1.0.2:
1057 | 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}
1058 | name: de-indent
1059 | version: 1.0.2
1060 | dev: true
1061 |
1062 | registry.npmmirror.com/debug/4.3.4:
1063 | resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz}
1064 | name: debug
1065 | version: 4.3.4
1066 | engines: {node: '>=6.0'}
1067 | peerDependencies:
1068 | supports-color: '*'
1069 | peerDependenciesMeta:
1070 | supports-color:
1071 | optional: true
1072 | dependencies:
1073 | ms: registry.npmmirror.com/ms/2.1.2
1074 | dev: true
1075 |
1076 | registry.npmmirror.com/deep-is/0.1.4:
1077 | 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}
1078 | name: deep-is
1079 | version: 0.1.4
1080 | dev: true
1081 |
1082 | registry.npmmirror.com/define-properties/1.2.0:
1083 | resolution: {integrity: sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/define-properties/-/define-properties-1.2.0.tgz}
1084 | name: define-properties
1085 | version: 1.2.0
1086 | engines: {node: '>= 0.4'}
1087 | dependencies:
1088 | has-property-descriptors: registry.npmmirror.com/has-property-descriptors/1.0.0
1089 | object-keys: registry.npmmirror.com/object-keys/1.1.1
1090 | dev: true
1091 |
1092 | registry.npmmirror.com/delayed-stream/1.0.0:
1093 | resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/delayed-stream/-/delayed-stream-1.0.0.tgz}
1094 | name: delayed-stream
1095 | version: 1.0.0
1096 | engines: {node: '>=0.4.0'}
1097 | dev: false
1098 |
1099 | registry.npmmirror.com/dir-glob/3.0.1:
1100 | resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/dir-glob/-/dir-glob-3.0.1.tgz}
1101 | name: dir-glob
1102 | version: 3.0.1
1103 | engines: {node: '>=8'}
1104 | dependencies:
1105 | path-type: registry.npmmirror.com/path-type/4.0.0
1106 | dev: true
1107 |
1108 | registry.npmmirror.com/doctrine/3.0.0:
1109 | resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/doctrine/-/doctrine-3.0.0.tgz}
1110 | name: doctrine
1111 | version: 3.0.0
1112 | engines: {node: '>=6.0.0'}
1113 | dependencies:
1114 | esutils: registry.npmmirror.com/esutils/2.0.3
1115 | dev: true
1116 |
1117 | registry.npmmirror.com/error-ex/1.3.2:
1118 | 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}
1119 | name: error-ex
1120 | version: 1.3.2
1121 | dependencies:
1122 | is-arrayish: registry.npmmirror.com/is-arrayish/0.2.1
1123 | dev: true
1124 |
1125 | registry.npmmirror.com/es-abstract/1.21.2:
1126 | resolution: {integrity: sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/es-abstract/-/es-abstract-1.21.2.tgz}
1127 | name: es-abstract
1128 | version: 1.21.2
1129 | engines: {node: '>= 0.4'}
1130 | dependencies:
1131 | array-buffer-byte-length: registry.npmmirror.com/array-buffer-byte-length/1.0.0
1132 | available-typed-arrays: registry.npmmirror.com/available-typed-arrays/1.0.5
1133 | call-bind: registry.npmmirror.com/call-bind/1.0.2
1134 | es-set-tostringtag: registry.npmmirror.com/es-set-tostringtag/2.0.1
1135 | es-to-primitive: registry.npmmirror.com/es-to-primitive/1.2.1
1136 | function.prototype.name: registry.npmmirror.com/function.prototype.name/1.1.5
1137 | get-intrinsic: registry.npmmirror.com/get-intrinsic/1.2.0
1138 | get-symbol-description: registry.npmmirror.com/get-symbol-description/1.0.0
1139 | globalthis: registry.npmmirror.com/globalthis/1.0.3
1140 | gopd: registry.npmmirror.com/gopd/1.0.1
1141 | has: registry.npmmirror.com/has/1.0.3
1142 | has-property-descriptors: registry.npmmirror.com/has-property-descriptors/1.0.0
1143 | has-proto: registry.npmmirror.com/has-proto/1.0.1
1144 | has-symbols: registry.npmmirror.com/has-symbols/1.0.3
1145 | internal-slot: registry.npmmirror.com/internal-slot/1.0.5
1146 | is-array-buffer: registry.npmmirror.com/is-array-buffer/3.0.2
1147 | is-callable: registry.npmmirror.com/is-callable/1.2.7
1148 | is-negative-zero: registry.npmmirror.com/is-negative-zero/2.0.2
1149 | is-regex: registry.npmmirror.com/is-regex/1.1.4
1150 | is-shared-array-buffer: registry.npmmirror.com/is-shared-array-buffer/1.0.2
1151 | is-string: registry.npmmirror.com/is-string/1.0.7
1152 | is-typed-array: registry.npmmirror.com/is-typed-array/1.1.10
1153 | is-weakref: registry.npmmirror.com/is-weakref/1.0.2
1154 | object-inspect: registry.npmmirror.com/object-inspect/1.12.3
1155 | object-keys: registry.npmmirror.com/object-keys/1.1.1
1156 | object.assign: registry.npmmirror.com/object.assign/4.1.4
1157 | regexp.prototype.flags: registry.npmmirror.com/regexp.prototype.flags/1.4.3
1158 | safe-regex-test: registry.npmmirror.com/safe-regex-test/1.0.0
1159 | string.prototype.trim: registry.npmmirror.com/string.prototype.trim/1.2.7
1160 | string.prototype.trimend: registry.npmmirror.com/string.prototype.trimend/1.0.6
1161 | string.prototype.trimstart: registry.npmmirror.com/string.prototype.trimstart/1.0.6
1162 | typed-array-length: registry.npmmirror.com/typed-array-length/1.0.4
1163 | unbox-primitive: registry.npmmirror.com/unbox-primitive/1.0.2
1164 | which-typed-array: registry.npmmirror.com/which-typed-array/1.1.9
1165 | dev: true
1166 |
1167 | registry.npmmirror.com/es-set-tostringtag/2.0.1:
1168 | resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz}
1169 | name: es-set-tostringtag
1170 | version: 2.0.1
1171 | engines: {node: '>= 0.4'}
1172 | dependencies:
1173 | get-intrinsic: registry.npmmirror.com/get-intrinsic/1.2.0
1174 | has: registry.npmmirror.com/has/1.0.3
1175 | has-tostringtag: registry.npmmirror.com/has-tostringtag/1.0.0
1176 | dev: true
1177 |
1178 | registry.npmmirror.com/es-to-primitive/1.2.1:
1179 | resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz}
1180 | name: es-to-primitive
1181 | version: 1.2.1
1182 | engines: {node: '>= 0.4'}
1183 | dependencies:
1184 | is-callable: registry.npmmirror.com/is-callable/1.2.7
1185 | is-date-object: registry.npmmirror.com/is-date-object/1.0.5
1186 | is-symbol: registry.npmmirror.com/is-symbol/1.0.4
1187 | dev: true
1188 |
1189 | registry.npmmirror.com/esbuild/0.17.12:
1190 | resolution: {integrity: sha512-bX/zHl7Gn2CpQwcMtRogTTBf9l1nl+H6R8nUbjk+RuKqAE3+8FDulLA+pHvX7aA7Xe07Iwa+CWvy9I8Y2qqPKQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild/-/esbuild-0.17.12.tgz}
1191 | name: esbuild
1192 | version: 0.17.12
1193 | engines: {node: '>=12'}
1194 | hasBin: true
1195 | requiresBuild: true
1196 | optionalDependencies:
1197 | '@esbuild/android-arm': registry.npmmirror.com/@esbuild/android-arm/0.17.12
1198 | '@esbuild/android-arm64': registry.npmmirror.com/@esbuild/android-arm64/0.17.12
1199 | '@esbuild/android-x64': registry.npmmirror.com/@esbuild/android-x64/0.17.12
1200 | '@esbuild/darwin-arm64': registry.npmmirror.com/@esbuild/darwin-arm64/0.17.12
1201 | '@esbuild/darwin-x64': registry.npmmirror.com/@esbuild/darwin-x64/0.17.12
1202 | '@esbuild/freebsd-arm64': registry.npmmirror.com/@esbuild/freebsd-arm64/0.17.12
1203 | '@esbuild/freebsd-x64': registry.npmmirror.com/@esbuild/freebsd-x64/0.17.12
1204 | '@esbuild/linux-arm': registry.npmmirror.com/@esbuild/linux-arm/0.17.12
1205 | '@esbuild/linux-arm64': registry.npmmirror.com/@esbuild/linux-arm64/0.17.12
1206 | '@esbuild/linux-ia32': registry.npmmirror.com/@esbuild/linux-ia32/0.17.12
1207 | '@esbuild/linux-loong64': registry.npmmirror.com/@esbuild/linux-loong64/0.17.12
1208 | '@esbuild/linux-mips64el': registry.npmmirror.com/@esbuild/linux-mips64el/0.17.12
1209 | '@esbuild/linux-ppc64': registry.npmmirror.com/@esbuild/linux-ppc64/0.17.12
1210 | '@esbuild/linux-riscv64': registry.npmmirror.com/@esbuild/linux-riscv64/0.17.12
1211 | '@esbuild/linux-s390x': registry.npmmirror.com/@esbuild/linux-s390x/0.17.12
1212 | '@esbuild/linux-x64': registry.npmmirror.com/@esbuild/linux-x64/0.17.12
1213 | '@esbuild/netbsd-x64': registry.npmmirror.com/@esbuild/netbsd-x64/0.17.12
1214 | '@esbuild/openbsd-x64': registry.npmmirror.com/@esbuild/openbsd-x64/0.17.12
1215 | '@esbuild/sunos-x64': registry.npmmirror.com/@esbuild/sunos-x64/0.17.12
1216 | '@esbuild/win32-arm64': registry.npmmirror.com/@esbuild/win32-arm64/0.17.12
1217 | '@esbuild/win32-ia32': registry.npmmirror.com/@esbuild/win32-ia32/0.17.12
1218 | '@esbuild/win32-x64': registry.npmmirror.com/@esbuild/win32-x64/0.17.12
1219 | dev: true
1220 |
1221 | registry.npmmirror.com/escape-string-regexp/1.0.5:
1222 | 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}
1223 | name: escape-string-regexp
1224 | version: 1.0.5
1225 | engines: {node: '>=0.8.0'}
1226 | dev: true
1227 |
1228 | registry.npmmirror.com/escape-string-regexp/4.0.0:
1229 | 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}
1230 | name: escape-string-regexp
1231 | version: 4.0.0
1232 | engines: {node: '>=10'}
1233 | dev: true
1234 |
1235 | registry.npmmirror.com/eslint-config-prettier/8.8.0_eslint@8.36.0:
1236 | resolution: {integrity: sha512-wLbQiFre3tdGgpDv67NQKnJuTlcUVYHas3k+DZCc2U2BadthoEY4B7hLPvAxaqdyOGCzuLfii2fqGph10va7oA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/eslint-config-prettier/-/eslint-config-prettier-8.8.0.tgz}
1237 | id: registry.npmmirror.com/eslint-config-prettier/8.8.0
1238 | name: eslint-config-prettier
1239 | version: 8.8.0
1240 | hasBin: true
1241 | peerDependencies:
1242 | eslint: '>=7.0.0'
1243 | dependencies:
1244 | eslint: registry.npmmirror.com/eslint/8.36.0
1245 | dev: true
1246 |
1247 | registry.npmmirror.com/eslint-plugin-prettier/4.2.1_ose2zoovovx4ulolhifz3tfzx4:
1248 | resolution: {integrity: sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/eslint-plugin-prettier/-/eslint-plugin-prettier-4.2.1.tgz}
1249 | id: registry.npmmirror.com/eslint-plugin-prettier/4.2.1
1250 | name: eslint-plugin-prettier
1251 | version: 4.2.1
1252 | engines: {node: '>=12.0.0'}
1253 | peerDependencies:
1254 | eslint: '>=7.28.0'
1255 | eslint-config-prettier: '*'
1256 | prettier: '>=2.0.0'
1257 | peerDependenciesMeta:
1258 | eslint-config-prettier:
1259 | optional: true
1260 | dependencies:
1261 | eslint: registry.npmmirror.com/eslint/8.36.0
1262 | eslint-config-prettier: registry.npmmirror.com/eslint-config-prettier/8.8.0_eslint@8.36.0
1263 | prettier: registry.npmmirror.com/prettier/2.8.6
1264 | prettier-linter-helpers: registry.npmmirror.com/prettier-linter-helpers/1.0.0
1265 | dev: true
1266 |
1267 | registry.npmmirror.com/eslint-plugin-vue/9.9.0_eslint@8.36.0:
1268 | resolution: {integrity: sha512-YbubS7eK0J7DCf0U2LxvVP7LMfs6rC6UltihIgval3azO3gyDwEGVgsCMe1TmDiEkl6GdMKfRpaME6QxIYtzDQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/eslint-plugin-vue/-/eslint-plugin-vue-9.9.0.tgz}
1269 | id: registry.npmmirror.com/eslint-plugin-vue/9.9.0
1270 | name: eslint-plugin-vue
1271 | version: 9.9.0
1272 | engines: {node: ^14.17.0 || >=16.0.0}
1273 | peerDependencies:
1274 | eslint: ^6.2.0 || ^7.0.0 || ^8.0.0
1275 | dependencies:
1276 | eslint: registry.npmmirror.com/eslint/8.36.0
1277 | eslint-utils: registry.npmmirror.com/eslint-utils/3.0.0_eslint@8.36.0
1278 | natural-compare: registry.npmmirror.com/natural-compare/1.4.0
1279 | nth-check: registry.npmmirror.com/nth-check/2.1.1
1280 | postcss-selector-parser: registry.npmmirror.com/postcss-selector-parser/6.0.11
1281 | semver: registry.npmmirror.com/semver/7.3.8
1282 | vue-eslint-parser: registry.npmmirror.com/vue-eslint-parser/9.1.0_eslint@8.36.0
1283 | xml-name-validator: registry.npmmirror.com/xml-name-validator/4.0.0
1284 | transitivePeerDependencies:
1285 | - supports-color
1286 | dev: true
1287 |
1288 | registry.npmmirror.com/eslint-scope/5.1.1:
1289 | 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}
1290 | name: eslint-scope
1291 | version: 5.1.1
1292 | engines: {node: '>=8.0.0'}
1293 | dependencies:
1294 | esrecurse: registry.npmmirror.com/esrecurse/4.3.0
1295 | estraverse: registry.npmmirror.com/estraverse/4.3.0
1296 | dev: true
1297 |
1298 | registry.npmmirror.com/eslint-scope/7.1.1:
1299 | resolution: {integrity: sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/eslint-scope/-/eslint-scope-7.1.1.tgz}
1300 | name: eslint-scope
1301 | version: 7.1.1
1302 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1303 | dependencies:
1304 | esrecurse: registry.npmmirror.com/esrecurse/4.3.0
1305 | estraverse: registry.npmmirror.com/estraverse/5.3.0
1306 | dev: true
1307 |
1308 | registry.npmmirror.com/eslint-utils/3.0.0_eslint@8.36.0:
1309 | 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}
1310 | id: registry.npmmirror.com/eslint-utils/3.0.0
1311 | name: eslint-utils
1312 | version: 3.0.0
1313 | engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0}
1314 | peerDependencies:
1315 | eslint: '>=5'
1316 | dependencies:
1317 | eslint: registry.npmmirror.com/eslint/8.36.0
1318 | eslint-visitor-keys: registry.npmmirror.com/eslint-visitor-keys/2.1.0
1319 | dev: true
1320 |
1321 | registry.npmmirror.com/eslint-visitor-keys/2.1.0:
1322 | 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}
1323 | name: eslint-visitor-keys
1324 | version: 2.1.0
1325 | engines: {node: '>=10'}
1326 | dev: true
1327 |
1328 | registry.npmmirror.com/eslint-visitor-keys/3.3.0:
1329 | resolution: {integrity: sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz}
1330 | name: eslint-visitor-keys
1331 | version: 3.3.0
1332 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1333 | dev: true
1334 |
1335 | registry.npmmirror.com/eslint/8.36.0:
1336 | resolution: {integrity: sha512-Y956lmS7vDqomxlaaQAHVmeb4tNMp2FWIvU/RnU5BD3IKMD/MJPr76xdyr68P8tV1iNMvN2mRK0yy3c+UjL+bw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/eslint/-/eslint-8.36.0.tgz}
1337 | name: eslint
1338 | version: 8.36.0
1339 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1340 | hasBin: true
1341 | dependencies:
1342 | '@eslint-community/eslint-utils': registry.npmmirror.com/@eslint-community/eslint-utils/4.3.0_eslint@8.36.0
1343 | '@eslint-community/regexpp': registry.npmmirror.com/@eslint-community/regexpp/4.4.0
1344 | '@eslint/eslintrc': registry.npmmirror.com/@eslint/eslintrc/2.0.1
1345 | '@eslint/js': registry.npmmirror.com/@eslint/js/8.36.0
1346 | '@humanwhocodes/config-array': registry.npmmirror.com/@humanwhocodes/config-array/0.11.8
1347 | '@humanwhocodes/module-importer': registry.npmmirror.com/@humanwhocodes/module-importer/1.0.1
1348 | '@nodelib/fs.walk': registry.npmmirror.com/@nodelib/fs.walk/1.2.8
1349 | ajv: registry.npmmirror.com/ajv/6.12.6
1350 | chalk: registry.npmmirror.com/chalk/4.1.2
1351 | cross-spawn: registry.npmmirror.com/cross-spawn/7.0.3
1352 | debug: registry.npmmirror.com/debug/4.3.4
1353 | doctrine: registry.npmmirror.com/doctrine/3.0.0
1354 | escape-string-regexp: registry.npmmirror.com/escape-string-regexp/4.0.0
1355 | eslint-scope: registry.npmmirror.com/eslint-scope/7.1.1
1356 | eslint-visitor-keys: registry.npmmirror.com/eslint-visitor-keys/3.3.0
1357 | espree: registry.npmmirror.com/espree/9.5.0
1358 | esquery: registry.npmmirror.com/esquery/1.5.0
1359 | esutils: registry.npmmirror.com/esutils/2.0.3
1360 | fast-deep-equal: registry.npmmirror.com/fast-deep-equal/3.1.3
1361 | file-entry-cache: registry.npmmirror.com/file-entry-cache/6.0.1
1362 | find-up: registry.npmmirror.com/find-up/5.0.0
1363 | glob-parent: registry.npmmirror.com/glob-parent/6.0.2
1364 | globals: registry.npmmirror.com/globals/13.20.0
1365 | grapheme-splitter: registry.npmmirror.com/grapheme-splitter/1.0.4
1366 | ignore: registry.npmmirror.com/ignore/5.2.4
1367 | import-fresh: registry.npmmirror.com/import-fresh/3.3.0
1368 | imurmurhash: registry.npmmirror.com/imurmurhash/0.1.4
1369 | is-glob: registry.npmmirror.com/is-glob/4.0.3
1370 | is-path-inside: registry.npmmirror.com/is-path-inside/3.0.3
1371 | js-sdsl: registry.npmmirror.com/js-sdsl/4.4.0
1372 | js-yaml: registry.npmmirror.com/js-yaml/4.1.0
1373 | json-stable-stringify-without-jsonify: registry.npmmirror.com/json-stable-stringify-without-jsonify/1.0.1
1374 | levn: registry.npmmirror.com/levn/0.4.1
1375 | lodash.merge: registry.npmmirror.com/lodash.merge/4.6.2
1376 | minimatch: registry.npmmirror.com/minimatch/3.1.2
1377 | natural-compare: registry.npmmirror.com/natural-compare/1.4.0
1378 | optionator: registry.npmmirror.com/optionator/0.9.1
1379 | strip-ansi: registry.npmmirror.com/strip-ansi/6.0.1
1380 | strip-json-comments: registry.npmmirror.com/strip-json-comments/3.1.1
1381 | text-table: registry.npmmirror.com/text-table/0.2.0
1382 | transitivePeerDependencies:
1383 | - supports-color
1384 | dev: true
1385 |
1386 | registry.npmmirror.com/espree/9.5.0:
1387 | resolution: {integrity: sha512-JPbJGhKc47++oo4JkEoTe2wjy4fmMwvFpgJT9cQzmfXKp22Dr6Hf1tdCteLz1h0P3t+mGvWZ+4Uankvh8+c6zw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/espree/-/espree-9.5.0.tgz}
1388 | name: espree
1389 | version: 9.5.0
1390 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1391 | dependencies:
1392 | acorn: registry.npmmirror.com/acorn/8.8.2
1393 | acorn-jsx: registry.npmmirror.com/acorn-jsx/5.3.2_acorn@8.8.2
1394 | eslint-visitor-keys: registry.npmmirror.com/eslint-visitor-keys/3.3.0
1395 | dev: true
1396 |
1397 | registry.npmmirror.com/esquery/1.5.0:
1398 | resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esquery/-/esquery-1.5.0.tgz}
1399 | name: esquery
1400 | version: 1.5.0
1401 | engines: {node: '>=0.10'}
1402 | dependencies:
1403 | estraverse: registry.npmmirror.com/estraverse/5.3.0
1404 | dev: true
1405 |
1406 | registry.npmmirror.com/esrecurse/4.3.0:
1407 | 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}
1408 | name: esrecurse
1409 | version: 4.3.0
1410 | engines: {node: '>=4.0'}
1411 | dependencies:
1412 | estraverse: registry.npmmirror.com/estraverse/5.3.0
1413 | dev: true
1414 |
1415 | registry.npmmirror.com/estraverse/4.3.0:
1416 | resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/estraverse/-/estraverse-4.3.0.tgz}
1417 | name: estraverse
1418 | version: 4.3.0
1419 | engines: {node: '>=4.0'}
1420 | dev: true
1421 |
1422 | registry.npmmirror.com/estraverse/5.3.0:
1423 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/estraverse/-/estraverse-5.3.0.tgz}
1424 | name: estraverse
1425 | version: 5.3.0
1426 | engines: {node: '>=4.0'}
1427 | dev: true
1428 |
1429 | registry.npmmirror.com/estree-walker/2.0.2:
1430 | 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}
1431 | name: estree-walker
1432 | version: 2.0.2
1433 |
1434 | registry.npmmirror.com/esutils/2.0.3:
1435 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esutils/-/esutils-2.0.3.tgz}
1436 | name: esutils
1437 | version: 2.0.3
1438 | engines: {node: '>=0.10.0'}
1439 | dev: true
1440 |
1441 | registry.npmmirror.com/fast-deep-equal/3.1.3:
1442 | 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}
1443 | name: fast-deep-equal
1444 | version: 3.1.3
1445 | dev: true
1446 |
1447 | registry.npmmirror.com/fast-diff/1.2.0:
1448 | resolution: {integrity: sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fast-diff/-/fast-diff-1.2.0.tgz}
1449 | name: fast-diff
1450 | version: 1.2.0
1451 | dev: true
1452 |
1453 | registry.npmmirror.com/fast-glob/3.2.12:
1454 | resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fast-glob/-/fast-glob-3.2.12.tgz}
1455 | name: fast-glob
1456 | version: 3.2.12
1457 | engines: {node: '>=8.6.0'}
1458 | dependencies:
1459 | '@nodelib/fs.stat': registry.npmmirror.com/@nodelib/fs.stat/2.0.5
1460 | '@nodelib/fs.walk': registry.npmmirror.com/@nodelib/fs.walk/1.2.8
1461 | glob-parent: registry.npmmirror.com/glob-parent/5.1.2
1462 | merge2: registry.npmmirror.com/merge2/1.4.1
1463 | micromatch: registry.npmmirror.com/micromatch/4.0.5
1464 | dev: true
1465 |
1466 | registry.npmmirror.com/fast-json-stable-stringify/2.1.0:
1467 | 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}
1468 | name: fast-json-stable-stringify
1469 | version: 2.1.0
1470 | dev: true
1471 |
1472 | registry.npmmirror.com/fast-levenshtein/2.0.6:
1473 | 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}
1474 | name: fast-levenshtein
1475 | version: 2.0.6
1476 | dev: true
1477 |
1478 | registry.npmmirror.com/fastq/1.15.0:
1479 | 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}
1480 | name: fastq
1481 | version: 1.15.0
1482 | dependencies:
1483 | reusify: registry.npmmirror.com/reusify/1.0.4
1484 | dev: true
1485 |
1486 | registry.npmmirror.com/file-entry-cache/6.0.1:
1487 | 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}
1488 | name: file-entry-cache
1489 | version: 6.0.1
1490 | engines: {node: ^10.12.0 || >=12.0.0}
1491 | dependencies:
1492 | flat-cache: registry.npmmirror.com/flat-cache/3.0.4
1493 | dev: true
1494 |
1495 | registry.npmmirror.com/fill-range/7.0.1:
1496 | 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}
1497 | name: fill-range
1498 | version: 7.0.1
1499 | engines: {node: '>=8'}
1500 | dependencies:
1501 | to-regex-range: registry.npmmirror.com/to-regex-range/5.0.1
1502 | dev: true
1503 |
1504 | registry.npmmirror.com/find-up/5.0.0:
1505 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/find-up/-/find-up-5.0.0.tgz}
1506 | name: find-up
1507 | version: 5.0.0
1508 | engines: {node: '>=10'}
1509 | dependencies:
1510 | locate-path: registry.npmmirror.com/locate-path/6.0.0
1511 | path-exists: registry.npmmirror.com/path-exists/4.0.0
1512 | dev: true
1513 |
1514 | registry.npmmirror.com/flat-cache/3.0.4:
1515 | resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/flat-cache/-/flat-cache-3.0.4.tgz}
1516 | name: flat-cache
1517 | version: 3.0.4
1518 | engines: {node: ^10.12.0 || >=12.0.0}
1519 | dependencies:
1520 | flatted: registry.npmmirror.com/flatted/3.2.7
1521 | rimraf: registry.npmmirror.com/rimraf/3.0.2
1522 | dev: true
1523 |
1524 | registry.npmmirror.com/flatted/3.2.7:
1525 | 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}
1526 | name: flatted
1527 | version: 3.2.7
1528 | dev: true
1529 |
1530 | registry.npmmirror.com/follow-redirects/1.15.2:
1531 | resolution: {integrity: sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/follow-redirects/-/follow-redirects-1.15.2.tgz}
1532 | name: follow-redirects
1533 | version: 1.15.2
1534 | engines: {node: '>=4.0'}
1535 | peerDependencies:
1536 | debug: '*'
1537 | peerDependenciesMeta:
1538 | debug:
1539 | optional: true
1540 | dev: false
1541 |
1542 | registry.npmmirror.com/for-each/0.3.3:
1543 | resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/for-each/-/for-each-0.3.3.tgz}
1544 | name: for-each
1545 | version: 0.3.3
1546 | dependencies:
1547 | is-callable: registry.npmmirror.com/is-callable/1.2.7
1548 | dev: true
1549 |
1550 | registry.npmmirror.com/form-data/4.0.0:
1551 | 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}
1552 | name: form-data
1553 | version: 4.0.0
1554 | engines: {node: '>= 6'}
1555 | dependencies:
1556 | asynckit: registry.npmmirror.com/asynckit/0.4.0
1557 | combined-stream: registry.npmmirror.com/combined-stream/1.0.8
1558 | mime-types: registry.npmmirror.com/mime-types/2.1.35
1559 | dev: false
1560 |
1561 | registry.npmmirror.com/fs.realpath/1.0.0:
1562 | resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fs.realpath/-/fs.realpath-1.0.0.tgz}
1563 | name: fs.realpath
1564 | version: 1.0.0
1565 | dev: true
1566 |
1567 | registry.npmmirror.com/fsevents/2.3.2:
1568 | resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fsevents/-/fsevents-2.3.2.tgz}
1569 | name: fsevents
1570 | version: 2.3.2
1571 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
1572 | os: [darwin]
1573 | requiresBuild: true
1574 | dev: true
1575 | optional: true
1576 |
1577 | registry.npmmirror.com/function-bind/1.1.1:
1578 | resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/function-bind/-/function-bind-1.1.1.tgz}
1579 | name: function-bind
1580 | version: 1.1.1
1581 | dev: true
1582 |
1583 | registry.npmmirror.com/function.prototype.name/1.1.5:
1584 | resolution: {integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/function.prototype.name/-/function.prototype.name-1.1.5.tgz}
1585 | name: function.prototype.name
1586 | version: 1.1.5
1587 | engines: {node: '>= 0.4'}
1588 | dependencies:
1589 | call-bind: registry.npmmirror.com/call-bind/1.0.2
1590 | define-properties: registry.npmmirror.com/define-properties/1.2.0
1591 | es-abstract: registry.npmmirror.com/es-abstract/1.21.2
1592 | functions-have-names: registry.npmmirror.com/functions-have-names/1.2.3
1593 | dev: true
1594 |
1595 | registry.npmmirror.com/functions-have-names/1.2.3:
1596 | resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/functions-have-names/-/functions-have-names-1.2.3.tgz}
1597 | name: functions-have-names
1598 | version: 1.2.3
1599 | dev: true
1600 |
1601 | registry.npmmirror.com/get-intrinsic/1.2.0:
1602 | resolution: {integrity: sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/get-intrinsic/-/get-intrinsic-1.2.0.tgz}
1603 | name: get-intrinsic
1604 | version: 1.2.0
1605 | dependencies:
1606 | function-bind: registry.npmmirror.com/function-bind/1.1.1
1607 | has: registry.npmmirror.com/has/1.0.3
1608 | has-symbols: registry.npmmirror.com/has-symbols/1.0.3
1609 | dev: true
1610 |
1611 | registry.npmmirror.com/get-symbol-description/1.0.0:
1612 | resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz}
1613 | name: get-symbol-description
1614 | version: 1.0.0
1615 | engines: {node: '>= 0.4'}
1616 | dependencies:
1617 | call-bind: registry.npmmirror.com/call-bind/1.0.2
1618 | get-intrinsic: registry.npmmirror.com/get-intrinsic/1.2.0
1619 | dev: true
1620 |
1621 | registry.npmmirror.com/glob-parent/5.1.2:
1622 | 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}
1623 | name: glob-parent
1624 | version: 5.1.2
1625 | engines: {node: '>= 6'}
1626 | dependencies:
1627 | is-glob: registry.npmmirror.com/is-glob/4.0.3
1628 | dev: true
1629 |
1630 | registry.npmmirror.com/glob-parent/6.0.2:
1631 | 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}
1632 | name: glob-parent
1633 | version: 6.0.2
1634 | engines: {node: '>=10.13.0'}
1635 | dependencies:
1636 | is-glob: registry.npmmirror.com/is-glob/4.0.3
1637 | dev: true
1638 |
1639 | registry.npmmirror.com/glob/7.2.3:
1640 | resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/glob/-/glob-7.2.3.tgz}
1641 | name: glob
1642 | version: 7.2.3
1643 | dependencies:
1644 | fs.realpath: registry.npmmirror.com/fs.realpath/1.0.0
1645 | inflight: registry.npmmirror.com/inflight/1.0.6
1646 | inherits: registry.npmmirror.com/inherits/2.0.4
1647 | minimatch: registry.npmmirror.com/minimatch/3.1.2
1648 | once: registry.npmmirror.com/once/1.4.0
1649 | path-is-absolute: registry.npmmirror.com/path-is-absolute/1.0.1
1650 | dev: true
1651 |
1652 | registry.npmmirror.com/globals/13.20.0:
1653 | resolution: {integrity: sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/globals/-/globals-13.20.0.tgz}
1654 | name: globals
1655 | version: 13.20.0
1656 | engines: {node: '>=8'}
1657 | dependencies:
1658 | type-fest: registry.npmmirror.com/type-fest/0.20.2
1659 | dev: true
1660 |
1661 | registry.npmmirror.com/globalthis/1.0.3:
1662 | resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/globalthis/-/globalthis-1.0.3.tgz}
1663 | name: globalthis
1664 | version: 1.0.3
1665 | engines: {node: '>= 0.4'}
1666 | dependencies:
1667 | define-properties: registry.npmmirror.com/define-properties/1.2.0
1668 | dev: true
1669 |
1670 | registry.npmmirror.com/globby/11.1.0:
1671 | resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/globby/-/globby-11.1.0.tgz}
1672 | name: globby
1673 | version: 11.1.0
1674 | engines: {node: '>=10'}
1675 | dependencies:
1676 | array-union: registry.npmmirror.com/array-union/2.1.0
1677 | dir-glob: registry.npmmirror.com/dir-glob/3.0.1
1678 | fast-glob: registry.npmmirror.com/fast-glob/3.2.12
1679 | ignore: registry.npmmirror.com/ignore/5.2.4
1680 | merge2: registry.npmmirror.com/merge2/1.4.1
1681 | slash: registry.npmmirror.com/slash/3.0.0
1682 | dev: true
1683 |
1684 | registry.npmmirror.com/gopd/1.0.1:
1685 | resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/gopd/-/gopd-1.0.1.tgz}
1686 | name: gopd
1687 | version: 1.0.1
1688 | dependencies:
1689 | get-intrinsic: registry.npmmirror.com/get-intrinsic/1.2.0
1690 | dev: true
1691 |
1692 | registry.npmmirror.com/graceful-fs/4.2.11:
1693 | 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}
1694 | name: graceful-fs
1695 | version: 4.2.11
1696 | dev: true
1697 |
1698 | registry.npmmirror.com/grapheme-splitter/1.0.4:
1699 | resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz}
1700 | name: grapheme-splitter
1701 | version: 1.0.4
1702 | dev: true
1703 |
1704 | registry.npmmirror.com/has-bigints/1.0.2:
1705 | resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/has-bigints/-/has-bigints-1.0.2.tgz}
1706 | name: has-bigints
1707 | version: 1.0.2
1708 | dev: true
1709 |
1710 | registry.npmmirror.com/has-flag/3.0.0:
1711 | 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}
1712 | name: has-flag
1713 | version: 3.0.0
1714 | engines: {node: '>=4'}
1715 | dev: true
1716 |
1717 | registry.npmmirror.com/has-flag/4.0.0:
1718 | 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}
1719 | name: has-flag
1720 | version: 4.0.0
1721 | engines: {node: '>=8'}
1722 | dev: true
1723 |
1724 | registry.npmmirror.com/has-property-descriptors/1.0.0:
1725 | resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz}
1726 | name: has-property-descriptors
1727 | version: 1.0.0
1728 | dependencies:
1729 | get-intrinsic: registry.npmmirror.com/get-intrinsic/1.2.0
1730 | dev: true
1731 |
1732 | registry.npmmirror.com/has-proto/1.0.1:
1733 | 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}
1734 | name: has-proto
1735 | version: 1.0.1
1736 | engines: {node: '>= 0.4'}
1737 | dev: true
1738 |
1739 | registry.npmmirror.com/has-symbols/1.0.3:
1740 | resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/has-symbols/-/has-symbols-1.0.3.tgz}
1741 | name: has-symbols
1742 | version: 1.0.3
1743 | engines: {node: '>= 0.4'}
1744 | dev: true
1745 |
1746 | registry.npmmirror.com/has-tostringtag/1.0.0:
1747 | resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz}
1748 | name: has-tostringtag
1749 | version: 1.0.0
1750 | engines: {node: '>= 0.4'}
1751 | dependencies:
1752 | has-symbols: registry.npmmirror.com/has-symbols/1.0.3
1753 | dev: true
1754 |
1755 | registry.npmmirror.com/has/1.0.3:
1756 | resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/has/-/has-1.0.3.tgz}
1757 | name: has
1758 | version: 1.0.3
1759 | engines: {node: '>= 0.4.0'}
1760 | dependencies:
1761 | function-bind: registry.npmmirror.com/function-bind/1.1.1
1762 | dev: true
1763 |
1764 | registry.npmmirror.com/he/1.2.0:
1765 | 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}
1766 | name: he
1767 | version: 1.2.0
1768 | hasBin: true
1769 | dev: true
1770 |
1771 | registry.npmmirror.com/hosted-git-info/2.8.9:
1772 | resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz}
1773 | name: hosted-git-info
1774 | version: 2.8.9
1775 | dev: true
1776 |
1777 | registry.npmmirror.com/ignore/5.2.4:
1778 | resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ignore/-/ignore-5.2.4.tgz}
1779 | name: ignore
1780 | version: 5.2.4
1781 | engines: {node: '>= 4'}
1782 | dev: true
1783 |
1784 | registry.npmmirror.com/import-fresh/3.3.0:
1785 | 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}
1786 | name: import-fresh
1787 | version: 3.3.0
1788 | engines: {node: '>=6'}
1789 | dependencies:
1790 | parent-module: registry.npmmirror.com/parent-module/1.0.1
1791 | resolve-from: registry.npmmirror.com/resolve-from/4.0.0
1792 | dev: true
1793 |
1794 | registry.npmmirror.com/imurmurhash/0.1.4:
1795 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/imurmurhash/-/imurmurhash-0.1.4.tgz}
1796 | name: imurmurhash
1797 | version: 0.1.4
1798 | engines: {node: '>=0.8.19'}
1799 | dev: true
1800 |
1801 | registry.npmmirror.com/inflight/1.0.6:
1802 | 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}
1803 | name: inflight
1804 | version: 1.0.6
1805 | dependencies:
1806 | once: registry.npmmirror.com/once/1.4.0
1807 | wrappy: registry.npmmirror.com/wrappy/1.0.2
1808 | dev: true
1809 |
1810 | registry.npmmirror.com/inherits/2.0.4:
1811 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/inherits/-/inherits-2.0.4.tgz}
1812 | name: inherits
1813 | version: 2.0.4
1814 | dev: true
1815 |
1816 | registry.npmmirror.com/internal-slot/1.0.5:
1817 | resolution: {integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/internal-slot/-/internal-slot-1.0.5.tgz}
1818 | name: internal-slot
1819 | version: 1.0.5
1820 | engines: {node: '>= 0.4'}
1821 | dependencies:
1822 | get-intrinsic: registry.npmmirror.com/get-intrinsic/1.2.0
1823 | has: registry.npmmirror.com/has/1.0.3
1824 | side-channel: registry.npmmirror.com/side-channel/1.0.4
1825 | dev: true
1826 |
1827 | registry.npmmirror.com/is-array-buffer/3.0.2:
1828 | resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-array-buffer/-/is-array-buffer-3.0.2.tgz}
1829 | name: is-array-buffer
1830 | version: 3.0.2
1831 | dependencies:
1832 | call-bind: registry.npmmirror.com/call-bind/1.0.2
1833 | get-intrinsic: registry.npmmirror.com/get-intrinsic/1.2.0
1834 | is-typed-array: registry.npmmirror.com/is-typed-array/1.1.10
1835 | dev: true
1836 |
1837 | registry.npmmirror.com/is-arrayish/0.2.1:
1838 | resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-arrayish/-/is-arrayish-0.2.1.tgz}
1839 | name: is-arrayish
1840 | version: 0.2.1
1841 | dev: true
1842 |
1843 | registry.npmmirror.com/is-bigint/1.0.4:
1844 | resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-bigint/-/is-bigint-1.0.4.tgz}
1845 | name: is-bigint
1846 | version: 1.0.4
1847 | dependencies:
1848 | has-bigints: registry.npmmirror.com/has-bigints/1.0.2
1849 | dev: true
1850 |
1851 | registry.npmmirror.com/is-boolean-object/1.1.2:
1852 | resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz}
1853 | name: is-boolean-object
1854 | version: 1.1.2
1855 | engines: {node: '>= 0.4'}
1856 | dependencies:
1857 | call-bind: registry.npmmirror.com/call-bind/1.0.2
1858 | has-tostringtag: registry.npmmirror.com/has-tostringtag/1.0.0
1859 | dev: true
1860 |
1861 | registry.npmmirror.com/is-callable/1.2.7:
1862 | resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-callable/-/is-callable-1.2.7.tgz}
1863 | name: is-callable
1864 | version: 1.2.7
1865 | engines: {node: '>= 0.4'}
1866 | dev: true
1867 |
1868 | registry.npmmirror.com/is-core-module/2.11.0:
1869 | resolution: {integrity: sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-core-module/-/is-core-module-2.11.0.tgz}
1870 | name: is-core-module
1871 | version: 2.11.0
1872 | dependencies:
1873 | has: registry.npmmirror.com/has/1.0.3
1874 | dev: true
1875 |
1876 | registry.npmmirror.com/is-date-object/1.0.5:
1877 | resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-date-object/-/is-date-object-1.0.5.tgz}
1878 | name: is-date-object
1879 | version: 1.0.5
1880 | engines: {node: '>= 0.4'}
1881 | dependencies:
1882 | has-tostringtag: registry.npmmirror.com/has-tostringtag/1.0.0
1883 | dev: true
1884 |
1885 | registry.npmmirror.com/is-extglob/2.1.1:
1886 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-extglob/-/is-extglob-2.1.1.tgz}
1887 | name: is-extglob
1888 | version: 2.1.1
1889 | engines: {node: '>=0.10.0'}
1890 | dev: true
1891 |
1892 | registry.npmmirror.com/is-glob/4.0.3:
1893 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-glob/-/is-glob-4.0.3.tgz}
1894 | name: is-glob
1895 | version: 4.0.3
1896 | engines: {node: '>=0.10.0'}
1897 | dependencies:
1898 | is-extglob: registry.npmmirror.com/is-extglob/2.1.1
1899 | dev: true
1900 |
1901 | registry.npmmirror.com/is-negative-zero/2.0.2:
1902 | resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz}
1903 | name: is-negative-zero
1904 | version: 2.0.2
1905 | engines: {node: '>= 0.4'}
1906 | dev: true
1907 |
1908 | registry.npmmirror.com/is-number-object/1.0.7:
1909 | resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-number-object/-/is-number-object-1.0.7.tgz}
1910 | name: is-number-object
1911 | version: 1.0.7
1912 | engines: {node: '>= 0.4'}
1913 | dependencies:
1914 | has-tostringtag: registry.npmmirror.com/has-tostringtag/1.0.0
1915 | dev: true
1916 |
1917 | registry.npmmirror.com/is-number/7.0.0:
1918 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-number/-/is-number-7.0.0.tgz}
1919 | name: is-number
1920 | version: 7.0.0
1921 | engines: {node: '>=0.12.0'}
1922 | dev: true
1923 |
1924 | registry.npmmirror.com/is-path-inside/3.0.3:
1925 | resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-path-inside/-/is-path-inside-3.0.3.tgz}
1926 | name: is-path-inside
1927 | version: 3.0.3
1928 | engines: {node: '>=8'}
1929 | dev: true
1930 |
1931 | registry.npmmirror.com/is-regex/1.1.4:
1932 | resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-regex/-/is-regex-1.1.4.tgz}
1933 | name: is-regex
1934 | version: 1.1.4
1935 | engines: {node: '>= 0.4'}
1936 | dependencies:
1937 | call-bind: registry.npmmirror.com/call-bind/1.0.2
1938 | has-tostringtag: registry.npmmirror.com/has-tostringtag/1.0.0
1939 | dev: true
1940 |
1941 | registry.npmmirror.com/is-shared-array-buffer/1.0.2:
1942 | resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz}
1943 | name: is-shared-array-buffer
1944 | version: 1.0.2
1945 | dependencies:
1946 | call-bind: registry.npmmirror.com/call-bind/1.0.2
1947 | dev: true
1948 |
1949 | registry.npmmirror.com/is-string/1.0.7:
1950 | resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-string/-/is-string-1.0.7.tgz}
1951 | name: is-string
1952 | version: 1.0.7
1953 | engines: {node: '>= 0.4'}
1954 | dependencies:
1955 | has-tostringtag: registry.npmmirror.com/has-tostringtag/1.0.0
1956 | dev: true
1957 |
1958 | registry.npmmirror.com/is-symbol/1.0.4:
1959 | resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-symbol/-/is-symbol-1.0.4.tgz}
1960 | name: is-symbol
1961 | version: 1.0.4
1962 | engines: {node: '>= 0.4'}
1963 | dependencies:
1964 | has-symbols: registry.npmmirror.com/has-symbols/1.0.3
1965 | dev: true
1966 |
1967 | registry.npmmirror.com/is-typed-array/1.1.10:
1968 | resolution: {integrity: sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-typed-array/-/is-typed-array-1.1.10.tgz}
1969 | name: is-typed-array
1970 | version: 1.1.10
1971 | engines: {node: '>= 0.4'}
1972 | dependencies:
1973 | available-typed-arrays: registry.npmmirror.com/available-typed-arrays/1.0.5
1974 | call-bind: registry.npmmirror.com/call-bind/1.0.2
1975 | for-each: registry.npmmirror.com/for-each/0.3.3
1976 | gopd: registry.npmmirror.com/gopd/1.0.1
1977 | has-tostringtag: registry.npmmirror.com/has-tostringtag/1.0.0
1978 | dev: true
1979 |
1980 | registry.npmmirror.com/is-weakref/1.0.2:
1981 | resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-weakref/-/is-weakref-1.0.2.tgz}
1982 | name: is-weakref
1983 | version: 1.0.2
1984 | dependencies:
1985 | call-bind: registry.npmmirror.com/call-bind/1.0.2
1986 | dev: true
1987 |
1988 | registry.npmmirror.com/isexe/2.0.0:
1989 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/isexe/-/isexe-2.0.0.tgz}
1990 | name: isexe
1991 | version: 2.0.0
1992 | dev: true
1993 |
1994 | registry.npmmirror.com/js-sdsl/4.4.0:
1995 | resolution: {integrity: sha512-FfVSdx6pJ41Oa+CF7RDaFmTnCaFhua+SNYQX74riGOpl96x+2jQCqEfQ2bnXu/5DPCqlRuiqyvTJM0Qjz26IVg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/js-sdsl/-/js-sdsl-4.4.0.tgz}
1996 | name: js-sdsl
1997 | version: 4.4.0
1998 | dev: true
1999 |
2000 | registry.npmmirror.com/js-yaml/4.1.0:
2001 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/js-yaml/-/js-yaml-4.1.0.tgz}
2002 | name: js-yaml
2003 | version: 4.1.0
2004 | hasBin: true
2005 | dependencies:
2006 | argparse: registry.npmmirror.com/argparse/2.0.1
2007 | dev: true
2008 |
2009 | registry.npmmirror.com/json-parse-better-errors/1.0.2:
2010 | resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz}
2011 | name: json-parse-better-errors
2012 | version: 1.0.2
2013 | dev: true
2014 |
2015 | registry.npmmirror.com/json-schema-traverse/0.4.1:
2016 | 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}
2017 | name: json-schema-traverse
2018 | version: 0.4.1
2019 | dev: true
2020 |
2021 | registry.npmmirror.com/json-stable-stringify-without-jsonify/1.0.1:
2022 | 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}
2023 | name: json-stable-stringify-without-jsonify
2024 | version: 1.0.1
2025 | dev: true
2026 |
2027 | registry.npmmirror.com/levn/0.4.1:
2028 | 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}
2029 | name: levn
2030 | version: 0.4.1
2031 | engines: {node: '>= 0.8.0'}
2032 | dependencies:
2033 | prelude-ls: registry.npmmirror.com/prelude-ls/1.2.1
2034 | type-check: registry.npmmirror.com/type-check/0.4.0
2035 | dev: true
2036 |
2037 | registry.npmmirror.com/load-json-file/4.0.0:
2038 | resolution: {integrity: sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/load-json-file/-/load-json-file-4.0.0.tgz}
2039 | name: load-json-file
2040 | version: 4.0.0
2041 | engines: {node: '>=4'}
2042 | dependencies:
2043 | graceful-fs: registry.npmmirror.com/graceful-fs/4.2.11
2044 | parse-json: registry.npmmirror.com/parse-json/4.0.0
2045 | pify: registry.npmmirror.com/pify/3.0.0
2046 | strip-bom: registry.npmmirror.com/strip-bom/3.0.0
2047 | dev: true
2048 |
2049 | registry.npmmirror.com/locate-path/6.0.0:
2050 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/locate-path/-/locate-path-6.0.0.tgz}
2051 | name: locate-path
2052 | version: 6.0.0
2053 | engines: {node: '>=10'}
2054 | dependencies:
2055 | p-locate: registry.npmmirror.com/p-locate/5.0.0
2056 | dev: true
2057 |
2058 | registry.npmmirror.com/lodash.merge/4.6.2:
2059 | 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}
2060 | name: lodash.merge
2061 | version: 4.6.2
2062 | dev: true
2063 |
2064 | registry.npmmirror.com/lodash/4.17.21:
2065 | resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/lodash/-/lodash-4.17.21.tgz}
2066 | name: lodash
2067 | version: 4.17.21
2068 | dev: true
2069 |
2070 | registry.npmmirror.com/lru-cache/6.0.0:
2071 | 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}
2072 | name: lru-cache
2073 | version: 6.0.0
2074 | engines: {node: '>=10'}
2075 | dependencies:
2076 | yallist: registry.npmmirror.com/yallist/4.0.0
2077 | dev: true
2078 |
2079 | registry.npmmirror.com/magic-string/0.25.9:
2080 | 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}
2081 | name: magic-string
2082 | version: 0.25.9
2083 | dependencies:
2084 | sourcemap-codec: registry.npmmirror.com/sourcemap-codec/1.4.8
2085 |
2086 | registry.npmmirror.com/memorystream/0.3.1:
2087 | resolution: {integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/memorystream/-/memorystream-0.3.1.tgz}
2088 | name: memorystream
2089 | version: 0.3.1
2090 | engines: {node: '>= 0.10.0'}
2091 | dev: true
2092 |
2093 | registry.npmmirror.com/merge2/1.4.1:
2094 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/merge2/-/merge2-1.4.1.tgz}
2095 | name: merge2
2096 | version: 1.4.1
2097 | engines: {node: '>= 8'}
2098 | dev: true
2099 |
2100 | registry.npmmirror.com/micromatch/4.0.5:
2101 | resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/micromatch/-/micromatch-4.0.5.tgz}
2102 | name: micromatch
2103 | version: 4.0.5
2104 | engines: {node: '>=8.6'}
2105 | dependencies:
2106 | braces: registry.npmmirror.com/braces/3.0.2
2107 | picomatch: registry.npmmirror.com/picomatch/2.3.1
2108 | dev: true
2109 |
2110 | registry.npmmirror.com/mime-db/1.52.0:
2111 | resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/mime-db/-/mime-db-1.52.0.tgz}
2112 | name: mime-db
2113 | version: 1.52.0
2114 | engines: {node: '>= 0.6'}
2115 | dev: false
2116 |
2117 | registry.npmmirror.com/mime-types/2.1.35:
2118 | 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}
2119 | name: mime-types
2120 | version: 2.1.35
2121 | engines: {node: '>= 0.6'}
2122 | dependencies:
2123 | mime-db: registry.npmmirror.com/mime-db/1.52.0
2124 | dev: false
2125 |
2126 | registry.npmmirror.com/minimatch/3.1.2:
2127 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/minimatch/-/minimatch-3.1.2.tgz}
2128 | name: minimatch
2129 | version: 3.1.2
2130 | dependencies:
2131 | brace-expansion: registry.npmmirror.com/brace-expansion/1.1.11
2132 | dev: true
2133 |
2134 | registry.npmmirror.com/minimatch/6.2.0:
2135 | resolution: {integrity: sha512-sauLxniAmvnhhRjFwPNnJKaPFYyddAgbYdeUpHULtCT/GhzdCx/MDNy+Y40lBxTQUrMzDE8e0S43Z5uqfO0REg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/minimatch/-/minimatch-6.2.0.tgz}
2136 | name: minimatch
2137 | version: 6.2.0
2138 | engines: {node: '>=10'}
2139 | dependencies:
2140 | brace-expansion: registry.npmmirror.com/brace-expansion/2.0.1
2141 | dev: true
2142 |
2143 | registry.npmmirror.com/ms/2.1.2:
2144 | 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}
2145 | name: ms
2146 | version: 2.1.2
2147 | dev: true
2148 |
2149 | registry.npmmirror.com/muggle-string/0.2.2:
2150 | resolution: {integrity: sha512-YVE1mIJ4VpUMqZObFndk9CJu6DBJR/GB13p3tXuNbwD4XExaI5EOuRl6BHeIDxIqXZVxSfAC+y6U1Z/IxCfKUg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/muggle-string/-/muggle-string-0.2.2.tgz}
2151 | name: muggle-string
2152 | version: 0.2.2
2153 | dev: true
2154 |
2155 | registry.npmmirror.com/nanoid/3.3.4:
2156 | resolution: {integrity: sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/nanoid/-/nanoid-3.3.4.tgz}
2157 | name: nanoid
2158 | version: 3.3.4
2159 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
2160 | hasBin: true
2161 |
2162 | registry.npmmirror.com/natural-compare-lite/1.4.0:
2163 | resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz}
2164 | name: natural-compare-lite
2165 | version: 1.4.0
2166 | dev: true
2167 |
2168 | registry.npmmirror.com/natural-compare/1.4.0:
2169 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/natural-compare/-/natural-compare-1.4.0.tgz}
2170 | name: natural-compare
2171 | version: 1.4.0
2172 | dev: true
2173 |
2174 | registry.npmmirror.com/nice-try/1.0.5:
2175 | resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/nice-try/-/nice-try-1.0.5.tgz}
2176 | name: nice-try
2177 | version: 1.0.5
2178 | dev: true
2179 |
2180 | registry.npmmirror.com/normalize-package-data/2.5.0:
2181 | resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz}
2182 | name: normalize-package-data
2183 | version: 2.5.0
2184 | dependencies:
2185 | hosted-git-info: registry.npmmirror.com/hosted-git-info/2.8.9
2186 | resolve: registry.npmmirror.com/resolve/1.22.1
2187 | semver: registry.npmmirror.com/semver/5.7.1
2188 | validate-npm-package-license: registry.npmmirror.com/validate-npm-package-license/3.0.4
2189 | dev: true
2190 |
2191 | registry.npmmirror.com/npm-run-all/4.1.5:
2192 | resolution: {integrity: sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/npm-run-all/-/npm-run-all-4.1.5.tgz}
2193 | name: npm-run-all
2194 | version: 4.1.5
2195 | engines: {node: '>= 4'}
2196 | hasBin: true
2197 | dependencies:
2198 | ansi-styles: registry.npmmirror.com/ansi-styles/3.2.1
2199 | chalk: registry.npmmirror.com/chalk/2.4.2
2200 | cross-spawn: registry.npmmirror.com/cross-spawn/6.0.5
2201 | memorystream: registry.npmmirror.com/memorystream/0.3.1
2202 | minimatch: registry.npmmirror.com/minimatch/3.1.2
2203 | pidtree: registry.npmmirror.com/pidtree/0.3.1
2204 | read-pkg: registry.npmmirror.com/read-pkg/3.0.0
2205 | shell-quote: registry.npmmirror.com/shell-quote/1.8.0
2206 | string.prototype.padend: registry.npmmirror.com/string.prototype.padend/3.1.4
2207 | dev: true
2208 |
2209 | registry.npmmirror.com/nth-check/2.1.1:
2210 | 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}
2211 | name: nth-check
2212 | version: 2.1.1
2213 | dependencies:
2214 | boolbase: registry.npmmirror.com/boolbase/1.0.0
2215 | dev: true
2216 |
2217 | registry.npmmirror.com/object-inspect/1.12.3:
2218 | 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}
2219 | name: object-inspect
2220 | version: 1.12.3
2221 | dev: true
2222 |
2223 | registry.npmmirror.com/object-keys/1.1.1:
2224 | resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/object-keys/-/object-keys-1.1.1.tgz}
2225 | name: object-keys
2226 | version: 1.1.1
2227 | engines: {node: '>= 0.4'}
2228 | dev: true
2229 |
2230 | registry.npmmirror.com/object.assign/4.1.4:
2231 | resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/object.assign/-/object.assign-4.1.4.tgz}
2232 | name: object.assign
2233 | version: 4.1.4
2234 | engines: {node: '>= 0.4'}
2235 | dependencies:
2236 | call-bind: registry.npmmirror.com/call-bind/1.0.2
2237 | define-properties: registry.npmmirror.com/define-properties/1.2.0
2238 | has-symbols: registry.npmmirror.com/has-symbols/1.0.3
2239 | object-keys: registry.npmmirror.com/object-keys/1.1.1
2240 | dev: true
2241 |
2242 | registry.npmmirror.com/once/1.4.0:
2243 | 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}
2244 | name: once
2245 | version: 1.4.0
2246 | dependencies:
2247 | wrappy: registry.npmmirror.com/wrappy/1.0.2
2248 | dev: true
2249 |
2250 | registry.npmmirror.com/optionator/0.9.1:
2251 | resolution: {integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/optionator/-/optionator-0.9.1.tgz}
2252 | name: optionator
2253 | version: 0.9.1
2254 | engines: {node: '>= 0.8.0'}
2255 | dependencies:
2256 | deep-is: registry.npmmirror.com/deep-is/0.1.4
2257 | fast-levenshtein: registry.npmmirror.com/fast-levenshtein/2.0.6
2258 | levn: registry.npmmirror.com/levn/0.4.1
2259 | prelude-ls: registry.npmmirror.com/prelude-ls/1.2.1
2260 | type-check: registry.npmmirror.com/type-check/0.4.0
2261 | word-wrap: registry.npmmirror.com/word-wrap/1.2.3
2262 | dev: true
2263 |
2264 | registry.npmmirror.com/p-limit/3.1.0:
2265 | 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}
2266 | name: p-limit
2267 | version: 3.1.0
2268 | engines: {node: '>=10'}
2269 | dependencies:
2270 | yocto-queue: registry.npmmirror.com/yocto-queue/0.1.0
2271 | dev: true
2272 |
2273 | registry.npmmirror.com/p-locate/5.0.0:
2274 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/p-locate/-/p-locate-5.0.0.tgz}
2275 | name: p-locate
2276 | version: 5.0.0
2277 | engines: {node: '>=10'}
2278 | dependencies:
2279 | p-limit: registry.npmmirror.com/p-limit/3.1.0
2280 | dev: true
2281 |
2282 | registry.npmmirror.com/parent-module/1.0.1:
2283 | 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}
2284 | name: parent-module
2285 | version: 1.0.1
2286 | engines: {node: '>=6'}
2287 | dependencies:
2288 | callsites: registry.npmmirror.com/callsites/3.1.0
2289 | dev: true
2290 |
2291 | registry.npmmirror.com/parse-json/4.0.0:
2292 | resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/parse-json/-/parse-json-4.0.0.tgz}
2293 | name: parse-json
2294 | version: 4.0.0
2295 | engines: {node: '>=4'}
2296 | dependencies:
2297 | error-ex: registry.npmmirror.com/error-ex/1.3.2
2298 | json-parse-better-errors: registry.npmmirror.com/json-parse-better-errors/1.0.2
2299 | dev: true
2300 |
2301 | registry.npmmirror.com/path-exists/4.0.0:
2302 | 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}
2303 | name: path-exists
2304 | version: 4.0.0
2305 | engines: {node: '>=8'}
2306 | dev: true
2307 |
2308 | registry.npmmirror.com/path-is-absolute/1.0.1:
2309 | 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}
2310 | name: path-is-absolute
2311 | version: 1.0.1
2312 | engines: {node: '>=0.10.0'}
2313 | dev: true
2314 |
2315 | registry.npmmirror.com/path-key/2.0.1:
2316 | resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/path-key/-/path-key-2.0.1.tgz}
2317 | name: path-key
2318 | version: 2.0.1
2319 | engines: {node: '>=4'}
2320 | dev: true
2321 |
2322 | registry.npmmirror.com/path-key/3.1.1:
2323 | 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}
2324 | name: path-key
2325 | version: 3.1.1
2326 | engines: {node: '>=8'}
2327 | dev: true
2328 |
2329 | registry.npmmirror.com/path-parse/1.0.7:
2330 | 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}
2331 | name: path-parse
2332 | version: 1.0.7
2333 | dev: true
2334 |
2335 | registry.npmmirror.com/path-type/3.0.0:
2336 | resolution: {integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/path-type/-/path-type-3.0.0.tgz}
2337 | name: path-type
2338 | version: 3.0.0
2339 | engines: {node: '>=4'}
2340 | dependencies:
2341 | pify: registry.npmmirror.com/pify/3.0.0
2342 | dev: true
2343 |
2344 | registry.npmmirror.com/path-type/4.0.0:
2345 | 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}
2346 | name: path-type
2347 | version: 4.0.0
2348 | engines: {node: '>=8'}
2349 | dev: true
2350 |
2351 | registry.npmmirror.com/picocolors/1.0.0:
2352 | resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/picocolors/-/picocolors-1.0.0.tgz}
2353 | name: picocolors
2354 | version: 1.0.0
2355 |
2356 | registry.npmmirror.com/picomatch/2.3.1:
2357 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/picomatch/-/picomatch-2.3.1.tgz}
2358 | name: picomatch
2359 | version: 2.3.1
2360 | engines: {node: '>=8.6'}
2361 | dev: true
2362 |
2363 | registry.npmmirror.com/pidtree/0.3.1:
2364 | resolution: {integrity: sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/pidtree/-/pidtree-0.3.1.tgz}
2365 | name: pidtree
2366 | version: 0.3.1
2367 | engines: {node: '>=0.10'}
2368 | hasBin: true
2369 | dev: true
2370 |
2371 | registry.npmmirror.com/pify/3.0.0:
2372 | resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/pify/-/pify-3.0.0.tgz}
2373 | name: pify
2374 | version: 3.0.0
2375 | engines: {node: '>=4'}
2376 | dev: true
2377 |
2378 | registry.npmmirror.com/postcss-selector-parser/6.0.11:
2379 | resolution: {integrity: sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/postcss-selector-parser/-/postcss-selector-parser-6.0.11.tgz}
2380 | name: postcss-selector-parser
2381 | version: 6.0.11
2382 | engines: {node: '>=4'}
2383 | dependencies:
2384 | cssesc: registry.npmmirror.com/cssesc/3.0.0
2385 | util-deprecate: registry.npmmirror.com/util-deprecate/1.0.2
2386 | dev: true
2387 |
2388 | registry.npmmirror.com/postcss/8.4.21:
2389 | resolution: {integrity: sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/postcss/-/postcss-8.4.21.tgz}
2390 | name: postcss
2391 | version: 8.4.21
2392 | engines: {node: ^10 || ^12 || >=14}
2393 | dependencies:
2394 | nanoid: registry.npmmirror.com/nanoid/3.3.4
2395 | picocolors: registry.npmmirror.com/picocolors/1.0.0
2396 | source-map-js: registry.npmmirror.com/source-map-js/1.0.2
2397 |
2398 | registry.npmmirror.com/prelude-ls/1.2.1:
2399 | 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}
2400 | name: prelude-ls
2401 | version: 1.2.1
2402 | engines: {node: '>= 0.8.0'}
2403 | dev: true
2404 |
2405 | registry.npmmirror.com/prettier-linter-helpers/1.0.0:
2406 | 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}
2407 | name: prettier-linter-helpers
2408 | version: 1.0.0
2409 | engines: {node: '>=6.0.0'}
2410 | dependencies:
2411 | fast-diff: registry.npmmirror.com/fast-diff/1.2.0
2412 | dev: true
2413 |
2414 | registry.npmmirror.com/prettier/2.8.6:
2415 | resolution: {integrity: sha512-mtuzdiBbHwPEgl7NxWlqOkithPyp4VN93V7VeHVWBF+ad3I5avc0RVDT4oImXQy9H/AqxA2NSQH8pSxHW6FYbQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/prettier/-/prettier-2.8.6.tgz}
2416 | name: prettier
2417 | version: 2.8.6
2418 | engines: {node: '>=10.13.0'}
2419 | hasBin: true
2420 | dev: true
2421 |
2422 | registry.npmmirror.com/proxy-from-env/1.1.0:
2423 | 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}
2424 | name: proxy-from-env
2425 | version: 1.1.0
2426 | dev: false
2427 |
2428 | registry.npmmirror.com/punycode/2.3.0:
2429 | resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/punycode/-/punycode-2.3.0.tgz}
2430 | name: punycode
2431 | version: 2.3.0
2432 | engines: {node: '>=6'}
2433 | dev: true
2434 |
2435 | registry.npmmirror.com/queue-microtask/1.2.3:
2436 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/queue-microtask/-/queue-microtask-1.2.3.tgz}
2437 | name: queue-microtask
2438 | version: 1.2.3
2439 | dev: true
2440 |
2441 | registry.npmmirror.com/read-pkg/3.0.0:
2442 | resolution: {integrity: sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/read-pkg/-/read-pkg-3.0.0.tgz}
2443 | name: read-pkg
2444 | version: 3.0.0
2445 | engines: {node: '>=4'}
2446 | dependencies:
2447 | load-json-file: registry.npmmirror.com/load-json-file/4.0.0
2448 | normalize-package-data: registry.npmmirror.com/normalize-package-data/2.5.0
2449 | path-type: registry.npmmirror.com/path-type/3.0.0
2450 | dev: true
2451 |
2452 | registry.npmmirror.com/regexp.prototype.flags/1.4.3:
2453 | resolution: {integrity: sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz}
2454 | name: regexp.prototype.flags
2455 | version: 1.4.3
2456 | engines: {node: '>= 0.4'}
2457 | dependencies:
2458 | call-bind: registry.npmmirror.com/call-bind/1.0.2
2459 | define-properties: registry.npmmirror.com/define-properties/1.2.0
2460 | functions-have-names: registry.npmmirror.com/functions-have-names/1.2.3
2461 | dev: true
2462 |
2463 | registry.npmmirror.com/resolve-from/4.0.0:
2464 | 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}
2465 | name: resolve-from
2466 | version: 4.0.0
2467 | engines: {node: '>=4'}
2468 | dev: true
2469 |
2470 | registry.npmmirror.com/resolve/1.22.1:
2471 | resolution: {integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/resolve/-/resolve-1.22.1.tgz}
2472 | name: resolve
2473 | version: 1.22.1
2474 | hasBin: true
2475 | dependencies:
2476 | is-core-module: registry.npmmirror.com/is-core-module/2.11.0
2477 | path-parse: registry.npmmirror.com/path-parse/1.0.7
2478 | supports-preserve-symlinks-flag: registry.npmmirror.com/supports-preserve-symlinks-flag/1.0.0
2479 | dev: true
2480 |
2481 | registry.npmmirror.com/reusify/1.0.4:
2482 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/reusify/-/reusify-1.0.4.tgz}
2483 | name: reusify
2484 | version: 1.0.4
2485 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
2486 | dev: true
2487 |
2488 | registry.npmmirror.com/rimraf/3.0.2:
2489 | resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rimraf/-/rimraf-3.0.2.tgz}
2490 | name: rimraf
2491 | version: 3.0.2
2492 | hasBin: true
2493 | dependencies:
2494 | glob: registry.npmmirror.com/glob/7.2.3
2495 | dev: true
2496 |
2497 | registry.npmmirror.com/rollup/3.20.0:
2498 | resolution: {integrity: sha512-YsIfrk80NqUDrxrjWPXUa7PWvAfegZEXHuPsEZg58fGCdjL1I9C1i/NaG+L+27kxxwkrG/QEDEQc8s/ynXWWGQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rollup/-/rollup-3.20.0.tgz}
2499 | name: rollup
2500 | version: 3.20.0
2501 | engines: {node: '>=14.18.0', npm: '>=8.0.0'}
2502 | hasBin: true
2503 | optionalDependencies:
2504 | fsevents: registry.npmmirror.com/fsevents/2.3.2
2505 | dev: true
2506 |
2507 | registry.npmmirror.com/run-parallel/1.2.0:
2508 | 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}
2509 | name: run-parallel
2510 | version: 1.2.0
2511 | dependencies:
2512 | queue-microtask: registry.npmmirror.com/queue-microtask/1.2.3
2513 | dev: true
2514 |
2515 | registry.npmmirror.com/safe-regex-test/1.0.0:
2516 | resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/safe-regex-test/-/safe-regex-test-1.0.0.tgz}
2517 | name: safe-regex-test
2518 | version: 1.0.0
2519 | dependencies:
2520 | call-bind: registry.npmmirror.com/call-bind/1.0.2
2521 | get-intrinsic: registry.npmmirror.com/get-intrinsic/1.2.0
2522 | is-regex: registry.npmmirror.com/is-regex/1.1.4
2523 | dev: true
2524 |
2525 | registry.npmmirror.com/semver/5.7.1:
2526 | resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/semver/-/semver-5.7.1.tgz}
2527 | name: semver
2528 | version: 5.7.1
2529 | hasBin: true
2530 | dev: true
2531 |
2532 | registry.npmmirror.com/semver/7.3.8:
2533 | resolution: {integrity: sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/semver/-/semver-7.3.8.tgz}
2534 | name: semver
2535 | version: 7.3.8
2536 | engines: {node: '>=10'}
2537 | hasBin: true
2538 | dependencies:
2539 | lru-cache: registry.npmmirror.com/lru-cache/6.0.0
2540 | dev: true
2541 |
2542 | registry.npmmirror.com/shebang-command/1.2.0:
2543 | resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/shebang-command/-/shebang-command-1.2.0.tgz}
2544 | name: shebang-command
2545 | version: 1.2.0
2546 | engines: {node: '>=0.10.0'}
2547 | dependencies:
2548 | shebang-regex: registry.npmmirror.com/shebang-regex/1.0.0
2549 | dev: true
2550 |
2551 | registry.npmmirror.com/shebang-command/2.0.0:
2552 | 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}
2553 | name: shebang-command
2554 | version: 2.0.0
2555 | engines: {node: '>=8'}
2556 | dependencies:
2557 | shebang-regex: registry.npmmirror.com/shebang-regex/3.0.0
2558 | dev: true
2559 |
2560 | registry.npmmirror.com/shebang-regex/1.0.0:
2561 | resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/shebang-regex/-/shebang-regex-1.0.0.tgz}
2562 | name: shebang-regex
2563 | version: 1.0.0
2564 | engines: {node: '>=0.10.0'}
2565 | dev: true
2566 |
2567 | registry.npmmirror.com/shebang-regex/3.0.0:
2568 | 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}
2569 | name: shebang-regex
2570 | version: 3.0.0
2571 | engines: {node: '>=8'}
2572 | dev: true
2573 |
2574 | registry.npmmirror.com/shell-quote/1.8.0:
2575 | resolution: {integrity: sha512-QHsz8GgQIGKlRi24yFc6a6lN69Idnx634w49ay6+jA5yFh7a1UY+4Rp6HPx/L/1zcEDPEij8cIsiqR6bQsE5VQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/shell-quote/-/shell-quote-1.8.0.tgz}
2576 | name: shell-quote
2577 | version: 1.8.0
2578 | dev: true
2579 |
2580 | registry.npmmirror.com/side-channel/1.0.4:
2581 | resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/side-channel/-/side-channel-1.0.4.tgz}
2582 | name: side-channel
2583 | version: 1.0.4
2584 | dependencies:
2585 | call-bind: registry.npmmirror.com/call-bind/1.0.2
2586 | get-intrinsic: registry.npmmirror.com/get-intrinsic/1.2.0
2587 | object-inspect: registry.npmmirror.com/object-inspect/1.12.3
2588 | dev: true
2589 |
2590 | registry.npmmirror.com/slash/3.0.0:
2591 | resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/slash/-/slash-3.0.0.tgz}
2592 | name: slash
2593 | version: 3.0.0
2594 | engines: {node: '>=8'}
2595 | dev: true
2596 |
2597 | registry.npmmirror.com/source-map-js/1.0.2:
2598 | 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}
2599 | name: source-map-js
2600 | version: 1.0.2
2601 | engines: {node: '>=0.10.0'}
2602 |
2603 | registry.npmmirror.com/source-map/0.6.1:
2604 | resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/source-map/-/source-map-0.6.1.tgz}
2605 | name: source-map
2606 | version: 0.6.1
2607 | engines: {node: '>=0.10.0'}
2608 |
2609 | registry.npmmirror.com/sourcemap-codec/1.4.8:
2610 | resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz}
2611 | name: sourcemap-codec
2612 | version: 1.4.8
2613 | deprecated: Please use @jridgewell/sourcemap-codec instead
2614 |
2615 | registry.npmmirror.com/spdx-correct/3.2.0:
2616 | resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/spdx-correct/-/spdx-correct-3.2.0.tgz}
2617 | name: spdx-correct
2618 | version: 3.2.0
2619 | dependencies:
2620 | spdx-expression-parse: registry.npmmirror.com/spdx-expression-parse/3.0.1
2621 | spdx-license-ids: registry.npmmirror.com/spdx-license-ids/3.0.13
2622 | dev: true
2623 |
2624 | registry.npmmirror.com/spdx-exceptions/2.3.0:
2625 | resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz}
2626 | name: spdx-exceptions
2627 | version: 2.3.0
2628 | dev: true
2629 |
2630 | registry.npmmirror.com/spdx-expression-parse/3.0.1:
2631 | resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz}
2632 | name: spdx-expression-parse
2633 | version: 3.0.1
2634 | dependencies:
2635 | spdx-exceptions: registry.npmmirror.com/spdx-exceptions/2.3.0
2636 | spdx-license-ids: registry.npmmirror.com/spdx-license-ids/3.0.13
2637 | dev: true
2638 |
2639 | registry.npmmirror.com/spdx-license-ids/3.0.13:
2640 | resolution: {integrity: sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/spdx-license-ids/-/spdx-license-ids-3.0.13.tgz}
2641 | name: spdx-license-ids
2642 | version: 3.0.13
2643 | dev: true
2644 |
2645 | registry.npmmirror.com/string.prototype.padend/3.1.4:
2646 | resolution: {integrity: sha512-67otBXoksdjsnXXRUq+KMVTdlVRZ2af422Y0aTyTjVaoQkGr3mxl2Bc5emi7dOQ3OGVVQQskmLEWwFXwommpNw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/string.prototype.padend/-/string.prototype.padend-3.1.4.tgz}
2647 | name: string.prototype.padend
2648 | version: 3.1.4
2649 | engines: {node: '>= 0.4'}
2650 | dependencies:
2651 | call-bind: registry.npmmirror.com/call-bind/1.0.2
2652 | define-properties: registry.npmmirror.com/define-properties/1.2.0
2653 | es-abstract: registry.npmmirror.com/es-abstract/1.21.2
2654 | dev: true
2655 |
2656 | registry.npmmirror.com/string.prototype.trim/1.2.7:
2657 | resolution: {integrity: sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz}
2658 | name: string.prototype.trim
2659 | version: 1.2.7
2660 | engines: {node: '>= 0.4'}
2661 | dependencies:
2662 | call-bind: registry.npmmirror.com/call-bind/1.0.2
2663 | define-properties: registry.npmmirror.com/define-properties/1.2.0
2664 | es-abstract: registry.npmmirror.com/es-abstract/1.21.2
2665 | dev: true
2666 |
2667 | registry.npmmirror.com/string.prototype.trimend/1.0.6:
2668 | resolution: {integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz}
2669 | name: string.prototype.trimend
2670 | version: 1.0.6
2671 | dependencies:
2672 | call-bind: registry.npmmirror.com/call-bind/1.0.2
2673 | define-properties: registry.npmmirror.com/define-properties/1.2.0
2674 | es-abstract: registry.npmmirror.com/es-abstract/1.21.2
2675 | dev: true
2676 |
2677 | registry.npmmirror.com/string.prototype.trimstart/1.0.6:
2678 | resolution: {integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz}
2679 | name: string.prototype.trimstart
2680 | version: 1.0.6
2681 | dependencies:
2682 | call-bind: registry.npmmirror.com/call-bind/1.0.2
2683 | define-properties: registry.npmmirror.com/define-properties/1.2.0
2684 | es-abstract: registry.npmmirror.com/es-abstract/1.21.2
2685 | dev: true
2686 |
2687 | registry.npmmirror.com/strip-ansi/6.0.1:
2688 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz}
2689 | name: strip-ansi
2690 | version: 6.0.1
2691 | engines: {node: '>=8'}
2692 | dependencies:
2693 | ansi-regex: registry.npmmirror.com/ansi-regex/5.0.1
2694 | dev: true
2695 |
2696 | registry.npmmirror.com/strip-bom/3.0.0:
2697 | 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}
2698 | name: strip-bom
2699 | version: 3.0.0
2700 | engines: {node: '>=4'}
2701 | dev: true
2702 |
2703 | registry.npmmirror.com/strip-json-comments/3.1.1:
2704 | 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}
2705 | name: strip-json-comments
2706 | version: 3.1.1
2707 | engines: {node: '>=8'}
2708 | dev: true
2709 |
2710 | registry.npmmirror.com/supports-color/5.5.0:
2711 | resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/supports-color/-/supports-color-5.5.0.tgz}
2712 | name: supports-color
2713 | version: 5.5.0
2714 | engines: {node: '>=4'}
2715 | dependencies:
2716 | has-flag: registry.npmmirror.com/has-flag/3.0.0
2717 | dev: true
2718 |
2719 | registry.npmmirror.com/supports-color/7.2.0:
2720 | 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}
2721 | name: supports-color
2722 | version: 7.2.0
2723 | engines: {node: '>=8'}
2724 | dependencies:
2725 | has-flag: registry.npmmirror.com/has-flag/4.0.0
2726 | dev: true
2727 |
2728 | registry.npmmirror.com/supports-preserve-symlinks-flag/1.0.0:
2729 | 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}
2730 | name: supports-preserve-symlinks-flag
2731 | version: 1.0.0
2732 | engines: {node: '>= 0.4'}
2733 | dev: true
2734 |
2735 | registry.npmmirror.com/text-table/0.2.0:
2736 | 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}
2737 | name: text-table
2738 | version: 0.2.0
2739 | dev: true
2740 |
2741 | registry.npmmirror.com/to-fast-properties/2.0.0:
2742 | 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}
2743 | name: to-fast-properties
2744 | version: 2.0.0
2745 | engines: {node: '>=4'}
2746 |
2747 | registry.npmmirror.com/to-regex-range/5.0.1:
2748 | 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}
2749 | name: to-regex-range
2750 | version: 5.0.1
2751 | engines: {node: '>=8.0'}
2752 | dependencies:
2753 | is-number: registry.npmmirror.com/is-number/7.0.0
2754 | dev: true
2755 |
2756 | registry.npmmirror.com/tslib/1.14.1:
2757 | resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/tslib/-/tslib-1.14.1.tgz}
2758 | name: tslib
2759 | version: 1.14.1
2760 | dev: true
2761 |
2762 | registry.npmmirror.com/tsutils/3.21.0_typescript@4.8.4:
2763 | resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/tsutils/-/tsutils-3.21.0.tgz}
2764 | id: registry.npmmirror.com/tsutils/3.21.0
2765 | name: tsutils
2766 | version: 3.21.0
2767 | engines: {node: '>= 6'}
2768 | peerDependencies:
2769 | 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'
2770 | dependencies:
2771 | tslib: registry.npmmirror.com/tslib/1.14.1
2772 | typescript: registry.npmmirror.com/typescript/4.8.4
2773 | dev: true
2774 |
2775 | registry.npmmirror.com/type-check/0.4.0:
2776 | 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}
2777 | name: type-check
2778 | version: 0.4.0
2779 | engines: {node: '>= 0.8.0'}
2780 | dependencies:
2781 | prelude-ls: registry.npmmirror.com/prelude-ls/1.2.1
2782 | dev: true
2783 |
2784 | registry.npmmirror.com/type-fest/0.20.2:
2785 | 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}
2786 | name: type-fest
2787 | version: 0.20.2
2788 | engines: {node: '>=10'}
2789 | dev: true
2790 |
2791 | registry.npmmirror.com/typed-array-length/1.0.4:
2792 | resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/typed-array-length/-/typed-array-length-1.0.4.tgz}
2793 | name: typed-array-length
2794 | version: 1.0.4
2795 | dependencies:
2796 | call-bind: registry.npmmirror.com/call-bind/1.0.2
2797 | for-each: registry.npmmirror.com/for-each/0.3.3
2798 | is-typed-array: registry.npmmirror.com/is-typed-array/1.1.10
2799 | dev: true
2800 |
2801 | registry.npmmirror.com/typescript/4.8.4:
2802 | resolution: {integrity: sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/typescript/-/typescript-4.8.4.tgz}
2803 | name: typescript
2804 | version: 4.8.4
2805 | engines: {node: '>=4.2.0'}
2806 | hasBin: true
2807 | dev: true
2808 |
2809 | registry.npmmirror.com/unbox-primitive/1.0.2:
2810 | resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz}
2811 | name: unbox-primitive
2812 | version: 1.0.2
2813 | dependencies:
2814 | call-bind: registry.npmmirror.com/call-bind/1.0.2
2815 | has-bigints: registry.npmmirror.com/has-bigints/1.0.2
2816 | has-symbols: registry.npmmirror.com/has-symbols/1.0.3
2817 | which-boxed-primitive: registry.npmmirror.com/which-boxed-primitive/1.0.2
2818 | dev: true
2819 |
2820 | registry.npmmirror.com/uri-js/4.4.1:
2821 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/uri-js/-/uri-js-4.4.1.tgz}
2822 | name: uri-js
2823 | version: 4.4.1
2824 | dependencies:
2825 | punycode: registry.npmmirror.com/punycode/2.3.0
2826 | dev: true
2827 |
2828 | registry.npmmirror.com/util-deprecate/1.0.2:
2829 | resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/util-deprecate/-/util-deprecate-1.0.2.tgz}
2830 | name: util-deprecate
2831 | version: 1.0.2
2832 | dev: true
2833 |
2834 | registry.npmmirror.com/validate-npm-package-license/3.0.4:
2835 | resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz}
2836 | name: validate-npm-package-license
2837 | version: 3.0.4
2838 | dependencies:
2839 | spdx-correct: registry.npmmirror.com/spdx-correct/3.2.0
2840 | spdx-expression-parse: registry.npmmirror.com/spdx-expression-parse/3.0.1
2841 | dev: true
2842 |
2843 | registry.npmmirror.com/vite/4.2.1_@types+node@18.15.5:
2844 | resolution: {integrity: sha512-7MKhqdy0ISo4wnvwtqZkjke6XN4taqQ2TBaTccLIpOKv7Vp2h4Y+NpmWCnGDeSvvn45KxvWgGyb0MkHvY1vgbg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vite/-/vite-4.2.1.tgz}
2845 | id: registry.npmmirror.com/vite/4.2.1
2846 | name: vite
2847 | version: 4.2.1
2848 | engines: {node: ^14.18.0 || >=16.0.0}
2849 | hasBin: true
2850 | peerDependencies:
2851 | '@types/node': '>= 14'
2852 | less: '*'
2853 | sass: '*'
2854 | stylus: '*'
2855 | sugarss: '*'
2856 | terser: ^5.4.0
2857 | peerDependenciesMeta:
2858 | '@types/node':
2859 | optional: true
2860 | less:
2861 | optional: true
2862 | sass:
2863 | optional: true
2864 | stylus:
2865 | optional: true
2866 | sugarss:
2867 | optional: true
2868 | terser:
2869 | optional: true
2870 | dependencies:
2871 | '@types/node': registry.npmmirror.com/@types/node/18.15.5
2872 | esbuild: registry.npmmirror.com/esbuild/0.17.12
2873 | postcss: registry.npmmirror.com/postcss/8.4.21
2874 | resolve: registry.npmmirror.com/resolve/1.22.1
2875 | rollup: registry.npmmirror.com/rollup/3.20.0
2876 | optionalDependencies:
2877 | fsevents: registry.npmmirror.com/fsevents/2.3.2
2878 | dev: true
2879 |
2880 | registry.npmmirror.com/vue-eslint-parser/9.1.0_eslint@8.36.0:
2881 | resolution: {integrity: sha512-NGn/iQy8/Wb7RrRa4aRkokyCZfOUWk19OP5HP6JEozQFX5AoS/t+Z0ZN7FY4LlmWc4FNI922V7cvX28zctN8dQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vue-eslint-parser/-/vue-eslint-parser-9.1.0.tgz}
2882 | id: registry.npmmirror.com/vue-eslint-parser/9.1.0
2883 | name: vue-eslint-parser
2884 | version: 9.1.0
2885 | engines: {node: ^14.17.0 || >=16.0.0}
2886 | peerDependencies:
2887 | eslint: '>=6.0.0'
2888 | dependencies:
2889 | debug: registry.npmmirror.com/debug/4.3.4
2890 | eslint: registry.npmmirror.com/eslint/8.36.0
2891 | eslint-scope: registry.npmmirror.com/eslint-scope/7.1.1
2892 | eslint-visitor-keys: registry.npmmirror.com/eslint-visitor-keys/3.3.0
2893 | espree: registry.npmmirror.com/espree/9.5.0
2894 | esquery: registry.npmmirror.com/esquery/1.5.0
2895 | lodash: registry.npmmirror.com/lodash/4.17.21
2896 | semver: registry.npmmirror.com/semver/7.3.8
2897 | transitivePeerDependencies:
2898 | - supports-color
2899 | dev: true
2900 |
2901 | registry.npmmirror.com/vue-template-compiler/2.7.14:
2902 | 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}
2903 | name: vue-template-compiler
2904 | version: 2.7.14
2905 | dependencies:
2906 | de-indent: registry.npmmirror.com/de-indent/1.0.2
2907 | he: registry.npmmirror.com/he/1.2.0
2908 | dev: true
2909 |
2910 | registry.npmmirror.com/vue-tsc/1.2.0_typescript@4.8.4:
2911 | resolution: {integrity: sha512-rIlzqdrhyPYyLG9zxsVRa+JEseeS9s8F2BbVVVWRRsTZvJO2BbhLEb2HW3MY+DFma0378tnIqs+vfTzbcQtRFw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vue-tsc/-/vue-tsc-1.2.0.tgz}
2912 | id: registry.npmmirror.com/vue-tsc/1.2.0
2913 | name: vue-tsc
2914 | version: 1.2.0
2915 | hasBin: true
2916 | peerDependencies:
2917 | typescript: '*'
2918 | dependencies:
2919 | '@volar/vue-language-core': registry.npmmirror.com/@volar/vue-language-core/1.2.0
2920 | '@volar/vue-typescript': registry.npmmirror.com/@volar/vue-typescript/1.2.0
2921 | typescript: registry.npmmirror.com/typescript/4.8.4
2922 | dev: true
2923 |
2924 | registry.npmmirror.com/vue/3.2.47:
2925 | resolution: {integrity: sha512-60188y/9Dc9WVrAZeUVSDxRQOZ+z+y5nO2ts9jWXSTkMvayiWxCWOWtBQoYjLeccfXkiiPZWAHcV+WTPhkqJHQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vue/-/vue-3.2.47.tgz}
2926 | name: vue
2927 | version: 3.2.47
2928 | dependencies:
2929 | '@vue/compiler-dom': registry.npmmirror.com/@vue/compiler-dom/3.2.47
2930 | '@vue/compiler-sfc': registry.npmmirror.com/@vue/compiler-sfc/3.2.47
2931 | '@vue/runtime-dom': registry.npmmirror.com/@vue/runtime-dom/3.2.47
2932 | '@vue/server-renderer': registry.npmmirror.com/@vue/server-renderer/3.2.47_vue@3.2.47
2933 | '@vue/shared': registry.npmmirror.com/@vue/shared/3.2.47
2934 |
2935 | registry.npmmirror.com/which-boxed-primitive/1.0.2:
2936 | resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz}
2937 | name: which-boxed-primitive
2938 | version: 1.0.2
2939 | dependencies:
2940 | is-bigint: registry.npmmirror.com/is-bigint/1.0.4
2941 | is-boolean-object: registry.npmmirror.com/is-boolean-object/1.1.2
2942 | is-number-object: registry.npmmirror.com/is-number-object/1.0.7
2943 | is-string: registry.npmmirror.com/is-string/1.0.7
2944 | is-symbol: registry.npmmirror.com/is-symbol/1.0.4
2945 | dev: true
2946 |
2947 | registry.npmmirror.com/which-typed-array/1.1.9:
2948 | resolution: {integrity: sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/which-typed-array/-/which-typed-array-1.1.9.tgz}
2949 | name: which-typed-array
2950 | version: 1.1.9
2951 | engines: {node: '>= 0.4'}
2952 | dependencies:
2953 | available-typed-arrays: registry.npmmirror.com/available-typed-arrays/1.0.5
2954 | call-bind: registry.npmmirror.com/call-bind/1.0.2
2955 | for-each: registry.npmmirror.com/for-each/0.3.3
2956 | gopd: registry.npmmirror.com/gopd/1.0.1
2957 | has-tostringtag: registry.npmmirror.com/has-tostringtag/1.0.0
2958 | is-typed-array: registry.npmmirror.com/is-typed-array/1.1.10
2959 | dev: true
2960 |
2961 | registry.npmmirror.com/which/1.3.1:
2962 | resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/which/-/which-1.3.1.tgz}
2963 | name: which
2964 | version: 1.3.1
2965 | hasBin: true
2966 | dependencies:
2967 | isexe: registry.npmmirror.com/isexe/2.0.0
2968 | dev: true
2969 |
2970 | registry.npmmirror.com/which/2.0.2:
2971 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/which/-/which-2.0.2.tgz}
2972 | name: which
2973 | version: 2.0.2
2974 | engines: {node: '>= 8'}
2975 | hasBin: true
2976 | dependencies:
2977 | isexe: registry.npmmirror.com/isexe/2.0.0
2978 | dev: true
2979 |
2980 | registry.npmmirror.com/word-wrap/1.2.3:
2981 | resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/word-wrap/-/word-wrap-1.2.3.tgz}
2982 | name: word-wrap
2983 | version: 1.2.3
2984 | engines: {node: '>=0.10.0'}
2985 | dev: true
2986 |
2987 | registry.npmmirror.com/wrappy/1.0.2:
2988 | 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}
2989 | name: wrappy
2990 | version: 1.0.2
2991 | dev: true
2992 |
2993 | registry.npmmirror.com/xml-name-validator/4.0.0:
2994 | resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/xml-name-validator/-/xml-name-validator-4.0.0.tgz}
2995 | name: xml-name-validator
2996 | version: 4.0.0
2997 | engines: {node: '>=12'}
2998 | dev: true
2999 |
3000 | registry.npmmirror.com/yallist/4.0.0:
3001 | resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/yallist/-/yallist-4.0.0.tgz}
3002 | name: yallist
3003 | version: 4.0.0
3004 | dev: true
3005 |
3006 | registry.npmmirror.com/yocto-queue/0.1.0:
3007 | 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}
3008 | name: yocto-queue
3009 | version: 0.1.0
3010 | engines: {node: '>=10'}
3011 | dev: true
3012 |
--------------------------------------------------------------------------------