chore: update deps

This commit is contained in:
Anthony Fu 2021-11-19 04:02:15 +08:00
parent 50cba5ac31
commit 02ccf3d794
3 changed files with 230 additions and 207 deletions

8
auto-imports.d.ts vendored
View File

@ -11,8 +11,11 @@ declare global {
const createApp: typeof import('vue')['createApp'] const createApp: typeof import('vue')['createApp']
const createEventHook: typeof import('@vueuse/core')['createEventHook'] const createEventHook: typeof import('@vueuse/core')['createEventHook']
const createGlobalState: typeof import('@vueuse/core')['createGlobalState'] const createGlobalState: typeof import('@vueuse/core')['createGlobalState']
const createReactiveFn: typeof import('@vueuse/core')['createReactiveFn']
const createSharedComposable: typeof import('@vueuse/core')['createSharedComposable'] const createSharedComposable: typeof import('@vueuse/core')['createSharedComposable']
const createUnrefFn: typeof import('@vueuse/core')['createUnrefFn']
const customRef: typeof import('vue')['customRef'] const customRef: typeof import('vue')['customRef']
const debouncedRef: typeof import('@vueuse/core')['debouncedRef']
const debouncedWatch: typeof import('@vueuse/core')['debouncedWatch'] const debouncedWatch: typeof import('@vueuse/core')['debouncedWatch']
const defineAsyncComponent: typeof import('vue')['defineAsyncComponent'] const defineAsyncComponent: typeof import('vue')['defineAsyncComponent']
const defineComponent: typeof import('vue')['defineComponent'] const defineComponent: typeof import('vue')['defineComponent']
@ -61,6 +64,7 @@ declare global {
const shallowRef: typeof import('vue')['shallowRef'] const shallowRef: typeof import('vue')['shallowRef']
const syncRef: typeof import('@vueuse/core')['syncRef'] const syncRef: typeof import('@vueuse/core')['syncRef']
const templateRef: typeof import('@vueuse/core')['templateRef'] const templateRef: typeof import('@vueuse/core')['templateRef']
const throttledRef: typeof import('@vueuse/core')['throttledRef']
const throttledWatch: typeof import('@vueuse/core')['throttledWatch'] const throttledWatch: typeof import('@vueuse/core')['throttledWatch']
const toRaw: typeof import('vue')['toRaw'] const toRaw: typeof import('vue')['toRaw']
const toReactive: typeof import('@vueuse/core')['toReactive'] const toReactive: typeof import('@vueuse/core')['toReactive']
@ -104,9 +108,11 @@ declare global {
const useEventBus: typeof import('@vueuse/core')['useEventBus'] const useEventBus: typeof import('@vueuse/core')['useEventBus']
const useEventListener: typeof import('@vueuse/core')['useEventListener'] const useEventListener: typeof import('@vueuse/core')['useEventListener']
const useEventSource: typeof import('@vueuse/core')['useEventSource'] const useEventSource: typeof import('@vueuse/core')['useEventSource']
const useEyeDropper: typeof import('@vueuse/core')['useEyeDropper']
const useFavicon: typeof import('@vueuse/core')['useFavicon'] const useFavicon: typeof import('@vueuse/core')['useFavicon']
const useFetch: typeof import('@vueuse/core')['useFetch'] const useFetch: typeof import('@vueuse/core')['useFetch']
const useFPS: typeof import('@vueuse/core')['useFPS'] const useFocus: typeof import('@vueuse/core')['useFocus']
const useFps: typeof import('@vueuse/core')['useFps']
const useFullscreen: typeof import('@vueuse/core')['useFullscreen'] const useFullscreen: typeof import('@vueuse/core')['useFullscreen']
const useGeolocation: typeof import('@vueuse/core')['useGeolocation'] const useGeolocation: typeof import('@vueuse/core')['useGeolocation']
const useIdle: typeof import('@vueuse/core')['useIdle'] const useIdle: typeof import('@vueuse/core')['useIdle']

View File

@ -6,27 +6,27 @@
"preview": "vite preview" "preview": "vite preview"
}, },
"dependencies": { "dependencies": {
"@vueuse/core": "^6.8.0", "@vueuse/core": "^6.9.1",
"vue": "^3.2.21", "vue": "^3.2.22",
"vue-demi": "^0.12.1", "vue-demi": "^0.12.1",
"vue-router": "^4.0.12" "vue-router": "^4.0.12"
}, },
"devDependencies": { "devDependencies": {
"@antfu/eslint-config": "^0.10.0", "@antfu/eslint-config": "^0.10.0",
"@iconify-json/carbon": "^1.0.9", "@iconify-json/carbon": "^1.0.10",
"@types/node": "^16.11.7", "@types/node": "^16.11.8",
"@unocss/preset-icons": "^0.7.2", "@unocss/preset-icons": "^0.11.0",
"@unocss/reset": "^0.7.2", "@unocss/reset": "^0.11.0",
"@vitejs/plugin-vue": "^1.9.4", "@vitejs/plugin-vue": "^1.9.4",
"cross-env": "^7.0.3", "cross-env": "^7.0.3",
"eslint": "^8.2.0", "eslint": "^8.2.0",
"pnpm": "^6.20.4", "pnpm": "^6.22.2",
"typescript": "^4.4.4", "typescript": "^4.5.2",
"unocss": "^0.7.2", "unocss": "^0.11.0",
"unplugin-auto-import": "^0.4.13", "unplugin-auto-import": "^0.4.14",
"unplugin-icons": "^0.12.18", "unplugin-icons": "^0.12.18",
"unplugin-vue-components": "^0.17.2", "unplugin-vue-components": "^0.17.2",
"vite": "^2.6.13", "vite": "^2.6.14",
"vite-plugin-pages": "^0.18.2" "vite-plugin-pages": "^0.18.2"
} }
} }

407
pnpm-lock.yaml generated
View File

@ -2,49 +2,49 @@ lockfileVersion: 5.3
specifiers: specifiers:
'@antfu/eslint-config': ^0.10.0 '@antfu/eslint-config': ^0.10.0
'@iconify-json/carbon': ^1.0.9 '@iconify-json/carbon': ^1.0.10
'@types/node': ^16.11.7 '@types/node': ^16.11.8
'@unocss/preset-icons': ^0.7.2 '@unocss/preset-icons': ^0.11.0
'@unocss/reset': ^0.7.2 '@unocss/reset': ^0.11.0
'@vitejs/plugin-vue': ^1.9.4 '@vitejs/plugin-vue': ^1.9.4
'@vueuse/core': ^6.8.0 '@vueuse/core': ^6.9.1
cross-env: ^7.0.3 cross-env: ^7.0.3
eslint: ^8.2.0 eslint: ^8.2.0
pnpm: ^6.20.4 pnpm: ^6.22.2
typescript: ^4.4.4 typescript: ^4.5.2
unocss: ^0.7.2 unocss: ^0.11.0
unplugin-auto-import: ^0.4.13 unplugin-auto-import: ^0.4.14
unplugin-icons: ^0.12.18 unplugin-icons: ^0.12.18
unplugin-vue-components: ^0.17.2 unplugin-vue-components: ^0.17.2
vite: ^2.6.13 vite: ^2.6.14
vite-plugin-pages: ^0.18.2 vite-plugin-pages: ^0.18.2
vue: ^3.2.21 vue: ^3.2.22
vue-demi: ^0.12.1 vue-demi: ^0.12.1
vue-router: ^4.0.12 vue-router: ^4.0.12
dependencies: dependencies:
'@vueuse/core': 6.8.0_vue@3.2.21 '@vueuse/core': 6.9.1_vue@3.2.22
vue: 3.2.21 vue: 3.2.22
vue-demi: 0.12.1_vue@3.2.21 vue-demi: 0.12.1_vue@3.2.22
vue-router: 4.0.12_vue@3.2.21 vue-router: 4.0.12_vue@3.2.22
devDependencies: devDependencies:
'@antfu/eslint-config': 0.10.0_eslint@8.2.0+typescript@4.4.4 '@antfu/eslint-config': 0.10.0_eslint@8.2.0+typescript@4.5.2
'@iconify-json/carbon': 1.0.9 '@iconify-json/carbon': 1.0.10
'@types/node': 16.11.7 '@types/node': 16.11.8
'@unocss/preset-icons': 0.7.2 '@unocss/preset-icons': 0.11.0
'@unocss/reset': 0.7.2 '@unocss/reset': 0.11.0
'@vitejs/plugin-vue': 1.9.4_vite@2.6.13 '@vitejs/plugin-vue': 1.9.4_vite@2.6.14
cross-env: 7.0.3 cross-env: 7.0.3
eslint: 8.2.0 eslint: 8.2.0
pnpm: 6.20.4 pnpm: 6.22.2
typescript: 4.4.4 typescript: 4.5.2
unocss: 0.7.2 unocss: 0.11.0
unplugin-auto-import: 0.4.13_@vueuse+core@6.8.0+vite@2.6.13 unplugin-auto-import: 0.4.14_@vueuse+core@6.9.1+vite@2.6.14
unplugin-icons: 0.12.18_vite@2.6.13 unplugin-icons: 0.12.18_vite@2.6.14
unplugin-vue-components: 0.17.2_vite@2.6.13+vue@3.2.21 unplugin-vue-components: 0.17.2_vite@2.6.14+vue@3.2.22
vite: 2.6.13 vite: 2.6.14
vite-plugin-pages: 0.18.2_vite@2.6.13 vite-plugin-pages: 0.18.2_vite@2.6.14
packages: packages:
@ -69,12 +69,12 @@ packages:
- supports-color - supports-color
dev: true dev: true
/@antfu/eslint-config-react/0.10.0_eslint@8.2.0+typescript@4.4.4: /@antfu/eslint-config-react/0.10.0_eslint@8.2.0+typescript@4.5.2:
resolution: {integrity: sha512-5gqtzkOOgpDKj3uVTMS7DyfLIkYntXfqwLeGSZbIiH6N57LWk3cYyHBJWne2Srg7yQJYfEllESDxeihX0ttbhw==} resolution: {integrity: sha512-5gqtzkOOgpDKj3uVTMS7DyfLIkYntXfqwLeGSZbIiH6N57LWk3cYyHBJWne2Srg7yQJYfEllESDxeihX0ttbhw==}
peerDependencies: peerDependencies:
eslint: '>=7.4.0' eslint: '>=7.4.0'
dependencies: dependencies:
'@antfu/eslint-config-ts': 0.10.0_eslint@8.2.0+typescript@4.4.4 '@antfu/eslint-config-ts': 0.10.0_eslint@8.2.0+typescript@4.5.2
eslint: 8.2.0 eslint: 8.2.0
eslint-plugin-react: 7.26.1_eslint@8.2.0 eslint-plugin-react: 7.26.1_eslint@8.2.0
transitivePeerDependencies: transitivePeerDependencies:
@ -82,27 +82,27 @@ packages:
- typescript - typescript
dev: true dev: true
/@antfu/eslint-config-ts/0.10.0_eslint@8.2.0+typescript@4.4.4: /@antfu/eslint-config-ts/0.10.0_eslint@8.2.0+typescript@4.5.2:
resolution: {integrity: sha512-4KZ5WmdAYUK0cZdmgzT65MqTTTFqwQNt0HB8re9hi4Te99u+H5QxODUlE5BPSL9qHEfnhJbrEp8xtnKbwkoIIQ==} resolution: {integrity: sha512-4KZ5WmdAYUK0cZdmgzT65MqTTTFqwQNt0HB8re9hi4Te99u+H5QxODUlE5BPSL9qHEfnhJbrEp8xtnKbwkoIIQ==}
peerDependencies: peerDependencies:
eslint: '>=7.4.0' eslint: '>=7.4.0'
typescript: '>=3.9' typescript: '>=3.9'
dependencies: dependencies:
'@antfu/eslint-config-basic': 0.10.0_eslint@8.2.0 '@antfu/eslint-config-basic': 0.10.0_eslint@8.2.0
'@typescript-eslint/eslint-plugin': 5.3.1_4653b7803b7453f5f37717b7e1448517 '@typescript-eslint/eslint-plugin': 5.3.1_0b03015ac9d0c5d1a285585c9a5df9b9
'@typescript-eslint/parser': 5.3.1_eslint@8.2.0+typescript@4.4.4 '@typescript-eslint/parser': 5.3.1_eslint@8.2.0+typescript@4.5.2
eslint: 8.2.0 eslint: 8.2.0
typescript: 4.4.4 typescript: 4.5.2
transitivePeerDependencies: transitivePeerDependencies:
- supports-color - supports-color
dev: true dev: true
/@antfu/eslint-config-vue/0.10.0_eslint@8.2.0+typescript@4.4.4: /@antfu/eslint-config-vue/0.10.0_eslint@8.2.0+typescript@4.5.2:
resolution: {integrity: sha512-yx0A0yaMvAxhqSzf6IZZiK1z43JwLdDLa659hhWvtVIixGNBG+NvqqqFnhV5ri3jM9sOlbKy54wmF3v34mmmqQ==} resolution: {integrity: sha512-yx0A0yaMvAxhqSzf6IZZiK1z43JwLdDLa659hhWvtVIixGNBG+NvqqqFnhV5ri3jM9sOlbKy54wmF3v34mmmqQ==}
peerDependencies: peerDependencies:
eslint: '>=7.4.0' eslint: '>=7.4.0'
dependencies: dependencies:
'@antfu/eslint-config-ts': 0.10.0_eslint@8.2.0+typescript@4.4.4 '@antfu/eslint-config-ts': 0.10.0_eslint@8.2.0+typescript@4.5.2
eslint: 8.2.0 eslint: 8.2.0
eslint-plugin-vue: 7.19.1_eslint@8.2.0 eslint-plugin-vue: 7.19.1_eslint@8.2.0
transitivePeerDependencies: transitivePeerDependencies:
@ -110,15 +110,15 @@ packages:
- typescript - typescript
dev: true dev: true
/@antfu/eslint-config/0.10.0_eslint@8.2.0+typescript@4.4.4: /@antfu/eslint-config/0.10.0_eslint@8.2.0+typescript@4.5.2:
resolution: {integrity: sha512-9oRO0E1Q1NHyaf8nWMSVrd6OjVhQaWVBhgs6BlJiDsiF244rEzjd/zrGoytn5WY0cbePSDzkYPb10Wo5Unlt/w==} resolution: {integrity: sha512-9oRO0E1Q1NHyaf8nWMSVrd6OjVhQaWVBhgs6BlJiDsiF244rEzjd/zrGoytn5WY0cbePSDzkYPb10Wo5Unlt/w==}
peerDependencies: peerDependencies:
eslint: '>=7.4.0' eslint: '>=7.4.0'
dependencies: dependencies:
'@antfu/eslint-config-react': 0.10.0_eslint@8.2.0+typescript@4.4.4 '@antfu/eslint-config-react': 0.10.0_eslint@8.2.0+typescript@4.5.2
'@antfu/eslint-config-vue': 0.10.0_eslint@8.2.0+typescript@4.4.4 '@antfu/eslint-config-vue': 0.10.0_eslint@8.2.0+typescript@4.5.2
'@typescript-eslint/eslint-plugin': 5.3.1_4653b7803b7453f5f37717b7e1448517 '@typescript-eslint/eslint-plugin': 5.3.1_0b03015ac9d0c5d1a285585c9a5df9b9
'@typescript-eslint/parser': 5.3.1_eslint@8.2.0+typescript@4.4.4 '@typescript-eslint/parser': 5.3.1_eslint@8.2.0+typescript@4.5.2
eslint: 8.2.0 eslint: 8.2.0
eslint-config-standard: 16.0.3_73329a780b456f64419f853e0fc044f5 eslint-config-standard: 16.0.3_73329a780b456f64419f853e0fc044f5
eslint-plugin-eslint-comments: 3.2.0_eslint@8.2.0 eslint-plugin-eslint-comments: 3.2.0_eslint@8.2.0
@ -408,8 +408,8 @@ packages:
resolution: {integrity: sha512-wdppn25U8z/2yiaT6YGquE6X8sSv7hNMWSXYSSU1jGv/yd6XqjXgTDJ8KP4NgjTXfJ3GbRjeeb8RTV7a/VpM+w==} resolution: {integrity: sha512-wdppn25U8z/2yiaT6YGquE6X8sSv7hNMWSXYSSU1jGv/yd6XqjXgTDJ8KP4NgjTXfJ3GbRjeeb8RTV7a/VpM+w==}
dev: true dev: true
/@iconify-json/carbon/1.0.9: /@iconify-json/carbon/1.0.10:
resolution: {integrity: sha512-ZId8OBOIM8/nA+6NrpxgAWhNfVPY+hT+VlmVhZEXqwZoAkVS4ygB0bCBoanVV6OHA5wONc9hr6UnUQ990paQLA==} resolution: {integrity: sha512-Tw/bjIWIJ8cx3lTqqvETkui3Z7dNW1j/kYTckAmjiGNJhlMi7b4pL7iFyxnkb3Y7dpia1ZNQOwzHUXMxxxk6WA==}
dependencies: dependencies:
'@iconify/types': 1.0.10 '@iconify/types': 1.0.10
dev: true dev: true
@ -465,8 +465,8 @@ packages:
resolution: {integrity: sha1-7ihweulOEdK4J7y+UnC86n8+ce4=} resolution: {integrity: sha1-7ihweulOEdK4J7y+UnC86n8+ce4=}
dev: true dev: true
/@types/node/16.11.7: /@types/node/16.11.8:
resolution: {integrity: sha512-QB5D2sqfSjCmTuWcBWyJ+/44bcjO7VbjSbOE0ucoVbAsSNQc4Lt6QkgkVXkTDwkL4z/beecZNDvVX15D4P8Jbw==} resolution: {integrity: sha512-hmT5gfpRkkHr7DZZHMf3jBe/zNcVGN+jXSL2f8nAsYfBPxQFToKwQlS/zES4Sjp488Bi73i+p6bvrNRRGU0x9Q==}
dev: true dev: true
/@types/normalize-package-data/2.4.1: /@types/normalize-package-data/2.4.1:
@ -477,7 +477,7 @@ packages:
resolution: {integrity: sha512-5eQEtSCoESnh2FsiLTxE121IiE60hnMqcb435fShf4bpLRjEu1Eoekht23y6zXS9Ts3l+Szu3TARnTsA0GkOkQ==} resolution: {integrity: sha512-5eQEtSCoESnh2FsiLTxE121IiE60hnMqcb435fShf4bpLRjEu1Eoekht23y6zXS9Ts3l+Szu3TARnTsA0GkOkQ==}
dev: true dev: true
/@typescript-eslint/eslint-plugin/5.3.1_4653b7803b7453f5f37717b7e1448517: /@typescript-eslint/eslint-plugin/5.3.1_0b03015ac9d0c5d1a285585c9a5df9b9:
resolution: {integrity: sha512-cFImaoIr5Ojj358xI/SDhjog57OK2NqlpxwdcgyxDA3bJlZcJq5CPzUXtpD7CxI2Hm6ATU7w5fQnnkVnmwpHqw==} resolution: {integrity: sha512-cFImaoIr5Ojj358xI/SDhjog57OK2NqlpxwdcgyxDA3bJlZcJq5CPzUXtpD7CxI2Hm6ATU7w5fQnnkVnmwpHqw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies: peerDependencies:
@ -488,8 +488,8 @@ packages:
typescript: typescript:
optional: true optional: true
dependencies: dependencies:
'@typescript-eslint/experimental-utils': 5.3.1_eslint@8.2.0+typescript@4.4.4 '@typescript-eslint/experimental-utils': 5.3.1_eslint@8.2.0+typescript@4.5.2
'@typescript-eslint/parser': 5.3.1_eslint@8.2.0+typescript@4.4.4 '@typescript-eslint/parser': 5.3.1_eslint@8.2.0+typescript@4.5.2
'@typescript-eslint/scope-manager': 5.3.1 '@typescript-eslint/scope-manager': 5.3.1
debug: 4.3.2 debug: 4.3.2
eslint: 8.2.0 eslint: 8.2.0
@ -497,13 +497,13 @@ packages:
ignore: 5.1.8 ignore: 5.1.8
regexpp: 3.2.0 regexpp: 3.2.0
semver: 7.3.5 semver: 7.3.5
tsutils: 3.21.0_typescript@4.4.4 tsutils: 3.21.0_typescript@4.5.2
typescript: 4.4.4 typescript: 4.5.2
transitivePeerDependencies: transitivePeerDependencies:
- supports-color - supports-color
dev: true dev: true
/@typescript-eslint/experimental-utils/5.3.1_eslint@8.2.0+typescript@4.4.4: /@typescript-eslint/experimental-utils/5.3.1_eslint@8.2.0+typescript@4.5.2:
resolution: {integrity: sha512-RgFn5asjZ5daUhbK5Sp0peq0SSMytqcrkNfU4pnDma2D8P3ElZ6JbYjY8IMSFfZAJ0f3x3tnO3vXHweYg0g59w==} resolution: {integrity: sha512-RgFn5asjZ5daUhbK5Sp0peq0SSMytqcrkNfU4pnDma2D8P3ElZ6JbYjY8IMSFfZAJ0f3x3tnO3vXHweYg0g59w==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies: peerDependencies:
@ -512,7 +512,7 @@ packages:
'@types/json-schema': 7.0.9 '@types/json-schema': 7.0.9
'@typescript-eslint/scope-manager': 5.3.1 '@typescript-eslint/scope-manager': 5.3.1
'@typescript-eslint/types': 5.3.1 '@typescript-eslint/types': 5.3.1
'@typescript-eslint/typescript-estree': 5.3.1_typescript@4.4.4 '@typescript-eslint/typescript-estree': 5.3.1_typescript@4.5.2
eslint: 8.2.0 eslint: 8.2.0
eslint-scope: 5.1.1 eslint-scope: 5.1.1
eslint-utils: 3.0.0_eslint@8.2.0 eslint-utils: 3.0.0_eslint@8.2.0
@ -521,7 +521,7 @@ packages:
- typescript - typescript
dev: true dev: true
/@typescript-eslint/parser/5.3.1_eslint@8.2.0+typescript@4.4.4: /@typescript-eslint/parser/5.3.1_eslint@8.2.0+typescript@4.5.2:
resolution: {integrity: sha512-TD+ONlx5c+Qhk21x9gsJAMRohWAUMavSOmJgv3JGy9dgPhuBd5Wok0lmMClZDyJNLLZK1JRKiATzCKZNUmoyfw==} resolution: {integrity: sha512-TD+ONlx5c+Qhk21x9gsJAMRohWAUMavSOmJgv3JGy9dgPhuBd5Wok0lmMClZDyJNLLZK1JRKiATzCKZNUmoyfw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies: peerDependencies:
@ -533,10 +533,10 @@ packages:
dependencies: dependencies:
'@typescript-eslint/scope-manager': 5.3.1 '@typescript-eslint/scope-manager': 5.3.1
'@typescript-eslint/types': 5.3.1 '@typescript-eslint/types': 5.3.1
'@typescript-eslint/typescript-estree': 5.3.1_typescript@4.4.4 '@typescript-eslint/typescript-estree': 5.3.1_typescript@4.5.2
debug: 4.3.2 debug: 4.3.2
eslint: 8.2.0 eslint: 8.2.0
typescript: 4.4.4 typescript: 4.5.2
transitivePeerDependencies: transitivePeerDependencies:
- supports-color - supports-color
dev: true dev: true
@ -554,7 +554,7 @@ packages:
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true dev: true
/@typescript-eslint/typescript-estree/5.3.1_typescript@4.4.4: /@typescript-eslint/typescript-estree/5.3.1_typescript@4.5.2:
resolution: {integrity: sha512-PwFbh/PKDVo/Wct6N3w+E4rLZxUDgsoII/GrWM2A62ETOzJd4M6s0Mu7w4CWsZraTbaC5UQI+dLeyOIFF1PquQ==} resolution: {integrity: sha512-PwFbh/PKDVo/Wct6N3w+E4rLZxUDgsoII/GrWM2A62ETOzJd4M6s0Mu7w4CWsZraTbaC5UQI+dLeyOIFF1PquQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies: peerDependencies:
@ -569,8 +569,8 @@ packages:
globby: 11.0.4 globby: 11.0.4
is-glob: 4.0.3 is-glob: 4.0.3
semver: 7.3.5 semver: 7.3.5
tsutils: 3.21.0_typescript@4.4.4 tsutils: 3.21.0_typescript@4.5.2
typescript: 4.4.4 typescript: 4.5.2
transitivePeerDependencies: transitivePeerDependencies:
- supports-color - supports-color
dev: true dev: true
@ -583,161 +583,177 @@ packages:
eslint-visitor-keys: 3.0.0 eslint-visitor-keys: 3.0.0
dev: true dev: true
/@unocss/config/0.7.2: /@unocss/cli/0.11.0:
resolution: {integrity: sha512-og+iJVsA9YR/ppvfGfj0tLLh0PW473GdWYU0fzgSlMhhG/vpzkXyk3RWFEKv2kpve4fw/nQI1zHjQKJlZuoiBg==} resolution: {integrity: sha512-Z/90H3M/VhnLcsVB5dLdWEWKqJWPqYClN3xTh6F/aX4yA4K2UMk0dtAyljP10kxoZwQq+Z09cBU5tXl3b+cHow==}
engines: {node: '>=14'}
hasBin: true
dependencies:
'@unocss/config': 0.11.0
'@unocss/core': 0.11.0
'@unocss/preset-uno': 0.11.0
cac: 6.7.12
chokidar: 3.5.2
colorette: 2.0.16
consola: 2.15.3
fast-glob: 3.2.7
pathe: 0.2.0
dev: true
/@unocss/config/0.11.0:
resolution: {integrity: sha512-lQWSeqhM0oD6iymrRXOYDnv9Ack4IfQYvChUAMzlm+fbVEhf0r0dBQ7SX9U99VGh4Rlrjmj4OtN1RIHFpJt+7w==}
engines: {node: '>=14'} engines: {node: '>=14'}
dependencies: dependencies:
'@unocss/core': 0.7.2 '@unocss/core': 0.11.0
sucrase: 3.20.3 sucrase: 3.20.3
dev: true dev: true
/@unocss/core/0.7.2: /@unocss/core/0.11.0:
resolution: {integrity: sha512-z7wPRSbyHIwHYMfa6+h8nWy5purKr5VjmGoUemV76QIz9ntvkM+uDLETa/0OM8X/YtW9Y4pb0cBSdnGUflzDuQ==} resolution: {integrity: sha512-LqsBnhOuEdj3C67vmqNoiCDN5Zr/dcer3xLuIWAaipTrNHiSEJ491dmjqYBAgICvC+AUN5KMcmvFhH0nnZE9TQ==}
dev: true dev: true
/@unocss/inspector/0.7.2: /@unocss/inspector/0.11.0:
resolution: {integrity: sha512-wmCtNqLIZlpxpkGhBV5F6u1TU4z6mfsQMFwjoEliXDgmYvh3I/2BCJRLCPscH3Tgv5qRtmUh0buFidrHvS661A==} resolution: {integrity: sha512-jl7fLrIFiwsQIUClaLCMOgmcksi23D8a9qc7OdZ+ptCSDVQgvKjyTJnxqdjeSe5Rxz6+ZQIOgu1EFt6Od37FIA==}
dependencies: dependencies:
gzip-size: 6.0.0 gzip-size: 6.0.0
sirv: 1.0.18 sirv: 1.0.18
dev: true dev: true
/@unocss/preset-attributify/0.7.2: /@unocss/preset-attributify/0.11.0:
resolution: {integrity: sha512-5L3gZnvnOBt2lRsDsk58541YfECtyAkSXAjrDug9yWuSw/uTcvxpWw1JzdfBj4PD3RAW1Idu9nDnMJnt7Wva8g==} resolution: {integrity: sha512-/YE+0g4O/PYmAQj/NuhE0UtXMZMfdroKcELXoU9ce9U99EW5/BgC1A9Zbuy5HNw/lSp/5pNaPJlOK8g5NwySfg==}
dependencies: dependencies:
'@unocss/core': 0.7.2 '@unocss/core': 0.11.0
dev: true dev: true
/@unocss/preset-icons/0.7.2: /@unocss/preset-icons/0.11.0:
resolution: {integrity: sha512-a4rDVUSsLunfhmlx5o07y2XRJoLM+N9oxSGndNYp+DtlYqi87FERjRKWv2Hwflpw3jESG2d5l2dmr29gOPodVg==} resolution: {integrity: sha512-cnIIkmZM2hPxhVD9UugEcWUiNEme3rxyN3rylQThXlHvptMhh6kj6DjNb8KdqHk7v8QlSvlzOtrUyswdjmYEAA==}
dependencies: dependencies:
'@iconify/utils': 1.0.18 '@iconify/utils': 1.0.18
'@unocss/core': 0.7.2 '@unocss/core': 0.11.0
local-pkg: 0.4.0 local-pkg: 0.4.0
dev: true dev: true
/@unocss/preset-uno/0.7.2: /@unocss/preset-uno/0.11.0:
resolution: {integrity: sha512-U9kKuxSF25SFGJ5SXF9wle8CXHHdVd+382/Z2Od10xj8JehyMzR/WY5SOlzMH4iLkmfyiPwZwfbIypV2w8huow==} resolution: {integrity: sha512-gZkMcg33NbDLa6bFEALhYRpWF6ynIfUH1Sdf5iF9XMe3Kbi2JIiGiOGcToCz1R7E8VAKIUijLUHNlnSh/2cgeA==}
dependencies: dependencies:
'@unocss/core': 0.7.2 '@unocss/core': 0.11.0
dev: true dev: true
/@unocss/reset/0.7.2: /@unocss/reset/0.11.0:
resolution: {integrity: sha512-vWLT8H1bi5Pvwyu0uHi3UbyuU+zEhXnc6ejvxKp6BkPrP5gQAwSopGnUACUvsl851NFMWo/ZAbTMt5Hp0JAgtA==} resolution: {integrity: sha512-XeQGLKxCuiVl/Ukil3g5FQcaHTBp7GBn+/i9gtGSH1hsLS3hfJNsqM4EgWN+VuLODG7xC0O1VorYBnjiEJeCPA==}
dev: true dev: true
/@unocss/scope/0.7.2: /@unocss/scope/0.11.0:
resolution: {integrity: sha512-mfC/0R9atYlaTVdJKT51/W4ZMWiHVuzierwA325jvlWYMFu/2/Y3k7b24PxOrRrVD6K1e97y/u9/TjUXUIPcbQ==} resolution: {integrity: sha512-d0P+jr2piWCAPALynXVm1jml82WzMQgwlVUOaZD5XfBvDH+w8cQRnpsM3tc0X0M9wrOGXEAV2TEIRkTYwwC2Aw==}
dev: true dev: true
/@unocss/vite/0.7.2: /@unocss/vite/0.11.0:
resolution: {integrity: sha512-e5hJzCtmGJiymBFCoAVOuLPOuy2v7nZdsz1E3238fCs77jk2y1UR7tDDSc2tpTTC90vXhzwv+V3vC7b+NP5bgQ==} resolution: {integrity: sha512-sqM4mFMjjvyb0O/xR+EEnxt+1TQZ8H98EoIMVkxfMVm9CEWPZIBPDgCrRn6BArzqo2uTD4EUAZKMPxUJlq61RA==}
dependencies: dependencies:
'@rollup/pluginutils': 4.1.1 '@rollup/pluginutils': 4.1.1
'@unocss/config': 0.7.2 '@unocss/config': 0.11.0
'@unocss/core': 0.7.2 '@unocss/core': 0.11.0
'@unocss/inspector': 0.7.2 '@unocss/inspector': 0.11.0
'@unocss/scope': 0.7.2 '@unocss/scope': 0.11.0
dev: true dev: true
/@vitejs/plugin-vue/1.9.4_vite@2.6.13: /@vitejs/plugin-vue/1.9.4_vite@2.6.14:
resolution: {integrity: sha512-0CZqaCoChriPTTtGkERy1LGPcYjGFpi2uYRhBPIkqJqUGV5JnJFhQAgh6oH9j5XZHfrRaisX8W0xSpO4T7S78A==} resolution: {integrity: sha512-0CZqaCoChriPTTtGkERy1LGPcYjGFpi2uYRhBPIkqJqUGV5JnJFhQAgh6oH9j5XZHfrRaisX8W0xSpO4T7S78A==}
engines: {node: '>=12.0.0'} engines: {node: '>=12.0.0'}
peerDependencies: peerDependencies:
vite: ^2.5.10 vite: ^2.5.10
dependencies: dependencies:
vite: 2.6.13 vite: 2.6.14
dev: true dev: true
/@vue/compiler-core/3.2.21: /@vue/compiler-core/3.2.22:
resolution: {integrity: sha512-NhhiQZNG71KNq1h5pMW/fAXdTF7lJRaSI7LDm2edhHXVz1ROMICo8SreUmQnSf4Fet0UPBVqJ988eF4+936iDQ==} resolution: {integrity: sha512-uAkovrVeTcjzpiM4ECmVaMrv/bjdgAaLzvjcGqQPBEyUrcqsCgccT9fHJ/+hWVGhyMahmBwLqcn4guULNx7sdw==}
dependencies: dependencies:
'@babel/parser': 7.15.3 '@babel/parser': 7.15.3
'@vue/shared': 3.2.21 '@vue/shared': 3.2.22
estree-walker: 2.0.2 estree-walker: 2.0.2
source-map: 0.6.1 source-map: 0.6.1
dev: false dev: false
/@vue/compiler-dom/3.2.21: /@vue/compiler-dom/3.2.22:
resolution: {integrity: sha512-gsJD3DpYZSYquiA7UIPsMDSlAooYWDvHPq9VRsqzJEk2PZtFvLvHPb4aaMD8Ufd62xzYn32cnnkzsEOJhyGilA==} resolution: {integrity: sha512-VZdsw/VuO1ODs8K7NQwnMQzKITDkIFlYYC03SVnunuf6eNRxBPEonSyqbWNoo6qNaHAEBTG6VVcZC5xC9bAx1g==}
dependencies: dependencies:
'@vue/compiler-core': 3.2.21 '@vue/compiler-core': 3.2.22
'@vue/shared': 3.2.21 '@vue/shared': 3.2.22
dev: false dev: false
/@vue/compiler-sfc/3.2.21: /@vue/compiler-sfc/3.2.22:
resolution: {integrity: sha512-+yDlUSebKpz/ovxM2vLRRx7w/gVfY767pOfYTgbIhAs+ogvIV2BsIt4fpxlThnlCNChJ+yE0ERUNoROv2kEGEQ==} resolution: {integrity: sha512-tWRQ5ge1tsTDhUwHgueicKJ8rYm6WUVAPTaIpFW3GSwZKcOEJ2rXdfkHFShNVGupeRALz2ET2H84OL0GeRxY0A==}
dependencies: dependencies:
'@babel/parser': 7.15.3 '@babel/parser': 7.15.3
'@vue/compiler-core': 3.2.21 '@vue/compiler-core': 3.2.22
'@vue/compiler-dom': 3.2.21 '@vue/compiler-dom': 3.2.22
'@vue/compiler-ssr': 3.2.21 '@vue/compiler-ssr': 3.2.22
'@vue/ref-transform': 3.2.21 '@vue/ref-transform': 3.2.22
'@vue/shared': 3.2.21 '@vue/shared': 3.2.22
estree-walker: 2.0.2 estree-walker: 2.0.2
magic-string: 0.25.7 magic-string: 0.25.7
postcss: 8.3.8 postcss: 8.3.8
source-map: 0.6.1 source-map: 0.6.1
dev: false dev: false
/@vue/compiler-ssr/3.2.21: /@vue/compiler-ssr/3.2.22:
resolution: {integrity: sha512-eU+A0iWYy+1zAo2CRIJ0zSVlv1iuGAIbNRCnllSJ31pV1lX3jypJYzGbJlSRAbB7VP6E+tYveVT1Oq8JKewa3g==} resolution: {integrity: sha512-Cl6aoLJtXzzBkk1sKod8S0WBJLts3+ugVC91d22gGpbkw/64WnF12tOZi7Rg54PPLi1NovqyNWPsLH/SAFcu+w==}
dependencies: dependencies:
'@vue/compiler-dom': 3.2.21 '@vue/compiler-dom': 3.2.22
'@vue/shared': 3.2.21 '@vue/shared': 3.2.22
dev: false dev: false
/@vue/devtools-api/6.0.0-beta.19: /@vue/devtools-api/6.0.0-beta.19:
resolution: {integrity: sha512-ObzQhgkoVeoyKv+e8+tB/jQBL2smtk/NmC9OmFK8UqdDpoOdv/Kf9pyDWL+IFyM7qLD2C75rszJujvGSPSpGlw==} resolution: {integrity: sha512-ObzQhgkoVeoyKv+e8+tB/jQBL2smtk/NmC9OmFK8UqdDpoOdv/Kf9pyDWL+IFyM7qLD2C75rszJujvGSPSpGlw==}
dev: false dev: false
/@vue/reactivity/3.2.21: /@vue/reactivity/3.2.22:
resolution: {integrity: sha512-7C57zFm/5E3SSTUhVuYj1InDwuJ+GIVQ/z+H43C9sST85gIThGXVhksl1yWTAadf8Yz4T5lSbqi5Ds8U/ueWcw==} resolution: {integrity: sha512-xNkLAItjI0xB+lFeDgKCrSItmrHTaAzSnt8LmdSCPQnDyarmzbi/u4ESQnckWvlL7lSRKiEaOvblaNyqAa7OnQ==}
dependencies: dependencies:
'@vue/shared': 3.2.21 '@vue/shared': 3.2.22
dev: false dev: false
/@vue/ref-transform/3.2.21: /@vue/ref-transform/3.2.22:
resolution: {integrity: sha512-uiEWWBsrGeun9O7dQExYWzXO3rHm/YdtFNXDVqCSoPypzOVxWxdiL+8hHeWzxMB58fVuV2sT80aUtIVyaBVZgQ==} resolution: {integrity: sha512-qalVWbq5xWWxLZ0L9OroBg/JZhzavQuCcDXblfErxyDEH6Xc5gIJ4feo1SVCICFzhAUgLgQTdSFLpgjBawbFpw==}
dependencies: dependencies:
'@babel/parser': 7.15.3 '@babel/parser': 7.15.3
'@vue/compiler-core': 3.2.21 '@vue/compiler-core': 3.2.22
'@vue/shared': 3.2.21 '@vue/shared': 3.2.22
estree-walker: 2.0.2 estree-walker: 2.0.2
magic-string: 0.25.7 magic-string: 0.25.7
dev: false dev: false
/@vue/runtime-core/3.2.21: /@vue/runtime-core/3.2.22:
resolution: {integrity: sha512-7oOxKaU0D2IunOAMOOHZgJVrHg63xwng8BZx3fbgmakqEIMwHhQcp+5GV1sOg/sWW7R4UhaRDIUCukO2GRVK2Q==} resolution: {integrity: sha512-e7WOC55wmHPvmoVUk9VBe/Z9k5bJfWJfVIlkUkiADJn0bOgQD29oh/GS14Kb3aEJXIHLI17Em6+HxNut1sIh7Q==}
dependencies: dependencies:
'@vue/reactivity': 3.2.21 '@vue/reactivity': 3.2.22
'@vue/shared': 3.2.21 '@vue/shared': 3.2.22
dev: false dev: false
/@vue/runtime-dom/3.2.21: /@vue/runtime-dom/3.2.22:
resolution: {integrity: sha512-apBdriD6QsI4ywbllY8kjr9/0scGuStDuvLbJULPQkFPtHzntd51bP5PQTQVAEIc9kwnTozmj6x6ZdX/cwo7xA==} resolution: {integrity: sha512-w7VHYJoliLRTLc5beN77wxuOjla4v9wr2FF22xpZFYBmH4U1V7HkYhoHc1BTuNghI15CXT1tNIMhibI1nrQgdw==}
dependencies: dependencies:
'@vue/runtime-core': 3.2.21 '@vue/runtime-core': 3.2.22
'@vue/shared': 3.2.21 '@vue/shared': 3.2.22
csstype: 2.6.17 csstype: 2.6.17
dev: false dev: false
/@vue/server-renderer/3.2.21_vue@3.2.21: /@vue/server-renderer/3.2.22_vue@3.2.22:
resolution: {integrity: sha512-QBgYqVgI7XCSBCqGa4LduV9vpfQFdZBOodFmq5Txk5W/v1KrJ1LoOh2Q0RHiRgtoK/UR9uyvRVcYqOmwHkZNEg==} resolution: {integrity: sha512-jCwbQgKPXiXoH9VS9F7K+gyEvEMrjutannwEZD1R8fQ9szmOTqC+RRbIY3Uf2ibQjZtZ8DV9a4FjxICvd9zZlQ==}
peerDependencies: peerDependencies:
vue: 3.2.21 vue: 3.2.22
dependencies: dependencies:
'@vue/compiler-ssr': 3.2.21 '@vue/compiler-ssr': 3.2.22
'@vue/shared': 3.2.21 '@vue/shared': 3.2.22
vue: 3.2.21 vue: 3.2.22
dev: false dev: false
/@vue/shared/3.2.21: /@vue/shared/3.2.22:
resolution: {integrity: sha512-5EQmIPK6gw4UVYUbM959B0uPsJ58+xoMESCZs3N89XyvJ9e+fX4pqEPrOGV8OroIk3SbEvJcC+eYc8BH9JQrHA==} resolution: {integrity: sha512-qWVav014mpjEtbWbEgl0q9pEyrrIySKum8UVYjwhC6njrKzknLZPvfuYdQyVbApsqr94tf/3dP4pCuZmmjdCWQ==}
dev: false dev: false
/@vueuse/core/6.8.0_vue@3.2.21: /@vueuse/core/6.9.1_vue@3.2.22:
resolution: {integrity: sha512-C6KMBus29L/mVtA5eK26WAqj6tyPlugrKaPLi2uLtbV//BHjbxe1uo3gVXCc5SwouDEdc7zswlGPw/l0/++NRg==} resolution: {integrity: sha512-msa36DxnnbIu41bUTvfSudF6TL4wo0+Yrpw6yr1bFtwtYTOo8GZXYWPKyvXUVGhBBqrTVNTqsTtD0eXXHJ3roA==}
peerDependencies: peerDependencies:
'@vue/composition-api': ^1.1.0 '@vue/composition-api': ^1.1.0
vue: ^2.6.0 || ^3.2.0 vue: ^2.6.0 || ^3.2.0
@ -747,13 +763,13 @@ packages:
vue: vue:
optional: true optional: true
dependencies: dependencies:
'@vueuse/shared': 6.8.0_vue@3.2.21 '@vueuse/shared': 6.9.1_vue@3.2.22
vue: 3.2.21 vue: 3.2.22
vue-demi: 0.12.1_vue@3.2.21 vue-demi: 0.12.1_vue@3.2.22
dev: false dev: false
/@vueuse/shared/6.8.0_vue@3.2.21: /@vueuse/shared/6.9.1_vue@3.2.22:
resolution: {integrity: sha512-+YjehQ8Qe4Qgyq8iTToVOzp4sZBAZvScv3AGJSMi6HYbe54+nyjrRfS8DN4fA0eUahyftHKZ00WKgMe7TS5N0w==} resolution: {integrity: sha512-nQh+ayxkeCKUU9MZjyQpE7KfOb18e/QOHolOE2ZK5dpoHzCZK7MSXzgDtvb9omGkgK0mjXlLSJsVdGhG+QW7Aw==}
peerDependencies: peerDependencies:
'@vue/composition-api': ^1.1.0 '@vue/composition-api': ^1.1.0
vue: ^2.6.0 || ^3.2.0 vue: ^2.6.0 || ^3.2.0
@ -763,8 +779,8 @@ packages:
vue: vue:
optional: true optional: true
dependencies: dependencies:
vue: 3.2.21 vue: 3.2.22
vue-demi: 0.12.1_vue@3.2.21 vue-demi: 0.12.1_vue@3.2.22
dev: false dev: false
/acorn-jsx/5.3.2_acorn@7.4.1: /acorn-jsx/5.3.2_acorn@7.4.1:
@ -930,6 +946,11 @@ packages:
semver: 7.3.5 semver: 7.3.5
dev: true dev: true
/cac/6.7.12:
resolution: {integrity: sha512-rM7E2ygtMkJqD9c7WnFU6fruFcN3xe4FM5yUmgxhZzIKJk4uHl9U/fhwdajGFQbQuv43FAUo1Fe8gX/oIKDeSA==}
engines: {node: '>=8'}
dev: true
/call-bind/1.0.2: /call-bind/1.0.2:
resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==} resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==}
dependencies: dependencies:
@ -1014,6 +1035,10 @@ packages:
resolution: {integrity: sha512-ecORCqbSFP7Wm8Y6lyqMJjexBQqXSF7SSeaTyGGphogUjBlFP9m9o08wy86HL2uB7fMTxtOUzLMk7ogKcxMg1w==} resolution: {integrity: sha512-ecORCqbSFP7Wm8Y6lyqMJjexBQqXSF7SSeaTyGGphogUjBlFP9m9o08wy86HL2uB7fMTxtOUzLMk7ogKcxMg1w==}
dev: true dev: true
/colorette/2.0.16:
resolution: {integrity: sha512-hUewv7oMjCp+wkBv5Rm0v87eJhq4woh5rSR+42YSQJKecCqgIqNkZ6lAlQms/BwHPJA5NKMRlpxPRv0n8HQW6g==}
dev: true
/commander/4.1.1: /commander/4.1.1:
resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
engines: {node: '>= 6'} engines: {node: '>= 6'}
@ -1023,6 +1048,10 @@ packages:
resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=} resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=}
dev: true dev: true
/consola/2.15.3:
resolution: {integrity: sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw==}
dev: true
/convert-source-map/1.8.0: /convert-source-map/1.8.0:
resolution: {integrity: sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==} resolution: {integrity: sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==}
dependencies: dependencies:
@ -1856,6 +1885,7 @@ packages:
resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==}
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
os: [darwin] os: [darwin]
requiresBuild: true
dev: true dev: true
optional: true optional: true
@ -2670,6 +2700,10 @@ packages:
engines: {node: '>=8'} engines: {node: '>=8'}
dev: true dev: true
/pathe/0.2.0:
resolution: {integrity: sha512-sTitTPYnn23esFR3RlqYBWn4c45WGeLcsKzQiUpXJAyfcWkolvlYpV8FLo7JishK946oQwMFUCHXQ9AjGPKExw==}
dev: true
/picomatch/2.3.0: /picomatch/2.3.0:
resolution: {integrity: sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==} resolution: {integrity: sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==}
engines: {node: '>=8.6'} engines: {node: '>=8.6'}
@ -2694,8 +2728,8 @@ packages:
engines: {node: '>=4'} engines: {node: '>=4'}
dev: true dev: true
/pnpm/6.20.4: /pnpm/6.22.2:
resolution: {integrity: sha512-t50posttANTjAqBfEapojvrD4JKPTcOiPOHxKIGLlcMYke4mKbOhDY+4asSToZI6e7fwQfQpPDPGFI+/qz7Z4A==} resolution: {integrity: sha512-8umiz8XtgauWmPzOrb0CvCCwyb4IkJiavnxMDvNEbDpTb/6FZh3SLVVR2WNb07obGVKY6USpo159o5zd3RHD9g==}
engines: {node: '>=12.17'} engines: {node: '>=12.17'}
hasBin: true hasBin: true
dev: true dev: true
@ -3067,14 +3101,14 @@ packages:
resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
dev: true dev: true
/tsutils/3.21.0_typescript@4.4.4: /tsutils/3.21.0_typescript@4.5.2:
resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
engines: {node: '>= 6'} engines: {node: '>= 6'}
peerDependencies: 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' 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: dependencies:
tslib: 1.14.1 tslib: 1.14.1
typescript: 4.4.4 typescript: 4.5.2
dev: true dev: true
/type-check/0.4.0: /type-check/0.4.0:
@ -3099,8 +3133,8 @@ packages:
engines: {node: '>=8'} engines: {node: '>=8'}
dev: true dev: true
/typescript/4.4.4: /typescript/4.5.2:
resolution: {integrity: sha512-DqGhF5IKoBl8WNf8C1gu8q0xZSInh9j1kJJMqT3a94w1JzVaBU4EXOSMrz9yDqMT0xt3selp83fuFMQ0uzv6qA==} resolution: {integrity: sha512-5BlMof9H1yGt0P8/WF+wPNw6GfctgGjXp5hkblpyT+8rkASSmkUKMXrxR0Xg8ThVCi/JnHQiKXeBaEwCeQwMFw==}
engines: {node: '>=4.2.0'} engines: {node: '>=4.2.0'}
hasBin: true hasBin: true
dev: true dev: true
@ -3114,20 +3148,21 @@ packages:
which-boxed-primitive: 1.0.2 which-boxed-primitive: 1.0.2
dev: true dev: true
/unocss/0.7.2: /unocss/0.11.0:
resolution: {integrity: sha512-+cUK4br0amDbp555wOks8iEWEtmqXqePTxb+vLLU9GA8mvnqU3gBVmgU4gd6rWd97DY7t4UPXIWdFR9xFtTgXA==} resolution: {integrity: sha512-bHxRwpZpopz+bbdSrJQ/bIEthZq9EitiCpg7NOMa+1EoNVHYBA7BhDb2Jl0unAam8R/TA4vPUCot9vYYBKkcrA==}
engines: {node: '>=14'} engines: {node: '>=14'}
dependencies: dependencies:
'@unocss/core': 0.7.2 '@unocss/cli': 0.11.0
'@unocss/preset-attributify': 0.7.2 '@unocss/core': 0.11.0
'@unocss/preset-icons': 0.7.2 '@unocss/preset-attributify': 0.11.0
'@unocss/preset-uno': 0.7.2 '@unocss/preset-icons': 0.11.0
'@unocss/reset': 0.7.2 '@unocss/preset-uno': 0.11.0
'@unocss/vite': 0.7.2 '@unocss/reset': 0.11.0
'@unocss/vite': 0.11.0
dev: true dev: true
/unplugin-auto-import/0.4.13_@vueuse+core@6.8.0+vite@2.6.13: /unplugin-auto-import/0.4.14_@vueuse+core@6.9.1+vite@2.6.14:
resolution: {integrity: sha512-tSN4eObmxVJQtDrpEo7VgWScbTOQU3r4NuD0+6vM55ORe3qMrJJcrOqEpqjRdAlI9edYa9p2TS0BxGECNKub+g==} resolution: {integrity: sha512-ui+M+E30xrdbXGt0+MMEM4fKhDqoBlv+xVKiYllVqUplqg/sFuXe28DBxM2xi2zAbwd/Vw3KUcLdvSmjzpA7+A==}
engines: {node: '>=14'} engines: {node: '>=14'}
peerDependencies: peerDependencies:
'@vueuse/core': ^6.0.0 '@vueuse/core': ^6.0.0
@ -3137,18 +3172,18 @@ packages:
dependencies: dependencies:
'@antfu/utils': 0.3.0 '@antfu/utils': 0.3.0
'@rollup/pluginutils': 4.1.1 '@rollup/pluginutils': 4.1.1
'@vueuse/core': 6.8.0_vue@3.2.21 '@vueuse/core': 6.9.1_vue@3.2.22
local-pkg: 0.1.0 local-pkg: 0.1.0
magic-string: 0.25.7 magic-string: 0.25.7
resolve: 1.20.0 resolve: 1.20.0
unplugin: 0.2.16_vite@2.6.13 unplugin: 0.2.19_vite@2.6.14
transitivePeerDependencies: transitivePeerDependencies:
- rollup - rollup
- vite - vite
- webpack - webpack
dev: true dev: true
/unplugin-icons/0.12.18_vite@2.6.13: /unplugin-icons/0.12.18_vite@2.6.14:
resolution: {integrity: sha512-o2nc6AGGk4StTx5xMTndVBylszRg/hJvHMO1eEFfrfw9yh+eedre2S4F8EHltn3FjADL2a17GpXcvCAwmONgXA==} resolution: {integrity: sha512-o2nc6AGGk4StTx5xMTndVBylszRg/hJvHMO1eEFfrfw9yh+eedre2S4F8EHltn3FjADL2a17GpXcvCAwmONgXA==}
peerDependencies: peerDependencies:
'@svgr/core': ^5.5.0 '@svgr/core': ^5.5.0
@ -3171,7 +3206,7 @@ packages:
debug: 4.3.2 debug: 4.3.2
kolorist: 1.5.0 kolorist: 1.5.0
local-pkg: 0.4.0 local-pkg: 0.4.0
unplugin: 0.2.19_vite@2.6.13 unplugin: 0.2.19_vite@2.6.14
transitivePeerDependencies: transitivePeerDependencies:
- rollup - rollup
- supports-color - supports-color
@ -3179,7 +3214,7 @@ packages:
- webpack - webpack
dev: true dev: true
/unplugin-vue-components/0.17.2_vite@2.6.13+vue@3.2.21: /unplugin-vue-components/0.17.2_vite@2.6.14+vue@3.2.22:
resolution: {integrity: sha512-e4ZdOpnzFMQJx3rDLotLyucTap0bUlMy+6BRYyoN6jE1ZyGAgR6jodmpHZAPR3xkC4pkqW5PLlyDfIH/+lzkng==} resolution: {integrity: sha512-e4ZdOpnzFMQJx3rDLotLyucTap0bUlMy+6BRYyoN6jE1ZyGAgR6jodmpHZAPR3xkC4pkqW5PLlyDfIH/+lzkng==}
engines: {node: '>=14'} engines: {node: '>=14'}
peerDependencies: peerDependencies:
@ -3201,8 +3236,8 @@ packages:
magic-string: 0.25.7 magic-string: 0.25.7
minimatch: 3.0.4 minimatch: 3.0.4
resolve: 1.20.0 resolve: 1.20.0
unplugin: 0.2.19_vite@2.6.13 unplugin: 0.2.19_vite@2.6.14
vue: 3.2.21 vue: 3.2.22
transitivePeerDependencies: transitivePeerDependencies:
- rollup - rollup
- supports-color - supports-color
@ -3210,25 +3245,7 @@ packages:
- webpack - webpack
dev: true dev: true
/unplugin/0.2.16_vite@2.6.13: /unplugin/0.2.19_vite@2.6.14:
resolution: {integrity: sha512-KkXatHba0baJszSHW+2e8EQU/5Bz7rYwzYXu8wUeq97tE6K3wvub+7OWSuRv04LttvzNLsJ2jXEyR35gofv74Q==}
peerDependencies:
rollup: ^2.50.0
vite: ^2.3.0
webpack: 4 || 5
peerDependenciesMeta:
rollup:
optional: true
vite:
optional: true
webpack:
optional: true
dependencies:
vite: 2.6.13
webpack-virtual-modules: 0.4.3
dev: true
/unplugin/0.2.19_vite@2.6.13:
resolution: {integrity: sha512-r5PDeBBecir99rhLFp1ftqIkp5afD91anweIlWtF5Ca46FJsn2kQczD93FdFJw79R6HSF5waeYo79bFOQ9GVhQ==} resolution: {integrity: sha512-r5PDeBBecir99rhLFp1ftqIkp5afD91anweIlWtF5Ca46FJsn2kQczD93FdFJw79R6HSF5waeYo79bFOQ9GVhQ==}
peerDependencies: peerDependencies:
rollup: ^2.50.0 rollup: ^2.50.0
@ -3242,7 +3259,7 @@ packages:
webpack: webpack:
optional: true optional: true
dependencies: dependencies:
vite: 2.6.13 vite: 2.6.14
webpack-virtual-modules: 0.4.3 webpack-virtual-modules: 0.4.3
dev: true dev: true
@ -3263,7 +3280,7 @@ packages:
spdx-expression-parse: 3.0.1 spdx-expression-parse: 3.0.1
dev: true dev: true
/vite-plugin-pages/0.18.2_vite@2.6.13: /vite-plugin-pages/0.18.2_vite@2.6.14:
resolution: {integrity: sha512-Z6ylvMKYSiCngtSpWw9pHN4UzjMQvOG7f0RtLMDKm1LrO5iye7V8BS8Rfdvrl9Nz+D2W+i0pi98+vOL5VsmTvQ==} resolution: {integrity: sha512-Z6ylvMKYSiCngtSpWw9pHN4UzjMQvOG7f0RtLMDKm1LrO5iye7V8BS8Rfdvrl9Nz+D2W+i0pi98+vOL5VsmTvQ==}
peerDependencies: peerDependencies:
'@vue/compiler-sfc': '>=3' '@vue/compiler-sfc': '>=3'
@ -3277,14 +3294,14 @@ packages:
deep-equal: 2.0.5 deep-equal: 2.0.5
fast-glob: 3.2.7 fast-glob: 3.2.7
json5: 2.2.0 json5: 2.2.0
vite: 2.6.13 vite: 2.6.14
yaml: 2.0.0-8 yaml: 2.0.0-8
transitivePeerDependencies: transitivePeerDependencies:
- supports-color - supports-color
dev: true dev: true
/vite/2.6.13: /vite/2.6.14:
resolution: {integrity: sha512-+tGZ1OxozRirTudl4M3N3UTNJOlxdVo/qBl2IlDEy/ZpTFcskp+k5ncNjayR3bRYTCbqSOFz2JWGN1UmuDMScA==} resolution: {integrity: sha512-2HA9xGyi+EhY2MXo0+A2dRsqsAG3eFNEVIo12olkWhOmc8LfiM+eMdrXf+Ruje9gdXgvSqjLI9freec1RUM5EA==}
engines: {node: '>=12.2.0'} engines: {node: '>=12.2.0'}
hasBin: true hasBin: true
peerDependencies: peerDependencies:
@ -3307,7 +3324,7 @@ packages:
fsevents: 2.3.2 fsevents: 2.3.2
dev: true dev: true
/vue-demi/0.12.1_vue@3.2.21: /vue-demi/0.12.1_vue@3.2.22:
resolution: {integrity: sha512-QL3ny+wX8c6Xm1/EZylbgzdoDolye+VpCXRhI2hug9dJTP3OUJ3lmiKN3CsVV3mOJKwFi0nsstbgob0vG7aoIw==} resolution: {integrity: sha512-QL3ny+wX8c6Xm1/EZylbgzdoDolye+VpCXRhI2hug9dJTP3OUJ3lmiKN3CsVV3mOJKwFi0nsstbgob0vG7aoIw==}
engines: {node: '>=12'} engines: {node: '>=12'}
hasBin: true hasBin: true
@ -3319,7 +3336,7 @@ packages:
'@vue/composition-api': '@vue/composition-api':
optional: true optional: true
dependencies: dependencies:
vue: 3.2.21 vue: 3.2.22
dev: false dev: false
/vue-eslint-parser/7.10.0_eslint@8.2.0: /vue-eslint-parser/7.10.0_eslint@8.2.0:
@ -3340,23 +3357,23 @@ packages:
- supports-color - supports-color
dev: true dev: true
/vue-router/4.0.12_vue@3.2.21: /vue-router/4.0.12_vue@3.2.22:
resolution: {integrity: sha512-CPXvfqe+mZLB1kBWssssTiWg4EQERyqJZes7USiqfW9B5N2x+nHlnsM1D3b5CaJ6qgCvMmYJnz+G0iWjNCvXrg==} resolution: {integrity: sha512-CPXvfqe+mZLB1kBWssssTiWg4EQERyqJZes7USiqfW9B5N2x+nHlnsM1D3b5CaJ6qgCvMmYJnz+G0iWjNCvXrg==}
peerDependencies: peerDependencies:
vue: ^3.0.0 vue: ^3.0.0
dependencies: dependencies:
'@vue/devtools-api': 6.0.0-beta.19 '@vue/devtools-api': 6.0.0-beta.19
vue: 3.2.21 vue: 3.2.22
dev: false dev: false
/vue/3.2.21: /vue/3.2.22:
resolution: {integrity: sha512-jpy7ckXdyclfRzqLjL4mtq81AkzQleE54KjZsJg/9OorNVurAxdlU5XpD49GpjKdnftuffKUvx2C5jDOrgc/zg==} resolution: {integrity: sha512-KD5nZpXVZquOC6926Xnp3zOvswrUyO9Rya7ZUoxWFQEjFDW4iACtwzubRB4Um2Om9kj6CaJOqAVRDSFlqLpdgw==}
dependencies: dependencies:
'@vue/compiler-dom': 3.2.21 '@vue/compiler-dom': 3.2.22
'@vue/compiler-sfc': 3.2.21 '@vue/compiler-sfc': 3.2.22
'@vue/runtime-dom': 3.2.21 '@vue/runtime-dom': 3.2.22
'@vue/server-renderer': 3.2.21_vue@3.2.21 '@vue/server-renderer': 3.2.22_vue@3.2.22
'@vue/shared': 3.2.21 '@vue/shared': 3.2.22
dev: false dev: false
/webpack-virtual-modules/0.4.3: /webpack-virtual-modules/0.4.3: