From 130b285ad909c78e9a19b3781aa9d36c6f04f595 Mon Sep 17 00:00:00 2001 From: Anthony Fu Date: Tue, 24 Aug 2021 15:19:20 +0800 Subject: [PATCH] feat: use unplugin-auto-import instead of vue-global-api --- .eslintrc | 3 +- .gitignore | 4 +- README.md | 2 +- components.d.ts | 19 - package.json | 30 +- pnpm-lock.yaml | 1951 ++++++++++++++++++------------------- src/components/Footer.vue | 2 +- src/layouts/404.vue | 3 - src/logic/dark.ts | 2 +- src/main.ts | 1 - src/pages/[...all].vue | 2 - src/pages/hi/[name].vue | 4 +- src/pages/index.vue | 2 - vite.config.ts | 12 + 14 files changed, 974 insertions(+), 1063 deletions(-) delete mode 100644 components.d.ts diff --git a/.eslintrc b/.eslintrc index d6e94ff..09dcda3 100644 --- a/.eslintrc +++ b/.eslintrc @@ -1,6 +1,5 @@ { "extends": [ - "@antfu", - "vue-global-api" + "@antfu" ] } diff --git a/.gitignore b/.gitignore index ffe146d..291e432 100644 --- a/.gitignore +++ b/.gitignore @@ -5,7 +5,7 @@ dist dist-ssr node_modules -# intellij stuff .idea/ -# logs *.log +components.d.ts +auto-imports.d.ts diff --git a/README.md b/README.md index d6a81b9..d486759 100644 --- a/README.md +++ b/README.md @@ -67,6 +67,7 @@ Mocking up web app with Vitesse(speed)
- [`vite-plugin-vue-layouts`](https://github.com/JohnCampionJr/vite-plugin-vue-layouts) - layouts for pages - [Pinia](https://pinia.esm.dev) - Intuitive, type safe, light and flexible Store for Vue using the composition api - [`vite-plugin-components`](https://github.com/antfu/vite-plugin-components) - components auto import +- [`unplugin-auto-import`](https://github.com/antfu/unplugin-auto-import) - Directly use Vue Composition API and others without importing - [`vite-plugin-pwa`](https://github.com/antfu/vite-plugin-pwa) - PWA - [`vite-plugin-windicss`](https://github.com/antfu/vite-plugin-windicss) - WindiCSS support - [`vite-plugin-md`](https://github.com/antfu/vite-plugin-md) - Markdown as components / components in Markdown @@ -76,7 +77,6 @@ Mocking up web app with Vitesse(speed)
- [`vite-plugin-vue-i18n`](https://github.com/intlify/vite-plugin-vue-i18n) - Vite plugin for Vue I18n - [VueUse](https://github.com/antfu/vueuse) - collection of useful composition APIs - [`@vueuse/head`](https://github.com/vueuse/head) - manipulate document head reactively -- [`vue-global-api`](https://github.com/antfu/vue-global-api) - Use Vue Composition API globally ### Coding Style diff --git a/components.d.ts b/components.d.ts deleted file mode 100644 index 228d0d0..0000000 --- a/components.d.ts +++ /dev/null @@ -1,19 +0,0 @@ -// generated by vite-plugin-components -// read more https://github.com/vuejs/vue-next/pull/3399 - -declare module 'vue' { - export interface GlobalComponents { - CarbonCampsite: typeof import('virtual:vite-icons/carbon/campsite')['default'] - CarbonDicomOverlay: typeof import('virtual:vite-icons/carbon/dicom-overlay')['default'] - CarbonLanguage: typeof import('virtual:vite-icons/carbon/language')['default'] - CarbonLogoGithub: typeof import('virtual:vite-icons/carbon/logo-github')['default'] - CarbonMoon: typeof import('virtual:vite-icons/carbon/moon')['default'] - CarbonPedestrian: typeof import('virtual:vite-icons/carbon/pedestrian')['default'] - CarbonSun: typeof import('virtual:vite-icons/carbon/sun')['default'] - CarbonWarning: typeof import('virtual:vite-icons/carbon/warning')['default'] - Footer: typeof import('./src/components/Footer.vue')['default'] - README: typeof import('./src/components/README.md')['default'] - } -} - -export { } diff --git a/package.json b/package.json index 6930e8a..0f836b8 100644 --- a/package.json +++ b/package.json @@ -10,39 +10,39 @@ "@vueuse/core": "^6.0.0", "@vueuse/head": "^0.6.0", "nprogress": "^0.2.0", - "pinia": "^2.0.0-0", + "pinia": "^2.0.0-rc.6", "prism-theme-vars": "^0.2.2", - "vue": "^3.2.2", + "vue": "^3.2.4", "vue-demi": "^0.11.3", - "vue-global-api": "^0.4.1", "vue-i18n": "^9.1.7", "vue-router": "^4.0.11" }, "devDependencies": { "@antfu/eslint-config": "^0.7.0", - "@iconify/json": "^1.1.387", + "@iconify/json": "^1.1.392", "@intlify/vite-plugin-vue-i18n": "^2.4.0", "@types/nprogress": "^0.2.0", "@vitejs/plugin-vue": "^1.4.0", - "@vue/compiler-sfc": "^3.2.2", - "@vue/server-renderer": "^3.2.2", + "@vue/compiler-sfc": "^3.2.4", + "@vue/server-renderer": "^3.2.4", "critters": "^0.0.10", "cross-env": "^7.0.3", "eslint": "^7.32.0", "https-localhost": "^4.6.5", "markdown-it-link-attributes": "^3.0.0", - "markdown-it-prism": "^2.1.8", - "pnpm": "^6.13.0", + "markdown-it-prism": "^2.2.0", + "pnpm": "^6.14.3", "typescript": "^4.3.5", - "vite": "^2.4.4", + "unplugin-auto-import": "^0.0.6", + "vite": "^2.5.0", "vite-plugin-components": "^0.13.2", "vite-plugin-icons": "^0.6.5", - "vite-plugin-md": "^0.10.0", - "vite-plugin-pages": "^0.17.3", - "vite-plugin-pwa": "^0.10.0", + "vite-plugin-md": "^0.11.0", + "vite-plugin-pages": "^0.17.4", + "vite-plugin-pwa": "^0.11.0", "vite-plugin-vue-layouts": "^0.3.1", - "vite-plugin-windicss": "^1.2.7", - "vite-ssg": "^0.14.5", - "vue-tsc": "^0.2.3" + "vite-plugin-windicss": "^1.2.8", + "vite-ssg": "^0.14.6", + "vue-tsc": "^0.3.0" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index e06eb20..d06b563 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -2,12 +2,12 @@ lockfileVersion: 5.3 specifiers: '@antfu/eslint-config': ^0.7.0 - '@iconify/json': ^1.1.387 + '@iconify/json': ^1.1.392 '@intlify/vite-plugin-vue-i18n': ^2.4.0 '@types/nprogress': ^0.2.0 '@vitejs/plugin-vue': ^1.4.0 - '@vue/compiler-sfc': ^3.2.2 - '@vue/server-renderer': ^3.2.2 + '@vue/compiler-sfc': ^3.2.4 + '@vue/server-renderer': ^3.2.4 '@vueuse/core': ^6.0.0 '@vueuse/head': ^0.6.0 critters: ^0.0.10 @@ -15,66 +15,66 @@ specifiers: eslint: ^7.32.0 https-localhost: ^4.6.5 markdown-it-link-attributes: ^3.0.0 - markdown-it-prism: ^2.1.8 + markdown-it-prism: ^2.2.0 nprogress: ^0.2.0 - pinia: ^2.0.0-0 - pnpm: ^6.13.0 + pinia: ^2.0.0-rc.6 + pnpm: ^6.14.3 prism-theme-vars: ^0.2.2 typescript: ^4.3.5 - vite: ^2.4.4 + unplugin-auto-import: ^0.0.6 + vite: ^2.5.0 vite-plugin-components: ^0.13.2 vite-plugin-icons: ^0.6.5 - vite-plugin-md: ^0.10.0 - vite-plugin-pages: ^0.17.3 - vite-plugin-pwa: ^0.10.0 + vite-plugin-md: ^0.11.0 + vite-plugin-pages: ^0.17.4 + vite-plugin-pwa: ^0.11.0 vite-plugin-vue-layouts: ^0.3.1 - vite-plugin-windicss: ^1.2.7 - vite-ssg: ^0.14.5 - vue: ^3.2.2 + vite-plugin-windicss: ^1.2.8 + vite-ssg: ^0.14.6 + vue: ^3.2.4 vue-demi: ^0.11.3 - vue-global-api: ^0.4.1 vue-i18n: ^9.1.7 vue-router: ^4.0.11 - vue-tsc: ^0.2.3 + vue-tsc: ^0.3.0 dependencies: - '@vueuse/core': 6.0.0_vue@3.2.2 - '@vueuse/head': 0.6.0_vue@3.2.2 + '@vueuse/core': 6.0.0_vue@3.2.4 + '@vueuse/head': 0.6.0_vue@3.2.4 nprogress: 0.2.0 - pinia: 2.0.0-rc.4_typescript@4.3.5+vue@3.2.2 + pinia: 2.0.0-rc.6_typescript@4.3.5+vue@3.2.4 prism-theme-vars: 0.2.2 - vue: 3.2.2 - vue-demi: 0.11.3_vue@3.2.2 - vue-global-api: 0.4.1_vue@3.2.2 - vue-i18n: 9.1.7_vue@3.2.2 - vue-router: 4.0.11_vue@3.2.2 + vue: 3.2.4 + vue-demi: 0.11.3_vue@3.2.4 + vue-i18n: 9.1.7_vue@3.2.4 + vue-router: 4.0.11_vue@3.2.4 devDependencies: '@antfu/eslint-config': 0.7.0_eslint@7.32.0+typescript@4.3.5 - '@iconify/json': 1.1.387 - '@intlify/vite-plugin-vue-i18n': 2.4.0_bdfaf14c5541fb1bd751e193a94ac007 + '@iconify/json': 1.1.392 + '@intlify/vite-plugin-vue-i18n': 2.4.0_4cef02acf2f8b9c8009dbbdef0b0dc6c '@types/nprogress': 0.2.0 - '@vitejs/plugin-vue': 1.4.0_@vue+compiler-sfc@3.2.2 - '@vue/compiler-sfc': 3.2.2 - '@vue/server-renderer': 3.2.2_vue@3.2.2 + '@vitejs/plugin-vue': 1.4.0_@vue+compiler-sfc@3.2.4 + '@vue/compiler-sfc': 3.2.4 + '@vue/server-renderer': 3.2.4_vue@3.2.4 critters: 0.0.10 cross-env: 7.0.3 eslint: 7.32.0 https-localhost: 4.6.5 markdown-it-link-attributes: 3.0.0 - markdown-it-prism: 2.1.8 - pnpm: 6.13.0 + markdown-it-prism: 2.2.0 + pnpm: 6.14.3 typescript: 4.3.5 - vite: 2.4.4 - vite-plugin-components: 0.13.2_vite@2.4.4 - vite-plugin-icons: 0.6.5_f4f72ff427fc65ab11286299b2cfc1f8 - vite-plugin-md: 0.10.0_vite@2.4.4 - vite-plugin-pages: 0.17.3_622449f92aba16a36543bb4683653133 - vite-plugin-pwa: 0.10.0_vite@2.4.4 - vite-plugin-vue-layouts: 0.3.1_vite@2.4.4 - vite-plugin-windicss: 1.2.7_vite@2.4.4 - vite-ssg: 0.14.5_f850a7c7cb7bfc62a4ac2af2c2f58f9e - vue-tsc: 0.2.3_typescript@4.3.5 + unplugin-auto-import: 0.0.6_vite@2.5.0 + vite: 2.5.0 + vite-plugin-components: 0.13.2_vite@2.5.0 + vite-plugin-icons: 0.6.5_927b6aa92e35a8f1cb1822fc1487e830 + vite-plugin-md: 0.11.0_vite@2.5.0 + vite-plugin-pages: 0.17.4_7fe3aad99197253b81205fb92dfdbad3 + vite-plugin-pwa: 0.11.0_vite@2.5.0 + vite-plugin-vue-layouts: 0.3.1_vite@2.5.0 + vite-plugin-windicss: 1.2.8_vite@2.5.0 + vite-ssg: 0.14.6_20694550d252f8cd45c3edfcdb6eff74 + vue-tsc: 0.3.0_typescript@4.3.5 packages: @@ -84,16 +84,16 @@ packages: eslint: '>=7.4.0' dependencies: eslint: 7.32.0 - eslint-config-standard: 16.0.3_3062fa9fac81ca2e86f20e6f3c8ea22d + eslint-config-standard: 16.0.3_6831b5ab259a57852ab508175ef50fb9 eslint-plugin-eslint-comments: 3.2.0_eslint@7.32.0 eslint-plugin-html: 6.1.2 - eslint-plugin-import: 2.23.4_eslint@7.32.0 - eslint-plugin-jsonc: 1.4.0_eslint@7.32.0 + eslint-plugin-import: 2.24.1_eslint@7.32.0 + eslint-plugin-jsonc: 1.6.0_eslint@7.32.0 eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.1.0_eslint@7.32.0 eslint-plugin-unicorn: 34.0.1_eslint@7.32.0 eslint-plugin-yml: 0.9.0_eslint@7.32.0 - jsonc-eslint-parser: 1.1.0_eslint@7.32.0 + jsonc-eslint-parser: 1.2.0_eslint@7.32.0 yaml-eslint-parser: 0.3.2 transitivePeerDependencies: - supports-color @@ -119,8 +119,8 @@ packages: typescript: '>=3.9' dependencies: '@antfu/eslint-config-basic': 0.7.0_eslint@7.32.0 - '@typescript-eslint/eslint-plugin': 4.28.4_7541f6bc1d899a7e73db4ebff32a94db - '@typescript-eslint/parser': 4.28.4_eslint@7.32.0+typescript@4.3.5 + '@typescript-eslint/eslint-plugin': 4.29.3_fd14c0002fbbfb85b8a0070d0dffb93d + '@typescript-eslint/parser': 4.29.3_eslint@7.32.0+typescript@4.3.5 eslint: 7.32.0 typescript: 4.3.5 transitivePeerDependencies: @@ -159,6 +159,18 @@ packages: '@types/throttle-debounce': 2.1.0 dev: true + /@apideck/better-ajv-errors/0.2.5_ajv@8.6.2: + resolution: {integrity: sha512-Pm1fAqCT8OEfBVLddU3fWZ/URWpGGhkvlsBIgn9Y2jJlcNumo0gNzPsQswDJTiA8HcKpCjOhWQOgkA9kXR4Ghg==} + engines: {node: '>=10'} + peerDependencies: + ajv: '>=8' + dependencies: + ajv: 8.6.2 + json-schema: 0.3.0 + jsonpointer: 4.1.0 + leven: 3.1.0 + dev: true + /@babel/code-frame/7.12.11: resolution: {integrity: sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==} dependencies: @@ -172,24 +184,24 @@ packages: '@babel/highlight': 7.14.5 dev: true - /@babel/compat-data/7.14.7: - resolution: {integrity: sha512-nS6dZaISCXJ3+518CWiBfEr//gHyMO02uDxBkXTKZDN5POruCnOZ1N4YBRZDCabwF8nZMWBpRxIicmXtBs+fvw==} + /@babel/compat-data/7.15.0: + resolution: {integrity: sha512-0NqAC1IJE0S0+lL1SWFMxMkz1pKCNCjI4tr2Zx4LJSXxCLAdr6KyArnY+sno5m3yH9g737ygOyPABDsnXkpxiA==} engines: {node: '>=6.9.0'} dev: true - /@babel/core/7.14.8: - resolution: {integrity: sha512-/AtaeEhT6ErpDhInbXmjHcUQXH0L0TEgscfcxk1qbOvLuKCa5aZT0SOOtDKFY96/CLROwbLSKyFor6idgNaU4Q==} + /@babel/core/7.15.0: + resolution: {integrity: sha512-tXtmTminrze5HEUPn/a0JtOzzfp0nk+UEXQ/tqIJo3WDGypl/2OFQEMll/zSFU8f/lfmfLXvTaORHF3cfXIQMw==} engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.14.5 - '@babel/generator': 7.14.8 - '@babel/helper-compilation-targets': 7.14.5_@babel+core@7.14.8 - '@babel/helper-module-transforms': 7.14.8 - '@babel/helpers': 7.14.8 - '@babel/parser': 7.14.8 + '@babel/generator': 7.15.0 + '@babel/helper-compilation-targets': 7.15.0_@babel+core@7.15.0 + '@babel/helper-module-transforms': 7.15.0 + '@babel/helpers': 7.15.3 + '@babel/parser': 7.15.3 '@babel/template': 7.14.5 - '@babel/traverse': 7.14.8 - '@babel/types': 7.14.8 + '@babel/traverse': 7.15.0 + '@babel/types': 7.15.0 convert-source-map: 1.8.0 debug: 4.3.2 gensync: 1.0.0-beta.2 @@ -200,25 +212,25 @@ packages: - supports-color dev: true - /@babel/eslint-parser/7.14.7_@babel+core@7.14.8+eslint@7.32.0: - resolution: {integrity: sha512-6WPwZqO5priAGIwV6msJcdc9TsEPzYeYdS/Xuoap+/ihkgN6dzHp2bcAAwyWZ5bLzk0vvjDmKvRwkqNaiJ8BiQ==} + /@babel/eslint-parser/7.15.0_@babel+core@7.15.0+eslint@7.32.0: + resolution: {integrity: sha512-+gSPtjSBxOZz4Uh8Ggqu7HbfpB8cT1LwW0DnVVLZEJvzXauiD0Di3zszcBkRmfGGrLdYeHUwcflG7i3tr9kQlw==} engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0} peerDependencies: '@babel/core': '>=7.11.0' eslint: '>=7.5.0' dependencies: - '@babel/core': 7.14.8 + '@babel/core': 7.15.0 eslint: 7.32.0 eslint-scope: 5.1.1 eslint-visitor-keys: 2.1.0 semver: 6.3.0 dev: true - /@babel/generator/7.14.8: - resolution: {integrity: sha512-cYDUpvIzhBVnMzRoY1fkSEhK/HmwEVwlyULYgn/tMQYd6Obag3ylCjONle3gdErfXBW61SVTlR9QR7uWlgeIkg==} + /@babel/generator/7.15.0: + resolution: {integrity: sha512-eKl4XdMrbpYvuB505KTta4AV9g+wWzmVBW69tX0H2NwKVKd2YJbKgyK6M8j/rgLbmHOYJn6rUklV677nOyJrEQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.14.8 + '@babel/types': 7.15.0 jsesc: 2.5.2 source-map: 0.5.7 dev: true @@ -227,7 +239,7 @@ packages: resolution: {integrity: sha512-EivH9EgBIb+G8ij1B2jAwSH36WnGvkQSEC6CkX/6v6ZFlw5fVOHvsgGF4uiEHO2GzMvunZb6tDLQEQSdrdocrA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.14.8 + '@babel/types': 7.15.0 dev: true /@babel/helper-builder-binary-assignment-operator-visitor/7.14.5: @@ -235,60 +247,60 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/helper-explode-assignable-expression': 7.14.5 - '@babel/types': 7.14.8 + '@babel/types': 7.15.0 dev: true - /@babel/helper-compilation-targets/7.14.5_@babel+core@7.14.8: - resolution: {integrity: sha512-v+QtZqXEiOnpO6EYvlImB6zCD2Lel06RzOPzmkz/D/XgQiUu3C/Jb1LOqSt/AIA34TYi/Q+KlT8vTQrgdxkbLw==} + /@babel/helper-compilation-targets/7.15.0_@babel+core@7.15.0: + resolution: {integrity: sha512-h+/9t0ncd4jfZ8wsdAsoIxSa61qhBYlycXiHWqJaQBCXAhDCMbPRSMTGnZIkkmt1u4ag+UQmuqcILwqKzZ4N2A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/compat-data': 7.14.7 - '@babel/core': 7.14.8 + '@babel/compat-data': 7.15.0 + '@babel/core': 7.15.0 '@babel/helper-validator-option': 7.14.5 - browserslist: 4.16.6 + browserslist: 4.16.8 semver: 6.3.0 dev: true - /@babel/helper-create-class-features-plugin/7.14.8_@babel+core@7.14.8: - resolution: {integrity: sha512-bpYvH8zJBWzeqi1o+co8qOrw+EXzQ/0c74gVmY205AWXy9nifHrOg77y+1zwxX5lXE7Icq4sPlSQ4O2kWBrteQ==} + /@babel/helper-create-class-features-plugin/7.15.0_@babel+core@7.15.0: + resolution: {integrity: sha512-MdmDXgvTIi4heDVX/e9EFfeGpugqm9fobBVg/iioE8kueXrOHdRDe36FAY7SnE9xXLVeYCoJR/gdrBEIHRC83Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.14.8 + '@babel/core': 7.15.0 '@babel/helper-annotate-as-pure': 7.14.5 '@babel/helper-function-name': 7.14.5 - '@babel/helper-member-expression-to-functions': 7.14.7 + '@babel/helper-member-expression-to-functions': 7.15.0 '@babel/helper-optimise-call-expression': 7.14.5 - '@babel/helper-replace-supers': 7.14.5 + '@babel/helper-replace-supers': 7.15.0 '@babel/helper-split-export-declaration': 7.14.5 transitivePeerDependencies: - supports-color dev: true - /@babel/helper-create-regexp-features-plugin/7.14.5_@babel+core@7.14.8: + /@babel/helper-create-regexp-features-plugin/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-TLawwqpOErY2HhWbGJ2nZT5wSkR192QpN+nBg1THfBfftrlvOh+WbhrxXCH4q4xJ9Gl16BGPR/48JA+Ryiho/A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.14.8 + '@babel/core': 7.15.0 '@babel/helper-annotate-as-pure': 7.14.5 regexpu-core: 4.7.1 dev: true - /@babel/helper-define-polyfill-provider/0.2.3_@babel+core@7.14.8: + /@babel/helper-define-polyfill-provider/0.2.3_@babel+core@7.15.0: resolution: {integrity: sha512-RH3QDAfRMzj7+0Nqu5oqgO5q9mFtQEVvCRsi8qCEfzLR9p2BHfn5FzhSB2oj1fF7I2+DcTORkYaQ6aTR9Cofew==} peerDependencies: '@babel/core': ^7.4.0-0 dependencies: - '@babel/core': 7.14.8 - '@babel/helper-compilation-targets': 7.14.5_@babel+core@7.14.8 + '@babel/core': 7.15.0 + '@babel/helper-compilation-targets': 7.15.0_@babel+core@7.15.0 '@babel/helper-module-imports': 7.14.5 '@babel/helper-plugin-utils': 7.14.5 - '@babel/traverse': 7.14.8 + '@babel/traverse': 7.15.0 debug: 4.3.2 lodash.debounce: 4.0.8 resolve: 1.20.0 @@ -301,7 +313,7 @@ packages: resolution: {integrity: sha512-Htb24gnGJdIGT4vnRKMdoXiOIlqOLmdiUYpAQ0mYfgVT/GDm8GOYhgi4GL+hMKrkiPRohO4ts34ELFsGAPQLDQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.14.8 + '@babel/types': 7.15.0 dev: true /@babel/helper-function-name/7.14.5: @@ -310,49 +322,49 @@ packages: dependencies: '@babel/helper-get-function-arity': 7.14.5 '@babel/template': 7.14.5 - '@babel/types': 7.14.8 + '@babel/types': 7.15.0 dev: true /@babel/helper-get-function-arity/7.14.5: resolution: {integrity: sha512-I1Db4Shst5lewOM4V+ZKJzQ0JGGaZ6VY1jYvMghRjqs6DWgxLCIyFt30GlnKkfUeFLpJt2vzbMVEXVSXlIFYUg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.14.8 + '@babel/types': 7.15.0 dev: true /@babel/helper-hoist-variables/7.14.5: resolution: {integrity: sha512-R1PXiz31Uc0Vxy4OEOm07x0oSjKAdPPCh3tPivn/Eo8cvz6gveAeuyUUPB21Hoiif0uoPQSSdhIPS3352nvdyQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.14.8 + '@babel/types': 7.15.0 dev: true - /@babel/helper-member-expression-to-functions/7.14.7: - resolution: {integrity: sha512-TMUt4xKxJn6ccjcOW7c4hlwyJArizskAhoSTOCkA0uZ+KghIaci0Qg9R043kUMWI9mtQfgny+NQ5QATnZ+paaA==} + /@babel/helper-member-expression-to-functions/7.15.0: + resolution: {integrity: sha512-Jq8H8U2kYiafuj2xMTPQwkTBnEEdGKpT35lJEQsRRjnG0LW3neucsaMWLgKcwu3OHKNeYugfw+Z20BXBSEs2Lg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.14.8 + '@babel/types': 7.15.0 dev: true /@babel/helper-module-imports/7.14.5: resolution: {integrity: sha512-SwrNHu5QWS84XlHwGYPDtCxcA0hrSlL2yhWYLgeOc0w7ccOl2qv4s/nARI0aYZW+bSwAL5CukeXA47B/1NKcnQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.14.8 + '@babel/types': 7.15.0 dev: true - /@babel/helper-module-transforms/7.14.8: - resolution: {integrity: sha512-RyE+NFOjXn5A9YU1dkpeBaduagTlZ0+fccnIcAGbv1KGUlReBj7utF7oEth8IdIBQPcux0DDgW5MFBH2xu9KcA==} + /@babel/helper-module-transforms/7.15.0: + resolution: {integrity: sha512-RkGiW5Rer7fpXv9m1B3iHIFDZdItnO2/BLfWVW/9q7+KqQSDY5kUfQEbzdXM1MVhJGcugKV7kRrNVzNxmk7NBg==} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-module-imports': 7.14.5 - '@babel/helper-replace-supers': 7.14.5 + '@babel/helper-replace-supers': 7.15.0 '@babel/helper-simple-access': 7.14.8 '@babel/helper-split-export-declaration': 7.14.5 - '@babel/helper-validator-identifier': 7.14.8 + '@babel/helper-validator-identifier': 7.14.9 '@babel/template': 7.14.5 - '@babel/traverse': 7.14.8 - '@babel/types': 7.14.8 + '@babel/traverse': 7.15.0 + '@babel/types': 7.15.0 transitivePeerDependencies: - supports-color dev: true @@ -361,7 +373,7 @@ packages: resolution: {integrity: sha512-IqiLIrODUOdnPU9/F8ib1Fx2ohlgDhxnIDU7OEVi+kAbEZcyiF7BLU8W6PfvPi9LzztjS7kcbzbmL7oG8kD6VA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.14.8 + '@babel/types': 7.15.0 dev: true /@babel/helper-plugin-utils/7.14.5: @@ -375,19 +387,19 @@ packages: dependencies: '@babel/helper-annotate-as-pure': 7.14.5 '@babel/helper-wrap-function': 7.14.5 - '@babel/types': 7.14.8 + '@babel/types': 7.15.0 transitivePeerDependencies: - supports-color dev: true - /@babel/helper-replace-supers/7.14.5: - resolution: {integrity: sha512-3i1Qe9/8x/hCHINujn+iuHy+mMRLoc77b2nI9TB0zjH1hvn9qGlXjWlggdwUcju36PkPCy/lpM7LLUdcTyH4Ow==} + /@babel/helper-replace-supers/7.15.0: + resolution: {integrity: sha512-6O+eWrhx+HEra/uJnifCwhwMd6Bp5+ZfZeJwbqUTuqkhIT6YcRhiZCOOFChRypOIe0cV46kFrRBlm+t5vHCEaA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-member-expression-to-functions': 7.14.7 + '@babel/helper-member-expression-to-functions': 7.15.0 '@babel/helper-optimise-call-expression': 7.14.5 - '@babel/traverse': 7.14.8 - '@babel/types': 7.14.8 + '@babel/traverse': 7.15.0 + '@babel/types': 7.15.0 transitivePeerDependencies: - supports-color dev: true @@ -396,25 +408,25 @@ packages: resolution: {integrity: sha512-TrFN4RHh9gnWEU+s7JloIho2T76GPwRHhdzOWLqTrMnlas8T9O7ec+oEDNsRXndOmru9ymH9DFrEOxpzPoSbdg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.14.8 + '@babel/types': 7.15.0 dev: true /@babel/helper-skip-transparent-expression-wrappers/7.14.5: resolution: {integrity: sha512-dmqZB7mrb94PZSAOYtr+ZN5qt5owZIAgqtoTuqiFbHFtxgEcmQlRJVI+bO++fciBunXtB6MK7HrzrfcAzIz2NQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.14.8 + '@babel/types': 7.15.0 dev: true /@babel/helper-split-export-declaration/7.14.5: resolution: {integrity: sha512-hprxVPu6e5Kdp2puZUmvOGjaLv9TCe58E/Fl6hRq4YiVQxIcNvuq6uTM2r1mT/oPskuS9CgR+I94sqAYv0NGKA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.14.8 + '@babel/types': 7.15.0 dev: true - /@babel/helper-validator-identifier/7.14.8: - resolution: {integrity: sha512-ZGy6/XQjllhYQrNw/3zfWRwZCTVSiBLZ9DHVZxn9n2gip/7ab8mv2TWlKPIBk26RwedCBoWdjLmn+t9na2Gcow==} + /@babel/helper-validator-identifier/7.14.9: + resolution: {integrity: sha512-pQYxPY0UP6IHISRitNe8bsijHex4TWZXi2HwKVsjPiltzlhse2znVcm9Ace510VT1kxIHjGJCZZQBX2gJDbo0g==} engines: {node: '>=6.9.0'} /@babel/helper-validator-option/7.14.5: @@ -428,19 +440,19 @@ packages: dependencies: '@babel/helper-function-name': 7.14.5 '@babel/template': 7.14.5 - '@babel/traverse': 7.14.8 - '@babel/types': 7.14.8 + '@babel/traverse': 7.15.0 + '@babel/types': 7.15.0 transitivePeerDependencies: - supports-color dev: true - /@babel/helpers/7.14.8: - resolution: {integrity: sha512-ZRDmI56pnV+p1dH6d+UN6GINGz7Krps3+270qqI9UJ4wxYThfAIcI5i7j5vXC4FJ3Wap+S9qcebxeYiqn87DZw==} + /@babel/helpers/7.15.3: + resolution: {integrity: sha512-HwJiz52XaS96lX+28Tnbu31VeFSQJGOeKHJeaEPQlTl7PnlhFElWPj8tUXtqFIzeN86XxXoBr+WFAyK2PPVz6g==} engines: {node: '>=6.9.0'} dependencies: '@babel/template': 7.14.5 - '@babel/traverse': 7.14.8 - '@babel/types': 7.14.8 + '@babel/traverse': 7.15.0 + '@babel/types': 7.15.0 transitivePeerDependencies: - supports-color dev: true @@ -449,357 +461,357 @@ packages: resolution: {integrity: sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-validator-identifier': 7.14.8 + '@babel/helper-validator-identifier': 7.14.9 chalk: 2.4.2 js-tokens: 4.0.0 dev: true - /@babel/parser/7.14.8: - resolution: {integrity: sha512-syoCQFOoo/fzkWDeM0dLEZi5xqurb5vuyzwIMNZRNun+N/9A4cUZeQaE7dTrB8jGaKuJRBtEOajtnmw0I5hvvA==} + /@babel/parser/7.15.3: + resolution: {integrity: sha512-O0L6v/HvqbdJawj0iBEfVQMc3/6WP+AeOsovsIgBFyJaG+W2w7eqvZB7puddATmWuARlm1SX7DwxJ/JJUnDpEA==} engines: {node: '>=6.0.0'} hasBin: true - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.14.5_@babel+core@7.14.8: + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-ZoJS2XCKPBfTmL122iP6NM9dOg+d4lc9fFk3zxc8iDjvt8Pk4+TlsHSKhIPf6X+L5ORCdBzqMZDjL/WHj7WknQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.13.0 dependencies: - '@babel/core': 7.14.8 + '@babel/core': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 '@babel/helper-skip-transparent-expression-wrappers': 7.14.5 - '@babel/plugin-proposal-optional-chaining': 7.14.5_@babel+core@7.14.8 + '@babel/plugin-proposal-optional-chaining': 7.14.5_@babel+core@7.15.0 dev: true - /@babel/plugin-proposal-async-generator-functions/7.14.7_@babel+core@7.14.8: - resolution: {integrity: sha512-RK8Wj7lXLY3bqei69/cc25gwS5puEc3dknoFPFbqfy3XxYQBQFvu4ioWpafMBAB+L9NyptQK4nMOa5Xz16og8Q==} + /@babel/plugin-proposal-async-generator-functions/7.14.9_@babel+core@7.15.0: + resolution: {integrity: sha512-d1lnh+ZnKrFKwtTYdw320+sQWCTwgkB9fmUhNXRADA4akR6wLjaruSGnIEUjpt9HCOwTr4ynFTKu19b7rFRpmw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 + '@babel/core': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 '@babel/helper-remap-async-to-generator': 7.14.5 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.14.8 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.15.0 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-class-properties/7.14.5_@babel+core@7.14.8: + /@babel/plugin-proposal-class-properties/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-q/PLpv5Ko4dVc1LYMpCY7RVAAO4uk55qPwrIuJ5QJ8c6cVuAmhu7I/49JOppXL6gXf7ZHzpRVEUZdYoPLM04Gg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 - '@babel/helper-create-class-features-plugin': 7.14.8_@babel+core@7.14.8 + '@babel/core': 7.15.0 + '@babel/helper-create-class-features-plugin': 7.15.0_@babel+core@7.15.0 '@babel/helper-plugin-utils': 7.14.5 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-class-static-block/7.14.5_@babel+core@7.14.8: + /@babel/plugin-proposal-class-static-block/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-KBAH5ksEnYHCegqseI5N9skTdxgJdmDoAOc0uXa+4QMYKeZD0w5IARh4FMlTNtaHhbB8v+KzMdTgxMMzsIy6Yg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.12.0 dependencies: - '@babel/core': 7.14.8 - '@babel/helper-create-class-features-plugin': 7.14.8_@babel+core@7.14.8 + '@babel/core': 7.15.0 + '@babel/helper-create-class-features-plugin': 7.15.0_@babel+core@7.15.0 '@babel/helper-plugin-utils': 7.14.5 - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.14.8 + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.15.0 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-dynamic-import/7.14.5_@babel+core@7.14.8: + /@babel/plugin-proposal-dynamic-import/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-ExjiNYc3HDN5PXJx+bwC50GIx/KKanX2HiggnIUAYedbARdImiCU4RhhHfdf0Kd7JNXGpsBBBCOm+bBVy3Gb0g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 + '@babel/core': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.14.8 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.15.0 dev: true - /@babel/plugin-proposal-export-namespace-from/7.14.5_@babel+core@7.14.8: + /@babel/plugin-proposal-export-namespace-from/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-g5POA32bXPMmSBu5Dx/iZGLGnKmKPc5AiY7qfZgurzrCYgIztDlHFbznSNCoQuv57YQLnQfaDi7dxCtLDIdXdA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 + '@babel/core': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.14.8 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.15.0 dev: true - /@babel/plugin-proposal-json-strings/7.14.5_@babel+core@7.14.8: + /@babel/plugin-proposal-json-strings/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-NSq2fczJYKVRIsUJyNxrVUMhB27zb7N7pOFGQOhBKJrChbGcgEAqyZrmZswkPk18VMurEeJAaICbfm57vUeTbQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 + '@babel/core': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.14.8 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.15.0 dev: true - /@babel/plugin-proposal-logical-assignment-operators/7.14.5_@babel+core@7.14.8: + /@babel/plugin-proposal-logical-assignment-operators/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-YGn2AvZAo9TwyhlLvCCWxD90Xq8xJ4aSgaX3G5D/8DW94L8aaT+dS5cSP+Z06+rCJERGSr9GxMBZ601xoc2taw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 + '@babel/core': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.14.8 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.15.0 dev: true - /@babel/plugin-proposal-nullish-coalescing-operator/7.14.5_@babel+core@7.14.8: + /@babel/plugin-proposal-nullish-coalescing-operator/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-gun/SOnMqjSb98Nkaq2rTKMwervfdAoz6NphdY0vTfuzMfryj+tDGb2n6UkDKwez+Y8PZDhE3D143v6Gepp4Hg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 + '@babel/core': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.14.8 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.15.0 dev: true - /@babel/plugin-proposal-numeric-separator/7.14.5_@babel+core@7.14.8: + /@babel/plugin-proposal-numeric-separator/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-yiclALKe0vyZRZE0pS6RXgjUOt87GWv6FYa5zqj15PvhOGFO69R5DusPlgK/1K5dVnCtegTiWu9UaBSrLLJJBg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 + '@babel/core': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.14.8 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.15.0 dev: true - /@babel/plugin-proposal-object-rest-spread/7.14.7_@babel+core@7.14.8: + /@babel/plugin-proposal-object-rest-spread/7.14.7_@babel+core@7.15.0: resolution: {integrity: sha512-082hsZz+sVabfmDWo1Oct1u1AgbKbUAyVgmX4otIc7bdsRgHBXwTwb3DpDmD4Eyyx6DNiuz5UAATT655k+kL5g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.14.7 - '@babel/core': 7.14.8 - '@babel/helper-compilation-targets': 7.14.5_@babel+core@7.14.8 + '@babel/compat-data': 7.15.0 + '@babel/core': 7.15.0 + '@babel/helper-compilation-targets': 7.15.0_@babel+core@7.15.0 '@babel/helper-plugin-utils': 7.14.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.14.8 - '@babel/plugin-transform-parameters': 7.14.5_@babel+core@7.14.8 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.15.0 + '@babel/plugin-transform-parameters': 7.14.5_@babel+core@7.15.0 dev: true - /@babel/plugin-proposal-optional-catch-binding/7.14.5_@babel+core@7.14.8: + /@babel/plugin-proposal-optional-catch-binding/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-3Oyiixm0ur7bzO5ybNcZFlmVsygSIQgdOa7cTfOYCMY+wEPAYhZAJxi3mixKFCTCKUhQXuCTtQ1MzrpL3WT8ZQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 + '@babel/core': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.14.8 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.15.0 dev: true - /@babel/plugin-proposal-optional-chaining/7.14.5_@babel+core@7.14.8: + /@babel/plugin-proposal-optional-chaining/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-ycz+VOzo2UbWNI1rQXxIuMOzrDdHGrI23fRiz/Si2R4kv2XZQ1BK8ccdHwehMKBlcH/joGW/tzrUmo67gbJHlQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 + '@babel/core': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 '@babel/helper-skip-transparent-expression-wrappers': 7.14.5 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.14.8 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.15.0 dev: true - /@babel/plugin-proposal-private-methods/7.14.5_@babel+core@7.14.8: + /@babel/plugin-proposal-private-methods/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-838DkdUA1u+QTCplatfq4B7+1lnDa/+QMI89x5WZHBcnNv+47N8QEj2k9I2MUU9xIv8XJ4XvPCviM/Dj7Uwt9g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 - '@babel/helper-create-class-features-plugin': 7.14.8_@babel+core@7.14.8 + '@babel/core': 7.15.0 + '@babel/helper-create-class-features-plugin': 7.15.0_@babel+core@7.15.0 '@babel/helper-plugin-utils': 7.14.5 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-private-property-in-object/7.14.5_@babel+core@7.14.8: + /@babel/plugin-proposal-private-property-in-object/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-62EyfyA3WA0mZiF2e2IV9mc9Ghwxcg8YTu8BS4Wss4Y3PY725OmS9M0qLORbJwLqFtGh+jiE4wAmocK2CTUK2Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 + '@babel/core': 7.15.0 '@babel/helper-annotate-as-pure': 7.14.5 - '@babel/helper-create-class-features-plugin': 7.14.8_@babel+core@7.14.8 + '@babel/helper-create-class-features-plugin': 7.15.0_@babel+core@7.15.0 '@babel/helper-plugin-utils': 7.14.5 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.14.8 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.15.0 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-unicode-property-regex/7.14.5_@babel+core@7.14.8: + /@babel/plugin-proposal-unicode-property-regex/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-6axIeOU5LnY471KenAB9vI8I5j7NQ2d652hIYwVyRfgaZT5UpiqFKCuVXCDMSrU+3VFafnu2c5m3lrWIlr6A5Q==} engines: {node: '>=4'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 - '@babel/helper-create-regexp-features-plugin': 7.14.5_@babel+core@7.14.8 + '@babel/core': 7.15.0 + '@babel/helper-create-regexp-features-plugin': 7.14.5_@babel+core@7.15.0 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.14.8: + /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.15.0: resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 + '@babel/core': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.14.8: + /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.15.0: resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 + '@babel/core': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.14.8: + /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 + '@babel/core': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.14.8: + /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.15.0: resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 + '@babel/core': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.14.8: + /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.15.0: resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 + '@babel/core': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.14.8: + /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.15.0: resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 + '@babel/core': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.14.8: + /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.15.0: resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 + '@babel/core': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.14.8: + /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.15.0: resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 + '@babel/core': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.14.8: + /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.15.0: resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 + '@babel/core': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.14.8: + /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.15.0: resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 + '@babel/core': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.14.8: + /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.15.0: resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 + '@babel/core': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.14.8: + /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.15.0: resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 + '@babel/core': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.14.8: + /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 + '@babel/core': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.14.8: + /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 + '@babel/core': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-arrow-functions/7.14.5_@babel+core@7.14.8: + /@babel/plugin-transform-arrow-functions/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-KOnO0l4+tD5IfOdi4x8C1XmEIRWUjNRV8wc6K2vz/3e8yAOoZZvsRXRRIF/yo/MAOFb4QjtAw9xSxMXbSMRy8A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 + '@babel/core': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-async-to-generator/7.14.5_@babel+core@7.14.8: + /@babel/plugin-transform-async-to-generator/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-szkbzQ0mNk0rpu76fzDdqSyPu0MuvpXgC+6rz5rpMb5OIRxdmHfQxrktL8CYolL2d8luMCZTR0DpIMIdL27IjA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 + '@babel/core': 7.15.0 '@babel/helper-module-imports': 7.14.5 '@babel/helper-plugin-utils': 7.14.5 '@babel/helper-remap-async-to-generator': 7.14.5 @@ -807,159 +819,159 @@ packages: - supports-color dev: true - /@babel/plugin-transform-block-scoped-functions/7.14.5_@babel+core@7.14.8: + /@babel/plugin-transform-block-scoped-functions/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-dtqWqdWZ5NqBX3KzsVCWfQI3A53Ft5pWFCT2eCVUftWZgjc5DpDponbIF1+c+7cSGk2wN0YK7HGL/ezfRbpKBQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 + '@babel/core': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-block-scoping/7.14.5_@babel+core@7.14.8: - resolution: {integrity: sha512-LBYm4ZocNgoCqyxMLoOnwpsmQ18HWTQvql64t3GvMUzLQrNoV1BDG0lNftC8QKYERkZgCCT/7J5xWGObGAyHDw==} + /@babel/plugin-transform-block-scoping/7.15.3_@babel+core@7.15.0: + resolution: {integrity: sha512-nBAzfZwZb4DkaGtOes1Up1nOAp9TDRRFw4XBzBBSG9QK7KVFmYzgj9o9sbPv7TX5ofL4Auq4wZnxCoPnI/lz2Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 + '@babel/core': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-classes/7.14.5_@babel+core@7.14.8: - resolution: {integrity: sha512-J4VxKAMykM06K/64z9rwiL6xnBHgB1+FVspqvlgCdwD1KUbQNfszeKVVOMh59w3sztHYIZDgnhOC4WbdEfHFDA==} + /@babel/plugin-transform-classes/7.14.9_@babel+core@7.15.0: + resolution: {integrity: sha512-NfZpTcxU3foGWbl4wxmZ35mTsYJy8oQocbeIMoDAGGFarAmSQlL+LWMkDx/tj6pNotpbX3rltIA4dprgAPOq5A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 + '@babel/core': 7.15.0 '@babel/helper-annotate-as-pure': 7.14.5 '@babel/helper-function-name': 7.14.5 '@babel/helper-optimise-call-expression': 7.14.5 '@babel/helper-plugin-utils': 7.14.5 - '@babel/helper-replace-supers': 7.14.5 + '@babel/helper-replace-supers': 7.15.0 '@babel/helper-split-export-declaration': 7.14.5 globals: 11.12.0 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-computed-properties/7.14.5_@babel+core@7.14.8: + /@babel/plugin-transform-computed-properties/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-pWM+E4283UxaVzLb8UBXv4EIxMovU4zxT1OPnpHJcmnvyY9QbPPTKZfEj31EUvG3/EQRbYAGaYEUZ4yWOBC2xg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 + '@babel/core': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-destructuring/7.14.7_@babel+core@7.14.8: + /@babel/plugin-transform-destructuring/7.14.7_@babel+core@7.15.0: resolution: {integrity: sha512-0mDE99nK+kVh3xlc5vKwB6wnP9ecuSj+zQCa/n0voENtP/zymdT4HH6QEb65wjjcbqr1Jb/7z9Qp7TF5FtwYGw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 + '@babel/core': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-dotall-regex/7.14.5_@babel+core@7.14.8: + /@babel/plugin-transform-dotall-regex/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-loGlnBdj02MDsFaHhAIJzh7euK89lBrGIdM9EAtHFo6xKygCUGuuWe07o1oZVk287amtW1n0808sQM99aZt3gw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 - '@babel/helper-create-regexp-features-plugin': 7.14.5_@babel+core@7.14.8 + '@babel/core': 7.15.0 + '@babel/helper-create-regexp-features-plugin': 7.14.5_@babel+core@7.15.0 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-duplicate-keys/7.14.5_@babel+core@7.14.8: + /@babel/plugin-transform-duplicate-keys/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-iJjbI53huKbPDAsJ8EmVmvCKeeq21bAze4fu9GBQtSLqfvzj2oRuHVx4ZkDwEhg1htQ+5OBZh/Ab0XDf5iBZ7A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 + '@babel/core': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-exponentiation-operator/7.14.5_@babel+core@7.14.8: + /@babel/plugin-transform-exponentiation-operator/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-jFazJhMBc9D27o9jDnIE5ZErI0R0m7PbKXVq77FFvqFbzvTMuv8jaAwLZ5PviOLSFttqKIW0/wxNSDbjLk0tYA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 + '@babel/core': 7.15.0 '@babel/helper-builder-binary-assignment-operator-visitor': 7.14.5 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-for-of/7.14.5_@babel+core@7.14.8: + /@babel/plugin-transform-for-of/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-CfmqxSUZzBl0rSjpoQSFoR9UEj3HzbGuGNL21/iFTmjb5gFggJp3ph0xR1YBhexmLoKRHzgxuFvty2xdSt6gTA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 + '@babel/core': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-function-name/7.14.5_@babel+core@7.14.8: + /@babel/plugin-transform-function-name/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-vbO6kv0fIzZ1GpmGQuvbwwm+O4Cbm2NrPzwlup9+/3fdkuzo1YqOZcXw26+YUJB84Ja7j9yURWposEHLYwxUfQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 + '@babel/core': 7.15.0 '@babel/helper-function-name': 7.14.5 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-literals/7.14.5_@babel+core@7.14.8: + /@babel/plugin-transform-literals/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-ql33+epql2F49bi8aHXxvLURHkxJbSmMKl9J5yHqg4PLtdE6Uc48CH1GS6TQvZ86eoB/ApZXwm7jlA+B3kra7A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 + '@babel/core': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-member-expression-literals/7.14.5_@babel+core@7.14.8: + /@babel/plugin-transform-member-expression-literals/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-WkNXxH1VXVTKarWFqmso83xl+2V3Eo28YY5utIkbsmXoItO8Q3aZxN4BTS2k0hz9dGUloHK26mJMyQEYfkn/+Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 + '@babel/core': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-modules-amd/7.14.5_@babel+core@7.14.8: + /@babel/plugin-transform-modules-amd/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-3lpOU8Vxmp3roC4vzFpSdEpGUWSMsHFreTWOMMLzel2gNGfHE5UWIh/LN6ghHs2xurUp4jRFYMUIZhuFbody1g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 - '@babel/helper-module-transforms': 7.14.8 + '@babel/core': 7.15.0 + '@babel/helper-module-transforms': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-modules-commonjs/7.14.5_@babel+core@7.14.8: - resolution: {integrity: sha512-en8GfBtgnydoao2PS+87mKyw62k02k7kJ9ltbKe0fXTHrQmG6QZZflYuGI1VVG7sVpx4E1n7KBpNlPb8m78J+A==} + /@babel/plugin-transform-modules-commonjs/7.15.0_@babel+core@7.15.0: + resolution: {integrity: sha512-3H/R9s8cXcOGE8kgMlmjYYC9nqr5ELiPkJn4q0mypBrjhYQoc+5/Maq69vV4xRPWnkzZuwJPf5rArxpB/35Cig==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 - '@babel/helper-module-transforms': 7.14.8 + '@babel/core': 7.15.0 + '@babel/helper-module-transforms': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 '@babel/helper-simple-access': 7.14.8 babel-plugin-dynamic-import-node: 2.3.3 @@ -967,279 +979,279 @@ packages: - supports-color dev: true - /@babel/plugin-transform-modules-systemjs/7.14.5_@babel+core@7.14.8: + /@babel/plugin-transform-modules-systemjs/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-mNMQdvBEE5DcMQaL5LbzXFMANrQjd2W7FPzg34Y4yEz7dBgdaC+9B84dSO+/1Wba98zoDbInctCDo4JGxz1VYA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 + '@babel/core': 7.15.0 '@babel/helper-hoist-variables': 7.14.5 - '@babel/helper-module-transforms': 7.14.8 + '@babel/helper-module-transforms': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 - '@babel/helper-validator-identifier': 7.14.8 + '@babel/helper-validator-identifier': 7.14.9 babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-modules-umd/7.14.5_@babel+core@7.14.8: + /@babel/plugin-transform-modules-umd/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-RfPGoagSngC06LsGUYyM9QWSXZ8MysEjDJTAea1lqRjNECE3y0qIJF/qbvJxc4oA4s99HumIMdXOrd+TdKaAAA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 - '@babel/helper-module-transforms': 7.14.8 + '@babel/core': 7.15.0 + '@babel/helper-module-transforms': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-named-capturing-groups-regex/7.14.7_@babel+core@7.14.8: - resolution: {integrity: sha512-DTNOTaS7TkW97xsDMrp7nycUVh6sn/eq22VaxWfEdzuEbRsiaOU0pqU7DlyUGHVsbQbSghvjKRpEl+nUCKGQSg==} + /@babel/plugin-transform-named-capturing-groups-regex/7.14.9_@babel+core@7.15.0: + resolution: {integrity: sha512-l666wCVYO75mlAtGFfyFwnWmIXQm3kSH0C3IRnJqWcZbWkoihyAdDhFm2ZWaxWTqvBvhVFfJjMRQ0ez4oN1yYA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.14.8 - '@babel/helper-create-regexp-features-plugin': 7.14.5_@babel+core@7.14.8 + '@babel/core': 7.15.0 + '@babel/helper-create-regexp-features-plugin': 7.14.5_@babel+core@7.15.0 dev: true - /@babel/plugin-transform-new-target/7.14.5_@babel+core@7.14.8: + /@babel/plugin-transform-new-target/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-Nx054zovz6IIRWEB49RDRuXGI4Gy0GMgqG0cII9L3MxqgXz/+rgII+RU58qpo4g7tNEx1jG7rRVH4ihZoP4esQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 + '@babel/core': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-object-super/7.14.5_@babel+core@7.14.8: + /@babel/plugin-transform-object-super/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-MKfOBWzK0pZIrav9z/hkRqIk/2bTv9qvxHzPQc12RcVkMOzpIKnFCNYJip00ssKWYkd8Sf5g0Wr7pqJ+cmtuFg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 + '@babel/core': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 - '@babel/helper-replace-supers': 7.14.5 + '@babel/helper-replace-supers': 7.15.0 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-parameters/7.14.5_@babel+core@7.14.8: + /@babel/plugin-transform-parameters/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-Tl7LWdr6HUxTmzQtzuU14SqbgrSKmaR77M0OKyq4njZLQTPfOvzblNKyNkGwOfEFCEx7KeYHQHDI0P3F02IVkA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 + '@babel/core': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-property-literals/7.14.5_@babel+core@7.14.8: + /@babel/plugin-transform-property-literals/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-r1uilDthkgXW8Z1vJz2dKYLV1tuw2xsbrp3MrZmD99Wh9vsfKoob+JTgri5VUb/JqyKRXotlOtwgu4stIYCmnw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 + '@babel/core': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-regenerator/7.14.5_@babel+core@7.14.8: + /@babel/plugin-transform-regenerator/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-NVIY1W3ITDP5xQl50NgTKlZ0GrotKtLna08/uGY6ErQt6VEQZXla86x/CTddm5gZdcr+5GSsvMeTmWA5Ii6pkg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 + '@babel/core': 7.15.0 regenerator-transform: 0.14.5 dev: true - /@babel/plugin-transform-reserved-words/7.14.5_@babel+core@7.14.8: + /@babel/plugin-transform-reserved-words/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-cv4F2rv1nD4qdexOGsRQXJrOcyb5CrgjUH9PKrrtyhSDBNWGxd0UIitjyJiWagS+EbUGjG++22mGH1Pub8D6Vg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 + '@babel/core': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-shorthand-properties/7.14.5_@babel+core@7.14.8: + /@babel/plugin-transform-shorthand-properties/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-xLucks6T1VmGsTB+GWK5Pl9Jl5+nRXD1uoFdA5TSO6xtiNjtXTjKkmPdFXVLGlK5A2/or/wQMKfmQ2Y0XJfn5g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 + '@babel/core': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-spread/7.14.6_@babel+core@7.14.8: + /@babel/plugin-transform-spread/7.14.6_@babel+core@7.15.0: resolution: {integrity: sha512-Zr0x0YroFJku7n7+/HH3A2eIrGMjbmAIbJSVv0IZ+t3U2WUQUA64S/oeied2e+MaGSjmt4alzBCsK9E8gh+fag==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 + '@babel/core': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 '@babel/helper-skip-transparent-expression-wrappers': 7.14.5 dev: true - /@babel/plugin-transform-sticky-regex/7.14.5_@babel+core@7.14.8: + /@babel/plugin-transform-sticky-regex/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-Z7F7GyvEMzIIbwnziAZmnSNpdijdr4dWt+FJNBnBLz5mwDFkqIXU9wmBcWWad3QeJF5hMTkRe4dAq2sUZiG+8A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 + '@babel/core': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-template-literals/7.14.5_@babel+core@7.14.8: + /@babel/plugin-transform-template-literals/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-22btZeURqiepOfuy/VkFr+zStqlujWaarpMErvay7goJS6BWwdd6BY9zQyDLDa4x2S3VugxFb162IZ4m/S/+Gg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 + '@babel/core': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-typeof-symbol/7.14.5_@babel+core@7.14.8: + /@babel/plugin-transform-typeof-symbol/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-lXzLD30ffCWseTbMQzrvDWqljvZlHkXU+CnseMhkMNqU1sASnCsz3tSzAaH3vCUXb9PHeUb90ZT1BdFTm1xxJw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 + '@babel/core': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-unicode-escapes/7.14.5_@babel+core@7.14.8: + /@babel/plugin-transform-unicode-escapes/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-crTo4jATEOjxj7bt9lbYXcBAM3LZaUrbP2uUdxb6WIorLmjNKSpHfIybgY4B8SRpbf8tEVIWH3Vtm7ayCrKocA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 + '@babel/core': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-unicode-regex/7.14.5_@babel+core@7.14.8: + /@babel/plugin-transform-unicode-regex/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-UygduJpC5kHeCiRw/xDVzC+wj8VaYSoKl5JNVmbP7MadpNinAm3SvZCxZ42H37KZBKztz46YC73i9yV34d0Tzw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 - '@babel/helper-create-regexp-features-plugin': 7.14.5_@babel+core@7.14.8 + '@babel/core': 7.15.0 + '@babel/helper-create-regexp-features-plugin': 7.14.5_@babel+core@7.15.0 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/preset-env/7.14.8_@babel+core@7.14.8: - resolution: {integrity: sha512-a9aOppDU93oArQ51H+B8M1vH+tayZbuBqzjOhntGetZVa+4tTu5jp+XTwqHGG2lxslqomPYVSjIxQkFwXzgnxg==} + /@babel/preset-env/7.15.0_@babel+core@7.15.0: + resolution: {integrity: sha512-FhEpCNFCcWW3iZLg0L2NPE9UerdtsCR6ZcsGHUX6Om6kbCQeL5QZDqFDmeNHC6/fy6UH3jEge7K4qG5uC9In0Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.14.7 - '@babel/core': 7.14.8 - '@babel/helper-compilation-targets': 7.14.5_@babel+core@7.14.8 + '@babel/compat-data': 7.15.0 + '@babel/core': 7.15.0 + '@babel/helper-compilation-targets': 7.15.0_@babel+core@7.15.0 '@babel/helper-plugin-utils': 7.14.5 '@babel/helper-validator-option': 7.14.5 - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.14.5_@babel+core@7.14.8 - '@babel/plugin-proposal-async-generator-functions': 7.14.7_@babel+core@7.14.8 - '@babel/plugin-proposal-class-properties': 7.14.5_@babel+core@7.14.8 - '@babel/plugin-proposal-class-static-block': 7.14.5_@babel+core@7.14.8 - '@babel/plugin-proposal-dynamic-import': 7.14.5_@babel+core@7.14.8 - '@babel/plugin-proposal-export-namespace-from': 7.14.5_@babel+core@7.14.8 - '@babel/plugin-proposal-json-strings': 7.14.5_@babel+core@7.14.8 - '@babel/plugin-proposal-logical-assignment-operators': 7.14.5_@babel+core@7.14.8 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.14.5_@babel+core@7.14.8 - '@babel/plugin-proposal-numeric-separator': 7.14.5_@babel+core@7.14.8 - '@babel/plugin-proposal-object-rest-spread': 7.14.7_@babel+core@7.14.8 - '@babel/plugin-proposal-optional-catch-binding': 7.14.5_@babel+core@7.14.8 - '@babel/plugin-proposal-optional-chaining': 7.14.5_@babel+core@7.14.8 - '@babel/plugin-proposal-private-methods': 7.14.5_@babel+core@7.14.8 - '@babel/plugin-proposal-private-property-in-object': 7.14.5_@babel+core@7.14.8 - '@babel/plugin-proposal-unicode-property-regex': 7.14.5_@babel+core@7.14.8 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.14.8 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.14.8 - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.14.8 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.14.8 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.14.8 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.14.8 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.14.8 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.14.8 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.14.8 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.14.8 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.14.8 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.14.8 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.14.8 - '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.14.8 - '@babel/plugin-transform-arrow-functions': 7.14.5_@babel+core@7.14.8 - '@babel/plugin-transform-async-to-generator': 7.14.5_@babel+core@7.14.8 - '@babel/plugin-transform-block-scoped-functions': 7.14.5_@babel+core@7.14.8 - '@babel/plugin-transform-block-scoping': 7.14.5_@babel+core@7.14.8 - '@babel/plugin-transform-classes': 7.14.5_@babel+core@7.14.8 - '@babel/plugin-transform-computed-properties': 7.14.5_@babel+core@7.14.8 - '@babel/plugin-transform-destructuring': 7.14.7_@babel+core@7.14.8 - '@babel/plugin-transform-dotall-regex': 7.14.5_@babel+core@7.14.8 - '@babel/plugin-transform-duplicate-keys': 7.14.5_@babel+core@7.14.8 - '@babel/plugin-transform-exponentiation-operator': 7.14.5_@babel+core@7.14.8 - '@babel/plugin-transform-for-of': 7.14.5_@babel+core@7.14.8 - '@babel/plugin-transform-function-name': 7.14.5_@babel+core@7.14.8 - '@babel/plugin-transform-literals': 7.14.5_@babel+core@7.14.8 - '@babel/plugin-transform-member-expression-literals': 7.14.5_@babel+core@7.14.8 - '@babel/plugin-transform-modules-amd': 7.14.5_@babel+core@7.14.8 - '@babel/plugin-transform-modules-commonjs': 7.14.5_@babel+core@7.14.8 - '@babel/plugin-transform-modules-systemjs': 7.14.5_@babel+core@7.14.8 - '@babel/plugin-transform-modules-umd': 7.14.5_@babel+core@7.14.8 - '@babel/plugin-transform-named-capturing-groups-regex': 7.14.7_@babel+core@7.14.8 - '@babel/plugin-transform-new-target': 7.14.5_@babel+core@7.14.8 - '@babel/plugin-transform-object-super': 7.14.5_@babel+core@7.14.8 - '@babel/plugin-transform-parameters': 7.14.5_@babel+core@7.14.8 - '@babel/plugin-transform-property-literals': 7.14.5_@babel+core@7.14.8 - '@babel/plugin-transform-regenerator': 7.14.5_@babel+core@7.14.8 - '@babel/plugin-transform-reserved-words': 7.14.5_@babel+core@7.14.8 - '@babel/plugin-transform-shorthand-properties': 7.14.5_@babel+core@7.14.8 - '@babel/plugin-transform-spread': 7.14.6_@babel+core@7.14.8 - '@babel/plugin-transform-sticky-regex': 7.14.5_@babel+core@7.14.8 - '@babel/plugin-transform-template-literals': 7.14.5_@babel+core@7.14.8 - '@babel/plugin-transform-typeof-symbol': 7.14.5_@babel+core@7.14.8 - '@babel/plugin-transform-unicode-escapes': 7.14.5_@babel+core@7.14.8 - '@babel/plugin-transform-unicode-regex': 7.14.5_@babel+core@7.14.8 - '@babel/preset-modules': 0.1.4_@babel+core@7.14.8 - '@babel/types': 7.14.8 - babel-plugin-polyfill-corejs2: 0.2.2_@babel+core@7.14.8 - babel-plugin-polyfill-corejs3: 0.2.3_@babel+core@7.14.8 - babel-plugin-polyfill-regenerator: 0.2.2_@babel+core@7.14.8 - core-js-compat: 3.15.2 + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-proposal-async-generator-functions': 7.14.9_@babel+core@7.15.0 + '@babel/plugin-proposal-class-properties': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-proposal-class-static-block': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-proposal-dynamic-import': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-proposal-export-namespace-from': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-proposal-json-strings': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-proposal-logical-assignment-operators': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-proposal-numeric-separator': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-proposal-object-rest-spread': 7.14.7_@babel+core@7.15.0 + '@babel/plugin-proposal-optional-catch-binding': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-proposal-optional-chaining': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-proposal-private-methods': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-proposal-private-property-in-object': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-proposal-unicode-property-regex': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.15.0 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.15.0 + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.15.0 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.15.0 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.15.0 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.15.0 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.15.0 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.15.0 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.15.0 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.15.0 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.15.0 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-arrow-functions': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-async-to-generator': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-block-scoped-functions': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-block-scoping': 7.15.3_@babel+core@7.15.0 + '@babel/plugin-transform-classes': 7.14.9_@babel+core@7.15.0 + '@babel/plugin-transform-computed-properties': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-destructuring': 7.14.7_@babel+core@7.15.0 + '@babel/plugin-transform-dotall-regex': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-duplicate-keys': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-exponentiation-operator': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-for-of': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-function-name': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-literals': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-member-expression-literals': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-modules-amd': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-modules-commonjs': 7.15.0_@babel+core@7.15.0 + '@babel/plugin-transform-modules-systemjs': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-modules-umd': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-named-capturing-groups-regex': 7.14.9_@babel+core@7.15.0 + '@babel/plugin-transform-new-target': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-object-super': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-parameters': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-property-literals': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-regenerator': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-reserved-words': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-shorthand-properties': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-spread': 7.14.6_@babel+core@7.15.0 + '@babel/plugin-transform-sticky-regex': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-template-literals': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-typeof-symbol': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-unicode-escapes': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-unicode-regex': 7.14.5_@babel+core@7.15.0 + '@babel/preset-modules': 0.1.4_@babel+core@7.15.0 + '@babel/types': 7.15.0 + babel-plugin-polyfill-corejs2: 0.2.2_@babel+core@7.15.0 + babel-plugin-polyfill-corejs3: 0.2.4_@babel+core@7.15.0 + babel-plugin-polyfill-regenerator: 0.2.2_@babel+core@7.15.0 + core-js-compat: 3.16.2 semver: 6.3.0 transitivePeerDependencies: - supports-color dev: true - /@babel/preset-modules/0.1.4_@babel+core@7.14.8: + /@babel/preset-modules/0.1.4_@babel+core@7.15.0: resolution: {integrity: sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 + '@babel/core': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 - '@babel/plugin-proposal-unicode-property-regex': 7.14.5_@babel+core@7.14.8 - '@babel/plugin-transform-dotall-regex': 7.14.5_@babel+core@7.14.8 - '@babel/types': 7.14.8 + '@babel/plugin-proposal-unicode-property-regex': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-dotall-regex': 7.14.5_@babel+core@7.15.0 + '@babel/types': 7.15.0 esutils: 2.0.3 dev: true - /@babel/runtime/7.14.8: - resolution: {integrity: sha512-twj3L8Og5SaCRCErB4x4ajbvBIVV77CGeFglHpeg5WC5FF8TZzBWXtTJ4MqaD9QszLYTtr+IsaAL2rEUevb+eg==} + /@babel/runtime/7.15.3: + resolution: {integrity: sha512-OvwMLqNXkCXSz1kSm58sEsNuhqOx/fKpnUnKnFB5v8uDda5bLNEHNgKPvhDN6IU0LDcnHQ90LlJ0Q6jnyBSIBA==} engines: {node: '>=6.9.0'} dependencies: regenerator-runtime: 0.13.9 @@ -1250,32 +1262,32 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.14.5 - '@babel/parser': 7.14.8 - '@babel/types': 7.14.8 + '@babel/parser': 7.15.3 + '@babel/types': 7.15.0 dev: true - /@babel/traverse/7.14.8: - resolution: {integrity: sha512-kexHhzCljJcFNn1KYAQ6A5wxMRzq9ebYpEDV4+WdNyr3i7O44tanbDOR/xjiG2F3sllan+LgwK+7OMk0EmydHg==} + /@babel/traverse/7.15.0: + resolution: {integrity: sha512-392d8BN0C9eVxVWd8H6x9WfipgVH5IaIoLp23334Sc1vbKKWINnvwRpb4us0xtPaCumlwbTtIYNA0Dv/32sVFw==} engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.14.5 - '@babel/generator': 7.14.8 + '@babel/generator': 7.15.0 '@babel/helper-function-name': 7.14.5 '@babel/helper-hoist-variables': 7.14.5 '@babel/helper-split-export-declaration': 7.14.5 - '@babel/parser': 7.14.8 - '@babel/types': 7.14.8 + '@babel/parser': 7.15.3 + '@babel/types': 7.15.0 debug: 4.3.2 globals: 11.12.0 transitivePeerDependencies: - supports-color dev: true - /@babel/types/7.14.8: - resolution: {integrity: sha512-iob4soQa7dZw8nodR/KlOQkPh9S4I8RwCxwRIFuiMRYjOzH/KJzdUfDgz6cGi5dDaclXF4P2PAhCdrBJNIg68Q==} + /@babel/types/7.15.0: + resolution: {integrity: sha512-OBvfqnllOIdX4ojTHpwZbpvz4j3EWyjkZEdmjH0/cgsd6QOdSgU8rLSk6ard/pcW7rlmjdVSX/AWOaORR1uNOQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-validator-identifier': 7.14.8 + '@babel/helper-validator-identifier': 7.14.9 to-fast-properties: 2.0.0 /@emmetio/abbreviation/2.2.2: @@ -1301,7 +1313,7 @@ packages: ajv: 6.12.6 debug: 4.3.2 espree: 7.3.1 - globals: 13.10.0 + globals: 13.11.0 ignore: 4.0.6 import-fresh: 3.3.0 js-yaml: 3.14.1 @@ -1311,44 +1323,6 @@ packages: - supports-color dev: true - /@hapi/address/2.1.4: - resolution: {integrity: sha512-QD1PhQk+s31P1ixsX0H0Suoupp3VMXzIVMSwobR3F3MSUO2YCV0B7xqLcUw/Bh8yuvd3LhpyqLQWTNcRmp6IdQ==} - deprecated: Moved to 'npm install @sideway/address' - dev: true - - /@hapi/formula/1.2.0: - resolution: {integrity: sha512-UFbtbGPjstz0eWHb+ga/GM3Z9EzqKXFWIbSOFURU0A/Gku0Bky4bCk9/h//K2Xr3IrCfjFNhMm4jyZ5dbCewGA==} - deprecated: Moved to 'npm install @sideway/formula' - dev: true - - /@hapi/hoek/8.5.1: - resolution: {integrity: sha512-yN7kbciD87WzLGc5539Tn0sApjyiGHAJgKvG9W8C7O+6c7qmoQMfVs0W4bX17eqz6C78QJqqFrtgdK5EWf6Qow==} - deprecated: This version has been deprecated and is no longer supported or maintained - dev: true - - /@hapi/joi/16.1.8: - resolution: {integrity: sha512-wAsVvTPe+FwSrsAurNt5vkg3zo+TblvC5Bb1zMVK6SJzZqw9UrJnexxR+76cpePmtUZKHAPxcQ2Bf7oVHyahhg==} - deprecated: Switch to 'npm install joi' - dependencies: - '@hapi/address': 2.1.4 - '@hapi/formula': 1.2.0 - '@hapi/hoek': 8.5.1 - '@hapi/pinpoint': 1.0.2 - '@hapi/topo': 3.1.6 - dev: true - - /@hapi/pinpoint/1.0.2: - resolution: {integrity: sha512-dtXC/WkZBfC5vxscazuiJ6iq4j9oNx1SHknmIr8hofarpKUZKmlUVYVIhNVzIEgK5Wrc4GMHL5lZtt1uS2flmQ==} - deprecated: Moved to 'npm install @sideway/pinpoint' - dev: true - - /@hapi/topo/3.1.6: - resolution: {integrity: sha512-tAag0jEcjwH+P2quUfipd7liWCNX2F8NvYjQp2wtInsZxnMlypdw0FtAOLxtvvkO+GSRRbmNi8m/5y42PQJYCQ==} - deprecated: This version has been deprecated and is no longer supported or maintained - dependencies: - '@hapi/hoek': 8.5.1 - dev: true - /@humanwhocodes/config-array/0.5.0: resolution: {integrity: sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==} engines: {node: '>=10.10.0'} @@ -1368,8 +1342,8 @@ packages: resolution: {integrity: sha512-LFelJDOLZ6JHlmlAkgrvmcu4hpNPB91KYcr4f60D/exzU1eNOb4/KCVHIydGHIQFaOacIOD+Xy+B7P1z812cZg==} dev: true - /@iconify/json/1.1.387: - resolution: {integrity: sha512-0AVS83n8sF0cFADg0E7zTZsjACg7LgJibWpFECQK0LY05nmNRnoBUHA9srawVnUFyPZ1cZ7jXoB8ael/ZLGTVg==} + /@iconify/json/1.1.392: + resolution: {integrity: sha512-NeEnvIo815auLNL5bX732iafgdbzkDTlWJaad7fz7LWneJlImIuTDvCfybnMdS0g+9mItzfTzgUtHq2oJQqMFw==} dev: true /@intlify/bundle-utils/0.2.0_eslint@7.32.0: @@ -1379,7 +1353,7 @@ packages: '@intlify/core': 9.1.7 '@intlify/message-compiler': 9.1.7 '@intlify/shared': 9.1.7 - jsonc-eslint-parser: 1.1.0_eslint@7.32.0 + jsonc-eslint-parser: 1.2.0_eslint@7.32.0 source-map: 0.6.1 yaml-eslint-parser: 0.3.2 transitivePeerDependencies: @@ -1434,7 +1408,7 @@ packages: resolution: {integrity: sha512-zt0zlUdalumvT9AjQNxPXA36UgOndUyvBMplh8uRZU0fhWHAwhnJTcf0NaG9Qvr8I1n3HPSs96+kLb/YdwTavQ==} engines: {node: '>= 10'} - /@intlify/vite-plugin-vue-i18n/2.4.0_bdfaf14c5541fb1bd751e193a94ac007: + /@intlify/vite-plugin-vue-i18n/2.4.0_4cef02acf2f8b9c8009dbbdef0b0dc6c: resolution: {integrity: sha512-DXBvl7JEEcChjrsCUHIBJUSqgAXJSUzbaZskzTuJy5K3FDCX/g9XfHVaw8lCUaW7jYF60BIsPr87sAP1QSGB0Q==} engines: {node: '>= 12'} peerDependencies: @@ -1446,8 +1420,8 @@ packages: '@rollup/pluginutils': 4.1.1 debug: 4.3.2 fast-glob: 3.2.7 - vite: 2.4.4 - vue-i18n: 9.1.7_vue@3.2.2 + vite: 2.5.0 + vue-i18n: 9.1.7_vue@3.2.4 transitivePeerDependencies: - eslint - supports-color @@ -1479,10 +1453,10 @@ packages: engines: {node: '>= 8'} dependencies: '@nodelib/fs.scandir': 2.1.5 - fastq: 1.11.1 + fastq: 1.12.0 dev: true - /@rollup/plugin-babel/5.3.0_@babel+core@7.14.8+rollup@2.55.1: + /@rollup/plugin-babel/5.3.0_@babel+core@7.15.0+rollup@2.56.3: resolution: {integrity: sha512-9uIC8HZOnVLrLHxayq/PTzw+uS25E14KPUBh5ktF+18Mjo5yK0ToMMx6epY0uEgkjwJw0aBW4x2horYXh8juWw==} engines: {node: '>= 10.0.0'} peerDependencies: @@ -1493,38 +1467,38 @@ packages: '@types/babel__core': optional: true dependencies: - '@babel/core': 7.14.8 + '@babel/core': 7.15.0 '@babel/helper-module-imports': 7.14.5 - '@rollup/pluginutils': 3.1.0_rollup@2.55.1 - rollup: 2.55.1 + '@rollup/pluginutils': 3.1.0_rollup@2.56.3 + rollup: 2.56.3 dev: true - /@rollup/plugin-node-resolve/11.2.1_rollup@2.55.1: + /@rollup/plugin-node-resolve/11.2.1_rollup@2.56.3: resolution: {integrity: sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg==} engines: {node: '>= 10.0.0'} peerDependencies: rollup: ^1.20.0||^2.0.0 dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.55.1 + '@rollup/pluginutils': 3.1.0_rollup@2.56.3 '@types/resolve': 1.17.1 builtin-modules: 3.2.0 deepmerge: 4.2.2 is-module: 1.0.0 resolve: 1.20.0 - rollup: 2.55.1 + rollup: 2.56.3 dev: true - /@rollup/plugin-replace/2.4.2_rollup@2.55.1: + /@rollup/plugin-replace/2.4.2_rollup@2.56.3: resolution: {integrity: sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==} peerDependencies: rollup: ^1.20.0 || ^2.0.0 dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.55.1 + '@rollup/pluginutils': 3.1.0_rollup@2.56.3 magic-string: 0.25.7 - rollup: 2.55.1 + rollup: 2.56.3 dev: true - /@rollup/pluginutils/3.1.0_rollup@2.55.1: + /@rollup/pluginutils/3.1.0_rollup@2.56.3: resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==} engines: {node: '>= 8.0.0'} peerDependencies: @@ -1533,7 +1507,7 @@ packages: '@types/estree': 0.0.39 estree-walker: 1.0.1 picomatch: 2.3.0 - rollup: 2.55.1 + rollup: 2.56.3 dev: true /@rollup/pluginutils/4.1.1: @@ -1564,12 +1538,12 @@ packages: resolution: {integrity: sha512-LfZwXoGUDo0C3me81HXgkBg5CTQYb6xzEl+fNmbO4JdRiSKQ8A0GD1OBBvKAIsbCUgoyAty7m99GqqMQe784ew==} dev: true - /@types/json-schema/7.0.8: - resolution: {integrity: sha512-YSBPTLTVm2e2OoQIDYx8HaeWJ5tTToLH67kXR7zYNGupXMEHa2++G8k+DczX2cFVgalypqtyZIcU19AFcmOpmg==} + /@types/json-schema/7.0.9: + resolution: {integrity: sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ==} dev: true - /@types/node/16.4.3: - resolution: {integrity: sha512-GKM4FLMkWDc0sfx7tXqPWkM6NBow1kge0fgQh0bOnlqo4iT1kvTvMEKE0c1RtUGnbLlGRXiAA8SumE//90uKAg==} + /@types/node/16.7.1: + resolution: {integrity: sha512-ncRdc45SoYJ2H4eWU9ReDfp3vtFqDYhjOsKlFFUDEn8V1Bgr2RjYal8YT5byfadWIRluhPFU6JiDOl0H6Sl87A==} dev: true /@types/normalize-package-data/2.4.1: @@ -1583,15 +1557,19 @@ packages: /@types/resolve/1.17.1: resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==} dependencies: - '@types/node': 16.4.3 + '@types/node': 16.7.1 dev: true /@types/throttle-debounce/2.1.0: resolution: {integrity: sha512-5eQEtSCoESnh2FsiLTxE121IiE60hnMqcb435fShf4bpLRjEu1Eoekht23y6zXS9Ts3l+Szu3TARnTsA0GkOkQ==} dev: true - /@typescript-eslint/eslint-plugin/4.28.4_7541f6bc1d899a7e73db4ebff32a94db: - resolution: {integrity: sha512-s1oY4RmYDlWMlcV0kKPBaADn46JirZzvvH7c2CtAqxCY96S538JRBAzt83RrfkDheV/+G/vWNK0zek+8TB3Gmw==} + /@types/trusted-types/2.0.2: + resolution: {integrity: sha512-F5DIZ36YVLE+PN+Zwws4kJogq47hNgX3Nx6WyDJ3kcplxyke3XIzB8uK5n/Lpm1HBsbGzd6nmGehL8cPekP+Tg==} + dev: true + + /@typescript-eslint/eslint-plugin/4.29.3_fd14c0002fbbfb85b8a0070d0dffb93d: + resolution: {integrity: sha512-tBgfA3K/3TsZY46ROGvoRxQr1wBkclbVqRQep97MjVHJzcRBURRY3sNFqLk0/Xr//BY5hM9H2p/kp+6qim85SA==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: '@typescript-eslint/parser': ^4.0.0 @@ -1601,9 +1579,9 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/experimental-utils': 4.28.4_eslint@7.32.0+typescript@4.3.5 - '@typescript-eslint/parser': 4.28.4_eslint@7.32.0+typescript@4.3.5 - '@typescript-eslint/scope-manager': 4.28.4 + '@typescript-eslint/experimental-utils': 4.29.3_eslint@7.32.0+typescript@4.3.5 + '@typescript-eslint/parser': 4.29.3_eslint@7.32.0+typescript@4.3.5 + '@typescript-eslint/scope-manager': 4.29.3 debug: 4.3.2 eslint: 7.32.0 functional-red-black-tree: 1.0.1 @@ -1615,16 +1593,16 @@ packages: - supports-color dev: true - /@typescript-eslint/experimental-utils/4.28.4_eslint@7.32.0+typescript@4.3.5: - resolution: {integrity: sha512-OglKWOQRWTCoqMSy6pm/kpinEIgdcXYceIcH3EKWUl4S8xhFtN34GQRaAvTIZB9DD94rW7d/U7tUg3SYeDFNHA==} + /@typescript-eslint/experimental-utils/4.29.3_eslint@7.32.0+typescript@4.3.5: + resolution: {integrity: sha512-ffIvbytTVWz+3keg+Sy94FG1QeOvmV9dP2YSdLFHw/ieLXWCa3U1TYu8IRCOpMv2/SPS8XqhM1+ou1YHsdzKrg==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: eslint: '*' dependencies: - '@types/json-schema': 7.0.8 - '@typescript-eslint/scope-manager': 4.28.4 - '@typescript-eslint/types': 4.28.4 - '@typescript-eslint/typescript-estree': 4.28.4_typescript@4.3.5 + '@types/json-schema': 7.0.9 + '@typescript-eslint/scope-manager': 4.29.3 + '@typescript-eslint/types': 4.29.3 + '@typescript-eslint/typescript-estree': 4.29.3_typescript@4.3.5 eslint: 7.32.0 eslint-scope: 5.1.1 eslint-utils: 3.0.0_eslint@7.32.0 @@ -1633,8 +1611,8 @@ packages: - typescript dev: true - /@typescript-eslint/parser/4.28.4_eslint@7.32.0+typescript@4.3.5: - resolution: {integrity: sha512-4i0jq3C6n+og7/uCHiE6q5ssw87zVdpUj1k6VlVYMonE3ILdFApEzTWgppSRG4kVNB/5jxnH+gTeKLMNfUelQA==} + /@typescript-eslint/parser/4.29.3_eslint@7.32.0+typescript@4.3.5: + resolution: {integrity: sha512-jrHOV5g2u8ROghmspKoW7pN8T/qUzk0+DITun0MELptvngtMrwUJ1tv5zMI04CYVEUsSrN4jV7AKSv+I0y0EfQ==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: eslint: ^5.0.0 || ^6.0.0 || ^7.0.0 @@ -1643,9 +1621,9 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/scope-manager': 4.28.4 - '@typescript-eslint/types': 4.28.4 - '@typescript-eslint/typescript-estree': 4.28.4_typescript@4.3.5 + '@typescript-eslint/scope-manager': 4.29.3 + '@typescript-eslint/types': 4.29.3 + '@typescript-eslint/typescript-estree': 4.29.3_typescript@4.3.5 debug: 4.3.2 eslint: 7.32.0 typescript: 4.3.5 @@ -1653,21 +1631,21 @@ packages: - supports-color dev: true - /@typescript-eslint/scope-manager/4.28.4: - resolution: {integrity: sha512-ZJBNs4usViOmlyFMt9X9l+X0WAFcDH7EdSArGqpldXu7aeZxDAuAzHiMAeI+JpSefY2INHrXeqnha39FVqXb8w==} + /@typescript-eslint/scope-manager/4.29.3: + resolution: {integrity: sha512-x+w8BLXO7iWPkG5mEy9bA1iFRnk36p/goVlYobVWHyDw69YmaH9q6eA+Fgl7kYHmFvWlebUTUfhtIg4zbbl8PA==} engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} dependencies: - '@typescript-eslint/types': 4.28.4 - '@typescript-eslint/visitor-keys': 4.28.4 + '@typescript-eslint/types': 4.29.3 + '@typescript-eslint/visitor-keys': 4.29.3 dev: true - /@typescript-eslint/types/4.28.4: - resolution: {integrity: sha512-3eap4QWxGqkYuEmVebUGULMskR6Cuoc/Wii0oSOddleP4EGx1tjLnZQ0ZP33YRoMDCs5O3j56RBV4g14T4jvww==} + /@typescript-eslint/types/4.29.3: + resolution: {integrity: sha512-s1eV1lKNgoIYLAl1JUba8NhULmf+jOmmeFO1G5MN/RBCyyzg4TIOfIOICVNC06lor+Xmy4FypIIhFiJXOknhIg==} engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} dev: true - /@typescript-eslint/typescript-estree/4.28.4_typescript@4.3.5: - resolution: {integrity: sha512-z7d8HK8XvCRyN2SNp+OXC2iZaF+O2BTquGhEYLKLx5k6p0r05ureUtgEfo5f6anLkhCxdHtCf6rPM1p4efHYDQ==} + /@typescript-eslint/typescript-estree/4.29.3_typescript@4.3.5: + resolution: {integrity: sha512-45oQJA0bxna4O5TMwz55/TpgjX1YrAPOI/rb6kPgmdnemRZx/dB0rsx+Ku8jpDvqTxcE1C/qEbVHbS3h0hflag==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: typescript: '*' @@ -1675,8 +1653,8 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/types': 4.28.4 - '@typescript-eslint/visitor-keys': 4.28.4 + '@typescript-eslint/types': 4.29.3 + '@typescript-eslint/visitor-keys': 4.29.3 debug: 4.3.2 globby: 11.0.4 is-glob: 4.0.1 @@ -1687,32 +1665,32 @@ packages: - supports-color dev: true - /@typescript-eslint/visitor-keys/4.28.4: - resolution: {integrity: sha512-NIAXAdbz1XdOuzqkJHjNKXKj8QQ4cv5cxR/g0uQhCYf/6//XrmfpaYsM7PnBcNbfvTDLUkqQ5TPNm1sozDdTWg==} + /@typescript-eslint/visitor-keys/4.29.3: + resolution: {integrity: sha512-MGGfJvXT4asUTeVs0Q2m+sY63UsfnA+C/FDgBKV3itLBmM9H0u+URcneePtkd0at1YELmZK6HSolCqM4Fzs6yA==} engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} dependencies: - '@typescript-eslint/types': 4.28.4 + '@typescript-eslint/types': 4.29.3 eslint-visitor-keys: 2.1.0 dev: true - /@vitejs/plugin-vue/1.4.0_@vue+compiler-sfc@3.2.2: + /@vitejs/plugin-vue/1.4.0_@vue+compiler-sfc@3.2.4: resolution: {integrity: sha512-RkqfJHz9wdLKBp5Yi+kQL8BAljdrvPoccQm2PTZc/UcL4EjD11xsv2PPCduYx2oV1a/bpSKA3sD5sxOHFhz+LA==} engines: {node: '>=12.0.0'} peerDependencies: '@vue/compiler-sfc': ^3.0.8 dependencies: - '@vue/compiler-sfc': 3.2.2 + '@vue/compiler-sfc': 3.2.4 dev: true - /@volar/code-gen/0.27.1: - resolution: {integrity: sha512-tN7Rxa7mAfd8GQceKxHjjDjfRo3S4OBIEtv4GpmO75IrodjMVkZEZR/v6EY3yn52ffTh3SuAvjiCSRRcHhvDqg==} + /@volar/code-gen/0.27.7: + resolution: {integrity: sha512-CIvgh9YpZ3nlqgtq0oSZNZBZ1paxUVUB67njWBxO9S8WeQFIRcLRn9QUkSDyleROoqFXXuXn1GT8I5qY+Cv5mg==} dependencies: - '@volar/shared': 0.27.1 - '@volar/source-map': 0.27.1 + '@volar/shared': 0.27.7 + '@volar/source-map': 0.27.7 dev: true - /@volar/html2pug/0.27.1: - resolution: {integrity: sha512-4192qerpj+fuzmaduT8l9qoY7620oh4LNEK2GN8V9l7+LNAuPRr9kN0BNrow2j1WO9lklhtNqDlCSOmPCmcoPA==} + /@volar/html2pug/0.27.7: + resolution: {integrity: sha512-QPTyRSWxH+KnFuk4q5vzJxFGtTkAhAj2pkFc2TQVrp8J1Px8NM2eIZ/G9dr8r+av+1fzwEM8DCBrZNLfwV1yJQ==} dependencies: domelementtype: 2.2.0 domhandler: 4.2.0 @@ -1720,24 +1698,24 @@ packages: pug: 3.0.2 dev: true - /@volar/shared/0.27.1: - resolution: {integrity: sha512-PvoD6cp3ICaZXsLcuEB14FkrQuJnQVuhtAiss6BLGFfq4vOhJPMZihfoSZtQYkspkZ1/r8IgidMZqTtuAxYBzA==} + /@volar/shared/0.27.7: + resolution: {integrity: sha512-Uu/FrqDUDesVUxDifuTnIbyTIgRxNd6yyBabv8K0K2LpmilP6zd3Oqe6V5vhfNE8fojbUSjBmGWYYyuPbFwi5A==} dependencies: upath: 2.0.1 - vscode-jsonrpc: 8.0.0-next.1 + vscode-jsonrpc: 8.0.0-next.2 vscode-uri: 3.0.2 dev: true - /@volar/source-map/0.27.1: - resolution: {integrity: sha512-Y4cJjAIfMhoHg0jsO8uUZ4YvJAxDYSwWRD9corm+2W/4Km5AKSF7hhVwFSGy2WvODTRLZY2jjlL3eu88m1eg/g==} + /@volar/source-map/0.27.7: + resolution: {integrity: sha512-vG8YQJ5JEyB/sO5RTETpkB6uQ6H4aRIa76X0wGa9rCdJgTt5lLZGLMjG+Xo2osIaUnWyRRQ/bRU/gF+C/QfziA==} dependencies: - '@volar/shared': 0.27.1 + '@volar/shared': 0.27.7 dev: true - /@volar/transforms/0.27.1: - resolution: {integrity: sha512-jEWYXFQL+KUVS85qrYYsaQYtwdLZLs3koNFEMEQMnDMad3jEBDqd3IKgDGePI6jQ5Vq3jFneNwX1GGCFJeKvJA==} + /@volar/transforms/0.27.7: + resolution: {integrity: sha512-pOmi/18KjCtpEupbAxUvhj+EBH0vBwYKxI2VmbY+lXWBDcFZqGOZFdMt9hdoZEB/FHKeNbi13rs5WBNuZUXQAA==} dependencies: - '@volar/shared': 0.27.1 + '@volar/shared': 0.27.7 dev: true /@vscode/emmet-helper/2.7.0: @@ -1751,73 +1729,31 @@ packages: vscode-uri: 2.1.2 dev: true - /@vue/compiler-core/3.1.5: - resolution: {integrity: sha512-TXBhFinoBaXKDykJzY26UEuQU1K07FOp/0Ie+OXySqqk0bS0ZO7Xvl7UmiTUPYcLrWbxWBR7Bs/y55AI0MNc2Q==} + /@vue/compiler-core/3.2.4: + resolution: {integrity: sha512-c8NuQq7mUXXxA4iqD5VUKpyVeklK53+DMbojYMyZ0VPPrb0BUWrZWFiqSDT+MFDv0f6Hv3QuLiHWb1BWMXBbrw==} dependencies: - '@babel/parser': 7.14.8 - '@babel/types': 7.14.8 - '@vue/shared': 3.1.5 - estree-walker: 2.0.2 - source-map: 0.6.1 - dev: true - - /@vue/compiler-core/3.2.2: - resolution: {integrity: sha512-QhCI0ZU5nAR0LMcLgzW3v75374tIrHGp8XG5CzJS7Nsy+iuignbE4MZ2XJfh5TGIrtpuzfWA4eTIfukZf/cRdg==} - dependencies: - '@babel/parser': 7.14.8 - '@babel/types': 7.14.8 - '@vue/shared': 3.2.2 + '@babel/parser': 7.15.3 + '@babel/types': 7.15.0 + '@vue/shared': 3.2.4 estree-walker: 2.0.2 source-map: 0.6.1 - /@vue/compiler-dom/3.1.5: - resolution: {integrity: sha512-ZsL3jqJ52OjGU/YiT/9XiuZAmWClKInZM2aFJh9gnsAPqOrj2JIELMbkIFpVKR/CrVO/f2VxfPiiQdQTr65jcQ==} + /@vue/compiler-dom/3.2.4: + resolution: {integrity: sha512-uj1nwO4794fw2YsYas5QT+FU/YGrXbS0Qk+1c7Kp1kV7idhZIghWLTjyvYibpGoseFbYLPd+sW2/noJG5H04EQ==} dependencies: - '@vue/compiler-core': 3.1.5 - '@vue/shared': 3.1.5 - dev: true + '@vue/compiler-core': 3.2.4 + '@vue/shared': 3.2.4 - /@vue/compiler-dom/3.2.2: - resolution: {integrity: sha512-ggcc+NV/ENIE0Uc3TxVE/sKrhYVpLepMAAmEiQ047332mbKOvUkowz4TTFZ+YkgOIuBOPP0XpCxmCMg7p874mA==} + /@vue/compiler-sfc/3.2.4: + resolution: {integrity: sha512-GM+ouDdDzhqgkLmBH4bgq4kiZxJQArSppJiZHWHIx9XRaefHLmc1LBNPmN8ivm4SVfi2i7M2t9k8ZnjsScgzPQ==} dependencies: - '@vue/compiler-core': 3.2.2 - '@vue/shared': 3.2.2 - - /@vue/compiler-sfc/3.1.5_vue@3.1.5: - resolution: {integrity: sha512-mtMY6xMvZeSRx9MTa1+NgJWndrkzVTdJ1pQAmAKQuxyb5LsHVvrgP7kcQFvxPHVpLVTORbTJWHaiqoKrJvi1iA==} - peerDependencies: - vue: 3.1.5 - dependencies: - '@babel/parser': 7.14.8 - '@babel/types': 7.14.8 + '@babel/parser': 7.15.3 + '@babel/types': 7.15.0 '@types/estree': 0.0.48 - '@vue/compiler-core': 3.1.5 - '@vue/compiler-dom': 3.1.5 - '@vue/compiler-ssr': 3.1.5 - '@vue/shared': 3.1.5 - consolidate: 0.16.0 - estree-walker: 2.0.2 - hash-sum: 2.0.0 - lru-cache: 5.1.1 - magic-string: 0.25.7 - merge-source-map: 1.1.0 - postcss: 8.3.6 - postcss-modules: 4.2.2_postcss@8.3.6 - postcss-selector-parser: 6.0.6 - source-map: 0.6.1 - vue: 3.1.5 - dev: true - - /@vue/compiler-sfc/3.2.2: - resolution: {integrity: sha512-hrtqpQ5L6IPn5v7yVRo7uvLcQxv0z1+KBjZBWMBOcrXz4t+PKUxU/SWd6Tl9T8FDmYlunzKUh6lcx+2CLo6f5A==} - dependencies: - '@babel/parser': 7.14.8 - '@babel/types': 7.14.8 - '@types/estree': 0.0.48 - '@vue/compiler-core': 3.2.2 - '@vue/compiler-dom': 3.2.2 - '@vue/compiler-ssr': 3.2.2 - '@vue/shared': 3.2.2 + '@vue/compiler-core': 3.2.4 + '@vue/compiler-dom': 3.2.4 + '@vue/compiler-ssr': 3.2.4 + '@vue/shared': 3.2.4 consolidate: 0.16.0 estree-walker: 2.0.2 hash-sum: 2.0.0 @@ -1830,82 +1766,48 @@ packages: source-map: 0.6.1 dev: true - /@vue/compiler-ssr/3.1.5: - resolution: {integrity: sha512-CU5N7Di/a4lyJ18LGJxJYZS2a8PlLdWpWHX9p/XcsjT2TngMpj3QvHVRkuik2u8QrIDZ8OpYmTyj1WDNsOV+Dg==} + /@vue/compiler-ssr/3.2.4: + resolution: {integrity: sha512-bKZuXu9/4XwsFHFWIKQK+5kN7mxIIWmMmT2L4VVek7cvY/vm3p4WTsXYDGZJy0htOTXvM2ifr6sflg012T0hsw==} dependencies: - '@vue/compiler-dom': 3.1.5 - '@vue/shared': 3.1.5 - dev: true - - /@vue/compiler-ssr/3.2.2: - resolution: {integrity: sha512-rVl1agMFhdEN3Go0bCriXo+3cysxKIuRP0yh1Wd8ysRrKfAmokyDhUA8PrGSq2Ymj/LdZTh+4OKfj3p2+C+hlA==} - dependencies: - '@vue/compiler-dom': 3.2.2 - '@vue/shared': 3.2.2 + '@vue/compiler-dom': 3.2.4 + '@vue/shared': 3.2.4 dev: true /@vue/devtools-api/6.0.0-beta.15: resolution: {integrity: sha512-quBx4Jjpexo6KDiNUGFr/zF/2A4srKM9S9v2uHgMXSU//hjgq1eGzqkIFql8T9gfX5ZaVOUzYBP3jIdIR3PKIA==} - /@vue/reactivity/3.1.5: - resolution: {integrity: sha512-1tdfLmNjWG6t/CsPldh+foumYFo3cpyCHgBYQ34ylaMsJ+SNHQ1kApMIa8jN+i593zQuaw3AdWH0nJTARzCFhg==} + /@vue/reactivity/3.2.4: + resolution: {integrity: sha512-ljWTR0hr8Tn09hM2tlmWxZzCBPlgGLnq/k8K8X6EcJhtV+C8OzFySnbWqMWataojbrQOocThwsC8awKthSl2uQ==} dependencies: - '@vue/shared': 3.1.5 - dev: true + '@vue/shared': 3.2.4 - /@vue/reactivity/3.2.2: - resolution: {integrity: sha512-IHjhtmrhK6dzacj/EnLQDWOaA3HuzzVk6w84qgV8EpS4uWGIJXiRalMRg6XvGW2ykJvIl3pLsF0aBFlTMRiLOA==} + /@vue/runtime-core/3.2.4: + resolution: {integrity: sha512-W6PtEOs8P8jKYPo3JwaMAozZQivxInUleGfNwI2pK1t8ZLZIxn4kAf7p4VF4jJdQB8SZBzpfWdLUc06j7IOmpQ==} dependencies: - '@vue/shared': 3.2.2 + '@vue/reactivity': 3.2.4 + '@vue/shared': 3.2.4 - /@vue/runtime-core/3.1.5: - resolution: {integrity: sha512-YQbG5cBktN1RowQDKA22itmvQ+b40f0WgQ6CXK4VYoYICAiAfu6Cc14777ve8zp1rJRGtk5oIeS149TOculrTg==} + /@vue/runtime-dom/3.2.4: + resolution: {integrity: sha512-HcVtLyn2SGwsf6BFPwkvDPDOhOqkOKcfHDpBp5R1coX+qMsOFrY8lJnGXIY+JnxqFjND00E9+u+lq5cs/W7ooA==} dependencies: - '@vue/reactivity': 3.1.5 - '@vue/shared': 3.1.5 - dev: true - - /@vue/runtime-core/3.2.2: - resolution: {integrity: sha512-/aUk1+GO/VPX0oVxhbzSWE1zrf3/wGCsO1ALNisVokYftKqfqLDjbJHE6mrI2hx3MiuwbHrWjJClkGUVTIOPEQ==} - dependencies: - '@vue/reactivity': 3.2.2 - '@vue/shared': 3.2.2 - dev: false - - /@vue/runtime-dom/3.1.5: - resolution: {integrity: sha512-tNcf3JhVR0RfW0kw1p8xZgv30nvX8Y9rsz7eiQ0dHe273sfoCngAG0y4GvMaY4Xd8FsjUwFedd4suQ8Lu8meXg==} - dependencies: - '@vue/runtime-core': 3.1.5 - '@vue/shared': 3.1.5 + '@vue/runtime-core': 3.2.4 + '@vue/shared': 3.2.4 csstype: 2.6.17 - dev: true - /@vue/runtime-dom/3.2.2: - resolution: {integrity: sha512-1Le/NpCfawCOfePfJezvWUF+oCVLU8N+IHN4oFDOxRe6/PgHNJ+yT+YdxFifBfI+TIAoXI/9PsnqzmJZV+xsmw==} - dependencies: - '@vue/runtime-core': 3.2.2 - '@vue/shared': 3.2.2 - csstype: 2.6.17 - dev: false - - /@vue/server-renderer/3.2.2_vue@3.2.2: - resolution: {integrity: sha512-o2EcPOeDfXvSK85OhdUWVUYumFW57+MwGFCszOqka2EFpOQVrzvUtYeF6KN2kCuAxexnuVQYtIDQwPZRchXSnQ==} + /@vue/server-renderer/3.2.4_vue@3.2.4: + resolution: {integrity: sha512-ai9WxJ78nnUDk+26vwZhlA1Quz3tA+90DgJX6iseen2Wwnndd91xicFW+6ROR/ZP0yFNuQ017eZJBw8OqoPL+w==} peerDependencies: - vue: 3.2.2 + vue: 3.2.4 dependencies: - '@vue/compiler-ssr': 3.2.2 - '@vue/shared': 3.2.2 - vue: 3.2.2 + '@vue/compiler-ssr': 3.2.4 + '@vue/shared': 3.2.4 + vue: 3.2.4 dev: true - /@vue/shared/3.1.5: - resolution: {integrity: sha512-oJ4F3TnvpXaQwZJNF3ZK+kLPHKarDmJjJ6jyzVNDKH9md1dptjC7lWR//jrGuLdek/U6iltWxqAnYOu8gCiOvA==} - dev: true + /@vue/shared/3.2.4: + resolution: {integrity: sha512-j2j1MRmjalVKr3YBTxl/BClSIc8UQ8NnPpLYclxerK65JIowI4O7n8O8lElveEtEoHxy1d7BelPUDI0Q4bumqg==} - /@vue/shared/3.2.2: - resolution: {integrity: sha512-dvYb318tk9uOzHtSaT3WII/HscQSIRzoCZ5GyxEb3JlkEXASpAUAQwKnvSe2CudnF8XHFRTB7VITWSnWNLZUtA==} - - /@vueuse/core/6.0.0_vue@3.2.2: + /@vueuse/core/6.0.0_vue@3.2.4: resolution: {integrity: sha512-PuBfNo/Zv+NkLcZaYWBA1WjqxQhTDC0DMQpoAIJdo/GFul/1SpBbONhUho2zqtOmq8vyGuK200wNFvyA4YUAMg==} peerDependencies: '@vue/composition-api': ^1.1.0 @@ -1916,20 +1818,20 @@ packages: vue: optional: true dependencies: - '@vueuse/shared': 6.0.0_vue@3.2.2 - vue: 3.2.2 - vue-demi: 0.11.3_vue@3.2.2 + '@vueuse/shared': 6.0.0_vue@3.2.4 + vue: 3.2.4 + vue-demi: 0.11.3_vue@3.2.4 dev: false - /@vueuse/head/0.6.0_vue@3.2.2: + /@vueuse/head/0.6.0_vue@3.2.4: resolution: {integrity: sha512-fi7ZjkMpEAUtTT6iR5wgL2HkX1+3zbrmbpcwU//RgJIWEr5b42jk8E9yOheaC2dYAAHzelAllVpX0pDmhcTXuw==} peerDependencies: vue: '>=3' dependencies: - vue: 3.2.2 + vue: 3.2.4 dev: false - /@vueuse/shared/6.0.0_vue@3.2.2: + /@vueuse/shared/6.0.0_vue@3.2.4: resolution: {integrity: sha512-PLjjqL8bxI5q86qk/ifXy572nfQE3rJc1RMem+dKcGayaagMnC4kXHEt64V98DVielSwr2FuYaeFodi4KJrvdg==} peerDependencies: '@vue/composition-api': ^1.1.0 @@ -1940,30 +1842,30 @@ packages: vue: optional: true dependencies: - vue: 3.2.2 - vue-demi: 0.11.3_vue@3.2.2 + vue: 3.2.4 + vue-demi: 0.11.3_vue@3.2.4 dev: false - /@windicss/config/1.2.7: - resolution: {integrity: sha512-XpH/dkXWk2LGygHzHBWWEW/yGcLqhpFFN2jo+zMeWZ1ggBzndQQzBHqHGQHcr6U6v3PoBuOz1prVWgUmQxn9eQ==} + /@windicss/config/1.2.8: + resolution: {integrity: sha512-v9vyIiG8GYUTYo874ExlVu1i6vlsWo4RFZWiDGfPKdN7GBRCcJcEV+X+j3AZPPIsx5JvD5TXQlDvkbYIqYWYbQ==} dependencies: debug: 4.3.2 jiti: 1.11.0 - windicss: 3.1.6 + windicss: 3.1.7 transitivePeerDependencies: - supports-color dev: true - /@windicss/plugin-utils/1.2.7: - resolution: {integrity: sha512-aNQhd1nEjkVsCHmzq0+4VGTmovOGGfPnH2hspH4YuDxMDhQ/99VrBdyk7irngWJjedjHB3+UYCSYWpY5a+2Hbg==} + /@windicss/plugin-utils/1.2.8: + resolution: {integrity: sha512-JwnFMJMCX/+Re4iItozvbWC3yz/7WJNOJJkgDKQ9X5Ran1sfNjx9m3LCijsYLf0MULCplZJIh/HzdxjxZMNFUA==} dependencies: '@antfu/utils': 0.2.4 - '@windicss/config': 1.2.7 + '@windicss/config': 1.2.8 debug: 4.3.2 fast-glob: 3.2.7 magic-string: 0.25.7 micromatch: 4.0.4 - windicss: 3.1.6 + windicss: 3.1.7 transitivePeerDependencies: - supports-color dev: true @@ -1976,7 +1878,7 @@ packages: resolution: {integrity: sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==} engines: {node: '>= 0.6'} dependencies: - mime-types: 2.1.31 + mime-types: 2.1.32 negotiator: 0.6.2 dev: true @@ -2087,9 +1989,9 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.3 - es-abstract: 1.18.3 + es-abstract: 1.18.5 get-intrinsic: 1.1.1 - is-string: 1.0.6 + is-string: 1.0.7 dev: true /array-union/2.1.0: @@ -2103,7 +2005,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.3 - es-abstract: 1.18.3 + es-abstract: 1.18.5 dev: true /array.prototype.flatmap/1.2.4: @@ -2112,7 +2014,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.3 - es-abstract: 1.18.3 + es-abstract: 1.18.5 function-bind: 1.1.1 dev: true @@ -2155,38 +2057,38 @@ packages: object.assign: 4.1.2 dev: true - /babel-plugin-polyfill-corejs2/0.2.2_@babel+core@7.14.8: + /babel-plugin-polyfill-corejs2/0.2.2_@babel+core@7.15.0: resolution: {integrity: sha512-kISrENsJ0z5dNPq5eRvcctITNHYXWOA4DUZRFYCz3jYCcvTb/A546LIddmoGNMVYg2U38OyFeNosQwI9ENTqIQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.14.7 - '@babel/core': 7.14.8 - '@babel/helper-define-polyfill-provider': 0.2.3_@babel+core@7.14.8 + '@babel/compat-data': 7.15.0 + '@babel/core': 7.15.0 + '@babel/helper-define-polyfill-provider': 0.2.3_@babel+core@7.15.0 semver: 6.3.0 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-corejs3/0.2.3_@babel+core@7.14.8: - resolution: {integrity: sha512-rCOFzEIJpJEAU14XCcV/erIf/wZQMmMT5l5vXOpL5uoznyOGfDIjPj6FVytMvtzaKSTSVKouOCTPJ5OMUZH30g==} + /babel-plugin-polyfill-corejs3/0.2.4_@babel+core@7.15.0: + resolution: {integrity: sha512-z3HnJE5TY/j4EFEa/qpQMSbcUJZ5JQi+3UFjXzn6pQCmIKc5Ug5j98SuYyH+m4xQnvKlMDIW4plLfgyVnd0IcQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 - '@babel/helper-define-polyfill-provider': 0.2.3_@babel+core@7.14.8 - core-js-compat: 3.15.2 + '@babel/core': 7.15.0 + '@babel/helper-define-polyfill-provider': 0.2.3_@babel+core@7.15.0 + core-js-compat: 3.16.2 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-regenerator/0.2.2_@babel+core@7.14.8: + /babel-plugin-polyfill-regenerator/0.2.2_@babel+core@7.15.0: resolution: {integrity: sha512-Goy5ghsc21HgPDFtzRkSirpZVW35meGoTmTOb2bxqdl60ghub4xOidgNTHaZfQ2FaxQsKmwvXtOAkcIS4SMBWg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.8 - '@babel/helper-define-polyfill-provider': 0.2.3_@babel+core@7.14.8 + '@babel/core': 7.15.0 + '@babel/helper-define-polyfill-provider': 0.2.3_@babel+core@7.15.0 transitivePeerDependencies: - supports-color dev: true @@ -2195,7 +2097,7 @@ packages: resolution: {integrity: sha512-GAwkz0AihzY5bkwIY5QDR+LvsRQgB/B+1foMPvi0FZPMl5fjD7ICiznUiBdLYMH1QYe6vqu4gWYytZOccLouFw==} engines: {node: '>= 10.0.0'} dependencies: - '@babel/types': 7.14.8 + '@babel/types': 7.15.0 dev: true /balanced-match/1.0.2: @@ -2244,20 +2146,20 @@ packages: resolution: {integrity: sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==} dev: true - /browserslist/4.16.6: - resolution: {integrity: sha512-Wspk/PqO+4W9qp5iUTJsa1B/QrYn1keNCcEP5OvP7WBwT4KaDly0uONYmC6Xa3Z5IqnUgS0KcgLYu1l74x0ZXQ==} + /browserslist/4.16.8: + resolution: {integrity: sha512-sc2m9ohR/49sWEbPj14ZSSZqp+kbi16aLao42Hmn3Z8FpjuMaq2xCA2l4zl9ITfyzvnvyE0hcg62YkIGKxgaNQ==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001247 - colorette: 1.2.2 - electron-to-chromium: 1.3.786 + caniuse-lite: 1.0.30001251 + colorette: 1.3.0 + electron-to-chromium: 1.3.816 escalade: 3.1.1 - node-releases: 1.1.73 + node-releases: 1.1.75 dev: true - /buffer-from/1.1.1: - resolution: {integrity: sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==} + /buffer-from/1.1.2: + resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} dev: true /builtin-modules/3.2.0: @@ -2294,8 +2196,8 @@ packages: upper-case: 1.1.3 dev: true - /caniuse-lite/1.0.30001247: - resolution: {integrity: sha512-4rS7co+7+AoOSPRPOPUt5/GdaqZc0EsUpWk66ofE3HJTAajUK2Ss2VwoNzVN69ghg8lYYlh0an0Iy4LIHHo9UQ==} + /caniuse-lite/1.0.30001251: + resolution: {integrity: sha512-HOe1r+9VkU4TFmnU70z+r7OLmtR+/chB1rdcJUeQlAinjEeb0cKL20tlAtOagNZhbrtLnCvV19B4FmF1rgzl6A==} dev: true /chalk/2.4.2: @@ -2307,14 +2209,6 @@ packages: supports-color: 5.5.0 dev: true - /chalk/4.1.1: - resolution: {integrity: sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==} - engines: {node: '>=10'} - dependencies: - ansi-styles: 4.3.0 - supports-color: 7.2.0 - dev: true - /chalk/4.1.2: resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} engines: {node: '>=10'} @@ -2326,7 +2220,7 @@ packages: /character-parser/2.2.0: resolution: {integrity: sha1-x84o821LzZdE5f/CxfzeHHMmH8A=} dependencies: - is-regex: 1.1.3 + is-regex: 1.1.4 dev: true /ci-info/3.2.0: @@ -2376,8 +2270,8 @@ packages: resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} dev: true - /colorette/1.2.2: - resolution: {integrity: sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w==} + /colorette/1.3.0: + resolution: {integrity: sha512-ecORCqbSFP7Wm8Y6lyqMJjexBQqXSF7SSeaTyGGphogUjBlFP9m9o08wy86HL2uB7fMTxtOUzLMk7ogKcxMg1w==} dev: true /combined-stream/1.0.8: @@ -2400,7 +2294,7 @@ packages: resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==} engines: {node: '>= 0.6'} dependencies: - mime-db: 1.48.0 + mime-db: 1.49.0 dev: true /compression/1.7.4: @@ -2430,8 +2324,8 @@ packages: /constantinople/4.0.1: resolution: {integrity: sha512-vCrqcSIq4//Gx74TXXCGnHpulY1dskqLTFGDmhrGxzeXL8lF8kvXv6mpNWlJj1uD4DW23D4ljAqbY4RRaaUZIw==} dependencies: - '@babel/parser': 7.14.8 - '@babel/types': 7.14.8 + '@babel/parser': 7.15.3 + '@babel/types': 7.15.0 dev: true /content-disposition/0.5.3: @@ -2461,10 +2355,10 @@ packages: engines: {node: '>= 0.6'} dev: true - /core-js-compat/3.15.2: - resolution: {integrity: sha512-Wp+BJVvwopjI+A1EFqm2dwUmWYXrvucmtIB2LgXn/Rb+gWPKYxtmb4GKHGKG/KGF1eK9jfjzT38DITbTOCX/SQ==} + /core-js-compat/3.16.2: + resolution: {integrity: sha512-4lUshXtBXsdmp8cDWh6KKiHUg40AjiuPD3bOWkNVsr1xkAhpUqCjaZ8lB1bKx9Gb5fXcbRbFJ4f4qpRIRTuJqQ==} dependencies: - browserslist: 4.16.6 + browserslist: 4.16.8 semver: 7.0.0 dev: true @@ -2592,9 +2486,9 @@ packages: call-bind: 1.0.2 es-get-iterator: 1.1.2 get-intrinsic: 1.1.1 - is-arguments: 1.1.0 - is-date-object: 1.0.4 - is-regex: 1.1.3 + is-arguments: 1.1.1 + is-date-object: 1.0.5 + is-regex: 1.1.4 isarray: 2.0.5 object-is: 1.1.5 object-keys: 1.1.1 @@ -2603,7 +2497,7 @@ packages: side-channel: 1.0.4 which-boxed-primitive: 1.0.2 which-collection: 1.0.1 - which-typed-array: 1.1.4 + which-typed-array: 1.1.6 dev: true /deep-is/0.1.3: @@ -2709,8 +2603,8 @@ packages: requiresBuild: true dev: true - /electron-to-chromium/1.3.786: - resolution: {integrity: sha512-AmvbLBj3hepRk8v/DHrFF8gINxOFfDbrn6Ts3PcK46/FBdQb5OMmpamSpZQXSkfi77FfBzYtQtAk+00LCLYMVw==} + /electron-to-chromium/1.3.816: + resolution: {integrity: sha512-/AvJPIJldO0NkwkfpUD7u1e4YEGRFBQpFuvl9oGCcVgWOObsZB1loxVGeVUJB9kmvfsBUUChPYdgRzx6+AKNyg==} dev: true /emmet/2.3.4: @@ -2755,8 +2649,8 @@ packages: is-arrayish: 0.2.1 dev: true - /es-abstract/1.18.3: - resolution: {integrity: sha512-nQIr12dxV7SSxE6r6f1l3DtAeEYdsGpps13dR0TwJg1S8gyp4ZPgy3FZcHBgbiQqnoqSTb+oC+kO4UQ0C/J8vw==} + /es-abstract/1.18.5: + resolution: {integrity: sha512-DDggyJLoS91CkJjgauM5c0yZMjiD1uK3KcaCeAmffGwZ+ODWzOkPN4QwRbsK5DOFf06fywmyLci3ZD8jLGhVYA==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 @@ -2765,10 +2659,11 @@ packages: get-intrinsic: 1.1.1 has: 1.0.3 has-symbols: 1.0.2 - is-callable: 1.2.3 + internal-slot: 1.0.3 + is-callable: 1.2.4 is-negative-zero: 2.0.1 - is-regex: 1.1.3 - is-string: 1.0.6 + is-regex: 1.1.4 + is-string: 1.0.7 object-inspect: 1.11.0 object-keys: 1.1.1 object.assign: 4.1.2 @@ -2783,10 +2678,10 @@ packages: call-bind: 1.0.2 get-intrinsic: 1.1.1 has-symbols: 1.0.2 - is-arguments: 1.1.0 + is-arguments: 1.1.1 is-map: 2.0.2 is-set: 2.0.2 - is-string: 1.0.6 + is-string: 1.0.7 isarray: 2.0.5 dev: true @@ -2794,13 +2689,13 @@ packages: resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} engines: {node: '>= 0.4'} dependencies: - is-callable: 1.2.3 - is-date-object: 1.0.4 + is-callable: 1.2.4 + is-date-object: 1.0.5 is-symbol: 1.0.4 dev: true - /esbuild/0.12.16: - resolution: {integrity: sha512-XqI9cXP2bmQ6MREIqrYBb13KfYFSERsV1+e5jSVWps8dNlLZK+hln7d0mznzDIpfISsg/AgQW0DW3kSInXWhrg==} + /esbuild/0.12.22: + resolution: {integrity: sha512-yWCr9RoFehpqoe/+MwZXJpYOEIt7KOEvNnjIeMZpMSyQt+KCBASM3y7yViiN5dJRphf1wGdUz1+M4rTtWd/ulA==} hasBin: true requiresBuild: true dev: true @@ -2837,7 +2732,7 @@ packages: source-map: 0.6.1 dev: true - /eslint-config-standard/16.0.3_3062fa9fac81ca2e86f20e6f3c8ea22d: + /eslint-config-standard/16.0.3_6831b5ab259a57852ab508175ef50fb9: resolution: {integrity: sha512-x4fmJL5hGqNJKGHSjnLdgA6U6h1YW/G2dW9fA+cyVur4SK6lyue8+UgNKWlZtUDTXvgKDD/Oa3GQjmB5kjtVvg==} peerDependencies: eslint: ^7.12.1 @@ -2846,24 +2741,20 @@ packages: eslint-plugin-promise: ^4.2.1 || ^5.0.0 dependencies: eslint: 7.32.0 - eslint-plugin-import: 2.23.4_eslint@7.32.0 + eslint-plugin-import: 2.24.1_eslint@7.32.0 eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.1.0_eslint@7.32.0 dev: true - /eslint-config-vue-global-api/0.4.1: - resolution: {integrity: sha512-mJTiKBGLe1FXmEifYzCQzUTBpFv8OtfYzP6PAOuVRf+3hkGLMeiDh4bVzZEaJfdExtc8mPw9vp35YSLhwTselQ==} - dev: false - - /eslint-import-resolver-node/0.3.4: - resolution: {integrity: sha512-ogtf+5AB/O+nM6DIeBUNr2fuT7ot9Qg/1harBfBtaP13ekEWFQEEMP94BCB7zaNW3gyY+8SHYF00rnqYwXKWOA==} + /eslint-import-resolver-node/0.3.6: + resolution: {integrity: sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==} dependencies: - debug: 2.6.9 + debug: 3.2.7 resolve: 1.20.0 dev: true - /eslint-module-utils/2.6.1: - resolution: {integrity: sha512-ZXI9B8cxAJIH4nfkhTwcRTEAnrVfobYqwjWy/QMCZ8rHkZHFjf9yO4BzpiF9kCSfNlMG54eKigISHpX0+AaT4A==} + /eslint-module-utils/2.6.2: + resolution: {integrity: sha512-QG8pcgThYOuqxupd06oYTZoNOGaUdTY1PqK+oS6ElF6vs4pBdk/aYxFVQQXzcrAqp9m7cl7lb2ubazX+g16k2Q==} engines: {node: '>=4'} dependencies: debug: 3.2.7 @@ -2898,8 +2789,8 @@ packages: htmlparser2: 6.1.0 dev: true - /eslint-plugin-import/2.23.4_eslint@7.32.0: - resolution: {integrity: sha512-6/wP8zZRsnQFiR3iaPFgh5ImVRM1WN5NUWfTIRqwOdeiGJlBcSk82o1FEVq8yXmy4lkIzTo7YhHCIxlU/2HyEQ==} + /eslint-plugin-import/2.24.1_eslint@7.32.0: + resolution: {integrity: sha512-KSFWhNxPH8OGJwpRJJs+Z7I0a13E2iFQZJIvSnCu6KUs4qmgAm3xN9GYBCSoiGWmwA7gERZPXqYQjcoCROnYhQ==} engines: {node: '>=4'} peerDependencies: eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 @@ -2909,11 +2800,11 @@ packages: debug: 2.6.9 doctrine: 2.1.0 eslint: 7.32.0 - eslint-import-resolver-node: 0.3.4 - eslint-module-utils: 2.6.1 + eslint-import-resolver-node: 0.3.6 + eslint-module-utils: 2.6.2 find-up: 2.1.0 has: 1.0.3 - is-core-module: 2.5.0 + is-core-module: 2.6.0 minimatch: 3.0.4 object.values: 1.1.4 pkg-up: 2.0.0 @@ -2922,14 +2813,15 @@ packages: tsconfig-paths: 3.10.1 dev: true - /eslint-plugin-jsonc/1.4.0_eslint@7.32.0: - resolution: {integrity: sha512-SmajEsMUFIIZEnUdng5b2U1MkxB9pOb7IiiGKOsh+W6cFbPljFIH8ET+6vy1eLI0u2YQEzjGZ7xGiWs8ynk4Xw==} + /eslint-plugin-jsonc/1.6.0_eslint@7.32.0: + resolution: {integrity: sha512-0J/8SAjrBkgARsiQ/fyrMTochEy6t24fE9uQ5Gq5KmPZUXAKQuOjS3Zned2iI4r9jyUAoQlAXBfcGDQpWbJkCQ==} + engines: {node: '>=8.10.0'} peerDependencies: eslint: ^5.0.0 || >=6.0.0 dependencies: eslint: 7.32.0 eslint-utils: 3.0.0_eslint@7.32.0 - jsonc-eslint-parser: 1.1.0_eslint@7.32.0 + jsonc-eslint-parser: 1.2.0_eslint@7.32.0 natural-compare: 1.4.0 dev: true @@ -3011,7 +2903,7 @@ packages: eslint-utils: 2.1.0 natural-compare: 1.4.0 semver: 7.3.5 - vue-eslint-parser: 7.9.0_eslint@7.32.0 + vue-eslint-parser: 7.10.0_eslint@7.32.0 transitivePeerDependencies: - supports-color dev: true @@ -3043,8 +2935,8 @@ packages: peerDependencies: eslint: '>=7.0.0' dependencies: - '@babel/core': 7.14.8 - '@babel/eslint-parser': 7.14.7_@babel+core@7.14.8+eslint@7.32.0 + '@babel/core': 7.15.0 + '@babel/eslint-parser': 7.15.0_@babel+core@7.15.0+eslint@7.32.0 eslint: 7.32.0 eslint-visitor-keys: 2.1.0 esquery: 1.4.0 @@ -3094,7 +2986,7 @@ packages: '@eslint/eslintrc': 0.4.3 '@humanwhocodes/config-array': 0.5.0 ajv: 6.12.6 - chalk: 4.1.1 + chalk: 4.1.2 cross-spawn: 7.0.3 debug: 4.3.2 doctrine: 3.0.0 @@ -3110,7 +3002,7 @@ packages: file-entry-cache: 6.0.1 functional-red-black-tree: 1.0.1 glob-parent: 5.1.2 - globals: 13.10.0 + globals: 13.11.0 ignore: 4.0.6 import-fresh: 3.3.0 imurmurhash: 0.1.4 @@ -3205,7 +3097,7 @@ packages: dependencies: clean-css: 4.2.3 on-headers: 1.0.2 - uglify-js: 3.14.0 + uglify-js: 3.14.1 dev: true /express/4.17.1: @@ -3274,8 +3166,8 @@ packages: resolution: {integrity: sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=} dev: true - /fastq/1.11.1: - resolution: {integrity: sha512-HOnr8Mc60eNYl1gzwp6r5RoUyAn5/glBolUzP/Ez6IFVPMPirxn/9phgL6zhOtaTy7ISwPvQ+wT+hfcRZh/bzw==} + /fastq/1.12.0: + resolution: {integrity: sha512-VNX0QkHK3RsXVKr9KrlUv/FoTa0NdbYoHHl7uXHv2rzyHSlxjdNAKug2twd9luJxpcyNeAgf5iPPMutJO67Dfg==} dependencies: reusify: 1.0.4 dev: true @@ -3326,12 +3218,12 @@ packages: resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==} engines: {node: ^10.12.0 || >=12.0.0} dependencies: - flatted: 3.2.1 + flatted: 3.2.2 rimraf: 3.0.2 dev: true - /flatted/3.2.1: - resolution: {integrity: sha512-OMQjaErSFHmHqZe+PSidH5n8j3O0F2DdnVh8JB4j4eUQ2k6KvB0qGfrKIhapvez5JerBbmWkaLYUYWISaESoXg==} + /flatted/3.2.2: + resolution: {integrity: sha512-JaTY/wtrcSyvXJl4IMFHPKyFur1sE9AUqc0QnhOaJ0CxHtAoIV8pYDzeEfAaNEtGkOfq4gr3LBFmdXW5mOQFnA==} dev: true /foreach/2.0.5: @@ -3344,7 +3236,7 @@ packages: dependencies: asynckit: 0.4.0 combined-stream: 1.0.8 - mime-types: 2.1.31 + mime-types: 2.1.32 dev: true /forwarded/0.2.0: @@ -3361,7 +3253,7 @@ packages: resolution: {integrity: sha512-C5owb14u9eJwizKGdchcDUQeFtlSHHthBk8pbX9Vc1PFZrLombudjDnNns88aYslCyF6IY5SUw3Roz6xShcEIQ==} engines: {node: '>=12'} dependencies: - graceful-fs: 4.2.6 + graceful-fs: 4.2.8 jsonfile: 6.1.0 universalify: 2.0.0 dev: true @@ -3371,7 +3263,7 @@ packages: engines: {node: '>=10'} dependencies: at-least-node: 1.0.0 - graceful-fs: 4.2.6 + graceful-fs: 4.2.8 jsonfile: 6.1.0 universalify: 2.0.0 dev: true @@ -3446,8 +3338,8 @@ packages: engines: {node: '>=4'} dev: true - /globals/13.10.0: - resolution: {integrity: sha512-piHC3blgLGFjvOuMmWZX60f+na1lXFDhQXBf1UYp2fXPXqvEUbOhNwi6BsQ0bQishwedgnjkwv1d9zKf+MWw3g==} + /globals/13.11.0: + resolution: {integrity: sha512-08/xrJ7wQjK9kkkRoI3OFUBbLx4f+6x3SGwcPvQ0QH6goFDrOU2oyAWrmh3dJezu65buo+HBMzAMQy6rovVC3g==} engines: {node: '>=8'} dependencies: type-fest: 0.20.2 @@ -3465,8 +3357,8 @@ packages: slash: 3.0.0 dev: true - /graceful-fs/4.2.6: - resolution: {integrity: sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==} + /graceful-fs/4.2.8: + resolution: {integrity: sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==} dev: true /gray-matter/4.0.3: @@ -3502,6 +3394,13 @@ packages: engines: {node: '>= 0.4'} dev: true + /has-tostringtag/1.0.0: + resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==} + engines: {node: '>= 0.4'} + dependencies: + has-symbols: 1.0.2 + dev: true + /has/1.0.3: resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==} engines: {node: '>= 0.4.0'} @@ -3549,7 +3448,7 @@ packages: he: 1.2.0 param-case: 2.1.1 relateurl: 0.2.7 - uglify-js: 3.14.0 + uglify-js: 3.14.1 dev: true /htmlparser2/6.1.0: @@ -3642,6 +3541,10 @@ packages: postcss: 8.3.6 dev: true + /idb/6.1.2: + resolution: {integrity: sha512-1DNDVu3yDhAZkFDlJf0t7r+GLZ248F5pTAtA7V0oVG3yjmV125qZOx3g0XpAEkGZVYQiFDAsSOnGet2bhugc3w==} + dev: true + /ignore/4.0.6: resolution: {integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==} engines: {node: '>= 4'} @@ -3694,26 +3597,30 @@ packages: engines: {node: '>= 0.10'} dev: true - /is-arguments/1.1.0: - resolution: {integrity: sha512-1Ij4lOMPl/xB5kBDn7I+b2ttPMKa8szhEIrXDuXQD/oe3HJLTLhqhgGspwgyGd6MOywBUqVvYicF72lkgDnIHg==} + /is-arguments/1.1.1: + resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 + has-tostringtag: 1.0.0 dev: true /is-arrayish/0.2.1: resolution: {integrity: sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=} dev: true - /is-bigint/1.0.2: - resolution: {integrity: sha512-0JV5+SOCQkIdzjBK9buARcV804Ddu7A0Qet6sHi3FimE9ne6m4BGQZfRn+NZiXbBk4F4XmHfDZIipLj9pX8dSA==} + /is-bigint/1.0.4: + resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} + dependencies: + has-bigints: 1.0.1 dev: true - /is-boolean-object/1.1.1: - resolution: {integrity: sha512-bXdQWkECBUIAcCkeH1unwJLIpZYaa5VvuygSyS/c2lf719mTKZDU5UdDRlpd01UjADgmW8RfqaP+mRaVPdr/Ng==} + /is-boolean-object/1.1.2: + resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 + has-tostringtag: 1.0.0 dev: true /is-builtin-module/3.1.0: @@ -3723,20 +3630,22 @@ packages: builtin-modules: 3.2.0 dev: true - /is-callable/1.2.3: - resolution: {integrity: sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ==} + /is-callable/1.2.4: + resolution: {integrity: sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==} engines: {node: '>= 0.4'} dev: true - /is-core-module/2.5.0: - resolution: {integrity: sha512-TXCMSDsEHMEEZ6eCA8rwRDbLu55MRGmrctljsBX/2v1d9/GzqHOxW5c5oPSgrUt2vBFXebu9rGqckXGPWOlYpg==} + /is-core-module/2.6.0: + resolution: {integrity: sha512-wShG8vs60jKfPWpF2KZRaAtvt3a20OAn7+IJ6hLPECpSABLcKtFKTTI4ZtH5QcBruBHlq+WsdHWyz0BCZW7svQ==} dependencies: has: 1.0.3 dev: true - /is-date-object/1.0.4: - resolution: {integrity: sha512-/b4ZVsG7Z5XVtIxs/h9W8nvfLgSAyKYdtGWQLbqy6jA1icmgjf8WCoTKgeS4wy5tYaPePouzFMANbnj94c2Z+A==} + /is-date-object/1.0.5: + resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: 1.0.0 dev: true /is-expression/4.0.0: @@ -3781,9 +3690,11 @@ packages: engines: {node: '>= 0.4'} dev: true - /is-number-object/1.0.5: - resolution: {integrity: sha512-RU0lI/n95pMoUKu9v1BZP5MBcZuNSVJkMkAG2dJqC4z2GlkGUNeH68SuHuBKBD/XFe+LHZ+f9BKkLET60Niedw==} + /is-number-object/1.0.6: + resolution: {integrity: sha512-bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g==} engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: 1.0.0 dev: true /is-number/7.0.0: @@ -3804,12 +3715,12 @@ packages: resolution: {integrity: sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==} dev: true - /is-regex/1.1.3: - resolution: {integrity: sha512-qSVXFz28HM7y+IWX6vLCsexdlvzT1PJNFSBuaQLQ5o0IEw8UDYW6/2+eCMVyIsbM8CNLX2a/QWmSpyxYEHY7CQ==} + /is-regex/1.1.4: + resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 - has-symbols: 1.0.2 + has-tostringtag: 1.0.0 dev: true /is-regexp/1.0.0: @@ -3821,14 +3732,16 @@ packages: resolution: {integrity: sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==} dev: true - /is-stream/2.0.0: - resolution: {integrity: sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==} + /is-stream/2.0.1: + resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} engines: {node: '>=8'} dev: true - /is-string/1.0.6: - resolution: {integrity: sha512-2gdzbKUuqtQ3lYNrUTQYoClPhm7oQu4UdpSZMp1/DGgkHBT8E2Z1l0yMdb6D4zNAxwDiMv8MdulKROJGNl0Q0w==} + /is-string/1.0.7: + resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: 1.0.0 dev: true /is-symbol/1.0.4: @@ -3838,15 +3751,15 @@ packages: has-symbols: 1.0.2 dev: true - /is-typed-array/1.1.5: - resolution: {integrity: sha512-S+GRDgJlR3PyEbsX/Fobd9cqpZBuvUS+8asRqYDMLCb2qMzt1oz5m5oxQCxOgUDxiWsOVNi4yaF+/uvdlHlYug==} + /is-typed-array/1.1.7: + resolution: {integrity: sha512-VxlpTBGknhQ3o7YiVjIhdLU6+oD8dPz/79vvvH4F+S/c8608UCVa9fgDpa1kZgFoUST2DCgacc70UszKgzKuvA==} engines: {node: '>= 0.4'} dependencies: available-typed-arrays: 1.0.4 call-bind: 1.0.2 - es-abstract: 1.18.3 + es-abstract: 1.18.5 foreach: 2.0.5 - has-symbols: 1.0.2 + has-tostringtag: 1.0.0 dev: true /is-weakmap/2.0.1: @@ -3873,7 +3786,7 @@ packages: resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==} engines: {node: '>= 10.13.0'} dependencies: - '@types/node': 16.4.3 + '@types/node': 16.7.1 merge-stream: 2.0.0 supports-color: 7.2.0 dev: true @@ -3899,8 +3812,8 @@ packages: esprima: 4.0.1 dev: true - /jsdom/16.6.0: - resolution: {integrity: sha512-Ty1vmF4NHJkolaEmdjtxTfSfkdb8Ywarwf63f+F8/mDD1uLSSWDxDuMiZxiPhwunLrn9LOSVItWj4bLYsLN3Dg==} + /jsdom/16.7.0: + resolution: {integrity: sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==} engines: {node: '>=10'} peerDependencies: canvas: ^2.5.0 @@ -3968,6 +3881,10 @@ packages: resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} dev: true + /json-schema/0.3.0: + resolution: {integrity: sha512-TYfxx36xfl52Rf1LU9HyWSLGPdYLL+SQ8/E/0yVyKG8wCCDaSrhPap0vEdlsZWRaS6tnKKLPGiEJGiREVC8kxQ==} + dev: true + /json-stable-stringify-without-jsonify/1.0.1: resolution: {integrity: sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=} dev: true @@ -3987,8 +3904,9 @@ packages: minimist: 1.2.5 dev: true - /jsonc-eslint-parser/1.1.0_eslint@7.32.0: - resolution: {integrity: sha512-FA3oS+8V0Mz4vv19YpY4TuZZi2ecR0RHTua9SjbCYb4+e35MWKIi7jn17zdGi6jxE7Cv7Vk61ml376MmMENieA==} + /jsonc-eslint-parser/1.2.0_eslint@7.32.0: + resolution: {integrity: sha512-+vnjPNITAoDX2G9/IWV5vo234gQM3Gz40VuLIr74mc86f8UIKJ9blre+HnX2pHXejxolevV2a+BpaC0nhTq8yA==} + engines: {node: '>=8.10.0'} dependencies: eslint-utils: 3.0.0_eslint@7.32.0 eslint-visitor-keys: 3.0.0 @@ -4011,7 +3929,12 @@ packages: dependencies: universalify: 2.0.0 optionalDependencies: - graceful-fs: 4.2.6 + graceful-fs: 4.2.8 + dev: true + + /jsonpointer/4.1.0: + resolution: {integrity: sha512-CXcRvMyTlnR53xMcKnuMzfCA5i/nfblTnnr74CZb6C4vG39eu6w51t7nKmU5MfLfbTgGItliNyjO/ciNPDqClg==} + engines: {node: '>=0.10.0'} dev: true /jstransformer/1.0.0: @@ -4034,6 +3957,11 @@ packages: engines: {node: '>=0.10.0'} dev: true + /leven/3.1.0: + resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==} + engines: {node: '>=6'} + dev: true + /levn/0.3.0: resolution: {integrity: sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=} engines: {node: '>= 0.8.0'} @@ -4064,7 +3992,7 @@ packages: resolution: {integrity: sha1-L19Fq5HjMhYjT9U62rZo607AmTs=} engines: {node: '>=4'} dependencies: - graceful-fs: 4.2.6 + graceful-fs: 4.2.8 parse-json: 4.0.0 pify: 3.0.0 strip-bom: 3.0.0 @@ -4156,15 +4084,15 @@ packages: resolution: {integrity: sha512-B34ySxVeo6MuEGSPCWyIYryuXINOvngNZL87Mp7YYfKIf6DcD837+lXA8mo6EBbauKsnGz22ZH0zsbOiQRWTNg==} dev: true - /markdown-it-prism/2.1.8: - resolution: {integrity: sha512-PBiqlX3zGPQnOk7q7TkeveQfXlqzhjfHg2zSwntDNauYY7KFhg2FzO6O+1boillQptEBcIaEAO9gwKq/tXGHUQ==} + /markdown-it-prism/2.2.0: + resolution: {integrity: sha512-GOcP+oOt5AJHwD/6hnrdLXCSw1ZfjCCGblsmrPEyc5zEuNtRYYUjOsDX2eH5xoWTddnRwWlTT2EL/yN6mDcDwQ==} engines: {node: '>=6.0.0'} dependencies: prismjs: 1.24.1 dev: true - /markdown-it/12.1.0: - resolution: {integrity: sha512-7temG6IFOOxfU0SgzhqR+vr2diuMhyO5uUIEZ3C5NbXhqC9uFUHoU41USYuDFoZRsaY7BEIEei874Z20VMLF6A==} + /markdown-it/12.2.0: + resolution: {integrity: sha512-Wjws+uCrVQRqOoJvze4HCqkKl1AsSh95iFAeQDwnyfxM09divCBSXlDR1uTvyUP3Grzpn4Ru8GeCxYPM8vkCQg==} hasBin: true dependencies: argparse: 2.0.1 @@ -4215,16 +4143,16 @@ packages: picomatch: 2.3.0 dev: true - /mime-db/1.48.0: - resolution: {integrity: sha512-FM3QwxV+TnZYQ2aRqhlKBMHxk10lTbMt3bBkMAp54ddrNeVSfcQYOOKuGuy3Ddrm38I04If834fOUSq1yzslJQ==} + /mime-db/1.49.0: + resolution: {integrity: sha512-CIc8j9URtOVApSFCQIF+VBkX1RwXp/oMMOrqdyXSBXq5RWNEsRfyj1kiRnQgmNXmHxPoFIxOroKA3zcU9P+nAA==} engines: {node: '>= 0.6'} dev: true - /mime-types/2.1.31: - resolution: {integrity: sha512-XGZnNzm3QvgKxa8dpzyhFTHmpP3l5YNusmne07VUOXxou9CqUqYa/HBy124RqtVh/O2pECas/MOcsDgpilPOPg==} + /mime-types/2.1.32: + resolution: {integrity: sha512-hJGaVS4G4c9TSMYh2n6SQAGrC4RnfU+daP8G7cSCmaqNjiOoUY0VHCMS42pxnQmVF1GWwFhbHWn3RIxCqTmZ9A==} engines: {node: '>= 0.6'} dependencies: - mime-db: 1.48.0 + mime-db: 1.49.0 dev: true /mime/1.6.0: @@ -4267,8 +4195,8 @@ packages: resolution: {integrity: sha512-0ZIR9PasPxGXmRsEF8jsDzndzHDj7tIav+JUmvIFB/WHswliFnquxECT/De7GR4yg99ky/NlRKJT82G1y271bw==} dev: true - /nanoid/3.1.23: - resolution: {integrity: sha512-FiB0kzdP0FFVGDKlRLEQ1BgDzU87dy5NnzjeW9YZNt+/c3+q82EQDUwniSAUxp/F0gFNI1ZhKU1FqYsMuqZVnw==} + /nanoid/3.1.25: + resolution: {integrity: sha512-rdwtIXaXCLFAQbnfqDRnI6jaRHp9fTcYBjtFKE8eezcZ7LuLjhUaQGNeMXf1HmRoCH32CLz6XwX0TtxEOS/A3Q==} engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} hasBin: true dev: true @@ -4288,8 +4216,8 @@ packages: lower-case: 1.1.4 dev: true - /node-releases/1.1.73: - resolution: {integrity: sha512-uW7fodD6pyW2FZNZnp/Z3hvWKeEW1Y8R1+1CnErE8cXFXzl5blBOoVB41CvMer6P6Q0S5FXDwcHgFd1Wj0U9zg==} + /node-releases/1.1.75: + resolution: {integrity: sha512-Qe5OUajvqrqDSy6wrWFmMwfJ0jVgwiw4T3KqmbTcZ62qW0gQkheXYhcFM1+lOVcGUoRxcEcfyvFMAnDgaF1VWw==} dev: true /normalize-package-data/2.5.0: @@ -4347,7 +4275,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.3 - es-abstract: 1.18.3 + es-abstract: 1.18.5 dev: true /object.fromentries/2.0.4: @@ -4356,7 +4284,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.3 - es-abstract: 1.18.3 + es-abstract: 1.18.5 has: 1.0.3 dev: true @@ -4366,7 +4294,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.3 - es-abstract: 1.18.3 + es-abstract: 1.18.5 dev: true /obuf/1.1.2: @@ -4549,10 +4477,10 @@ packages: engines: {node: '>=4'} dev: true - /pinia/2.0.0-rc.4_typescript@4.3.5+vue@3.2.2: - resolution: {integrity: sha512-I43V1TIFyDWT4UTi1CPLQXQZYXGQHQMKpDPI+oxC2fv0c+ej0fQBoKCn4WbfRWB+Vf5chhWM97GFLI+OWmUQEQ==} + /pinia/2.0.0-rc.6_typescript@4.3.5+vue@3.2.4: + resolution: {integrity: sha512-IqArmLmWJB5wZzELZfFF42bMaulo6cjMvL1wgUjWfmzaGCt1HYOAXN86s6HrdAueeEWj9Ov6lNNOHB1DFQxthw==} peerDependencies: - '@vue/composition-api': ^1.1.0 + '@vue/composition-api': ^1.1.1 typescript: ^4.3.5 vue: ^2.6.14 || ^3.2.0 peerDependenciesMeta: @@ -4563,8 +4491,8 @@ packages: dependencies: '@vue/devtools-api': 6.0.0-beta.15 typescript: 4.3.5 - vue: 3.2.2 - vue-demi: 0.11.3_vue@3.2.2 + vue: 3.2.4 + vue-demi: 0.11.3_vue@3.2.4 dev: false /pkg-dir/2.0.0: @@ -4586,8 +4514,8 @@ packages: engines: {node: '>=4'} dev: true - /pnpm/6.13.0: - resolution: {integrity: sha512-dQE0WtzS8Rs6UEpsKeFxHjLPqMHM94v45IhmHX5A/w3V5tEvx4A2PzKBtOF5brJp7SPLyzAnY4L/w/BpBV6qxw==} + /pnpm/6.14.3: + resolution: {integrity: sha512-9fU65+uSa2kB5+/b2crLT3lLcauExf9v6vPkDa4javQVnrz3/HDa6TLEshgo5BXXks3wThq+eCrDlVvD7AUwOQ==} engines: {node: '>=12.17'} hasBin: true dev: true @@ -4665,8 +4593,8 @@ packages: resolution: {integrity: sha512-wG1cc/JhRgdqB6WHEuyLTedf3KIRuD0hG6ldkFEZNCjRxiC+3i6kkWUUbiJQayP28iwG35cEmAbe98585BYV0A==} engines: {node: ^10 || ^12 || >=14} dependencies: - colorette: 1.2.2 - nanoid: 3.1.23 + colorette: 1.3.0 + nanoid: 3.1.25 source-map-js: 0.6.2 dev: true @@ -4939,7 +4867,7 @@ packages: /regenerator-transform/0.14.5: resolution: {integrity: sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==} dependencies: - '@babel/runtime': 7.14.8 + '@babel/runtime': 7.15.3 dev: true /regexp-tree/0.1.23: @@ -5014,14 +4942,14 @@ packages: /resolve/1.20.0: resolution: {integrity: sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==} dependencies: - is-core-module: 2.5.0 + is-core-module: 2.6.0 path-parse: 1.0.7 dev: true /resolve/2.0.0-next.3: resolution: {integrity: sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q==} dependencies: - is-core-module: 2.5.0 + is-core-module: 2.6.0 path-parse: 1.0.7 dev: true @@ -5037,28 +4965,20 @@ packages: glob: 7.1.7 dev: true - /rollup-plugin-terser/7.0.2_rollup@2.55.1: + /rollup-plugin-terser/7.0.2_rollup@2.56.3: resolution: {integrity: sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==} peerDependencies: rollup: ^2.0.0 dependencies: '@babel/code-frame': 7.14.5 jest-worker: 26.6.2 - rollup: 2.55.1 + rollup: 2.56.3 serialize-javascript: 4.0.0 terser: 5.7.1 dev: true - /rollup/2.54.0: - resolution: {integrity: sha512-RHzvstAVwm9A751NxWIbGPFXs3zL4qe/eYg+N7WwGtIXVLy1cK64MiU37+hXeFm1jqipK6DGgMi6Z2hhPuCC3A==} - engines: {node: '>=10.0.0'} - hasBin: true - optionalDependencies: - fsevents: 2.3.2 - dev: true - - /rollup/2.55.1: - resolution: {integrity: sha512-1P9w5fpb6b4qroePh8vHKGIvPNxwoCQhjJpIqfZGHLKpZ0xcU2/XBmFxFbc9697/6bmHpmFTLk5R1dAQhFSo0g==} + /rollup/2.56.3: + resolution: {integrity: sha512-Au92NuznFklgQCUcV96iXlxUbHuB1vQMaH76DHl5M11TotjOHwqk9CwcrT78+Tnv4FN9uTBxq6p4EJoYkpyekg==} engines: {node: '>=10.0.0'} hasBin: true optionalDependencies: @@ -5219,7 +5139,7 @@ packages: /source-map-support/0.5.19: resolution: {integrity: sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==} dependencies: - buffer-from: 1.1.1 + buffer-from: 1.1.2 source-map: 0.6.1 dev: true @@ -5256,7 +5176,7 @@ packages: resolution: {integrity: sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==} dependencies: spdx-expression-parse: 3.0.1 - spdx-license-ids: 3.0.9 + spdx-license-ids: 3.0.10 dev: true /spdx-exceptions/2.3.0: @@ -5267,11 +5187,11 @@ packages: resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} dependencies: spdx-exceptions: 2.3.0 - spdx-license-ids: 3.0.9 + spdx-license-ids: 3.0.10 dev: true - /spdx-license-ids/3.0.9: - resolution: {integrity: sha512-Ki212dKK4ogX+xDo4CtOZBVIwhsKBEfsEEcwmJfLQzirgc2jIWdzg40Unxz/HzEUqM1WFzVlQSMF9kZZ2HboLQ==} + /spdx-license-ids/3.0.10: + resolution: {integrity: sha512-oie3/+gKf7QtpitB0LYLETe+k8SifzsX4KixvpOsbI6S0kRiRQ5MKOio8eMSAKQ17N06+wdEOXRiId+zOxo0hA==} dev: true /spdy-transport/3.0.0: @@ -5327,7 +5247,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.3 - es-abstract: 1.18.3 + es-abstract: 1.18.5 get-intrinsic: 1.1.1 has-symbols: 1.0.2 internal-slot: 1.0.3 @@ -5436,7 +5356,7 @@ packages: resolution: {integrity: sha512-G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw==} engines: {node: '>=10'} dependencies: - is-stream: 2.0.0 + is-stream: 2.0.1 temp-dir: 2.0.0 type-fest: 0.16.0 unique-string: 2.0.0 @@ -5559,7 +5479,7 @@ packages: engines: {node: '>= 0.6'} dependencies: media-typer: 0.3.0 - mime-types: 2.1.31 + mime-types: 2.1.32 dev: true /typescript/4.3.5: @@ -5572,8 +5492,8 @@ packages: resolution: {integrity: sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==} dev: true - /uglify-js/3.14.0: - resolution: {integrity: sha512-R/tiGB1ZXp2BC+TkRGLwj8xUZgdfT2f4UZEgX6aVjJ5uttPrr4fYmwTWDGqVnBCLbOXRMY6nr/BTbwCtVfps0g==} + /uglify-js/3.14.1: + resolution: {integrity: sha512-JhS3hmcVaXlp/xSo3PKY5R0JqKs5M3IV+exdLHW99qKvKivPO4Z8qbej6mte17SOPqAOVMjt/XGgWacnFSzM3g==} engines: {node: '>=0.8.0'} hasBin: true dev: true @@ -5632,6 +5552,36 @@ packages: engines: {node: '>= 0.8'} dev: true + /unplugin-auto-import/0.0.6_vite@2.5.0: + resolution: {integrity: sha512-1nM0+2vHZV5Rp2HxfBNA8ANmuwlJKEyqvmwbIqtGieHC6T0hzN6pb9+aTAiGyhYKXsG5Ickn4EU4bguuR4JAcA==} + dependencies: + '@antfu/utils': 0.2.4 + '@rollup/pluginutils': 4.1.1 + unplugin: 0.0.8_vite@2.5.0 + transitivePeerDependencies: + - rollup + - vite + - webpack + dev: true + + /unplugin/0.0.8_vite@2.5.0: + resolution: {integrity: sha512-eN+JfXcV8Dq9FmnXiU8PHTsBjhyUazlztLh8L2eMLHnh4Gq1oXGkfcKdEQa8FBho5Be6IW2CsDFXwJISK1MiyQ==} + peerDependencies: + rollup: ^2.50.0 + vite: ^2.3.0 + webpack: ^5.0.0 + peerDependenciesMeta: + rollup: + optional: true + vite: + optional: true + webpack: + optional: true + dependencies: + vite: 2.5.0 + webpack-virtual-modules: 0.4.3 + dev: true + /upath/1.2.0: resolution: {integrity: sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==} engines: {node: '>=4'} @@ -5677,7 +5627,7 @@ packages: engines: {node: '>= 0.8'} dev: true - /vite-plugin-components/0.13.2_vite@2.4.4: + /vite-plugin-components/0.13.2_vite@2.5.0: resolution: {integrity: sha512-Fv5iTlZUvqUUjODdAkTadijobcys+SvrtYclj27/SCE7b4LtwNySd+nHvJcGI/GsL8npTdccj2IRwGsWLrTcvQ==} peerDependencies: vite: ^2.0.0 @@ -5686,12 +5636,12 @@ packages: fast-glob: 3.2.7 magic-string: 0.25.7 minimatch: 3.0.4 - vite: 2.4.4 + vite: 2.5.0 transitivePeerDependencies: - supports-color dev: true - /vite-plugin-icons/0.6.5_f4f72ff427fc65ab11286299b2cfc1f8: + /vite-plugin-icons/0.6.5_927b6aa92e35a8f1cb1822fc1487e830: resolution: {integrity: sha512-lfePr8juO2ajp0571iLL+9zIoyBD9nSSSHlC4JYXbAeMOJB6WTP+Vdc2gze8yI8JRO+Z0TXCCvvL9bPgvkI4Cg==} peerDependencies: '@iconify/json': '*' @@ -5703,24 +5653,24 @@ packages: vue-template-compiler: optional: true dependencies: - '@iconify/json': 1.1.387 + '@iconify/json': 1.1.392 '@iconify/json-tools': 1.0.10 - '@vue/compiler-sfc': 3.2.2 + '@vue/compiler-sfc': 3.2.4 vue-template-es2015-compiler: 1.9.1 dev: true - /vite-plugin-md/0.10.0_vite@2.4.4: - resolution: {integrity: sha512-HjSNKZ7q/c8P+DeStOl2/MmuRDDinZJY39Kb1+HIo6fP3l5Tpkr3Ba7jaaJZiYDFEi5VKdHWb+pkxDXAqMuk9A==} + /vite-plugin-md/0.11.0_vite@2.5.0: + resolution: {integrity: sha512-sEwJQ0nBawYCEnMGEGsvxA6WM2sBXBFa0SMEAlMiNxivzDCR2/HWc/5qzZAh6ZJ66mivW+1WDruVVtiq/3EqLA==} peerDependencies: vite: ^2.0.0 dependencies: gray-matter: 4.0.3 - markdown-it: 12.1.0 - vite: 2.4.4 + markdown-it: 12.2.0 + vite: 2.5.0 dev: true - /vite-plugin-pages/0.17.3_622449f92aba16a36543bb4683653133: - resolution: {integrity: sha512-Lyn4kZ+2cbj47JwW3ENRyDv7lo10YPcPFKKXOqPR96RoL665DLqVs4UjvSUQjKleH+OTG4moCYRHbFDRw62d/Q==} + /vite-plugin-pages/0.17.4_7fe3aad99197253b81205fb92dfdbad3: + resolution: {integrity: sha512-EefR3IMldworGlAWRpz4t7iFJe90Va3G1hpTpUf9rAEbUYco6MSIxYA/+uy4CQwNl+Zcp6gZCskB6/QdWZtq0g==} peerDependencies: '@vue/compiler-sfc': '>=3' vite: '>=2' @@ -5729,62 +5679,62 @@ packages: optional: true dependencies: '@antfu/utils': 0.2.4 - '@vue/compiler-sfc': 3.2.2 + '@vue/compiler-sfc': 3.2.4 deep-equal: 2.0.5 fast-glob: 3.2.7 json5: 2.2.0 - vite: 2.4.4 + vite: 2.5.0 yaml: 2.0.0-7 dev: true - /vite-plugin-pwa/0.10.0_vite@2.4.4: - resolution: {integrity: sha512-QTI2OshRFR46JFS3KLVXXdIyhy+eO5pO3ezbeIXRAMNlUPJuB/r5sXhpRUGRZIkbrIq+UwSULNsCaNo8Ux5ZqA==} + /vite-plugin-pwa/0.11.0_vite@2.5.0: + resolution: {integrity: sha512-5YX0ThJnNwA6vXj8d6G/iGMC8Owd/Hf6XM5aQZdb4DfM8DmVPpWqAAl5iT+d9XG4ee1zo4nH3bVO9VDYDZLxDw==} peerDependencies: vite: ^2.0.0 dependencies: debug: 4.3.2 fast-glob: 3.2.7 pretty-bytes: 5.6.0 - rollup: 2.55.1 - vite: 2.4.4 - workbox-build: 6.1.5 - workbox-window: 6.1.5 + rollup: 2.56.3 + vite: 2.5.0 + workbox-build: 6.2.4 + workbox-window: 6.2.4 transitivePeerDependencies: - '@types/babel__core' - supports-color dev: true - /vite-plugin-vue-layouts/0.3.1_vite@2.4.4: + /vite-plugin-vue-layouts/0.3.1_vite@2.5.0: resolution: {integrity: sha512-Chw+gEJX51+vwikWIp2R3GbBIkSQFi0CdOBKTqAktn+thVWn4mleE2pbdr2jM2Ylc0lL2bm/NpOHE0Pe6YUGqg==} peerDependencies: vite: ^2.2.3 dependencies: - '@vue/compiler-sfc': 3.1.5_vue@3.1.5 + '@vue/compiler-sfc': 3.2.4 debug: 4.3.2 fast-glob: 3.2.7 - vite: 2.4.4 - vue: 3.1.5 - vue-router: 4.0.10_vue@3.1.5 + vite: 2.5.0 + vue: 3.2.4 + vue-router: 4.0.11_vue@3.2.4 transitivePeerDependencies: - supports-color dev: true - /vite-plugin-windicss/1.2.7_vite@2.4.4: - resolution: {integrity: sha512-JgIGsH5HPaz3ghDRhhLeF8VZQMUE+R0jD9u8sbne5KdBBa208r0IuTcx73V7CPcmsu7KABG6rfLgST9ffVoiDA==} + /vite-plugin-windicss/1.2.8_vite@2.5.0: + resolution: {integrity: sha512-KLoFfsEh5RAyw2OjW+lrIdgkRAMa9KM1sKPYf8pYgVIj4PL6xBbJlbvWOZnZdW1rFjLtF3KzPT35HEmj6MV8XQ==} peerDependencies: vite: ^2.0.1 dependencies: - '@windicss/plugin-utils': 1.2.7 - chalk: 4.1.1 + '@windicss/plugin-utils': 1.2.8 + chalk: 4.1.2 debug: 4.3.2 - vite: 2.4.4 - windicss: 3.1.6 + vite: 2.5.0 + windicss: 3.1.7 transitivePeerDependencies: - supports-color dev: true - /vite-ssg/0.14.5_f850a7c7cb7bfc62a4ac2af2c2f58f9e: - resolution: {integrity: sha512-ony+HDOy+VoNboC2nD8WRTz860vhy+xMVxMtY0G6FQ1pCD06qfxCZobx3Lncza2IPB3ozmSVQNQd3W4apJI1pA==} + /vite-ssg/0.14.6_20694550d252f8cd45c3edfcdb6eff74: + resolution: {integrity: sha512-Yc9QrMi2NW/CnjDi+fjsxWoaJvyKIN2vkCzjK4ndPUzeNtsO/huSwa5BbkqAOPzR6QOVXGSOKN1Q0CK+YkCZjw==} engines: {node: '>=14.0.0'} hasBin: true peerDependencies: @@ -5799,19 +5749,20 @@ packages: critters: optional: true dependencies: - '@vue/compiler-sfc': 3.2.2 - '@vue/server-renderer': 3.2.2_vue@3.2.2 - '@vueuse/head': 0.6.0_vue@3.2.2 + '@vue/compiler-sfc': 3.2.4 + '@vue/server-renderer': 3.2.4_vue@3.2.4 + '@vueuse/head': 0.6.0_vue@3.2.4 chalk: 4.1.2 critters: 0.0.10 fs-extra: 10.0.0 html-minifier: 4.0.0 - jsdom: 16.6.0 + jsdom: 16.7.0 prettier: 2.3.2 - vite: 2.4.4 - vue: 3.2.2 - vue-router: 4.0.11_vue@3.2.2 - yargs: 17.0.1 + read-pkg-up: 7.0.1 + vite: 2.5.0 + vue: 3.2.4 + vue-router: 4.0.11_vue@3.2.4 + yargs: 17.1.1 transitivePeerDependencies: - bufferutil - canvas @@ -5819,15 +5770,15 @@ packages: - utf-8-validate dev: true - /vite/2.4.4: - resolution: {integrity: sha512-m1wK6pFJKmaYA6AeZIUXyiAgUAAJzVXhIMYCdZUpCaFMGps0v0IlNJtbmPvkUhVEyautalajmnW5X6NboUPsnw==} - engines: {node: '>=12.0.0'} + /vite/2.5.0: + resolution: {integrity: sha512-Dn4B+g54PJsMG5WCc4QeFy1ygMXRdTtFrUPegqfk4+vzVQcbF/DqqmI/1bxezArzbujBJg/67QeT5wz8edfJVQ==} + engines: {node: '>=12.2.0'} hasBin: true dependencies: - esbuild: 0.12.16 + esbuild: 0.12.22 postcss: 8.3.6 resolve: 1.20.0 - rollup: 2.54.0 + rollup: 2.56.3 optionalDependencies: fsevents: 2.3.2 dev: true @@ -5855,8 +5806,8 @@ packages: vscode-uri: 3.0.2 dev: true - /vscode-json-languageservice/4.1.6: - resolution: {integrity: sha512-DIKb3tcfRtb3tIE6g9SLOl5E9tNSt6kljH08Wa5RwFlVshtXGrDDzttchze4CYy9pJpE9mBtCbRHmLvY1Z1ZXA==} + /vscode-json-languageservice/4.1.7: + resolution: {integrity: sha512-cwG5TwZyHYthsk2aS3W1dVgVP6Vwn3o+zscwN58uMgZt/nKuyxd9vdEB1F58Ix+S5kSKAnkUCP6hvulcoImQQQ==} engines: {npm: '>=7.0.0'} dependencies: jsonc-parser: 3.0.0 @@ -5866,15 +5817,15 @@ packages: vscode-uri: 3.0.2 dev: true - /vscode-jsonrpc/8.0.0-next.1: - resolution: {integrity: sha512-NoSPIqVWpztdC91oUaiN9PmjAupRAEF8vdXRDLWw2lX2k760dn0gO4CCXkT6GdLSBcF/xKq0zWVTsfd3lpje7g==} + /vscode-jsonrpc/8.0.0-next.2: + resolution: {integrity: sha512-gxUyTBAjmwGkiHW/UaRScre2s4i98P8M7gnc3VB4DrVQUm3vQ0idi2cN9nbkfcjATx+uEt8C22j+MLN/8UzsJA==} engines: {node: '>=8.0.0 || >=10.0.0'} dev: true - /vscode-languageserver-protocol/3.17.0-next.7: - resolution: {integrity: sha512-naG6LWmcF+cneRx6ia16rg+ukSWaZNESFRv+rKE5sIp69IFbuehXcRwkyeS1jZa2SRCF/TnN/H+y9gBbvFqsaQ==} + /vscode-languageserver-protocol/3.17.0-next.8: + resolution: {integrity: sha512-P89vSuJ+FA5JzFmcOoZN13Ig1yd6LsiPOig0O5m5BSGuO/rplQegCd9J0wKpaTy7trf/SYHRoypnbUBdzy14sg==} dependencies: - vscode-jsonrpc: 8.0.0-next.1 + vscode-jsonrpc: 8.0.0-next.2 vscode-languageserver-types: 3.17.0-next.3 dev: true @@ -5890,35 +5841,35 @@ packages: resolution: {integrity: sha512-VQcXnhKYxUW6OiRMhG++SzmZYMJwusXknJGd+FfdOnS1yHAo734OHyR0e2eEHDlv0/oWc8RZPgx/VKSKyondVg==} dev: true - /vscode-languageserver/8.0.0-next.1: - resolution: {integrity: sha512-Sjmjcl5OMvE64eblJMqj8p7JDtJKf3CVkZXOqWwLINoSRCH9tkZdBss37bVOmpTy89sKX9fKwuBbEE8jNb8Isw==} + /vscode-languageserver/8.0.0-next.2: + resolution: {integrity: sha512-7qCEXTeGZKkI8BGvlKh0JPXTY7BaWoiwQYKCcGaUgnMs34wt6F/yaKcxoC3XIouBBVyRxiI6Ml/JdztM3XYEaA==} hasBin: true dependencies: - vscode-languageserver-protocol: 3.17.0-next.7 + vscode-languageserver-protocol: 3.17.0-next.8 dev: true /vscode-nls/5.0.0: resolution: {integrity: sha512-u0Lw+IYlgbEJFF6/qAqG2d1jQmJl0eyAGJHoAJqr2HT4M2BNuQYSEiSE75f52pXHSJm8AlTjnLLbBFPrdz2hpA==} dev: true - /vscode-pug-languageservice/0.27.1: - resolution: {integrity: sha512-zUrcrcizqxxP7UIplzkdpdhU6bS458Vf9MS+fFaaR1WI/rVJOsXh5ETMrVeHTD0FHqAIstikuNoKEpuaaHkEXA==} + /vscode-pug-languageservice/0.27.7: + resolution: {integrity: sha512-pRKKUNfbAwbDujyIQiLNBLeHIrIUXEDPzgYPxz3KFCxJ/t2RXk+RRZeWFXWsdsQi6uESAPyFTv+jHJltKwSCfw==} dependencies: - '@volar/code-gen': 0.27.1 - '@volar/shared': 0.27.1 - '@volar/source-map': 0.27.1 - '@volar/transforms': 0.27.1 + '@volar/code-gen': 0.27.7 + '@volar/shared': 0.27.7 + '@volar/source-map': 0.27.7 + '@volar/transforms': 0.27.7 pug-lexer: 5.0.1 pug-parser: 6.0.0 - vscode-languageserver: 8.0.0-next.1 + vscode-languageserver: 8.0.0-next.2 dev: true - /vscode-typescript-languageservice/0.27.1: - resolution: {integrity: sha512-lIXLyYpcO4+9mzFrgTkRgrWYDLlV+kv+3/vmipEvF4QbiKHWcA0l5AOSJcPR/IUeZz6mu9eoawpOjPsbp9HKqw==} + /vscode-typescript-languageservice/0.27.7: + resolution: {integrity: sha512-7DAwUy6ZOHyitAvBSqDFrdhPmr9SrOsC9K/h1aDg1CKPZR321XjgeE0lOZlrFKCi7XL/JeTvZubYD1lc321ZOg==} dependencies: - '@volar/shared': 0.27.1 + '@volar/shared': 0.27.7 upath: 2.0.1 - vscode-languageserver: 8.0.0-next.1 + vscode-languageserver: 8.0.0-next.2 vscode-languageserver-textdocument: 1.0.1 dev: true @@ -5930,31 +5881,31 @@ packages: resolution: {integrity: sha512-jkjy6pjU1fxUvI51P+gCsxg1u2n8LSt0W6KrCNQceaziKzff74GoWmjVG46KieVzybO1sttPQmYfrwSHey7GUA==} dev: true - /vscode-vue-languageservice/0.27.1: - resolution: {integrity: sha512-32I6OCEvgxQpRW/Txod2+5xNKpae1BS+EFXjXpxK0TMFT3NYrJYXo0xVaddlV9+IZcVmH5KdoBia7J3CO4H74Q==} + /vscode-vue-languageservice/0.27.7: + resolution: {integrity: sha512-UXFkaPwkw+H32eXLaEyA23BNf4OUUOSffAwLu2/+W8Wi4/X0fr2aSsc2YKO+FNeIKAfIjS0qWDLo51kj1YIeCA==} dependencies: - '@volar/code-gen': 0.27.1 - '@volar/html2pug': 0.27.1 - '@volar/shared': 0.27.1 - '@volar/source-map': 0.27.1 - '@volar/transforms': 0.27.1 + '@volar/code-gen': 0.27.7 + '@volar/html2pug': 0.27.7 + '@volar/shared': 0.27.7 + '@volar/source-map': 0.27.7 + '@volar/transforms': 0.27.7 '@vscode/emmet-helper': 2.7.0 - '@vue/compiler-dom': 3.2.2 - '@vue/compiler-sfc': 3.2.2 - '@vue/reactivity': 3.2.2 - '@vue/shared': 3.2.2 + '@vue/compiler-dom': 3.2.4 + '@vue/compiler-sfc': 3.2.4 + '@vue/reactivity': 3.2.4 + '@vue/shared': 3.2.4 request-light: 0.5.4 upath: 2.0.1 vscode-css-languageservice: 5.1.4 vscode-html-languageservice: 4.0.7 - vscode-json-languageservice: 4.1.6 - vscode-languageserver: 8.0.0-next.1 + vscode-json-languageservice: 4.1.7 + vscode-languageserver: 8.0.0-next.2 vscode-languageserver-textdocument: 1.0.1 - vscode-pug-languageservice: 0.27.1 - vscode-typescript-languageservice: 0.27.1 + vscode-pug-languageservice: 0.27.7 + vscode-typescript-languageservice: 0.27.7 dev: true - /vue-demi/0.11.3_vue@3.2.2: + /vue-demi/0.11.3_vue@3.2.4: resolution: {integrity: sha512-DpM0TTMpclRZDV6AIacgg837zrim/C9Zn+2ztXBs9hsESJN9vC83ztjTe4KC4HgJuVle8YUjPp7HTwWtwOHfmg==} engines: {node: '>=12'} hasBin: true @@ -5966,11 +5917,11 @@ packages: '@vue/composition-api': optional: true dependencies: - vue: 3.2.2 + vue: 3.2.4 dev: false - /vue-eslint-parser/7.9.0_eslint@7.32.0: - resolution: {integrity: sha512-QBlhZ5LteDRVy2dISfQhNEmmcqph+GTaD4SH41bYzXcVHFPJ9p34zCG6QAqOZVa8PKaVgbomFnoZpGJRZi14vg==} + /vue-eslint-parser/7.10.0_eslint@7.32.0: + resolution: {integrity: sha512-7tc/ewS9Vq9Bn741pvpg8op2fWJPH3k32aL+jcIcWGCTzh/zXSdh7pZ5FV3W2aJancP9+ftPAv292zY5T5IPCg==} engines: {node: '>=8.10'} peerDependencies: eslint: '>=5.0.0' @@ -5987,17 +5938,7 @@ packages: - supports-color dev: true - /vue-global-api/0.4.1_vue@3.2.2: - resolution: {integrity: sha512-283vpYOhVHJCpMkjNVEwZdgaAb+Y93zFaXGAWTI378MLoNuwQydjD/BAy1e81QYEmyA+JbxqcmMZVWcM9rbriw==} - dependencies: - eslint-config-vue-global-api: 0.4.1 - vue-demi: 0.11.3_vue@3.2.2 - transitivePeerDependencies: - - '@vue/composition-api' - - vue - dev: false - - /vue-i18n/9.1.7_vue@3.2.2: + /vue-i18n/9.1.7_vue@3.2.4: resolution: {integrity: sha512-ujuuDanoHqtEd4GejWrbG/fXE9nrP51ElsEGxp0WBHfv+/ki0/wyUqkO+4fLikki2obGtXdviTPH0VNpas5K6g==} engines: {node: '>= 10'} peerDependencies: @@ -6007,56 +5948,37 @@ packages: '@intlify/shared': 9.1.7 '@intlify/vue-devtools': 9.1.7 '@vue/devtools-api': 6.0.0-beta.15 - vue: 3.2.2 + vue: 3.2.4 dev: false - /vue-router/4.0.10_vue@3.1.5: - resolution: {integrity: sha512-YbPf6QnZpyyWfnk7CUt2Bme+vo7TLfg1nGZNkvYqKYh4vLaFw6Gn8bPGdmt5m4qrGnKoXLqc4htAsd3dIukICA==} - peerDependencies: - vue: ^3.0.0 - dependencies: - '@vue/devtools-api': 6.0.0-beta.15 - vue: 3.1.5 - dev: true - - /vue-router/4.0.11_vue@3.2.2: + /vue-router/4.0.11_vue@3.2.4: resolution: {integrity: sha512-sha6I8fx9HWtvTrFZfxZkiQQBpqSeT+UCwauYjkdOQYRvwsGwimlQQE2ayqUwuuXGzquFpCPoXzYKWlzL4OuXg==} peerDependencies: vue: ^3.0.0 dependencies: '@vue/devtools-api': 6.0.0-beta.15 - vue: 3.2.2 - dev: false + vue: 3.2.4 /vue-template-es2015-compiler/1.9.1: resolution: {integrity: sha512-4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw==} dev: true - /vue-tsc/0.2.3_typescript@4.3.5: - resolution: {integrity: sha512-0ahxAnQolmv6EOnv5zxeMi4vCpM4PkhjU70i/EI44OzMWq4OErjLZhEh8EXOLtMx6FBRuuqS5fiBXcuqLpoL7Q==} + /vue-tsc/0.3.0_typescript@4.3.5: + resolution: {integrity: sha512-zaDRZBxwRIz1XjhNP92FqugG71st6BUMnA2EwPeXrAyzbEYVRz6TezNFceYl3QYqqN8CtaxbqUhaQEDj/ntoCA==} hasBin: true peerDependencies: typescript: '*' dependencies: typescript: 4.3.5 - vscode-vue-languageservice: 0.27.1 + vscode-vue-languageservice: 0.27.7 dev: true - /vue/3.1.5: - resolution: {integrity: sha512-Ho7HNb1nfDoO+HVb6qYZgeaobt1XbY6KXFe4HGs1b9X6RhkWG/113n4/SrtM1LUclM6OrP/Se5aPHHvAPG1iVQ==} + /vue/3.2.4: + resolution: {integrity: sha512-rNCFmoewm8IwmTK0nj3ysKq53iRpNEFKoBJ4inar6tIh7Oj7juubS39RI8UI+VE7x+Cs2z6PBsadtZu7z2qppg==} dependencies: - '@vue/compiler-dom': 3.1.5 - '@vue/runtime-dom': 3.1.5 - '@vue/shared': 3.1.5 - dev: true - - /vue/3.2.2: - resolution: {integrity: sha512-D/LuzAV30CgNJYGyNheE/VUs5N4toL2IgmS6c9qeOxvyh0xyn4exyRqizpXIrsvfx34zG9x5gCI2tdRHCGvF9w==} - dependencies: - '@vue/compiler-dom': 3.2.2 - '@vue/runtime-dom': 3.2.2 - '@vue/shared': 3.2.2 - dev: false + '@vue/compiler-dom': 3.2.4 + '@vue/runtime-dom': 3.2.4 + '@vue/shared': 3.2.4 /w3c-hr-time/1.0.2: resolution: {integrity: sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==} @@ -6091,6 +6013,10 @@ packages: engines: {node: '>=10.4'} dev: true + /webpack-virtual-modules/0.4.3: + resolution: {integrity: sha512-5NUqC2JquIL2pBAAo/VfBP6KuGkHIZQXW/lNKupLPfhViwh8wNsu0BObtl09yuKZszeEUfbXz8xhrHvSG16Nqw==} + dev: true + /whatwg-encoding/1.0.5: resolution: {integrity: sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==} dependencies: @@ -6121,10 +6047,10 @@ packages: /which-boxed-primitive/1.0.2: resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} dependencies: - is-bigint: 1.0.2 - is-boolean-object: 1.1.1 - is-number-object: 1.0.5 - is-string: 1.0.6 + is-bigint: 1.0.4 + is-boolean-object: 1.1.2 + is-number-object: 1.0.6 + is-string: 1.0.7 is-symbol: 1.0.4 dev: true @@ -6137,17 +6063,16 @@ packages: is-weakset: 2.0.1 dev: true - /which-typed-array/1.1.4: - resolution: {integrity: sha512-49E0SpUe90cjpoc7BOJwyPHRqSAd12c10Qm2amdEZrJPCY2NDxaW01zHITrem+rnETY3dwrbH3UUrUwagfCYDA==} + /which-typed-array/1.1.6: + resolution: {integrity: sha512-DdY984dGD5sQ7Tf+x1CkXzdg85b9uEel6nr4UkFg1LoE9OXv3uRuZhe5CoWdawhGACeFpEZXH8fFLQnDhbpm/Q==} engines: {node: '>= 0.4'} dependencies: available-typed-arrays: 1.0.4 call-bind: 1.0.2 - es-abstract: 1.18.3 + es-abstract: 1.18.5 foreach: 2.0.5 - function-bind: 1.1.1 - has-symbols: 1.0.2 - is-typed-array: 1.1.5 + has-tostringtag: 1.0.0 + is-typed-array: 1.1.7 dev: true /which/2.0.2: @@ -6158,8 +6083,8 @@ packages: isexe: 2.0.0 dev: true - /windicss/3.1.6: - resolution: {integrity: sha512-9/ShTPRs2pg/AJo4PtbgDv9p7BUgR52WqL7Gpr8VSO6LH8z4I/oKamUAlSXqyLsWD6yKS+xtxF3FRiHVJwYcuQ==} + /windicss/3.1.7: + resolution: {integrity: sha512-Q/HQ9j+r2R0fdt85zAjccdo11kHWzQmpkuwIUQIO6PSypyDmBTfN14aAy4szLrpgo2woyuHM7Y+kir4IG4qnKQ==} engines: {node: '>= 12'} hasBin: true dev: true @@ -6168,8 +6093,8 @@ packages: resolution: {integrity: sha512-RNGKj82nUPg3g5ygxkQl0R937xLyho1J24ItRCBTr/m1YnZkzJy1hUiHUJrc/VlsDQzsCnInEGSg3bci0Lmd4w==} engines: {node: '>= 10.0.0'} dependencies: - '@babel/parser': 7.14.8 - '@babel/types': 7.14.8 + '@babel/parser': 7.15.3 + '@babel/types': 7.15.0 assert-never: 1.2.1 babel-walk: 3.0.0-canary-5 dev: true @@ -6179,147 +6104,151 @@ packages: engines: {node: '>=0.10.0'} dev: true - /workbox-background-sync/6.1.5: - resolution: {integrity: sha512-VbUmPLsdz+sLzuNxHvMylzyRTiM4q+q7rwLBk3p2mtRL5NZozI8j/KgoGbno96vs84jx4b9zCZMEOIKEUTPf6w==} + /workbox-background-sync/6.2.4: + resolution: {integrity: sha512-uoGgm1PZU6THRzXKlMEntrdA4Xkp6SCfxI7re4heN+yGrtAZq6zMKYhZmsdeW+YGnXS3y5xj7WV03b5TDgLh6A==} dependencies: - workbox-core: 6.1.5 + idb: 6.1.2 + workbox-core: 6.2.4 dev: true - /workbox-broadcast-update/6.1.5: - resolution: {integrity: sha512-zGrTTs+n4wHpYtqYMqBg6kl/x5j1UrczGCQnODSHTxIDV8GXLb/GtA1BCZdysNxpMmdVSeLmTcgIYAAqWFamrA==} + /workbox-broadcast-update/6.2.4: + resolution: {integrity: sha512-0EpML2lbxNkiZUoap4BJDA0Hfz36MhtUd/rRhFvF6YWoRbTQ8tc6tMaRgM1EBIUmIN2OX9qQlkqe5SGGt4lfXQ==} dependencies: - workbox-core: 6.1.5 + workbox-core: 6.2.4 dev: true - /workbox-build/6.1.5: - resolution: {integrity: sha512-P+fakR5QFVqJN9l9xHVXtmafga72gh9I+jM3A9HiB/6UNRmOAejXnDgD+RMegOHgQHPwnB44TalMToFaXKWIyA==} + /workbox-build/6.2.4: + resolution: {integrity: sha512-01ZbY1BHi+yYvu4yDGZBw9xm1bWyZW0QGWPxiksvSPAsNH/z/NwgtWW14YEroFyG98mmXb7pufWlwl40zE1KTw==} engines: {node: '>=10.0.0'} dependencies: - '@babel/core': 7.14.8 - '@babel/preset-env': 7.14.8_@babel+core@7.14.8 - '@babel/runtime': 7.14.8 - '@hapi/joi': 16.1.8 - '@rollup/plugin-babel': 5.3.0_@babel+core@7.14.8+rollup@2.55.1 - '@rollup/plugin-node-resolve': 11.2.1_rollup@2.55.1 - '@rollup/plugin-replace': 2.4.2_rollup@2.55.1 + '@apideck/better-ajv-errors': 0.2.5_ajv@8.6.2 + '@babel/core': 7.15.0 + '@babel/preset-env': 7.15.0_@babel+core@7.15.0 + '@babel/runtime': 7.15.3 + '@rollup/plugin-babel': 5.3.0_@babel+core@7.15.0+rollup@2.56.3 + '@rollup/plugin-node-resolve': 11.2.1_rollup@2.56.3 + '@rollup/plugin-replace': 2.4.2_rollup@2.56.3 '@surma/rollup-plugin-off-main-thread': 1.4.2 + ajv: 8.6.2 common-tags: 1.8.0 fast-json-stable-stringify: 2.1.0 fs-extra: 9.1.0 glob: 7.1.7 lodash: 4.17.21 pretty-bytes: 5.6.0 - rollup: 2.55.1 - rollup-plugin-terser: 7.0.2_rollup@2.55.1 + rollup: 2.56.3 + rollup-plugin-terser: 7.0.2_rollup@2.56.3 source-map: 0.8.0-beta.0 source-map-url: 0.4.1 stringify-object: 3.3.0 strip-comments: 2.0.1 tempy: 0.6.0 upath: 1.2.0 - workbox-background-sync: 6.1.5 - workbox-broadcast-update: 6.1.5 - workbox-cacheable-response: 6.1.5 - workbox-core: 6.1.5 - workbox-expiration: 6.1.5 - workbox-google-analytics: 6.1.5 - workbox-navigation-preload: 6.1.5 - workbox-precaching: 6.1.5 - workbox-range-requests: 6.1.5 - workbox-recipes: 6.1.5 - workbox-routing: 6.1.5 - workbox-strategies: 6.1.5 - workbox-streams: 6.1.5 - workbox-sw: 6.1.5 - workbox-window: 6.1.5 + workbox-background-sync: 6.2.4 + workbox-broadcast-update: 6.2.4 + workbox-cacheable-response: 6.2.4 + workbox-core: 6.2.4 + workbox-expiration: 6.2.4 + workbox-google-analytics: 6.2.4 + workbox-navigation-preload: 6.2.4 + workbox-precaching: 6.2.4 + workbox-range-requests: 6.2.4 + workbox-recipes: 6.2.4 + workbox-routing: 6.2.4 + workbox-strategies: 6.2.4 + workbox-streams: 6.2.4 + workbox-sw: 6.2.4 + workbox-window: 6.2.4 transitivePeerDependencies: - '@types/babel__core' - supports-color dev: true - /workbox-cacheable-response/6.1.5: - resolution: {integrity: sha512-x8DC71lO/JCgiaJ194l9le8wc8lFPLgUpDkLhp2si7mXV6S/wZO+8Osvw1LLgYa8YYTWGbhbFhFTXIkEMknIIA==} + /workbox-cacheable-response/6.2.4: + resolution: {integrity: sha512-KZSzAOmgWsrk15Wu+geCUSGLIyyzHaORKjH5JnR6qcVZAsm0JXUu2m2OZGqjQ+/eyQwrGdXXqAMW+4wQvTXccg==} dependencies: - workbox-core: 6.1.5 + workbox-core: 6.2.4 dev: true - /workbox-core/6.1.5: - resolution: {integrity: sha512-9SOEle7YcJzg3njC0xMSmrPIiFjfsFm9WjwGd5enXmI8Lwk8wLdy63B0nzu5LXoibEmS9k+aWF8EzaKtOWjNSA==} + /workbox-core/6.2.4: + resolution: {integrity: sha512-Nu8X4R4Is3g8uzEJ6qwbW2CGVpzntW/cSf8OfsQGIKQR0nt84FAKzP2cLDaNLp3L/iV9TuhZgCTZzkMiap5/OQ==} dev: true - /workbox-expiration/6.1.5: - resolution: {integrity: sha512-6cN+FVbh8fNq56LFKPMchGNKCJeyboHsDuGBqmhDUPvD4uDjsegQpDQzn52VaE0cpywbSIsDF/BSq9E9Yjh5oQ==} + /workbox-expiration/6.2.4: + resolution: {integrity: sha512-EdOBLunrE3+Ff50y7AYDbiwtiLDvB+oEIkL1Wd9G5d176YVqFfgPfMRzJQ7fN+Yy2NfmsFME0Bw+dQruYekWsQ==} dependencies: - workbox-core: 6.1.5 + idb: 6.1.2 + workbox-core: 6.2.4 dev: true - /workbox-google-analytics/6.1.5: - resolution: {integrity: sha512-LYsJ/VxTkYVLxM1uJKXZLz4cJdemidY7kPyAYtKVZ6EiDG89noASqis75/5lhqM1m3HwQfp2DtoPrelKSpSDBA==} + /workbox-google-analytics/6.2.4: + resolution: {integrity: sha512-+PWmTouoGGcDupaxM193F2NmgrF597Pyt9eHIDxfed+x+JSSeUkETlbAKwB8rnBHkAjs8JQcvStEP/IpueNKpQ==} dependencies: - workbox-background-sync: 6.1.5 - workbox-core: 6.1.5 - workbox-routing: 6.1.5 - workbox-strategies: 6.1.5 + workbox-background-sync: 6.2.4 + workbox-core: 6.2.4 + workbox-routing: 6.2.4 + workbox-strategies: 6.2.4 dev: true - /workbox-navigation-preload/6.1.5: - resolution: {integrity: sha512-hDbNcWlffv0uvS21jCAC/mYk7NzaGRSWOQXv1p7bj2aONAX5l699D2ZK4D27G8TO0BaLHUmW/1A5CZcsvweQdg==} + /workbox-navigation-preload/6.2.4: + resolution: {integrity: sha512-y2dOSsaSdEimqhCmBIFR6kBp+GZbtNtWCBaMFwfKxTAul2uyllKcTKBHnZ9IzxULue6o6voV+I2U8Y8tO8n+eA==} dependencies: - workbox-core: 6.1.5 + workbox-core: 6.2.4 dev: true - /workbox-precaching/6.1.5: - resolution: {integrity: sha512-yhm1kb6wgi141JeM5X7z42XJxCry53tbMLB3NgrxktrZbwbrJF8JILzYy+RFKC9tHC6u2bPmL789GPLT2NCDzw==} + /workbox-precaching/6.2.4: + resolution: {integrity: sha512-7POznbVc8EG/mkbXzeb94x3B1VJruPgXvXFgS0NJ3GRugkO4ULs/DpIIb+ycs7uJIKY9EzLS7VXvElr3rMSozQ==} dependencies: - workbox-core: 6.1.5 - workbox-routing: 6.1.5 - workbox-strategies: 6.1.5 + workbox-core: 6.2.4 + workbox-routing: 6.2.4 + workbox-strategies: 6.2.4 dev: true - /workbox-range-requests/6.1.5: - resolution: {integrity: sha512-iACChSapzB0yuIum3ascP/+cfBNuZi5DRrE+u4u5mCHigPlwfSWtlaY+y8p+a8EwcDTVTZVtnrGrRnF31SiLqQ==} + /workbox-range-requests/6.2.4: + resolution: {integrity: sha512-q4jjTXD1QOKbrHnzV3nxdZtIpOiVoIP5QyVmjuJrybVnAZurtyKcqirTQcAcT/zlTvgwm07zcTTk9o/zIB6DmA==} dependencies: - workbox-core: 6.1.5 + workbox-core: 6.2.4 dev: true - /workbox-recipes/6.1.5: - resolution: {integrity: sha512-MD1yabHca6O/oj1hrRdfj9cRwhKA5zqIE53rWOAg/dKMMzWQsf9nyRbXRgzK3a13iQvYKuQzURU4Cx58tdnR+Q==} + /workbox-recipes/6.2.4: + resolution: {integrity: sha512-z7oECGrt940dw1Bv0xIDJEXY1xARiaxsIedeJOutZFkbgaC/yWG61VTr/hmkeJ8Nx6jnY6W7Rc0iOUvg4sePag==} dependencies: - workbox-cacheable-response: 6.1.5 - workbox-core: 6.1.5 - workbox-expiration: 6.1.5 - workbox-precaching: 6.1.5 - workbox-routing: 6.1.5 - workbox-strategies: 6.1.5 + workbox-cacheable-response: 6.2.4 + workbox-core: 6.2.4 + workbox-expiration: 6.2.4 + workbox-precaching: 6.2.4 + workbox-routing: 6.2.4 + workbox-strategies: 6.2.4 dev: true - /workbox-routing/6.1.5: - resolution: {integrity: sha512-uC/Ctz+4GXGL42h1WxUNKxqKRik/38uS0NZ6VY/EHqL2F1ObLFqMHUZ4ZYvyQsKdyI82cxusvhJZHOrY0a2fIQ==} + /workbox-routing/6.2.4: + resolution: {integrity: sha512-jHnOmpeH4MOWR4eXv6l608npD2y6IFv7yFJ1bT9/RbB8wq2vXHXJQ0ExTZRTWGbVltSG22wEU+MQ8VebDDwDeg==} dependencies: - workbox-core: 6.1.5 + workbox-core: 6.2.4 dev: true - /workbox-strategies/6.1.5: - resolution: {integrity: sha512-QhiOn9KT9YGBdbfWOmJT6pXZOIAxaVrs6J6AMYzRpkUegBTEcv36+ZhE/cfHoT0u2fxVtthHnskOQ/snEzaXQw==} + /workbox-strategies/6.2.4: + resolution: {integrity: sha512-DKgGC3ruceDuu2o+Ae5qmJy0p0q21mFP+RrkdqKrjyf2u8cJvvtvt1eIt4nevKc5BESiKxmhC2h+TZpOSzUDvA==} dependencies: - workbox-core: 6.1.5 + workbox-core: 6.2.4 dev: true - /workbox-streams/6.1.5: - resolution: {integrity: sha512-OI1kLvRHGFXV+soDvs6aEwfBwdAkvPB0mRryqdh3/K17qUj/1gRXc8QtpgU+83xqx/I/ar2bTCIj0KPzI/ChCQ==} + /workbox-streams/6.2.4: + resolution: {integrity: sha512-yG6zV7S2NmYT6koyb7/DoPsyUAat9kD+rOmjP2SbBCtJdLu6ZIi1lgN4/rOkxEby/+Xb4OE4RmCSIZdMyjEmhQ==} dependencies: - workbox-core: 6.1.5 - workbox-routing: 6.1.5 + workbox-core: 6.2.4 + workbox-routing: 6.2.4 dev: true - /workbox-sw/6.1.5: - resolution: {integrity: sha512-IMDiqxYbKzPorZLGMUMacLB6r76iVQbdTzYthIZoPfy+uFURJFUtqiWQJKg1L+RMyuYXwKXTahCIGkgFs4jBeg==} + /workbox-sw/6.2.4: + resolution: {integrity: sha512-OlWLHNNM+j44sN2OaVXnVcf2wwhJUzcHlXrTrbWDu1JWnrQJ/rLicdc/sbxkZoyE0EbQm7Xr1BXcOjsB7PNlXQ==} dev: true - /workbox-window/6.1.5: - resolution: {integrity: sha512-akL0X6mAegai2yypnq78RgfazeqvKbsllRtEI4dnbhPcRINEY1NmecFmsQk8SD+zWLK1gw5OdwAOX+zHSRVmeA==} + /workbox-window/6.2.4: + resolution: {integrity: sha512-9jD6THkwGEASj1YP56ZBHYJ147733FoGpJlMamYk38k/EBFE75oc6K3Vs2tGOBx5ZGq54+mHSStnlrtFG3IiOg==} dependencies: - workbox-core: 6.1.5 + '@types/trusted-types': 2.0.2 + workbox-core: 6.2.4 dev: true /wrap-ansi/7.0.0: @@ -6392,8 +6321,8 @@ packages: engines: {node: '>=10'} dev: true - /yargs/17.0.1: - resolution: {integrity: sha512-xBBulfCc8Y6gLFcrPvtqKz9hz8SO0l1Ni8GgDekvBX2ro0HRQImDGnikfc33cgzcYUSncapnNcZDjVFIH3f6KQ==} + /yargs/17.1.1: + resolution: {integrity: sha512-c2k48R0PwKIqKhPMWjeiF6y2xY/gPMUlro0sgxqXpbOIohWiLNXWslsootttv7E1e73QPAMQSg5FeySbVcpsPQ==} engines: {node: '>=12'} dependencies: cliui: 7.0.4 diff --git a/src/components/Footer.vue b/src/components/Footer.vue index 085fbce..332b68d 100644 --- a/src/components/Footer.vue +++ b/src/components/Footer.vue @@ -17,7 +17,7 @@ const toggleLocales = () => { - diff --git a/src/layouts/404.vue b/src/layouts/404.vue index 4f4f9b4..2f7d1d4 100644 --- a/src/layouts/404.vue +++ b/src/layouts/404.vue @@ -1,7 +1,4 @@ diff --git a/src/logic/dark.ts b/src/logic/dark.ts index 5467599..a3260a8 100644 --- a/src/logic/dark.ts +++ b/src/logic/dark.ts @@ -1,4 +1,4 @@ -import { useDark, useToggle } from '@vueuse/core' +// import { useDark, useToggle } from '@vueuse/core' export const isDark = useDark() export const toggleDark = useToggle(isDark) diff --git a/src/main.ts b/src/main.ts index 102fdb2..eea3518 100644 --- a/src/main.ts +++ b/src/main.ts @@ -1,5 +1,4 @@ // register vue composition api globally -import 'vue-global-api' import { ViteSSG } from 'vite-ssg' import generatedRoutes from 'virtual:generated-pages' import { setupLayouts } from 'virtual:generated-layouts' diff --git a/src/pages/[...all].vue b/src/pages/[...all].vue index ac0f5ab..673f718 100755 --- a/src/pages/[...all].vue +++ b/src/pages/[...all].vue @@ -1,6 +1,4 @@ diff --git a/src/pages/hi/[name].vue b/src/pages/hi/[name].vue index e7b1ddd..dba1588 100644 --- a/src/pages/hi/[name].vue +++ b/src/pages/hi/[name].vue @@ -1,12 +1,10 @@