mirror of
https://github.com/element-plus/element-plus.git
synced 2025-04-12 16:40:36 +08:00
fix: improve deps (#7763)
This commit is contained in:
parent
c3486bcdce
commit
517efb99dc
@ -21,7 +21,7 @@
|
||||
"normalize.css": "^8.0.1",
|
||||
"nprogress": "^0.2.0",
|
||||
"prism-theme-vars": "^0.2.2",
|
||||
"vue": "3.2.33"
|
||||
"vue": "^3.2.33"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@crowdin/cli": "^3.7.8",
|
||||
|
@ -17,6 +17,7 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@pnpm/find-workspace-packages": "^4.0.5",
|
||||
"@pnpm/logger": "^4.0.0",
|
||||
"consola": "^2.15.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
@ -11,9 +11,13 @@
|
||||
"dev": "pnpm run stub",
|
||||
"stub": "unbuild --stub"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"vue": "^3.2.25"
|
||||
},
|
||||
"dependencies": {
|
||||
"@element-plus/build-constants": "^0.0.1",
|
||||
"@pnpm/find-workspace-packages": "^4.0.5",
|
||||
"@pnpm/logger": "^4.0.0",
|
||||
"@rollup/plugin-commonjs": "^22.0.0",
|
||||
"@rollup/plugin-node-resolve": "^13.3.0",
|
||||
"@vitejs/plugin-vue": "^2.3.3",
|
||||
@ -29,11 +33,11 @@
|
||||
"rollup": "^2.73.0",
|
||||
"rollup-plugin-esbuild": "^4.9.1",
|
||||
"ts-morph": "^14.0.0",
|
||||
"unplugin-vue-define-options": "^0.6.1",
|
||||
"vue": "3.2.33"
|
||||
"unplugin-vue-define-options": "^0.6.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@pnpm/types": "^8.0.1",
|
||||
"unbuild": "^0.7.4"
|
||||
"unbuild": "^0.7.4",
|
||||
"vue": "^3.2.33"
|
||||
}
|
||||
}
|
||||
|
@ -26,6 +26,11 @@
|
||||
"eslint-plugin-unicorn": "^42.0.0",
|
||||
"eslint-plugin-vue": "^8.7.1",
|
||||
"jsonc-eslint-parser": "^2.1.0",
|
||||
"prettier": "^2.6.2",
|
||||
"typescript": "^4.6.4",
|
||||
"yaml-eslint-parser": "^0.5.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"eslint": "^8.15.0"
|
||||
}
|
||||
}
|
||||
|
19
package.json
19
package.json
@ -91,7 +91,7 @@
|
||||
"expect-type": "^0.13.0",
|
||||
"fast-glob": "^3.2.11",
|
||||
"husky": "^7.0.4",
|
||||
"jsdom": "16.7.0",
|
||||
"jsdom": "16.4.0",
|
||||
"lint-staged": "^12.4.1",
|
||||
"prettier": "^2.6.2",
|
||||
"pretty-quick": "^3.1.3",
|
||||
@ -106,7 +106,7 @@
|
||||
"unplugin-element-plus": "^0.4.0",
|
||||
"unplugin-vue-define-options": "^0.6.1",
|
||||
"vitest": "^0.12.6",
|
||||
"vue": "3.2.33",
|
||||
"vue": "^3.2.33",
|
||||
"vue-router": "^4.0.15",
|
||||
"vue-tsc": "^0.34.15"
|
||||
},
|
||||
@ -119,16 +119,15 @@
|
||||
}
|
||||
},
|
||||
"pnpm": {
|
||||
"overrides": {
|
||||
"jsdom": "16.4.0"
|
||||
"peerDependencyRules": {
|
||||
"ignoreMissing": [
|
||||
"vite",
|
||||
"react",
|
||||
"react-dom"
|
||||
]
|
||||
}
|
||||
},
|
||||
"lint-staged": {
|
||||
"*.{vue,js,ts,jsx,tsx,md,json}": "eslint --fix"
|
||||
},
|
||||
"browserslist": [
|
||||
"> 1%",
|
||||
"not ie 11",
|
||||
"not op_mini all"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
@ -70,6 +70,7 @@
|
||||
"devDependencies": {
|
||||
"@types/node": "*",
|
||||
"csstype": "^2.6.20",
|
||||
"vue": "^3.2.33",
|
||||
"vue-router": "^4.0.15"
|
||||
},
|
||||
"vetur": {
|
||||
|
@ -7,7 +7,8 @@
|
||||
"preview": "vite preview"
|
||||
},
|
||||
"dependencies": {
|
||||
"@element-plus/icons-vue": "^1.1.4"
|
||||
"@element-plus/icons-vue": "^1.1.4",
|
||||
"vue": "^3.2.33"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@vitejs/plugin-vue": "^2.3.3",
|
||||
|
422
pnpm-lock.yaml
generated
422
pnpm-lock.yaml
generated
@ -1,8 +1,5 @@
|
||||
lockfileVersion: 5.4
|
||||
|
||||
overrides:
|
||||
jsdom: 16.4.0
|
||||
|
||||
importers:
|
||||
|
||||
.:
|
||||
@ -73,7 +70,7 @@ importers:
|
||||
unplugin-element-plus: ^0.4.0
|
||||
unplugin-vue-define-options: ^0.6.1
|
||||
vitest: ^0.12.6
|
||||
vue: 3.2.33
|
||||
vue: ^3.2.33
|
||||
vue-router: ^4.0.15
|
||||
vue-tsc: ^0.34.15
|
||||
dependencies:
|
||||
@ -187,7 +184,7 @@ importers:
|
||||
vite-plugin-mkcert: ^1.6.0
|
||||
vite-plugin-pwa: ^0.12.0
|
||||
vitepress: ^0.22.4
|
||||
vue: 3.2.33
|
||||
vue: ^3.2.33
|
||||
dependencies:
|
||||
'@docsearch/js': 3.0.0
|
||||
'@element-plus/icons-vue': 1.1.4_vue@3.2.33
|
||||
@ -233,6 +230,7 @@ importers:
|
||||
specifiers:
|
||||
'@element-plus/build-constants': ^0.0.1
|
||||
'@pnpm/find-workspace-packages': ^4.0.5
|
||||
'@pnpm/logger': ^4.0.0
|
||||
'@pnpm/types': ^8.0.1
|
||||
'@rollup/plugin-commonjs': ^22.0.0
|
||||
'@rollup/plugin-node-resolve': ^13.3.0
|
||||
@ -251,10 +249,11 @@ importers:
|
||||
ts-morph: ^14.0.0
|
||||
unbuild: ^0.7.4
|
||||
unplugin-vue-define-options: ^0.6.1
|
||||
vue: 3.2.33
|
||||
vue: ^3.2.33
|
||||
dependencies:
|
||||
'@element-plus/build-constants': link:../build-constants
|
||||
'@pnpm/find-workspace-packages': 4.0.5
|
||||
'@pnpm/find-workspace-packages': 4.0.5_@pnpm+logger@4.0.0
|
||||
'@pnpm/logger': 4.0.0
|
||||
'@rollup/plugin-commonjs': 22.0.0_rollup@2.73.0
|
||||
'@rollup/plugin-node-resolve': 13.3.0_rollup@2.73.0
|
||||
'@vitejs/plugin-vue': 2.3.3_vue@3.2.33
|
||||
@ -271,10 +270,10 @@ importers:
|
||||
rollup-plugin-esbuild: 4.9.1_7adqdep3dyb6q46ys4q2gte2am
|
||||
ts-morph: 14.0.0
|
||||
unplugin-vue-define-options: 0.6.1_kpocjyzcqhd3i2mu3he43e7nee
|
||||
vue: 3.2.33
|
||||
devDependencies:
|
||||
'@pnpm/types': 8.0.1
|
||||
unbuild: 0.7.4
|
||||
vue: 3.2.33
|
||||
|
||||
internal/build-constants:
|
||||
specifiers:
|
||||
@ -285,10 +284,12 @@ importers:
|
||||
internal/build-utils:
|
||||
specifiers:
|
||||
'@pnpm/find-workspace-packages': ^4.0.5
|
||||
'@pnpm/logger': ^4.0.0
|
||||
consola: ^2.15.3
|
||||
unbuild: ^0.7.4
|
||||
dependencies:
|
||||
'@pnpm/find-workspace-packages': 4.0.5
|
||||
'@pnpm/find-workspace-packages': 4.0.5_@pnpm+logger@4.0.0
|
||||
'@pnpm/logger': 4.0.0
|
||||
consola: 2.15.3
|
||||
devDependencies:
|
||||
unbuild: 0.7.4
|
||||
@ -297,6 +298,7 @@ importers:
|
||||
specifiers:
|
||||
'@typescript-eslint/eslint-plugin': ^5.24.0
|
||||
'@typescript-eslint/parser': ^5.24.0
|
||||
eslint: ^8.15.0
|
||||
eslint-config-prettier: ^8.5.0
|
||||
eslint-define-config: ^1.4.1
|
||||
eslint-plugin-eslint-comments: ^3.2.0
|
||||
@ -307,21 +309,27 @@ importers:
|
||||
eslint-plugin-unicorn: ^42.0.0
|
||||
eslint-plugin-vue: ^8.7.1
|
||||
jsonc-eslint-parser: ^2.1.0
|
||||
prettier: ^2.6.2
|
||||
typescript: ^4.6.4
|
||||
yaml-eslint-parser: ^0.5.0
|
||||
dependencies:
|
||||
'@typescript-eslint/eslint-plugin': 5.24.0_fsuobzodmui5yhj7deh6fdsp7i
|
||||
'@typescript-eslint/parser': 5.24.0
|
||||
eslint-config-prettier: 8.5.0
|
||||
'@typescript-eslint/eslint-plugin': 5.24.0_w4ec7awddsetq6k5phhi6huiuu
|
||||
'@typescript-eslint/parser': 5.24.0_hcfsmds2fshutdssjqluwm76uu
|
||||
eslint-config-prettier: 8.5.0_eslint@8.15.0
|
||||
eslint-define-config: 1.4.1
|
||||
eslint-plugin-eslint-comments: 3.2.0
|
||||
eslint-plugin-import: 2.26.0_fsuobzodmui5yhj7deh6fdsp7i
|
||||
eslint-plugin-jsonc: 2.2.1
|
||||
eslint-plugin-markdown: 2.2.1
|
||||
eslint-plugin-prettier: 4.0.0_ttcikbw5yztdadzhevg6ml5cuy
|
||||
eslint-plugin-unicorn: 42.0.0
|
||||
eslint-plugin-vue: 8.7.1
|
||||
eslint-plugin-eslint-comments: 3.2.0_eslint@8.15.0
|
||||
eslint-plugin-import: 2.26.0_ae4wjpjlz2l2qm7erdt4inxtpu
|
||||
eslint-plugin-jsonc: 2.2.1_eslint@8.15.0
|
||||
eslint-plugin-markdown: 2.2.1_eslint@8.15.0
|
||||
eslint-plugin-prettier: 4.0.0_iqftbjqlxzn3ny5nablrkczhqi
|
||||
eslint-plugin-unicorn: 42.0.0_eslint@8.15.0
|
||||
eslint-plugin-vue: 8.7.1_eslint@8.15.0
|
||||
jsonc-eslint-parser: 2.1.0
|
||||
prettier: 2.6.2
|
||||
typescript: 4.6.4
|
||||
yaml-eslint-parser: 0.5.0
|
||||
devDependencies:
|
||||
eslint: 8.15.0
|
||||
|
||||
internal/metadata:
|
||||
specifiers:
|
||||
@ -379,15 +387,16 @@ importers:
|
||||
lodash-unified: ^1.0.2
|
||||
memoize-one: ^6.0.0
|
||||
normalize-wheel-es: ^1.1.2
|
||||
vue: ^3.2.33
|
||||
vue-router: ^4.0.15
|
||||
dependencies:
|
||||
'@ctrl/tinycolor': 3.4.1
|
||||
'@element-plus/icons-vue': 1.1.4
|
||||
'@element-plus/icons-vue': 1.1.4_vue@3.2.33
|
||||
'@floating-ui/dom': 0.5.0
|
||||
'@popperjs/core': /@sxzz/popperjs-es/2.11.7
|
||||
'@types/lodash': 4.14.182
|
||||
'@types/lodash-es': 4.17.6
|
||||
'@vueuse/core': 8.5.0
|
||||
'@vueuse/core': 8.5.0_vue@3.2.33
|
||||
async-validator: 4.1.1
|
||||
dayjs: 1.11.2
|
||||
escape-html: 1.0.3
|
||||
@ -399,7 +408,8 @@ importers:
|
||||
devDependencies:
|
||||
'@types/node': 17.0.25
|
||||
csstype: 2.6.20
|
||||
vue-router: 4.0.15
|
||||
vue: 3.2.33
|
||||
vue-router: 4.0.15_vue@3.2.33
|
||||
|
||||
packages/hooks:
|
||||
specifiers: {}
|
||||
@ -446,11 +456,13 @@ importers:
|
||||
vite: ^2.9.9
|
||||
vite-plugin-inspect: ^0.5.0
|
||||
vite-plugin-mkcert: ^1.6.0
|
||||
vue: ^3.2.33
|
||||
dependencies:
|
||||
'@element-plus/icons-vue': 1.1.4
|
||||
'@element-plus/icons-vue': 1.1.4_vue@3.2.33
|
||||
vue: 3.2.33
|
||||
devDependencies:
|
||||
'@vitejs/plugin-vue': 2.3.3_vite@2.9.9
|
||||
unplugin-vue-components: 0.19.5_vite@2.9.9
|
||||
'@vitejs/plugin-vue': 2.3.3_vite@2.9.9+vue@3.2.33
|
||||
unplugin-vue-components: 0.19.5_vite@2.9.9+vue@3.2.33
|
||||
vite: 2.9.9
|
||||
vite-plugin-inspect: 0.5.0_vite@2.9.9
|
||||
vite-plugin-mkcert: 1.6.0
|
||||
@ -1986,6 +1998,11 @@ packages:
|
||||
'@types/react': '>= 16.8.0 < 18.0.0'
|
||||
react: '>= 16.8.0 < 18.0.0'
|
||||
react-dom: '>= 16.8.0 < 18.0.0'
|
||||
peerDependenciesMeta:
|
||||
react:
|
||||
optional: true
|
||||
react-dom:
|
||||
optional: true
|
||||
dependencies:
|
||||
'@algolia/autocomplete-core': 1.5.2
|
||||
'@algolia/autocomplete-preset-algolia': 1.5.2_algoliasearch@4.13.0
|
||||
@ -1994,12 +2011,6 @@ packages:
|
||||
transitivePeerDependencies:
|
||||
- '@algolia/client-search'
|
||||
|
||||
/@element-plus/icons-vue/1.1.4:
|
||||
resolution: {integrity: sha512-Iz/nHqdp1sFPmdzRwHkEQQA3lKvoObk8azgABZ81QUOpW9s/lUyQVUSh0tNtEPZXQlKwlSh7SPgoVxzrE0uuVQ==}
|
||||
peerDependencies:
|
||||
vue: ^3.2.0
|
||||
dev: false
|
||||
|
||||
/@element-plus/icons-vue/1.1.4_vue@3.2.33:
|
||||
resolution: {integrity: sha512-Iz/nHqdp1sFPmdzRwHkEQQA3lKvoObk8azgABZ81QUOpW9s/lUyQVUSh0tNtEPZXQlKwlSh7SPgoVxzrE0uuVQ==}
|
||||
peerDependencies:
|
||||
@ -2396,24 +2407,6 @@ packages:
|
||||
'@pnpm/types': 8.0.1
|
||||
load-json-file: 6.2.0
|
||||
|
||||
/@pnpm/cli-utils/0.7.5:
|
||||
resolution: {integrity: sha512-PudtwGKIsCgVPxMPEotCRcfuLK4XXiQ0cO7VeBL7m+Fnlql632eNFO2DaAOgvtIzWbkws4JggJNO+N/zW3trJQ==}
|
||||
engines: {node: '>=14.19'}
|
||||
peerDependencies:
|
||||
'@pnpm/logger': ^4.0.0
|
||||
dependencies:
|
||||
'@pnpm/cli-meta': 3.0.1
|
||||
'@pnpm/config': 15.1.1
|
||||
'@pnpm/default-reporter': 9.0.4
|
||||
'@pnpm/error': 3.0.1
|
||||
'@pnpm/manifest-utils': 3.0.2
|
||||
'@pnpm/package-is-installable': 6.0.3
|
||||
'@pnpm/read-project-manifest': 3.0.2
|
||||
'@pnpm/types': 8.0.1
|
||||
chalk: 4.1.2
|
||||
load-json-file: 6.2.0
|
||||
dev: false
|
||||
|
||||
/@pnpm/cli-utils/0.7.5_@pnpm+logger@4.0.0:
|
||||
resolution: {integrity: sha512-PudtwGKIsCgVPxMPEotCRcfuLK4XXiQ0cO7VeBL7m+Fnlql632eNFO2DaAOgvtIzWbkws4JggJNO+N/zW3trJQ==}
|
||||
engines: {node: '>=14.19'}
|
||||
@ -2431,29 +2424,6 @@ packages:
|
||||
'@pnpm/types': 8.0.1
|
||||
chalk: 4.1.2
|
||||
load-json-file: 6.2.0
|
||||
dev: true
|
||||
|
||||
/@pnpm/config/15.1.1:
|
||||
resolution: {integrity: sha512-bpPTy/MGHtZHkQYtSYUNTgfJIweRNMZ1jzotj40xptlSjV9stDjf+FVlmGPuArZeTuIKPe3jfixPd2gjPuUnNw==}
|
||||
engines: {node: '>=14.19'}
|
||||
dependencies:
|
||||
'@pnpm/constants': 6.1.0
|
||||
'@pnpm/error': 3.0.1
|
||||
'@pnpm/pnpmfile': 2.0.2
|
||||
'@pnpm/read-project-manifest': 3.0.2
|
||||
'@pnpm/types': 8.0.1
|
||||
'@zkochan/npm-conf': 2.0.2
|
||||
camelcase: 6.3.0
|
||||
can-write-to-dir: 1.1.1
|
||||
is-subdir: 1.2.0
|
||||
normalize-registry-url: 2.0.0
|
||||
path-name: 1.0.0
|
||||
ramda: 0.27.2
|
||||
realpath-missing: 1.1.0
|
||||
which: 2.0.2
|
||||
transitivePeerDependencies:
|
||||
- '@pnpm/logger'
|
||||
dev: false
|
||||
|
||||
/@pnpm/config/15.1.1_@pnpm+logger@4.0.0:
|
||||
resolution: {integrity: sha512-bpPTy/MGHtZHkQYtSYUNTgfJIweRNMZ1jzotj40xptlSjV9stDjf+FVlmGPuArZeTuIKPe3jfixPd2gjPuUnNw==}
|
||||
@ -2475,21 +2445,11 @@ packages:
|
||||
which: 2.0.2
|
||||
transitivePeerDependencies:
|
||||
- '@pnpm/logger'
|
||||
dev: true
|
||||
|
||||
/@pnpm/constants/6.1.0:
|
||||
resolution: {integrity: sha512-L6AiU3OXv9kjKGTJN9j8n1TeJGDcLX9atQlZvAkthlvbXjvKc5SKNWESc/eXhr5nEfuMWhQhiKHDJCpYejmeCQ==}
|
||||
engines: {node: '>=14.19'}
|
||||
|
||||
/@pnpm/core-loggers/7.0.1:
|
||||
resolution: {integrity: sha512-5fCtT6mj6Ec4JvV9KWKy4B1bg74qM1RWOQeM9kxnc4E6ZxDb5HCsFYTtXGRL3xZGMNUMmzc6UzKINblTuN5mrA==}
|
||||
engines: {node: '>=14.19'}
|
||||
peerDependencies:
|
||||
'@pnpm/logger': ^4.0.0
|
||||
dependencies:
|
||||
'@pnpm/types': 8.0.1
|
||||
dev: false
|
||||
|
||||
/@pnpm/core-loggers/7.0.1_@pnpm+logger@4.0.0:
|
||||
resolution: {integrity: sha512-5fCtT6mj6Ec4JvV9KWKy4B1bg74qM1RWOQeM9kxnc4E6ZxDb5HCsFYTtXGRL3xZGMNUMmzc6UzKINblTuN5mrA==}
|
||||
engines: {node: '>=14.19'}
|
||||
@ -2498,33 +2458,6 @@ packages:
|
||||
dependencies:
|
||||
'@pnpm/logger': 4.0.0
|
||||
'@pnpm/types': 8.0.1
|
||||
dev: true
|
||||
|
||||
/@pnpm/default-reporter/9.0.4:
|
||||
resolution: {integrity: sha512-KOMU1I40EANVS8tM4UEohFzTc8dOy/42fFZEaws85BubW6vYRQUrmOSY3nKv0dtdWGU0TyU/Ko+LkoYdXmlf7w==}
|
||||
engines: {node: '>=14.19'}
|
||||
peerDependencies:
|
||||
'@pnpm/logger': ^4.0.0
|
||||
dependencies:
|
||||
'@pnpm/config': 15.1.1
|
||||
'@pnpm/core-loggers': 7.0.1
|
||||
'@pnpm/error': 3.0.1
|
||||
'@pnpm/render-peer-issues': 2.0.1
|
||||
'@pnpm/types': 8.0.1
|
||||
ansi-diff: 1.1.1
|
||||
boxen: 5.1.2
|
||||
chalk: 4.1.2
|
||||
normalize-path: 3.0.0
|
||||
pretty-bytes: 5.6.0
|
||||
pretty-ms: 7.0.1
|
||||
ramda: 0.27.2
|
||||
right-pad: 1.0.1
|
||||
rxjs: 7.5.5
|
||||
semver: 7.3.7
|
||||
stacktracey: 2.1.8
|
||||
string-length: 4.0.2
|
||||
strip-ansi: 6.0.1
|
||||
dev: false
|
||||
|
||||
/@pnpm/default-reporter/9.0.4_@pnpm+logger@4.0.0:
|
||||
resolution: {integrity: sha512-KOMU1I40EANVS8tM4UEohFzTc8dOy/42fFZEaws85BubW6vYRQUrmOSY3nKv0dtdWGU0TyU/Ko+LkoYdXmlf7w==}
|
||||
@ -2551,7 +2484,6 @@ packages:
|
||||
stacktracey: 2.1.8
|
||||
string-length: 4.0.2
|
||||
strip-ansi: 6.0.1
|
||||
dev: true
|
||||
|
||||
/@pnpm/error/3.0.1:
|
||||
resolution: {integrity: sha512-hMlbWbFcfcfolNfSjKjpeaZFow71kNg438LZ8rAd01swiVIYRUf/sRv8gGySru6AijYfz5UqslpIJRDbYBkgQA==}
|
||||
@ -2559,19 +2491,6 @@ packages:
|
||||
dependencies:
|
||||
'@pnpm/constants': 6.1.0
|
||||
|
||||
/@pnpm/find-workspace-packages/4.0.5:
|
||||
resolution: {integrity: sha512-gkqJXisaAGO0bRSSeJ+gLxczSEVC3nEWAt22mTf94057zBVlWUP/E2S0Dr+9Usr0HL4qwvUbPpnWWrQB/nhk/g==}
|
||||
engines: {node: '>=14.19'}
|
||||
dependencies:
|
||||
'@pnpm/cli-utils': 0.7.5
|
||||
'@pnpm/constants': 6.1.0
|
||||
'@pnpm/types': 8.0.1
|
||||
find-packages: 9.0.2
|
||||
read-yaml-file: 2.1.0
|
||||
transitivePeerDependencies:
|
||||
- '@pnpm/logger'
|
||||
dev: false
|
||||
|
||||
/@pnpm/find-workspace-packages/4.0.5_@pnpm+logger@4.0.0:
|
||||
resolution: {integrity: sha512-gkqJXisaAGO0bRSSeJ+gLxczSEVC3nEWAt22mTf94057zBVlWUP/E2S0Dr+9Usr0HL4qwvUbPpnWWrQB/nhk/g==}
|
||||
engines: {node: '>=14.19'}
|
||||
@ -2583,7 +2502,6 @@ packages:
|
||||
read-yaml-file: 2.1.0
|
||||
transitivePeerDependencies:
|
||||
- '@pnpm/logger'
|
||||
dev: true
|
||||
|
||||
/@pnpm/graceful-fs/2.0.0:
|
||||
resolution: {integrity: sha512-ogUZCGf0/UILZt6d8PsO4gA4pXh7f0BumXeFkcCe4AQ65PXPKfAkHC0C30Lheh2EgFOpLZm3twDP1Eiww18gew==}
|
||||
@ -2603,18 +2521,6 @@ packages:
|
||||
dependencies:
|
||||
bole: 4.0.0
|
||||
ndjson: 2.0.0
|
||||
dev: true
|
||||
|
||||
/@pnpm/manifest-utils/3.0.2:
|
||||
resolution: {integrity: sha512-PdKC3uRMRzsTbNpRoC4MMekfrh+iI4uIk1diXJGS5nNJ7Ab8yHnG7C99L8nhX4Y7/WNpRWYxSWOIoZ6hXxcOLQ==}
|
||||
engines: {node: '>=14.19'}
|
||||
dependencies:
|
||||
'@pnpm/core-loggers': 7.0.1
|
||||
'@pnpm/error': 3.0.1
|
||||
'@pnpm/types': 8.0.1
|
||||
transitivePeerDependencies:
|
||||
- '@pnpm/logger'
|
||||
dev: false
|
||||
|
||||
/@pnpm/manifest-utils/3.0.2_@pnpm+logger@4.0.0:
|
||||
resolution: {integrity: sha512-PdKC3uRMRzsTbNpRoC4MMekfrh+iI4uIk1diXJGS5nNJ7Ab8yHnG7C99L8nhX4Y7/WNpRWYxSWOIoZ6hXxcOLQ==}
|
||||
@ -2625,22 +2531,6 @@ packages:
|
||||
'@pnpm/types': 8.0.1
|
||||
transitivePeerDependencies:
|
||||
- '@pnpm/logger'
|
||||
dev: true
|
||||
|
||||
/@pnpm/package-is-installable/6.0.3:
|
||||
resolution: {integrity: sha512-r6GOVx7y56Cx5sHzXk5xfrfk02lCZ2gare7mR7HB4qf8bGKo4258uflmL3Jps9E8ptrBqZLSIuicT09l0zZbSQ==}
|
||||
engines: {node: '>=14.19'}
|
||||
peerDependencies:
|
||||
'@pnpm/logger': ^4.0.0
|
||||
dependencies:
|
||||
'@pnpm/core-loggers': 7.0.1
|
||||
'@pnpm/error': 3.0.1
|
||||
'@pnpm/types': 8.0.1
|
||||
detect-libc: 2.0.1
|
||||
execa: /safe-execa/0.1.1
|
||||
mem: 8.1.1
|
||||
semver: 7.3.7
|
||||
dev: false
|
||||
|
||||
/@pnpm/package-is-installable/6.0.3_@pnpm+logger@4.0.0:
|
||||
resolution: {integrity: sha512-r6GOVx7y56Cx5sHzXk5xfrfk02lCZ2gare7mR7HB4qf8bGKo4258uflmL3Jps9E8ptrBqZLSIuicT09l0zZbSQ==}
|
||||
@ -2656,21 +2546,6 @@ packages:
|
||||
execa: /safe-execa/0.1.1
|
||||
mem: 8.1.1
|
||||
semver: 7.3.7
|
||||
dev: true
|
||||
|
||||
/@pnpm/pnpmfile/2.0.2:
|
||||
resolution: {integrity: sha512-aeT3Ft0/0FDAUrgaYnZelB2rTlzRf1a+bAuDItOOQEkJ7sCviL5TbLF2M786RRHQjMjFV1iitRMMchvynCCRgQ==}
|
||||
engines: {node: '>=14.19'}
|
||||
peerDependencies:
|
||||
'@pnpm/logger': ^4.0.0
|
||||
dependencies:
|
||||
'@pnpm/core-loggers': 7.0.1
|
||||
'@pnpm/error': 3.0.1
|
||||
'@pnpm/lockfile-types': 4.0.1
|
||||
'@pnpm/types': 8.0.1
|
||||
chalk: 4.1.2
|
||||
path-absolute: 1.0.1
|
||||
dev: false
|
||||
|
||||
/@pnpm/pnpmfile/2.0.2_@pnpm+logger@4.0.0:
|
||||
resolution: {integrity: sha512-aeT3Ft0/0FDAUrgaYnZelB2rTlzRf1a+bAuDItOOQEkJ7sCviL5TbLF2M786RRHQjMjFV1iitRMMchvynCCRgQ==}
|
||||
@ -2685,7 +2560,6 @@ packages:
|
||||
'@pnpm/types': 8.0.1
|
||||
chalk: 4.1.2
|
||||
path-absolute: 1.0.1
|
||||
dev: true
|
||||
|
||||
/@pnpm/read-project-manifest/3.0.2:
|
||||
resolution: {integrity: sha512-v0gayZ6KbGsbhbWDC1j60HkEmsirdORKymRCvga1vPubE9Zo1vtYwzfHk20kJASvav5B4xEV7iDspn8uS34fOQ==}
|
||||
@ -3121,7 +2995,7 @@ packages:
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/@typescript-eslint/eslint-plugin/5.24.0_fsuobzodmui5yhj7deh6fdsp7i:
|
||||
/@typescript-eslint/eslint-plugin/5.24.0_w4ec7awddsetq6k5phhi6huiuu:
|
||||
resolution: {integrity: sha512-6bqFGk6wa9+6RrU++eLknKyDqXU1Oc8nyoLu5a1fU17PNRJd9UBr56rMF7c4DRaRtnarlkQ4jwxUbvBo8cNlpw==}
|
||||
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
||||
peerDependencies:
|
||||
@ -3132,21 +3006,23 @@ packages:
|
||||
typescript:
|
||||
optional: true
|
||||
dependencies:
|
||||
'@typescript-eslint/parser': 5.24.0
|
||||
'@typescript-eslint/parser': 5.24.0_hcfsmds2fshutdssjqluwm76uu
|
||||
'@typescript-eslint/scope-manager': 5.24.0
|
||||
'@typescript-eslint/type-utils': 5.24.0
|
||||
'@typescript-eslint/utils': 5.24.0
|
||||
'@typescript-eslint/type-utils': 5.24.0_hcfsmds2fshutdssjqluwm76uu
|
||||
'@typescript-eslint/utils': 5.24.0_hcfsmds2fshutdssjqluwm76uu
|
||||
debug: 4.3.4
|
||||
eslint: 8.15.0
|
||||
functional-red-black-tree: 1.0.1
|
||||
ignore: 5.2.0
|
||||
regexpp: 3.2.0
|
||||
semver: 7.3.7
|
||||
tsutils: 3.21.0
|
||||
tsutils: 3.21.0_typescript@4.6.4
|
||||
typescript: 4.6.4
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
dev: false
|
||||
|
||||
/@typescript-eslint/parser/5.24.0:
|
||||
/@typescript-eslint/parser/5.24.0_hcfsmds2fshutdssjqluwm76uu:
|
||||
resolution: {integrity: sha512-4q29C6xFYZ5B2CXqSBBdcS0lPyfM9M09DoQLtHS5kf+WbpV8pBBhHDLNhXfgyVwFnhrhYzOu7xmg02DzxeF2Uw==}
|
||||
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
||||
peerDependencies:
|
||||
@ -3158,8 +3034,10 @@ packages:
|
||||
dependencies:
|
||||
'@typescript-eslint/scope-manager': 5.24.0
|
||||
'@typescript-eslint/types': 5.24.0
|
||||
'@typescript-eslint/typescript-estree': 5.24.0
|
||||
'@typescript-eslint/typescript-estree': 5.24.0_typescript@4.6.4
|
||||
debug: 4.3.4
|
||||
eslint: 8.15.0
|
||||
typescript: 4.6.4
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
dev: false
|
||||
@ -3172,7 +3050,7 @@ packages:
|
||||
'@typescript-eslint/visitor-keys': 5.24.0
|
||||
dev: false
|
||||
|
||||
/@typescript-eslint/type-utils/5.24.0:
|
||||
/@typescript-eslint/type-utils/5.24.0_hcfsmds2fshutdssjqluwm76uu:
|
||||
resolution: {integrity: sha512-uGi+sQiM6E5CeCZYBXiaIvIChBXru4LZ1tMoeKbh1Lze+8BO9syUG07594C4lvN2YPT4KVeIupOJkVI+9/DAmQ==}
|
||||
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
||||
peerDependencies:
|
||||
@ -3182,9 +3060,11 @@ packages:
|
||||
typescript:
|
||||
optional: true
|
||||
dependencies:
|
||||
'@typescript-eslint/utils': 5.24.0
|
||||
'@typescript-eslint/utils': 5.24.0_hcfsmds2fshutdssjqluwm76uu
|
||||
debug: 4.3.4
|
||||
tsutils: 3.21.0
|
||||
eslint: 8.15.0
|
||||
tsutils: 3.21.0_typescript@4.6.4
|
||||
typescript: 4.6.4
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
dev: false
|
||||
@ -3194,7 +3074,7 @@ packages:
|
||||
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
||||
dev: false
|
||||
|
||||
/@typescript-eslint/typescript-estree/5.24.0:
|
||||
/@typescript-eslint/typescript-estree/5.24.0_typescript@4.6.4:
|
||||
resolution: {integrity: sha512-zcor6vQkQmZAQfebSPVwUk/FD+CvnsnlfKXYeQDsWXRF+t7SBPmIfNia/wQxCSeu1h1JIjwV2i9f5/DdSp/uDw==}
|
||||
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
||||
peerDependencies:
|
||||
@ -3209,12 +3089,13 @@ packages:
|
||||
globby: 11.1.0
|
||||
is-glob: 4.0.3
|
||||
semver: 7.3.7
|
||||
tsutils: 3.21.0
|
||||
tsutils: 3.21.0_typescript@4.6.4
|
||||
typescript: 4.6.4
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
dev: false
|
||||
|
||||
/@typescript-eslint/utils/5.24.0:
|
||||
/@typescript-eslint/utils/5.24.0_hcfsmds2fshutdssjqluwm76uu:
|
||||
resolution: {integrity: sha512-K05sbWoeCBJH8KXu6hetBJ+ukG0k2u2KlgD3bN+v+oBKm8adJqVHpSSLHNzqyuv0Lh4GVSAUgZ5lB4icmPmWLw==}
|
||||
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
||||
peerDependencies:
|
||||
@ -3223,9 +3104,10 @@ packages:
|
||||
'@types/json-schema': 7.0.11
|
||||
'@typescript-eslint/scope-manager': 5.24.0
|
||||
'@typescript-eslint/types': 5.24.0
|
||||
'@typescript-eslint/typescript-estree': 5.24.0
|
||||
'@typescript-eslint/typescript-estree': 5.24.0_typescript@4.6.4
|
||||
eslint: 8.15.0
|
||||
eslint-scope: 5.1.1
|
||||
eslint-utils: 3.0.0
|
||||
eslint-utils: 3.0.0_eslint@8.15.0
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
- typescript
|
||||
@ -3356,6 +3238,9 @@ packages:
|
||||
resolution: {integrity: sha512-q2Wc+/vCwIlarK3FfmdM3c9OwwmoiUjzMtdgK8Y6qNIq/26S7pEk5upplhswR6M9kjqjDbIQOKgaVrhQFlLeVQ==}
|
||||
peerDependencies:
|
||||
vite: ^2.9.0
|
||||
peerDependenciesMeta:
|
||||
vite:
|
||||
optional: true
|
||||
dependencies:
|
||||
'@rollup/pluginutils': 4.2.1
|
||||
'@unocss/config': 0.33.5
|
||||
@ -3380,22 +3265,15 @@ packages:
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
/@vitejs/plugin-vue/2.3.3_vite@2.9.9:
|
||||
resolution: {integrity: sha512-SmQLDyhz+6lGJhPELsBdzXGc+AcaT8stgkbiTFGpXPe8Tl1tJaBw1A6pxDqDuRsVkD8uscrkx3hA7QDOoKYtyw==}
|
||||
engines: {node: '>=12.0.0'}
|
||||
peerDependencies:
|
||||
vite: ^2.5.10
|
||||
vue: ^3.2.25
|
||||
dependencies:
|
||||
vite: 2.9.9
|
||||
dev: true
|
||||
|
||||
/@vitejs/plugin-vue/2.3.3_vite@2.9.9+vue@3.2.33:
|
||||
resolution: {integrity: sha512-SmQLDyhz+6lGJhPELsBdzXGc+AcaT8stgkbiTFGpXPe8Tl1tJaBw1A6pxDqDuRsVkD8uscrkx3hA7QDOoKYtyw==}
|
||||
engines: {node: '>=12.0.0'}
|
||||
peerDependencies:
|
||||
vite: ^2.5.10
|
||||
vue: ^3.2.25
|
||||
peerDependenciesMeta:
|
||||
vite:
|
||||
optional: true
|
||||
dependencies:
|
||||
vite: 2.9.9
|
||||
vue: 3.2.33
|
||||
@ -3407,6 +3285,9 @@ packages:
|
||||
peerDependencies:
|
||||
vite: ^2.5.10
|
||||
vue: ^3.2.25
|
||||
peerDependenciesMeta:
|
||||
vite:
|
||||
optional: true
|
||||
dependencies:
|
||||
vue: 3.2.33
|
||||
|
||||
@ -3561,22 +3442,6 @@ packages:
|
||||
'@types/node': 17.0.25
|
||||
dev: true
|
||||
|
||||
/@vueuse/core/8.5.0:
|
||||
resolution: {integrity: sha512-VEJ6sGNsPlUp0o9BGda2YISvDZbhWJSOJu5zlp2TufRGVrLcYUKr31jyFEOj6RXzG3k/H4aCYeZyjpItfU8glw==}
|
||||
peerDependencies:
|
||||
'@vue/composition-api': ^1.1.0
|
||||
vue: ^2.6.0 || ^3.2.0
|
||||
peerDependenciesMeta:
|
||||
'@vue/composition-api':
|
||||
optional: true
|
||||
vue:
|
||||
optional: true
|
||||
dependencies:
|
||||
'@vueuse/metadata': 8.5.0
|
||||
'@vueuse/shared': 8.5.0
|
||||
vue-demi: 0.12.5
|
||||
dev: false
|
||||
|
||||
/@vueuse/core/8.5.0_vue@3.2.33:
|
||||
resolution: {integrity: sha512-VEJ6sGNsPlUp0o9BGda2YISvDZbhWJSOJu5zlp2TufRGVrLcYUKr31jyFEOj6RXzG3k/H4aCYeZyjpItfU8glw==}
|
||||
peerDependencies:
|
||||
@ -3598,20 +3463,6 @@ packages:
|
||||
resolution: {integrity: sha512-WxsD+Cd+bn+HcjpY6Dl9FJ8ywTRTT9pTwk3bCQpzEhXVYAyNczKDSahk50fCfIJKeWHhyI4B2+/ZEOxQAkUr0g==}
|
||||
dev: false
|
||||
|
||||
/@vueuse/shared/8.5.0:
|
||||
resolution: {integrity: sha512-qKG+SZb44VvGD4dU5cQ63z4JE2Yk39hQUecR0a9sEdJA01cx+XrxAvFKJfPooxwoiqalAVw/ktWK6xbyc/jS3g==}
|
||||
peerDependencies:
|
||||
'@vue/composition-api': ^1.1.0
|
||||
vue: ^2.6.0 || ^3.2.0
|
||||
peerDependenciesMeta:
|
||||
'@vue/composition-api':
|
||||
optional: true
|
||||
vue:
|
||||
optional: true
|
||||
dependencies:
|
||||
vue-demi: 0.12.5
|
||||
dev: false
|
||||
|
||||
/@vueuse/shared/8.5.0_vue@3.2.33:
|
||||
resolution: {integrity: sha512-qKG+SZb44VvGD4dU5cQ63z4JE2Yk39hQUecR0a9sEdJA01cx+XrxAvFKJfPooxwoiqalAVw/ktWK6xbyc/jS3g==}
|
||||
peerDependencies:
|
||||
@ -4239,7 +4090,6 @@ packages:
|
||||
dependencies:
|
||||
fast-safe-stringify: 2.1.1
|
||||
individual: 3.0.0
|
||||
dev: true
|
||||
|
||||
/boolbase/1.0.0:
|
||||
resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
|
||||
@ -5849,11 +5699,13 @@ packages:
|
||||
source-map: 0.6.1
|
||||
dev: true
|
||||
|
||||
/eslint-config-prettier/8.5.0:
|
||||
/eslint-config-prettier/8.5.0_eslint@8.15.0:
|
||||
resolution: {integrity: sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==}
|
||||
hasBin: true
|
||||
peerDependencies:
|
||||
eslint: '>=7.0.0'
|
||||
dependencies:
|
||||
eslint: 8.15.0
|
||||
dev: false
|
||||
|
||||
/eslint-define-config/1.4.1:
|
||||
@ -5887,7 +5739,7 @@ packages:
|
||||
eslint-import-resolver-webpack:
|
||||
optional: true
|
||||
dependencies:
|
||||
'@typescript-eslint/parser': 5.24.0
|
||||
'@typescript-eslint/parser': 5.24.0_hcfsmds2fshutdssjqluwm76uu
|
||||
debug: 3.2.7
|
||||
eslint-import-resolver-node: 0.3.6
|
||||
find-up: 2.1.0
|
||||
@ -5895,17 +5747,18 @@ packages:
|
||||
- supports-color
|
||||
dev: false
|
||||
|
||||
/eslint-plugin-eslint-comments/3.2.0:
|
||||
/eslint-plugin-eslint-comments/3.2.0_eslint@8.15.0:
|
||||
resolution: {integrity: sha512-0jkOl0hfojIHHmEHgmNdqv4fmh7300NdpA9FFpF7zaoLvB/QeXOGNLIo86oAveJFrfB1p05kC8hpEMHM8DwWVQ==}
|
||||
engines: {node: '>=6.5.0'}
|
||||
peerDependencies:
|
||||
eslint: '>=4.19.1'
|
||||
dependencies:
|
||||
escape-string-regexp: 1.0.5
|
||||
eslint: 8.15.0
|
||||
ignore: 5.2.0
|
||||
dev: false
|
||||
|
||||
/eslint-plugin-import/2.26.0_fsuobzodmui5yhj7deh6fdsp7i:
|
||||
/eslint-plugin-import/2.26.0_ae4wjpjlz2l2qm7erdt4inxtpu:
|
||||
resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==}
|
||||
engines: {node: '>=4'}
|
||||
peerDependencies:
|
||||
@ -5915,11 +5768,12 @@ packages:
|
||||
'@typescript-eslint/parser':
|
||||
optional: true
|
||||
dependencies:
|
||||
'@typescript-eslint/parser': 5.24.0
|
||||
'@typescript-eslint/parser': 5.24.0_hcfsmds2fshutdssjqluwm76uu
|
||||
array-includes: 3.1.5
|
||||
array.prototype.flat: 1.3.0
|
||||
debug: 2.6.9
|
||||
doctrine: 2.1.0
|
||||
eslint: 8.15.0
|
||||
eslint-import-resolver-node: 0.3.6
|
||||
eslint-module-utils: 2.7.3_bi6p7cyrvxrvblpcgmvuwzeqom
|
||||
has: 1.0.3
|
||||
@ -5935,29 +5789,31 @@ packages:
|
||||
- supports-color
|
||||
dev: false
|
||||
|
||||
/eslint-plugin-jsonc/2.2.1:
|
||||
/eslint-plugin-jsonc/2.2.1_eslint@8.15.0:
|
||||
resolution: {integrity: sha512-ozGjWXhxF3ZfITHmRLuUL6zORh5Dzo0ymwVdxhfFaa4LEtU2S88JIwDYCWAifQLG92x7chqcnZlGUggaPSlfIQ==}
|
||||
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
||||
peerDependencies:
|
||||
eslint: '>=6.0.0'
|
||||
dependencies:
|
||||
eslint-utils: 3.0.0
|
||||
eslint: 8.15.0
|
||||
eslint-utils: 3.0.0_eslint@8.15.0
|
||||
jsonc-eslint-parser: 2.1.0
|
||||
natural-compare: 1.4.0
|
||||
dev: false
|
||||
|
||||
/eslint-plugin-markdown/2.2.1:
|
||||
/eslint-plugin-markdown/2.2.1_eslint@8.15.0:
|
||||
resolution: {integrity: sha512-FgWp4iyYvTFxPwfbxofTvXxgzPsDuSKHQy2S+a8Ve6savbujey+lgrFFbXQA0HPygISpRYWYBjooPzhYSF81iA==}
|
||||
engines: {node: ^8.10.0 || ^10.12.0 || >= 12.0.0}
|
||||
peerDependencies:
|
||||
eslint: '>=6.0.0'
|
||||
dependencies:
|
||||
eslint: 8.15.0
|
||||
mdast-util-from-markdown: 0.8.5
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
dev: false
|
||||
|
||||
/eslint-plugin-prettier/4.0.0_ttcikbw5yztdadzhevg6ml5cuy:
|
||||
/eslint-plugin-prettier/4.0.0_iqftbjqlxzn3ny5nablrkczhqi:
|
||||
resolution: {integrity: sha512-98MqmCJ7vJodoQK359bqQWaxOE0CS8paAz/GgjaZLyex4TTk3g9HugoO89EqWCrFiOqn9EVvcoo7gZzONCWVwQ==}
|
||||
engines: {node: '>=6.0.0'}
|
||||
peerDependencies:
|
||||
@ -5968,11 +5824,13 @@ packages:
|
||||
eslint-config-prettier:
|
||||
optional: true
|
||||
dependencies:
|
||||
eslint-config-prettier: 8.5.0
|
||||
eslint: 8.15.0
|
||||
eslint-config-prettier: 8.5.0_eslint@8.15.0
|
||||
prettier: 2.6.2
|
||||
prettier-linter-helpers: 1.0.0
|
||||
dev: false
|
||||
|
||||
/eslint-plugin-unicorn/42.0.0:
|
||||
/eslint-plugin-unicorn/42.0.0_eslint@8.15.0:
|
||||
resolution: {integrity: sha512-ixBsbhgWuxVaNlPTT8AyfJMlhyC5flCJFjyK3oKE8TRrwBnaHvUbuIkCM1lqg8ryYrFStL/T557zfKzX4GKSlg==}
|
||||
engines: {node: '>=12'}
|
||||
peerDependencies:
|
||||
@ -5981,7 +5839,8 @@ packages:
|
||||
'@babel/helper-validator-identifier': 7.16.7
|
||||
ci-info: 3.3.1
|
||||
clean-regexp: 1.0.0
|
||||
eslint-utils: 3.0.0
|
||||
eslint: 8.15.0
|
||||
eslint-utils: 3.0.0_eslint@8.15.0
|
||||
esquery: 1.4.0
|
||||
indent-string: 4.0.0
|
||||
is-builtin-module: 3.1.0
|
||||
@ -5994,18 +5853,19 @@ packages:
|
||||
strip-indent: 3.0.0
|
||||
dev: false
|
||||
|
||||
/eslint-plugin-vue/8.7.1:
|
||||
/eslint-plugin-vue/8.7.1_eslint@8.15.0:
|
||||
resolution: {integrity: sha512-28sbtm4l4cOzoO1LtzQPxfxhQABararUb1JtqusQqObJpWX2e/gmVyeYVfepizPFne0Q5cILkYGiBoV36L12Wg==}
|
||||
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
||||
peerDependencies:
|
||||
eslint: ^6.2.0 || ^7.0.0 || ^8.0.0
|
||||
dependencies:
|
||||
eslint-utils: 3.0.0
|
||||
eslint: 8.15.0
|
||||
eslint-utils: 3.0.0_eslint@8.15.0
|
||||
natural-compare: 1.4.0
|
||||
nth-check: 2.0.1
|
||||
postcss-selector-parser: 6.0.10
|
||||
semver: 7.3.7
|
||||
vue-eslint-parser: 8.3.0
|
||||
vue-eslint-parser: 8.3.0_eslint@8.15.0
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
dev: false
|
||||
@ -6025,15 +5885,6 @@ packages:
|
||||
esrecurse: 4.3.0
|
||||
estraverse: 5.3.0
|
||||
|
||||
/eslint-utils/3.0.0:
|
||||
resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==}
|
||||
engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0}
|
||||
peerDependencies:
|
||||
eslint: '>=5'
|
||||
dependencies:
|
||||
eslint-visitor-keys: 2.1.0
|
||||
dev: false
|
||||
|
||||
/eslint-utils/3.0.0_eslint@8.15.0:
|
||||
resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==}
|
||||
engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0}
|
||||
@ -6042,7 +5893,6 @@ packages:
|
||||
dependencies:
|
||||
eslint: 8.15.0
|
||||
eslint-visitor-keys: 2.1.0
|
||||
dev: true
|
||||
|
||||
/eslint-visitor-keys/2.1.0:
|
||||
resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==}
|
||||
@ -6318,7 +6168,6 @@ packages:
|
||||
|
||||
/fast-safe-stringify/2.1.1:
|
||||
resolution: {integrity: sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==}
|
||||
dev: true
|
||||
|
||||
/fastq/1.13.0:
|
||||
resolution: {integrity: sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==}
|
||||
@ -7165,7 +7014,6 @@ packages:
|
||||
|
||||
/individual/3.0.0:
|
||||
resolution: {integrity: sha1-58pPhfiVewGHNPKFdQ3CLsL5hi0=}
|
||||
dev: true
|
||||
|
||||
/inflight/1.0.6:
|
||||
resolution: {integrity: sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=}
|
||||
@ -7717,7 +7565,6 @@ packages:
|
||||
|
||||
/json-stringify-safe/5.0.1:
|
||||
resolution: {integrity: sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=}
|
||||
dev: true
|
||||
|
||||
/json5/1.0.1:
|
||||
resolution: {integrity: sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==}
|
||||
@ -8496,7 +8343,6 @@ packages:
|
||||
readable-stream: 3.6.0
|
||||
split2: 3.2.2
|
||||
through2: 4.0.2
|
||||
dev: true
|
||||
|
||||
/next-tick/1.1.0:
|
||||
resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==}
|
||||
@ -9121,7 +8967,6 @@ packages:
|
||||
resolution: {integrity: sha512-PkUpF+qoXTqhOeWL9fu7As8LXsIUZ1WYaJiY/a7McAQzxjk82OF0tibkFXVCDImZtWxbvojFjerkiLb0/q8mew==}
|
||||
engines: {node: '>=10.13.0'}
|
||||
hasBin: true
|
||||
dev: true
|
||||
|
||||
/pretty-bytes/5.6.0:
|
||||
resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==}
|
||||
@ -9340,7 +9185,6 @@ packages:
|
||||
inherits: 2.0.4
|
||||
string_decoder: 1.3.0
|
||||
util-deprecate: 1.0.2
|
||||
dev: true
|
||||
|
||||
/readdirp/2.2.1:
|
||||
resolution: {integrity: sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==}
|
||||
@ -10016,7 +9860,6 @@ packages:
|
||||
resolution: {integrity: sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==}
|
||||
dependencies:
|
||||
readable-stream: 3.6.0
|
||||
dev: true
|
||||
|
||||
/sprintf-js/1.0.3:
|
||||
resolution: {integrity: sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=}
|
||||
@ -10152,7 +9995,6 @@ packages:
|
||||
resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
|
||||
dependencies:
|
||||
safe-buffer: 5.2.1
|
||||
dev: true
|
||||
|
||||
/stringify-object/3.3.0:
|
||||
resolution: {integrity: sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==}
|
||||
@ -10411,7 +10253,6 @@ packages:
|
||||
resolution: {integrity: sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==}
|
||||
dependencies:
|
||||
readable-stream: 3.6.0
|
||||
dev: true
|
||||
|
||||
/time-stamp/1.1.0:
|
||||
resolution: {integrity: sha1-dkpaEa9QVhkhsTPztE5hhofg9cM=}
|
||||
@ -10592,13 +10433,14 @@ packages:
|
||||
/tslib/2.4.0:
|
||||
resolution: {integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==}
|
||||
|
||||
/tsutils/3.21.0:
|
||||
/tsutils/3.21.0_typescript@4.6.4:
|
||||
resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
|
||||
engines: {node: '>= 6'}
|
||||
peerDependencies:
|
||||
typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta'
|
||||
dependencies:
|
||||
tslib: 1.14.1
|
||||
typescript: 4.6.4
|
||||
dev: false
|
||||
|
||||
/tunnel-agent/0.6.0:
|
||||
@ -10683,7 +10525,6 @@ packages:
|
||||
resolution: {integrity: sha512-9ia/jWHIEbo49HfjrLGfKbZSuWo9iTMwXO+Ca3pRsSpbsMbc7/IU8NKdCZVRRBafVPGnoJeFL76ZOAA84I9fEg==}
|
||||
engines: {node: '>=4.2.0'}
|
||||
hasBin: true
|
||||
dev: true
|
||||
|
||||
/uc.micro/1.0.6:
|
||||
resolution: {integrity: sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==}
|
||||
@ -10924,37 +10765,6 @@ packages:
|
||||
- webpack
|
||||
dev: true
|
||||
|
||||
/unplugin-vue-components/0.19.5_vite@2.9.9:
|
||||
resolution: {integrity: sha512-cIC+PdQEXmG+B1gmZGk4hws2xP+00C6pg3FD6ixEgRyW+WF+QXQW/60pc+hUhtDYs1PFE+23K3NY7yvYTnDDTA==}
|
||||
engines: {node: '>=14'}
|
||||
peerDependencies:
|
||||
'@babel/parser': ^7.15.8
|
||||
'@babel/traverse': ^7.15.4
|
||||
vue: 2 || 3
|
||||
peerDependenciesMeta:
|
||||
'@babel/parser':
|
||||
optional: true
|
||||
'@babel/traverse':
|
||||
optional: true
|
||||
dependencies:
|
||||
'@antfu/utils': 0.5.2
|
||||
'@rollup/pluginutils': 4.2.1
|
||||
chokidar: 3.5.3
|
||||
debug: 4.3.4
|
||||
fast-glob: 3.2.11
|
||||
local-pkg: 0.4.1
|
||||
magic-string: 0.26.2
|
||||
minimatch: 5.1.0
|
||||
resolve: 1.22.0
|
||||
unplugin: 0.6.3_vite@2.9.9
|
||||
transitivePeerDependencies:
|
||||
- esbuild
|
||||
- rollup
|
||||
- supports-color
|
||||
- vite
|
||||
- webpack
|
||||
dev: true
|
||||
|
||||
/unplugin-vue-components/0.19.5_vite@2.9.9+vue@3.2.33:
|
||||
resolution: {integrity: sha512-cIC+PdQEXmG+B1gmZGk4hws2xP+00C6pg3FD6ixEgRyW+WF+QXQW/60pc+hUhtDYs1PFE+23K3NY7yvYTnDDTA==}
|
||||
engines: {node: '>=14'}
|
||||
@ -11273,6 +11083,9 @@ packages:
|
||||
engines: {node: '>=14'}
|
||||
peerDependencies:
|
||||
vite: ^2.9.0
|
||||
peerDependenciesMeta:
|
||||
vite:
|
||||
optional: true
|
||||
dependencies:
|
||||
'@rollup/pluginutils': 4.2.1
|
||||
debug: 4.3.4
|
||||
@ -11300,6 +11113,9 @@ packages:
|
||||
resolution: {integrity: sha512-KYD+cnS5ExLF3T28NkfzBLZ53ehHlp+qMhHGFNh0zlVGpFHrJkL2v9wd4AMi7ZkBTffgeNatIFiv8rhCsMSxBQ==}
|
||||
peerDependencies:
|
||||
vite: ^2.0.0
|
||||
peerDependenciesMeta:
|
||||
vite:
|
||||
optional: true
|
||||
dependencies:
|
||||
debug: 4.3.4
|
||||
fast-glob: 3.2.11
|
||||
@ -11418,19 +11234,6 @@ packages:
|
||||
- stylus
|
||||
dev: true
|
||||
|
||||
/vue-demi/0.12.5:
|
||||
resolution: {integrity: sha512-BREuTgTYlUr0zw0EZn3hnhC3I6gPWv+Kwh4MCih6QcAeaTlaIX0DwOVN0wHej7hSvDPecz4jygy/idsgKfW58Q==}
|
||||
engines: {node: '>=12'}
|
||||
hasBin: true
|
||||
requiresBuild: true
|
||||
peerDependencies:
|
||||
'@vue/composition-api': ^1.0.0-rc.1
|
||||
vue: ^3.0.0-0 || ^2.6.0
|
||||
peerDependenciesMeta:
|
||||
'@vue/composition-api':
|
||||
optional: true
|
||||
dev: false
|
||||
|
||||
/vue-demi/0.12.5_vue@3.2.33:
|
||||
resolution: {integrity: sha512-BREuTgTYlUr0zw0EZn3hnhC3I6gPWv+Kwh4MCih6QcAeaTlaIX0DwOVN0wHej7hSvDPecz4jygy/idsgKfW58Q==}
|
||||
engines: {node: '>=12'}
|
||||
@ -11446,13 +11249,14 @@ packages:
|
||||
vue: 3.2.33
|
||||
dev: false
|
||||
|
||||
/vue-eslint-parser/8.3.0:
|
||||
/vue-eslint-parser/8.3.0_eslint@8.15.0:
|
||||
resolution: {integrity: sha512-dzHGG3+sYwSf6zFBa0Gi9ZDshD7+ad14DGOdTLjruRVgZXe2J+DcZ9iUhyR48z5g1PqRa20yt3Njna/veLJL/g==}
|
||||
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
||||
peerDependencies:
|
||||
eslint: '>=6.0.0'
|
||||
dependencies:
|
||||
debug: 4.3.4
|
||||
eslint: 8.15.0
|
||||
eslint-scope: 7.1.1
|
||||
eslint-visitor-keys: 3.3.0
|
||||
espree: 9.3.2
|
||||
@ -11463,14 +11267,6 @@ packages:
|
||||
- supports-color
|
||||
dev: false
|
||||
|
||||
/vue-router/4.0.15:
|
||||
resolution: {integrity: sha512-xa+pIN9ZqORdIW1MkN2+d9Ui2pCM1b/UMgwYUCZOiFYHAvz/slKKBDha8DLrh5aCG/RibtrpyhKjKOZ85tYyWg==}
|
||||
peerDependencies:
|
||||
vue: ^3.2.0
|
||||
dependencies:
|
||||
'@vue/devtools-api': 6.1.4
|
||||
dev: true
|
||||
|
||||
/vue-router/4.0.15_vue@3.2.33:
|
||||
resolution: {integrity: sha512-xa+pIN9ZqORdIW1MkN2+d9Ui2pCM1b/UMgwYUCZOiFYHAvz/slKKBDha8DLrh5aCG/RibtrpyhKjKOZ85tYyWg==}
|
||||
peerDependencies:
|
||||
|
Loading…
x
Reference in New Issue
Block a user