From bdff4a471ee8fcbb86a78fdfe7eccdecabe0bdae Mon Sep 17 00:00:00 2001 From: Guillaume Chau Date: Wed, 10 Aug 2022 22:22:12 +0200 Subject: [PATCH] feat: upgrade to vite 3 fix: build hanging fix: sandbox font size --- examples/vue2/package.json | 2 +- examples/vue3-percy/package.json | 4 +- examples/vue3-screenshot/package.json | 4 +- examples/vue3-themed/package.json | 4 +- examples/vue3/package.json | 4 +- examples/vue3/src/main.ts | 5 + examples/vue3/src/shim.d.ts | 7 + examples/vue3/vite.config.ts | 2 +- package.json | 1 + .../histoire-app/src/app/style/sandbox.css | 2 +- packages/histoire-plugin-nuxt/src/index.ts | 1 + packages/histoire/package.json | 6 +- packages/histoire/src/node/config.ts | 3 +- packages/histoire/src/node/vite.ts | 1 - pnpm-lock.yaml | 1626 +++++++++-------- 15 files changed, 875 insertions(+), 797 deletions(-) create mode 100644 examples/vue3/src/main.ts create mode 100644 examples/vue3/src/shim.d.ts diff --git a/examples/vue2/package.json b/examples/vue2/package.json index cf199725..329bd65f 100644 --- a/examples/vue2/package.json +++ b/examples/vue2/package.json @@ -14,7 +14,7 @@ "@histoire/plugin-vue2": "workspace:*", "@vitejs/plugin-vue2": "^1.1.2", "histoire": "workspace:*", - "vite": "^2.9.1", + "vite": "^3.0.5", "vue-template-compiler": "^2.7.8" } } diff --git a/examples/vue3-percy/package.json b/examples/vue3-percy/package.json index 83ce45d4..69595cbb 100644 --- a/examples/vue3-percy/package.json +++ b/examples/vue3-percy/package.json @@ -13,8 +13,8 @@ "devDependencies": { "@histoire/plugin-percy": "workspace:*", "@histoire/plugin-vue": "workspace:*", - "@vitejs/plugin-vue": "^2.3.1", + "@vitejs/plugin-vue": "^3.0.1", "histoire": "workspace:*", - "vite": "^2.9.1" + "vite": "^3.0.5" } } \ No newline at end of file diff --git a/examples/vue3-screenshot/package.json b/examples/vue3-screenshot/package.json index 9b5866a2..0351ac51 100644 --- a/examples/vue3-screenshot/package.json +++ b/examples/vue3-screenshot/package.json @@ -13,8 +13,8 @@ "devDependencies": { "@histoire/plugin-screenshot": "workspace:*", "@histoire/plugin-vue": "workspace:*", - "@vitejs/plugin-vue": "^2.3.1", + "@vitejs/plugin-vue": "^3.0.1", "histoire": "workspace:*", - "vite": "^2.9.1" + "vite": "^3.0.5" } } \ No newline at end of file diff --git a/examples/vue3-themed/package.json b/examples/vue3-themed/package.json index 3a7ffe39..453781c6 100644 --- a/examples/vue3-themed/package.json +++ b/examples/vue3-themed/package.json @@ -11,9 +11,9 @@ "vue": "^3.2.31" }, "devDependencies": { - "@vitejs/plugin-vue": "^2.3.1", + "@vitejs/plugin-vue": "^3.0.1", "@histoire/plugin-vue": "workspace:*", "histoire": "workspace:*", - "vite": "^2.9.1" + "vite": "^3.0.5" } } \ No newline at end of file diff --git a/examples/vue3/package.json b/examples/vue3/package.json index 2c9de370..c3281acf 100644 --- a/examples/vue3/package.json +++ b/examples/vue3/package.json @@ -17,12 +17,12 @@ "vue-i18n": "^9.1.10" }, "devDependencies": { - "@vitejs/plugin-vue": "^2.3.1", + "@vitejs/plugin-vue": "^3.0.1", "@histoire/plugin-vue": "workspace:*", "cypress": "^9.5.3", "histoire": "workspace:*", "sass": "^1.50.0", "start-server-and-test": "^1.14.0", - "vite": "^2.9.1" + "vite": "^3.0.5" } } \ No newline at end of file diff --git a/examples/vue3/src/main.ts b/examples/vue3/src/main.ts new file mode 100644 index 00000000..50f75c8c --- /dev/null +++ b/examples/vue3/src/main.ts @@ -0,0 +1,5 @@ +import { createApp } from 'vue' +import Responsive from './components/Responsive.vue' + +const app = createApp(Responsive) +app.mount('#app') diff --git a/examples/vue3/src/shim.d.ts b/examples/vue3/src/shim.d.ts new file mode 100644 index 00000000..2cb444d2 --- /dev/null +++ b/examples/vue3/src/shim.d.ts @@ -0,0 +1,7 @@ +/// + +declare module '*.vue' { + import { ComponentOptions } from 'vue' + const comp: ComponentOptions + export default comp +} diff --git a/examples/vue3/vite.config.ts b/examples/vue3/vite.config.ts index f4a977d4..f3085ccb 100644 --- a/examples/vue3/vite.config.ts +++ b/examples/vue3/vite.config.ts @@ -8,7 +8,7 @@ export default defineConfig({ // Example build config for a component library build: { lib: { - entry: path.resolve(__dirname, './src/main.js'), + entry: path.resolve(__dirname, './src/main.ts'), name: 'histoire-kit', fileName: (format) => `histoire-kit.${format}.js`, }, diff --git a/package.json b/package.json index 1a878ca0..e58ae0d1 100644 --- a/package.json +++ b/package.json @@ -61,6 +61,7 @@ "eslint": "*", "eslint-plugin-promise": "*", "eslint-plugin-vue": "*", + "vite": "^2.9.0 || ^3.0.0", "vue": "*" } } diff --git a/packages/histoire-app/src/app/style/sandbox.css b/packages/histoire-app/src/app/style/sandbox.css index 66a9a5f4..e1e3e4cc 100644 --- a/packages/histoire-app/src/app/style/sandbox.css +++ b/packages/histoire-app/src/app/style/sandbox.css @@ -10,7 +10,7 @@ body { } html { - font-size: .875rem; + font-size: 1rem; font-family: 'Lato', sans-serif; } diff --git a/packages/histoire-plugin-nuxt/src/index.ts b/packages/histoire-plugin-nuxt/src/index.ts index cc7a4f39..b2c6f891 100644 --- a/packages/histoire-plugin-nuxt/src/index.ts +++ b/packages/histoire-plugin-nuxt/src/index.ts @@ -16,6 +16,7 @@ export function HstNuxt (): Plugin { return { name: '@histoire/plugin-nuxt', + // @ts-expect-error Different versions of Vite in devDependencies @TODO update when Nuxt switches to Vite 3 async config () { const nuxtConfig = await useNuxtViteConfig() nuxt = nuxtConfig.nuxt diff --git a/packages/histoire/package.json b/packages/histoire/package.json index c649b972..2d85de50 100644 --- a/packages/histoire/package.json +++ b/packages/histoire/package.json @@ -63,10 +63,10 @@ "shiki": "0.10.1", "sirv": "^2.0.2", "tinypool": "^0.1.2", - "vite-node": "0.12.1" + "vite-node": "0.21.1" }, "peerDependencies": { - "vite": "^2.9.0" + "vite": "^2.9.0 || ^3.0.0" }, "devDependencies": { "@peeky/test": "^0.13.5", @@ -76,6 +76,6 @@ "@types/node": "^17.0.32", "rollup": "^2.59.0", "typescript": "^4.7.4", - "vite": "^2.9.1" + "vite": "^3.0.5" } } diff --git a/packages/histoire/src/node/config.ts b/packages/histoire/src/node/config.ts index a8ddf857..8a85ac76 100644 --- a/packages/histoire/src/node/config.ts +++ b/packages/histoire/src/node/config.ts @@ -289,7 +289,8 @@ export function getDefaultConfig (): HistoireConfig { const index = config.plugins?.findIndex(plugin => Array.isArray(plugin) && typeof plugin[0] === 'object' && !Array.isArray(plugin[0]) && - plugin[0].name.startsWith('vite:legacy')) + // @ts-expect-error could have no property 'name' + plugin[0].name?.startsWith('vite:legacy')) if (index !== -1) { config.plugins?.splice(index, 1) } diff --git a/packages/histoire/src/node/vite.ts b/packages/histoire/src/node/vite.ts index 25a1db71..ce01291b 100644 --- a/packages/histoire/src/node/vite.ts +++ b/packages/histoire/src/node/vite.ts @@ -98,7 +98,6 @@ export async function getViteConfigWithPlugins (isServer: boolean, ctx: Context) }, }, optimizeDeps: { - disabled: isServer, entries: [ `${APP_PATH}/bundle-main.js`, `${APP_PATH}/bundle-sandbox.js`, diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 290d127c..d0bad232 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29,23 +29,23 @@ importers: devDependencies: '@akryum/sheep': 0.3.3 '@iconify/vue': 3.2.1 - '@typescript-eslint/eslint-plugin': 5.32.0_iosr3hrei2tubxveewluhu5lhy - '@typescript-eslint/parser': 5.32.0_qugx7qdu5zevzvxaiqyxfiwquq + '@typescript-eslint/eslint-plugin': 5.33.0_njno5y7ry2l2lcmiu4tywxkwnq + '@typescript-eslint/parser': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq '@vue/eslint-config-standard': 6.1.0_fkueuofiepomjgosxknfviss4a '@vue/eslint-config-typescript': 10.0.0_nc7nknup3hbyc67gcp5ycg4lby '@vueuse/core': 8.9.4 - autoprefixer: 10.4.8_postcss@8.4.14 + autoprefixer: 10.4.8_postcss@8.4.16 conventional-changelog-cli: 2.2.2 eslint: 8.21.0 eslint-plugin-cypress: 2.12.1_eslint@8.21.0 - eslint-plugin-import: 2.26.0_wuikv5nqgdfyng42xxm7lklfmi + eslint-plugin-import: 2.26.0_qfqnhzzittf54udqwes54xx65q eslint-plugin-node: 11.1.0_eslint@8.21.0 eslint-plugin-promise: 6.0.0_eslint@8.21.0 eslint-plugin-vue: 9.3.0_eslint@8.21.0 floating-vue: 2.0.0-beta.19 - postcss: 8.4.14 + postcss: 8.4.16 rimraf: 3.0.2 - tailwindcss: 3.1.7 + tailwindcss: 3.1.8 typescript: 4.7.4 vitepress: 1.0.0-alpha.1 vue-eslint-parser: 9.0.3_eslint@8.21.0 @@ -69,91 +69,91 @@ importers: '@histoire/plugin-vue2': workspace:* '@vitejs/plugin-vue2': ^1.1.2 histoire: workspace:* - vite: ^2.9.1 + vite: ^3.0.5 vue: ^2.7.8 vue-template-compiler: ^2.7.8 dependencies: vue: 2.7.8 devDependencies: '@histoire/plugin-vue2': link:../../packages/histoire-plugin-vue2 - '@vitejs/plugin-vue2': 1.1.2_vite@2.9.14+vue@2.7.8 + '@vitejs/plugin-vue2': 1.1.2_vite@3.0.5+vue@2.7.8 histoire: link:../../packages/histoire - vite: 2.9.14 + vite: 3.0.5 vue-template-compiler: 2.7.8 examples/vue3: specifiers: '@histoire/plugin-vue': workspace:* - '@vitejs/plugin-vue': ^2.3.1 + '@vitejs/plugin-vue': ^3.0.1 cypress: ^9.5.3 histoire: workspace:* pinia: ^2.0.13 sass: ^1.50.0 start-server-and-test: ^1.14.0 - vite: ^2.9.1 + vite: ^3.0.5 vue: ^3.2.31 vue-i18n: ^9.1.10 dependencies: pinia: 2.0.17_vue@3.2.37 vue: 3.2.37 - vue-i18n: 9.2.0_vue@3.2.37 + vue-i18n: 9.2.2_vue@3.2.37 devDependencies: '@histoire/plugin-vue': link:../../packages/histoire-plugin-vue - '@vitejs/plugin-vue': 2.3.3_vite@2.9.14+vue@3.2.37 + '@vitejs/plugin-vue': 3.0.1_vite@3.0.5+vue@3.2.37 cypress: 9.7.0 histoire: link:../../packages/histoire - sass: 1.54.0 + sass: 1.54.4 start-server-and-test: 1.14.0 - vite: 2.9.14_sass@1.54.0 + vite: 3.0.5_sass@1.54.4 examples/vue3-percy: specifiers: '@histoire/plugin-percy': workspace:* '@histoire/plugin-vue': workspace:* - '@vitejs/plugin-vue': ^2.3.1 + '@vitejs/plugin-vue': ^3.0.1 histoire: workspace:* - vite: ^2.9.1 + vite: ^3.0.5 vue: ^3.2.31 dependencies: vue: 3.2.37 devDependencies: '@histoire/plugin-percy': link:../../packages/histoire-plugin-percy '@histoire/plugin-vue': link:../../packages/histoire-plugin-vue - '@vitejs/plugin-vue': 2.3.3_vite@2.9.14+vue@3.2.37 + '@vitejs/plugin-vue': 3.0.1_vite@3.0.5+vue@3.2.37 histoire: link:../../packages/histoire - vite: 2.9.14 + vite: 3.0.5 examples/vue3-screenshot: specifiers: '@histoire/plugin-screenshot': workspace:* '@histoire/plugin-vue': workspace:* - '@vitejs/plugin-vue': ^2.3.1 + '@vitejs/plugin-vue': ^3.0.1 histoire: workspace:* - vite: ^2.9.1 + vite: ^3.0.5 vue: ^3.2.31 dependencies: vue: 3.2.37 devDependencies: '@histoire/plugin-screenshot': link:../../packages/histoire-plugin-screenshot '@histoire/plugin-vue': link:../../packages/histoire-plugin-vue - '@vitejs/plugin-vue': 2.3.3_vite@2.9.14+vue@3.2.37 + '@vitejs/plugin-vue': 3.0.1_vite@3.0.5+vue@3.2.37 histoire: link:../../packages/histoire - vite: 2.9.14 + vite: 3.0.5 examples/vue3-themed: specifiers: '@histoire/plugin-vue': workspace:* - '@vitejs/plugin-vue': ^2.3.1 + '@vitejs/plugin-vue': ^3.0.1 histoire: workspace:* - vite: ^2.9.1 + vite: ^3.0.5 vue: ^3.2.31 dependencies: vue: 3.2.37 devDependencies: '@histoire/plugin-vue': link:../../packages/histoire-plugin-vue - '@vitejs/plugin-vue': 2.3.3_vite@2.9.14+vue@3.2.37 + '@vitejs/plugin-vue': 3.0.1_vite@3.0.5+vue@3.2.37 histoire: link:../../packages/histoire - vite: 2.9.14 + vite: 3.0.5 examples/vue3-vuetify: specifiers: @@ -168,13 +168,13 @@ importers: dependencies: '@mdi/font': 5.9.55 vue: 3.2.37 - vuetify: 3.0.0-beta.6_6ie63ee4j7wvfql6o5tlbbu2pe + vuetify: 3.0.0-beta.7_6ie63ee4j7wvfql6o5tlbbu2pe devDependencies: '@histoire/plugin-vue': link:../../packages/histoire-plugin-vue '@vitejs/plugin-vue': 2.3.3_vite@2.9.14+vue@3.2.37 histoire: link:../../packages/histoire vite: 2.9.14 - vite-plugin-vuetify: 1.0.0-alpha.12_w52zhfion3iv5bvbedrh5mosdm + vite-plugin-vuetify: 1.0.0-alpha.12_6tyjwtjmg2vdgx3bsuq7igapb4 packages/histoire: specifiers: @@ -212,8 +212,8 @@ importers: sirv: ^2.0.2 tinypool: ^0.1.2 typescript: ^4.7.4 - vite: ^2.9.1 - vite-node: 0.12.1 + vite: ^3.0.5 + vite-node: 0.21.1 dependencies: '@histoire/app': link:../histoire-app '@histoire/controls': link:../histoire-controls @@ -243,7 +243,7 @@ importers: shiki: 0.10.1 sirv: 2.0.2 tinypool: 0.1.3 - vite-node: 0.12.1 + vite-node: 0.21.1 devDependencies: '@peeky/test': 0.13.5 '@types/fs-extra': 9.0.13 @@ -251,7 +251,7 @@ importers: '@types/node': 17.0.45 rollup: 2.77.2 typescript: 4.7.4 - vite: 2.9.14 + vite: 3.0.5 packages/histoire-app: specifiers: @@ -285,19 +285,19 @@ importers: flexsearch: 0.7.21 shiki: 0.10.1 devDependencies: - '@tailwindcss/typography': 0.5.4_tailwindcss@3.1.7 + '@tailwindcss/typography': 0.5.4_tailwindcss@3.1.8 '@types/fs-extra': 9.0.13 '@types/node': 17.0.45 '@vitejs/plugin-vue': 2.3.3_vite@2.9.14+vue@3.2.37 - autoprefixer: 10.4.8_postcss@8.4.14 + autoprefixer: 10.4.8_postcss@8.4.16 chokidar: 3.5.3 concurrently: 7.3.0 fs-extra: 10.1.0 globby: 13.1.2 pathe: 0.2.0 - postcss: 8.4.14 - postcss-import: 14.1.0_postcss@8.4.14 - tailwindcss: 3.1.7 + postcss: 8.4.16 + postcss-import: 14.1.0_postcss@8.4.16 + tailwindcss: 3.1.8 typescript: 4.7.4 vite: 2.9.14 vue: 3.2.37 @@ -328,12 +328,12 @@ importers: '@vitejs/plugin-vue': 2.3.3_vite@2.9.14+vue@3.2.37 '@vue/test-utils': 2.0.2_vue@3.2.37 '@vueuse/core': 8.9.4_vue@3.2.37 - autoprefixer: 10.4.8_postcss@8.4.14 + autoprefixer: 10.4.8_postcss@8.4.16 concurrently: 7.3.0 floating-vue: 2.0.0-beta.19_vue@3.2.37 - postcss: 8.4.14 - postcss-import: 14.1.0_postcss@8.4.14 - tailwindcss: 3.1.7 + postcss: 8.4.16 + postcss-import: 14.1.0_postcss@8.4.16 + tailwindcss: 3.1.8 typescript: 4.7.4 vite: 2.9.14 vue: 3.2.37 @@ -382,7 +382,7 @@ importers: puppeteer: ^13.7.0 typescript: ^4.7.4 dependencies: - '@percy/sdk-utils': 1.7.2 + '@percy/sdk-utils': 1.8.1 defu: 6.0.0 fs-extra: 10.1.0 pathe: 0.2.0 @@ -487,9 +487,9 @@ importers: vue-router: ^4.0.14 devDependencies: '@iconify/vue': 3.2.1_vue@3.2.37 - '@rollup/plugin-commonjs': 22.0.1_rollup@2.77.2 + '@rollup/plugin-commonjs': 22.0.2_rollup@2.77.2 '@rollup/plugin-node-resolve': 13.3.0_rollup@2.77.2 - '@types/node': 18.6.3 + '@types/node': 18.7.0 '@vueuse/core': 8.9.4_vue@3.2.37 execa: 6.1.0 floating-vue: 2.0.0-beta.19_vue@3.2.37 @@ -703,13 +703,13 @@ packages: dependencies: '@ampproject/remapping': 2.2.0 '@babel/code-frame': 7.18.6 - '@babel/generator': 7.18.10 + '@babel/generator': 7.18.12 '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.18.10 '@babel/helper-module-transforms': 7.18.9 '@babel/helpers': 7.18.9 - '@babel/parser': 7.18.10 + '@babel/parser': 7.18.11 '@babel/template': 7.18.10 - '@babel/traverse': 7.18.10 + '@babel/traverse': 7.18.11 '@babel/types': 7.18.10 convert-source-map: 1.8.0 debug: 4.3.4 @@ -719,8 +719,8 @@ packages: transitivePeerDependencies: - supports-color - /@babel/generator/7.18.10: - resolution: {integrity: sha512-0+sW7e3HjQbiHbj1NeU/vN8ornohYlacAfZIaXhdoGweQqgcNy69COVciYYqEXJ/v+9OBA7Frxm4CVAuNqKeNA==} + /@babel/generator/7.18.12: + resolution: {integrity: sha512-dfQ8ebCN98SvyL7IxNMCUtZQSq5R7kxgN+r8qYTGDmmSion1hX2C0zq2yo1bsCDhXixokv1SAWTZUMYbO/V5zg==} engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.18.10 @@ -804,7 +804,7 @@ packages: '@babel/helper-split-export-declaration': 7.18.6 '@babel/helper-validator-identifier': 7.18.6 '@babel/template': 7.18.10 - '@babel/traverse': 7.18.10 + '@babel/traverse': 7.18.11 '@babel/types': 7.18.10 transitivePeerDependencies: - supports-color @@ -828,7 +828,7 @@ packages: '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-member-expression-to-functions': 7.18.9 '@babel/helper-optimise-call-expression': 7.18.6 - '@babel/traverse': 7.18.10 + '@babel/traverse': 7.18.11 '@babel/types': 7.18.10 transitivePeerDependencies: - supports-color @@ -863,7 +863,7 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/template': 7.18.10 - '@babel/traverse': 7.18.10 + '@babel/traverse': 7.18.11 '@babel/types': 7.18.10 transitivePeerDependencies: - supports-color @@ -876,8 +876,8 @@ packages: chalk: 2.4.2 js-tokens: 4.0.0 - /@babel/parser/7.18.10: - resolution: {integrity: sha512-TYk3OA0HKL6qNryUayb5UUEhM/rkOQozIBEA5ITXh5DWrSp0TlUQXMyZmnWxG/DizSWBeeQ0Zbc5z8UGaaqoeg==} + /@babel/parser/7.18.11: + resolution: {integrity: sha512-9JKn5vN+hDt0Hdqn1PiJ2guflwP+B6Ga8qbDuoF0PzzVhrzsKIJo8yGqVk6CmMHiMei9w1C1Bp9IMJSIK+HPIQ==} engines: {node: '>=6.0.0'} hasBin: true dependencies: @@ -912,8 +912,8 @@ packages: '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-transform-typescript/7.18.10_@babel+core@7.18.10: - resolution: {integrity: sha512-j2HQCJuMbi88QftIb5zlRu3c7PU+sXNnscqsrjqegoGiCgXR569pEdben9vly5QHKL2ilYkfnSwu64zsZo/VYQ==} + /@babel/plugin-transform-typescript/7.18.12_@babel+core@7.18.10: + resolution: {integrity: sha512-2vjjam0cum0miPkenUbQswKowuxs/NjMwIKEq0zwegRxXk12C9YOF9STXnaUptITOtOJHKHpzvvWYOjbm6tc0w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -926,8 +926,8 @@ packages: - supports-color dev: true - /@babel/standalone/7.18.10: - resolution: {integrity: sha512-0KWHiRX9TUHiWE+dKYYEOIiRJcPwGU6u8Bq/p+ldekj7Kew9PCwl4S4FTSEPpTrn3Vc+r3iRSaN1l9AcGgLx4Q==} + /@babel/standalone/7.18.12: + resolution: {integrity: sha512-wDh3K5IUJiSMAY0MLYBFoCaj2RCZwvDz5BHn2uHat9KOsGWEVDFgFQFIOO+81Js2phFKNppLC45iOCsZVfJniw==} engines: {node: '>=6.9.0'} /@babel/template/7.18.10: @@ -935,20 +935,20 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.18.6 - '@babel/parser': 7.18.10 + '@babel/parser': 7.18.11 '@babel/types': 7.18.10 - /@babel/traverse/7.18.10: - resolution: {integrity: sha512-J7ycxg0/K9XCtLyHf0cz2DqDihonJeIo+z+HEdRe9YuT8TY4A66i+Ab2/xZCEW7Ro60bPCBBfqqboHSamoV3+g==} + /@babel/traverse/7.18.11: + resolution: {integrity: sha512-TG9PiM2R/cWCAy6BPJKeHzNbu4lPzOSZpeMfeNErskGpTJx6trEvFaVCbDvpcxwy49BKWmEPwiW8mrysNiDvIQ==} engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.18.6 - '@babel/generator': 7.18.10 + '@babel/generator': 7.18.12 '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-function-name': 7.18.9 '@babel/helper-hoist-variables': 7.18.6 '@babel/helper-split-export-declaration': 7.18.6 - '@babel/parser': 7.18.10 + '@babel/parser': 7.18.11 '@babel/types': 7.18.10 debug: 4.3.4 globals: 11.12.0 @@ -985,7 +985,7 @@ packages: '@cliqz/adblocker': 1.23.8 '@cliqz/adblocker-content': 1.23.8 puppeteer: 13.7.0 - tldts-experimental: 5.7.87 + tldts-experimental: 5.7.88 dev: false /@cliqz/adblocker/1.23.8: @@ -998,7 +998,7 @@ packages: '@remusao/smaz': 1.9.1 '@types/chrome': 0.0.183 '@types/firefox-webext-browser': 94.0.1 - tldts-experimental: 5.7.87 + tldts-experimental: 5.7.88 dev: false /@cloudflare/kv-asset-handler/0.2.0: @@ -1014,14 +1014,14 @@ packages: dev: true optional: true - /@csstools/selector-specificity/2.0.2_444rcjjorr3kpoqtvoodsr46pu: + /@csstools/selector-specificity/2.0.2_pnx64jze6bptzcedy5bidi3zdi: resolution: {integrity: sha512-IkpVW/ehM1hWKln4fCA3NzJU8KwD+kIOvPZA4cqxoJHtE21CCzjyp+Kxbu0i5I4tBNOlXPL9mjwnWlL0VEG4Fg==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 postcss-selector-parser: ^6.0.10 dependencies: - postcss: 8.4.14 + postcss: 8.4.16 postcss-selector-parser: 6.0.10 dev: true @@ -1066,7 +1066,7 @@ packages: resolution: {integrity: sha512-FEgXW8a+ZKBjSDteFPsKQ7Hlzk6+18A2Y7NffjV+VTsE7P3uTvHPKHKDCeYMnAgXTatRCGHWCfP7YImTSwEFQA==} dependencies: '@docsearch/react': 3.2.0 - preact: 10.10.0 + preact: 10.10.2 transitivePeerDependencies: - '@algolia/client-search' - '@types/react' @@ -1096,6 +1096,14 @@ packages: - '@algolia/client-search' dev: true + /@esbuild/linux-loong64/0.14.54: + resolution: {integrity: sha512-bZBrLAIX1kpWelV0XemxBZllyRmM6vgFQQG2GdNb+r3Fkp0FOh1NJSvekXDs7jq70k4euu1cryLMfU+mTXlEpw==} + engines: {node: '>=12'} + cpu: [loong64] + os: [linux] + requiresBuild: true + optional: true + /@eslint/eslintrc/1.3.0: resolution: {integrity: sha512-UWW0TMTmk2d7hLcWD1/e2g5HDM/HQ3csaLSqXCfqwh4uNDuNqlaKWXmEsL4Cs41Z0KnILNvwbHAah3C2yt06kw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -1177,42 +1185,42 @@ packages: vue: 3.2.37 dev: true - /@intlify/core-base/9.2.0: - resolution: {integrity: sha512-PkaiY9FAzZHAwPNaS+3csXR6L5k8LFBsSjn63/dy5BqE3pOJd07R4+NYtk8ezxymUemu7p5cS9YX77cmnQO6aQ==} + /@intlify/core-base/9.2.2: + resolution: {integrity: sha512-JjUpQtNfn+joMbrXvpR4hTF8iJQ2sEFzzK3KIESOx+f+uwIjgw20igOyaIdhfsVVBCds8ZM64MoeNSx+PHQMkA==} engines: {node: '>= 14'} dependencies: - '@intlify/devtools-if': 9.2.0 - '@intlify/message-compiler': 9.2.0 - '@intlify/shared': 9.2.0 - '@intlify/vue-devtools': 9.2.0 + '@intlify/devtools-if': 9.2.2 + '@intlify/message-compiler': 9.2.2 + '@intlify/shared': 9.2.2 + '@intlify/vue-devtools': 9.2.2 dev: false - /@intlify/devtools-if/9.2.0: - resolution: {integrity: sha512-8yfusyhUaqInnn6Cma+NTTh5+EWyrnAkez36qADetbUnY4tCeGyAy+MmIAGh0uqmJVIeX94vd6L1AaA0p9McGg==} + /@intlify/devtools-if/9.2.2: + resolution: {integrity: sha512-4ttr/FNO29w+kBbU7HZ/U0Lzuh2cRDhP8UlWOtV9ERcjHzuyXVZmjyleESK6eVP60tGC9QtQW9yZE+JeRhDHkg==} engines: {node: '>= 14'} dependencies: - '@intlify/shared': 9.2.0 + '@intlify/shared': 9.2.2 dev: false - /@intlify/message-compiler/9.2.0: - resolution: {integrity: sha512-KGwwZsl+Nw2O26ZOKdytncxzKnMZ236KmM70u4GePgbizI+pu8yAh0apKxljSPzEJ7WECKTVc9R+laG12EJQYA==} + /@intlify/message-compiler/9.2.2: + resolution: {integrity: sha512-IUrQW7byAKN2fMBe8z6sK6riG1pue95e5jfokn8hA5Q3Bqy4MBJ5lJAofUsawQJYHeoPJ7svMDyBaVJ4d0GTtA==} engines: {node: '>= 14'} dependencies: - '@intlify/shared': 9.2.0 + '@intlify/shared': 9.2.2 source-map: 0.6.1 dev: false - /@intlify/shared/9.2.0: - resolution: {integrity: sha512-71uObL3Sy2ZiBQBMVETbkspE4Plpy87Hvlj6FAUF3xdD+M82tuxe3MVJjaD3ucqhtHmQWBkAWEurVLdPYr8G2g==} + /@intlify/shared/9.2.2: + resolution: {integrity: sha512-wRwTpsslgZS5HNyM7uDQYZtxnbI12aGiBZURX3BTR9RFIKKRWpllTsgzHWvj3HKm3Y2Sh5LPC1r0PDCKEhVn9Q==} engines: {node: '>= 14'} dev: false - /@intlify/vue-devtools/9.2.0: - resolution: {integrity: sha512-6P/tE/JdNNVo1z/sr/FnSd90OVlox2XuKMmzHR13nvpHGX7fjRn6pVv47L2jySOYG1cMezmYvJl14TAddKpw5Q==} + /@intlify/vue-devtools/9.2.2: + resolution: {integrity: sha512-+dUyqyCHWHb/UcvY1MlIpO87munedm3Gn6E9WWYdWrMuYLcoIoOEVDWSS8xSwtlPU+kA+MEQTP6Q1iI/ocusJg==} engines: {node: '>= 14'} dependencies: - '@intlify/core-base': 9.2.0 - '@intlify/shared': 9.2.0 + '@intlify/core-base': 9.2.2 + '@intlify/shared': 9.2.2 dev: false /@ioredis/commands/1.2.0: @@ -1342,42 +1350,12 @@ packages: resolution: {integrity: sha512-YBI/6o2EBz02tdEJRBK8xkt3zvOFOWlLBf7WKYGBsSYSRtjjgrqPe2skp6VLLmKx5WbHHDNcW+6oACaurxGzeA==} dev: true - /@nuxt/kit/3.0.0-rc.1: - resolution: {integrity: sha512-S2x0zdLYLZ4/2lMnS6emSmFPJszPJf70Y4/8gpmkPb4TArEjPNaOTCIz7tKpj/Upo71fv7cfuwYw/X0F2UAntg==} - engines: {node: ^14.16.0 || ^16.11.0 || ^17.0.0 || ^18.0.0} - dependencies: - '@nuxt/schema': 3.0.0-rc.6 - c12: 0.2.8 - consola: 2.15.3 - defu: 6.0.0 - globby: 13.1.2 - hash-sum: 2.0.0 - ignore: 5.2.0 - jiti: 1.14.0 - knitwork: 0.1.2 - lodash.template: 4.5.0 - mlly: 0.5.5 - pathe: 0.2.0 - pkg-types: 0.3.3 - scule: 0.2.1 - semver: 7.3.7 - unctx: 1.1.4 - unimport: 0.1.9 - untyped: 0.4.4 - transitivePeerDependencies: - - esbuild - - rollup - - supports-color - - vite - - webpack - dev: true - /@nuxt/kit/3.0.0-rc.6: resolution: {integrity: sha512-+lxSd6dSWlAzMXfGOPcY4856xnMF1Ck1rycFUZ+K2QYiDXphq/fiW2eMaWLVvqgPyL2Box2WzVDZJ6C5ceptcw==} engines: {node: ^14.16.0 || ^16.11.0 || ^17.0.0 || ^18.0.0} dependencies: '@nuxt/schema': 3.0.0-rc.6 - c12: 0.2.8 + c12: 0.2.9 consola: 2.15.3 defu: 6.0.0 globby: 13.1.2 @@ -1386,14 +1364,14 @@ packages: jiti: 1.14.0 knitwork: 0.1.2 lodash.template: 4.5.0 - mlly: 0.5.5 - pathe: 0.3.3 + mlly: 0.5.9 + pathe: 0.3.4 pkg-types: 0.3.3 scule: 0.2.1 semver: 7.3.7 - unctx: 1.1.4 + unctx: 1.2.0 unimport: 0.4.7 - untyped: 0.4.4 + untyped: 0.4.5 transitivePeerDependencies: - esbuild - rollup @@ -1402,12 +1380,12 @@ packages: - webpack dev: true - /@nuxt/kit/3.0.0-rc.6_jrvqukh3b5mfeoj65bpiacdnni: + /@nuxt/kit/3.0.0-rc.6_ttcr3qoj3dxtp3akggcf7hpseu: resolution: {integrity: sha512-+lxSd6dSWlAzMXfGOPcY4856xnMF1Ck1rycFUZ+K2QYiDXphq/fiW2eMaWLVvqgPyL2Box2WzVDZJ6C5ceptcw==} engines: {node: ^14.16.0 || ^16.11.0 || ^17.0.0 || ^18.0.0} dependencies: - '@nuxt/schema': 3.0.0-rc.6_jrvqukh3b5mfeoj65bpiacdnni - c12: 0.2.8 + '@nuxt/schema': 3.0.0-rc.6_ttcr3qoj3dxtp3akggcf7hpseu + c12: 0.2.9 consola: 2.15.3 defu: 6.0.0 globby: 13.1.2 @@ -1416,14 +1394,14 @@ packages: jiti: 1.14.0 knitwork: 0.1.2 lodash.template: 4.5.0 - mlly: 0.5.5 - pathe: 0.3.3 + mlly: 0.5.9 + pathe: 0.3.4 pkg-types: 0.3.3 scule: 0.2.1 semver: 7.3.7 - unctx: 1.1.4_jrvqukh3b5mfeoj65bpiacdnni - unimport: 0.4.7_jrvqukh3b5mfeoj65bpiacdnni - untyped: 0.4.4 + unctx: 1.2.0_ttcr3qoj3dxtp3akggcf7hpseu + unimport: 0.4.7_ttcr3qoj3dxtp3akggcf7hpseu + untyped: 0.4.5 transitivePeerDependencies: - esbuild - rollup @@ -1437,7 +1415,7 @@ packages: engines: {node: ^14.16.0 || ^16.11.0 || ^17.0.0 || ^18.0.0} dependencies: '@nuxt/schema': 3.0.0-rc.6_vite@2.9.14 - c12: 0.2.8 + c12: 0.2.9 consola: 2.15.3 defu: 6.0.0 globby: 13.1.2 @@ -1446,14 +1424,14 @@ packages: jiti: 1.14.0 knitwork: 0.1.2 lodash.template: 4.5.0 - mlly: 0.5.5 - pathe: 0.3.3 + mlly: 0.5.9 + pathe: 0.3.4 pkg-types: 0.3.3 scule: 0.2.1 semver: 7.3.7 - unctx: 1.1.4_vite@2.9.14 + unctx: 1.2.0_vite@2.9.14 unimport: 0.4.7_vite@2.9.14 - untyped: 0.4.4 + untyped: 0.4.5 transitivePeerDependencies: - esbuild - rollup @@ -1465,13 +1443,13 @@ packages: /@nuxt/postcss8/1.1.3: resolution: {integrity: sha512-CdHtErhvQwueNZPBOmlAAKrNCK7aIpZDYhtS7TzXlSgPHHox1g3cSlf+Ke9oB/8t4mNNjdB+prclme2ibuCOEA==} dependencies: - autoprefixer: 10.4.8_postcss@8.4.14 + autoprefixer: 10.4.8_postcss@8.4.16 css-loader: 5.2.7 defu: 3.2.2 - postcss: 8.4.14 - postcss-import: 13.0.0_postcss@8.4.14 - postcss-loader: 4.3.0_postcss@8.4.14 - postcss-url: 10.1.3_postcss@8.4.14 + postcss: 8.4.16 + postcss-import: 13.0.0_postcss@8.4.16 + postcss-loader: 4.3.0_postcss@8.4.16 + postcss-url: 10.1.3_postcss@8.4.16 semver: 7.3.7 transitivePeerDependencies: - webpack @@ -1481,11 +1459,11 @@ packages: resolution: {integrity: sha512-BcD5YtWRhn+jU2DlzuI1TeITFeOt5x6qm2KeaU/d5jzJ0oZDzmZwKsAimLtRbHwyU6/kKa+zFbK6pp5obm1XLg==} engines: {node: ^14.16.0 || ^16.11.0 || ^17.0.0 || ^18.0.0} dependencies: - c12: 0.2.8 + c12: 0.2.9 create-require: 1.1.1 defu: 6.0.0 jiti: 1.14.0 - pathe: 0.3.3 + pathe: 0.3.4 postcss-import-resolver: 2.0.0 scule: 0.2.1 std-env: 3.1.1 @@ -1498,20 +1476,20 @@ packages: - webpack dev: true - /@nuxt/schema/3.0.0-rc.6_jrvqukh3b5mfeoj65bpiacdnni: + /@nuxt/schema/3.0.0-rc.6_ttcr3qoj3dxtp3akggcf7hpseu: resolution: {integrity: sha512-BcD5YtWRhn+jU2DlzuI1TeITFeOt5x6qm2KeaU/d5jzJ0oZDzmZwKsAimLtRbHwyU6/kKa+zFbK6pp5obm1XLg==} engines: {node: ^14.16.0 || ^16.11.0 || ^17.0.0 || ^18.0.0} dependencies: - c12: 0.2.8 + c12: 0.2.9 create-require: 1.1.1 defu: 6.0.0 jiti: 1.14.0 - pathe: 0.3.3 + pathe: 0.3.4 postcss-import-resolver: 2.0.0 scule: 0.2.1 std-env: 3.1.1 ufo: 0.8.5 - unimport: 0.4.7_jrvqukh3b5mfeoj65bpiacdnni + unimport: 0.4.7_ttcr3qoj3dxtp3akggcf7hpseu transitivePeerDependencies: - esbuild - rollup @@ -1523,11 +1501,11 @@ packages: resolution: {integrity: sha512-BcD5YtWRhn+jU2DlzuI1TeITFeOt5x6qm2KeaU/d5jzJ0oZDzmZwKsAimLtRbHwyU6/kKa+zFbK6pp5obm1XLg==} engines: {node: ^14.16.0 || ^16.11.0 || ^17.0.0 || ^18.0.0} dependencies: - c12: 0.2.8 + c12: 0.2.9 create-require: 1.1.1 defu: 6.0.0 jiti: 1.14.0 - pathe: 0.3.3 + pathe: 0.3.4 postcss-import-resolver: 2.0.0 scule: 0.2.1 std-env: 3.1.1 @@ -1539,11 +1517,11 @@ packages: - vite - webpack - /@nuxt/telemetry/2.1.3: - resolution: {integrity: sha512-k8wP3D17di27/loe35GZEqXyabG/045tFD1CipmG9MOnZdwf6WeL+gFEXzIaDeDFVLmbI1bnddOk+RutxeIjVA==} + /@nuxt/telemetry/2.1.4: + resolution: {integrity: sha512-Yq/WJiuRbQOWWZe9aCsGts2hAjr0r6io3LT23ULzcUod4U6pBQWk3XhSLMWrjRpkvPqSe6oqDVv0WhdSKaFI8g==} hasBin: true dependencies: - '@nuxt/kit': 3.0.0-rc.1 + '@nuxt/kit': 3.0.0-rc.6 chalk: 5.0.1 ci-info: 3.3.2 consola: 2.15.3 @@ -1552,12 +1530,12 @@ packages: destr: 1.1.1 dotenv: 16.0.1 fs-extra: 10.1.0 - git-url-parse: 11.6.0 - inquirer: 8.2.4 + git-url-parse: 12.0.0 + inquirer: 9.1.0 is-docker: 3.0.0 jiti: 1.14.0 mri: 1.2.0 - nanoid: 3.3.4 + nanoid: 4.0.0 node-fetch: 3.2.10 ohmyfetch: 0.4.18 parse-git-config: 3.0.0 @@ -1584,34 +1562,34 @@ packages: vue: optional: true dependencies: - '@nuxt/kit': 3.0.0-rc.6_jrvqukh3b5mfeoj65bpiacdnni + '@nuxt/kit': 3.0.0-rc.6_ttcr3qoj3dxtp3akggcf7hpseu '@rollup/plugin-replace': 4.0.0_rollup@2.77.2 '@vitejs/plugin-vue': 2.3.3_vite@2.9.14+vue@3.2.37 '@vitejs/plugin-vue-jsx': 1.3.10 - autoprefixer: 10.4.8_postcss@8.4.14 + autoprefixer: 10.4.8_postcss@8.4.16 chokidar: 3.5.3 - cssnano: 5.1.12_postcss@8.4.14 + cssnano: 5.1.12_postcss@8.4.16 defu: 6.0.0 - esbuild: 0.14.51 + esbuild: 0.14.54 escape-string-regexp: 5.0.0 estree-walker: 3.0.1 externality: 0.2.2 fs-extra: 10.1.0 - get-port-please: 2.5.0 - h3: 0.7.13 + get-port-please: 2.6.1 + h3: 0.7.15 knitwork: 0.1.2 magic-string: 0.26.2 - mlly: 0.5.5 - ohash: 0.1.4 - pathe: 0.3.3 + mlly: 0.5.9 + ohash: 0.1.5 + pathe: 0.3.4 perfect-debounce: 0.1.3 - postcss: 8.4.14 - postcss-import: 14.1.0_postcss@8.4.14 - postcss-url: 10.1.3_postcss@8.4.14 + postcss: 8.4.16 + postcss-import: 14.1.0_postcss@8.4.16 + postcss-url: 10.1.3_postcss@8.4.16 rollup: 2.77.2 rollup-plugin-visualizer: 5.7.1_rollup@2.77.2 ufo: 0.8.5 - unplugin: 0.7.2_jrvqukh3b5mfeoj65bpiacdnni + unplugin: 0.7.2_ttcr3qoj3dxtp3akggcf7hpseu vite: 2.9.14 vite-node: 0.18.1 vite-plugin-checker: 0.4.9_vite@2.9.14 @@ -1630,16 +1608,16 @@ packages: '@nuxt/kit': 3.0.0-rc.6 '@nuxt/postcss8': 1.1.3 '@types/tailwindcss': 3.1.0 - autoprefixer: 10.4.8_postcss@8.4.14 + autoprefixer: 10.4.8_postcss@8.4.16 chalk: 5.0.1 clear-module: 4.1.2 consola: 2.15.3 defu: 6.0.0 - postcss: 8.4.14 - postcss-custom-properties: 12.1.8_postcss@8.4.14 - postcss-nesting: 10.1.10_postcss@8.4.14 - tailwind-config-viewer: 1.7.1_tailwindcss@3.1.7 - tailwindcss: 3.1.7 + postcss: 8.4.16 + postcss-custom-properties: 12.1.8_postcss@8.4.16 + postcss-nesting: 10.1.10_postcss@8.4.16 + tailwind-config-viewer: 1.7.1_tailwindcss@3.1.8 + tailwindcss: 3.1.8 ufo: 0.8.5 transitivePeerDependencies: - esbuild @@ -1662,7 +1640,7 @@ packages: lodash: 4.17.21 open: 7.4.2 pathe: 0.2.0 - portfinder: 1.0.28 + portfinder: 1.0.29 sade: 1.8.1 transitivePeerDependencies: - bufferutil @@ -1757,8 +1735,8 @@ packages: fast-glob: 3.2.11 fs-extra: 10.1.0 graphql: 15.8.0 - graphql-ws: 5.9.1_graphql@15.8.0 - launch-editor: 2.4.0 + graphql-ws: 5.10.0_graphql@15.8.0 + launch-editor: 2.5.0 nanoid: 3.3.4 nexus: 1.3.0_graphql@15.8.0 object-inspect: 1.12.2 @@ -1807,8 +1785,8 @@ packages: pathe: 0.2.0 dev: true - /@percy/sdk-utils/1.7.2: - resolution: {integrity: sha512-jvh9wcyAbVxOUElJ7966AC8eI8pfCoggIe/9Avl5UfMLA6bbOS++EYR4iWkpgdcAQABTyFJnuOvQc95foEFJog==} + /@percy/sdk-utils/1.8.1: + resolution: {integrity: sha512-2rgUAynNM8Ab2u103om3oCnDWB4cc19ZHVPOyiFH8Ch5HRVlRp6zGgkdCm6GHgeTGmE1fEQXYbQVo2MVfr6v4g==} engines: {node: '>=14'} dev: false @@ -1898,8 +1876,8 @@ packages: slash: 3.0.0 dev: true - /@rollup/plugin-commonjs/22.0.1_rollup@2.77.2: - resolution: {integrity: sha512-dGfEZvdjDHObBiP5IvwTKMVeq/tBZGMBHZFMdIV1ClMM/YoWS34xrHFGfag9SN2ZtMgNZRFruqvxZQEa70O6nQ==} + /@rollup/plugin-commonjs/22.0.2_rollup@2.77.2: + resolution: {integrity: sha512-//NdP6iIwPbMTcazYsiBMbJW7gfmpHom33u1beiIoHDEM0Q9clvtQB1T0efvMqHeKsGohiHo97BCPCkBXdscwg==} engines: {node: '>= 12.0.0'} peerDependencies: rollup: ^2.68.0 @@ -2025,7 +2003,7 @@ packages: resolution: {integrity: sha512-sXXKG+uL9IrKqViTtao2Ws6dy0znu9sOaP1di/jKGW1M6VssO8vlpXCQcpZ+jisQ1tTFAC5Jo/EOzFbggBagFQ==} dev: true - /@tailwindcss/typography/0.5.4_tailwindcss@3.1.7: + /@tailwindcss/typography/0.5.4_tailwindcss@3.1.8: resolution: {integrity: sha512-QEdg40EmGvE7kKoDei8zr5sf4D1pIayHj4R31bH3lX8x2BtTiR+jNejYPOkhbmy3DXgkMF9jC8xqNiGFAuL9Sg==} peerDependencies: tailwindcss: '>=3.0.0 || insiders' @@ -2033,7 +2011,7 @@ packages: lodash.castarray: 4.4.0 lodash.isplainobject: 4.0.6 lodash.merge: 4.6.2 - tailwindcss: 3.1.7 + tailwindcss: 3.1.8 dev: true /@trysound/sax/0.2.0: @@ -2181,12 +2159,12 @@ packages: '@types/istanbul-lib-report': 3.0.0 dev: true - /@types/jsdom/16.2.15: - resolution: {integrity: sha512-nwF87yjBKuX/roqGYerZZM0Nv1pZDMAT5YhOHYeM/72Fic+VEqJh4nyoqoapzJnW3pUlfxPY5FhgsJtM+dRnQQ==} + /@types/jsdom/20.0.0: + resolution: {integrity: sha512-YfAchFs0yM1QPDrLm2VHe+WHGtqms3NXnXAMolrgrVP6fgBHHXy1ozAbo/dFtPNtZC/m66bPiCTWYmqp1F14gA==} dependencies: - '@types/node': 18.6.3 - '@types/parse5': 6.0.3 + '@types/node': 18.7.0 '@types/tough-cookie': 4.0.2 + parse5: 7.0.0 dev: true /@types/json-schema/7.0.11: @@ -2245,8 +2223,8 @@ packages: '@types/braces': 3.0.1 dev: true - /@types/mime/3.0.0: - resolution: {integrity: sha512-fccbsHKqFDXClBZTDLA43zl0+TbxyIwyzIzwwhvoJvhNjOErCdeX2xJbURimv2EbSVUGav001PaCJg4mZxMl4w==} + /@types/mime/3.0.1: + resolution: {integrity: sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==} dev: true /@types/minimist/1.2.2: @@ -2262,8 +2240,8 @@ packages: /@types/node/17.0.45: resolution: {integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==} - /@types/node/18.6.3: - resolution: {integrity: sha512-6qKpDtoaYLM+5+AFChLhHermMQxc3TOEFIDzrZLPRGHPrLEwqFkkT5Kx3ju05g6X7uDPazz3jHbKPX0KzCjntg==} + /@types/node/18.7.0: + resolution: {integrity: sha512-MbHwEQaMKgcSQE3vFHUvxiN0+k3VpwCbnYCUigQWoKZzdIk2u7ecoCk5Vzb4lwBbKhLd2rCOUUDT35TaONs7Jw==} dev: true /@types/node/8.10.66: @@ -2277,10 +2255,6 @@ packages: resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==} dev: true - /@types/parse5/6.0.3: - resolution: {integrity: sha512-SuT16Q1K51EAVPz1K29DJ/sXjhSQ0zjvsypYJ6tlwVsRV9jwW5Adq2ch8Dq8kDBCkYnELS7N7VNCSB5nC56t/g==} - dev: true - /@types/qs/6.9.7: resolution: {integrity: sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==} @@ -2291,13 +2265,13 @@ packages: /@types/resolve/1.17.1: resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==} dependencies: - '@types/node': 18.6.3 + '@types/node': 18.7.0 dev: true /@types/serve-static/1.15.0: resolution: {integrity: sha512-z5xyF6uh8CbjAu9760KDKsH2FcDxZ2tFCsA4HIMWE6IkiYMXfVoa+4f9KX+FN0ZLsaMw1WNG2ETLA6N+/YA+cg==} dependencies: - '@types/mime': 3.0.0 + '@types/mime': 3.0.1 '@types/node': 17.0.45 dev: true @@ -2327,7 +2301,7 @@ packages: resolution: {integrity: sha512-JxPzrm609hzvF4nmOI3StLjbBEP3WWQxDDJESqR1nh94h7gyyy3XSl0hn5RBMJ9mPudlLjtaXs5YEBtLw7CnPA==} deprecated: This is a stub types definition. tailwindcss provides its own type definitions, so you do not need this installed. dependencies: - tailwindcss: 3.1.7 + tailwindcss: 3.1.8 transitivePeerDependencies: - ts-node dev: true @@ -2363,8 +2337,8 @@ packages: '@types/node': 14.18.23 optional: true - /@typescript-eslint/eslint-plugin/5.32.0_iosr3hrei2tubxveewluhu5lhy: - resolution: {integrity: sha512-CHLuz5Uz7bHP2WgVlvoZGhf0BvFakBJKAD/43Ty0emn4wXWv5k01ND0C0fHcl/Im8Td2y/7h44E9pca9qAu2ew==} + /@typescript-eslint/eslint-plugin/5.33.0_njno5y7ry2l2lcmiu4tywxkwnq: + resolution: {integrity: sha512-jHvZNSW2WZ31OPJ3enhLrEKvAZNyAFWZ6rx9tUwaessTc4sx9KmgMNhVcqVAl1ETnT5rU5fpXTLmY9YvC1DCNg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: '@typescript-eslint/parser': ^5.0.0 @@ -2376,10 +2350,10 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/parser': 5.32.0_qugx7qdu5zevzvxaiqyxfiwquq - '@typescript-eslint/scope-manager': 5.32.0 - '@typescript-eslint/type-utils': 5.32.0_qugx7qdu5zevzvxaiqyxfiwquq - '@typescript-eslint/utils': 5.32.0_qugx7qdu5zevzvxaiqyxfiwquq + '@typescript-eslint/parser': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq + '@typescript-eslint/scope-manager': 5.33.0 + '@typescript-eslint/type-utils': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq + '@typescript-eslint/utils': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq debug: 4.3.4 eslint: 8.21.0 functional-red-black-tree: 1.0.1 @@ -2392,8 +2366,8 @@ packages: - supports-color dev: true - /@typescript-eslint/parser/5.32.0_qugx7qdu5zevzvxaiqyxfiwquq: - resolution: {integrity: sha512-IxRtsehdGV9GFQ35IGm5oKKR2OGcazUoiNBxhRV160iF9FoyuXxjY+rIqs1gfnd+4eL98OjeGnMpE7RF/NBb3A==} + /@typescript-eslint/parser/5.33.0_qugx7qdu5zevzvxaiqyxfiwquq: + resolution: {integrity: sha512-cgM5cJrWmrDV2KpvlcSkelTBASAs1mgqq+IUGKJvFxWrapHpaRy5EXPQz9YaKF3nZ8KY18ILTiVpUtbIac86/w==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: '*' @@ -2404,9 +2378,9 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/scope-manager': 5.32.0 - '@typescript-eslint/types': 5.32.0 - '@typescript-eslint/typescript-estree': 5.32.0_typescript@4.7.4 + '@typescript-eslint/scope-manager': 5.33.0 + '@typescript-eslint/types': 5.33.0 + '@typescript-eslint/typescript-estree': 5.33.0_typescript@4.7.4 debug: 4.3.4 eslint: 8.21.0 typescript: 4.7.4 @@ -2414,16 +2388,16 @@ packages: - supports-color dev: true - /@typescript-eslint/scope-manager/5.32.0: - resolution: {integrity: sha512-KyAE+tUON0D7tNz92p1uetRqVJiiAkeluvwvZOqBmW9z2XApmk5WSMV9FrzOroAcVxJZB3GfUwVKr98Dr/OjOg==} + /@typescript-eslint/scope-manager/5.33.0: + resolution: {integrity: sha512-/Jta8yMNpXYpRDl8EwF/M8It2A9sFJTubDo0ATZefGXmOqlaBffEw0ZbkbQ7TNDK6q55NPHFshGBPAZvZkE8Pw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - '@typescript-eslint/types': 5.32.0 - '@typescript-eslint/visitor-keys': 5.32.0 + '@typescript-eslint/types': 5.33.0 + '@typescript-eslint/visitor-keys': 5.33.0 dev: true - /@typescript-eslint/type-utils/5.32.0_qugx7qdu5zevzvxaiqyxfiwquq: - resolution: {integrity: sha512-0gSsIhFDduBz3QcHJIp3qRCvVYbqzHg8D6bHFsDMrm0rURYDj+skBK2zmYebdCp+4nrd9VWd13egvhYFJj/wZg==} + /@typescript-eslint/type-utils/5.33.0_qugx7qdu5zevzvxaiqyxfiwquq: + resolution: {integrity: sha512-2zB8uEn7hEH2pBeyk3NpzX1p3lF9dKrEbnXq1F7YkpZ6hlyqb2yZujqgRGqXgRBTHWIUG3NGx/WeZk224UKlIA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: '*' @@ -2434,7 +2408,7 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/utils': 5.32.0_qugx7qdu5zevzvxaiqyxfiwquq + '@typescript-eslint/utils': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq debug: 4.3.4 eslint: 8.21.0 tsutils: 3.21.0_typescript@4.7.4 @@ -2443,13 +2417,13 @@ packages: - supports-color dev: true - /@typescript-eslint/types/5.32.0: - resolution: {integrity: sha512-EBUKs68DOcT/EjGfzywp+f8wG9Zw6gj6BjWu7KV/IYllqKJFPlZlLSYw/PTvVyiRw50t6wVbgv4p9uE2h6sZrQ==} + /@typescript-eslint/types/5.33.0: + resolution: {integrity: sha512-nIMt96JngB4MYFYXpZ/3ZNU4GWPNdBbcB5w2rDOCpXOVUkhtNlG2mmm8uXhubhidRZdwMaMBap7Uk8SZMU/ppw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /@typescript-eslint/typescript-estree/5.32.0_typescript@4.7.4: - resolution: {integrity: sha512-ZVAUkvPk3ITGtCLU5J4atCw9RTxK+SRc6hXqLtllC2sGSeMFWN+YwbiJR9CFrSFJ3w4SJfcWtDwNb/DmUIHdhg==} + /@typescript-eslint/typescript-estree/5.33.0_typescript@4.7.4: + resolution: {integrity: sha512-tqq3MRLlggkJKJUrzM6wltk8NckKyyorCSGMq4eVkyL5sDYzJJcMgZATqmF8fLdsWrW7OjjIZ1m9v81vKcaqwQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: typescript: '*' @@ -2457,8 +2431,8 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/types': 5.32.0 - '@typescript-eslint/visitor-keys': 5.32.0 + '@typescript-eslint/types': 5.33.0 + '@typescript-eslint/visitor-keys': 5.33.0 debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 @@ -2469,8 +2443,8 @@ packages: - supports-color dev: true - /@typescript-eslint/utils/5.32.0_qugx7qdu5zevzvxaiqyxfiwquq: - resolution: {integrity: sha512-W7lYIAI5Zlc5K082dGR27Fczjb3Q57ECcXefKU/f0ajM5ToM0P+N9NmJWip8GmGu/g6QISNT+K6KYB+iSHjXCQ==} + /@typescript-eslint/utils/5.33.0_qugx7qdu5zevzvxaiqyxfiwquq: + resolution: {integrity: sha512-JxOAnXt9oZjXLIiXb5ZIcZXiwVHCkqZgof0O8KPgz7C7y0HS42gi75PdPlqh1Tf109M0fyUw45Ao6JLo7S5AHw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: '*' @@ -2479,9 +2453,9 @@ packages: optional: true dependencies: '@types/json-schema': 7.0.11 - '@typescript-eslint/scope-manager': 5.32.0 - '@typescript-eslint/types': 5.32.0 - '@typescript-eslint/typescript-estree': 5.32.0_typescript@4.7.4 + '@typescript-eslint/scope-manager': 5.33.0 + '@typescript-eslint/types': 5.33.0 + '@typescript-eslint/typescript-estree': 5.33.0_typescript@4.7.4 eslint: 8.21.0 eslint-scope: 5.1.1 eslint-utils: 3.0.0_eslint@8.21.0 @@ -2490,20 +2464,21 @@ packages: - typescript dev: true - /@typescript-eslint/visitor-keys/5.32.0: - resolution: {integrity: sha512-S54xOHZgfThiZ38/ZGTgB2rqx51CMJ5MCfVT2IplK4Q7hgzGfe0nLzLCcenDnc/cSjP568hdeKfeDcBgqNHD/g==} + /@typescript-eslint/visitor-keys/5.33.0: + resolution: {integrity: sha512-/XsqCzD4t+Y9p5wd9HZiptuGKBlaZO5showwqODii5C0nZawxWLF+Q6k5wYHBrQv96h6GYKyqqMHCSTqta8Kiw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - '@typescript-eslint/types': 5.32.0 + '@typescript-eslint/types': 5.33.0 eslint-visitor-keys: 3.3.0 dev: true - /@vercel/nft/0.20.1: - resolution: {integrity: sha512-hSLcr64KHOkcNiTAlv154K4p4faEFBwYIi2eIgu1QCDhB1qyQYvFuEhtw3eaapNjA4/7x/2jcclfCAjILua/ag==} + /@vercel/nft/0.21.0: + resolution: {integrity: sha512-hFCAETfI5cG8l5iAiLhMC2bReC5K7SIybzrxGorv+eGspIbIFsVw7Vg85GovXm/LxA08pIDrAlrhR6GN36XB/Q==} hasBin: true dependencies: '@mapbox/node-pre-gyp': 1.0.9 acorn: 8.8.0 + async-sema: 3.1.1 bindings: 1.5.0 estree-walker: 2.0.2 glob: 7.2.3 @@ -2523,7 +2498,7 @@ packages: dependencies: '@babel/core': 7.18.10 '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.18.10 - '@babel/plugin-transform-typescript': 7.18.10_@babel+core@7.18.10 + '@babel/plugin-transform-typescript': 7.18.12_@babel+core@7.18.10 '@rollup/pluginutils': 4.2.1 '@vue/babel-plugin-jsx': 1.1.1_@babel+core@7.18.10 hash-sum: 2.0.0 @@ -2535,7 +2510,7 @@ packages: resolution: {integrity: sha512-SmQLDyhz+6lGJhPELsBdzXGc+AcaT8stgkbiTFGpXPe8Tl1tJaBw1A6pxDqDuRsVkD8uscrkx3hA7QDOoKYtyw==} engines: {node: '>=12.0.0'} peerDependencies: - vite: ^2.5.10 + vite: ^2.5.10 || ^2.9.0 || ^3.0.0 vue: '*' peerDependenciesMeta: vue: @@ -2548,7 +2523,7 @@ packages: resolution: {integrity: sha512-SmQLDyhz+6lGJhPELsBdzXGc+AcaT8stgkbiTFGpXPe8Tl1tJaBw1A6pxDqDuRsVkD8uscrkx3hA7QDOoKYtyw==} engines: {node: '>=12.0.0'} peerDependencies: - vite: ^2.5.10 + vite: ^2.5.10 || ^2.9.0 || ^3.0.0 vue: '*' peerDependenciesMeta: vue: @@ -2558,17 +2533,31 @@ packages: vue: 3.2.37 dev: true - /@vitejs/plugin-vue2/1.1.2_vite@2.9.14+vue@2.7.8: + /@vitejs/plugin-vue/3.0.1_vite@3.0.5+vue@3.2.37: + resolution: {integrity: sha512-Ll9JgxG7ONIz/XZv3dssfoMUDu9qAnlJ+km+pBA0teYSXzwPCIzS/e1bmwNYl5dcQGs677D21amgfYAnzMl17A==} + engines: {node: ^14.18.0 || >=16.0.0} + peerDependencies: + vite: ^3.0.0 || ^2.9.0 + vue: '*' + peerDependenciesMeta: + vue: + optional: true + dependencies: + vite: 3.0.5_sass@1.54.4 + vue: 3.2.37 + dev: true + + /@vitejs/plugin-vue2/1.1.2_vite@3.0.5+vue@2.7.8: resolution: {integrity: sha512-y6OEA+2UdJ0xrEQHodq20v9r3SpS62IOHrgN92JPLvVpNkhcissu7yvD5PXMzMESyazj0XNWGsc8UQk8+mVrjQ==} engines: {node: '>=14.6.0'} peerDependencies: - vite: '>=2.5.10' + vite: '>=2.5.10 || ^2.9.0 || ^3.0.0' vue: '*' peerDependenciesMeta: vue: optional: true dependencies: - vite: 2.9.14 + vite: 3.0.5 vue: 2.7.8 dev: true @@ -2612,7 +2601,7 @@ packages: '@babel/helper-module-imports': 7.18.6 '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.18.10 '@babel/template': 7.18.10 - '@babel/traverse': 7.18.10 + '@babel/traverse': 7.18.11 '@babel/types': 7.18.10 '@vue/babel-helper-vue-transform-on': 1.0.2 camelcase: 6.3.0 @@ -2626,7 +2615,7 @@ packages: /@vue/compiler-core/3.2.37: resolution: {integrity: sha512-81KhEjo7YAOh0vQJoSmAD68wLfYqJvoiD4ulyedzF+OEk/bk6/hx3fTNVfuzugIIaTrOx4PGx6pAiBRe5e9Zmg==} dependencies: - '@babel/parser': 7.18.10 + '@babel/parser': 7.18.11 '@vue/shared': 3.2.37 estree-walker: 2.0.2 source-map: 0.6.1 @@ -2640,14 +2629,14 @@ packages: /@vue/compiler-sfc/2.7.8: resolution: {integrity: sha512-2DK4YWKfgLnW9VDR9gnju1gcYRk3flKj8UNsms7fsRmFcg35slVTZEkqwBtX+wJBXaamFfn6NxSsZh3h12Ix/Q==} dependencies: - '@babel/parser': 7.18.10 - postcss: 8.4.14 + '@babel/parser': 7.18.11 + postcss: 8.4.16 source-map: 0.6.1 /@vue/compiler-sfc/3.2.37: resolution: {integrity: sha512-+7i/2+9LYlpqDv+KTtWhOZH+pa8/HnX/905MdVmAcI/mPQOBwkHHIzrsEsucyOIZQYMkXUiTkmZq5am/NyXKkg==} dependencies: - '@babel/parser': 7.18.10 + '@babel/parser': 7.18.11 '@vue/compiler-core': 3.2.37 '@vue/compiler-dom': 3.2.37 '@vue/compiler-ssr': 3.2.37 @@ -2655,7 +2644,7 @@ packages: '@vue/shared': 3.2.37 estree-walker: 2.0.2 magic-string: 0.25.9 - postcss: 8.4.14 + postcss: 8.4.16 source-map: 0.6.1 /@vue/compiler-ssr/3.2.37: @@ -2686,7 +2675,7 @@ packages: eslint-config-standard: 16.0.3_ajhs5bkv6wqipo3f2ni5vugdai eslint-import-resolver-node: 0.3.6 eslint-import-resolver-webpack: 0.13.2_fkfqfehjtk7sk2efaqbgxsuasa - eslint-plugin-import: 2.26.0_wuikv5nqgdfyng42xxm7lklfmi + eslint-plugin-import: 2.26.0_qfqnhzzittf54udqwes54xx65q eslint-plugin-node: 11.1.0_eslint@8.21.0 eslint-plugin-promise: 6.0.0_eslint@8.21.0 eslint-plugin-vue: 9.3.0_eslint@8.21.0 @@ -2708,8 +2697,8 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/eslint-plugin': 5.32.0_iosr3hrei2tubxveewluhu5lhy - '@typescript-eslint/parser': 5.32.0_qugx7qdu5zevzvxaiqyxfiwquq + '@typescript-eslint/eslint-plugin': 5.33.0_njno5y7ry2l2lcmiu4tywxkwnq + '@typescript-eslint/parser': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq eslint: 8.21.0 eslint-plugin-vue: 9.3.0_eslint@8.21.0 typescript: 4.7.4 @@ -2721,7 +2710,7 @@ packages: /@vue/reactivity-transform/3.2.37: resolution: {integrity: sha512-IWopkKEb+8qpu/1eMKVeXrK0NLw9HicGviJzhJDEyfxTR9e1WtpnnbYkJWurX6WwoFP0sz10xQg8yL8lgskAZg==} dependencies: - '@babel/parser': 7.18.10 + '@babel/parser': 7.18.11 '@vue/compiler-core': 3.2.37 '@vue/shared': 3.2.37 estree-walker: 2.0.2 @@ -2771,7 +2760,7 @@ packages: vue: 3.2.37 dev: true - /@vuetify/loader-shared/1.5.1_ylgjwudkmhgthethgkia536rpe: + /@vuetify/loader-shared/1.5.1_xibtw6s7xpwwzfuav4hvamgch4: resolution: {integrity: sha512-3Y1+v1DAi+kr2XRnTo5/o+SRPqrfBV0X0HoGtUUS2BVHKwXoj7cxOBE4zg6rWw7x+mBzDbgcum0zOj9HMx+LJQ==} peerDependencies: vue: '*' @@ -2783,7 +2772,7 @@ packages: find-cache-dir: 3.3.2 upath: 2.0.1 vue: 3.2.37 - vuetify: 3.0.0-beta.6_6ie63ee4j7wvfql6o5tlbbu2pe + vuetify: 3.0.0-beta.7_6ie63ee4j7wvfql6o5tlbbu2pe /@vueuse/core/8.9.4: resolution: {integrity: sha512-B/Mdj9TK1peFyWaPof+Zf/mP9XuGAngaJZBwPaXBvU3aCTZlx3ltlrFFFyMV4iGBwsjSCeUCgZrtkEj9dS2Y3Q==} @@ -2799,7 +2788,7 @@ packages: '@types/web-bluetooth': 0.0.14 '@vueuse/metadata': 8.9.4 '@vueuse/shared': 8.9.4 - vue-demi: 0.13.6 + vue-demi: 0.13.7 dev: true /@vueuse/core/8.9.4_vue@3.2.37: @@ -2817,7 +2806,7 @@ packages: '@vueuse/metadata': 8.9.4 '@vueuse/shared': 8.9.4_vue@3.2.37 vue: 3.2.37 - vue-demi: 0.13.6_vue@3.2.37 + vue-demi: 0.13.7_vue@3.2.37 dev: true /@vueuse/head/0.7.9_vue@3.2.37: @@ -2846,7 +2835,7 @@ packages: vue: optional: true dependencies: - vue-demi: 0.13.6 + vue-demi: 0.13.7 dev: true /@vueuse/shared/8.9.4_vue@3.2.37: @@ -2861,7 +2850,7 @@ packages: optional: true dependencies: vue: 3.2.37 - vue-demi: 0.13.6_vue@3.2.37 + vue-demi: 0.13.7_vue@3.2.37 dev: true /@wry/equality/0.1.11: @@ -2959,15 +2948,6 @@ packages: uri-js: 4.4.1 dev: true - /ajv/8.11.0: - resolution: {integrity: sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==} - dependencies: - fast-deep-equal: 3.1.3 - json-schema-traverse: 1.0.0 - require-from-string: 2.0.2 - uri-js: 4.4.1 - dev: true - /algoliasearch/4.14.2: resolution: {integrity: sha512-ngbEQonGEmf8dyEh5f+uOIihv4176dgbuOZspiuhmTTBRBuzWu3KCGHre6uHj5YyuC7pNvQGzB6ZNJyZi0z+Sg==} dependencies: @@ -2999,11 +2979,23 @@ packages: type-fest: 0.21.3 dev: true + /ansi-escapes/5.0.0: + resolution: {integrity: sha512-5GFMVX8HqE/TB+FuBJGuO5XG0WrsA6ptUqoODaT/n9mmUaZFkqnBueB4leqGBCmrUHnCnC4PCZTCd0E7QQ83bA==} + engines: {node: '>=12'} + dependencies: + type-fest: 1.4.0 + dev: true + /ansi-regex/5.0.1: resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} engines: {node: '>=8'} dev: true + /ansi-regex/6.0.1: + resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} + engines: {node: '>=12'} + dev: true + /ansi-styles/3.2.1: resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} engines: {node: '>=4'} @@ -3022,6 +3014,11 @@ packages: engines: {node: '>=10'} dev: true + /ansi-styles/6.1.0: + resolution: {integrity: sha512-VbqNsoz55SYGczauuup0MFUyXNQviSpFTj1RQtFzmQLk18qbVSpTFFGMT293rmDaQuKCT6InmbuEyUne4mTuxQ==} + engines: {node: '>=12'} + dev: true + /ansi_up/5.1.0: resolution: {integrity: sha512-3wwu+nJCKBVBwOCurm0uv91lMoVkhFB+3qZQz3U11AmAdDJ4tkw1sNPWJQcVxMVYwe0pGEALOjSBOxdxNc+pNQ==} dev: true @@ -3365,6 +3362,10 @@ packages: retry: 0.13.1 dev: true + /async-sema/3.1.1: + resolution: {integrity: sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==} + dev: true + /async/2.6.4: resolution: {integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==} dependencies: @@ -3383,7 +3384,7 @@ packages: engines: {node: '>= 4.0.0'} dev: true - /autoprefixer/10.4.8_postcss@8.4.14: + /autoprefixer/10.4.8_postcss@8.4.16: resolution: {integrity: sha512-75Jr6Q/XpTqEf6D2ltS5uMewJIx5irCU1oBYJrWjFenq/m12WRRrz6g15L1EIoYvPLXTbEry7rDOwrcYNj77xw==} engines: {node: ^10 || ^12 || >=14} hasBin: true @@ -3391,11 +3392,11 @@ packages: postcss: ^8.1.0 dependencies: browserslist: 4.21.3 - caniuse-lite: 1.0.30001373 + caniuse-lite: 1.0.30001375 fraction.js: 4.2.0 normalize-range: 0.1.2 picocolors: 1.0.0 - postcss: 8.4.14 + postcss: 8.4.16 postcss-value-parser: 4.2.0 dev: true @@ -3461,6 +3462,14 @@ packages: inherits: 2.0.4 readable-stream: 3.6.0 + /bl/5.0.0: + resolution: {integrity: sha512-8vxFNZ0pflFfi0WXA3WQXlj6CaMEwsmh63I1CNp0q+wWv8sD0ARx1KovSQd0l2GkwrMIOyedq0EF1FxI+RCZLQ==} + dependencies: + buffer: 6.0.3 + inherits: 2.0.4 + readable-stream: 3.6.0 + dev: true + /blob-util/2.0.2: resolution: {integrity: sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ==} dev: true @@ -3520,8 +3529,8 @@ packages: engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001373 - electron-to-chromium: 1.4.208 + caniuse-lite: 1.0.30001375 + electron-to-chromium: 1.4.213 node-releases: 2.0.6 update-browserslist-db: 1.0.5_browserslist@4.21.3 @@ -3537,6 +3546,13 @@ packages: base64-js: 1.5.1 ieee754: 1.2.1 + /buffer/6.0.3: + resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==} + dependencies: + base64-js: 1.5.1 + ieee754: 1.2.1 + dev: true + /builtin-modules/3.3.0: resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==} engines: {node: '>=6'} @@ -3560,15 +3576,15 @@ packages: engines: {node: '>= 0.8'} dev: true - /c12/0.2.8: - resolution: {integrity: sha512-JomSyVwGnqndRdVVW6SGnHUeHIfJFQNe/4zPFK6zLKPQm8US+hNr4kZP7xeNnzjn3jnQUsBbPdT85fm8K5Pr4A==} + /c12/0.2.9: + resolution: {integrity: sha512-6jYdexgAKr+3kYoTmvC5eDtDHUg7GmFQSdeQqZzAKiPlFAN1heGUoXDbAYYwUCfefZy+WgVJbmAej5TTQpp3jA==} dependencies: defu: 6.0.0 dotenv: 16.0.1 gittar: 0.1.1 jiti: 1.14.0 - mlly: 0.5.5 - pathe: 0.3.3 + mlly: 0.5.9 + pathe: 0.3.4 rc9: 1.2.2 /c8/7.12.0: @@ -3642,13 +3658,13 @@ packages: resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==} dependencies: browserslist: 4.21.3 - caniuse-lite: 1.0.30001373 + caniuse-lite: 1.0.30001375 lodash.memoize: 4.1.2 lodash.uniq: 4.5.0 dev: true - /caniuse-lite/1.0.30001373: - resolution: {integrity: sha512-pJYArGHrPp3TUqQzFYRmP/lwJlj8RCbVe3Gd3eJQkAV8SAC6b19XS9BjMvRdvaS8RMkaTN8ZhoHP6S1y8zzwEQ==} + /caniuse-lite/1.0.30001375: + resolution: {integrity: sha512-kWIMkNzLYxSvnjy0hL8w1NOaWNr2rn39RTAVyIwcw8juu60bZDWiF1/loOYANzjtJmy6qPgNmn38ro5Pygagdw==} /capture-website/2.4.0: resolution: {integrity: sha512-a97y3R0YEy7tCvHSBARFZS4Ood13mFcYuQIDTapHeCsLl7/qBtNa0yKnUsZfoxBzRwFOB7ib0hzCje1WhWb7zQ==} @@ -3749,6 +3765,13 @@ packages: restore-cursor: 3.1.0 dev: true + /cli-cursor/4.0.0: + resolution: {integrity: sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dependencies: + restore-cursor: 4.0.0 + dev: true + /cli-spinners/2.7.0: resolution: {integrity: sha512-qu3pN8Y3qHNgE2AFweciB1IfMnmZ/fsNTEE+NOFjmGB2F/7rLhnhzppvpCnN4FovtP26k8lHyy9ptEbNwWFLzw==} engines: {node: '>=6'} @@ -3771,9 +3794,9 @@ packages: string-width: 4.2.3 dev: true - /cli-width/3.0.0: - resolution: {integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==} - engines: {node: '>= 10'} + /cli-width/4.0.0: + resolution: {integrity: sha512-ZksGS2xpa/bYkNzN3BAw1wEjsLV/ZKOf/CCrJ/QOBsxx6fOARIkwTutxp1XIOIohi6HKmOFjMoK/XaqDVUpEEw==} + engines: {node: '>= 12'} dev: true /clipboardy/3.0.0: @@ -3832,8 +3855,8 @@ packages: hasBin: true dev: true - /colord/2.9.2: - resolution: {integrity: sha512-Uqbg+J445nc1TKn4FoDPS6ZZqAvEDnwrH42yo8B40JSOgSLxMZ/gt3h4nmCtPLQeXhjJJkqBx7SCY35WnIixaQ==} + /colord/2.9.3: + resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==} dev: true /colorette/2.0.19: @@ -4207,13 +4230,13 @@ packages: which: 2.0.2 dev: true - /css-declaration-sorter/6.3.0_postcss@8.4.14: + /css-declaration-sorter/6.3.0_postcss@8.4.16: resolution: {integrity: sha512-OGT677UGHJTAVMRhPO+HJ4oKln3wkBTwtDFH0ojbqm+MJm6xuDMHp2nkhh/ThaBqq20IbraBQSWKfSLNHQO9Og==} engines: {node: ^10 || ^12 || >=14} peerDependencies: postcss: ^8.0.9 dependencies: - postcss: 8.4.14 + postcss: 8.4.16 dev: true /css-loader/5.2.7: @@ -4225,13 +4248,13 @@ packages: webpack: optional: true dependencies: - icss-utils: 5.1.0_postcss@8.4.14 + icss-utils: 5.1.0_postcss@8.4.16 loader-utils: 2.0.2 - postcss: 8.4.14 - postcss-modules-extract-imports: 3.0.0_postcss@8.4.14 - postcss-modules-local-by-default: 4.0.0_postcss@8.4.14 - postcss-modules-scope: 3.0.0_postcss@8.4.14 - postcss-modules-values: 4.0.0_postcss@8.4.14 + postcss: 8.4.16 + postcss-modules-extract-imports: 3.0.0_postcss@8.4.16 + postcss-modules-local-by-default: 4.0.0_postcss@8.4.16 + postcss-modules-scope: 3.0.0_postcss@8.4.16 + postcss-modules-values: 4.0.0_postcss@8.4.16 postcss-value-parser: 4.2.0 schema-utils: 3.1.1 semver: 7.3.7 @@ -4273,62 +4296,62 @@ packages: resolution: {integrity: sha1-xtJnJjKi5cg+AT5oZKQs6N79IK4=} dev: true - /cssnano-preset-default/5.2.12_postcss@8.4.14: + /cssnano-preset-default/5.2.12_postcss@8.4.16: resolution: {integrity: sha512-OyCBTZi+PXgylz9HAA5kHyoYhfGcYdwFmyaJzWnzxuGRtnMw/kR6ilW9XzlzlRAtB6PLT/r+prYgkef7hngFew==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - css-declaration-sorter: 6.3.0_postcss@8.4.14 - cssnano-utils: 3.1.0_postcss@8.4.14 - postcss: 8.4.14 - postcss-calc: 8.2.4_postcss@8.4.14 - postcss-colormin: 5.3.0_postcss@8.4.14 - postcss-convert-values: 5.1.2_postcss@8.4.14 - postcss-discard-comments: 5.1.2_postcss@8.4.14 - postcss-discard-duplicates: 5.1.0_postcss@8.4.14 - postcss-discard-empty: 5.1.1_postcss@8.4.14 - postcss-discard-overridden: 5.1.0_postcss@8.4.14 - postcss-merge-longhand: 5.1.6_postcss@8.4.14 - postcss-merge-rules: 5.1.2_postcss@8.4.14 - postcss-minify-font-values: 5.1.0_postcss@8.4.14 - postcss-minify-gradients: 5.1.1_postcss@8.4.14 - postcss-minify-params: 5.1.3_postcss@8.4.14 - postcss-minify-selectors: 5.2.1_postcss@8.4.14 - postcss-normalize-charset: 5.1.0_postcss@8.4.14 - postcss-normalize-display-values: 5.1.0_postcss@8.4.14 - postcss-normalize-positions: 5.1.1_postcss@8.4.14 - postcss-normalize-repeat-style: 5.1.1_postcss@8.4.14 - postcss-normalize-string: 5.1.0_postcss@8.4.14 - postcss-normalize-timing-functions: 5.1.0_postcss@8.4.14 - postcss-normalize-unicode: 5.1.0_postcss@8.4.14 - postcss-normalize-url: 5.1.0_postcss@8.4.14 - postcss-normalize-whitespace: 5.1.1_postcss@8.4.14 - postcss-ordered-values: 5.1.3_postcss@8.4.14 - postcss-reduce-initial: 5.1.0_postcss@8.4.14 - postcss-reduce-transforms: 5.1.0_postcss@8.4.14 - postcss-svgo: 5.1.0_postcss@8.4.14 - postcss-unique-selectors: 5.1.1_postcss@8.4.14 - dev: true - - /cssnano-utils/3.1.0_postcss@8.4.14: + css-declaration-sorter: 6.3.0_postcss@8.4.16 + cssnano-utils: 3.1.0_postcss@8.4.16 + postcss: 8.4.16 + postcss-calc: 8.2.4_postcss@8.4.16 + postcss-colormin: 5.3.0_postcss@8.4.16 + postcss-convert-values: 5.1.2_postcss@8.4.16 + postcss-discard-comments: 5.1.2_postcss@8.4.16 + postcss-discard-duplicates: 5.1.0_postcss@8.4.16 + postcss-discard-empty: 5.1.1_postcss@8.4.16 + postcss-discard-overridden: 5.1.0_postcss@8.4.16 + postcss-merge-longhand: 5.1.6_postcss@8.4.16 + postcss-merge-rules: 5.1.2_postcss@8.4.16 + postcss-minify-font-values: 5.1.0_postcss@8.4.16 + postcss-minify-gradients: 5.1.1_postcss@8.4.16 + postcss-minify-params: 5.1.3_postcss@8.4.16 + postcss-minify-selectors: 5.2.1_postcss@8.4.16 + postcss-normalize-charset: 5.1.0_postcss@8.4.16 + postcss-normalize-display-values: 5.1.0_postcss@8.4.16 + postcss-normalize-positions: 5.1.1_postcss@8.4.16 + postcss-normalize-repeat-style: 5.1.1_postcss@8.4.16 + postcss-normalize-string: 5.1.0_postcss@8.4.16 + postcss-normalize-timing-functions: 5.1.0_postcss@8.4.16 + postcss-normalize-unicode: 5.1.0_postcss@8.4.16 + postcss-normalize-url: 5.1.0_postcss@8.4.16 + postcss-normalize-whitespace: 5.1.1_postcss@8.4.16 + postcss-ordered-values: 5.1.3_postcss@8.4.16 + postcss-reduce-initial: 5.1.0_postcss@8.4.16 + postcss-reduce-transforms: 5.1.0_postcss@8.4.16 + postcss-svgo: 5.1.0_postcss@8.4.16 + postcss-unique-selectors: 5.1.1_postcss@8.4.16 + dev: true + + /cssnano-utils/3.1.0_postcss@8.4.16: resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.14 + postcss: 8.4.16 dev: true - /cssnano/5.1.12_postcss@8.4.14: + /cssnano/5.1.12_postcss@8.4.16: resolution: {integrity: sha512-TgvArbEZu0lk/dvg2ja+B7kYoD7BBCmn3+k58xD0qjrGHsFzXY/wKTo9M5egcUCabPol05e/PVoIu79s2JN4WQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - cssnano-preset-default: 5.2.12_postcss@8.4.14 + cssnano-preset-default: 5.2.12_postcss@8.4.16 lilconfig: 2.0.6 - postcss: 8.4.14 + postcss: 8.4.16 yaml: 1.10.2 dev: true @@ -4514,11 +4537,6 @@ packages: engines: {node: '>=0.10.0'} dev: true - /decode-uri-component/0.2.0: - resolution: {integrity: sha512-hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og==} - engines: {node: '>=0.10'} - dev: true - /deep-equal/1.0.1: resolution: {integrity: sha512-bHtC0iYvWhyaTzvV3CZgPeZQqCOBGyGsVV7v4eevpdkLHfiSrXUdBG+qAuSz4RI70sszvjQ1QSZ98An1yNwpSw==} dev: true @@ -4744,6 +4762,10 @@ packages: resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==} dev: true + /eastasianwidth/0.2.0: + resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} + dev: true + /ecc-jsbn/0.1.2: resolution: {integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==} dependencies: @@ -4754,8 +4776,8 @@ packages: /ee-first/1.1.1: resolution: {integrity: sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=} - /electron-to-chromium/1.4.208: - resolution: {integrity: sha512-diMr4t69FigAGUk2KovP0bygEtN/9AkqEVkzjEp0cu+zFFbZMVvwACpTTfuj1mAmFR5kNoSW8wGKDFWIvmThiQ==} + /electron-to-chromium/1.4.213: + resolution: {integrity: sha512-+3DbGHGOCHTVB/Ms63bGqbyC1b8y7Fk86+7ltssB8NQrZtSCvZG6eooSl9U2Q0yw++fL2DpHKOdTU0NVEkFObg==} /emoji-named-characters/1.0.2: resolution: {integrity: sha512-F9uKjyRsj7qjqZh7yjgHYa7XCgJgGI+nHTUqxkq/TDGuq0wLFbUX0wNes3XC6OA2j2Uu8PaeZD6hvCu5eO3lTA==} @@ -4766,6 +4788,10 @@ packages: resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} dev: true + /emoji-regex/9.2.2: + resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} + dev: true + /emojis-list/3.0.0: resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==} engines: {node: '>= 4'} @@ -4824,6 +4850,11 @@ packages: resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} dev: true + /entities/4.3.1: + resolution: {integrity: sha512-o4q/dYJlmyjP2zfnaWDUC6A3BQFmVTX+tZPezK7k0GLSU9QYCauscf5Y+qcEPzKL+EixVouYDgLQK5H9GrLpkg==} + engines: {node: '>=0.12'} + dev: true + /errno/0.1.8: resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==} hasBin: true @@ -4858,7 +4889,7 @@ packages: is-weakref: 1.0.2 object-inspect: 1.12.2 object-keys: 1.1.1 - object.assign: 4.1.2 + object.assign: 4.1.3 regexp.prototype.flags: 1.4.3 string.prototype.trimend: 1.0.5 string.prototype.trimstart: 1.0.5 @@ -4884,8 +4915,8 @@ packages: is-symbol: 1.0.4 dev: true - /esbuild-android-64/0.14.51: - resolution: {integrity: sha512-6FOuKTHnC86dtrKDmdSj2CkcKF8PnqkaIXqvgydqfJmqBazCPdw+relrMlhGjkvVdiiGV70rpdnyFmA65ekBCQ==} + /esbuild-android-64/0.14.54: + resolution: {integrity: sha512-Tz2++Aqqz0rJ7kYBfz+iqyE3QMycD4vk7LBRyWaAVFgFtQ/O8EJOnVmTOiDWYZ/uYzB4kvP+bqejYdVKzE5lAQ==} engines: {node: '>=12'} cpu: [x64] os: [android] @@ -4900,8 +4931,8 @@ packages: dev: true optional: true - /esbuild-android-arm64/0.14.51: - resolution: {integrity: sha512-vBtp//5VVkZWmYYvHsqBRCMMi1MzKuMIn5XDScmnykMTu9+TD9v0NMEDqQxvtFToeYmojdo5UCV2vzMQWJcJ4A==} + /esbuild-android-arm64/0.14.54: + resolution: {integrity: sha512-F9E+/QDi9sSkLaClO8SOV6etqPd+5DgJje1F9lOWoNncDdOBL2YF59IhsWATSt0TLZbYCf3pNlTHvVV5VfHdvg==} engines: {node: '>=12'} cpu: [arm64] os: [android] @@ -4916,8 +4947,8 @@ packages: dev: true optional: true - /esbuild-darwin-64/0.14.51: - resolution: {integrity: sha512-YFmXPIOvuagDcwCejMRtCDjgPfnDu+bNeh5FU2Ryi68ADDVlWEpbtpAbrtf/lvFTWPexbgyKgzppNgsmLPr8PA==} + /esbuild-darwin-64/0.14.54: + resolution: {integrity: sha512-jtdKWV3nBviOd5v4hOpkVmpxsBy90CGzebpbO9beiqUYVMBtSc0AL9zGftFuBon7PNDcdvNCEuQqw2x0wP9yug==} engines: {node: '>=12'} cpu: [x64] os: [darwin] @@ -4932,8 +4963,8 @@ packages: dev: true optional: true - /esbuild-darwin-arm64/0.14.51: - resolution: {integrity: sha512-juYD0QnSKwAMfzwKdIF6YbueXzS6N7y4GXPDeDkApz/1RzlT42mvX9jgNmyOlWKN7YzQAYbcUEJmZJYQGdf2ow==} + /esbuild-darwin-arm64/0.14.54: + resolution: {integrity: sha512-OPafJHD2oUPyvJMrsCvDGkRrVCar5aVyHfWGQzY1dWnzErjrDuSETxwA2HSsyg2jORLY8yBfzc1MIpUkXlctmw==} engines: {node: '>=12'} cpu: [arm64] os: [darwin] @@ -4948,8 +4979,8 @@ packages: dev: true optional: true - /esbuild-freebsd-64/0.14.51: - resolution: {integrity: sha512-cLEI/aXjb6vo5O2Y8rvVSQ7smgLldwYY5xMxqh/dQGfWO+R1NJOFsiax3IS4Ng300SVp7Gz3czxT6d6qf2cw0g==} + /esbuild-freebsd-64/0.14.54: + resolution: {integrity: sha512-OKwd4gmwHqOTp4mOGZKe/XUlbDJ4Q9TjX0hMPIDBUWWu/kwhBAudJdBoxnjNf9ocIB6GN6CPowYpR/hRCbSYAg==} engines: {node: '>=12'} cpu: [x64] os: [freebsd] @@ -4964,8 +4995,8 @@ packages: dev: true optional: true - /esbuild-freebsd-arm64/0.14.51: - resolution: {integrity: sha512-TcWVw/rCL2F+jUgRkgLa3qltd5gzKjIMGhkVybkjk6PJadYInPtgtUBp1/hG+mxyigaT7ib+od1Xb84b+L+1Mg==} + /esbuild-freebsd-arm64/0.14.54: + resolution: {integrity: sha512-sFwueGr7OvIFiQT6WeG0jRLjkjdqWWSrfbVwZp8iMP+8UHEHRBvlaxL6IuKNDwAozNUmbb8nIMXa7oAOARGs1Q==} engines: {node: '>=12'} cpu: [arm64] os: [freebsd] @@ -4980,8 +5011,8 @@ packages: dev: true optional: true - /esbuild-linux-32/0.14.51: - resolution: {integrity: sha512-RFqpyC5ChyWrjx8Xj2K0EC1aN0A37H6OJfmUXIASEqJoHcntuV3j2Efr9RNmUhMfNE6yEj2VpYuDteZLGDMr0w==} + /esbuild-linux-32/0.14.54: + resolution: {integrity: sha512-1ZuY+JDI//WmklKlBgJnglpUL1owm2OX+8E1syCD6UAxcMM/XoWd76OHSjl/0MR0LisSAXDqgjT3uJqT67O3qw==} engines: {node: '>=12'} cpu: [ia32] os: [linux] @@ -4996,8 +5027,8 @@ packages: dev: true optional: true - /esbuild-linux-64/0.14.51: - resolution: {integrity: sha512-dxjhrqo5i7Rq6DXwz5v+MEHVs9VNFItJmHBe1CxROWNf4miOGoQhqSG8StStbDkQ1Mtobg6ng+4fwByOhoQoeA==} + /esbuild-linux-64/0.14.54: + resolution: {integrity: sha512-EgjAgH5HwTbtNsTqQOXWApBaPVdDn7XcK+/PtJwZLT1UmpLoznPd8c5CxqsH2dQK3j05YsB3L17T8vE7cp4cCg==} engines: {node: '>=12'} cpu: [x64] os: [linux] @@ -5012,8 +5043,8 @@ packages: dev: true optional: true - /esbuild-linux-arm/0.14.51: - resolution: {integrity: sha512-LsJynDxYF6Neg7ZC7748yweCDD+N8ByCv22/7IAZglIEniEkqdF4HCaa49JNDLw1UQGlYuhOB8ZT/MmcSWzcWg==} + /esbuild-linux-arm/0.14.54: + resolution: {integrity: sha512-qqz/SjemQhVMTnvcLGoLOdFpCYbz4v4fUo+TfsWG+1aOu70/80RV6bgNpR2JCrppV2moUQkww+6bWxXRL9YMGw==} engines: {node: '>=12'} cpu: [arm] os: [linux] @@ -5028,8 +5059,8 @@ packages: dev: true optional: true - /esbuild-linux-arm64/0.14.51: - resolution: {integrity: sha512-D9rFxGutoqQX3xJPxqd6o+kvYKeIbM0ifW2y0bgKk5HPgQQOo2k9/2Vpto3ybGYaFPCE5qTGtqQta9PoP6ZEzw==} + /esbuild-linux-arm64/0.14.54: + resolution: {integrity: sha512-WL71L+0Rwv+Gv/HTmxTEmpv0UgmxYa5ftZILVi2QmZBgX3q7+tDeOQNqGtdXSdsL8TQi1vIaVFHUPDe0O0kdig==} engines: {node: '>=12'} cpu: [arm64] os: [linux] @@ -5044,8 +5075,8 @@ packages: dev: true optional: true - /esbuild-linux-mips64le/0.14.51: - resolution: {integrity: sha512-vS54wQjy4IinLSlb5EIlLoln8buh1yDgliP4CuEHumrPk4PvvP4kTRIG4SzMXm6t19N0rIfT4bNdAxzJLg2k6A==} + /esbuild-linux-mips64le/0.14.54: + resolution: {integrity: sha512-qTHGQB8D1etd0u1+sB6p0ikLKRVuCWhYQhAHRPkO+OF3I/iSlTKNNS0Lh2Oc0g0UFGguaFZZiPJdJey3AGpAlw==} engines: {node: '>=12'} cpu: [mips64el] os: [linux] @@ -5060,24 +5091,24 @@ packages: dev: true optional: true - /esbuild-linux-ppc64le/0.14.51: - resolution: {integrity: sha512-xcdd62Y3VfGoyphNP/aIV9LP+RzFw5M5Z7ja+zdpQHHvokJM7d0rlDRMN+iSSwvUymQkqZO+G/xjb4/75du8BQ==} + /esbuild-linux-ppc64le/0.14.54: + resolution: {integrity: sha512-j3OMlzHiqwZBDPRCDFKcx595XVfOfOnv68Ax3U4UKZ3MTYQB5Yz3X1mn5GnodEVYzhtZgxEBidLWeIs8FDSfrQ==} engines: {node: '>=12'} cpu: [ppc64] os: [linux] requiresBuild: true optional: true - /esbuild-linux-riscv64/0.14.51: - resolution: {integrity: sha512-syXHGak9wkAnFz0gMmRBoy44JV0rp4kVCEA36P5MCeZcxFq8+fllBC2t6sKI23w3qd8Vwo9pTADCgjTSf3L3rA==} + /esbuild-linux-riscv64/0.14.54: + resolution: {integrity: sha512-y7Vt7Wl9dkOGZjxQZnDAqqn+XOqFD7IMWiewY5SPlNlzMX39ocPQlOaoxvT4FllA5viyV26/QzHtvTjVNOxHZg==} engines: {node: '>=12'} cpu: [riscv64] os: [linux] requiresBuild: true optional: true - /esbuild-linux-s390x/0.14.51: - resolution: {integrity: sha512-kFAJY3dv+Wq8o28K/C7xkZk/X34rgTwhknSsElIqoEo8armCOjMJ6NsMxm48KaWY2h2RUYGtQmr+RGuUPKBhyw==} + /esbuild-linux-s390x/0.14.54: + resolution: {integrity: sha512-zaHpW9dziAsi7lRcyV4r8dhfG1qBidQWUXweUjnw+lliChJqQr+6XD71K41oEIC3Mx1KStovEmlzm+MkGZHnHA==} engines: {node: '>=12'} cpu: [s390x] os: [linux] @@ -5092,8 +5123,8 @@ packages: dev: true optional: true - /esbuild-netbsd-64/0.14.51: - resolution: {integrity: sha512-ZZBI7qrR1FevdPBVHz/1GSk1x5GDL/iy42Zy8+neEm/HA7ma+hH/bwPEjeHXKWUDvM36CZpSL/fn1/y9/Hb+1A==} + /esbuild-netbsd-64/0.14.54: + resolution: {integrity: sha512-PR01lmIMnfJTgeU9VJTDY9ZerDWVFIUzAtJuDHwwceppW7cQWjBBqP48NdeRtoP04/AtO9a7w3viI+PIDr6d+w==} engines: {node: '>=12'} cpu: [x64] os: [netbsd] @@ -5108,8 +5139,8 @@ packages: dev: true optional: true - /esbuild-openbsd-64/0.14.51: - resolution: {integrity: sha512-7R1/p39M+LSVQVgDVlcY1KKm6kFKjERSX1lipMG51NPcspJD1tmiZSmmBXoY5jhHIu6JL1QkFDTx94gMYK6vfA==} + /esbuild-openbsd-64/0.14.54: + resolution: {integrity: sha512-Qyk7ikT2o7Wu76UsvvDS5q0amJvmRzDyVlL0qf5VLsLchjCa1+IAvd8kTBgUxD7VBUUVgItLkk609ZHUc1oCaw==} engines: {node: '>=12'} cpu: [x64] os: [openbsd] @@ -5124,8 +5155,8 @@ packages: dev: true optional: true - /esbuild-sunos-64/0.14.51: - resolution: {integrity: sha512-HoHaCswHxLEYN8eBTtyO0bFEWvA3Kdb++hSQ/lLG7TyKF69TeSG0RNoBRAs45x/oCeWaTDntEZlYwAfQlhEtJA==} + /esbuild-sunos-64/0.14.54: + resolution: {integrity: sha512-28GZ24KmMSeKi5ueWzMcco6EBHStL3B6ubM7M51RmPwXQGLe0teBGJocmWhgwccA1GeFXqxzILIxXpHbl9Q/Kw==} engines: {node: '>=12'} cpu: [x64] os: [sunos] @@ -5140,8 +5171,8 @@ packages: dev: true optional: true - /esbuild-windows-32/0.14.51: - resolution: {integrity: sha512-4rtwSAM35A07CBt1/X8RWieDj3ZUHQqUOaEo5ZBs69rt5WAFjP4aqCIobdqOy4FdhYw1yF8Z0xFBTyc9lgPtEg==} + /esbuild-windows-32/0.14.54: + resolution: {integrity: sha512-T+rdZW19ql9MjS7pixmZYVObd9G7kcaZo+sETqNH4RCkuuYSuv9AGHUVnPoP9hhuE1WM1ZimHz1CIBHBboLU7w==} engines: {node: '>=12'} cpu: [ia32] os: [win32] @@ -5156,8 +5187,8 @@ packages: dev: true optional: true - /esbuild-windows-64/0.14.51: - resolution: {integrity: sha512-HoN/5HGRXJpWODprGCgKbdMvrC3A2gqvzewu2eECRw2sYxOUoh2TV1tS+G7bHNapPGI79woQJGV6pFH7GH7qnA==} + /esbuild-windows-64/0.14.54: + resolution: {integrity: sha512-AoHTRBUuYwXtZhjXZbA1pGfTo8cJo3vZIcWGLiUcTNgHpJJMC1rVA44ZereBHMJtotyN71S8Qw0npiCIkW96cQ==} engines: {node: '>=12'} cpu: [x64] os: [win32] @@ -5172,8 +5203,8 @@ packages: dev: true optional: true - /esbuild-windows-arm64/0.14.51: - resolution: {integrity: sha512-JQDqPjuOH7o+BsKMSddMfmVJXrnYZxXDHsoLHc0xgmAZkOOCflRmC43q31pk79F9xuyWY45jDBPolb5ZgGOf9g==} + /esbuild-windows-arm64/0.14.54: + resolution: {integrity: sha512-M0kuUvXhot1zOISQGXwWn6YtS+Y/1RT9WrVIOywZnJHo3jCDyewAc79aKNQWFCQm+xNHVTq9h8dZKvygoXQQRg==} engines: {node: '>=12'} cpu: [arm64] os: [win32] @@ -5204,32 +5235,33 @@ packages: esbuild-windows-arm64: 0.13.15 dev: true - /esbuild/0.14.51: - resolution: {integrity: sha512-+CvnDitD7Q5sT7F+FM65sWkF8wJRf+j9fPcprxYV4j+ohmzVj2W7caUqH2s5kCaCJAfcAICjSlKhDCcvDpU7nw==} + /esbuild/0.14.54: + resolution: {integrity: sha512-Cy9llcy8DvET5uznocPyqL3BFRrFXSVqbgpMJ9Wz8oVjZlh/zUSNbPRbov0VX7VxN2JH1Oa0uNxZ7eLRb62pJA==} engines: {node: '>=12'} hasBin: true requiresBuild: true optionalDependencies: - esbuild-android-64: 0.14.51 - esbuild-android-arm64: 0.14.51 - esbuild-darwin-64: 0.14.51 - esbuild-darwin-arm64: 0.14.51 - esbuild-freebsd-64: 0.14.51 - esbuild-freebsd-arm64: 0.14.51 - esbuild-linux-32: 0.14.51 - esbuild-linux-64: 0.14.51 - esbuild-linux-arm: 0.14.51 - esbuild-linux-arm64: 0.14.51 - esbuild-linux-mips64le: 0.14.51 - esbuild-linux-ppc64le: 0.14.51 - esbuild-linux-riscv64: 0.14.51 - esbuild-linux-s390x: 0.14.51 - esbuild-netbsd-64: 0.14.51 - esbuild-openbsd-64: 0.14.51 - esbuild-sunos-64: 0.14.51 - esbuild-windows-32: 0.14.51 - esbuild-windows-64: 0.14.51 - esbuild-windows-arm64: 0.14.51 + '@esbuild/linux-loong64': 0.14.54 + esbuild-android-64: 0.14.54 + esbuild-android-arm64: 0.14.54 + esbuild-darwin-64: 0.14.54 + esbuild-darwin-arm64: 0.14.54 + esbuild-freebsd-64: 0.14.54 + esbuild-freebsd-arm64: 0.14.54 + esbuild-linux-32: 0.14.54 + esbuild-linux-64: 0.14.54 + esbuild-linux-arm: 0.14.54 + esbuild-linux-arm64: 0.14.54 + esbuild-linux-mips64le: 0.14.54 + esbuild-linux-ppc64le: 0.14.54 + esbuild-linux-riscv64: 0.14.54 + esbuild-linux-s390x: 0.14.54 + esbuild-netbsd-64: 0.14.54 + esbuild-openbsd-64: 0.14.54 + esbuild-sunos-64: 0.14.54 + esbuild-windows-32: 0.14.54 + esbuild-windows-64: 0.14.54 + esbuild-windows-arm64: 0.14.54 /escalade/3.1.1: resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} @@ -5268,7 +5300,7 @@ packages: optional: true dependencies: eslint: 8.21.0 - eslint-plugin-import: 2.26.0_wuikv5nqgdfyng42xxm7lklfmi + eslint-plugin-import: 2.26.0_qfqnhzzittf54udqwes54xx65q eslint-plugin-node: 11.1.0_eslint@8.21.0 eslint-plugin-promise: 6.0.0_eslint@8.21.0 dev: true @@ -5295,11 +5327,11 @@ packages: array-find: 1.0.0 debug: 3.2.7 enhanced-resolve: 0.9.1 - eslint-plugin-import: 2.26.0_wuikv5nqgdfyng42xxm7lklfmi + eslint-plugin-import: 2.26.0_qfqnhzzittf54udqwes54xx65q find-root: 1.1.0 has: 1.0.3 interpret: 1.4.0 - is-core-module: 2.9.0 + is-core-module: 2.10.0 is-regex: 1.1.4 lodash: 4.17.21 resolve: 1.22.1 @@ -5308,7 +5340,7 @@ packages: - supports-color dev: true - /eslint-module-utils/2.7.3_gjpiwexkhexdr4bbgrtzf23bg4: + /eslint-module-utils/2.7.3_oh3tx5uf4prsskzvqzbn7hm6ya: resolution: {integrity: sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==} engines: {node: '>=4'} peerDependencies: @@ -5326,7 +5358,7 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - '@typescript-eslint/parser': 5.32.0_qugx7qdu5zevzvxaiqyxfiwquq + '@typescript-eslint/parser': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq debug: 3.2.7 eslint-import-resolver-node: 0.3.6 find-up: 2.1.0 @@ -5360,7 +5392,7 @@ packages: regexpp: 3.2.0 dev: true - /eslint-plugin-import/2.26.0_wuikv5nqgdfyng42xxm7lklfmi: + /eslint-plugin-import/2.26.0_qfqnhzzittf54udqwes54xx65q: resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==} engines: {node: '>=4'} peerDependencies: @@ -5372,16 +5404,16 @@ packages: eslint: optional: true dependencies: - '@typescript-eslint/parser': 5.32.0_qugx7qdu5zevzvxaiqyxfiwquq + '@typescript-eslint/parser': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq array-includes: 3.1.5 array.prototype.flat: 1.3.0 debug: 2.6.9 doctrine: 2.1.0 eslint: 8.21.0 eslint-import-resolver-node: 0.3.6 - eslint-module-utils: 2.7.3_gjpiwexkhexdr4bbgrtzf23bg4 + eslint-module-utils: 2.7.3_oh3tx5uf4prsskzvqzbn7hm6ya has: 1.0.3 - is-core-module: 2.9.0 + is-core-module: 2.10.0 is-glob: 4.0.3 minimatch: 3.1.2 object.values: 1.1.5 @@ -5747,8 +5779,8 @@ packages: resolution: {integrity: sha512-seYffJRrRVI3qrCC0asf2mWAvQ/U0jZA+eECylqIxCDHzBs/W+ZeEv3D0bsjNeEewIYZKfELyY96mRactx8C4w==} dependencies: enhanced-resolve: 5.10.0 - mlly: 0.5.5 - pathe: 0.3.3 + mlly: 0.5.9 + pathe: 0.3.4 ufo: 0.8.5 dev: true @@ -5831,6 +5863,14 @@ packages: escape-string-regexp: 1.0.5 dev: true + /figures/4.0.1: + resolution: {integrity: sha512-rElJwkA/xS04Vfg+CaZodpso7VqBknOYbzi6I76hI4X80RUjkSxO2oAyPmGbuXUppywjqndOrQDl817hDnI++w==} + engines: {node: '>=12'} + dependencies: + escape-string-regexp: 5.0.0 + is-unicode-supported: 1.2.0 + dev: true + /file-entry-cache/6.0.1: resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} engines: {node: ^10.12.0 || >=12.0.0} @@ -5853,11 +5893,6 @@ packages: dependencies: to-regex-range: 5.0.1 - /filter-obj/1.1.0: - resolution: {integrity: sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ==} - engines: {node: '>=0.10.0'} - dev: true - /finalhandler/1.1.2: resolution: {integrity: sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==} engines: {node: '>= 0.8'} @@ -6157,8 +6192,8 @@ packages: yargs: 16.2.0 dev: true - /get-port-please/2.5.0: - resolution: {integrity: sha512-NblPebBznYARC1R2r1qmusbJAAgBr954gWhEZgwTerzR8r3ud6U5PI1SG4Lue43r87aikPPjObs85VieIDK99A==} + /get-port-please/2.6.1: + resolution: {integrity: sha512-4PDSrL6+cuMM1xs6w36ZIkaKzzE0xzfVBCfebHIJ3FE8iB9oic/ECwPw3iNiD4h1AoJ5XLLBhEviFAVrZsDC5A==} dependencies: fs-memo: 1.2.0 dev: true @@ -6232,17 +6267,17 @@ packages: semver: 6.3.0 dev: true - /git-up/4.0.5: - resolution: {integrity: sha512-YUvVDg/vX3d0syBsk/CKUTib0srcQME0JyHkL5BaYdwLsiCslPWmDSi8PUMo9pXYjrryMcmsCoCgsTpSCJEQaA==} + /git-up/6.0.0: + resolution: {integrity: sha512-6RUFSNd1c/D0xtGnyWN2sxza2bZtZ/EmI9448n6rCZruFwV/ezeEn2fJP7XnUQGwf0RAtd/mmUCbtH6JPYA2SA==} dependencies: is-ssh: 1.4.0 - parse-url: 6.0.5 + parse-url: 7.0.2 dev: true - /git-url-parse/11.6.0: - resolution: {integrity: sha512-WWUxvJs5HsyHL6L08wOusa/IXYtMuCAhrMmnTjQPpBU0TTHyDhnOATNH3xNQz7YOQUsqIIPTGr4xiVti1Hsk5g==} + /git-url-parse/12.0.0: + resolution: {integrity: sha512-I6LMWsxV87vysX1WfsoglXsXg6GjQRKq7+Dgiseo+h0skmp5Hp2rzmcEIRQot9CPA+uzU7x1x7jZdqvTFGnB+Q==} dependencies: - git-up: 4.0.5 + git-up: 6.0.0 dev: true /gitconfiglocal/1.0.0: @@ -6376,8 +6411,8 @@ packages: uuid: 3.4.0 dev: true - /graphql-ws/5.9.1_graphql@15.8.0: - resolution: {integrity: sha512-mL/SWGBwIT9Meq0NlfS55yXXTOeWPMbK7bZBEZhFu46bcGk1coTx2Sdtzxdk+9yHWngD+Fk1PZDWaAutQa9tpw==} + /graphql-ws/5.10.0_graphql@15.8.0: + resolution: {integrity: sha512-ewbPzHQdRZgNCPDH9Yr6xccSeZfk3fmpO/AGGGg4KkM5gc6oAOJQ10Oui1EqprhVOyRbOll9bw2qAkOiOwfTag==} engines: {node: '>=10'} peerDependencies: graphql: '>=0.11 <=16' @@ -6397,8 +6432,8 @@ packages: duplexer: 0.1.2 dev: true - /h3/0.7.13: - resolution: {integrity: sha512-3rs+iokAwin4GnToWc+4JeASAYPujojMWicaTgv5WMucED94cFVVGctlk7N6iJfQ7SZ2N5CtmQ2C3L2aDFpd2w==} + /h3/0.7.15: + resolution: {integrity: sha512-4lile6Q64nQ5Z2+6NaD85WU64fhF/qIVyGm4NaFyl4w7L/XDIiq5gkogWLUzZGGtq60M4tnFSj7qIxc0rmTqrg==} dependencies: cookie-es: 0.5.0 destr: 1.1.1 @@ -6635,13 +6670,13 @@ packages: dependencies: safer-buffer: 2.1.2 - /icss-utils/5.1.0_postcss@8.4.14: + /icss-utils/5.1.0_postcss@8.4.16: resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.14 + postcss: 8.4.16 dev: true /ieee754/1.2.1: @@ -6695,25 +6730,25 @@ packages: engines: {node: '>=10'} dev: true - /inquirer/8.2.4: - resolution: {integrity: sha512-nn4F01dxU8VeKfq192IjLsxu0/OmMZ4Lg3xKAns148rCaXP6ntAoEkVYZThWjwON8AlzdZZi6oqnhNbxUG9hVg==} + /inquirer/9.1.0: + resolution: {integrity: sha512-eukdjrBljg9t55ZnvJjvGi1OyYEzVBFsO/8o5d2MV3mc28u3x4X2kS4eJ/+9U10KiREfPkEBSeCrU/S2G/uRtw==} engines: {node: '>=12.0.0'} dependencies: - ansi-escapes: 4.3.2 - chalk: 4.1.2 - cli-cursor: 3.1.0 - cli-width: 3.0.0 + ansi-escapes: 5.0.0 + chalk: 5.0.1 + cli-cursor: 4.0.0 + cli-width: 4.0.0 external-editor: 3.1.0 - figures: 3.2.0 + figures: 4.0.1 lodash: 4.17.21 mute-stream: 0.0.8 - ora: 5.4.1 + ora: 6.1.2 run-async: 2.4.1 rxjs: 7.5.6 - string-width: 4.2.3 - strip-ansi: 6.0.1 + string-width: 5.1.2 + strip-ansi: 7.0.1 through: 2.3.8 - wrap-ansi: 7.0.0 + wrap-ansi: 8.0.1 dev: true /internal-slot/1.0.3: @@ -6795,8 +6830,8 @@ packages: ci-info: 3.3.2 dev: true - /is-core-module/2.9.0: - resolution: {integrity: sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A==} + /is-core-module/2.10.0: + resolution: {integrity: sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg==} dependencies: has: 1.0.3 @@ -6849,9 +6884,9 @@ packages: is-path-inside: 3.0.3 dev: true - /is-interactive/1.0.0: - resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==} - engines: {node: '>=8'} + /is-interactive/2.0.0: + resolution: {integrity: sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==} + engines: {node: '>=12'} dev: true /is-module/1.0.0: @@ -6964,6 +6999,11 @@ packages: engines: {node: '>=10'} dev: true + /is-unicode-supported/1.2.0: + resolution: {integrity: sha512-wH+U77omcRzevfIG8dDhTS0V9zZyweakfD01FULl97+0EHiJTTZtJqxPSkIIo/SDPv/i07k/C9jAPY+jwLLeUQ==} + engines: {node: '>=12'} + dev: true + /is-weakref/1.0.2: resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} dependencies: @@ -7062,7 +7102,7 @@ packages: resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==} engines: {node: '>= 10.13.0'} dependencies: - '@types/node': 18.6.3 + '@types/node': 18.7.0 merge-stream: 2.0.0 supports-color: 7.2.0 dev: true @@ -7112,10 +7152,6 @@ packages: resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} dev: true - /json-schema-traverse/1.0.0: - resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} - dev: true - /json-schema/0.4.0: resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==} dev: true @@ -7255,9 +7291,10 @@ packages: /kolorist/1.5.1: resolution: {integrity: sha512-lxpCM3HTvquGxKGzHeknB/sUjuVoUElLlfYnXZT73K8geR9jQbroGlSCFBax9/0mpGoD3kzcMLnOlGQPJJNyqQ==} + dev: true - /launch-editor/2.4.0: - resolution: {integrity: sha512-mZ0BHeSn/ohL+Ib+b+JnxC59vcNz6v5IR9d0CuM8f0x8ni8oK3IIG6G0vMkpxc0gFsmvINkztGOHiWTaX4BmAg==} + /launch-editor/2.5.0: + resolution: {integrity: sha512-coRiIMBJ3JF7yX8nZE4Fr+xxUy+3WTRsDSwIzHghU28gjXwkAWsvac3BpZrL/jHtbiqQ4TiRAyTJmsgErNk1jQ==} dependencies: picocolors: 1.0.0 shell-quote: 1.7.3 @@ -7298,13 +7335,13 @@ packages: uc.micro: 1.0.6 dev: false - /listhen/0.2.13: - resolution: {integrity: sha512-axfyPgsrypKohOglPjzMVj+6nSQuDfdDzq92tYEg4HO+YkvvMGz0bGeoGA+pdEC7a8gbIgLduf/62Pkk1a9jMQ==} + /listhen/0.2.15: + resolution: {integrity: sha512-F/IWj/aJLeokHAIVY+l3JoWRUnbRaf2F0cr+Ybc1YyozMA/yP0C2nf3c0Oi7vAbFvtfiwfWWfP7bIrQc/u5L1A==} dependencies: clipboardy: 3.0.0 colorette: 2.0.19 defu: 6.0.0 - get-port-please: 2.5.0 + get-port-please: 2.6.1 http-shutdown: 1.2.2 selfsigned: 2.0.1 ufo: 0.8.5 @@ -7448,10 +7485,6 @@ packages: dependencies: lodash._reinterpolate: 3.0.0 - /lodash.truncate/4.4.2: - resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==} - dev: true - /lodash.union/4.6.0: resolution: {integrity: sha512-c4pB2CdGrGdjMKYLA+XiRDO7Y0PRQbm/Gzg8qMj+QH+pFVAoTp5sBpO0odL3FjoPCGjK96p6qsP+yQoiLoOBcw==} dev: true @@ -7472,6 +7505,14 @@ packages: is-unicode-supported: 0.1.0 dev: true + /log-symbols/5.1.0: + resolution: {integrity: sha512-l0x2DvrW294C9uDCoQe1VSU4gf529FkSZ6leBl4TiqZH/e+0R7hSfHQBNut2mNygDgHwvYHfFLn6Oxb3VWj2rA==} + engines: {node: '>=12'} + dependencies: + chalk: 5.0.1 + is-unicode-supported: 1.2.0 + dev: true + /log-update/4.0.0: resolution: {integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==} engines: {node: '>=10'} @@ -7763,11 +7804,13 @@ packages: resolution: {integrity: sha512-xezyv7hnfFPuiDS3AiJuWs0OxlvooS++3L2lURvmh/1n7UG4O2Ehz9UkwWgg3wyLEPKGVfJLlr2DjjTCl9UJTg==} dev: true - /mlly/0.5.5: - resolution: {integrity: sha512-2R4JT/SxRDPexomw4rmHYY/gWAGmL9Kkq1OR76Ua6w+P340a1aBDTWzKo2kAlxzrG82OdXs5VB9Lmcmyit0Obg==} + /mlly/0.5.9: + resolution: {integrity: sha512-OsbZUJVn5Z79gEEALFpSKjk99AZdXaNG8zaJvpKFtMXcjYASIQX34yVJwIXMwOYM8yVOqhL4tPgtKaHI8s5tLA==} dependencies: - pathe: 0.3.3 + acorn: 8.8.0 + pathe: 0.3.4 pkg-types: 0.3.3 + ufo: 0.8.5 /modify-values/1.0.1: resolution: {integrity: sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==} @@ -7802,6 +7845,12 @@ packages: engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} hasBin: true + /nanoid/4.0.0: + resolution: {integrity: sha512-IgBP8piMxe/gf73RTQx7hmnhwz0aaEXYakvqZyE302IXW3HyVNhdNGC+O2MwMAVhLEnvXlvKtGbtJf6wvHihCg==} + engines: {node: ^14 || ^16 || >=18} + hasBin: true + dev: true + /natural-compare/1.4.0: resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} dev: true @@ -7835,25 +7884,25 @@ packages: path-to-regexp: 1.8.0 dev: true - /nitropack/0.4.12: - resolution: {integrity: sha512-5UXLcKKg4qAegrAEE21NIqgm/mbZMiZdrGTOePe/Ed+hRCI8gG7/cTETEE7eLzrSL159ribQKHG42MksXqAZUg==} + /nitropack/0.4.18: + resolution: {integrity: sha512-a+yfJhshq2u/eeohUimICZNbBF+wimoY0lorvn5mhg0udZe44tXhFYs/1rBq3eyez4mKDUr6jgSEWHxKin4ZVg==} engines: {node: ^14.16.0 || ^16.11.0 || ^17.0.0 || ^18.0.0} hasBin: true dependencies: '@cloudflare/kv-asset-handler': 0.2.0 '@netlify/functions': 1.0.0 '@rollup/plugin-alias': 3.1.9_rollup@2.77.2 - '@rollup/plugin-commonjs': 22.0.1_rollup@2.77.2 + '@rollup/plugin-commonjs': 22.0.2_rollup@2.77.2 '@rollup/plugin-inject': 4.0.4_rollup@2.77.2 '@rollup/plugin-json': 4.1.0_rollup@2.77.2 '@rollup/plugin-node-resolve': 13.3.0_rollup@2.77.2 '@rollup/plugin-replace': 4.0.0_rollup@2.77.2 '@rollup/plugin-wasm': 5.2.0_rollup@2.77.2 '@rollup/pluginutils': 4.2.1 - '@types/jsdom': 16.2.15 - '@vercel/nft': 0.20.1 + '@types/jsdom': 20.0.0 + '@vercel/nft': 0.21.0 archiver: 5.3.1 - c12: 0.2.8 + c12: 0.2.9 chalk: 5.0.1 chokidar: 3.5.3 consola: 2.15.3 @@ -7861,26 +7910,26 @@ packages: defu: 6.0.0 destr: 1.1.1 dot-prop: 7.2.0 - esbuild: 0.14.51 + esbuild: 0.14.54 escape-string-regexp: 5.0.0 etag: 1.8.1 fs-extra: 10.1.0 globby: 13.1.2 gzip-size: 7.0.0 - h3: 0.7.13 + h3: 0.7.15 hookable: 5.1.1 http-proxy: 1.18.1 is-primitive: 3.0.1 jiti: 1.14.0 klona: 2.0.5 - listhen: 0.2.13 + listhen: 0.2.15 mime: 3.0.0 - mlly: 0.5.5 + mlly: 0.5.9 mri: 1.2.0 node-fetch-native: 0.1.4 - ohash: 0.1.4 + ohash: 0.1.5 ohmyfetch: 0.4.18 - pathe: 0.3.3 + pathe: 0.3.4 perfect-debounce: 0.1.3 pkg-types: 0.3.3 pretty-bytes: 6.0.0 @@ -7888,16 +7937,15 @@ packages: rollup: 2.77.2 rollup-plugin-terser: 7.0.2_rollup@2.77.2 rollup-plugin-visualizer: 5.7.1_rollup@2.77.2 - scule: 0.2.1 + scule: 0.3.2 semver: 7.3.7 serve-placeholder: 2.0.1 serve-static: 1.15.0 source-map-support: 0.5.21 std-env: 3.1.1 - table: 6.8.0 ufo: 0.8.5 - unenv: 0.5.2 - unimport: 0.4.7_ecpsl2p7zl5puhr4xxlpah6uzm + unenv: 0.5.3 + unimport: 0.6.7_axviaedfcx2tizy6rzan5phlym unstorage: 0.5.6 transitivePeerDependencies: - bufferutil @@ -7971,7 +8019,7 @@ packages: engines: {node: '>=10'} dependencies: hosted-git-info: 4.1.0 - is-core-module: 2.9.0 + is-core-module: 2.10.0 semver: 7.3.7 validate-npm-package-license: 3.0.4 dev: true @@ -8035,7 +8083,7 @@ packages: '@nuxt/devalue': 2.0.0 '@nuxt/kit': 3.0.0-rc.6 '@nuxt/schema': 3.0.0-rc.6 - '@nuxt/telemetry': 2.1.3 + '@nuxt/telemetry': 2.1.4 '@nuxt/ui-templates': 0.2.2 '@nuxt/vite-builder': 3.0.0-rc.6_vue@3.2.37 '@vue/reactivity': 3.2.37 @@ -8048,26 +8096,26 @@ packages: escape-string-regexp: 5.0.0 fs-extra: 10.1.0 globby: 13.1.2 - h3: 0.7.13 + h3: 0.7.15 hash-sum: 2.0.0 hookable: 5.1.1 knitwork: 0.1.2 magic-string: 0.26.2 - mlly: 0.5.5 - nitropack: 0.4.12 + mlly: 0.5.9 + nitropack: 0.4.18 nuxi: 3.0.0-rc.6 - ohash: 0.1.4 + ohash: 0.1.5 ohmyfetch: 0.4.18 - pathe: 0.3.3 + pathe: 0.3.4 perfect-debounce: 0.1.3 scule: 0.2.1 strip-literal: 0.4.0 ufo: 0.8.5 - unctx: 1.1.4 - unenv: 0.5.2 + unctx: 1.2.0 + unenv: 0.5.3 unimport: 0.4.7 unplugin: 0.7.2 - untyped: 0.4.4 + untyped: 0.4.5 vue: 3.2.37 vue-bundle-renderer: 0.3.9 vue-router: 4.1.3_vue@3.2.37 @@ -8109,8 +8157,8 @@ packages: engines: {node: '>= 10.12.0'} dev: true - /object.assign/4.1.2: - resolution: {integrity: sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==} + /object.assign/4.1.3: + resolution: {integrity: sha512-ZFJnX3zltyjcYJL0RoCJuzb+11zWGyaDbjgxZbdV7rFEcHQuYxrZqhow67aA7xpes6LhojyFDaBKAFfogQrikA==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 @@ -8138,8 +8186,8 @@ packages: es-abstract: 1.20.1 dev: true - /ohash/0.1.4: - resolution: {integrity: sha512-imsZ/lYOvZldyO6clK9uu6t2PIMr3bxCPAi6jJyPezKLU5/42UwMfGIlZML6GlpUxmSHxRoDo7VMWqI8VGllQQ==} + /ohash/0.1.5: + resolution: {integrity: sha512-qynly1AFIpGWEAW88p6DhMNqok/Swb52/KsiU+Toi7er058Ptvno3tkfTML6wYcEgFgp2GsUziW4Nqn62ciuyw==} dev: true /ohmyfetch/0.4.18: @@ -8148,7 +8196,7 @@ packages: destr: 1.1.1 node-fetch-native: 0.1.4 ufo: 0.8.5 - undici: 5.8.0 + undici: 5.8.2 dev: true /on-finished/2.3.0: @@ -8217,18 +8265,18 @@ packages: word-wrap: 1.2.3 dev: true - /ora/5.4.1: - resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==} - engines: {node: '>=10'} + /ora/6.1.2: + resolution: {integrity: sha512-EJQ3NiP5Xo94wJXIzAyOtSb0QEIAUu7m8t6UZ9krbz0vAJqr92JpcK/lEXg91q6B9pEGqrykkd2EQplnifDSBw==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dependencies: - bl: 4.1.0 - chalk: 4.1.2 - cli-cursor: 3.1.0 + bl: 5.0.0 + chalk: 5.0.1 + cli-cursor: 4.0.0 cli-spinners: 2.7.0 - is-interactive: 1.0.0 - is-unicode-supported: 0.1.0 - log-symbols: 4.1.0 - strip-ansi: 6.0.1 + is-interactive: 2.0.0 + is-unicode-supported: 1.2.0 + log-symbols: 5.1.0 + strip-ansi: 7.0.1 wcwidth: 1.0.1 dev: true @@ -8340,22 +8388,25 @@ packages: lines-and-columns: 1.2.4 dev: true - /parse-path/4.0.4: - resolution: {integrity: sha512-Z2lWUis7jlmXC1jeOG9giRO2+FsuyNipeQ43HAjqAZjwSe3SEf+q/84FGPHoso3kyntbxa4c4i77t3m6fGf8cw==} + /parse-path/5.0.0: + resolution: {integrity: sha512-qOpH55/+ZJ4jUu/oLO+ifUKjFPNZGfnPJtzvGzKN/4oLMil5m9OH4VpOj6++9/ytJcfks4kzH2hhi87GL/OU9A==} dependencies: - is-ssh: 1.4.0 - protocols: 1.4.8 - qs: 6.11.0 - query-string: 6.14.1 + protocols: 2.0.1 dev: true - /parse-url/6.0.5: - resolution: {integrity: sha512-e35AeLTSIlkw/5GFq70IN7po8fmDUjpDPY1rIK+VubRfsUvBonjQ+PBZG+vWMACnQSmNlvl524IucoDmcioMxA==} + /parse-url/7.0.2: + resolution: {integrity: sha512-PqO4Z0eCiQ08Wj6QQmrmp5YTTxpYfONdOEamrtvK63AmzXpcavIVQubGHxOEwiIoDZFb8uDOoQFS0NCcjqIYQg==} dependencies: is-ssh: 1.4.0 normalize-url: 6.1.0 - parse-path: 4.0.4 - protocols: 1.4.8 + parse-path: 5.0.0 + protocols: 2.0.1 + dev: true + + /parse5/7.0.0: + resolution: {integrity: sha512-y/t8IXSPWTuRZqXc0ajH/UwDj4mnqLEbSttNbThcFhGrZuOyoyvNBO85PBp2jQa55wY9d07PBNjsK8ZP3K5U6g==} + dependencies: + entities: 4.3.1 dev: true /parseurl/1.3.3: @@ -8416,8 +8467,8 @@ packages: /pathe/0.2.0: resolution: {integrity: sha512-sTitTPYnn23esFR3RlqYBWn4c45WGeLcsKzQiUpXJAyfcWkolvlYpV8FLo7JishK946oQwMFUCHXQ9AjGPKExw==} - /pathe/0.3.3: - resolution: {integrity: sha512-x3nrPvG0HDSDzUiJ0WqtzhN4MD+h5B+dFJ3/qyxVuARlr4Y3aJv8gri2cZzp9Z8sGs2a+aG9gNbKngh3gme57A==} + /pathe/0.3.4: + resolution: {integrity: sha512-YWgqEdxf36R6vcsyj0A+yT/rDRPe0wui4J9gRR7T4whjU5Lx/jZOr75ckEgTNaLVQABAwsrlzHRpIKcCdXAQ5A==} /pause-stream/0.0.11: resolution: {integrity: sha1-/lo0sMvOErWqaitAPuLnO2AvFEU=} @@ -8470,7 +8521,7 @@ packages: '@vue/devtools-api': 6.2.1 typescript: 4.7.4 vue: 3.2.37 - vue-demi: 0.13.6_vue@3.2.37 + vue-demi: 0.13.7_vue@3.2.37 dev: true /pinia/2.0.17_vue@3.2.37: @@ -8489,7 +8540,7 @@ packages: dependencies: '@vue/devtools-api': 6.2.1 vue: 3.2.37 - vue-demi: 0.13.6_vue@3.2.37 + vue-demi: 0.13.7_vue@3.2.37 dev: false /pkg-dir/4.2.0: @@ -8502,11 +8553,11 @@ packages: resolution: {integrity: sha512-6AJcCMnjUQPQv/Wk960w0TOmjhdjbeaQJoSKWRQv9N3rgkessCu6J0Ydsog/nw1MbpnxHuPzYbfOn2KmlZO1FA==} dependencies: jsonc-parser: 3.1.0 - mlly: 0.5.5 - pathe: 0.3.3 + mlly: 0.5.9 + pathe: 0.3.4 - /portfinder/1.0.28: - resolution: {integrity: sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA==} + /portfinder/1.0.29: + resolution: {integrity: sha512-Z5+DarHWCKlufshB9Z1pN95oLtANoY5Wn9X3JGELGyQ6VhEcBfT2t+1fGUBq7MwUant6g/mqowH+4HifByPbiQ==} engines: {node: '>= 0.12.0'} dependencies: async: 2.6.4 @@ -8516,17 +8567,17 @@ packages: - supports-color dev: true - /postcss-calc/8.2.4_postcss@8.4.14: + /postcss-calc/8.2.4_postcss@8.4.16: resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==} peerDependencies: postcss: ^8.2.2 dependencies: - postcss: 8.4.14 + postcss: 8.4.16 postcss-selector-parser: 6.0.10 postcss-value-parser: 4.2.0 dev: true - /postcss-colormin/5.3.0_postcss@8.4.14: + /postcss-colormin/5.3.0_postcss@8.4.16: resolution: {integrity: sha512-WdDO4gOFG2Z8n4P8TWBpshnL3JpmNmJwdnfP2gbk2qBA8PWwOYcmjmI/t3CmMeL72a7Hkd+x/Mg9O2/0rD54Pg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -8534,66 +8585,66 @@ packages: dependencies: browserslist: 4.21.3 caniuse-api: 3.0.0 - colord: 2.9.2 - postcss: 8.4.14 + colord: 2.9.3 + postcss: 8.4.16 postcss-value-parser: 4.2.0 dev: true - /postcss-convert-values/5.1.2_postcss@8.4.14: + /postcss-convert-values/5.1.2_postcss@8.4.16: resolution: {integrity: sha512-c6Hzc4GAv95B7suy4udszX9Zy4ETyMCgFPUDtWjdFTKH1SE9eFY/jEpHSwTH1QPuwxHpWslhckUQWbNRM4ho5g==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: browserslist: 4.21.3 - postcss: 8.4.14 + postcss: 8.4.16 postcss-value-parser: 4.2.0 dev: true - /postcss-custom-properties/12.1.8_postcss@8.4.14: + /postcss-custom-properties/12.1.8_postcss@8.4.16: resolution: {integrity: sha512-8rbj8kVu00RQh2fQF81oBqtduiANu4MIxhyf0HbbStgPtnFlWn0yiaYTpLHrPnJbffVY1s9apWsIoVZcc68FxA==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.4 dependencies: - postcss: 8.4.14 + postcss: 8.4.16 postcss-value-parser: 4.2.0 dev: true - /postcss-discard-comments/5.1.2_postcss@8.4.14: + /postcss-discard-comments/5.1.2_postcss@8.4.16: resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.14 + postcss: 8.4.16 dev: true - /postcss-discard-duplicates/5.1.0_postcss@8.4.14: + /postcss-discard-duplicates/5.1.0_postcss@8.4.16: resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.14 + postcss: 8.4.16 dev: true - /postcss-discard-empty/5.1.1_postcss@8.4.14: + /postcss-discard-empty/5.1.1_postcss@8.4.16: resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.14 + postcss: 8.4.16 dev: true - /postcss-discard-overridden/5.1.0_postcss@8.4.14: + /postcss-discard-overridden/5.1.0_postcss@8.4.16: resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.14 + postcss: 8.4.16 dev: true /postcss-import-resolver/2.0.0: @@ -8601,41 +8652,41 @@ packages: dependencies: enhanced-resolve: 4.5.0 - /postcss-import/13.0.0_postcss@8.4.14: + /postcss-import/13.0.0_postcss@8.4.16: resolution: {integrity: sha512-LPUbm3ytpYopwQQjqgUH4S3EM/Gb9QsaSPP/5vnoi+oKVy3/mIk2sc0Paqw7RL57GpScm9MdIMUypw2znWiBpg==} engines: {node: '>=10.0.0'} peerDependencies: postcss: ^8.0.0 dependencies: - postcss: 8.4.14 + postcss: 8.4.16 postcss-value-parser: 4.2.0 read-cache: 1.0.0 resolve: 1.22.1 dev: true - /postcss-import/14.1.0_postcss@8.4.14: + /postcss-import/14.1.0_postcss@8.4.16: resolution: {integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==} engines: {node: '>=10.0.0'} peerDependencies: postcss: ^8.0.0 dependencies: - postcss: 8.4.14 + postcss: 8.4.16 postcss-value-parser: 4.2.0 read-cache: 1.0.0 resolve: 1.22.1 dev: true - /postcss-js/4.0.0_postcss@8.4.14: + /postcss-js/4.0.0_postcss@8.4.16: resolution: {integrity: sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ==} engines: {node: ^12 || ^14 || >= 16} peerDependencies: postcss: ^8.3.3 dependencies: camelcase-css: 2.0.1 - postcss: 8.4.14 + postcss: 8.4.16 dev: true - /postcss-load-config/3.1.4_postcss@8.4.14: + /postcss-load-config/3.1.4_postcss@8.4.16: resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==} engines: {node: '>= 10'} peerDependencies: @@ -8648,11 +8699,11 @@ packages: optional: true dependencies: lilconfig: 2.0.6 - postcss: 8.4.14 + postcss: 8.4.16 yaml: 1.10.2 dev: true - /postcss-loader/4.3.0_postcss@8.4.14: + /postcss-loader/4.3.0_postcss@8.4.16: resolution: {integrity: sha512-M/dSoIiNDOo8Rk0mUqoj4kpGq91gcxCfb9PoyZVdZ76/AuhxylHDYZblNE8o+EQ9AMSASeMFEKxZf5aU6wlx1Q==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -8665,23 +8716,23 @@ packages: cosmiconfig: 7.0.1 klona: 2.0.5 loader-utils: 2.0.2 - postcss: 8.4.14 + postcss: 8.4.16 schema-utils: 3.1.1 semver: 7.3.7 dev: true - /postcss-merge-longhand/5.1.6_postcss@8.4.14: + /postcss-merge-longhand/5.1.6_postcss@8.4.16: resolution: {integrity: sha512-6C/UGF/3T5OE2CEbOuX7iNO63dnvqhGZeUnKkDeifebY0XqkkvrctYSZurpNE902LDf2yKwwPFgotnfSoPhQiw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.14 + postcss: 8.4.16 postcss-value-parser: 4.2.0 - stylehacks: 5.1.0_postcss@8.4.14 + stylehacks: 5.1.0_postcss@8.4.16 dev: true - /postcss-merge-rules/5.1.2_postcss@8.4.14: + /postcss-merge-rules/5.1.2_postcss@8.4.16: resolution: {integrity: sha512-zKMUlnw+zYCWoPN6yhPjtcEdlJaMUZ0WyVcxTAmw3lkkN/NDMRkOkiuctQEoWAOvH7twaxUUdvBWl0d4+hifRQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -8689,220 +8740,220 @@ packages: dependencies: browserslist: 4.21.3 caniuse-api: 3.0.0 - cssnano-utils: 3.1.0_postcss@8.4.14 - postcss: 8.4.14 + cssnano-utils: 3.1.0_postcss@8.4.16 + postcss: 8.4.16 postcss-selector-parser: 6.0.10 dev: true - /postcss-minify-font-values/5.1.0_postcss@8.4.14: + /postcss-minify-font-values/5.1.0_postcss@8.4.16: resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.14 + postcss: 8.4.16 postcss-value-parser: 4.2.0 dev: true - /postcss-minify-gradients/5.1.1_postcss@8.4.14: + /postcss-minify-gradients/5.1.1_postcss@8.4.16: resolution: {integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - colord: 2.9.2 - cssnano-utils: 3.1.0_postcss@8.4.14 - postcss: 8.4.14 + colord: 2.9.3 + cssnano-utils: 3.1.0_postcss@8.4.16 + postcss: 8.4.16 postcss-value-parser: 4.2.0 dev: true - /postcss-minify-params/5.1.3_postcss@8.4.14: + /postcss-minify-params/5.1.3_postcss@8.4.16: resolution: {integrity: sha512-bkzpWcjykkqIujNL+EVEPOlLYi/eZ050oImVtHU7b4lFS82jPnsCb44gvC6pxaNt38Els3jWYDHTjHKf0koTgg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: browserslist: 4.21.3 - cssnano-utils: 3.1.0_postcss@8.4.14 - postcss: 8.4.14 + cssnano-utils: 3.1.0_postcss@8.4.16 + postcss: 8.4.16 postcss-value-parser: 4.2.0 dev: true - /postcss-minify-selectors/5.2.1_postcss@8.4.14: + /postcss-minify-selectors/5.2.1_postcss@8.4.16: resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.14 + postcss: 8.4.16 postcss-selector-parser: 6.0.10 dev: true - /postcss-modules-extract-imports/3.0.0_postcss@8.4.14: + /postcss-modules-extract-imports/3.0.0_postcss@8.4.16: resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.14 + postcss: 8.4.16 dev: true - /postcss-modules-local-by-default/4.0.0_postcss@8.4.14: + /postcss-modules-local-by-default/4.0.0_postcss@8.4.16: resolution: {integrity: sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - icss-utils: 5.1.0_postcss@8.4.14 - postcss: 8.4.14 + icss-utils: 5.1.0_postcss@8.4.16 + postcss: 8.4.16 postcss-selector-parser: 6.0.10 postcss-value-parser: 4.2.0 dev: true - /postcss-modules-scope/3.0.0_postcss@8.4.14: + /postcss-modules-scope/3.0.0_postcss@8.4.16: resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.14 + postcss: 8.4.16 postcss-selector-parser: 6.0.10 dev: true - /postcss-modules-values/4.0.0_postcss@8.4.14: + /postcss-modules-values/4.0.0_postcss@8.4.16: resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - icss-utils: 5.1.0_postcss@8.4.14 - postcss: 8.4.14 + icss-utils: 5.1.0_postcss@8.4.16 + postcss: 8.4.16 dev: true - /postcss-nested/5.0.6_postcss@8.4.14: + /postcss-nested/5.0.6_postcss@8.4.16: resolution: {integrity: sha512-rKqm2Fk0KbA8Vt3AdGN0FB9OBOMDVajMG6ZCf/GoHgdxUJ4sBFp0A/uMIRm+MJUdo33YXEtjqIz8u7DAp8B7DA==} engines: {node: '>=12.0'} peerDependencies: postcss: ^8.2.14 dependencies: - postcss: 8.4.14 + postcss: 8.4.16 postcss-selector-parser: 6.0.10 dev: true - /postcss-nesting/10.1.10_postcss@8.4.14: + /postcss-nesting/10.1.10_postcss@8.4.16: resolution: {integrity: sha512-lqd7LXCq0gWc0wKXtoKDru5wEUNjm3OryLVNRZ8OnW8km6fSNUuFrjEhU3nklxXE2jvd4qrox566acgh+xQt8w==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - '@csstools/selector-specificity': 2.0.2_444rcjjorr3kpoqtvoodsr46pu - postcss: 8.4.14 + '@csstools/selector-specificity': 2.0.2_pnx64jze6bptzcedy5bidi3zdi + postcss: 8.4.16 postcss-selector-parser: 6.0.10 dev: true - /postcss-normalize-charset/5.1.0_postcss@8.4.14: + /postcss-normalize-charset/5.1.0_postcss@8.4.16: resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.14 + postcss: 8.4.16 dev: true - /postcss-normalize-display-values/5.1.0_postcss@8.4.14: + /postcss-normalize-display-values/5.1.0_postcss@8.4.16: resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.14 + postcss: 8.4.16 postcss-value-parser: 4.2.0 dev: true - /postcss-normalize-positions/5.1.1_postcss@8.4.14: + /postcss-normalize-positions/5.1.1_postcss@8.4.16: resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.14 + postcss: 8.4.16 postcss-value-parser: 4.2.0 dev: true - /postcss-normalize-repeat-style/5.1.1_postcss@8.4.14: + /postcss-normalize-repeat-style/5.1.1_postcss@8.4.16: resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.14 + postcss: 8.4.16 postcss-value-parser: 4.2.0 dev: true - /postcss-normalize-string/5.1.0_postcss@8.4.14: + /postcss-normalize-string/5.1.0_postcss@8.4.16: resolution: {integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.14 + postcss: 8.4.16 postcss-value-parser: 4.2.0 dev: true - /postcss-normalize-timing-functions/5.1.0_postcss@8.4.14: + /postcss-normalize-timing-functions/5.1.0_postcss@8.4.16: resolution: {integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.14 + postcss: 8.4.16 postcss-value-parser: 4.2.0 dev: true - /postcss-normalize-unicode/5.1.0_postcss@8.4.14: + /postcss-normalize-unicode/5.1.0_postcss@8.4.16: resolution: {integrity: sha512-J6M3MizAAZ2dOdSjy2caayJLQT8E8K9XjLce8AUQMwOrCvjCHv24aLC/Lps1R1ylOfol5VIDMaM/Lo9NGlk1SQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: browserslist: 4.21.3 - postcss: 8.4.14 + postcss: 8.4.16 postcss-value-parser: 4.2.0 dev: true - /postcss-normalize-url/5.1.0_postcss@8.4.14: + /postcss-normalize-url/5.1.0_postcss@8.4.16: resolution: {integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: normalize-url: 6.1.0 - postcss: 8.4.14 + postcss: 8.4.16 postcss-value-parser: 4.2.0 dev: true - /postcss-normalize-whitespace/5.1.1_postcss@8.4.14: + /postcss-normalize-whitespace/5.1.1_postcss@8.4.16: resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.14 + postcss: 8.4.16 postcss-value-parser: 4.2.0 dev: true - /postcss-ordered-values/5.1.3_postcss@8.4.14: + /postcss-ordered-values/5.1.3_postcss@8.4.16: resolution: {integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - cssnano-utils: 3.1.0_postcss@8.4.14 - postcss: 8.4.14 + cssnano-utils: 3.1.0_postcss@8.4.16 + postcss: 8.4.16 postcss-value-parser: 4.2.0 dev: true - /postcss-reduce-initial/5.1.0_postcss@8.4.14: + /postcss-reduce-initial/5.1.0_postcss@8.4.16: resolution: {integrity: sha512-5OgTUviz0aeH6MtBjHfbr57tml13PuedK/Ecg8szzd4XRMbYxH4572JFG067z+FqBIf6Zp/d+0581glkvvWMFw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -8910,16 +8961,16 @@ packages: dependencies: browserslist: 4.21.3 caniuse-api: 3.0.0 - postcss: 8.4.14 + postcss: 8.4.16 dev: true - /postcss-reduce-transforms/5.1.0_postcss@8.4.14: + /postcss-reduce-transforms/5.1.0_postcss@8.4.16: resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.14 + postcss: 8.4.16 postcss-value-parser: 4.2.0 dev: true @@ -8931,28 +8982,28 @@ packages: util-deprecate: 1.0.2 dev: true - /postcss-svgo/5.1.0_postcss@8.4.14: + /postcss-svgo/5.1.0_postcss@8.4.16: resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.14 + postcss: 8.4.16 postcss-value-parser: 4.2.0 svgo: 2.8.0 dev: true - /postcss-unique-selectors/5.1.1_postcss@8.4.14: + /postcss-unique-selectors/5.1.1_postcss@8.4.16: resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.14 + postcss: 8.4.16 postcss-selector-parser: 6.0.10 dev: true - /postcss-url/10.1.3_postcss@8.4.14: + /postcss-url/10.1.3_postcss@8.4.16: resolution: {integrity: sha512-FUzyxfI5l2tKmXdYc6VTu3TWZsInayEKPbiyW+P6vmmIrrb4I6CGX0BFoewgYHLK+oIL5FECEK02REYRpBvUCw==} engines: {node: '>=10'} peerDependencies: @@ -8961,7 +9012,7 @@ packages: make-dir: 3.1.0 mime: 2.5.2 minimatch: 3.0.8 - postcss: 8.4.14 + postcss: 8.4.16 xxhashjs: 0.2.2 dev: true @@ -8969,8 +9020,8 @@ packages: resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} dev: true - /postcss/8.4.14: - resolution: {integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==} + /postcss/8.4.16: + resolution: {integrity: sha512-ipHE1XBvKzm5xI7hiHCZJCSugxvsdq2mPnsq5+UF+VHCjiBvtDrlxJfMBToWaP9D5XlgNmcFGqoHmUn0EYEaRQ==} engines: {node: ^10 || ^12 || >=14} dependencies: nanoid: 3.3.4 @@ -8983,8 +9034,8 @@ packages: babylon: 6.18.0 dev: true - /preact/10.10.0: - resolution: {integrity: sha512-fszkg1iJJjq68I4lI8ZsmBiaoQiQHbxf1lNq+72EmC/mZOsFF5zn3k1yv9QGoFgIXzgsdSKtYymLJsrJPoamjQ==} + /preact/10.10.2: + resolution: {integrity: sha512-GUXSsfwq4NKhlLYY5ctfNE0IjFk7Xo4952yPI8yMkXdhzeQmQ+FahZITe7CeHXMPyKBVQ8SoCmGNIy9TSOdhgQ==} dev: true /prelude-ls/1.2.1: @@ -9024,10 +9075,6 @@ packages: dependencies: asap: 2.0.6 - /protocols/1.4.8: - resolution: {integrity: sha512-IgjKyaUSjsROSO8/D49Ab7hP8mJgTYcqApOqdPhLoPxAplXmkp+zRvsrSQjFn5by0rhm4VH0GAUELIPpx7B1yg==} - dev: true - /protocols/2.0.1: resolution: {integrity: sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==} dev: true @@ -9119,16 +9166,6 @@ packages: engines: {node: '>=0.6'} dev: true - /query-string/6.14.1: - resolution: {integrity: sha512-XDxAeVmpfu1/6IjyT/gXHOl+S0vQ9owggJ30hhWKdHAsNPOcasn5o9BW0eejZqL2e4vMjhAxoW3jVHcD6mbcYw==} - engines: {node: '>=6'} - dependencies: - decode-uri-component: 0.2.0 - filter-obj: 1.1.0 - split-on-first: 1.1.0 - strict-uri-encode: 2.0.0 - dev: true - /queue-microtask/1.2.3: resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} @@ -9314,11 +9351,6 @@ packages: engines: {node: '>=0.10.0'} dev: true - /require-from-string/2.0.2: - resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} - engines: {node: '>=0.10.0'} - dev: true - /requires-port/1.0.0: resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} dev: true @@ -9345,7 +9377,7 @@ packages: resolution: {integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==} hasBin: true dependencies: - is-core-module: 2.9.0 + is-core-module: 2.10.0 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 @@ -9357,6 +9389,14 @@ packages: signal-exit: 3.0.7 dev: true + /restore-cursor/4.0.0: + resolution: {integrity: sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dependencies: + onetime: 5.1.2 + signal-exit: 3.0.7 + dev: true + /retry/0.13.1: resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==} engines: {node: '>= 4'} @@ -9461,8 +9501,8 @@ packages: /safer-buffer/2.1.2: resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} - /sass/1.54.0: - resolution: {integrity: sha512-C4zp79GCXZfK0yoHZg+GxF818/aclhp9F48XBu/+bm9vXEVAYov9iU3FBVRMq3Hx3OA4jfKL+p2K9180mEh0xQ==} + /sass/1.54.4: + resolution: {integrity: sha512-3tmF16yvnBwtlPrNBHw/H907j8MlOX8aTBnlNX1yrKx24RKcJGPyLhFUwkoKBKesR3unP93/2z14Ll8NicwQUA==} engines: {node: '>=12.0.0'} hasBin: true dependencies: @@ -9489,6 +9529,9 @@ packages: /scule/0.2.1: resolution: {integrity: sha512-M9gnWtn3J0W+UhJOHmBxBTwv8mZCan5i1Himp60t6vvZcor0wr+IM0URKmIglsWJ7bRujNAVVN77fp+uZaWoKg==} + /scule/0.3.2: + resolution: {integrity: sha512-zIvPdjOH8fv8CgrPT5eqtxHQXmPNnV/vHJYffZhE43KZkvULvpCTvOt1HPlFaCZx287INL9qaqrZg34e8NgI4g==} + /selfsigned/2.0.1: resolution: {integrity: sha512-LmME957M1zOsUhG+67rAjKfiWFox3SBxE/yymatMZsAx+oMrJ0YQ8AToOnyCm7xbeg2ep37IHLxdu0o2MavQOQ==} engines: {node: '>=10'} @@ -9712,11 +9755,6 @@ packages: resolution: {integrity: sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g==} dev: true - /split-on-first/1.1.0: - resolution: {integrity: sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==} - engines: {node: '>=6'} - dev: true - /split/0.3.3: resolution: {integrity: sha512-wD2AeVmxXRBoX44wAycgjVpMhvbwdI2aZjCkvfNcH1YqHQvJVa1duWc73OyVGJUc05fhFaTZeQ/PYsrmyH0JVA==} dependencies: @@ -9806,11 +9844,6 @@ packages: engines: {node: '>=0.8.0'} dev: true - /strict-uri-encode/2.0.0: - resolution: {integrity: sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==} - engines: {node: '>=4'} - dev: true - /string-width/4.2.3: resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} engines: {node: '>=8'} @@ -9820,6 +9853,15 @@ packages: strip-ansi: 6.0.1 dev: true + /string-width/5.1.2: + resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} + engines: {node: '>=12'} + dependencies: + eastasianwidth: 0.2.0 + emoji-regex: 9.2.2 + strip-ansi: 7.0.1 + dev: true + /string.prototype.trimend/1.0.5: resolution: {integrity: sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog==} dependencies: @@ -9853,6 +9895,13 @@ packages: ansi-regex: 5.0.1 dev: true + /strip-ansi/7.0.1: + resolution: {integrity: sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==} + engines: {node: '>=12'} + dependencies: + ansi-regex: 6.0.1 + dev: true + /strip-bom/3.0.0: resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} engines: {node: '>=4'} @@ -9885,14 +9934,14 @@ packages: dependencies: acorn: 8.8.0 - /stylehacks/5.1.0_postcss@8.4.14: + /stylehacks/5.1.0_postcss@8.4.16: resolution: {integrity: sha512-SzLmvHQTrIWfSgljkQCw2++C9+Ne91d/6Sp92I8c5uHTcy/PgeHamwITIbBW9wnFTY/3ZfSXR9HIL6Ikqmcu6Q==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: browserslist: 4.21.3 - postcss: 8.4.14 + postcss: 8.4.16 postcss-selector-parser: 6.0.10 dev: true @@ -9973,18 +10022,7 @@ packages: dependencies: get-port: 3.2.0 - /table/6.8.0: - resolution: {integrity: sha512-s/fitrbVeEyHKFa7mFdkuQMWlH1Wgw/yEXMt5xACT4ZpzWFluehAxRtUUQKPuWhaLAWhFcVx6w3oC8VKaUfPGA==} - engines: {node: '>=10.0.0'} - dependencies: - ajv: 8.11.0 - lodash.truncate: 4.4.2 - slice-ansi: 4.0.0 - string-width: 4.2.3 - strip-ansi: 6.0.1 - dev: true - - /tailwind-config-viewer/1.7.1_tailwindcss@3.1.7: + /tailwind-config-viewer/1.7.1_tailwindcss@3.1.8: resolution: {integrity: sha512-EtDwFzgQEMJ6dFmp/6K+QJSP7NWANrGDsbwkn/BEq7MVJd/dEIZ5BBZTxo5jx+opa3HNJu/CHtWanKSCrgNwpA==} engines: {node: '>=8'} hasBin: true @@ -9997,15 +10035,15 @@ packages: koa: 2.13.4 koa-static: 5.0.0 open: 7.4.2 - portfinder: 1.0.28 + portfinder: 1.0.29 replace-in-file: 6.3.5 - tailwindcss: 3.1.7 + tailwindcss: 3.1.8 transitivePeerDependencies: - supports-color dev: true - /tailwindcss/3.1.7: - resolution: {integrity: sha512-r7mgumZ3k0InfVPpGWcX8X/Ut4xBfv+1O/+C73ar/m01LxGVzWvPxF/w6xIUPEztrCoz7axfx0SMdh8FH8ZvRQ==} + /tailwindcss/3.1.8: + resolution: {integrity: sha512-YSneUCZSFDYMwk+TGq8qYFdCA3yfBRdBlS7txSq0LUmzyeqRe3a8fBQzbz9M3WS/iFT4BNf/nmw9mEzrnSaC0g==} engines: {node: '>=12.13.0'} hasBin: true dependencies: @@ -10022,11 +10060,11 @@ packages: normalize-path: 3.0.0 object-hash: 3.0.0 picocolors: 1.0.0 - postcss: 8.4.14 - postcss-import: 14.1.0_postcss@8.4.14 - postcss-js: 4.0.0_postcss@8.4.14 - postcss-load-config: 3.1.4_postcss@8.4.14 - postcss-nested: 5.0.6_postcss@8.4.14 + postcss: 8.4.16 + postcss-import: 14.1.0_postcss@8.4.16 + postcss-js: 4.0.0_postcss@8.4.16 + postcss-load-config: 3.1.4_postcss@8.4.16 + postcss-nested: 5.0.6_postcss@8.4.16 postcss-selector-parser: 6.0.10 postcss-value-parser: 4.2.0 quick-lru: 5.1.1 @@ -10178,14 +10216,14 @@ packages: resolution: {integrity: sha512-2IfcQh7CP46XGWGGbdyO4pjcKqsmVqFAPcXfPxcPXmOWt9cYkTP9HcDmGgsfijYoAEc4z9qcpM/BaBz46Y9/CQ==} engines: {node: '>=14.0.0'} - /tldts-core/5.7.87: - resolution: {integrity: sha512-I0nEU8tk6W8qDqVqp7n8NHmvGBhz5GJJf6twiv1D+Z+/ntyR/UxyxxAUY9apqFvaFMpHlc5qfecsBk2Gss0r+Q==} + /tldts-core/5.7.88: + resolution: {integrity: sha512-MNSlUtyqgNHAj1Go8X9/Pv2ZYapyMX8K22bNUPD6uX/mBtdSXvolS9MeHvhI4GDAwxeqTxGYqUE3IpbPp52apQ==} dev: false - /tldts-experimental/5.7.87: - resolution: {integrity: sha512-nqO3GsFHFSz7rVYU2K/3YVCQUj4ujW0sJ4HPZ8NY88OPCR4qrK0ZC8GW3qYOKgUIWMMyu+FZwuzqxcye8smomg==} + /tldts-experimental/5.7.88: + resolution: {integrity: sha512-e+6F+CiGjLuIMk6KwmCE9T62D1fgxpboWFeYCMPYV4sMVtK7ZD7YVGPBIBJsIgI+i/bCxhbKdTeBCJBsAatriQ==} dependencies: - tldts-core: 5.7.87 + tldts-core: 5.7.88 dev: false /tmp/0.0.33: @@ -10337,6 +10375,11 @@ packages: engines: {node: '>=8'} dev: true + /type-fest/1.4.0: + resolution: {integrity: sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==} + engines: {node: '>=10'} + dev: true + /type-fest/2.18.0: resolution: {integrity: sha512-pRS+/yrW5TjPPHNOvxhbNZexr2bS63WjrMU8a+VzEBhUi9Tz1pZeD+vQz3ut0svZ46P+SRqMEPnJmk2XnvNzTw==} engines: {node: '>=12.20'} @@ -10390,8 +10433,8 @@ packages: through: 2.3.8 dev: false - /unctx/1.1.4: - resolution: {integrity: sha512-fQMML+GjUpIjQa0HBrrJezo2dFpTAbQbU0/KFKw4T5wpc9deGjLHSYthdfNAo2xSWM34csI6arzedezQkqtfGw==} + /unctx/1.2.0: + resolution: {integrity: sha512-r3p62XKSMvgttYu3fFf52rteqcguwQENJ863dOGM1xM3uUbSNbr+zAuTohMyKx2pcZLmjusgcnl1cAWaZbCzKg==} dependencies: acorn: 8.8.0 estree-walker: 2.0.2 @@ -10404,13 +10447,13 @@ packages: - webpack dev: true - /unctx/1.1.4_jrvqukh3b5mfeoj65bpiacdnni: - resolution: {integrity: sha512-fQMML+GjUpIjQa0HBrrJezo2dFpTAbQbU0/KFKw4T5wpc9deGjLHSYthdfNAo2xSWM34csI6arzedezQkqtfGw==} + /unctx/1.2.0_ttcr3qoj3dxtp3akggcf7hpseu: + resolution: {integrity: sha512-r3p62XKSMvgttYu3fFf52rteqcguwQENJ863dOGM1xM3uUbSNbr+zAuTohMyKx2pcZLmjusgcnl1cAWaZbCzKg==} dependencies: acorn: 8.8.0 estree-walker: 2.0.2 magic-string: 0.26.2 - unplugin: 0.6.3_jrvqukh3b5mfeoj65bpiacdnni + unplugin: 0.6.3_ttcr3qoj3dxtp3akggcf7hpseu transitivePeerDependencies: - esbuild - rollup @@ -10418,8 +10461,8 @@ packages: - webpack dev: true - /unctx/1.1.4_vite@2.9.14: - resolution: {integrity: sha512-fQMML+GjUpIjQa0HBrrJezo2dFpTAbQbU0/KFKw4T5wpc9deGjLHSYthdfNAo2xSWM34csI6arzedezQkqtfGw==} + /unctx/1.2.0_vite@2.9.14: + resolution: {integrity: sha512-r3p62XKSMvgttYu3fFf52rteqcguwQENJ863dOGM1xM3uUbSNbr+zAuTohMyKx2pcZLmjusgcnl1cAWaZbCzKg==} dependencies: acorn: 8.8.0 estree-walker: 2.0.2 @@ -10432,37 +10475,18 @@ packages: - webpack dev: false - /undici/5.8.0: - resolution: {integrity: sha512-1F7Vtcez5w/LwH2G2tGnFIihuWUlc58YidwLiCv+jR2Z50x0tNXpRRw7eOIJ+GvqCqIkg9SB7NWAJ/T9TLfv8Q==} + /undici/5.8.2: + resolution: {integrity: sha512-3KLq3pXMS0Y4IELV045fTxqz04Nk9Ms7yfBBHum3yxsTR4XNn+ZCaUbf/mWitgYDAhsplQ0B1G4S5D345lMO3A==} engines: {node: '>=12.18'} dev: true - /unenv/0.5.2: - resolution: {integrity: sha512-dojYcCqOFEWZosvqWs/AEaEfM/tLJexMKBW0ebkn6JKfEnYR5fKxbYJB8QV9kAPXV/ENseeWQkv6uJ3KCXz+1g==} + /unenv/0.5.3: + resolution: {integrity: sha512-cux5XhVyN2Vul2NlA0eKCazBAZXHhtMs5D04GKdER7aBRTr2BDiqkZQEdwJcpEwIevwxBiuMG7BAlHW6AqNA7g==} dependencies: defu: 6.0.0 mime: 3.0.0 node-fetch-native: 0.1.4 - pathe: 0.3.3 - dev: true - - /unimport/0.1.9: - resolution: {integrity: sha512-ap7MnS7zuA4A8eAyA8CHN3YFw1tMpWQK3rSrh6jvrB3tWkT4EKvslg9sNoax5WuL8TnMaXSydRxwOgUUXrnovg==} - dependencies: - '@rollup/pluginutils': 4.2.1 - escape-string-regexp: 5.0.0 - globby: 13.1.2 - local-pkg: 0.4.2 - magic-string: 0.26.2 - mlly: 0.5.5 - pathe: 0.3.3 - scule: 0.2.1 - unplugin: 0.6.3 - transitivePeerDependencies: - - esbuild - - rollup - - vite - - webpack + pathe: 0.3.4 dev: true /unimport/0.4.7: @@ -10473,8 +10497,8 @@ packages: fast-glob: 3.2.11 local-pkg: 0.4.2 magic-string: 0.26.2 - mlly: 0.5.5 - pathe: 0.3.3 + mlly: 0.5.9 + pathe: 0.3.4 scule: 0.2.1 strip-literal: 0.4.0 unplugin: 0.7.2 @@ -10485,7 +10509,7 @@ packages: - webpack dev: true - /unimport/0.4.7_ecpsl2p7zl5puhr4xxlpah6uzm: + /unimport/0.4.7_ttcr3qoj3dxtp3akggcf7hpseu: resolution: {integrity: sha512-V2Pbscd1VSdgWm1/OI2pjtydEOTjE7DDnHZKhpOq7bSUBc1i8+1f6PK8jI1lJ1plRDcSNr0DLtAmtU9NPkFQpw==} dependencies: '@rollup/pluginutils': 4.2.1 @@ -10493,11 +10517,11 @@ packages: fast-glob: 3.2.11 local-pkg: 0.4.2 magic-string: 0.26.2 - mlly: 0.5.5 - pathe: 0.3.3 + mlly: 0.5.9 + pathe: 0.3.4 scule: 0.2.1 strip-literal: 0.4.0 - unplugin: 0.7.2_ecpsl2p7zl5puhr4xxlpah6uzm + unplugin: 0.7.2_ttcr3qoj3dxtp3akggcf7hpseu transitivePeerDependencies: - esbuild - rollup @@ -10505,7 +10529,7 @@ packages: - webpack dev: true - /unimport/0.4.7_jrvqukh3b5mfeoj65bpiacdnni: + /unimport/0.4.7_vite@2.9.14: resolution: {integrity: sha512-V2Pbscd1VSdgWm1/OI2pjtydEOTjE7DDnHZKhpOq7bSUBc1i8+1f6PK8jI1lJ1plRDcSNr0DLtAmtU9NPkFQpw==} dependencies: '@rollup/pluginutils': 4.2.1 @@ -10513,36 +10537,36 @@ packages: fast-glob: 3.2.11 local-pkg: 0.4.2 magic-string: 0.26.2 - mlly: 0.5.5 - pathe: 0.3.3 + mlly: 0.5.9 + pathe: 0.3.4 scule: 0.2.1 strip-literal: 0.4.0 - unplugin: 0.7.2_jrvqukh3b5mfeoj65bpiacdnni + unplugin: 0.7.2_vite@2.9.14 transitivePeerDependencies: - esbuild - rollup - vite - webpack - dev: true - /unimport/0.4.7_vite@2.9.14: - resolution: {integrity: sha512-V2Pbscd1VSdgWm1/OI2pjtydEOTjE7DDnHZKhpOq7bSUBc1i8+1f6PK8jI1lJ1plRDcSNr0DLtAmtU9NPkFQpw==} + /unimport/0.6.7_axviaedfcx2tizy6rzan5phlym: + resolution: {integrity: sha512-EMoVqDjswHkU+nD098QYHXH7Mkw7KwGDQAyeRF2lgairJnuO+wpkhIcmCqrD1OPJmsjkTbJ2tW6Ap8St0PuWZA==} dependencies: '@rollup/pluginutils': 4.2.1 escape-string-regexp: 5.0.0 fast-glob: 3.2.11 local-pkg: 0.4.2 magic-string: 0.26.2 - mlly: 0.5.5 - pathe: 0.3.3 - scule: 0.2.1 + mlly: 0.5.9 + pathe: 0.3.4 + scule: 0.3.2 strip-literal: 0.4.0 - unplugin: 0.7.2_vite@2.9.14 + unplugin: 0.9.0_axviaedfcx2tizy6rzan5phlym transitivePeerDependencies: - esbuild - rollup - vite - webpack + dev: true /universalify/0.1.2: resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} @@ -10562,7 +10586,7 @@ packages: peerDependencies: esbuild: '>=0.13' rollup: ^2.50.0 - vite: ^2.3.0 + vite: ^2.3.0 || ^2.9.0 || ^3.0.0 webpack: 4 || 5 peerDependenciesMeta: esbuild: @@ -10579,12 +10603,12 @@ packages: webpack-virtual-modules: 0.4.4 dev: true - /unplugin/0.6.3_jrvqukh3b5mfeoj65bpiacdnni: + /unplugin/0.6.3_ttcr3qoj3dxtp3akggcf7hpseu: resolution: {integrity: sha512-CoW88FQfCW/yabVc4bLrjikN9HC8dEvMU4O7B6K2jsYMPK0l6iAnd9dpJwqGcmXJKRCU9vwSsy653qg+RK0G6A==} peerDependencies: esbuild: '>=0.13' rollup: ^2.50.0 - vite: ^2.3.0 + vite: ^2.3.0 || ^2.9.0 || ^3.0.0 webpack: 4 || 5 peerDependenciesMeta: esbuild: @@ -10597,7 +10621,7 @@ packages: optional: true dependencies: chokidar: 3.5.3 - esbuild: 0.14.51 + esbuild: 0.14.54 rollup: 2.77.2 vite: 2.9.14 webpack-sources: 3.2.3 @@ -10609,7 +10633,7 @@ packages: peerDependencies: esbuild: '>=0.13' rollup: ^2.50.0 - vite: ^2.3.0 + vite: ^2.3.0 || ^2.9.0 || ^3.0.0 webpack: 4 || 5 peerDependenciesMeta: esbuild: @@ -10632,7 +10656,7 @@ packages: peerDependencies: esbuild: '>=0.13' rollup: ^2.50.0 - vite: ^2.3.0 || ^3.0.0-0 + vite: ^2.3.0 || ^3.0.0-0 || ^2.9.0 || ^3.0.0 webpack: 4 || 5 peerDependenciesMeta: esbuild: @@ -10650,12 +10674,12 @@ packages: webpack-virtual-modules: 0.4.4 dev: true - /unplugin/0.7.2_ecpsl2p7zl5puhr4xxlpah6uzm: + /unplugin/0.7.2_ttcr3qoj3dxtp3akggcf7hpseu: resolution: {integrity: sha512-m7thX4jP8l5sETpLdUASoDOGOcHaOVtgNyrYlToyQUvILUtEzEnngRBrHnAX3IKqooJVmXpoa/CwQ/QqzvGaHQ==} peerDependencies: esbuild: '>=0.13' rollup: ^2.50.0 - vite: ^2.3.0 || ^3.0.0-0 + vite: ^2.3.0 || ^3.0.0-0 || ^2.9.0 || ^3.0.0 webpack: 4 || 5 peerDependenciesMeta: esbuild: @@ -10669,18 +10693,19 @@ packages: dependencies: acorn: 8.8.0 chokidar: 3.5.3 - esbuild: 0.14.51 + esbuild: 0.14.54 rollup: 2.77.2 + vite: 2.9.14 webpack-sources: 3.2.3 webpack-virtual-modules: 0.4.4 dev: true - /unplugin/0.7.2_jrvqukh3b5mfeoj65bpiacdnni: + /unplugin/0.7.2_vite@2.9.14: resolution: {integrity: sha512-m7thX4jP8l5sETpLdUASoDOGOcHaOVtgNyrYlToyQUvILUtEzEnngRBrHnAX3IKqooJVmXpoa/CwQ/QqzvGaHQ==} peerDependencies: esbuild: '>=0.13' rollup: ^2.50.0 - vite: ^2.3.0 || ^3.0.0-0 + vite: ^2.3.0 || ^3.0.0-0 || ^2.9.0 || ^3.0.0 webpack: 4 || 5 peerDependenciesMeta: esbuild: @@ -10694,19 +10719,16 @@ packages: dependencies: acorn: 8.8.0 chokidar: 3.5.3 - esbuild: 0.14.51 - rollup: 2.77.2 vite: 2.9.14 webpack-sources: 3.2.3 webpack-virtual-modules: 0.4.4 - dev: true - /unplugin/0.7.2_vite@2.9.14: - resolution: {integrity: sha512-m7thX4jP8l5sETpLdUASoDOGOcHaOVtgNyrYlToyQUvILUtEzEnngRBrHnAX3IKqooJVmXpoa/CwQ/QqzvGaHQ==} + /unplugin/0.9.0_axviaedfcx2tizy6rzan5phlym: + resolution: {integrity: sha512-6o7q8Y9yxdPi5yCPmRuFfeNnVzGumRNZSK6hIkvZ6hd0cfigVdm0qBx/GgQ/NEjs54eUV1qTjvMYKRs9yh3rzw==} peerDependencies: esbuild: '>=0.13' rollup: ^2.50.0 - vite: ^2.3.0 || ^3.0.0-0 + vite: ^2.3.0 || ^3.0.0-0 || ^2.9.0 || ^3.0.0 webpack: 4 || 5 peerDependenciesMeta: esbuild: @@ -10720,9 +10742,11 @@ packages: dependencies: acorn: 8.8.0 chokidar: 3.5.3 - vite: 2.9.14 + esbuild: 0.14.54 + rollup: 2.77.2 webpack-sources: 3.2.3 webpack-virtual-modules: 0.4.4 + dev: true /unstorage/0.5.6: resolution: {integrity: sha512-TUm1ZyLkVamRfM+uWmWtavlzri3XS0ajYXKhlrAZ8aCChMwH29lufOfAP0bsMaBHuciIVfycaGgNhHeyLONpdA==} @@ -10730,9 +10754,9 @@ packages: anymatch: 3.1.2 chokidar: 3.5.3 destr: 1.1.1 - h3: 0.7.13 + h3: 0.7.15 ioredis: 5.2.2 - listhen: 0.2.13 + listhen: 0.2.15 mri: 1.2.0 ohmyfetch: 0.4.18 ufo: 0.8.5 @@ -10748,13 +10772,13 @@ packages: engines: {node: '>=8'} dev: true - /untyped/0.4.4: - resolution: {integrity: sha512-sY6u8RedwfLfBis0copfU/fzROieyAndqPs8Kn2PfyzTjtA88vCk81J1b5z+8/VJc+cwfGy23/AqOCpvAbkNVw==} + /untyped/0.4.5: + resolution: {integrity: sha512-buq9URfOj4xAnVfu6BYNKzHZLHAzsCbHsDc/kHy66ESMqRpj00oD9qWf2M2qm0pC0DigsVxRF3uhOa5HJtrwGA==} dependencies: '@babel/core': 7.18.10 - '@babel/standalone': 7.18.10 + '@babel/standalone': 7.18.12 '@babel/types': 7.18.10 - scule: 0.2.1 + scule: 0.3.2 transitivePeerDependencies: - supports-color @@ -10840,37 +10864,39 @@ packages: extsprintf: 1.3.0 dev: true - /vite-node/0.12.1: - resolution: {integrity: sha512-o5fblIyaMWW4h2hNppSKZ9hKZMMHpz3E40A3W+O4wsWc1G/VCZiHYX3EplZpn3MBNhzUTU7144xG22qpyOMY7w==} + /vite-node/0.18.1: + resolution: {integrity: sha512-tS73HzJn0DokGC/QRi0GzrzKjwjTE7eAroKsZYzqYUclttK1gGb5jDeilAVql89SMVSkcGwnxk/Xu6aoDWa5MQ==} engines: {node: '>=v14.16.0'} hasBin: true dependencies: + debug: 4.3.4 kolorist: 1.5.1 - mlly: 0.5.5 + mlly: 0.5.9 pathe: 0.2.0 vite: 2.9.14 transitivePeerDependencies: - less - sass - stylus - dev: false + - supports-color + dev: true - /vite-node/0.18.1: - resolution: {integrity: sha512-tS73HzJn0DokGC/QRi0GzrzKjwjTE7eAroKsZYzqYUclttK1gGb5jDeilAVql89SMVSkcGwnxk/Xu6aoDWa5MQ==} + /vite-node/0.21.1: + resolution: {integrity: sha512-JYEGMLovQOFoInIbSEXWApBp9ycEJEvlHFLheeR27ZXwpN7Oqy0jNJzh4gsmowTJt1VxtDwjkIU1p359Q/anAw==} engines: {node: '>=v14.16.0'} hasBin: true dependencies: debug: 4.3.4 - kolorist: 1.5.1 - mlly: 0.5.5 + mlly: 0.5.9 pathe: 0.2.0 - vite: 2.9.14 + vite: 3.0.5 transitivePeerDependencies: - less - sass - stylus - supports-color - dev: true + - terser + dev: false /vite-node/0.3.6: resolution: {integrity: sha512-uJKzaOPUwthqDVWN8zIWxreMaiNOsQjh7HmyAAlGFRC/1ac9J3jcKV13LBVJ0TfAl0o0sagnHSQlLcDa0T8oUg==} @@ -10892,7 +10918,7 @@ packages: resolution: {integrity: sha512-Oii9mTum8bqZovWejcR739kCqST32oG6LdB/XMdwcLVzmcjq0gf1iVDIedVzJJ7t6GLQAYgjNwvB0fuMiT3tlg==} hasBin: true peerDependencies: - vite: ^2.0.0 || ^3.0.0-0 + vite: ^2.0.0 || ^3.0.0-0 || ^2.9.0 || ^3.0.0 dependencies: '@babel/code-frame': 7.18.6 ansi-escapes: 4.3.2 @@ -10912,17 +10938,17 @@ packages: vscode-uri: 3.0.3 dev: true - /vite-plugin-vuetify/1.0.0-alpha.12_w52zhfion3iv5bvbedrh5mosdm: + /vite-plugin-vuetify/1.0.0-alpha.12_6tyjwtjmg2vdgx3bsuq7igapb4: resolution: {integrity: sha512-DMb7oY6F67P1RTEU28xQePUnyZdm+sbeGgIF3exBrA5yLL8NKKPIahqJN4+MAWMXCJVwNKy7nsS6zVgOLtcoQg==} engines: {node: '>=12'} peerDependencies: - vite: ^2.7.0 + vite: ^2.7.0 || ^2.9.0 || ^3.0.0 vuetify: ^3.0.0-beta.4 dependencies: - '@vuetify/loader-shared': 1.5.1_ylgjwudkmhgthethgkia536rpe + '@vuetify/loader-shared': 1.5.1_xibtw6s7xpwwzfuav4hvamgch4 debug: 4.3.4 vite: 2.9.14 - vuetify: 3.0.0-beta.6_6ie63ee4j7wvfql6o5tlbbu2pe + vuetify: 3.0.0-beta.7_6ie63ee4j7wvfql6o5tlbbu2pe transitivePeerDependencies: - supports-color - vue @@ -10943,21 +10969,22 @@ packages: stylus: optional: true dependencies: - esbuild: 0.14.51 - postcss: 8.4.14 + esbuild: 0.14.54 + postcss: 8.4.16 resolve: 1.22.1 rollup: 2.77.2 optionalDependencies: fsevents: 2.3.2 - /vite/2.9.14_sass@1.54.0: - resolution: {integrity: sha512-P/UCjSpSMcE54r4mPak55hWAZPlyfS369svib/gpmz8/01L822lMPOJ/RYW6tLCe1RPvMvOsJ17erf55bKp4Hw==} - engines: {node: '>=12.2.0'} + /vite/3.0.5: + resolution: {integrity: sha512-bRvrt9Tw8EGW4jj64aYFTnVg134E8hgDxyl/eEHnxiGqYk7/pTPss6CWlurqPOUzqvEoZkZ58Ws+Iu8MB87iMA==} + engines: {node: ^14.18.0 || >=16.0.0} hasBin: true peerDependencies: less: '*' sass: '*' stylus: '*' + terser: ^5.4.0 peerDependenciesMeta: less: optional: true @@ -10965,12 +10992,40 @@ packages: optional: true stylus: optional: true + terser: + optional: true dependencies: - esbuild: 0.14.51 - postcss: 8.4.14 + esbuild: 0.14.54 + postcss: 8.4.16 resolve: 1.22.1 rollup: 2.77.2 - sass: 1.54.0 + optionalDependencies: + fsevents: 2.3.2 + + /vite/3.0.5_sass@1.54.4: + resolution: {integrity: sha512-bRvrt9Tw8EGW4jj64aYFTnVg134E8hgDxyl/eEHnxiGqYk7/pTPss6CWlurqPOUzqvEoZkZ58Ws+Iu8MB87iMA==} + engines: {node: ^14.18.0 || >=16.0.0} + hasBin: true + peerDependencies: + less: '*' + sass: '*' + stylus: '*' + terser: ^5.4.0 + peerDependenciesMeta: + less: + optional: true + sass: + optional: true + stylus: + optional: true + terser: + optional: true + dependencies: + esbuild: 0.14.54 + postcss: 8.4.16 + resolve: 1.22.1 + rollup: 2.77.2 + sass: 1.54.4 optionalDependencies: fsevents: 2.3.2 dev: true @@ -11051,8 +11106,8 @@ packages: bundle-runner: 0.0.1 dev: true - /vue-demi/0.13.6: - resolution: {integrity: sha512-02NYpxgyGE2kKGegRPYlNQSL1UWfA/+JqvzhGCOYjhfbLWXU5QQX0+9pAm/R2sCOPKr5NBxVIab7fvFU0B1RxQ==} + /vue-demi/0.13.7: + resolution: {integrity: sha512-hbhlvpx1gFW3TB5HxJ0mNxyA9Jh5iQt409taOs6zkhpvfJ7YzLs1rsLufJmDsjH5PI1cOyfikY1fE/meyHfU5A==} engines: {node: '>=12'} hasBin: true requiresBuild: true @@ -11066,8 +11121,8 @@ packages: optional: true dev: true - /vue-demi/0.13.6_vue@3.2.37: - resolution: {integrity: sha512-02NYpxgyGE2kKGegRPYlNQSL1UWfA/+JqvzhGCOYjhfbLWXU5QQX0+9pAm/R2sCOPKr5NBxVIab7fvFU0B1RxQ==} + /vue-demi/0.13.7_vue@3.2.37: + resolution: {integrity: sha512-hbhlvpx1gFW3TB5HxJ0mNxyA9Jh5iQt409taOs6zkhpvfJ7YzLs1rsLufJmDsjH5PI1cOyfikY1fE/meyHfU5A==} engines: {node: '>=12'} hasBin: true requiresBuild: true @@ -11124,8 +11179,8 @@ packages: - supports-color dev: true - /vue-i18n/9.2.0_vue@3.2.37: - resolution: {integrity: sha512-vN8aW8Vn4r4eRhUgTLK1/kCIYMb3LQmuloa1YP4NsehiASCX0XCq50tgUAz1o0eBAZ8YvhdlaVPqlO7O0wCnkQ==} + /vue-i18n/9.2.2_vue@3.2.37: + resolution: {integrity: sha512-yswpwtj89rTBhegUAv9Mu37LNznyu3NpyLQmozF3i1hYOhwpG8RjcjIFIIfnu+2MDZJGSZPXaKWvnQA71Yv9TQ==} engines: {node: '>= 14'} peerDependencies: vue: '*' @@ -11133,9 +11188,9 @@ packages: vue: optional: true dependencies: - '@intlify/core-base': 9.2.0 - '@intlify/shared': 9.2.0 - '@intlify/vue-devtools': 9.2.0 + '@intlify/core-base': 9.2.2 + '@intlify/shared': 9.2.2 + '@intlify/vue-devtools': 9.2.2 '@vue/devtools-api': 6.2.1 vue: 3.2.37 dev: false @@ -11204,8 +11259,8 @@ packages: '@vue/server-renderer': 3.2.37_vue@3.2.37 '@vue/shared': 3.2.37 - /vuetify/3.0.0-beta.6_6ie63ee4j7wvfql6o5tlbbu2pe: - resolution: {integrity: sha512-eL8l4YdpB8ePWex1NkB35nqgWIJCsElTk4XzZEXeN7ECh5Qd1JqPwxEE+JVVC5e1+Ut2EQw+08ouLkeEk2uMow==} + /vuetify/3.0.0-beta.7_6ie63ee4j7wvfql6o5tlbbu2pe: + resolution: {integrity: sha512-tLgqYepicB4tz7i91IcvqB/qjCAGPTrIGDP1K412WxH2bvODF2S6cd/NYLBKcOgA4WqmgvzN8qAtHBbEIFXjnw==} engines: {node: ^12.20 || >=14.13} peerDependencies: '@formatjs/intl': ^1.0.0 || ^2.0.0 @@ -11225,7 +11280,7 @@ packages: webpack-plugin-vuetify: optional: true dependencies: - vite-plugin-vuetify: 1.0.0-alpha.12_w52zhfion3iv5bvbedrh5mosdm + vite-plugin-vuetify: 1.0.0-alpha.12_6tyjwtjmg2vdgx3bsuq7igapb4 vue: 3.2.37 /wait-on/6.0.0_debug@4.3.2: @@ -11333,6 +11388,15 @@ packages: strip-ansi: 6.0.1 dev: true + /wrap-ansi/8.0.1: + resolution: {integrity: sha512-QFF+ufAqhoYHvoHdajT/Po7KoXVBPXS2bgjIam5isfWJPfIOnQZ50JtUiVvCv/sjgacf3yRrt2ZKUZ/V4itN4g==} + engines: {node: '>=12'} + dependencies: + ansi-styles: 6.1.0 + string-width: 5.1.2 + strip-ansi: 7.0.1 + dev: true + /wrappy/1.0.2: resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} @@ -11421,8 +11485,8 @@ packages: engines: {node: '>=10'} dev: true - /yargs-parser/21.0.1: - resolution: {integrity: sha512-9BK1jFpLzJROCI5TzwZL/TU4gqjK5xiHV/RfWLOahrjAko/e4DJkRDZQXfvqAsiZzzYhgAzbgz6lg48jcm4GLg==} + /yargs-parser/21.1.1: + resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} engines: {node: '>=12'} dev: true @@ -11449,7 +11513,7 @@ packages: require-directory: 2.1.1 string-width: 4.2.3 y18n: 5.0.8 - yargs-parser: 21.0.1 + yargs-parser: 21.1.1 dev: true /yauzl/2.10.0: