From d320154b82226caaaaa9d9a7bfb406aff16a7fcb Mon Sep 17 00:00:00 2001 From: Guillaume Chau Date: Mon, 5 Dec 2022 11:44:15 +0100 Subject: [PATCH 1/6] feat: upgrade to rollup 3 and vite 4 (alpha) --- examples/svelte3/package.json | 2 +- examples/sveltekit/package.json | 2 +- examples/vue2/package.json | 2 +- examples/vue3-percy/package.json | 2 +- examples/vue3-screenshot/package.json | 2 +- examples/vue3-themed/package.json | 2 +- examples/vue3/package.json | 2 +- package.json | 5 +- packages/histoire-app/package.json | 2 +- .../histoire-controls-stories/package.json | 2 +- packages/histoire-controls/package.json | 2 +- packages/histoire-plugin-nuxt/package.json | 2 +- packages/histoire-plugin-svelte/package.json | 2 +- packages/histoire-plugin-vue/package.json | 2 +- packages/histoire-plugin-vue2/package.json | 2 +- packages/histoire-shared/package.json | 4 +- packages/histoire-vendors/package.json | 8 +- packages/histoire/package.json | 6 +- packages/histoire/src/node/build.ts | 2 +- pnpm-lock.yaml | 574 ++++++------------ 20 files changed, 203 insertions(+), 424 deletions(-) diff --git a/examples/svelte3/package.json b/examples/svelte3/package.json index e00f869e..cab55b80 100644 --- a/examples/svelte3/package.json +++ b/examples/svelte3/package.json @@ -22,6 +22,6 @@ "histoire": "workspace:*", "start-server-and-test": "^1.14.0", "svelte-preprocess": "^4.10.7", - "vite": "^3.0.5" + "vite": "^4.0.0-alpha.6" } } diff --git a/examples/sveltekit/package.json b/examples/sveltekit/package.json index 8c763134..e49aea3d 100644 --- a/examples/sveltekit/package.json +++ b/examples/sveltekit/package.json @@ -29,6 +29,6 @@ "svelte-preprocess": "^4.10.7", "tslib": "^2.3.1", "typescript": "^4.7.4", - "vite": "^3.0.5" + "vite": "^4.0.0-alpha.6" } } diff --git a/examples/vue2/package.json b/examples/vue2/package.json index 329bd65f..42bfba1d 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": "^3.0.5", + "vite": "^4.0.0-alpha.6", "vue-template-compiler": "^2.7.8" } } diff --git a/examples/vue3-percy/package.json b/examples/vue3-percy/package.json index 69595cbb..408b5480 100644 --- a/examples/vue3-percy/package.json +++ b/examples/vue3-percy/package.json @@ -15,6 +15,6 @@ "@histoire/plugin-vue": "workspace:*", "@vitejs/plugin-vue": "^3.0.1", "histoire": "workspace:*", - "vite": "^3.0.5" + "vite": "^4.0.0-alpha.6" } } \ No newline at end of file diff --git a/examples/vue3-screenshot/package.json b/examples/vue3-screenshot/package.json index 0351ac51..7874beb2 100644 --- a/examples/vue3-screenshot/package.json +++ b/examples/vue3-screenshot/package.json @@ -15,6 +15,6 @@ "@histoire/plugin-vue": "workspace:*", "@vitejs/plugin-vue": "^3.0.1", "histoire": "workspace:*", - "vite": "^3.0.5" + "vite": "^4.0.0-alpha.6" } } \ No newline at end of file diff --git a/examples/vue3-themed/package.json b/examples/vue3-themed/package.json index 453781c6..bbe9a7df 100644 --- a/examples/vue3-themed/package.json +++ b/examples/vue3-themed/package.json @@ -14,6 +14,6 @@ "@vitejs/plugin-vue": "^3.0.1", "@histoire/plugin-vue": "workspace:*", "histoire": "workspace:*", - "vite": "^3.0.5" + "vite": "^4.0.0-alpha.6" } } \ No newline at end of file diff --git a/examples/vue3/package.json b/examples/vue3/package.json index 11b83376..45d92b68 100644 --- a/examples/vue3/package.json +++ b/examples/vue3/package.json @@ -26,6 +26,6 @@ "histoire": "workspace:*", "sass": "^1.50.0", "start-server-and-test": "^1.14.0", - "vite": "^3.0.5" + "vite": "^4.0.0-alpha.6" } } \ No newline at end of file diff --git a/package.json b/package.json index b038c2af..e0dc10a1 100644 --- a/package.json +++ b/package.json @@ -62,9 +62,12 @@ "eslint": "*", "eslint-plugin-promise": "*", "eslint-plugin-vue": "*", - "vite": "^2.9.0 || ^3.0.0", + "vite": "^2.9.0 || ^3.0.0 || ^4.0.0", "vue": "*" } + }, + "overrides": { + "vite": "^4.0.0-alpha.6" } } } diff --git a/packages/histoire-app/package.json b/packages/histoire-app/package.json index 1998833e..1b628572 100644 --- a/packages/histoire-app/package.json +++ b/packages/histoire-app/package.json @@ -51,7 +51,7 @@ "postcss-import": "^14.1.0", "tailwindcss": "^3.0.23", "typescript": "^4.7.4", - "vite": "^3.1.4", + "vite": "^4.0.0-alpha.6", "vue": "^3.2.31" } } diff --git a/packages/histoire-controls-stories/package.json b/packages/histoire-controls-stories/package.json index 0ca16358..8f0d858a 100644 --- a/packages/histoire-controls-stories/package.json +++ b/packages/histoire-controls-stories/package.json @@ -26,6 +26,6 @@ "@histoire/plugin-vue": "workspace:*", "@vitejs/plugin-vue": "^3.1.2", "histoire": "workspace:*", - "vite": "^3.1.4" + "vite": "^4.0.0-alpha.6" } } diff --git a/packages/histoire-controls/package.json b/packages/histoire-controls/package.json index 9e920d29..f6319069 100644 --- a/packages/histoire-controls/package.json +++ b/packages/histoire-controls/package.json @@ -63,7 +63,7 @@ "postcss-import": "^14.1.0", "tailwindcss": "^3.0.23", "typescript": "^4.7.4", - "vite": "^3.1.4", + "vite": "^4.0.0-alpha.6", "vue": "^3.2.31", "vue-tsc": "^0.35.2" } diff --git a/packages/histoire-plugin-nuxt/package.json b/packages/histoire-plugin-nuxt/package.json index 94fbff75..12f9bc34 100644 --- a/packages/histoire-plugin-nuxt/package.json +++ b/packages/histoire-plugin-nuxt/package.json @@ -34,7 +34,7 @@ "@nuxt/schema": "^3.0.0-rc.11", "histoire": "workspace:*", "typescript": "^4.7.4", - "vite": "^3.1.4" + "vite": "^4.0.0-alpha.6" }, "peerDependencies": { "@histoire/plugin-vue": "^0.11.9", diff --git a/packages/histoire-plugin-svelte/package.json b/packages/histoire-plugin-svelte/package.json index 9bbe6001..856815f9 100644 --- a/packages/histoire-plugin-svelte/package.json +++ b/packages/histoire-plugin-svelte/package.json @@ -52,7 +52,7 @@ "histoire": "workspace:*", "svelte": "^3.49.0", "svelte-preprocess": "^4.10.7", - "vite": "^3.0.5" + "vite": "^4.0.0-alpha.6" }, "peerDependencies": { "histoire": "^0.11.9", diff --git a/packages/histoire-plugin-vue/package.json b/packages/histoire-plugin-vue/package.json index ed2f3cbf..a0a78653 100644 --- a/packages/histoire-plugin-vue/package.json +++ b/packages/histoire-plugin-vue/package.json @@ -54,7 +54,7 @@ "concurrently": "^7.1.0", "typescript": "^4.7.4", "histoire": "workspace:*", - "vite": "^3.1.4", + "vite": "^4.0.0-alpha.6", "vue": "^3.2.31" }, "peerDependencies": { diff --git a/packages/histoire-plugin-vue2/package.json b/packages/histoire-plugin-vue2/package.json index 14c24c41..d1cb0225 100644 --- a/packages/histoire-plugin-vue2/package.json +++ b/packages/histoire-plugin-vue2/package.json @@ -48,7 +48,7 @@ "concurrently": "^7.1.0", "histoire": "workspace:*", "typescript": "^4.7.4", - "vite": "^3.1.4", + "vite": "^4.0.0-alpha.6", "vue": "^2.7.8" }, "peerDependencies": { diff --git a/packages/histoire-shared/package.json b/packages/histoire-shared/package.json index 477ffb00..b0d12dc4 100644 --- a/packages/histoire-shared/package.json +++ b/packages/histoire-shared/package.json @@ -36,10 +36,10 @@ "picocolors": "^1.0.0" }, "peerDependencies": { - "vite": "^2.9.0 || ^3.0.0" + "vite": "^2.9.0 || ^3.0.0 || ^4.0.0-alpha.6" }, "devDependencies": { "typescript": "^4.7.4", - "vite": "^3.0.5" + "vite": "^4.0.0-alpha.6" } } diff --git a/packages/histoire-vendors/package.json b/packages/histoire-vendors/package.json index 85bee017..1c137644 100644 --- a/packages/histoire-vendors/package.json +++ b/packages/histoire-vendors/package.json @@ -32,8 +32,8 @@ }, "devDependencies": { "@iconify/vue": "^3.2.1", - "@rollup/plugin-commonjs": "^22.0.1", - "@rollup/plugin-node-resolve": "^13.3.0", + "@rollup/plugin-commonjs": "^23.0.3", + "@rollup/plugin-node-resolve": "^15.0.1", "@types/node": "^18.0.3", "@vueuse/core": "^8.2.5", "execa": "^6.1.0", @@ -41,8 +41,8 @@ "fs-extra": "^10.0.1", "globby": "^13.1.1", "pinia": "^2.0.13", - "rollup": "^2.75.7", - "rollup-plugin-typescript2": "^0.32.1", + "rollup": "^3.5.1", + "rollup-plugin-typescript2": "^0.34.1", "scroll-into-view-if-needed": "^2.2.29", "typescript": "^4.7.4", "vue-router": "^4.0.14", diff --git a/packages/histoire/package.json b/packages/histoire/package.json index 72ee5b7d..c3687dd8 100644 --- a/packages/histoire/package.json +++ b/packages/histoire/package.json @@ -72,7 +72,7 @@ "vite-node": "0.23.4" }, "peerDependencies": { - "vite": "^2.9.0 || ^3.0.0" + "vite": "^2.9.0 || ^3.0.0 || ^4.0.0-alpha.6" }, "devDependencies": { "@peeky/server": "^0.14.0", @@ -81,8 +81,8 @@ "@types/markdown-it": "^12.2.3", "@types/micromatch": "^4.0.2", "@types/node": "^17.0.32", - "rollup": "^2.59.0", + "rollup": "^3.5.1", "typescript": "^4.7.4", - "vite": "^3.0.5" + "vite": "^4.0.0-alpha.6" } } diff --git a/packages/histoire/src/node/build.ts b/packages/histoire/src/node/build.ts index 4d7b0501..c2a854b4 100644 --- a/packages/histoire/src/node/build.ts +++ b/packages/histoire/src/node/build.ts @@ -14,11 +14,11 @@ import type { BuildEndCallback, PreviewStoryCallback, } from '@histoire/shared' +import type { RollupOutput } from 'rollup' import { APP_PATH } from './alias.js' import { Context } from './context.js' import { getViteConfigWithPlugins } from './vite.js' import { findAllStories } from './stories.js' -import type { RollupOutput } from 'rollup' import { useCollectStories } from './collect/index.js' import { BuildPluginApi } from './plugin.js' import { useModuleLoader } from './load.js' diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 66aa3d27..37801dd6 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,5 +1,8 @@ lockfileVersion: 5.4 +overrides: + vite: ^4.0.0-alpha.6 + importers: .: @@ -87,17 +90,17 @@ importers: start-server-and-test: ^1.14.0 svelte: ^3.49.0 svelte-preprocess: ^4.10.7 - vite: ^3.0.5 + vite: ^4.0.0-alpha.6 dependencies: svelte: 3.53.1 devDependencies: '@histoire/plugin-svelte': link:../../packages/histoire-plugin-svelte - '@sveltejs/vite-plugin-svelte': 1.4.0_svelte@3.53.1+vite@3.2.4 + '@sveltejs/vite-plugin-svelte': 1.4.0_5ydygliaonb7zqn4qyhhvxl5pa cypress: 10.11.0 histoire: link:../../packages/histoire start-server-and-test: 1.14.0 svelte-preprocess: 4.10.7_svelte@3.53.1 - vite: 3.2.4 + vite: 4.0.0-alpha.6 examples/sveltekit: specifiers: @@ -113,14 +116,14 @@ importers: svelte-preprocess: ^4.10.7 tslib: ^2.3.1 typescript: ^4.7.4 - vite: ^3.0.5 + vite: ^4.0.0-alpha.6 dependencies: '@fontsource/fira-mono': 4.5.10 cookie: 0.4.2 devDependencies: '@histoire/plugin-svelte': link:../../packages/histoire-plugin-svelte '@sveltejs/adapter-auto': 1.0.0-next.90 - '@sveltejs/kit': 1.0.0-next.571_svelte@3.53.1+vite@3.2.4 + '@sveltejs/kit': 1.0.0-next.571_5ydygliaonb7zqn4qyhhvxl5pa '@types/cookie': 0.5.1 histoire: link:../../packages/histoire svelte: 3.53.1 @@ -128,23 +131,23 @@ importers: svelte-preprocess: 4.10.7_7dvewpees4iyn2tkw2qzal77a4 tslib: 2.4.1 typescript: 4.9.3 - vite: 3.2.4 + vite: 4.0.0-alpha.6 examples/vue2: specifiers: '@histoire/plugin-vue2': workspace:* '@vitejs/plugin-vue2': ^1.1.2 histoire: workspace:* - vite: ^3.0.5 + vite: ^4.0.0-alpha.6 vue: ^2.7.8 vue-template-compiler: ^2.7.8 dependencies: vue: 2.7.14 devDependencies: '@histoire/plugin-vue2': link:../../packages/histoire-plugin-vue2 - '@vitejs/plugin-vue2': 1.1.2_vite@3.2.4+vue@2.7.14 + '@vitejs/plugin-vue2': 1.1.2_okexyfp3o5q2yb7g34s7cq2cae histoire: link:../../packages/histoire - vite: 3.2.4 + vite: 4.0.0-alpha.6 vue-template-compiler: 2.7.14 examples/vue3: @@ -159,7 +162,7 @@ importers: pinia: ^2.0.13 sass: ^1.50.0 start-server-and-test: ^1.14.0 - vite: ^3.0.5 + vite: ^4.0.0-alpha.6 vue: ^3.2.31 dependencies: lottie-web: 5.10.0 @@ -169,12 +172,12 @@ importers: '@histoire/app': link:../../packages/histoire-app '@histoire/plugin-vue': link:../../packages/histoire-plugin-vue '@histoire/vendors': link:../../packages/histoire-vendors - '@vitejs/plugin-vue': 3.2.0_vite@3.2.4+vue@3.2.45 + '@vitejs/plugin-vue': 3.2.0_zz5kkc62gxncg66a3kwgd72tiu cypress: 9.7.0 histoire: link:../../packages/histoire sass: 1.56.1 start-server-and-test: 1.14.0 - vite: 3.2.4_sass@1.56.1 + vite: 4.0.0-alpha.6_sass@1.56.1 examples/vue3-percy: specifiers: @@ -182,16 +185,16 @@ importers: '@histoire/plugin-vue': workspace:* '@vitejs/plugin-vue': ^3.0.1 histoire: workspace:* - vite: ^3.0.5 + vite: ^4.0.0-alpha.6 vue: ^3.2.31 dependencies: vue: 3.2.45 devDependencies: '@histoire/plugin-percy': link:../../packages/histoire-plugin-percy '@histoire/plugin-vue': link:../../packages/histoire-plugin-vue - '@vitejs/plugin-vue': 3.2.0_vite@3.2.4+vue@3.2.45 + '@vitejs/plugin-vue': 3.2.0_zz5kkc62gxncg66a3kwgd72tiu histoire: link:../../packages/histoire - vite: 3.2.4 + vite: 4.0.0-alpha.6 examples/vue3-screenshot: specifiers: @@ -199,31 +202,31 @@ importers: '@histoire/plugin-vue': workspace:* '@vitejs/plugin-vue': ^3.0.1 histoire: workspace:* - vite: ^3.0.5 + vite: ^4.0.0-alpha.6 vue: ^3.2.31 dependencies: vue: 3.2.45 devDependencies: '@histoire/plugin-screenshot': link:../../packages/histoire-plugin-screenshot '@histoire/plugin-vue': link:../../packages/histoire-plugin-vue - '@vitejs/plugin-vue': 3.2.0_vite@3.2.4+vue@3.2.45 + '@vitejs/plugin-vue': 3.2.0_zz5kkc62gxncg66a3kwgd72tiu histoire: link:../../packages/histoire - vite: 3.2.4 + vite: 4.0.0-alpha.6 examples/vue3-themed: specifiers: '@histoire/plugin-vue': workspace:* '@vitejs/plugin-vue': ^3.0.1 histoire: workspace:* - vite: ^3.0.5 + vite: ^4.0.0-alpha.6 vue: ^3.2.31 dependencies: vue: 3.2.45 devDependencies: '@histoire/plugin-vue': link:../../packages/histoire-plugin-vue - '@vitejs/plugin-vue': 3.2.0_vite@3.2.4+vue@3.2.45 + '@vitejs/plugin-vue': 3.2.0_zz5kkc62gxncg66a3kwgd72tiu histoire: link:../../packages/histoire - vite: 3.2.4 + vite: 4.0.0-alpha.6 examples/vue3-vuetify: specifiers: @@ -231,7 +234,7 @@ importers: '@mdi/font': ^5.9.55 '@vitejs/plugin-vue': ^2.3.1 histoire: workspace:* - vite: ^2.9.1 + vite: ^4.0.0-alpha.6 vite-plugin-vuetify: 1.0.0-alpha.12 vue: ^3.2.31 vuetify: ^3.0.0-beta.3 @@ -241,10 +244,10 @@ importers: vuetify: 3.0.3_ny5xcw2md7vsxw37otcxmygka4 devDependencies: '@histoire/plugin-vue': link:../../packages/histoire-plugin-vue - '@vitejs/plugin-vue': 2.3.4_vite@2.9.15+vue@3.2.45 + '@vitejs/plugin-vue': 2.3.4_zz5kkc62gxncg66a3kwgd72tiu histoire: link:../../packages/histoire - vite: 2.9.15 - vite-plugin-vuetify: 1.0.0-alpha.12_wdnmrbx3h66z4vxy7iaug2gifa + vite: 4.0.0-alpha.6 + vite-plugin-vuetify: 1.0.0-alpha.12_47cgwgxlmgfhx5upukripkknuq packages/histoire: specifiers: @@ -279,13 +282,13 @@ importers: mrmime: ^1.0.0 pathe: ^0.2.0 picocolors: ^1.0.0 - rollup: ^2.59.0 + rollup: ^3.5.1 sade: ^1.8.1 shiki: 0.11.1 sirv: ^2.0.2 tinypool: ^0.1.2 typescript: ^4.7.4 - vite: ^3.0.5 + vite: ^4.0.0-alpha.6 vite-node: 0.23.4 dependencies: '@histoire/app': link:../histoire-app @@ -325,9 +328,9 @@ importers: '@types/fs-extra': 9.0.13 '@types/micromatch': 4.0.2 '@types/node': 17.0.45 - rollup: 2.79.1 + rollup: 3.5.1 typescript: 4.9.3 - vite: 3.2.4_@types+node@17.0.45 + vite: 4.0.0-alpha.6_@types+node@17.0.45 packages/histoire-app: specifiers: @@ -351,7 +354,7 @@ importers: shiki-es: ^0.1.2 tailwindcss: ^3.0.23 typescript: ^4.7.4 - vite: ^3.1.4 + vite: ^4.0.0-alpha.6 vue: ^3.2.31 dependencies: '@histoire/controls': link:../histoire-controls @@ -364,7 +367,7 @@ importers: '@tailwindcss/typography': 0.5.8_tailwindcss@3.2.4 '@types/fs-extra': 9.0.13 '@types/node': 17.0.45 - '@vitejs/plugin-vue': 3.2.0_vite@3.2.4+vue@3.2.45 + '@vitejs/plugin-vue': 3.2.0_zz5kkc62gxncg66a3kwgd72tiu autoprefixer: 10.4.13_postcss@8.4.19 chokidar: 3.5.3 concurrently: 7.6.0 @@ -375,7 +378,7 @@ importers: postcss-import: 14.1.0_postcss@8.4.19 tailwindcss: 3.2.4_postcss@8.4.19 typescript: 4.9.3 - vite: 3.2.4_@types+node@17.0.45 + vite: 4.0.0-alpha.6_@types+node@17.0.45 vue: 3.2.45 packages/histoire-controls: @@ -401,7 +404,7 @@ importers: postcss-import: ^14.1.0 tailwindcss: ^3.0.23 typescript: ^4.7.4 - vite: ^3.1.4 + vite: ^4.0.0-alpha.6 vue: ^3.2.31 vue-tsc: ^0.35.2 dependencies: @@ -417,7 +420,7 @@ importers: '@peeky/server': 0.14.0_@types+node@17.0.45 '@peeky/test': 0.14.1_7xgr23p2hp47ryj3a27pbosgwi '@types/node': 17.0.45 - '@vitejs/plugin-vue': 2.3.4_vite@3.2.4+vue@3.2.45 + '@vitejs/plugin-vue': 2.3.4_zz5kkc62gxncg66a3kwgd72tiu '@vue/test-utils': 2.2.5_vue@3.2.45 '@vueuse/core': 8.9.4_vue@3.2.45 autoprefixer: 10.4.13_postcss@8.4.19 @@ -427,7 +430,7 @@ importers: postcss-import: 14.1.0_postcss@8.4.19 tailwindcss: 3.2.4_postcss@8.4.19 typescript: 4.9.3 - vite: 3.2.4_@types+node@17.0.45 + vite: 4.0.0-alpha.6_@types+node@17.0.45 vue: 3.2.45 vue-tsc: 0.35.2_typescript@4.9.3 @@ -437,16 +440,16 @@ importers: '@histoire/plugin-vue': workspace:* '@vitejs/plugin-vue': ^3.1.2 histoire: workspace:* - vite: ^3.1.4 + vite: ^4.0.0-alpha.6 vue: ^3.2.31 dependencies: '@histoire/controls': link:../histoire-controls vue: 3.2.45 devDependencies: '@histoire/plugin-vue': link:../histoire-plugin-vue - '@vitejs/plugin-vue': 3.2.0_vite@3.2.4+vue@3.2.45 + '@vitejs/plugin-vue': 3.2.0_zz5kkc62gxncg66a3kwgd72tiu histoire: link:../histoire - vite: 3.2.4 + vite: 4.0.0-alpha.6 packages/histoire-plugin-nuxt: specifiers: @@ -455,7 +458,7 @@ importers: '@types/node': ^17.0.32 histoire: workspace:* typescript: ^4.7.4 - vite: ^3.1.4 + vite: ^4.0.0-alpha.6 dependencies: '@nuxt/kit': 3.0.0 devDependencies: @@ -463,7 +466,7 @@ importers: '@types/node': 17.0.45 histoire: link:../histoire typescript: 4.9.3 - vite: 3.2.4_@types+node@17.0.45 + vite: 4.0.0-alpha.6_@types+node@17.0.45 packages/histoire-plugin-percy: specifiers: @@ -519,13 +522,13 @@ importers: svelte: ^3.49.0 svelte-preprocess: ^4.10.7 typescript: ^4.7.4 - vite: ^3.0.5 + vite: ^4.0.0-alpha.6 dependencies: '@histoire/controls': link:../histoire-controls '@histoire/shared': link:../histoire-shared '@histoire/vendors': link:../histoire-vendors devDependencies: - '@sveltejs/vite-plugin-svelte': 1.4.0_svelte@3.53.1+vite@3.2.4 + '@sveltejs/vite-plugin-svelte': 1.4.0_5ydygliaonb7zqn4qyhhvxl5pa '@types/node': 17.0.45 concurrently: 7.6.0 fs-extra: 10.1.0 @@ -534,7 +537,7 @@ importers: svelte: 3.53.1 svelte-preprocess: 4.10.7_7dvewpees4iyn2tkw2qzal77a4 typescript: 4.9.3 - vite: 3.2.4_@types+node@17.0.45 + vite: 4.0.0-alpha.6_@types+node@17.0.45 packages/histoire-plugin-vue: specifiers: @@ -546,7 +549,7 @@ importers: concurrently: ^7.1.0 histoire: workspace:* typescript: ^4.7.4 - vite: ^3.1.4 + vite: ^4.0.0-alpha.6 vue: ^3.2.31 dependencies: '@histoire/controls': link:../histoire-controls @@ -558,7 +561,7 @@ importers: concurrently: 7.6.0 histoire: link:../histoire typescript: 4.9.3 - vite: 3.2.4_@types+node@17.0.45 + vite: 4.0.0-alpha.6_@types+node@17.0.45 vue: 3.2.45 packages/histoire-plugin-vue2: @@ -571,7 +574,7 @@ importers: concurrently: ^7.1.0 histoire: workspace:* typescript: ^4.7.4 - vite: ^3.1.4 + vite: ^4.0.0-alpha.6 vue: ^2.7.8 dependencies: '@histoire/controls': link:../histoire-controls @@ -583,7 +586,7 @@ importers: concurrently: 7.6.0 histoire: link:../histoire typescript: 4.9.3 - vite: 3.2.4_@types+node@17.0.45 + vite: 4.0.0-alpha.6_@types+node@17.0.45 vue: 2.7.14 packages/histoire-shared: @@ -594,7 +597,7 @@ importers: pathe: ^0.2.0 picocolors: ^1.0.0 typescript: ^4.7.4 - vite: ^3.0.5 + vite: ^4.0.0-alpha.6 dependencies: '@types/fs-extra': 9.0.13 '@types/markdown-it': 12.2.3 @@ -603,13 +606,13 @@ importers: picocolors: 1.0.0 devDependencies: typescript: 4.9.3 - vite: 3.2.4 + vite: 4.0.0-alpha.6 packages/histoire-vendors: specifiers: '@iconify/vue': ^3.2.1 - '@rollup/plugin-commonjs': ^22.0.1 - '@rollup/plugin-node-resolve': ^13.3.0 + '@rollup/plugin-commonjs': ^23.0.3 + '@rollup/plugin-node-resolve': ^15.0.1 '@types/node': ^18.0.3 '@vueuse/core': ^8.2.5 execa: ^6.1.0 @@ -617,16 +620,16 @@ importers: fs-extra: ^10.0.1 globby: ^13.1.1 pinia: ^2.0.13 - rollup: ^2.75.7 - rollup-plugin-typescript2: ^0.32.1 + rollup: ^3.5.1 + rollup-plugin-typescript2: ^0.34.1 scroll-into-view-if-needed: ^2.2.29 typescript: ^4.7.4 vue: ^3.2.31 vue-router: ^4.0.14 devDependencies: '@iconify/vue': 3.2.1_vue@3.2.45 - '@rollup/plugin-commonjs': 22.0.2_rollup@2.79.1 - '@rollup/plugin-node-resolve': 13.3.0_rollup@2.79.1 + '@rollup/plugin-commonjs': 23.0.3_rollup@3.5.1 + '@rollup/plugin-node-resolve': 15.0.1_rollup@3.5.1 '@types/node': 18.11.10 '@vueuse/core': 8.9.4_vue@3.2.45 execa: 6.1.0 @@ -634,8 +637,8 @@ importers: fs-extra: 10.1.0 globby: 13.1.2 pinia: 2.0.27_mgnvym7yiazkylwwogi5r767ue - rollup: 2.79.1 - rollup-plugin-typescript2: 0.32.1_k35zwyycrckt5xfsejji7kbwn4 + rollup: 3.5.1 + rollup-plugin-typescript2: 0.34.1_rt6svyh24sgpogwv5hms77uhpq scroll-into-view-if-needed: 2.2.31 typescript: 4.9.3 vue: 3.2.45 @@ -1373,14 +1376,6 @@ packages: requiresBuild: true optional: true - /@esbuild/linux-loong64/0.14.54: - resolution: {integrity: sha512-bZBrLAIX1kpWelV0XemxBZllyRmM6vgFQQG2GdNb+r3Fkp0FOh1NJSvekXDs7jq70k4euu1cryLMfU+mTXlEpw==} - engines: {node: '>=12'} - cpu: [loong64] - os: [linux] - requiresBuild: true - optional: true - /@esbuild/linux-loong64/0.15.16: resolution: {integrity: sha512-SDLfP1uoB0HZ14CdVYgagllgrG7Mdxhkt4jDJOKl/MldKrkQ6vDJMZKl2+5XsEY/Lzz37fjgLQoJBGuAw/x8kQ==} engines: {node: '>=12'} @@ -1867,8 +1862,8 @@ packages: dependencies: '@nuxt/kit': 3.0.0_rollup@2.79.1 '@rollup/plugin-replace': 5.0.1_rollup@2.79.1 - '@vitejs/plugin-vue': 3.2.0_vite@3.2.4+vue@3.2.45 - '@vitejs/plugin-vue-jsx': 2.1.1_vite@3.2.4+vue@3.2.45 + '@vitejs/plugin-vue': 3.2.0_zz5kkc62gxncg66a3kwgd72tiu + '@vitejs/plugin-vue-jsx': 2.1.1_zz5kkc62gxncg66a3kwgd72tiu autoprefixer: 10.4.13_postcss@8.4.19 chokidar: 3.5.3 cssnano: 5.1.14_postcss@8.4.19 @@ -1894,9 +1889,9 @@ packages: rollup-plugin-visualizer: 5.8.3_rollup@2.79.1 ufo: 1.0.1 unplugin: 1.0.0 - vite: 3.2.4 + vite: 4.0.0-alpha.6 vite-node: 0.25.3 - vite-plugin-checker: 0.5.1_vite@3.2.4 + vite-plugin-checker: 0.5.1_vite@4.0.0-alpha.6 vue: 3.2.45 vue-bundle-renderer: 1.0.0 transitivePeerDependencies: @@ -1982,7 +1977,7 @@ packages: fs-extra: 10.1.0 nanoid: 4.0.0 pathe: 0.3.9 - vite: 3.2.4_@types+node@17.0.45 + vite: 4.0.0-alpha.6_@types+node@17.0.45 transitivePeerDependencies: - '@types/node' - less @@ -2029,8 +2024,8 @@ packages: slugify: 1.6.5 source-map-support: 0.5.21 tinypool: 0.3.0 - vite: 3.2.4_@types+node@17.0.45 - vite-node: 0.3.6 + vite: 4.0.0-alpha.6_@types+node@17.0.45 + vite-node: 0.3.6_@types+node@17.0.45 transitivePeerDependencies: - '@types/node' - encoding @@ -2066,7 +2061,7 @@ packages: object-inspect: 1.12.2 pathe: 0.3.9 slugify: 1.6.5 - vite: 3.2.4_@types+node@17.0.45 + vite: 4.0.0-alpha.6_@types+node@17.0.45 ws: 8.11.0 transitivePeerDependencies: - '@types/node' @@ -2210,23 +2205,25 @@ packages: slash: 4.0.0 dev: true - /@rollup/plugin-commonjs/22.0.2_rollup@2.79.1: - resolution: {integrity: sha512-//NdP6iIwPbMTcazYsiBMbJW7gfmpHom33u1beiIoHDEM0Q9clvtQB1T0efvMqHeKsGohiHo97BCPCkBXdscwg==} - engines: {node: '>= 12.0.0'} + /@rollup/plugin-commonjs/23.0.3_rollup@2.79.1: + resolution: {integrity: sha512-31HxrT5emGfTyIfAs1lDQHj6EfYxTXcwtX5pIIhq+B/xZBNIqQ179d/CkYxlpYmFCxT78AeU4M8aL8Iv/IBxFA==} + engines: {node: '>=14.0.0'} peerDependencies: - rollup: ^2.68.0 + rollup: ^2.68.0||^3.0.0 + peerDependenciesMeta: + rollup: + optional: true dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.79.1 + '@rollup/pluginutils': 5.0.2_rollup@2.79.1 commondir: 1.0.1 estree-walker: 2.0.2 - glob: 7.2.3 + glob: 8.0.3 is-reference: 1.2.1 - magic-string: 0.25.9 - resolve: 1.22.1 + magic-string: 0.26.7 rollup: 2.79.1 dev: true - /@rollup/plugin-commonjs/23.0.3_rollup@2.79.1: + /@rollup/plugin-commonjs/23.0.3_rollup@3.5.1: resolution: {integrity: sha512-31HxrT5emGfTyIfAs1lDQHj6EfYxTXcwtX5pIIhq+B/xZBNIqQ179d/CkYxlpYmFCxT78AeU4M8aL8Iv/IBxFA==} engines: {node: '>=14.0.0'} peerDependencies: @@ -2235,13 +2232,13 @@ packages: rollup: optional: true dependencies: - '@rollup/pluginutils': 5.0.2_rollup@2.79.1 + '@rollup/pluginutils': 5.0.2_rollup@3.5.1 commondir: 1.0.1 estree-walker: 2.0.2 glob: 8.0.3 is-reference: 1.2.1 magic-string: 0.26.7 - rollup: 2.79.1 + rollup: 3.5.1 dev: true /@rollup/plugin-inject/5.0.2_rollup@2.79.1: @@ -2272,14 +2269,17 @@ packages: rollup: 2.79.1 dev: true - /@rollup/plugin-node-resolve/13.3.0_rollup@2.79.1: - resolution: {integrity: sha512-Lus8rbUo1eEcnS4yTFKLZrVumLPY+YayBdWXgFSHYhTT2iJbMhoaaBL3xl5NCdeRytErGr8tZ0L71BMRmnlwSw==} - engines: {node: '>= 10.0.0'} + /@rollup/plugin-node-resolve/15.0.1_rollup@2.79.1: + resolution: {integrity: sha512-ReY88T7JhJjeRVbfCyNj+NXAG3IIsVMsX9b5/9jC98dRP8/yxlZdz7mHZbHk5zHr24wZZICS5AcXsFZAXYUQEg==} + engines: {node: '>=14.0.0'} peerDependencies: - rollup: ^2.42.0 + rollup: ^2.78.0||^3.0.0 + peerDependenciesMeta: + rollup: + optional: true dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.79.1 - '@types/resolve': 1.17.1 + '@rollup/pluginutils': 5.0.2_rollup@2.79.1 + '@types/resolve': 1.20.2 deepmerge: 4.2.2 is-builtin-module: 3.2.0 is-module: 1.0.0 @@ -2287,7 +2287,7 @@ packages: rollup: 2.79.1 dev: true - /@rollup/plugin-node-resolve/15.0.1_rollup@2.79.1: + /@rollup/plugin-node-resolve/15.0.1_rollup@3.5.1: resolution: {integrity: sha512-ReY88T7JhJjeRVbfCyNj+NXAG3IIsVMsX9b5/9jC98dRP8/yxlZdz7mHZbHk5zHr24wZZICS5AcXsFZAXYUQEg==} engines: {node: '>=14.0.0'} peerDependencies: @@ -2296,13 +2296,13 @@ packages: rollup: optional: true dependencies: - '@rollup/pluginutils': 5.0.2_rollup@2.79.1 + '@rollup/pluginutils': 5.0.2_rollup@3.5.1 '@types/resolve': 1.20.2 deepmerge: 4.2.2 is-builtin-module: 3.2.0 is-module: 1.0.0 resolve: 1.22.1 - rollup: 2.79.1 + rollup: 3.5.1 dev: true /@rollup/plugin-replace/5.0.1_rollup@2.79.1: @@ -2331,18 +2331,6 @@ packages: rollup: 2.79.1 dev: true - /@rollup/pluginutils/3.1.0_rollup@2.79.1: - resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==} - engines: {node: '>= 8.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0 - dependencies: - '@types/estree': 0.0.39 - estree-walker: 1.0.1 - picomatch: 2.3.1 - rollup: 2.79.1 - dev: true - /@rollup/pluginutils/4.2.1: resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==} engines: {node: '>= 8.0.0'} @@ -2379,6 +2367,21 @@ packages: rollup: 2.79.1 dev: true + /@rollup/pluginutils/5.0.2_rollup@3.5.1: + resolution: {integrity: sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0 + peerDependenciesMeta: + rollup: + optional: true + dependencies: + '@types/estree': 1.0.0 + estree-walker: 2.0.2 + picomatch: 2.3.1 + rollup: 3.5.1 + dev: true + /@sefinek/random-emoji/1.4.5: resolution: {integrity: sha512-yYQ3uTrdpNidoZJxhy7aWCZwFJ/shpKh2yazwRdbU9VEd0uv8VIk6Z0VKAR2esVuoBs8uhNlttl2Fc0cB8lt0w==} dev: true @@ -2443,16 +2446,16 @@ packages: import-meta-resolve: 2.2.0 dev: true - /@sveltejs/kit/1.0.0-next.571_svelte@3.53.1+vite@3.2.4: + /@sveltejs/kit/1.0.0-next.571_5ydygliaonb7zqn4qyhhvxl5pa: resolution: {integrity: sha512-J+J0UXBiAh569l4ZxKm6eIZJS4lbcP8MgF9fU+DbVplCJ8nqo9wUmirUHZkJoBoB0FUlZSgA0R7N471MnUNNBw==} engines: {node: '>=16.14'} hasBin: true requiresBuild: true peerDependencies: svelte: ^3.44.0 - vite: ^3.2.0 || ^2.9.0 || ^3.0.0 + vite: ^3.2.0 || ^2.9.0 || ^3.0.0 || ^4.0.0 dependencies: - '@sveltejs/vite-plugin-svelte': 1.4.0_svelte@3.53.1+vite@3.2.4 + '@sveltejs/vite-plugin-svelte': 1.4.0_5ydygliaonb7zqn4qyhhvxl5pa '@types/cookie': 0.5.1 cookie: 0.5.0 devalue: 4.2.0 @@ -2465,17 +2468,17 @@ packages: svelte: 3.53.1 tiny-glob: 0.2.9 undici: 5.13.0 - vite: 3.2.4 + vite: 4.0.0-alpha.6 transitivePeerDependencies: - supports-color dev: true - /@sveltejs/vite-plugin-svelte/1.4.0_svelte@3.53.1+vite@3.2.4: + /@sveltejs/vite-plugin-svelte/1.4.0_5ydygliaonb7zqn4qyhhvxl5pa: resolution: {integrity: sha512-6QupI/jemMfK+yI2pMtJcu5iO2gtgTfcBdGwMZZt+lgbFELhszbDl6Qjh000HgAV8+XUA+8EY8DusOFk8WhOIg==} engines: {node: ^14.18.0 || >= 16} peerDependencies: svelte: ^3.44.0 - vite: ^3.0.0 || ^2.9.0 + vite: ^3.0.0 || ^2.9.0 || ^4.0.0 dependencies: debug: 4.3.4 deepmerge: 4.2.2 @@ -2483,8 +2486,8 @@ packages: magic-string: 0.26.7 svelte: 3.53.1 svelte-hmr: 0.15.1_svelte@3.53.1 - vite: 3.2.4 - vitefu: 0.2.2_vite@3.2.4 + vite: 4.0.0-alpha.6 + vitefu: 0.2.2_vite@4.0.0-alpha.6 transitivePeerDependencies: - supports-color dev: true @@ -2555,10 +2558,6 @@ packages: resolution: {integrity: sha512-vt+kDhq/M2ayberEtJcIN/hxXy1Pk+59g2FV/ZQceeaTyCtCucjL2Q7FXlFjtWn4n15KCr1NE2lNNFhp0lEThw==} dev: true - /@types/estree/0.0.39: - resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==} - dev: true - /@types/estree/1.0.0: resolution: {integrity: sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==} @@ -2707,12 +2706,6 @@ packages: resolution: {integrity: sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==} dev: true - /@types/resolve/1.17.1: - resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==} - dependencies: - '@types/node': 18.11.10 - dev: true - /@types/resolve/1.20.2: resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} dev: true @@ -2971,11 +2964,11 @@ packages: - supports-color dev: true - /@vitejs/plugin-vue-jsx/2.1.1_vite@3.2.4+vue@3.2.45: + /@vitejs/plugin-vue-jsx/2.1.1_zz5kkc62gxncg66a3kwgd72tiu: resolution: {integrity: sha512-JgDhxstQlwnHBvZ1BSnU5mbmyQ14/t5JhREc6YH5kWyu2QdAAOsLF6xgHoIWarj8tddaiwFrNzLbWJPudpXKYA==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: - vite: ^3.0.0 || ^2.9.0 + vite: ^3.0.0 || ^2.9.0 || ^4.0.0 vue: '*' peerDependenciesMeta: vue: @@ -2984,65 +2977,51 @@ packages: '@babel/core': 7.20.5 '@babel/plugin-transform-typescript': 7.20.2_@babel+core@7.20.5 '@vue/babel-plugin-jsx': 1.1.1_@babel+core@7.20.5 - vite: 3.2.4 + vite: 4.0.0-alpha.6 vue: 3.2.45 transitivePeerDependencies: - supports-color dev: true - /@vitejs/plugin-vue/2.3.4_vite@2.9.15+vue@3.2.45: + /@vitejs/plugin-vue/2.3.4_zz5kkc62gxncg66a3kwgd72tiu: resolution: {integrity: sha512-IfFNbtkbIm36O9KB8QodlwwYvTEsJb4Lll4c2IwB3VHc2gie2mSPtSzL0eYay7X2jd/2WX02FjSGTWR6OPr/zg==} engines: {node: '>=12.0.0'} peerDependencies: - vite: ^2.5.10 || ^2.9.0 || ^3.0.0 + vite: ^2.5.10 || ^2.9.0 || ^3.0.0 || ^4.0.0 vue: '*' peerDependenciesMeta: vue: optional: true dependencies: - vite: 2.9.15 + vite: 4.0.0-alpha.6 vue: 3.2.45 dev: true - /@vitejs/plugin-vue/2.3.4_vite@3.2.4+vue@3.2.45: - resolution: {integrity: sha512-IfFNbtkbIm36O9KB8QodlwwYvTEsJb4Lll4c2IwB3VHc2gie2mSPtSzL0eYay7X2jd/2WX02FjSGTWR6OPr/zg==} - engines: {node: '>=12.0.0'} - peerDependencies: - vite: ^2.5.10 || ^2.9.0 || ^3.0.0 - vue: '*' - peerDependenciesMeta: - vue: - optional: true - dependencies: - vite: 3.2.4_@types+node@17.0.45 - vue: 3.2.45 - dev: true - - /@vitejs/plugin-vue/3.2.0_vite@3.2.4+vue@3.2.45: + /@vitejs/plugin-vue/3.2.0_zz5kkc62gxncg66a3kwgd72tiu: resolution: {integrity: sha512-E0tnaL4fr+qkdCNxJ+Xd0yM31UwMkQje76fsDVBBUCoGOUPexu2VDUYHL8P4CwV+zMvWw6nlRw19OnRKmYAJpw==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: - vite: ^3.0.0 || ^2.9.0 + vite: ^3.0.0 || ^2.9.0 || ^4.0.0 vue: '*' peerDependenciesMeta: vue: optional: true dependencies: - vite: 3.2.4_sass@1.56.1 + vite: 4.0.0-alpha.6_sass@1.56.1 vue: 3.2.45 dev: true - /@vitejs/plugin-vue2/1.1.2_vite@3.2.4+vue@2.7.14: + /@vitejs/plugin-vue2/1.1.2_okexyfp3o5q2yb7g34s7cq2cae: resolution: {integrity: sha512-y6OEA+2UdJ0xrEQHodq20v9r3SpS62IOHrgN92JPLvVpNkhcissu7yvD5PXMzMESyazj0XNWGsc8UQk8+mVrjQ==} engines: {node: '>=14.6.0'} peerDependencies: - vite: '>=2.5.10 || ^2.9.0 || ^3.0.0' + vite: '>=2.5.10 || ^2.9.0 || ^3.0.0 || ^4.0.0' vue: '*' peerDependenciesMeta: vue: optional: true dependencies: - vite: 3.2.4 + vite: 4.0.0-alpha.6 vue: 2.7.14 dev: true @@ -5490,14 +5469,6 @@ packages: resolution: {integrity: sha512-SOp9Phqvqn7jtEUxPWdWfWoLmyt2VaJ6MpvP9Comy1MceMXqE6bxvaTu4iaxpYYPzhny28Lc+M87/c2cPK6lDg==} dev: true - /esbuild-android-64/0.14.54: - resolution: {integrity: sha512-Tz2++Aqqz0rJ7kYBfz+iqyE3QMycD4vk7LBRyWaAVFgFtQ/O8EJOnVmTOiDWYZ/uYzB4kvP+bqejYdVKzE5lAQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [android] - requiresBuild: true - optional: true - /esbuild-android-64/0.15.16: resolution: {integrity: sha512-Vwkv/sT0zMSgPSVO3Jlt1pUbnZuOgtOQJkJkyyJFAlLe7BiT8e9ESzo0zQSx4c3wW4T6kGChmKDPMbWTgtliQA==} engines: {node: '>=12'} @@ -5506,14 +5477,6 @@ packages: requiresBuild: true optional: true - /esbuild-android-arm64/0.14.54: - resolution: {integrity: sha512-F9E+/QDi9sSkLaClO8SOV6etqPd+5DgJje1F9lOWoNncDdOBL2YF59IhsWATSt0TLZbYCf3pNlTHvVV5VfHdvg==} - engines: {node: '>=12'} - cpu: [arm64] - os: [android] - requiresBuild: true - optional: true - /esbuild-android-arm64/0.15.16: resolution: {integrity: sha512-lqfKuofMExL5niNV3gnhMUYacSXfsvzTa/58sDlBET/hCOG99Zmeh+lz6kvdgvGOsImeo6J9SW21rFCogNPLxg==} engines: {node: '>=12'} @@ -5522,14 +5485,6 @@ packages: requiresBuild: true optional: true - /esbuild-darwin-64/0.14.54: - resolution: {integrity: sha512-jtdKWV3nBviOd5v4hOpkVmpxsBy90CGzebpbO9beiqUYVMBtSc0AL9zGftFuBon7PNDcdvNCEuQqw2x0wP9yug==} - engines: {node: '>=12'} - cpu: [x64] - os: [darwin] - requiresBuild: true - optional: true - /esbuild-darwin-64/0.15.16: resolution: {integrity: sha512-wo2VWk/n/9V2TmqUZ/KpzRjCEcr00n7yahEdmtzlrfQ3lfMCf3Wa+0sqHAbjk3C6CKkR3WKK/whkMq5Gj4Da9g==} engines: {node: '>=12'} @@ -5538,14 +5493,6 @@ packages: requiresBuild: true optional: true - /esbuild-darwin-arm64/0.14.54: - resolution: {integrity: sha512-OPafJHD2oUPyvJMrsCvDGkRrVCar5aVyHfWGQzY1dWnzErjrDuSETxwA2HSsyg2jORLY8yBfzc1MIpUkXlctmw==} - engines: {node: '>=12'} - cpu: [arm64] - os: [darwin] - requiresBuild: true - optional: true - /esbuild-darwin-arm64/0.15.16: resolution: {integrity: sha512-fMXaUr5ou0M4WnewBKsspMtX++C1yIa3nJ5R2LSbLCfJT3uFdcRoU/NZjoM4kOMKyOD9Sa/2vlgN8G07K3SJnw==} engines: {node: '>=12'} @@ -5554,14 +5501,6 @@ packages: requiresBuild: true optional: true - /esbuild-freebsd-64/0.14.54: - resolution: {integrity: sha512-OKwd4gmwHqOTp4mOGZKe/XUlbDJ4Q9TjX0hMPIDBUWWu/kwhBAudJdBoxnjNf9ocIB6GN6CPowYpR/hRCbSYAg==} - engines: {node: '>=12'} - cpu: [x64] - os: [freebsd] - requiresBuild: true - optional: true - /esbuild-freebsd-64/0.15.16: resolution: {integrity: sha512-UzIc0xlRx5x9kRuMr+E3+hlSOxa/aRqfuMfiYBXu2jJ8Mzej4lGL7+o6F5hzhLqWfWm1GWHNakIdlqg1ayaTNQ==} engines: {node: '>=12'} @@ -5570,14 +5509,6 @@ packages: requiresBuild: true optional: true - /esbuild-freebsd-arm64/0.14.54: - resolution: {integrity: sha512-sFwueGr7OvIFiQT6WeG0jRLjkjdqWWSrfbVwZp8iMP+8UHEHRBvlaxL6IuKNDwAozNUmbb8nIMXa7oAOARGs1Q==} - engines: {node: '>=12'} - cpu: [arm64] - os: [freebsd] - requiresBuild: true - optional: true - /esbuild-freebsd-arm64/0.15.16: resolution: {integrity: sha512-8xyiYuGc0DLZphFQIiYaLHlfoP+hAN9RHbE+Ibh8EUcDNHAqbQgUrQg7pE7Bo00rXmQ5Ap6KFgcR0b4ALZls1g==} engines: {node: '>=12'} @@ -5586,14 +5517,6 @@ packages: requiresBuild: true optional: true - /esbuild-linux-32/0.14.54: - resolution: {integrity: sha512-1ZuY+JDI//WmklKlBgJnglpUL1owm2OX+8E1syCD6UAxcMM/XoWd76OHSjl/0MR0LisSAXDqgjT3uJqT67O3qw==} - engines: {node: '>=12'} - cpu: [ia32] - os: [linux] - requiresBuild: true - optional: true - /esbuild-linux-32/0.15.16: resolution: {integrity: sha512-iGijUTV+0kIMyUVoynK0v+32Oi8yyp0xwMzX69GX+5+AniNy/C/AL1MjFTsozRp/3xQPl7jVux/PLe2ds10/2w==} engines: {node: '>=12'} @@ -5602,14 +5525,6 @@ packages: requiresBuild: true optional: true - /esbuild-linux-64/0.14.54: - resolution: {integrity: sha512-EgjAgH5HwTbtNsTqQOXWApBaPVdDn7XcK+/PtJwZLT1UmpLoznPd8c5CxqsH2dQK3j05YsB3L17T8vE7cp4cCg==} - engines: {node: '>=12'} - cpu: [x64] - os: [linux] - requiresBuild: true - optional: true - /esbuild-linux-64/0.15.16: resolution: {integrity: sha512-tuSOjXdLw7VzaUj89fIdAaQT7zFGbKBcz4YxbWrOiXkwscYgE7HtTxUavreBbnRkGxKwr9iT/gmeJWNm4djy/g==} engines: {node: '>=12'} @@ -5618,14 +5533,6 @@ packages: requiresBuild: true optional: true - /esbuild-linux-arm/0.14.54: - resolution: {integrity: sha512-qqz/SjemQhVMTnvcLGoLOdFpCYbz4v4fUo+TfsWG+1aOu70/80RV6bgNpR2JCrppV2moUQkww+6bWxXRL9YMGw==} - engines: {node: '>=12'} - cpu: [arm] - os: [linux] - requiresBuild: true - optional: true - /esbuild-linux-arm/0.15.16: resolution: {integrity: sha512-XKcrxCEXDTOuoRj5l12tJnkvuxXBMKwEC5j0JISw3ziLf0j4zIwXbKbTmUrKFWbo6ZgvNpa7Y5dnbsjVvH39bQ==} engines: {node: '>=12'} @@ -5634,14 +5541,6 @@ packages: requiresBuild: true optional: true - /esbuild-linux-arm64/0.14.54: - resolution: {integrity: sha512-WL71L+0Rwv+Gv/HTmxTEmpv0UgmxYa5ftZILVi2QmZBgX3q7+tDeOQNqGtdXSdsL8TQi1vIaVFHUPDe0O0kdig==} - engines: {node: '>=12'} - cpu: [arm64] - os: [linux] - requiresBuild: true - optional: true - /esbuild-linux-arm64/0.15.16: resolution: {integrity: sha512-mPYksnfHnemNrvjrDhZyixL/AfbJN0Xn9S34ZOHYdh6/jJcNd8iTsv3JwJoEvTJqjMggjMhGUPJAdjnFBHoH8A==} engines: {node: '>=12'} @@ -5650,14 +5549,6 @@ packages: requiresBuild: true optional: true - /esbuild-linux-mips64le/0.14.54: - resolution: {integrity: sha512-qTHGQB8D1etd0u1+sB6p0ikLKRVuCWhYQhAHRPkO+OF3I/iSlTKNNS0Lh2Oc0g0UFGguaFZZiPJdJey3AGpAlw==} - engines: {node: '>=12'} - cpu: [mips64el] - os: [linux] - requiresBuild: true - optional: true - /esbuild-linux-mips64le/0.15.16: resolution: {integrity: sha512-kSJO2PXaxfm0pWY39+YX+QtpFqyyrcp0ZeI8QPTrcFVQoWEPiPVtOfTZeS3ZKedfH+Ga38c4DSzmKMQJocQv6A==} engines: {node: '>=12'} @@ -5666,14 +5557,6 @@ packages: requiresBuild: true optional: true - /esbuild-linux-ppc64le/0.14.54: - resolution: {integrity: sha512-j3OMlzHiqwZBDPRCDFKcx595XVfOfOnv68Ax3U4UKZ3MTYQB5Yz3X1mn5GnodEVYzhtZgxEBidLWeIs8FDSfrQ==} - engines: {node: '>=12'} - cpu: [ppc64] - os: [linux] - requiresBuild: true - optional: true - /esbuild-linux-ppc64le/0.15.16: resolution: {integrity: sha512-NimPikwkBY0yGABw6SlhKrtT35sU4O23xkhlrTT/O6lSxv3Pm5iSc6OYaqVAHWkLdVf31bF4UDVFO+D990WpAA==} engines: {node: '>=12'} @@ -5682,14 +5565,6 @@ packages: requiresBuild: true optional: true - /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-riscv64/0.15.16: resolution: {integrity: sha512-ty2YUHZlwFOwp7pR+J87M4CVrXJIf5ZZtU/umpxgVJBXvWjhziSLEQxvl30SYfUPq0nzeWKBGw5i/DieiHeKfw==} engines: {node: '>=12'} @@ -5698,14 +5573,6 @@ packages: requiresBuild: true optional: true - /esbuild-linux-s390x/0.14.54: - resolution: {integrity: sha512-zaHpW9dziAsi7lRcyV4r8dhfG1qBidQWUXweUjnw+lliChJqQr+6XD71K41oEIC3Mx1KStovEmlzm+MkGZHnHA==} - engines: {node: '>=12'} - cpu: [s390x] - os: [linux] - requiresBuild: true - optional: true - /esbuild-linux-s390x/0.15.16: resolution: {integrity: sha512-VkZaGssvPDQtx4fvVdZ9czezmyWyzpQhEbSNsHZZN0BHvxRLOYAQ7sjay8nMQwYswP6O2KlZluRMNPYefFRs+w==} engines: {node: '>=12'} @@ -5714,14 +5581,6 @@ packages: requiresBuild: true optional: true - /esbuild-netbsd-64/0.14.54: - resolution: {integrity: sha512-PR01lmIMnfJTgeU9VJTDY9ZerDWVFIUzAtJuDHwwceppW7cQWjBBqP48NdeRtoP04/AtO9a7w3viI+PIDr6d+w==} - engines: {node: '>=12'} - cpu: [x64] - os: [netbsd] - requiresBuild: true - optional: true - /esbuild-netbsd-64/0.15.16: resolution: {integrity: sha512-ElQ9rhdY51et6MJTWrCPbqOd/YuPowD7Cxx3ee8wlmXQQVW7UvQI6nSprJ9uVFQISqSF5e5EWpwWqXZsECLvXg==} engines: {node: '>=12'} @@ -5730,14 +5589,6 @@ packages: requiresBuild: true optional: true - /esbuild-openbsd-64/0.14.54: - resolution: {integrity: sha512-Qyk7ikT2o7Wu76UsvvDS5q0amJvmRzDyVlL0qf5VLsLchjCa1+IAvd8kTBgUxD7VBUUVgItLkk609ZHUc1oCaw==} - engines: {node: '>=12'} - cpu: [x64] - os: [openbsd] - requiresBuild: true - optional: true - /esbuild-openbsd-64/0.15.16: resolution: {integrity: sha512-KgxMHyxMCT+NdLQE1zVJEsLSt2QQBAvJfmUGDmgEq8Fvjrf6vSKB00dVHUEDKcJwMID6CdgCpvYNt999tIYhqA==} engines: {node: '>=12'} @@ -5746,14 +5597,6 @@ packages: requiresBuild: true optional: true - /esbuild-sunos-64/0.14.54: - resolution: {integrity: sha512-28GZ24KmMSeKi5ueWzMcco6EBHStL3B6ubM7M51RmPwXQGLe0teBGJocmWhgwccA1GeFXqxzILIxXpHbl9Q/Kw==} - engines: {node: '>=12'} - cpu: [x64] - os: [sunos] - requiresBuild: true - optional: true - /esbuild-sunos-64/0.15.16: resolution: {integrity: sha512-exSAx8Phj7QylXHlMfIyEfNrmqnLxFqLxdQF6MBHPdHAjT7fsKaX6XIJn+aQEFiOcE4X8e7VvdMCJ+WDZxjSRQ==} engines: {node: '>=12'} @@ -5762,14 +5605,6 @@ packages: requiresBuild: true optional: true - /esbuild-windows-32/0.14.54: - resolution: {integrity: sha512-T+rdZW19ql9MjS7pixmZYVObd9G7kcaZo+sETqNH4RCkuuYSuv9AGHUVnPoP9hhuE1WM1ZimHz1CIBHBboLU7w==} - engines: {node: '>=12'} - cpu: [ia32] - os: [win32] - requiresBuild: true - optional: true - /esbuild-windows-32/0.15.16: resolution: {integrity: sha512-zQgWpY5pUCSTOwqKQ6/vOCJfRssTvxFuEkpB4f2VUGPBpdddZfdj8hbZuFRdZRPIVHvN7juGcpgCA/XCF37mAQ==} engines: {node: '>=12'} @@ -5778,14 +5613,6 @@ packages: requiresBuild: true optional: true - /esbuild-windows-64/0.14.54: - resolution: {integrity: sha512-AoHTRBUuYwXtZhjXZbA1pGfTo8cJo3vZIcWGLiUcTNgHpJJMC1rVA44ZereBHMJtotyN71S8Qw0npiCIkW96cQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [win32] - requiresBuild: true - optional: true - /esbuild-windows-64/0.15.16: resolution: {integrity: sha512-HjW1hHRLSncnM3MBCP7iquatHVJq9l0S2xxsHHj4yzf4nm9TU4Z7k4NkeMlD/dHQ4jPlQQhwcMvwbJiOefSuZw==} engines: {node: '>=12'} @@ -5794,14 +5621,6 @@ packages: requiresBuild: true optional: true - /esbuild-windows-arm64/0.14.54: - resolution: {integrity: sha512-M0kuUvXhot1zOISQGXwWn6YtS+Y/1RT9WrVIOywZnJHo3jCDyewAc79aKNQWFCQm+xNHVTq9h8dZKvygoXQQRg==} - engines: {node: '>=12'} - cpu: [arm64] - os: [win32] - requiresBuild: true - optional: true - /esbuild-windows-arm64/0.15.16: resolution: {integrity: sha512-oCcUKrJaMn04Vxy9Ekd8x23O8LoU01+4NOkQ2iBToKgnGj5eo1vU9i27NQZ9qC8NFZgnQQZg5oZWAejmbsppNA==} engines: {node: '>=12'} @@ -5810,34 +5629,6 @@ packages: requiresBuild: true optional: true - /esbuild/0.14.54: - resolution: {integrity: sha512-Cy9llcy8DvET5uznocPyqL3BFRrFXSVqbgpMJ9Wz8oVjZlh/zUSNbPRbov0VX7VxN2JH1Oa0uNxZ7eLRb62pJA==} - engines: {node: '>=12'} - hasBin: true - requiresBuild: true - optionalDependencies: - '@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 - /esbuild/0.15.16: resolution: {integrity: sha512-o6iS9zxdHrrojjlj6pNGC2NAg86ECZqIETswTM5KmJitq+R1YmahhWtMumeQp9lHqJaROGnsBi2RLawGnfo5ZQ==} engines: {node: '>=12'} @@ -6237,10 +6028,6 @@ packages: resolution: {integrity: sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==} dev: true - /estree-walker/1.0.1: - resolution: {integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==} - dev: true - /estree-walker/2.0.2: resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} @@ -10276,8 +10063,8 @@ packages: terser: 5.16.1 dev: true - /rollup-plugin-typescript2/0.32.1_k35zwyycrckt5xfsejji7kbwn4: - resolution: {integrity: sha512-RanO8bp1WbeMv0bVlgcbsFNCn+Y3rX7wF97SQLDxf0fMLsg0B/QFF005t4AsGUcDgF3aKJHoqt4JF2xVaABeKw==} + /rollup-plugin-typescript2/0.34.1_rt6svyh24sgpogwv5hms77uhpq: + resolution: {integrity: sha512-P4cHLtGikESmqi1CA+tdMDUv8WbQV48mzPYt77TSTOPJpERyZ9TXdDgjSDix8Fkqce6soYz3+fa4lrC93IEkcw==} peerDependencies: rollup: '>=1.26.3' typescript: '>=2.4.0' @@ -10285,8 +10072,8 @@ packages: '@rollup/pluginutils': 4.2.1 find-cache-dir: 3.3.2 fs-extra: 10.1.0 - resolve: 1.22.1 - rollup: 2.79.1 + rollup: 3.5.1 + semver: 7.3.8 tslib: 2.4.1 typescript: 4.9.3 dev: true @@ -10313,20 +10100,29 @@ packages: estree-walker: 0.6.1 dev: true - /rollup/2.77.3: - resolution: {integrity: sha512-/qxNTG7FbmefJWoeeYJFbHehJ2HNWnjkAFRKzWN/45eNBBF/r8lo992CwcJXEzyVxs5FmfId+vTSTQDb+bxA+g==} + /rollup/2.79.1: + resolution: {integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==} engines: {node: '>=10.0.0'} hasBin: true optionalDependencies: fsevents: 2.3.2 + dev: true - /rollup/2.79.1: - resolution: {integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==} - engines: {node: '>=10.0.0'} + /rollup/3.3.0: + resolution: {integrity: sha512-wqOV/vUJCYEbWsXvwCkgGWvgaEnsbn4jxBQWKpN816CqsmCimDmCNJI83c6if7QVD4v/zlyRzxN7U2yDT5rfoA==} + engines: {node: '>=14.18.0', npm: '>=8.0.0'} hasBin: true optionalDependencies: fsevents: 2.3.2 + /rollup/3.5.1: + resolution: {integrity: sha512-hdQWTvPeiAbM6SUkxV70HdGUVxsgsc+CLy5fuh4KdgUBJ0SowXiix8gANgXoG3wEuLwfoJhCT2V+WwxfWq9Ikw==} + engines: {node: '>=14.18.0', npm: '>=8.0.0'} + hasBin: true + optionalDependencies: + fsevents: 2.3.2 + dev: true + /run-async/2.4.1: resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==} engines: {node: '>=0.12.0'} @@ -10638,6 +10434,7 @@ packages: /sourcemap-codec/1.4.8: resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==} + deprecated: Please use @jridgewell/sourcemap-codec instead /spawn-command/0.0.2-1: resolution: {integrity: sha512-n98l9E2RMSJ9ON1AKisHzz7V42VDiBQGY6PB1BwRglz99wpVsSuGzQ+jOi6lFXBGVTCrRpltvjm+/XA+tpeJrg==} @@ -11741,7 +11538,7 @@ packages: debug: 4.3.4 mlly: 0.5.17 pathe: 0.2.0 - vite: 3.2.4_@types+node@17.0.45 + vite: 4.0.0-alpha.6_@types+node@17.0.45 transitivePeerDependencies: - '@types/node' - less @@ -11762,7 +11559,7 @@ packages: pathe: 0.2.0 source-map: 0.6.1 source-map-support: 0.5.21 - vite: 3.2.4 + vite: 4.0.0-alpha.6 transitivePeerDependencies: - '@types/node' - less @@ -11773,7 +11570,7 @@ packages: - terser dev: true - /vite-node/0.3.6: + /vite-node/0.3.6_@types+node@17.0.45: resolution: {integrity: sha512-uJKzaOPUwthqDVWN8zIWxreMaiNOsQjh7HmyAAlGFRC/1ac9J3jcKV13LBVJ0TfAl0o0sagnHSQlLcDa0T8oUg==} engines: {node: '>=14.14.0'} hasBin: true @@ -11782,20 +11579,23 @@ packages: minimist: 1.2.7 mlly: 0.4.3 pathe: 0.2.0 - vite: 2.9.15 + vite: 4.0.0-alpha.6_@types+node@17.0.45 transitivePeerDependencies: + - '@types/node' - less - sass - stylus + - sugarss + - terser dev: true - /vite-plugin-checker/0.5.1_vite@3.2.4: + /vite-plugin-checker/0.5.1_vite@4.0.0-alpha.6: resolution: {integrity: sha512-NFiO1PyK9yGuaeSnJ7Whw9fnxLc1AlELnZoyFURnauBYhbIkx9n+PmIXxSFUuC9iFyACtbJQUAEuQi6yHs2Adg==} engines: {node: '>=14.16'} peerDependencies: eslint: '*' typescript: '*' - vite: ^2.0.0 || ^3.0.0-0 || ^2.9.0 || ^3.0.0 + vite: ^2.0.0 || ^3.0.0-0 || ^2.9.0 || ^3.0.0 || ^4.0.0 vls: '*' vti: '*' peerDependenciesMeta: @@ -11819,53 +11619,30 @@ packages: npm-run-path: 4.0.1 strip-ansi: 6.0.1 tiny-invariant: 1.3.1 - vite: 3.2.4 + vite: 4.0.0-alpha.6 vscode-languageclient: 7.0.0 vscode-languageserver: 7.0.0 vscode-languageserver-textdocument: 1.0.7 vscode-uri: 3.0.6 dev: true - /vite-plugin-vuetify/1.0.0-alpha.12_wdnmrbx3h66z4vxy7iaug2gifa: + /vite-plugin-vuetify/1.0.0-alpha.12_47cgwgxlmgfhx5upukripkknuq: resolution: {integrity: sha512-DMb7oY6F67P1RTEU28xQePUnyZdm+sbeGgIF3exBrA5yLL8NKKPIahqJN4+MAWMXCJVwNKy7nsS6zVgOLtcoQg==} engines: {node: '>=12'} peerDependencies: - vite: ^2.7.0 || ^2.9.0 || ^3.0.0 + vite: ^2.7.0 || ^2.9.0 || ^3.0.0 || ^4.0.0 vuetify: ^3.0.0-beta.4 dependencies: '@vuetify/loader-shared': 1.7.0_vue@3.2.45+vuetify@3.0.3 debug: 4.3.4 - vite: 2.9.15 + vite: 4.0.0-alpha.6 vuetify: 3.0.3_ny5xcw2md7vsxw37otcxmygka4 transitivePeerDependencies: - supports-color - vue - /vite/2.9.15: - resolution: {integrity: sha512-fzMt2jK4vQ3yK56te3Kqpkaeq9DkcZfBbzHwYpobasvgYmP2SoAr6Aic05CsB4CzCZbsDv4sujX3pkEGhLabVQ==} - engines: {node: '>=12.2.0'} - hasBin: true - peerDependencies: - less: '*' - sass: '*' - stylus: '*' - peerDependenciesMeta: - less: - optional: true - sass: - optional: true - stylus: - optional: true - dependencies: - esbuild: 0.14.54 - postcss: 8.4.19 - resolve: 1.22.1 - rollup: 2.77.3 - optionalDependencies: - fsevents: 2.3.2 - - /vite/3.2.4: - resolution: {integrity: sha512-Z2X6SRAffOUYTa+sLy3NQ7nlHFU100xwanq1WDwqaiFiCe+25zdxP1TfCS5ojPV2oDDcXudHIoPnI1Z/66B7Yw==} + /vite/4.0.0-alpha.6: + resolution: {integrity: sha512-BaD8cO3GYWekTuqW3iIbYayr9FRAXYjtl+sG5emPUh6sE7FnVZwSyKzp1RKtlurFouCdnNzoWSRggYqKC0Bw0w==} engines: {node: ^14.18.0 || >=16.0.0} hasBin: true peerDependencies: @@ -11892,13 +11669,12 @@ packages: esbuild: 0.15.16 postcss: 8.4.19 resolve: 1.22.1 - rollup: 2.79.1 + rollup: 3.3.0 optionalDependencies: fsevents: 2.3.2 - dev: true - /vite/3.2.4_@types+node@17.0.45: - resolution: {integrity: sha512-Z2X6SRAffOUYTa+sLy3NQ7nlHFU100xwanq1WDwqaiFiCe+25zdxP1TfCS5ojPV2oDDcXudHIoPnI1Z/66B7Yw==} + /vite/4.0.0-alpha.6_@types+node@17.0.45: + resolution: {integrity: sha512-BaD8cO3GYWekTuqW3iIbYayr9FRAXYjtl+sG5emPUh6sE7FnVZwSyKzp1RKtlurFouCdnNzoWSRggYqKC0Bw0w==} engines: {node: ^14.18.0 || >=16.0.0} hasBin: true peerDependencies: @@ -11926,12 +11702,12 @@ packages: esbuild: 0.15.16 postcss: 8.4.19 resolve: 1.22.1 - rollup: 2.79.1 + rollup: 3.3.0 optionalDependencies: fsevents: 2.3.2 - /vite/3.2.4_sass@1.56.1: - resolution: {integrity: sha512-Z2X6SRAffOUYTa+sLy3NQ7nlHFU100xwanq1WDwqaiFiCe+25zdxP1TfCS5ojPV2oDDcXudHIoPnI1Z/66B7Yw==} + /vite/4.0.0-alpha.6_sass@1.56.1: + resolution: {integrity: sha512-BaD8cO3GYWekTuqW3iIbYayr9FRAXYjtl+sG5emPUh6sE7FnVZwSyKzp1RKtlurFouCdnNzoWSRggYqKC0Bw0w==} engines: {node: ^14.18.0 || >=16.0.0} hasBin: true peerDependencies: @@ -11958,21 +11734,21 @@ packages: esbuild: 0.15.16 postcss: 8.4.19 resolve: 1.22.1 - rollup: 2.79.1 + rollup: 3.3.0 sass: 1.56.1 optionalDependencies: fsevents: 2.3.2 dev: true - /vitefu/0.2.2_vite@3.2.4: + /vitefu/0.2.2_vite@4.0.0-alpha.6: resolution: {integrity: sha512-8CKEIWPm4B4DUDN+h+hVJa9pyNi7rzc5MYmbxhs1wcMakueGFNWB5/DL30USm9qU3xUPnL4/rrLEAwwFiD1tag==} peerDependencies: - vite: ^3.0.0 || ^2.9.0 + vite: ^3.0.0 || ^2.9.0 || ^4.0.0 peerDependenciesMeta: vite: optional: true dependencies: - vite: 3.2.4 + vite: 4.0.0-alpha.6 dev: true /vitepress/1.0.0-alpha.10: @@ -11981,12 +11757,12 @@ packages: dependencies: '@docsearch/css': 3.3.0 '@docsearch/js': 3.3.0 - '@vitejs/plugin-vue': 3.2.0_vite@3.2.4+vue@3.2.45 + '@vitejs/plugin-vue': 3.2.0_zz5kkc62gxncg66a3kwgd72tiu '@vue/devtools-api': 6.4.5 '@vueuse/core': 9.6.0_vue@3.2.45 body-scroll-lock: 4.0.0-beta.0 shiki: 0.11.1 - vite: 3.2.4 + vite: 4.0.0-alpha.6 vue: 3.2.45 transitivePeerDependencies: - '@algolia/client-search' @@ -12213,7 +11989,7 @@ packages: webpack-plugin-vuetify: optional: true dependencies: - vite-plugin-vuetify: 1.0.0-alpha.12_wdnmrbx3h66z4vxy7iaug2gifa + vite-plugin-vuetify: 1.0.0-alpha.12_47cgwgxlmgfhx5upukripkknuq vue: 3.2.45 /w3c-keyname/2.2.6: From 931941ecb6c71883d14cd27af6f977c94d4ad067 Mon Sep 17 00:00:00 2001 From: Guillaume Chau Date: Thu, 8 Dec 2022 18:03:19 +0100 Subject: [PATCH 2/6] chore: update vite version --- package.json | 2 +- pnpm-lock.yaml | 435 +++++++++++++++++++++++++++++++++++++------------ 2 files changed, 336 insertions(+), 101 deletions(-) diff --git a/package.json b/package.json index e0dc10a1..f17ae8a8 100644 --- a/package.json +++ b/package.json @@ -67,7 +67,7 @@ } }, "overrides": { - "vite": "^4.0.0-alpha.6" + "vite": "^4.0.0-beta.5" } } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 37801dd6..2fedc1e9 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,7 +1,7 @@ lockfileVersion: 5.4 overrides: - vite: ^4.0.0-alpha.6 + vite: ^4.0.0-beta.5 importers: @@ -90,17 +90,17 @@ importers: start-server-and-test: ^1.14.0 svelte: ^3.49.0 svelte-preprocess: ^4.10.7 - vite: ^4.0.0-alpha.6 + vite: ^4.0.0-beta.5 dependencies: svelte: 3.53.1 devDependencies: '@histoire/plugin-svelte': link:../../packages/histoire-plugin-svelte - '@sveltejs/vite-plugin-svelte': 1.4.0_5ydygliaonb7zqn4qyhhvxl5pa + '@sveltejs/vite-plugin-svelte': 1.4.0_7jhngxjyemgcxnkuf4dsedrxyq cypress: 10.11.0 histoire: link:../../packages/histoire start-server-and-test: 1.14.0 svelte-preprocess: 4.10.7_svelte@3.53.1 - vite: 4.0.0-alpha.6 + vite: 4.0.0-beta.5 examples/sveltekit: specifiers: @@ -116,14 +116,14 @@ importers: svelte-preprocess: ^4.10.7 tslib: ^2.3.1 typescript: ^4.7.4 - vite: ^4.0.0-alpha.6 + vite: ^4.0.0-beta.5 dependencies: '@fontsource/fira-mono': 4.5.10 cookie: 0.4.2 devDependencies: '@histoire/plugin-svelte': link:../../packages/histoire-plugin-svelte '@sveltejs/adapter-auto': 1.0.0-next.90 - '@sveltejs/kit': 1.0.0-next.571_5ydygliaonb7zqn4qyhhvxl5pa + '@sveltejs/kit': 1.0.0-next.573_7jhngxjyemgcxnkuf4dsedrxyq '@types/cookie': 0.5.1 histoire: link:../../packages/histoire svelte: 3.53.1 @@ -131,23 +131,23 @@ importers: svelte-preprocess: 4.10.7_7dvewpees4iyn2tkw2qzal77a4 tslib: 2.4.1 typescript: 4.9.3 - vite: 4.0.0-alpha.6 + vite: 4.0.0-beta.5 examples/vue2: specifiers: '@histoire/plugin-vue2': workspace:* '@vitejs/plugin-vue2': ^1.1.2 histoire: workspace:* - vite: ^4.0.0-alpha.6 + vite: ^4.0.0-beta.5 vue: ^2.7.8 vue-template-compiler: ^2.7.8 dependencies: vue: 2.7.14 devDependencies: '@histoire/plugin-vue2': link:../../packages/histoire-plugin-vue2 - '@vitejs/plugin-vue2': 1.1.2_okexyfp3o5q2yb7g34s7cq2cae + '@vitejs/plugin-vue2': 1.1.2_mmbjmtyteriw7xwbxx7b4qoi3i histoire: link:../../packages/histoire - vite: 4.0.0-alpha.6 + vite: 4.0.0-beta.5 vue-template-compiler: 2.7.14 examples/vue3: @@ -162,7 +162,7 @@ importers: pinia: ^2.0.13 sass: ^1.50.0 start-server-and-test: ^1.14.0 - vite: ^4.0.0-alpha.6 + vite: ^4.0.0-beta.5 vue: ^3.2.31 dependencies: lottie-web: 5.10.0 @@ -172,12 +172,12 @@ importers: '@histoire/app': link:../../packages/histoire-app '@histoire/plugin-vue': link:../../packages/histoire-plugin-vue '@histoire/vendors': link:../../packages/histoire-vendors - '@vitejs/plugin-vue': 3.2.0_zz5kkc62gxncg66a3kwgd72tiu + '@vitejs/plugin-vue': 3.2.0_52n6m3tculxsdye4oufjkspuma cypress: 9.7.0 histoire: link:../../packages/histoire sass: 1.56.1 start-server-and-test: 1.14.0 - vite: 4.0.0-alpha.6_sass@1.56.1 + vite: 4.0.0-beta.5_sass@1.56.1 examples/vue3-percy: specifiers: @@ -185,16 +185,16 @@ importers: '@histoire/plugin-vue': workspace:* '@vitejs/plugin-vue': ^3.0.1 histoire: workspace:* - vite: ^4.0.0-alpha.6 + vite: ^4.0.0-beta.5 vue: ^3.2.31 dependencies: vue: 3.2.45 devDependencies: '@histoire/plugin-percy': link:../../packages/histoire-plugin-percy '@histoire/plugin-vue': link:../../packages/histoire-plugin-vue - '@vitejs/plugin-vue': 3.2.0_zz5kkc62gxncg66a3kwgd72tiu + '@vitejs/plugin-vue': 3.2.0_52n6m3tculxsdye4oufjkspuma histoire: link:../../packages/histoire - vite: 4.0.0-alpha.6 + vite: 4.0.0-beta.5 examples/vue3-screenshot: specifiers: @@ -202,31 +202,31 @@ importers: '@histoire/plugin-vue': workspace:* '@vitejs/plugin-vue': ^3.0.1 histoire: workspace:* - vite: ^4.0.0-alpha.6 + vite: ^4.0.0-beta.5 vue: ^3.2.31 dependencies: vue: 3.2.45 devDependencies: '@histoire/plugin-screenshot': link:../../packages/histoire-plugin-screenshot '@histoire/plugin-vue': link:../../packages/histoire-plugin-vue - '@vitejs/plugin-vue': 3.2.0_zz5kkc62gxncg66a3kwgd72tiu + '@vitejs/plugin-vue': 3.2.0_52n6m3tculxsdye4oufjkspuma histoire: link:../../packages/histoire - vite: 4.0.0-alpha.6 + vite: 4.0.0-beta.5 examples/vue3-themed: specifiers: '@histoire/plugin-vue': workspace:* '@vitejs/plugin-vue': ^3.0.1 histoire: workspace:* - vite: ^4.0.0-alpha.6 + vite: ^4.0.0-beta.5 vue: ^3.2.31 dependencies: vue: 3.2.45 devDependencies: '@histoire/plugin-vue': link:../../packages/histoire-plugin-vue - '@vitejs/plugin-vue': 3.2.0_zz5kkc62gxncg66a3kwgd72tiu + '@vitejs/plugin-vue': 3.2.0_52n6m3tculxsdye4oufjkspuma histoire: link:../../packages/histoire - vite: 4.0.0-alpha.6 + vite: 4.0.0-beta.5 examples/vue3-vuetify: specifiers: @@ -234,7 +234,7 @@ importers: '@mdi/font': ^5.9.55 '@vitejs/plugin-vue': ^2.3.1 histoire: workspace:* - vite: ^4.0.0-alpha.6 + vite: ^4.0.0-beta.5 vite-plugin-vuetify: 1.0.0-alpha.12 vue: ^3.2.31 vuetify: ^3.0.0-beta.3 @@ -244,10 +244,10 @@ importers: vuetify: 3.0.3_ny5xcw2md7vsxw37otcxmygka4 devDependencies: '@histoire/plugin-vue': link:../../packages/histoire-plugin-vue - '@vitejs/plugin-vue': 2.3.4_zz5kkc62gxncg66a3kwgd72tiu + '@vitejs/plugin-vue': 2.3.4_52n6m3tculxsdye4oufjkspuma histoire: link:../../packages/histoire - vite: 4.0.0-alpha.6 - vite-plugin-vuetify: 1.0.0-alpha.12_47cgwgxlmgfhx5upukripkknuq + vite: 4.0.0-beta.5 + vite-plugin-vuetify: 1.0.0-alpha.12_4bc5gj3nsi2zssa6s544ael4i4 packages/histoire: specifiers: @@ -288,7 +288,7 @@ importers: sirv: ^2.0.2 tinypool: ^0.1.2 typescript: ^4.7.4 - vite: ^4.0.0-alpha.6 + vite: ^4.0.0-beta.5 vite-node: 0.23.4 dependencies: '@histoire/app': link:../histoire-app @@ -330,7 +330,7 @@ importers: '@types/node': 17.0.45 rollup: 3.5.1 typescript: 4.9.3 - vite: 4.0.0-alpha.6_@types+node@17.0.45 + vite: 4.0.0-beta.5_@types+node@17.0.45 packages/histoire-app: specifiers: @@ -354,7 +354,7 @@ importers: shiki-es: ^0.1.2 tailwindcss: ^3.0.23 typescript: ^4.7.4 - vite: ^4.0.0-alpha.6 + vite: ^4.0.0-beta.5 vue: ^3.2.31 dependencies: '@histoire/controls': link:../histoire-controls @@ -367,7 +367,7 @@ importers: '@tailwindcss/typography': 0.5.8_tailwindcss@3.2.4 '@types/fs-extra': 9.0.13 '@types/node': 17.0.45 - '@vitejs/plugin-vue': 3.2.0_zz5kkc62gxncg66a3kwgd72tiu + '@vitejs/plugin-vue': 3.2.0_52n6m3tculxsdye4oufjkspuma autoprefixer: 10.4.13_postcss@8.4.19 chokidar: 3.5.3 concurrently: 7.6.0 @@ -378,7 +378,7 @@ importers: postcss-import: 14.1.0_postcss@8.4.19 tailwindcss: 3.2.4_postcss@8.4.19 typescript: 4.9.3 - vite: 4.0.0-alpha.6_@types+node@17.0.45 + vite: 4.0.0-beta.5_@types+node@17.0.45 vue: 3.2.45 packages/histoire-controls: @@ -404,7 +404,7 @@ importers: postcss-import: ^14.1.0 tailwindcss: ^3.0.23 typescript: ^4.7.4 - vite: ^4.0.0-alpha.6 + vite: ^4.0.0-beta.5 vue: ^3.2.31 vue-tsc: ^0.35.2 dependencies: @@ -420,7 +420,7 @@ importers: '@peeky/server': 0.14.0_@types+node@17.0.45 '@peeky/test': 0.14.1_7xgr23p2hp47ryj3a27pbosgwi '@types/node': 17.0.45 - '@vitejs/plugin-vue': 2.3.4_zz5kkc62gxncg66a3kwgd72tiu + '@vitejs/plugin-vue': 2.3.4_52n6m3tculxsdye4oufjkspuma '@vue/test-utils': 2.2.5_vue@3.2.45 '@vueuse/core': 8.9.4_vue@3.2.45 autoprefixer: 10.4.13_postcss@8.4.19 @@ -430,7 +430,7 @@ importers: postcss-import: 14.1.0_postcss@8.4.19 tailwindcss: 3.2.4_postcss@8.4.19 typescript: 4.9.3 - vite: 4.0.0-alpha.6_@types+node@17.0.45 + vite: 4.0.0-beta.5_@types+node@17.0.45 vue: 3.2.45 vue-tsc: 0.35.2_typescript@4.9.3 @@ -440,16 +440,16 @@ importers: '@histoire/plugin-vue': workspace:* '@vitejs/plugin-vue': ^3.1.2 histoire: workspace:* - vite: ^4.0.0-alpha.6 + vite: ^4.0.0-beta.5 vue: ^3.2.31 dependencies: '@histoire/controls': link:../histoire-controls vue: 3.2.45 devDependencies: '@histoire/plugin-vue': link:../histoire-plugin-vue - '@vitejs/plugin-vue': 3.2.0_zz5kkc62gxncg66a3kwgd72tiu + '@vitejs/plugin-vue': 3.2.0_52n6m3tculxsdye4oufjkspuma histoire: link:../histoire - vite: 4.0.0-alpha.6 + vite: 4.0.0-beta.5 packages/histoire-plugin-nuxt: specifiers: @@ -458,7 +458,7 @@ importers: '@types/node': ^17.0.32 histoire: workspace:* typescript: ^4.7.4 - vite: ^4.0.0-alpha.6 + vite: ^4.0.0-beta.5 dependencies: '@nuxt/kit': 3.0.0 devDependencies: @@ -466,7 +466,7 @@ importers: '@types/node': 17.0.45 histoire: link:../histoire typescript: 4.9.3 - vite: 4.0.0-alpha.6_@types+node@17.0.45 + vite: 4.0.0-beta.5_@types+node@17.0.45 packages/histoire-plugin-percy: specifiers: @@ -522,13 +522,13 @@ importers: svelte: ^3.49.0 svelte-preprocess: ^4.10.7 typescript: ^4.7.4 - vite: ^4.0.0-alpha.6 + vite: ^4.0.0-beta.5 dependencies: '@histoire/controls': link:../histoire-controls '@histoire/shared': link:../histoire-shared '@histoire/vendors': link:../histoire-vendors devDependencies: - '@sveltejs/vite-plugin-svelte': 1.4.0_5ydygliaonb7zqn4qyhhvxl5pa + '@sveltejs/vite-plugin-svelte': 1.4.0_7jhngxjyemgcxnkuf4dsedrxyq '@types/node': 17.0.45 concurrently: 7.6.0 fs-extra: 10.1.0 @@ -537,7 +537,7 @@ importers: svelte: 3.53.1 svelte-preprocess: 4.10.7_7dvewpees4iyn2tkw2qzal77a4 typescript: 4.9.3 - vite: 4.0.0-alpha.6_@types+node@17.0.45 + vite: 4.0.0-beta.5_@types+node@17.0.45 packages/histoire-plugin-vue: specifiers: @@ -549,7 +549,7 @@ importers: concurrently: ^7.1.0 histoire: workspace:* typescript: ^4.7.4 - vite: ^4.0.0-alpha.6 + vite: ^4.0.0-beta.5 vue: ^3.2.31 dependencies: '@histoire/controls': link:../histoire-controls @@ -561,7 +561,7 @@ importers: concurrently: 7.6.0 histoire: link:../histoire typescript: 4.9.3 - vite: 4.0.0-alpha.6_@types+node@17.0.45 + vite: 4.0.0-beta.5_@types+node@17.0.45 vue: 3.2.45 packages/histoire-plugin-vue2: @@ -574,7 +574,7 @@ importers: concurrently: ^7.1.0 histoire: workspace:* typescript: ^4.7.4 - vite: ^4.0.0-alpha.6 + vite: ^4.0.0-beta.5 vue: ^2.7.8 dependencies: '@histoire/controls': link:../histoire-controls @@ -586,7 +586,7 @@ importers: concurrently: 7.6.0 histoire: link:../histoire typescript: 4.9.3 - vite: 4.0.0-alpha.6_@types+node@17.0.45 + vite: 4.0.0-beta.5_@types+node@17.0.45 vue: 2.7.14 packages/histoire-shared: @@ -597,7 +597,7 @@ importers: pathe: ^0.2.0 picocolors: ^1.0.0 typescript: ^4.7.4 - vite: ^4.0.0-alpha.6 + vite: ^4.0.0-beta.5 dependencies: '@types/fs-extra': 9.0.13 '@types/markdown-it': 12.2.3 @@ -606,7 +606,7 @@ importers: picocolors: 1.0.0 devDependencies: typescript: 4.9.3 - vite: 4.0.0-alpha.6 + vite: 4.0.0-beta.5 packages/histoire-vendors: specifiers: @@ -1374,6 +1374,87 @@ packages: cpu: [arm] os: [android] requiresBuild: true + dev: true + optional: true + + /@esbuild/android-arm/0.16.2: + resolution: {integrity: sha512-t8zq/Ad8njye3tYkbdBYAEGBExCyqFuPnKmKgLBF9+nIwAS/V3FYck6BjAx813JCGXkNsR1iriS8jQFwydT+FA==} + engines: {node: '>=12'} + cpu: [arm] + os: [android] + requiresBuild: true + optional: true + + /@esbuild/android-arm64/0.16.2: + resolution: {integrity: sha512-3CjbygjFHmtxDW59FOUM1T28G+aVqzbM+cNNinMgRUq+bmAstJdqmJL/KqpUwuCRTri4BgHJRWQbHOQFLwIpxw==} + engines: {node: '>=12'} + cpu: [arm64] + os: [android] + requiresBuild: true + optional: true + + /@esbuild/android-x64/0.16.2: + resolution: {integrity: sha512-J5pzzVs9gHRQff8vUBhGMRQU1avwD9IVTSfzhdnKRqlxq0hsdcgZxH95Ckj/q2KJ4nMPYfDBSRXrrvQ4PyMpFA==} + engines: {node: '>=12'} + cpu: [x64] + os: [android] + requiresBuild: true + optional: true + + /@esbuild/darwin-arm64/0.16.2: + resolution: {integrity: sha512-XmjlYmR1UTEdMT2X3TxnA0hG8zOi3q/BzqNN6/PDBxw/UxE9gdj7LGwiQus5HHZM03vSvjRO7WJ7qaJBGBWnpQ==} + engines: {node: '>=12'} + cpu: [arm64] + os: [darwin] + requiresBuild: true + optional: true + + /@esbuild/darwin-x64/0.16.2: + resolution: {integrity: sha512-nq5cXgzbXHhBqZEPpuXrf2+BV6QWUM8vAyT/ElJrdIkoGOHwNQJEqZHl3KOWK+1V3KXEXgJhh7DsLixIc677ZQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [darwin] + requiresBuild: true + optional: true + + /@esbuild/freebsd-arm64/0.16.2: + resolution: {integrity: sha512-1QuZr7GnoipDYMFJDucqXmVvJZidZuHbvw5QLzBehYq67GR1Jub9pSo6O0Rt4LtKnu3TF2K/bjgzPJAGFY6W4Q==} + engines: {node: '>=12'} + cpu: [arm64] + os: [freebsd] + requiresBuild: true + optional: true + + /@esbuild/freebsd-x64/0.16.2: + resolution: {integrity: sha512-uvbv99Wg2T489bqUz4gYVb2IpSSZZP/uTkaZpaLN+h3x58FmsLT4o7bF1Refd2JIKuONxSobljlk5/K/RD9SsQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [freebsd] + requiresBuild: true + optional: true + + /@esbuild/linux-arm/0.16.2: + resolution: {integrity: sha512-8n2UozHygOGXzgysim6GifKjv+lW4fs3mlfaoKerwBIOT9OBCo1Q4AjvbtU3F+2AGyo8eavxnj6Xxx0DRTOwiw==} + engines: {node: '>=12'} + cpu: [arm] + os: [linux] + requiresBuild: true + optional: true + + /@esbuild/linux-arm64/0.16.2: + resolution: {integrity: sha512-S7EwMhEUMzYfd9KTHJX7Y3bKz7/9sZDRJPp10EOQ3Qqp10WvX2G42Q2c7rfymnm9aM5ZWs+W8WgbLFAUnjC3Wg==} + engines: {node: '>=12'} + cpu: [arm64] + os: [linux] + requiresBuild: true + optional: true + + /@esbuild/linux-ia32/0.16.2: + resolution: {integrity: sha512-TRz3MDvv65zXZ4NTJYi1yyVj17Qrsm8y6J8r4qIdd2qszRLPHmte4LAazPa7g+To6QfM2kL3gHmVhwV6GcYz0g==} + engines: {node: '>=12'} + cpu: [ia32] + os: [linux] + requiresBuild: true optional: true /@esbuild/linux-loong64/0.15.16: @@ -1382,6 +1463,103 @@ packages: cpu: [loong64] os: [linux] requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-loong64/0.16.2: + resolution: {integrity: sha512-yhHJCvPQjh/8wLEk336QzXMHYnMKJdzLcNAnXwVawSvsLqyzTYrGshrO1YMhzs5cWgR75DFNnhcAFgEtleAZOw==} + engines: {node: '>=12'} + cpu: [loong64] + os: [linux] + requiresBuild: true + optional: true + + /@esbuild/linux-mips64el/0.16.2: + resolution: {integrity: sha512-YwMpV41qIKRHASV4MaaA/PKk9CoZ4QyVyPXhUtLTO9kPWtWECRI4MTBrGIb9kGUpL6I+jiT4fAZn8YpWSGBkQg==} + engines: {node: '>=12'} + cpu: [mips64el] + os: [linux] + requiresBuild: true + optional: true + + /@esbuild/linux-ppc64/0.16.2: + resolution: {integrity: sha512-s4YuINcRxCA9TElEf2iBdG6oZWdNu2Eb6R9TbRBcZOTdcgdBKIinaVyEiQ8H6nmCafWCuuJT8u66zds2ET3t1Q==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [linux] + requiresBuild: true + optional: true + + /@esbuild/linux-riscv64/0.16.2: + resolution: {integrity: sha512-oacL6QGqVRhBCbBlFxODYfcCkB6tPmfanaWnsuHNI7m9LVkBuuDKpsC3XWOwkEQiLIJcvhhZKOkkgw49KxS1Dw==} + engines: {node: '>=12'} + cpu: [riscv64] + os: [linux] + requiresBuild: true + optional: true + + /@esbuild/linux-s390x/0.16.2: + resolution: {integrity: sha512-5ifr0lshZbLI457Qe6y3MsDYv1cSOJ8awgi0HT14cS59WliT7bDkrr3kmDw/LqGOAPyDvDD+U8s2cFBSENetuA==} + engines: {node: '>=12'} + cpu: [s390x] + os: [linux] + requiresBuild: true + optional: true + + /@esbuild/linux-x64/0.16.2: + resolution: {integrity: sha512-TA/ORYlP6h2pfB/dzrPTMFWd1MaUYy7kwblWdzwkUtsTAJAKJlZwBhkKftSaUNNU5wtXNJ9+ucMDf7vBPbDjlw==} + engines: {node: '>=12'} + cpu: [x64] + os: [linux] + requiresBuild: true + optional: true + + /@esbuild/netbsd-x64/0.16.2: + resolution: {integrity: sha512-oBH2Aj4fL9FLlkIi2wYGckydKHVKmYrqiqt91i6kFE1mF7B05YYttrlOHAf3JzWIJQWyvzvsmoA/XFPf1sTgBw==} + engines: {node: '>=12'} + cpu: [x64] + os: [netbsd] + requiresBuild: true + optional: true + + /@esbuild/openbsd-x64/0.16.2: + resolution: {integrity: sha512-eKOpYr7CiF9GZxu18iOQGfzQ4htO6KGhXriW2raJvRO0G27Lu7ArAI/kW71yTPaFqlf9gCmCGaTPr2tmiUePVg==} + engines: {node: '>=12'} + cpu: [x64] + os: [openbsd] + requiresBuild: true + optional: true + + /@esbuild/sunos-x64/0.16.2: + resolution: {integrity: sha512-1HsQLVnjhlscekE8H5Xj49xPvd0c74eoZEjh+OUnr+x7vCXdTVdFDgao9QM0H9zfioxJN1ZH7534LwxEaAWaIA==} + engines: {node: '>=12'} + cpu: [x64] + os: [sunos] + requiresBuild: true + optional: true + + /@esbuild/win32-arm64/0.16.2: + resolution: {integrity: sha512-G9AWjsnVxGQj8z0WgaDwTKgXzwc9zLPYDFoLE4oAGI/TQnft0eQjc+CKiWRyoa+a/c3XIFGXoWnW+17kbibSfA==} + engines: {node: '>=12'} + cpu: [arm64] + os: [win32] + requiresBuild: true + optional: true + + /@esbuild/win32-ia32/0.16.2: + resolution: {integrity: sha512-UJqmfPsiSX/wP1kY5JMordRqNU2r8n8ieXmNimp4r35sQEX3bjnSkPJ2E8BM8W8ecmEL+oDjYjulkTT3zSPa1g==} + engines: {node: '>=12'} + cpu: [ia32] + os: [win32] + requiresBuild: true + optional: true + + /@esbuild/win32-x64/0.16.2: + resolution: {integrity: sha512-1+PQiGAbbGlIXXlp9i/5JRpodCsozGTjffaD4W1LgeoynWef38VD8NNC8yG366NYXHHHLR1pN6MQZ9r2na/S1A==} + engines: {node: '>=12'} + cpu: [x64] + os: [win32] + requiresBuild: true optional: true /@eslint/eslintrc/1.3.3: @@ -1862,8 +2040,8 @@ packages: dependencies: '@nuxt/kit': 3.0.0_rollup@2.79.1 '@rollup/plugin-replace': 5.0.1_rollup@2.79.1 - '@vitejs/plugin-vue': 3.2.0_zz5kkc62gxncg66a3kwgd72tiu - '@vitejs/plugin-vue-jsx': 2.1.1_zz5kkc62gxncg66a3kwgd72tiu + '@vitejs/plugin-vue': 3.2.0_52n6m3tculxsdye4oufjkspuma + '@vitejs/plugin-vue-jsx': 2.1.1_52n6m3tculxsdye4oufjkspuma autoprefixer: 10.4.13_postcss@8.4.19 chokidar: 3.5.3 cssnano: 5.1.14_postcss@8.4.19 @@ -1889,9 +2067,9 @@ packages: rollup-plugin-visualizer: 5.8.3_rollup@2.79.1 ufo: 1.0.1 unplugin: 1.0.0 - vite: 4.0.0-alpha.6 + vite: 4.0.0-beta.5 vite-node: 0.25.3 - vite-plugin-checker: 0.5.1_vite@4.0.0-alpha.6 + vite-plugin-checker: 0.5.1_vite@4.0.0-beta.5 vue: 3.2.45 vue-bundle-renderer: 1.0.0 transitivePeerDependencies: @@ -1977,7 +2155,7 @@ packages: fs-extra: 10.1.0 nanoid: 4.0.0 pathe: 0.3.9 - vite: 4.0.0-alpha.6_@types+node@17.0.45 + vite: 4.0.0-beta.5_@types+node@17.0.45 transitivePeerDependencies: - '@types/node' - less @@ -2024,7 +2202,7 @@ packages: slugify: 1.6.5 source-map-support: 0.5.21 tinypool: 0.3.0 - vite: 4.0.0-alpha.6_@types+node@17.0.45 + vite: 4.0.0-beta.5_@types+node@17.0.45 vite-node: 0.3.6_@types+node@17.0.45 transitivePeerDependencies: - '@types/node' @@ -2061,7 +2239,7 @@ packages: object-inspect: 1.12.2 pathe: 0.3.9 slugify: 1.6.5 - vite: 4.0.0-alpha.6_@types+node@17.0.45 + vite: 4.0.0-beta.5_@types+node@17.0.45 ws: 8.11.0 transitivePeerDependencies: - '@types/node' @@ -2446,8 +2624,8 @@ packages: import-meta-resolve: 2.2.0 dev: true - /@sveltejs/kit/1.0.0-next.571_5ydygliaonb7zqn4qyhhvxl5pa: - resolution: {integrity: sha512-J+J0UXBiAh569l4ZxKm6eIZJS4lbcP8MgF9fU+DbVplCJ8nqo9wUmirUHZkJoBoB0FUlZSgA0R7N471MnUNNBw==} + /@sveltejs/kit/1.0.0-next.573_7jhngxjyemgcxnkuf4dsedrxyq: + resolution: {integrity: sha512-3qizgkX7oO1rt+wq3EvJHDNBtnW2EEqen6m7PbOfrXK7idhCrPsVUkJWT7+ooGu8zs/kkvHxa7ZdQPp6ltrN+g==} engines: {node: '>=16.14'} hasBin: true requiresBuild: true @@ -2455,12 +2633,12 @@ packages: svelte: ^3.44.0 vite: ^3.2.0 || ^2.9.0 || ^3.0.0 || ^4.0.0 dependencies: - '@sveltejs/vite-plugin-svelte': 1.4.0_5ydygliaonb7zqn4qyhhvxl5pa + '@sveltejs/vite-plugin-svelte': 1.4.0_7jhngxjyemgcxnkuf4dsedrxyq '@types/cookie': 0.5.1 cookie: 0.5.0 devalue: 4.2.0 kleur: 4.1.5 - magic-string: 0.26.7 + magic-string: 0.27.0 mime: 3.0.0 sade: 1.8.1 set-cookie-parser: 2.5.1 @@ -2468,12 +2646,12 @@ packages: svelte: 3.53.1 tiny-glob: 0.2.9 undici: 5.13.0 - vite: 4.0.0-alpha.6 + vite: 4.0.0-beta.5 transitivePeerDependencies: - supports-color dev: true - /@sveltejs/vite-plugin-svelte/1.4.0_5ydygliaonb7zqn4qyhhvxl5pa: + /@sveltejs/vite-plugin-svelte/1.4.0_7jhngxjyemgcxnkuf4dsedrxyq: resolution: {integrity: sha512-6QupI/jemMfK+yI2pMtJcu5iO2gtgTfcBdGwMZZt+lgbFELhszbDl6Qjh000HgAV8+XUA+8EY8DusOFk8WhOIg==} engines: {node: ^14.18.0 || >= 16} peerDependencies: @@ -2486,8 +2664,8 @@ packages: magic-string: 0.26.7 svelte: 3.53.1 svelte-hmr: 0.15.1_svelte@3.53.1 - vite: 4.0.0-alpha.6 - vitefu: 0.2.2_vite@4.0.0-alpha.6 + vite: 4.0.0-beta.5 + vitefu: 0.2.2_vite@4.0.0-beta.5 transitivePeerDependencies: - supports-color dev: true @@ -2964,7 +3142,7 @@ packages: - supports-color dev: true - /@vitejs/plugin-vue-jsx/2.1.1_zz5kkc62gxncg66a3kwgd72tiu: + /@vitejs/plugin-vue-jsx/2.1.1_52n6m3tculxsdye4oufjkspuma: resolution: {integrity: sha512-JgDhxstQlwnHBvZ1BSnU5mbmyQ14/t5JhREc6YH5kWyu2QdAAOsLF6xgHoIWarj8tddaiwFrNzLbWJPudpXKYA==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: @@ -2977,13 +3155,13 @@ packages: '@babel/core': 7.20.5 '@babel/plugin-transform-typescript': 7.20.2_@babel+core@7.20.5 '@vue/babel-plugin-jsx': 1.1.1_@babel+core@7.20.5 - vite: 4.0.0-alpha.6 + vite: 4.0.0-beta.5 vue: 3.2.45 transitivePeerDependencies: - supports-color dev: true - /@vitejs/plugin-vue/2.3.4_zz5kkc62gxncg66a3kwgd72tiu: + /@vitejs/plugin-vue/2.3.4_52n6m3tculxsdye4oufjkspuma: resolution: {integrity: sha512-IfFNbtkbIm36O9KB8QodlwwYvTEsJb4Lll4c2IwB3VHc2gie2mSPtSzL0eYay7X2jd/2WX02FjSGTWR6OPr/zg==} engines: {node: '>=12.0.0'} peerDependencies: @@ -2993,11 +3171,11 @@ packages: vue: optional: true dependencies: - vite: 4.0.0-alpha.6 + vite: 4.0.0-beta.5 vue: 3.2.45 dev: true - /@vitejs/plugin-vue/3.2.0_zz5kkc62gxncg66a3kwgd72tiu: + /@vitejs/plugin-vue/3.2.0_52n6m3tculxsdye4oufjkspuma: resolution: {integrity: sha512-E0tnaL4fr+qkdCNxJ+Xd0yM31UwMkQje76fsDVBBUCoGOUPexu2VDUYHL8P4CwV+zMvWw6nlRw19OnRKmYAJpw==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: @@ -3007,11 +3185,11 @@ packages: vue: optional: true dependencies: - vite: 4.0.0-alpha.6_sass@1.56.1 + vite: 4.0.0-beta.5_sass@1.56.1 vue: 3.2.45 dev: true - /@vitejs/plugin-vue2/1.1.2_okexyfp3o5q2yb7g34s7cq2cae: + /@vitejs/plugin-vue2/1.1.2_mmbjmtyteriw7xwbxx7b4qoi3i: resolution: {integrity: sha512-y6OEA+2UdJ0xrEQHodq20v9r3SpS62IOHrgN92JPLvVpNkhcissu7yvD5PXMzMESyazj0XNWGsc8UQk8+mVrjQ==} engines: {node: '>=14.6.0'} peerDependencies: @@ -3021,7 +3199,7 @@ packages: vue: optional: true dependencies: - vite: 4.0.0-alpha.6 + vite: 4.0.0-beta.5 vue: 2.7.14 dev: true @@ -5475,6 +5653,7 @@ packages: cpu: [x64] os: [android] requiresBuild: true + dev: true optional: true /esbuild-android-arm64/0.15.16: @@ -5483,6 +5662,7 @@ packages: cpu: [arm64] os: [android] requiresBuild: true + dev: true optional: true /esbuild-darwin-64/0.15.16: @@ -5491,6 +5671,7 @@ packages: cpu: [x64] os: [darwin] requiresBuild: true + dev: true optional: true /esbuild-darwin-arm64/0.15.16: @@ -5499,6 +5680,7 @@ packages: cpu: [arm64] os: [darwin] requiresBuild: true + dev: true optional: true /esbuild-freebsd-64/0.15.16: @@ -5507,6 +5689,7 @@ packages: cpu: [x64] os: [freebsd] requiresBuild: true + dev: true optional: true /esbuild-freebsd-arm64/0.15.16: @@ -5515,6 +5698,7 @@ packages: cpu: [arm64] os: [freebsd] requiresBuild: true + dev: true optional: true /esbuild-linux-32/0.15.16: @@ -5523,6 +5707,7 @@ packages: cpu: [ia32] os: [linux] requiresBuild: true + dev: true optional: true /esbuild-linux-64/0.15.16: @@ -5531,6 +5716,7 @@ packages: cpu: [x64] os: [linux] requiresBuild: true + dev: true optional: true /esbuild-linux-arm/0.15.16: @@ -5539,6 +5725,7 @@ packages: cpu: [arm] os: [linux] requiresBuild: true + dev: true optional: true /esbuild-linux-arm64/0.15.16: @@ -5547,6 +5734,7 @@ packages: cpu: [arm64] os: [linux] requiresBuild: true + dev: true optional: true /esbuild-linux-mips64le/0.15.16: @@ -5555,6 +5743,7 @@ packages: cpu: [mips64el] os: [linux] requiresBuild: true + dev: true optional: true /esbuild-linux-ppc64le/0.15.16: @@ -5563,6 +5752,7 @@ packages: cpu: [ppc64] os: [linux] requiresBuild: true + dev: true optional: true /esbuild-linux-riscv64/0.15.16: @@ -5571,6 +5761,7 @@ packages: cpu: [riscv64] os: [linux] requiresBuild: true + dev: true optional: true /esbuild-linux-s390x/0.15.16: @@ -5579,6 +5770,7 @@ packages: cpu: [s390x] os: [linux] requiresBuild: true + dev: true optional: true /esbuild-netbsd-64/0.15.16: @@ -5587,6 +5779,7 @@ packages: cpu: [x64] os: [netbsd] requiresBuild: true + dev: true optional: true /esbuild-openbsd-64/0.15.16: @@ -5595,6 +5788,7 @@ packages: cpu: [x64] os: [openbsd] requiresBuild: true + dev: true optional: true /esbuild-sunos-64/0.15.16: @@ -5603,6 +5797,7 @@ packages: cpu: [x64] os: [sunos] requiresBuild: true + dev: true optional: true /esbuild-windows-32/0.15.16: @@ -5611,6 +5806,7 @@ packages: cpu: [ia32] os: [win32] requiresBuild: true + dev: true optional: true /esbuild-windows-64/0.15.16: @@ -5619,6 +5815,7 @@ packages: cpu: [x64] os: [win32] requiresBuild: true + dev: true optional: true /esbuild-windows-arm64/0.15.16: @@ -5627,6 +5824,7 @@ packages: cpu: [arm64] os: [win32] requiresBuild: true + dev: true optional: true /esbuild/0.15.16: @@ -5657,6 +5855,36 @@ packages: esbuild-windows-32: 0.15.16 esbuild-windows-64: 0.15.16 esbuild-windows-arm64: 0.15.16 + dev: true + + /esbuild/0.16.2: + resolution: {integrity: sha512-Rv/CJquZKE00irDLDpk9jmWmtxx1NW+MGpBbNNouaDY0oBwk806uJ51WpLaJBQUxhZqLauX2rrNol5lVQceHJw==} + engines: {node: '>=12'} + hasBin: true + requiresBuild: true + optionalDependencies: + '@esbuild/android-arm': 0.16.2 + '@esbuild/android-arm64': 0.16.2 + '@esbuild/android-x64': 0.16.2 + '@esbuild/darwin-arm64': 0.16.2 + '@esbuild/darwin-x64': 0.16.2 + '@esbuild/freebsd-arm64': 0.16.2 + '@esbuild/freebsd-x64': 0.16.2 + '@esbuild/linux-arm': 0.16.2 + '@esbuild/linux-arm64': 0.16.2 + '@esbuild/linux-ia32': 0.16.2 + '@esbuild/linux-loong64': 0.16.2 + '@esbuild/linux-mips64el': 0.16.2 + '@esbuild/linux-ppc64': 0.16.2 + '@esbuild/linux-riscv64': 0.16.2 + '@esbuild/linux-s390x': 0.16.2 + '@esbuild/linux-x64': 0.16.2 + '@esbuild/netbsd-x64': 0.16.2 + '@esbuild/openbsd-x64': 0.16.2 + '@esbuild/sunos-x64': 0.16.2 + '@esbuild/win32-arm64': 0.16.2 + '@esbuild/win32-ia32': 0.16.2 + '@esbuild/win32-x64': 0.16.2 /escalade/3.1.1: resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} @@ -8098,6 +8326,13 @@ packages: dependencies: sourcemap-codec: 1.4.8 + /magic-string/0.27.0: + resolution: {integrity: sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==} + engines: {node: '>=12'} + dependencies: + '@jridgewell/sourcemap-codec': 1.4.14 + dev: true + /make-dir/3.1.0: resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} engines: {node: '>=8'} @@ -10108,20 +10343,20 @@ packages: fsevents: 2.3.2 dev: true - /rollup/3.3.0: - resolution: {integrity: sha512-wqOV/vUJCYEbWsXvwCkgGWvgaEnsbn4jxBQWKpN816CqsmCimDmCNJI83c6if7QVD4v/zlyRzxN7U2yDT5rfoA==} + /rollup/3.5.1: + resolution: {integrity: sha512-hdQWTvPeiAbM6SUkxV70HdGUVxsgsc+CLy5fuh4KdgUBJ0SowXiix8gANgXoG3wEuLwfoJhCT2V+WwxfWq9Ikw==} engines: {node: '>=14.18.0', npm: '>=8.0.0'} hasBin: true optionalDependencies: fsevents: 2.3.2 + dev: true - /rollup/3.5.1: - resolution: {integrity: sha512-hdQWTvPeiAbM6SUkxV70HdGUVxsgsc+CLy5fuh4KdgUBJ0SowXiix8gANgXoG3wEuLwfoJhCT2V+WwxfWq9Ikw==} + /rollup/3.7.0: + resolution: {integrity: sha512-FIJe0msW9P7L9BTfvaJyvn1U1BVCNTL3w8O+PKIrCyiMLg+rIUGb4MbcgVZ10Lnm1uWXOTOWRNARjfXC1+M12Q==} engines: {node: '>=14.18.0', npm: '>=8.0.0'} hasBin: true optionalDependencies: fsevents: 2.3.2 - dev: true /run-async/2.4.1: resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==} @@ -11538,7 +11773,7 @@ packages: debug: 4.3.4 mlly: 0.5.17 pathe: 0.2.0 - vite: 4.0.0-alpha.6_@types+node@17.0.45 + vite: 4.0.0-beta.5_@types+node@17.0.45 transitivePeerDependencies: - '@types/node' - less @@ -11559,7 +11794,7 @@ packages: pathe: 0.2.0 source-map: 0.6.1 source-map-support: 0.5.21 - vite: 4.0.0-alpha.6 + vite: 4.0.0-beta.5 transitivePeerDependencies: - '@types/node' - less @@ -11579,7 +11814,7 @@ packages: minimist: 1.2.7 mlly: 0.4.3 pathe: 0.2.0 - vite: 4.0.0-alpha.6_@types+node@17.0.45 + vite: 4.0.0-beta.5_@types+node@17.0.45 transitivePeerDependencies: - '@types/node' - less @@ -11589,7 +11824,7 @@ packages: - terser dev: true - /vite-plugin-checker/0.5.1_vite@4.0.0-alpha.6: + /vite-plugin-checker/0.5.1_vite@4.0.0-beta.5: resolution: {integrity: sha512-NFiO1PyK9yGuaeSnJ7Whw9fnxLc1AlELnZoyFURnauBYhbIkx9n+PmIXxSFUuC9iFyACtbJQUAEuQi6yHs2Adg==} engines: {node: '>=14.16'} peerDependencies: @@ -11619,14 +11854,14 @@ packages: npm-run-path: 4.0.1 strip-ansi: 6.0.1 tiny-invariant: 1.3.1 - vite: 4.0.0-alpha.6 + vite: 4.0.0-beta.5 vscode-languageclient: 7.0.0 vscode-languageserver: 7.0.0 vscode-languageserver-textdocument: 1.0.7 vscode-uri: 3.0.6 dev: true - /vite-plugin-vuetify/1.0.0-alpha.12_47cgwgxlmgfhx5upukripkknuq: + /vite-plugin-vuetify/1.0.0-alpha.12_4bc5gj3nsi2zssa6s544ael4i4: resolution: {integrity: sha512-DMb7oY6F67P1RTEU28xQePUnyZdm+sbeGgIF3exBrA5yLL8NKKPIahqJN4+MAWMXCJVwNKy7nsS6zVgOLtcoQg==} engines: {node: '>=12'} peerDependencies: @@ -11635,14 +11870,14 @@ packages: dependencies: '@vuetify/loader-shared': 1.7.0_vue@3.2.45+vuetify@3.0.3 debug: 4.3.4 - vite: 4.0.0-alpha.6 + vite: 4.0.0-beta.5 vuetify: 3.0.3_ny5xcw2md7vsxw37otcxmygka4 transitivePeerDependencies: - supports-color - vue - /vite/4.0.0-alpha.6: - resolution: {integrity: sha512-BaD8cO3GYWekTuqW3iIbYayr9FRAXYjtl+sG5emPUh6sE7FnVZwSyKzp1RKtlurFouCdnNzoWSRggYqKC0Bw0w==} + /vite/4.0.0-beta.5: + resolution: {integrity: sha512-NNzcqXIFHFYVoP6bDcUitcIvSVHdrUBNr4wztCUbbi2Xmya2cc/tglCh73ncfsyzAT/WDLRoIeKG7Dp1r7LRVA==} engines: {node: ^14.18.0 || >=16.0.0} hasBin: true peerDependencies: @@ -11666,15 +11901,15 @@ packages: terser: optional: true dependencies: - esbuild: 0.15.16 + esbuild: 0.16.2 postcss: 8.4.19 resolve: 1.22.1 - rollup: 3.3.0 + rollup: 3.7.0 optionalDependencies: fsevents: 2.3.2 - /vite/4.0.0-alpha.6_@types+node@17.0.45: - resolution: {integrity: sha512-BaD8cO3GYWekTuqW3iIbYayr9FRAXYjtl+sG5emPUh6sE7FnVZwSyKzp1RKtlurFouCdnNzoWSRggYqKC0Bw0w==} + /vite/4.0.0-beta.5_@types+node@17.0.45: + resolution: {integrity: sha512-NNzcqXIFHFYVoP6bDcUitcIvSVHdrUBNr4wztCUbbi2Xmya2cc/tglCh73ncfsyzAT/WDLRoIeKG7Dp1r7LRVA==} engines: {node: ^14.18.0 || >=16.0.0} hasBin: true peerDependencies: @@ -11699,15 +11934,15 @@ packages: optional: true dependencies: '@types/node': 17.0.45 - esbuild: 0.15.16 + esbuild: 0.16.2 postcss: 8.4.19 resolve: 1.22.1 - rollup: 3.3.0 + rollup: 3.7.0 optionalDependencies: fsevents: 2.3.2 - /vite/4.0.0-alpha.6_sass@1.56.1: - resolution: {integrity: sha512-BaD8cO3GYWekTuqW3iIbYayr9FRAXYjtl+sG5emPUh6sE7FnVZwSyKzp1RKtlurFouCdnNzoWSRggYqKC0Bw0w==} + /vite/4.0.0-beta.5_sass@1.56.1: + resolution: {integrity: sha512-NNzcqXIFHFYVoP6bDcUitcIvSVHdrUBNr4wztCUbbi2Xmya2cc/tglCh73ncfsyzAT/WDLRoIeKG7Dp1r7LRVA==} engines: {node: ^14.18.0 || >=16.0.0} hasBin: true peerDependencies: @@ -11731,16 +11966,16 @@ packages: terser: optional: true dependencies: - esbuild: 0.15.16 + esbuild: 0.16.2 postcss: 8.4.19 resolve: 1.22.1 - rollup: 3.3.0 + rollup: 3.7.0 sass: 1.56.1 optionalDependencies: fsevents: 2.3.2 dev: true - /vitefu/0.2.2_vite@4.0.0-alpha.6: + /vitefu/0.2.2_vite@4.0.0-beta.5: resolution: {integrity: sha512-8CKEIWPm4B4DUDN+h+hVJa9pyNi7rzc5MYmbxhs1wcMakueGFNWB5/DL30USm9qU3xUPnL4/rrLEAwwFiD1tag==} peerDependencies: vite: ^3.0.0 || ^2.9.0 || ^4.0.0 @@ -11748,7 +11983,7 @@ packages: vite: optional: true dependencies: - vite: 4.0.0-alpha.6 + vite: 4.0.0-beta.5 dev: true /vitepress/1.0.0-alpha.10: @@ -11757,12 +11992,12 @@ packages: dependencies: '@docsearch/css': 3.3.0 '@docsearch/js': 3.3.0 - '@vitejs/plugin-vue': 3.2.0_zz5kkc62gxncg66a3kwgd72tiu + '@vitejs/plugin-vue': 3.2.0_52n6m3tculxsdye4oufjkspuma '@vue/devtools-api': 6.4.5 '@vueuse/core': 9.6.0_vue@3.2.45 body-scroll-lock: 4.0.0-beta.0 shiki: 0.11.1 - vite: 4.0.0-alpha.6 + vite: 4.0.0-beta.5 vue: 3.2.45 transitivePeerDependencies: - '@algolia/client-search' @@ -11989,7 +12224,7 @@ packages: webpack-plugin-vuetify: optional: true dependencies: - vite-plugin-vuetify: 1.0.0-alpha.12_47cgwgxlmgfhx5upukripkknuq + vite-plugin-vuetify: 1.0.0-alpha.12_4bc5gj3nsi2zssa6s544ael4i4 vue: 3.2.45 /w3c-keyname/2.2.6: From 6480b0122ab746c9b869bbae1043d571f744b690 Mon Sep 17 00:00:00 2001 From: Guillaume Chau Date: Thu, 8 Dec 2022 19:04:45 +0100 Subject: [PATCH 3/6] chore: update vite plugin vue --- examples/vue3-percy/package.json | 2 +- examples/vue3-screenshot/package.json | 2 +- examples/vue3-themed/package.json | 2 +- examples/vue3/package.json | 2 +- packages/histoire-app/package.json | 2 +- .../histoire-controls-stories/package.json | 2 +- pnpm-lock.yaml | 36 +++++++++++++------ 7 files changed, 31 insertions(+), 17 deletions(-) diff --git a/examples/vue3-percy/package.json b/examples/vue3-percy/package.json index 408b5480..19cde3ad 100644 --- a/examples/vue3-percy/package.json +++ b/examples/vue3-percy/package.json @@ -13,7 +13,7 @@ "devDependencies": { "@histoire/plugin-percy": "workspace:*", "@histoire/plugin-vue": "workspace:*", - "@vitejs/plugin-vue": "^3.0.1", + "@vitejs/plugin-vue": "^4.0.0-beta.0", "histoire": "workspace:*", "vite": "^4.0.0-alpha.6" } diff --git a/examples/vue3-screenshot/package.json b/examples/vue3-screenshot/package.json index 7874beb2..b619f434 100644 --- a/examples/vue3-screenshot/package.json +++ b/examples/vue3-screenshot/package.json @@ -13,7 +13,7 @@ "devDependencies": { "@histoire/plugin-screenshot": "workspace:*", "@histoire/plugin-vue": "workspace:*", - "@vitejs/plugin-vue": "^3.0.1", + "@vitejs/plugin-vue": "^4.0.0-beta.0", "histoire": "workspace:*", "vite": "^4.0.0-alpha.6" } diff --git a/examples/vue3-themed/package.json b/examples/vue3-themed/package.json index bbe9a7df..02c16390 100644 --- a/examples/vue3-themed/package.json +++ b/examples/vue3-themed/package.json @@ -11,7 +11,7 @@ "vue": "^3.2.31" }, "devDependencies": { - "@vitejs/plugin-vue": "^3.0.1", + "@vitejs/plugin-vue": "^4.0.0-beta.0", "@histoire/plugin-vue": "workspace:*", "histoire": "workspace:*", "vite": "^4.0.0-alpha.6" diff --git a/examples/vue3/package.json b/examples/vue3/package.json index 45d92b68..e946ce2e 100644 --- a/examples/vue3/package.json +++ b/examples/vue3/package.json @@ -21,7 +21,7 @@ "@histoire/app": "workspace:*", "@histoire/plugin-vue": "workspace:*", "@histoire/vendors": "workspace:*", - "@vitejs/plugin-vue": "^3.0.1", + "@vitejs/plugin-vue": "^4.0.0-beta.0", "cypress": "^9.5.3", "histoire": "workspace:*", "sass": "^1.50.0", diff --git a/packages/histoire-app/package.json b/packages/histoire-app/package.json index 1b628572..141dda45 100644 --- a/packages/histoire-app/package.json +++ b/packages/histoire-app/package.json @@ -40,7 +40,7 @@ "@tailwindcss/typography": "^0.5.2", "@types/fs-extra": "^9.0.13", "@types/node": "^17.0.32", - "@vitejs/plugin-vue": "^3.1.2", + "@vitejs/plugin-vue": "^4.0.0-beta.0", "autoprefixer": "^10.4.4", "chokidar": "^3.5.3", "concurrently": "^7.1.0", diff --git a/packages/histoire-controls-stories/package.json b/packages/histoire-controls-stories/package.json index 8f0d858a..fffc024e 100644 --- a/packages/histoire-controls-stories/package.json +++ b/packages/histoire-controls-stories/package.json @@ -24,7 +24,7 @@ }, "devDependencies": { "@histoire/plugin-vue": "workspace:*", - "@vitejs/plugin-vue": "^3.1.2", + "@vitejs/plugin-vue": "^4.0.0-beta.0", "histoire": "workspace:*", "vite": "^4.0.0-alpha.6" } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 2fedc1e9..0ca6b7b5 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -155,7 +155,7 @@ importers: '@histoire/app': workspace:* '@histoire/plugin-vue': workspace:* '@histoire/vendors': workspace:* - '@vitejs/plugin-vue': ^3.0.1 + '@vitejs/plugin-vue': ^3.1.4 cypress: ^9.5.3 histoire: workspace:* lottie-web: ^5.9.6 @@ -183,7 +183,7 @@ importers: specifiers: '@histoire/plugin-percy': workspace:* '@histoire/plugin-vue': workspace:* - '@vitejs/plugin-vue': ^3.0.1 + '@vitejs/plugin-vue': ^4.0.0-beta.0 histoire: workspace:* vite: ^4.0.0-beta.5 vue: ^3.2.31 @@ -192,7 +192,7 @@ importers: devDependencies: '@histoire/plugin-percy': link:../../packages/histoire-plugin-percy '@histoire/plugin-vue': link:../../packages/histoire-plugin-vue - '@vitejs/plugin-vue': 3.2.0_52n6m3tculxsdye4oufjkspuma + '@vitejs/plugin-vue': 4.0.0-beta.0_52n6m3tculxsdye4oufjkspuma histoire: link:../../packages/histoire vite: 4.0.0-beta.5 @@ -200,7 +200,7 @@ importers: specifiers: '@histoire/plugin-screenshot': workspace:* '@histoire/plugin-vue': workspace:* - '@vitejs/plugin-vue': ^3.0.1 + '@vitejs/plugin-vue': ^4.0.0-beta.0 histoire: workspace:* vite: ^4.0.0-beta.5 vue: ^3.2.31 @@ -209,14 +209,14 @@ importers: devDependencies: '@histoire/plugin-screenshot': link:../../packages/histoire-plugin-screenshot '@histoire/plugin-vue': link:../../packages/histoire-plugin-vue - '@vitejs/plugin-vue': 3.2.0_52n6m3tculxsdye4oufjkspuma + '@vitejs/plugin-vue': 4.0.0-beta.0_52n6m3tculxsdye4oufjkspuma histoire: link:../../packages/histoire vite: 4.0.0-beta.5 examples/vue3-themed: specifiers: '@histoire/plugin-vue': workspace:* - '@vitejs/plugin-vue': ^3.0.1 + '@vitejs/plugin-vue': ^4.0.0-beta.0 histoire: workspace:* vite: ^4.0.0-beta.5 vue: ^3.2.31 @@ -224,7 +224,7 @@ importers: vue: 3.2.45 devDependencies: '@histoire/plugin-vue': link:../../packages/histoire-plugin-vue - '@vitejs/plugin-vue': 3.2.0_52n6m3tculxsdye4oufjkspuma + '@vitejs/plugin-vue': 4.0.0-beta.0_52n6m3tculxsdye4oufjkspuma histoire: link:../../packages/histoire vite: 4.0.0-beta.5 @@ -341,7 +341,7 @@ importers: '@types/flexsearch': ^0.7.3 '@types/fs-extra': ^9.0.13 '@types/node': ^17.0.32 - '@vitejs/plugin-vue': ^3.1.2 + '@vitejs/plugin-vue': ^4.0.0-beta.0 autoprefixer: ^10.4.4 chokidar: ^3.5.3 concurrently: ^7.1.0 @@ -367,7 +367,7 @@ importers: '@tailwindcss/typography': 0.5.8_tailwindcss@3.2.4 '@types/fs-extra': 9.0.13 '@types/node': 17.0.45 - '@vitejs/plugin-vue': 3.2.0_52n6m3tculxsdye4oufjkspuma + '@vitejs/plugin-vue': 4.0.0-beta.0_52n6m3tculxsdye4oufjkspuma autoprefixer: 10.4.13_postcss@8.4.19 chokidar: 3.5.3 concurrently: 7.6.0 @@ -438,7 +438,7 @@ importers: specifiers: '@histoire/controls': workspace:* '@histoire/plugin-vue': workspace:* - '@vitejs/plugin-vue': ^3.1.2 + '@vitejs/plugin-vue': ^4.0.0-beta.0 histoire: workspace:* vite: ^4.0.0-beta.5 vue: ^3.2.31 @@ -447,7 +447,7 @@ importers: vue: 3.2.45 devDependencies: '@histoire/plugin-vue': link:../histoire-plugin-vue - '@vitejs/plugin-vue': 3.2.0_52n6m3tculxsdye4oufjkspuma + '@vitejs/plugin-vue': 4.0.0-beta.0_52n6m3tculxsdye4oufjkspuma histoire: link:../histoire vite: 4.0.0-beta.5 @@ -3189,6 +3189,20 @@ packages: vue: 3.2.45 dev: true + /@vitejs/plugin-vue/4.0.0-beta.0_52n6m3tculxsdye4oufjkspuma: + resolution: {integrity: sha512-ip9aE0C3lyjwVCdM8Wa2oVhXOCRJPauNUrfftkipeud3xVHXUYI4akCIamMIMgXorqpd16ms7zLckfO1rU9i6g==} + engines: {node: ^14.18.0 || >=16.0.0} + peerDependencies: + vite: ^4.0.0-alpha.0 || ^2.9.0 || ^3.0.0 || ^4.0.0 + vue: '*' + peerDependenciesMeta: + vue: + optional: true + dependencies: + vite: 4.0.0-beta.5 + vue: 3.2.45 + dev: true + /@vitejs/plugin-vue2/1.1.2_mmbjmtyteriw7xwbxx7b4qoi3i: resolution: {integrity: sha512-y6OEA+2UdJ0xrEQHodq20v9r3SpS62IOHrgN92JPLvVpNkhcissu7yvD5PXMzMESyazj0XNWGsc8UQk8+mVrjQ==} engines: {node: '>=14.6.0'} From 4cae0b196e3a66103f04856ce167575b2127dd9d Mon Sep 17 00:00:00 2001 From: Guillaume Chau Date: Fri, 9 Dec 2022 11:15:31 +0100 Subject: [PATCH 4/6] fix: preserve ignore comment --- packages/histoire-plugin-vue/package.json | 1 + packages/histoire-plugin-vue/vite.config.ts | 29 + packages/histoire-plugin-vue2/package.json | 1 + packages/histoire-plugin-vue2/vite.config.ts | 29 + pnpm-lock.yaml | 1077 +++++++++--------- 5 files changed, 580 insertions(+), 557 deletions(-) diff --git a/packages/histoire-plugin-vue/package.json b/packages/histoire-plugin-vue/package.json index a0a78653..fdfd73b1 100644 --- a/packages/histoire-plugin-vue/package.json +++ b/packages/histoire-plugin-vue/package.json @@ -52,6 +52,7 @@ "@types/node": "^17.0.32", "change-case": "^4.1.2", "concurrently": "^7.1.0", + "globby": "^13.1.1", "typescript": "^4.7.4", "histoire": "workspace:*", "vite": "^4.0.0-alpha.6", diff --git a/packages/histoire-plugin-vue/vite.config.ts b/packages/histoire-plugin-vue/vite.config.ts index 4532c190..7a3c0acd 100644 --- a/packages/histoire-plugin-vue/vite.config.ts +++ b/packages/histoire-plugin-vue/vite.config.ts @@ -1,6 +1,35 @@ import { defineConfig } from 'vite' +import fs from 'node:fs' +import { globbySync } from 'globby' export default defineConfig({ + plugins: [ + { + name: 'histoire:preserve:import.dynamic', + enforce: 'pre', + transform (code) { + if (code.includes('import(')) { + return { + code: code.replace(/import\(/g, 'import__dyn('), + } + } + }, + closeBundle () { + try { + const files = globbySync('./dist/**/*.js') + for (const file of files) { + const content = fs.readFileSync(file, 'utf-8') + if (content.includes('import__dyn')) { + fs.writeFileSync(file, content.replace(/import__dyn\(/g, 'import(/* @vite-ignore */'), 'utf-8') + } + } + } catch (e) { + console.error(e) + } + }, + }, + ], + build: { emptyOutDir: false, outDir: 'dist/bundled', diff --git a/packages/histoire-plugin-vue2/package.json b/packages/histoire-plugin-vue2/package.json index d1cb0225..b4cbdb6d 100644 --- a/packages/histoire-plugin-vue2/package.json +++ b/packages/histoire-plugin-vue2/package.json @@ -46,6 +46,7 @@ "@types/node": "^17.0.32", "change-case": "^4.1.2", "concurrently": "^7.1.0", + "globby": "^13.1.1", "histoire": "workspace:*", "typescript": "^4.7.4", "vite": "^4.0.0-alpha.6", diff --git a/packages/histoire-plugin-vue2/vite.config.ts b/packages/histoire-plugin-vue2/vite.config.ts index 4532c190..7a3c0acd 100644 --- a/packages/histoire-plugin-vue2/vite.config.ts +++ b/packages/histoire-plugin-vue2/vite.config.ts @@ -1,6 +1,35 @@ import { defineConfig } from 'vite' +import fs from 'node:fs' +import { globbySync } from 'globby' export default defineConfig({ + plugins: [ + { + name: 'histoire:preserve:import.dynamic', + enforce: 'pre', + transform (code) { + if (code.includes('import(')) { + return { + code: code.replace(/import\(/g, 'import__dyn('), + } + } + }, + closeBundle () { + try { + const files = globbySync('./dist/**/*.js') + for (const file of files) { + const content = fs.readFileSync(file, 'utf-8') + if (content.includes('import__dyn')) { + fs.writeFileSync(file, content.replace(/import__dyn\(/g, 'import(/* @vite-ignore */'), 'utf-8') + } + } + } catch (e) { + console.error(e) + } + }, + }, + ], + build: { emptyOutDir: false, outDir: 'dist/bundled', diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 0ca6b7b5..df955bf6 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -34,16 +34,16 @@ importers: '@akryum/sheep': 0.3.3 '@histoire/vendors': link:packages/histoire-vendors '@iconify/vue': 3.2.1 - '@typescript-eslint/eslint-plugin': 5.45.0_yjegg5cyoezm3fzsmuszzhetym - '@typescript-eslint/parser': 5.45.0_s5ps7njkmjlaqajutnox5ntcla + '@typescript-eslint/eslint-plugin': 5.46.0_5mle7isnkfgjmrghnnczirv6iy + '@typescript-eslint/parser': 5.46.0_ha6vam6werchizxrnqvarmz2zu '@vue/eslint-config-standard': 6.1.0_rgk4afcvwqij6gp7cdq6gh4rne - '@vue/eslint-config-typescript': 10.0.0_sb3redb42nwkq4q6vnqovjecl4 + '@vue/eslint-config-typescript': 10.0.0_4ajq2belonl3hwwudzbg7tkiqi '@vueuse/core': 8.9.4 autoprefixer: 10.4.13_postcss@8.4.19 conventional-changelog-cli: 2.2.2 eslint: 8.29.0 eslint-plugin-cypress: 2.12.1_eslint@8.29.0 - eslint-plugin-import: 2.26.0_ub3senzxbs32f65wl7xoyha6lu + eslint-plugin-import: 2.26.0_jx43xxcguvnqqmtmaaygwl7cmu eslint-plugin-node: 11.1.0_eslint@8.29.0 eslint-plugin-promise: 6.1.1_eslint@8.29.0 eslint-plugin-vue: 9.8.0_eslint@8.29.0 @@ -51,7 +51,7 @@ importers: postcss: 8.4.19 rimraf: 3.0.2 tailwindcss: 3.2.4_postcss@8.4.19 - typescript: 4.9.3 + typescript: 4.9.4 vitepress: 1.0.0-alpha.10 vue-eslint-parser: 9.1.0_eslint@8.29.0 @@ -78,7 +78,7 @@ importers: cypress: 10.11.0 histoire: link:../../packages/histoire nuxt: 3.0.0 - start-server-and-test: 1.14.0 + start-server-and-test: 1.15.1 vue: 3.2.45 examples/svelte3: @@ -92,15 +92,15 @@ importers: svelte-preprocess: ^4.10.7 vite: ^4.0.0-beta.5 dependencies: - svelte: 3.53.1 + svelte: 3.54.0 devDependencies: '@histoire/plugin-svelte': link:../../packages/histoire-plugin-svelte - '@sveltejs/vite-plugin-svelte': 1.4.0_7jhngxjyemgcxnkuf4dsedrxyq + '@sveltejs/vite-plugin-svelte': 1.4.0_rpfv7uk6fc5pyczlxjvsnm3swy cypress: 10.11.0 histoire: link:../../packages/histoire - start-server-and-test: 1.14.0 - svelte-preprocess: 4.10.7_svelte@3.53.1 - vite: 4.0.0-beta.5 + start-server-and-test: 1.15.1 + svelte-preprocess: 4.10.7_svelte@3.54.0 + vite: 4.0.0-beta.7 examples/sveltekit: specifiers: @@ -123,15 +123,15 @@ importers: devDependencies: '@histoire/plugin-svelte': link:../../packages/histoire-plugin-svelte '@sveltejs/adapter-auto': 1.0.0-next.90 - '@sveltejs/kit': 1.0.0-next.573_7jhngxjyemgcxnkuf4dsedrxyq + '@sveltejs/kit': 1.0.0-next.577_rpfv7uk6fc5pyczlxjvsnm3swy '@types/cookie': 0.5.1 histoire: link:../../packages/histoire - svelte: 3.53.1 - svelte-check: 2.10.0_svelte@3.53.1 - svelte-preprocess: 4.10.7_7dvewpees4iyn2tkw2qzal77a4 + svelte: 3.54.0 + svelte-check: 2.10.2_svelte@3.54.0 + svelte-preprocess: 4.10.7_vjccw6zkwqrmxudvmy4reaayx4 tslib: 2.4.1 - typescript: 4.9.3 - vite: 4.0.0-beta.5 + typescript: 4.9.4 + vite: 4.0.0-beta.7 examples/vue2: specifiers: @@ -145,9 +145,9 @@ importers: vue: 2.7.14 devDependencies: '@histoire/plugin-vue2': link:../../packages/histoire-plugin-vue2 - '@vitejs/plugin-vue2': 1.1.2_mmbjmtyteriw7xwbxx7b4qoi3i + '@vitejs/plugin-vue2': 1.1.2_g4vwuhb4ubbae2itju7tz2wkne histoire: link:../../packages/histoire - vite: 4.0.0-beta.5 + vite: 4.0.0-beta.7 vue-template-compiler: 2.7.14 examples/vue3: @@ -155,7 +155,7 @@ importers: '@histoire/app': workspace:* '@histoire/plugin-vue': workspace:* '@histoire/vendors': workspace:* - '@vitejs/plugin-vue': ^3.1.4 + '@vitejs/plugin-vue': ^4.0.0-beta.0 cypress: ^9.5.3 histoire: workspace:* lottie-web: ^5.9.6 @@ -172,12 +172,12 @@ importers: '@histoire/app': link:../../packages/histoire-app '@histoire/plugin-vue': link:../../packages/histoire-plugin-vue '@histoire/vendors': link:../../packages/histoire-vendors - '@vitejs/plugin-vue': 3.2.0_52n6m3tculxsdye4oufjkspuma + '@vitejs/plugin-vue': 4.0.0-beta.0_pyfeoepnsr2fx4g4idwaoisbcq cypress: 9.7.0 histoire: link:../../packages/histoire sass: 1.56.1 - start-server-and-test: 1.14.0 - vite: 4.0.0-beta.5_sass@1.56.1 + start-server-and-test: 1.15.1 + vite: 4.0.0-beta.7_sass@1.56.1 examples/vue3-percy: specifiers: @@ -192,9 +192,9 @@ importers: devDependencies: '@histoire/plugin-percy': link:../../packages/histoire-plugin-percy '@histoire/plugin-vue': link:../../packages/histoire-plugin-vue - '@vitejs/plugin-vue': 4.0.0-beta.0_52n6m3tculxsdye4oufjkspuma + '@vitejs/plugin-vue': 4.0.0-beta.0_pyfeoepnsr2fx4g4idwaoisbcq histoire: link:../../packages/histoire - vite: 4.0.0-beta.5 + vite: 4.0.0-beta.7 examples/vue3-screenshot: specifiers: @@ -209,9 +209,9 @@ importers: devDependencies: '@histoire/plugin-screenshot': link:../../packages/histoire-plugin-screenshot '@histoire/plugin-vue': link:../../packages/histoire-plugin-vue - '@vitejs/plugin-vue': 4.0.0-beta.0_52n6m3tculxsdye4oufjkspuma + '@vitejs/plugin-vue': 4.0.0-beta.0_pyfeoepnsr2fx4g4idwaoisbcq histoire: link:../../packages/histoire - vite: 4.0.0-beta.5 + vite: 4.0.0-beta.7 examples/vue3-themed: specifiers: @@ -224,9 +224,9 @@ importers: vue: 3.2.45 devDependencies: '@histoire/plugin-vue': link:../../packages/histoire-plugin-vue - '@vitejs/plugin-vue': 4.0.0-beta.0_52n6m3tculxsdye4oufjkspuma + '@vitejs/plugin-vue': 4.0.0-beta.0_pyfeoepnsr2fx4g4idwaoisbcq histoire: link:../../packages/histoire - vite: 4.0.0-beta.5 + vite: 4.0.0-beta.7 examples/vue3-vuetify: specifiers: @@ -241,13 +241,13 @@ importers: dependencies: '@mdi/font': 5.9.55 vue: 3.2.45 - vuetify: 3.0.3_ny5xcw2md7vsxw37otcxmygka4 + vuetify: 3.0.4_ny5xcw2md7vsxw37otcxmygka4 devDependencies: '@histoire/plugin-vue': link:../../packages/histoire-plugin-vue - '@vitejs/plugin-vue': 2.3.4_52n6m3tculxsdye4oufjkspuma + '@vitejs/plugin-vue': 2.3.4_pyfeoepnsr2fx4g4idwaoisbcq histoire: link:../../packages/histoire - vite: 4.0.0-beta.5 - vite-plugin-vuetify: 1.0.0-alpha.12_4bc5gj3nsi2zssa6s544ael4i4 + vite: 4.0.0-beta.7 + vite-plugin-vuetify: 1.0.0-alpha.12_dyvtxqu4y55272vr4omix6z47u packages/histoire: specifiers: @@ -328,9 +328,9 @@ importers: '@types/fs-extra': 9.0.13 '@types/micromatch': 4.0.2 '@types/node': 17.0.45 - rollup: 3.5.1 - typescript: 4.9.3 - vite: 4.0.0-beta.5_@types+node@17.0.45 + rollup: 3.7.0 + typescript: 4.9.4 + vite: 4.0.0-beta.7_@types+node@17.0.45 packages/histoire-app: specifiers: @@ -367,7 +367,7 @@ importers: '@tailwindcss/typography': 0.5.8_tailwindcss@3.2.4 '@types/fs-extra': 9.0.13 '@types/node': 17.0.45 - '@vitejs/plugin-vue': 4.0.0-beta.0_52n6m3tculxsdye4oufjkspuma + '@vitejs/plugin-vue': 4.0.0-beta.0_pyfeoepnsr2fx4g4idwaoisbcq autoprefixer: 10.4.13_postcss@8.4.19 chokidar: 3.5.3 concurrently: 7.6.0 @@ -377,8 +377,8 @@ importers: postcss: 8.4.19 postcss-import: 14.1.0_postcss@8.4.19 tailwindcss: 3.2.4_postcss@8.4.19 - typescript: 4.9.3 - vite: 4.0.0-beta.5_@types+node@17.0.45 + typescript: 4.9.4 + vite: 4.0.0-beta.7_@types+node@17.0.45 vue: 3.2.45 packages/histoire-controls: @@ -414,14 +414,14 @@ importers: '@codemirror/lint': 6.1.0 '@codemirror/state': 6.1.4 '@codemirror/theme-one-dark': 6.1.0 - '@codemirror/view': 6.6.0 + '@codemirror/view': 6.7.0 '@histoire/vendors': link:../histoire-vendors devDependencies: '@peeky/server': 0.14.0_@types+node@17.0.45 '@peeky/test': 0.14.1_7xgr23p2hp47ryj3a27pbosgwi '@types/node': 17.0.45 - '@vitejs/plugin-vue': 2.3.4_52n6m3tculxsdye4oufjkspuma - '@vue/test-utils': 2.2.5_vue@3.2.45 + '@vitejs/plugin-vue': 2.3.4_pyfeoepnsr2fx4g4idwaoisbcq + '@vue/test-utils': 2.2.6_vue@3.2.45 '@vueuse/core': 8.9.4_vue@3.2.45 autoprefixer: 10.4.13_postcss@8.4.19 concurrently: 7.6.0 @@ -429,10 +429,10 @@ importers: postcss: 8.4.19 postcss-import: 14.1.0_postcss@8.4.19 tailwindcss: 3.2.4_postcss@8.4.19 - typescript: 4.9.3 - vite: 4.0.0-beta.5_@types+node@17.0.45 + typescript: 4.9.4 + vite: 4.0.0-beta.7_@types+node@17.0.45 vue: 3.2.45 - vue-tsc: 0.35.2_typescript@4.9.3 + vue-tsc: 0.35.2_typescript@4.9.4 packages/histoire-controls-stories: specifiers: @@ -447,9 +447,9 @@ importers: vue: 3.2.45 devDependencies: '@histoire/plugin-vue': link:../histoire-plugin-vue - '@vitejs/plugin-vue': 4.0.0-beta.0_52n6m3tculxsdye4oufjkspuma + '@vitejs/plugin-vue': 4.0.0-beta.0_pyfeoepnsr2fx4g4idwaoisbcq histoire: link:../histoire - vite: 4.0.0-beta.5 + vite: 4.0.0-beta.7 packages/histoire-plugin-nuxt: specifiers: @@ -465,8 +465,8 @@ importers: '@nuxt/schema': 3.0.0 '@types/node': 17.0.45 histoire: link:../histoire - typescript: 4.9.3 - vite: 4.0.0-beta.5_@types+node@17.0.45 + typescript: 4.9.4 + vite: 4.0.0-beta.7_@types+node@17.0.45 packages/histoire-plugin-percy: specifiers: @@ -487,7 +487,7 @@ importers: devDependencies: '@types/node': 17.0.45 histoire: link:../histoire - typescript: 4.9.3 + typescript: 4.9.4 packages/histoire-plugin-screenshot: specifiers: @@ -506,7 +506,7 @@ importers: devDependencies: '@types/node': 17.0.45 histoire: link:../histoire - typescript: 4.9.3 + typescript: 4.9.4 packages/histoire-plugin-svelte: specifiers: @@ -528,16 +528,16 @@ importers: '@histoire/shared': link:../histoire-shared '@histoire/vendors': link:../histoire-vendors devDependencies: - '@sveltejs/vite-plugin-svelte': 1.4.0_7jhngxjyemgcxnkuf4dsedrxyq + '@sveltejs/vite-plugin-svelte': 1.4.0_rpfv7uk6fc5pyczlxjvsnm3swy '@types/node': 17.0.45 concurrently: 7.6.0 fs-extra: 10.1.0 globby: 13.1.2 histoire: link:../histoire - svelte: 3.53.1 - svelte-preprocess: 4.10.7_7dvewpees4iyn2tkw2qzal77a4 - typescript: 4.9.3 - vite: 4.0.0-beta.5_@types+node@17.0.45 + svelte: 3.54.0 + svelte-preprocess: 4.10.7_vjccw6zkwqrmxudvmy4reaayx4 + typescript: 4.9.4 + vite: 4.0.0-beta.7_@types+node@17.0.45 packages/histoire-plugin-vue: specifiers: @@ -547,6 +547,7 @@ importers: '@types/node': ^17.0.32 change-case: ^4.1.2 concurrently: ^7.1.0 + globby: ^13.1.1 histoire: workspace:* typescript: ^4.7.4 vite: ^4.0.0-beta.5 @@ -559,9 +560,10 @@ importers: '@types/node': 17.0.45 change-case: 4.1.2 concurrently: 7.6.0 + globby: 13.1.2 histoire: link:../histoire - typescript: 4.9.3 - vite: 4.0.0-beta.5_@types+node@17.0.45 + typescript: 4.9.4 + vite: 4.0.0-beta.7_@types+node@17.0.45 vue: 3.2.45 packages/histoire-plugin-vue2: @@ -572,6 +574,7 @@ importers: '@types/node': ^17.0.32 change-case: ^4.1.2 concurrently: ^7.1.0 + globby: ^13.1.1 histoire: workspace:* typescript: ^4.7.4 vite: ^4.0.0-beta.5 @@ -584,9 +587,10 @@ importers: '@types/node': 17.0.45 change-case: 4.1.2 concurrently: 7.6.0 + globby: 13.1.2 histoire: link:../histoire - typescript: 4.9.3 - vite: 4.0.0-beta.5_@types+node@17.0.45 + typescript: 4.9.4 + vite: 4.0.0-beta.7_@types+node@17.0.45 vue: 2.7.14 packages/histoire-shared: @@ -605,8 +609,8 @@ importers: pathe: 0.2.0 picocolors: 1.0.0 devDependencies: - typescript: 4.9.3 - vite: 4.0.0-beta.5 + typescript: 4.9.4 + vite: 4.0.0-beta.7 packages/histoire-vendors: specifiers: @@ -628,19 +632,19 @@ importers: vue-router: ^4.0.14 devDependencies: '@iconify/vue': 3.2.1_vue@3.2.45 - '@rollup/plugin-commonjs': 23.0.3_rollup@3.5.1 - '@rollup/plugin-node-resolve': 15.0.1_rollup@3.5.1 - '@types/node': 18.11.10 + '@rollup/plugin-commonjs': 23.0.4_rollup@3.7.0 + '@rollup/plugin-node-resolve': 15.0.1_rollup@3.7.0 + '@types/node': 18.11.11 '@vueuse/core': 8.9.4_vue@3.2.45 execa: 6.1.0 floating-vue: 2.0.0-beta.20_vue@3.2.45 fs-extra: 10.1.0 globby: 13.1.2 - pinia: 2.0.27_mgnvym7yiazkylwwogi5r767ue - rollup: 3.5.1 - rollup-plugin-typescript2: 0.34.1_rt6svyh24sgpogwv5hms77uhpq + pinia: 2.0.27_prq2uz4lho2pwp6irk4cfkrxwu + rollup: 3.7.0 + rollup-plugin-typescript2: 0.34.1_nv3cvulfrssbbv5jon74ek7f7i scroll-into-view-if-needed: 2.2.31 - typescript: 4.9.3 + typescript: 4.9.4 vue: 3.2.45 vue-router: 4.1.6_vue@3.2.45 @@ -1228,7 +1232,7 @@ packages: dependencies: '@codemirror/language': 6.3.1 '@codemirror/state': 6.1.4 - '@codemirror/view': 6.6.0 + '@codemirror/view': 6.7.0 '@lezer/common': 1.0.2 dev: false @@ -1243,7 +1247,7 @@ packages: resolution: {integrity: sha512-MK+G1QKaGfSEUg9YEFaBkMBI6j1ge4VMBPZv9fDYotw7w695c42x5Ba1mmwBkesYnzYFBfte6Hh9TDcKa6xORQ==} dependencies: '@codemirror/state': 6.1.4 - '@codemirror/view': 6.6.0 + '@codemirror/view': 6.7.0 '@lezer/common': 1.0.2 '@lezer/highlight': 1.1.3 '@lezer/lr': 1.2.5 @@ -1254,7 +1258,7 @@ packages: resolution: {integrity: sha512-mdvDQrjRmYPvQ3WrzF6Ewaao+NWERYtpthJvoQ3tK3t/44Ynhk8ZGjTSL9jMEv8CgSMogmt75X8ceOZRDSXHtQ==} dependencies: '@codemirror/state': 6.1.4 - '@codemirror/view': 6.6.0 + '@codemirror/view': 6.7.0 crelt: 1.0.5 dev: false @@ -1267,12 +1271,12 @@ packages: dependencies: '@codemirror/language': 6.3.1 '@codemirror/state': 6.1.4 - '@codemirror/view': 6.6.0 + '@codemirror/view': 6.7.0 '@lezer/highlight': 1.1.3 dev: false - /@codemirror/view/6.6.0: - resolution: {integrity: sha512-40VaFVZI3rkyjO5GHFAbNwaW+YgZexjKyx5gxLU2DvfuXAEZX0kW0apOXb0SBRLnKIQJ+U/n2nPfxgBVFHERrg==} + /@codemirror/view/6.7.0: + resolution: {integrity: sha512-sI3CngHQlguxAquc2oZ4sMFDgTJiCnKkRcFmw5apqcnNLvQfQtEDIlYvCVl1adJ6UV7ZUV9wOdqkeJ8kz2+5gg==} dependencies: '@codemirror/state': 6.1.4 style-mod: 4.0.0 @@ -1368,8 +1372,8 @@ packages: - '@algolia/client-search' dev: true - /@esbuild/android-arm/0.15.16: - resolution: {integrity: sha512-nyB6CH++2mSgx3GbnrJsZSxzne5K0HMyNIWafDHqYy7IwxFc4fd/CgHVZXr8Eh+Q3KbIAcAe3vGyqIPhGblvMQ==} + /@esbuild/android-arm/0.15.18: + resolution: {integrity: sha512-5GT+kcs2WVGjVs7+boataCkO5Fg0y4kCjzkB5bAip7H4jfnOS3dA6KPiww9W1OEKTKeAcUVhdZGvgI65OXmUnw==} engines: {node: '>=12'} cpu: [arm] os: [android] @@ -1377,88 +1381,88 @@ packages: dev: true optional: true - /@esbuild/android-arm/0.16.2: - resolution: {integrity: sha512-t8zq/Ad8njye3tYkbdBYAEGBExCyqFuPnKmKgLBF9+nIwAS/V3FYck6BjAx813JCGXkNsR1iriS8jQFwydT+FA==} + /@esbuild/android-arm/0.16.3: + resolution: {integrity: sha512-mueuEoh+s1eRbSJqq9KNBQwI4QhQV6sRXIfTyLXSHGMpyew61rOK4qY21uKbXl1iBoMb0AdL1deWFCQVlN2qHA==} engines: {node: '>=12'} cpu: [arm] os: [android] requiresBuild: true optional: true - /@esbuild/android-arm64/0.16.2: - resolution: {integrity: sha512-3CjbygjFHmtxDW59FOUM1T28G+aVqzbM+cNNinMgRUq+bmAstJdqmJL/KqpUwuCRTri4BgHJRWQbHOQFLwIpxw==} + /@esbuild/android-arm64/0.16.3: + resolution: {integrity: sha512-RolFVeinkeraDvN/OoRf1F/lP0KUfGNb5jxy/vkIMeRRChkrX/HTYN6TYZosRJs3a1+8wqpxAo5PI5hFmxyPRg==} engines: {node: '>=12'} cpu: [arm64] os: [android] requiresBuild: true optional: true - /@esbuild/android-x64/0.16.2: - resolution: {integrity: sha512-J5pzzVs9gHRQff8vUBhGMRQU1avwD9IVTSfzhdnKRqlxq0hsdcgZxH95Ckj/q2KJ4nMPYfDBSRXrrvQ4PyMpFA==} + /@esbuild/android-x64/0.16.3: + resolution: {integrity: sha512-SFpTUcIT1bIJuCCBMCQWq1bL2gPTjWoLZdjmIhjdcQHaUfV41OQfho6Ici5uvvkMmZRXIUGpM3GxysP/EU7ifQ==} engines: {node: '>=12'} cpu: [x64] os: [android] requiresBuild: true optional: true - /@esbuild/darwin-arm64/0.16.2: - resolution: {integrity: sha512-XmjlYmR1UTEdMT2X3TxnA0hG8zOi3q/BzqNN6/PDBxw/UxE9gdj7LGwiQus5HHZM03vSvjRO7WJ7qaJBGBWnpQ==} + /@esbuild/darwin-arm64/0.16.3: + resolution: {integrity: sha512-DO8WykMyB+N9mIDfI/Hug70Dk1KipavlGAecxS3jDUwAbTpDXj0Lcwzw9svkhxfpCagDmpaTMgxWK8/C/XcXvw==} engines: {node: '>=12'} cpu: [arm64] os: [darwin] requiresBuild: true optional: true - /@esbuild/darwin-x64/0.16.2: - resolution: {integrity: sha512-nq5cXgzbXHhBqZEPpuXrf2+BV6QWUM8vAyT/ElJrdIkoGOHwNQJEqZHl3KOWK+1V3KXEXgJhh7DsLixIc677ZQ==} + /@esbuild/darwin-x64/0.16.3: + resolution: {integrity: sha512-uEqZQ2omc6BvWqdCiyZ5+XmxuHEi1SPzpVxXCSSV2+Sh7sbXbpeNhHIeFrIpRjAs0lI1FmA1iIOxFozKBhKgRQ==} engines: {node: '>=12'} cpu: [x64] os: [darwin] requiresBuild: true optional: true - /@esbuild/freebsd-arm64/0.16.2: - resolution: {integrity: sha512-1QuZr7GnoipDYMFJDucqXmVvJZidZuHbvw5QLzBehYq67GR1Jub9pSo6O0Rt4LtKnu3TF2K/bjgzPJAGFY6W4Q==} + /@esbuild/freebsd-arm64/0.16.3: + resolution: {integrity: sha512-nJansp3sSXakNkOD5i5mIz2Is/HjzIhFs49b1tjrPrpCmwgBmH9SSzhC/Z1UqlkivqMYkhfPwMw1dGFUuwmXhw==} engines: {node: '>=12'} cpu: [arm64] os: [freebsd] requiresBuild: true optional: true - /@esbuild/freebsd-x64/0.16.2: - resolution: {integrity: sha512-uvbv99Wg2T489bqUz4gYVb2IpSSZZP/uTkaZpaLN+h3x58FmsLT4o7bF1Refd2JIKuONxSobljlk5/K/RD9SsQ==} + /@esbuild/freebsd-x64/0.16.3: + resolution: {integrity: sha512-TfoDzLw+QHfc4a8aKtGSQ96Wa+6eimljjkq9HKR0rHlU83vw8aldMOUSJTUDxbcUdcgnJzPaX8/vGWm7vyV7ug==} engines: {node: '>=12'} cpu: [x64] os: [freebsd] requiresBuild: true optional: true - /@esbuild/linux-arm/0.16.2: - resolution: {integrity: sha512-8n2UozHygOGXzgysim6GifKjv+lW4fs3mlfaoKerwBIOT9OBCo1Q4AjvbtU3F+2AGyo8eavxnj6Xxx0DRTOwiw==} + /@esbuild/linux-arm/0.16.3: + resolution: {integrity: sha512-VwswmSYwVAAq6LysV59Fyqk3UIjbhuc6wb3vEcJ7HEJUtFuLK9uXWuFoH1lulEbE4+5GjtHi3MHX+w1gNHdOWQ==} engines: {node: '>=12'} cpu: [arm] os: [linux] requiresBuild: true optional: true - /@esbuild/linux-arm64/0.16.2: - resolution: {integrity: sha512-S7EwMhEUMzYfd9KTHJX7Y3bKz7/9sZDRJPp10EOQ3Qqp10WvX2G42Q2c7rfymnm9aM5ZWs+W8WgbLFAUnjC3Wg==} + /@esbuild/linux-arm64/0.16.3: + resolution: {integrity: sha512-7I3RlsnxEFCHVZNBLb2w7unamgZ5sVwO0/ikE2GaYvYuUQs9Qte/w7TqWcXHtCwxvZx/2+F97ndiUQAWs47ZfQ==} engines: {node: '>=12'} cpu: [arm64] os: [linux] requiresBuild: true optional: true - /@esbuild/linux-ia32/0.16.2: - resolution: {integrity: sha512-TRz3MDvv65zXZ4NTJYi1yyVj17Qrsm8y6J8r4qIdd2qszRLPHmte4LAazPa7g+To6QfM2kL3gHmVhwV6GcYz0g==} + /@esbuild/linux-ia32/0.16.3: + resolution: {integrity: sha512-X8FDDxM9cqda2rJE+iblQhIMYY49LfvW4kaEjoFbTTQ4Go8G96Smj2w3BRTwA8IHGoi9dPOPGAX63dhuv19UqA==} engines: {node: '>=12'} cpu: [ia32] os: [linux] requiresBuild: true optional: true - /@esbuild/linux-loong64/0.15.16: - resolution: {integrity: sha512-SDLfP1uoB0HZ14CdVYgagllgrG7Mdxhkt4jDJOKl/MldKrkQ6vDJMZKl2+5XsEY/Lzz37fjgLQoJBGuAw/x8kQ==} + /@esbuild/linux-loong64/0.15.18: + resolution: {integrity: sha512-L4jVKS82XVhw2nvzLg/19ClLWg0y27ulRwuP7lcyL6AbUWB5aPglXY3M21mauDQMDfRLs8cQmeT03r/+X3cZYQ==} engines: {node: '>=12'} cpu: [loong64] os: [linux] @@ -1466,96 +1470,96 @@ packages: dev: true optional: true - /@esbuild/linux-loong64/0.16.2: - resolution: {integrity: sha512-yhHJCvPQjh/8wLEk336QzXMHYnMKJdzLcNAnXwVawSvsLqyzTYrGshrO1YMhzs5cWgR75DFNnhcAFgEtleAZOw==} + /@esbuild/linux-loong64/0.16.3: + resolution: {integrity: sha512-hIbeejCOyO0X9ujfIIOKjBjNAs9XD/YdJ9JXAy1lHA+8UXuOqbFe4ErMCqMr8dhlMGBuvcQYGF7+kO7waj2KHw==} engines: {node: '>=12'} cpu: [loong64] os: [linux] requiresBuild: true optional: true - /@esbuild/linux-mips64el/0.16.2: - resolution: {integrity: sha512-YwMpV41qIKRHASV4MaaA/PKk9CoZ4QyVyPXhUtLTO9kPWtWECRI4MTBrGIb9kGUpL6I+jiT4fAZn8YpWSGBkQg==} + /@esbuild/linux-mips64el/0.16.3: + resolution: {integrity: sha512-znFRzICT/V8VZQMt6rjb21MtAVJv/3dmKRMlohlShrbVXdBuOdDrGb+C2cZGQAR8RFyRe7HS6klmHq103WpmVw==} engines: {node: '>=12'} cpu: [mips64el] os: [linux] requiresBuild: true optional: true - /@esbuild/linux-ppc64/0.16.2: - resolution: {integrity: sha512-s4YuINcRxCA9TElEf2iBdG6oZWdNu2Eb6R9TbRBcZOTdcgdBKIinaVyEiQ8H6nmCafWCuuJT8u66zds2ET3t1Q==} + /@esbuild/linux-ppc64/0.16.3: + resolution: {integrity: sha512-EV7LuEybxhXrVTDpbqWF2yehYRNz5e5p+u3oQUS2+ZFpknyi1NXxr8URk4ykR8Efm7iu04//4sBg249yNOwy5Q==} engines: {node: '>=12'} cpu: [ppc64] os: [linux] requiresBuild: true optional: true - /@esbuild/linux-riscv64/0.16.2: - resolution: {integrity: sha512-oacL6QGqVRhBCbBlFxODYfcCkB6tPmfanaWnsuHNI7m9LVkBuuDKpsC3XWOwkEQiLIJcvhhZKOkkgw49KxS1Dw==} + /@esbuild/linux-riscv64/0.16.3: + resolution: {integrity: sha512-uDxqFOcLzFIJ+r/pkTTSE9lsCEaV/Y6rMlQjUI9BkzASEChYL/aSQjZjchtEmdnVxDKETnUAmsaZ4pqK1eE5BQ==} engines: {node: '>=12'} cpu: [riscv64] os: [linux] requiresBuild: true optional: true - /@esbuild/linux-s390x/0.16.2: - resolution: {integrity: sha512-5ifr0lshZbLI457Qe6y3MsDYv1cSOJ8awgi0HT14cS59WliT7bDkrr3kmDw/LqGOAPyDvDD+U8s2cFBSENetuA==} + /@esbuild/linux-s390x/0.16.3: + resolution: {integrity: sha512-NbeREhzSxYwFhnCAQOQZmajsPYtX71Ufej3IQ8W2Gxskfz9DK58ENEju4SbpIj48VenktRASC52N5Fhyf/aliQ==} engines: {node: '>=12'} cpu: [s390x] os: [linux] requiresBuild: true optional: true - /@esbuild/linux-x64/0.16.2: - resolution: {integrity: sha512-TA/ORYlP6h2pfB/dzrPTMFWd1MaUYy7kwblWdzwkUtsTAJAKJlZwBhkKftSaUNNU5wtXNJ9+ucMDf7vBPbDjlw==} + /@esbuild/linux-x64/0.16.3: + resolution: {integrity: sha512-SDiG0nCixYO9JgpehoKgScwic7vXXndfasjnD5DLbp1xltANzqZ425l7LSdHynt19UWOcDjG9wJJzSElsPvk0w==} engines: {node: '>=12'} cpu: [x64] os: [linux] requiresBuild: true optional: true - /@esbuild/netbsd-x64/0.16.2: - resolution: {integrity: sha512-oBH2Aj4fL9FLlkIi2wYGckydKHVKmYrqiqt91i6kFE1mF7B05YYttrlOHAf3JzWIJQWyvzvsmoA/XFPf1sTgBw==} + /@esbuild/netbsd-x64/0.16.3: + resolution: {integrity: sha512-AzbsJqiHEq1I/tUvOfAzCY15h4/7Ivp3ff/o1GpP16n48JMNAtbW0qui2WCgoIZArEHD0SUQ95gvR0oSO7ZbdA==} engines: {node: '>=12'} cpu: [x64] os: [netbsd] requiresBuild: true optional: true - /@esbuild/openbsd-x64/0.16.2: - resolution: {integrity: sha512-eKOpYr7CiF9GZxu18iOQGfzQ4htO6KGhXriW2raJvRO0G27Lu7ArAI/kW71yTPaFqlf9gCmCGaTPr2tmiUePVg==} + /@esbuild/openbsd-x64/0.16.3: + resolution: {integrity: sha512-gSABi8qHl8k3Cbi/4toAzHiykuBuWLZs43JomTcXkjMZVkp0gj3gg9mO+9HJW/8GB5H89RX/V0QP4JGL7YEEVg==} engines: {node: '>=12'} cpu: [x64] os: [openbsd] requiresBuild: true optional: true - /@esbuild/sunos-x64/0.16.2: - resolution: {integrity: sha512-1HsQLVnjhlscekE8H5Xj49xPvd0c74eoZEjh+OUnr+x7vCXdTVdFDgao9QM0H9zfioxJN1ZH7534LwxEaAWaIA==} + /@esbuild/sunos-x64/0.16.3: + resolution: {integrity: sha512-SF9Kch5Ete4reovvRO6yNjMxrvlfT0F0Flm+NPoUw5Z4Q3r1d23LFTgaLwm3Cp0iGbrU/MoUI+ZqwCv5XJijCw==} engines: {node: '>=12'} cpu: [x64] os: [sunos] requiresBuild: true optional: true - /@esbuild/win32-arm64/0.16.2: - resolution: {integrity: sha512-G9AWjsnVxGQj8z0WgaDwTKgXzwc9zLPYDFoLE4oAGI/TQnft0eQjc+CKiWRyoa+a/c3XIFGXoWnW+17kbibSfA==} + /@esbuild/win32-arm64/0.16.3: + resolution: {integrity: sha512-u5aBonZIyGopAZyOnoPAA6fGsDeHByZ9CnEzyML9NqntK6D/xl5jteZUKm/p6nD09+v3pTM6TuUIqSPcChk5gg==} engines: {node: '>=12'} cpu: [arm64] os: [win32] requiresBuild: true optional: true - /@esbuild/win32-ia32/0.16.2: - resolution: {integrity: sha512-UJqmfPsiSX/wP1kY5JMordRqNU2r8n8ieXmNimp4r35sQEX3bjnSkPJ2E8BM8W8ecmEL+oDjYjulkTT3zSPa1g==} + /@esbuild/win32-ia32/0.16.3: + resolution: {integrity: sha512-GlgVq1WpvOEhNioh74TKelwla9KDuAaLZrdxuuUgsP2vayxeLgVc+rbpIv0IYF4+tlIzq2vRhofV+KGLD+37EQ==} engines: {node: '>=12'} cpu: [ia32] os: [win32] requiresBuild: true optional: true - /@esbuild/win32-x64/0.16.2: - resolution: {integrity: sha512-1+PQiGAbbGlIXXlp9i/5JRpodCsozGTjffaD4W1LgeoynWef38VD8NNC8yG366NYXHHHLR1pN6MQZ9r2na/S1A==} + /@esbuild/win32-x64/0.16.3: + resolution: {integrity: sha512-5/JuTd8OWW8UzEtyf19fbrtMJENza+C9JoPIkvItgTBQ1FO2ZLvjbPO6Xs54vk0s5JB5QsfieUEshRQfu7ZHow==} engines: {node: '>=12'} cpu: [x64] os: [win32] @@ -1593,12 +1597,12 @@ packages: resolution: {integrity: sha512-bxUnRP8xptGRo8YXeY073DSpfK74XpSb0ZyRNpHV9WvLnJ7TwPOjZll8hTMin7zLC6iOp59pDZ8EQDj1gzgAQQ==} dev: false - /@graphql-tools/merge/8.3.12_graphql@16.6.0: - resolution: {integrity: sha512-BFL8r4+FrqecPnIW0H8UJCBRQ4Y8Ep60aujw9c/sQuFmQTiqgWgpphswMGfaosP2zUinDE3ojU5wwcS2IJnumA==} + /@graphql-tools/merge/8.3.14_graphql@16.6.0: + resolution: {integrity: sha512-zV0MU1DnxJLIB0wpL4N3u21agEiYFsjm6DI130jqHpwF0pR9HkF+Ni65BNfts4zQelP0GjkHltG+opaozAJ1NA==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 9.1.1_graphql@16.6.0 + '@graphql-tools/utils': 9.1.3_graphql@16.6.0 graphql: 16.6.0 tslib: 2.4.1 dev: true @@ -1613,13 +1617,13 @@ packages: tslib: 2.4.1 dev: true - /@graphql-tools/mock/8.7.12_graphql@16.6.0: - resolution: {integrity: sha512-bEjj52T5idjzqFXfDZPFfPZDPFEjVmayYA6RYqMxM3Qdv5JJ8pSMEGDBcXhinbQudPKdRkLmR17usNmRMpUQEg==} + /@graphql-tools/mock/8.7.14_graphql@16.6.0: + resolution: {integrity: sha512-kIYirhGqhhSI6p/5qj95U8Lngm4mml5B3Z/r7ShI4+/EACyOOV+wUlql45+Y21b9NRUxJbsNHpztGxzgCSyviQ==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/schema': 9.0.10_graphql@16.6.0 - '@graphql-tools/utils': 9.1.1_graphql@16.6.0 + '@graphql-tools/schema': 9.0.12_graphql@16.6.0 + '@graphql-tools/utils': 9.1.3_graphql@16.6.0 fast-json-stable-stringify: 2.1.0 graphql: 16.6.0 tslib: 2.4.1 @@ -1637,13 +1641,13 @@ packages: value-or-promise: 1.0.11 dev: true - /@graphql-tools/schema/9.0.10_graphql@16.6.0: - resolution: {integrity: sha512-lV0o4df9SpPiaeeDAzgdCJ2o2N9Wvsp0SMHlF2qDbh9aFCFQRsXuksgiDm2yTgT3TG5OtUes/t0D6uPjPZFUbQ==} + /@graphql-tools/schema/9.0.12_graphql@16.6.0: + resolution: {integrity: sha512-DmezcEltQai0V1y96nwm0Kg11FDS/INEFekD4nnVgzBqawvznWqK6D6bujn+cw6kivoIr3Uq//QmU/hBlBzUlQ==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/merge': 8.3.12_graphql@16.6.0 - '@graphql-tools/utils': 9.1.1_graphql@16.6.0 + '@graphql-tools/merge': 8.3.14_graphql@16.6.0 + '@graphql-tools/utils': 9.1.3_graphql@16.6.0 graphql: 16.6.0 tslib: 2.4.1 value-or-promise: 1.0.11 @@ -1658,8 +1662,8 @@ packages: tslib: 2.4.1 dev: true - /@graphql-tools/utils/9.1.1_graphql@16.6.0: - resolution: {integrity: sha512-DXKLIEDbihK24fktR2hwp/BNIVwULIHaSTNTNhXS+19vgT50eX9wndx1bPxGwHnVBOONcwjXy0roQac49vdt/w==} + /@graphql-tools/utils/9.1.3_graphql@16.6.0: + resolution: {integrity: sha512-bbJyKhs6awp1/OmP+WKA1GOyu9UbgZGkhIj5srmiMGLHohEOKMjW784Sk0BZil1w2x95UPu0WHw6/d/HVCACCg==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: @@ -1753,7 +1757,7 @@ packages: '@types/istanbul-lib-coverage': 2.0.4 '@types/istanbul-reports': 3.0.1 '@types/node': 17.0.45 - '@types/yargs': 17.0.15 + '@types/yargs': 17.0.17 chalk: 4.1.2 dev: true @@ -1848,7 +1852,7 @@ packages: npmlog: 5.0.1 rimraf: 3.0.2 semver: 7.3.8 - tar: 6.1.12 + tar: 6.1.13 transitivePeerDependencies: - encoding - supports-color @@ -1892,7 +1896,7 @@ packages: engines: {node: ^14.16.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0} dependencies: '@nuxt/schema': 3.0.0 - c12: 1.0.1 + c12: 1.1.0 consola: 2.15.3 defu: 6.1.1 globby: 13.1.2 @@ -1918,7 +1922,7 @@ packages: engines: {node: ^14.16.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0} dependencies: '@nuxt/schema': 3.0.0_rollup@2.79.1 - c12: 1.0.1 + c12: 1.1.0 consola: 2.15.3 defu: 6.1.1 globby: 13.1.2 @@ -1959,7 +1963,7 @@ packages: resolution: {integrity: sha512-5fwsidhs5NjFzR8sIzHMXO0WFGkI3tCH3ViANn2W4N5qCwoYZ0n1sZBkQ9Esn1VoEed6RsIlTpWrPZPVtqNkGQ==} engines: {node: ^14.16.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0} dependencies: - c12: 1.0.1 + c12: 1.1.0 create-require: 1.1.1 defu: 6.1.1 jiti: 1.16.0 @@ -1979,7 +1983,7 @@ packages: resolution: {integrity: sha512-5fwsidhs5NjFzR8sIzHMXO0WFGkI3tCH3ViANn2W4N5qCwoYZ0n1sZBkQ9Esn1VoEed6RsIlTpWrPZPVtqNkGQ==} engines: {node: ^14.16.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0} dependencies: - c12: 1.0.1 + c12: 1.1.0 create-require: 1.1.1 defu: 6.1.1 jiti: 1.16.0 @@ -2006,7 +2010,7 @@ packages: consola: 2.15.3 create-require: 1.1.1 defu: 6.1.1 - destr: 1.2.1 + destr: 1.2.2 dotenv: 16.0.3 fs-extra: 10.1.0 git-url-parse: 13.1.0 @@ -2040,13 +2044,13 @@ packages: dependencies: '@nuxt/kit': 3.0.0_rollup@2.79.1 '@rollup/plugin-replace': 5.0.1_rollup@2.79.1 - '@vitejs/plugin-vue': 3.2.0_52n6m3tculxsdye4oufjkspuma - '@vitejs/plugin-vue-jsx': 2.1.1_52n6m3tculxsdye4oufjkspuma + '@vitejs/plugin-vue': 3.2.0_pyfeoepnsr2fx4g4idwaoisbcq + '@vitejs/plugin-vue-jsx': 2.1.1_pyfeoepnsr2fx4g4idwaoisbcq autoprefixer: 10.4.13_postcss@8.4.19 chokidar: 3.5.3 cssnano: 5.1.14_postcss@8.4.19 defu: 6.1.1 - esbuild: 0.15.16 + esbuild: 0.15.18 escape-string-regexp: 5.0.0 estree-walker: 3.0.1 externality: 1.0.0 @@ -2061,15 +2065,15 @@ packages: perfect-debounce: 0.1.3 pkg-types: 1.0.1 postcss: 8.4.19 - postcss-import: 15.0.1_postcss@8.4.19 + postcss-import: 15.1.0_postcss@8.4.19 postcss-url: 10.1.3_postcss@8.4.19 rollup: 2.79.1 rollup-plugin-visualizer: 5.8.3_rollup@2.79.1 ufo: 1.0.1 unplugin: 1.0.0 - vite: 4.0.0-beta.5 - vite-node: 0.25.3 - vite-plugin-checker: 0.5.1_vite@4.0.0-beta.5 + vite: 4.0.0-beta.7 + vite-node: 0.25.6 + vite-plugin-checker: 0.5.1_vite@4.0.0-beta.7 vue: 3.2.45 vue-bundle-renderer: 1.0.0 transitivePeerDependencies: @@ -2155,7 +2159,7 @@ packages: fs-extra: 10.1.0 nanoid: 4.0.0 pathe: 0.3.9 - vite: 4.0.0-beta.5_@types+node@17.0.45 + vite: 4.0.0-beta.7_@types+node@17.0.45 transitivePeerDependencies: - '@types/node' - less @@ -2202,7 +2206,7 @@ packages: slugify: 1.6.5 source-map-support: 0.5.21 tinypool: 0.3.0 - vite: 4.0.0-beta.5_@types+node@17.0.45 + vite: 4.0.0-beta.7_@types+node@17.0.45 vite-node: 0.3.6_@types+node@17.0.45 transitivePeerDependencies: - '@types/node' @@ -2239,7 +2243,7 @@ packages: object-inspect: 1.12.2 pathe: 0.3.9 slugify: 1.6.5 - vite: 4.0.0-beta.5_@types+node@17.0.45 + vite: 4.0.0-beta.7_@types+node@17.0.45 ws: 8.11.0 transitivePeerDependencies: - '@types/node' @@ -2285,7 +2289,7 @@ packages: dependencies: chalk: 5.1.2 consola: 2.15.3 - esbuild: 0.15.16 + esbuild: 0.15.18 merge-source-map: 1.1.0 pathe: 0.3.9 dev: true @@ -2383,8 +2387,8 @@ packages: slash: 4.0.0 dev: true - /@rollup/plugin-commonjs/23.0.3_rollup@2.79.1: - resolution: {integrity: sha512-31HxrT5emGfTyIfAs1lDQHj6EfYxTXcwtX5pIIhq+B/xZBNIqQ179d/CkYxlpYmFCxT78AeU4M8aL8Iv/IBxFA==} + /@rollup/plugin-commonjs/23.0.4_rollup@2.79.1: + resolution: {integrity: sha512-bOPJeTZg56D2MCm+TT4psP8e8Jmf1Jsi7pFUMl8BN5kOADNzofNHe47+84WVCt7D095xPghC235/YKuNDEhczg==} engines: {node: '>=14.0.0'} peerDependencies: rollup: ^2.68.0||^3.0.0 @@ -2401,8 +2405,8 @@ packages: rollup: 2.79.1 dev: true - /@rollup/plugin-commonjs/23.0.3_rollup@3.5.1: - resolution: {integrity: sha512-31HxrT5emGfTyIfAs1lDQHj6EfYxTXcwtX5pIIhq+B/xZBNIqQ179d/CkYxlpYmFCxT78AeU4M8aL8Iv/IBxFA==} + /@rollup/plugin-commonjs/23.0.4_rollup@3.7.0: + resolution: {integrity: sha512-bOPJeTZg56D2MCm+TT4psP8e8Jmf1Jsi7pFUMl8BN5kOADNzofNHe47+84WVCt7D095xPghC235/YKuNDEhczg==} engines: {node: '>=14.0.0'} peerDependencies: rollup: ^2.68.0||^3.0.0 @@ -2410,13 +2414,13 @@ packages: rollup: optional: true dependencies: - '@rollup/pluginutils': 5.0.2_rollup@3.5.1 + '@rollup/pluginutils': 5.0.2_rollup@3.7.0 commondir: 1.0.1 estree-walker: 2.0.2 glob: 8.0.3 is-reference: 1.2.1 magic-string: 0.26.7 - rollup: 3.5.1 + rollup: 3.7.0 dev: true /@rollup/plugin-inject/5.0.2_rollup@2.79.1: @@ -2465,7 +2469,7 @@ packages: rollup: 2.79.1 dev: true - /@rollup/plugin-node-resolve/15.0.1_rollup@3.5.1: + /@rollup/plugin-node-resolve/15.0.1_rollup@3.7.0: resolution: {integrity: sha512-ReY88T7JhJjeRVbfCyNj+NXAG3IIsVMsX9b5/9jC98dRP8/yxlZdz7mHZbHk5zHr24wZZICS5AcXsFZAXYUQEg==} engines: {node: '>=14.0.0'} peerDependencies: @@ -2474,13 +2478,13 @@ packages: rollup: optional: true dependencies: - '@rollup/pluginutils': 5.0.2_rollup@3.5.1 + '@rollup/pluginutils': 5.0.2_rollup@3.7.0 '@types/resolve': 1.20.2 deepmerge: 4.2.2 is-builtin-module: 3.2.0 is-module: 1.0.0 resolve: 1.22.1 - rollup: 3.5.1 + rollup: 3.7.0 dev: true /@rollup/plugin-replace/5.0.1_rollup@2.79.1: @@ -2545,7 +2549,7 @@ packages: rollup: 2.79.1 dev: true - /@rollup/pluginutils/5.0.2_rollup@3.5.1: + /@rollup/pluginutils/5.0.2_rollup@3.7.0: resolution: {integrity: sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==} engines: {node: '>=14.0.0'} peerDependencies: @@ -2557,7 +2561,7 @@ packages: '@types/estree': 1.0.0 estree-walker: 2.0.2 picomatch: 2.3.1 - rollup: 3.5.1 + rollup: 3.7.0 dev: true /@sefinek/random-emoji/1.4.5: @@ -2624,8 +2628,8 @@ packages: import-meta-resolve: 2.2.0 dev: true - /@sveltejs/kit/1.0.0-next.573_7jhngxjyemgcxnkuf4dsedrxyq: - resolution: {integrity: sha512-3qizgkX7oO1rt+wq3EvJHDNBtnW2EEqen6m7PbOfrXK7idhCrPsVUkJWT7+ooGu8zs/kkvHxa7ZdQPp6ltrN+g==} + /@sveltejs/kit/1.0.0-next.577_rpfv7uk6fc5pyczlxjvsnm3swy: + resolution: {integrity: sha512-hQuSGiF87pNNdmIMDwOr8+nMOe/tgtOne4VBpCFb4k0YrFh/5qC/pgWvWXFWeJBRi9/UzmEjGH9gJeJkgtMLmw==} engines: {node: '>=16.14'} hasBin: true requiresBuild: true @@ -2633,7 +2637,7 @@ packages: svelte: ^3.44.0 vite: ^3.2.0 || ^2.9.0 || ^3.0.0 || ^4.0.0 dependencies: - '@sveltejs/vite-plugin-svelte': 1.4.0_7jhngxjyemgcxnkuf4dsedrxyq + '@sveltejs/vite-plugin-svelte': 1.4.0_rpfv7uk6fc5pyczlxjvsnm3swy '@types/cookie': 0.5.1 cookie: 0.5.0 devalue: 4.2.0 @@ -2643,15 +2647,15 @@ packages: sade: 1.8.1 set-cookie-parser: 2.5.1 sirv: 2.0.2 - svelte: 3.53.1 + svelte: 3.54.0 tiny-glob: 0.2.9 - undici: 5.13.0 - vite: 4.0.0-beta.5 + undici: 5.14.0 + vite: 4.0.0-beta.7 transitivePeerDependencies: - supports-color dev: true - /@sveltejs/vite-plugin-svelte/1.4.0_7jhngxjyemgcxnkuf4dsedrxyq: + /@sveltejs/vite-plugin-svelte/1.4.0_rpfv7uk6fc5pyczlxjvsnm3swy: resolution: {integrity: sha512-6QupI/jemMfK+yI2pMtJcu5iO2gtgTfcBdGwMZZt+lgbFELhszbDl6Qjh000HgAV8+XUA+8EY8DusOFk8WhOIg==} engines: {node: ^14.18.0 || >= 16} peerDependencies: @@ -2662,10 +2666,10 @@ packages: deepmerge: 4.2.2 kleur: 4.1.5 magic-string: 0.26.7 - svelte: 3.53.1 - svelte-hmr: 0.15.1_svelte@3.53.1 - vite: 4.0.0-beta.5 - vitefu: 0.2.2_vite@4.0.0-beta.5 + svelte: 3.54.0 + svelte-hmr: 0.15.1_svelte@3.54.0 + vite: 4.0.0-beta.7 + vitefu: 0.2.2_vite@4.0.0-beta.7 transitivePeerDependencies: - supports-color dev: true @@ -2856,8 +2860,8 @@ packages: /@types/node/17.0.45: resolution: {integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==} - /@types/node/18.11.10: - resolution: {integrity: sha512-juG3RWMBOqcOuXC643OAdSA525V44cVgGV6dUDuiFtss+8Fk5x1hI93Rsld43VeJVIeqlP9I7Fn9/qaVqoEAuQ==} + /@types/node/18.11.11: + resolution: {integrity: sha512-KJ021B1nlQUBLopzZmPBVuGU9un7WJd/W4ya7Ih02B4Uwky5Nja0yGYav2EfYIk0RR2Q9oVhf60S2XR1BCWJ2g==} dev: true /@types/node/8.10.66: @@ -2891,7 +2895,7 @@ packages: /@types/sass/1.43.1: resolution: {integrity: sha512-BPdoIt1lfJ6B7rw35ncdwBZrAssjcwzI5LByIrYs+tpXlj/CAkuVdRsgZDdP4lq5EjyWzwxZCqAoFyHKFwp32g==} dependencies: - '@types/node': 18.11.10 + '@types/node': 18.11.11 dev: true /@types/semver/7.3.13: @@ -2939,8 +2943,8 @@ packages: resolution: {integrity: sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==} dev: true - /@types/yargs/17.0.15: - resolution: {integrity: sha512-ZHc4W2dnEQPfhn06TBEdWaiUHEZAocYaiVMfwOipY5jcJt/251wVrKCBWBetGZWO5CF8tdb7L3DmdxVlZ2BOIg==} + /@types/yargs/17.0.17: + resolution: {integrity: sha512-72bWxFKTK6uwWJAVT+3rF6Jo6RTojiJ27FQo8Rf60AL+VZbzoVPnMFhKsUnbjR8A3BTCYQ7Mv3hnl8T0A+CX9g==} dependencies: '@types/yargs-parser': 21.0.0 dev: true @@ -2952,8 +2956,8 @@ packages: '@types/node': 14.18.34 optional: true - /@typescript-eslint/eslint-plugin/5.45.0_yjegg5cyoezm3fzsmuszzhetym: - resolution: {integrity: sha512-CXXHNlf0oL+Yg021cxgOdMHNTXD17rHkq7iW6RFHoybdFgQBjU3yIXhhcPpGwr1CjZlo6ET8C6tzX5juQoXeGA==} + /@typescript-eslint/eslint-plugin/5.46.0_5mle7isnkfgjmrghnnczirv6iy: + resolution: {integrity: sha512-QrZqaIOzJAjv0sfjY4EjbXUi3ZOFpKfzntx22gPGr9pmFcTjcFw/1sS1LJhEubfAGwuLjNrPV0rH+D1/XZFy7Q==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: '@typescript-eslint/parser': ^5.0.0 @@ -2965,24 +2969,24 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/parser': 5.45.0_s5ps7njkmjlaqajutnox5ntcla - '@typescript-eslint/scope-manager': 5.45.0 - '@typescript-eslint/type-utils': 5.45.0_s5ps7njkmjlaqajutnox5ntcla - '@typescript-eslint/utils': 5.45.0_s5ps7njkmjlaqajutnox5ntcla + '@typescript-eslint/parser': 5.46.0_ha6vam6werchizxrnqvarmz2zu + '@typescript-eslint/scope-manager': 5.46.0 + '@typescript-eslint/type-utils': 5.46.0_ha6vam6werchizxrnqvarmz2zu + '@typescript-eslint/utils': 5.46.0_ha6vam6werchizxrnqvarmz2zu debug: 4.3.4 eslint: 8.29.0 ignore: 5.2.1 natural-compare-lite: 1.4.0 regexpp: 3.2.0 semver: 7.3.8 - tsutils: 3.21.0_typescript@4.9.3 - typescript: 4.9.3 + tsutils: 3.21.0_typescript@4.9.4 + typescript: 4.9.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/parser/5.45.0_s5ps7njkmjlaqajutnox5ntcla: - resolution: {integrity: sha512-brvs/WSM4fKUmF5Ot/gEve6qYiCMjm6w4HkHPfS6ZNmxTS0m0iNN4yOChImaCkqc1hRwFGqUyanMXuGal6oyyQ==} + /@typescript-eslint/parser/5.46.0_ha6vam6werchizxrnqvarmz2zu: + resolution: {integrity: sha512-joNO6zMGUZg+C73vwrKXCd8usnsmOYmgW/w5ZW0pG0RGvqeznjtGDk61EqqTpNrFLUYBW2RSBFrxdAZMqA4OZA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: '*' @@ -2993,26 +2997,26 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/scope-manager': 5.45.0 - '@typescript-eslint/types': 5.45.0 - '@typescript-eslint/typescript-estree': 5.45.0_typescript@4.9.3 + '@typescript-eslint/scope-manager': 5.46.0 + '@typescript-eslint/types': 5.46.0 + '@typescript-eslint/typescript-estree': 5.46.0_typescript@4.9.4 debug: 4.3.4 eslint: 8.29.0 - typescript: 4.9.3 + typescript: 4.9.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/scope-manager/5.45.0: - resolution: {integrity: sha512-noDMjr87Arp/PuVrtvN3dXiJstQR1+XlQ4R1EvzG+NMgXi8CuMCXpb8JqNtFHKceVSQ985BZhfRdowJzbv4yKw==} + /@typescript-eslint/scope-manager/5.46.0: + resolution: {integrity: sha512-7wWBq9d/GbPiIM6SqPK9tfynNxVbfpihoY5cSFMer19OYUA3l4powA2uv0AV2eAZV6KoAh6lkzxv4PoxOLh1oA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - '@typescript-eslint/types': 5.45.0 - '@typescript-eslint/visitor-keys': 5.45.0 + '@typescript-eslint/types': 5.46.0 + '@typescript-eslint/visitor-keys': 5.46.0 dev: true - /@typescript-eslint/type-utils/5.45.0_s5ps7njkmjlaqajutnox5ntcla: - resolution: {integrity: sha512-DY7BXVFSIGRGFZ574hTEyLPRiQIvI/9oGcN8t1A7f6zIs6ftbrU0nhyV26ZW//6f85avkwrLag424n+fkuoJ1Q==} + /@typescript-eslint/type-utils/5.46.0_ha6vam6werchizxrnqvarmz2zu: + resolution: {integrity: sha512-dwv4nimVIAsVS2dTA0MekkWaRnoYNXY26dKz8AN5W3cBFYwYGFQEqm/cG+TOoooKlncJS4RTbFKgcFY/pOiBCg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: '*' @@ -3023,23 +3027,23 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/typescript-estree': 5.45.0_typescript@4.9.3 - '@typescript-eslint/utils': 5.45.0_s5ps7njkmjlaqajutnox5ntcla + '@typescript-eslint/typescript-estree': 5.46.0_typescript@4.9.4 + '@typescript-eslint/utils': 5.46.0_ha6vam6werchizxrnqvarmz2zu debug: 4.3.4 eslint: 8.29.0 - tsutils: 3.21.0_typescript@4.9.3 - typescript: 4.9.3 + tsutils: 3.21.0_typescript@4.9.4 + typescript: 4.9.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/types/5.45.0: - resolution: {integrity: sha512-QQij+u/vgskA66azc9dCmx+rev79PzX8uDHpsqSjEFtfF2gBUTRCpvYMh2gw2ghkJabNkPlSUCimsyBEQZd1DA==} + /@typescript-eslint/types/5.46.0: + resolution: {integrity: sha512-wHWgQHFB+qh6bu0IAPAJCdeCdI0wwzZnnWThlmHNY01XJ9Z97oKqKOzWYpR2I83QmshhQJl6LDM9TqMiMwJBTw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /@typescript-eslint/typescript-estree/5.45.0_typescript@4.9.3: - resolution: {integrity: sha512-maRhLGSzqUpFcZgXxg1qc/+H0bT36lHK4APhp0AEUVrpSwXiRAomm/JGjSG+kNUio5kAa3uekCYu/47cnGn5EQ==} + /@typescript-eslint/typescript-estree/5.46.0_typescript@4.9.4: + resolution: {integrity: sha512-kDLNn/tQP+Yp8Ro2dUpyyVV0Ksn2rmpPpB0/3MO874RNmXtypMwSeazjEN/Q6CTp8D7ExXAAekPEcCEB/vtJkw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: typescript: '*' @@ -3047,20 +3051,20 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/types': 5.45.0 - '@typescript-eslint/visitor-keys': 5.45.0 + '@typescript-eslint/types': 5.46.0 + '@typescript-eslint/visitor-keys': 5.46.0 debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 semver: 7.3.8 - tsutils: 3.21.0_typescript@4.9.3 - typescript: 4.9.3 + tsutils: 3.21.0_typescript@4.9.4 + typescript: 4.9.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/utils/5.45.0_s5ps7njkmjlaqajutnox5ntcla: - resolution: {integrity: sha512-OUg2JvsVI1oIee/SwiejTot2OxwU8a7UfTFMOdlhD2y+Hl6memUSL4s98bpUTo8EpVEr0lmwlU7JSu/p2QpSvA==} + /@typescript-eslint/utils/5.46.0_ha6vam6werchizxrnqvarmz2zu: + resolution: {integrity: sha512-4O+Ps1CRDw+D+R40JYh5GlKLQERXRKW5yIQoNDpmXPJ+C7kaPF9R7GWl+PxGgXjB3PQCqsaaZUpZ9dG4U6DO7g==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: '*' @@ -3070,9 +3074,9 @@ packages: dependencies: '@types/json-schema': 7.0.11 '@types/semver': 7.3.13 - '@typescript-eslint/scope-manager': 5.45.0 - '@typescript-eslint/types': 5.45.0 - '@typescript-eslint/typescript-estree': 5.45.0_typescript@4.9.3 + '@typescript-eslint/scope-manager': 5.46.0 + '@typescript-eslint/types': 5.46.0 + '@typescript-eslint/typescript-estree': 5.46.0_typescript@4.9.4 eslint: 8.29.0 eslint-scope: 5.1.1 eslint-utils: 3.0.0_eslint@8.29.0 @@ -3082,51 +3086,53 @@ packages: - typescript dev: true - /@typescript-eslint/visitor-keys/5.45.0: - resolution: {integrity: sha512-jc6Eccbn2RtQPr1s7th6jJWQHBHI6GBVQkCHoJFQ5UreaKm59Vxw+ynQUPPY2u2Amquc+7tmEoC2G52ApsGNNg==} + /@typescript-eslint/visitor-keys/5.46.0: + resolution: {integrity: sha512-E13gBoIXmaNhwjipuvQg1ByqSAu/GbEpP/qzFihugJ+MomtoJtFAJG/+2DRPByf57B863m0/q7Zt16V9ohhANw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - '@typescript-eslint/types': 5.45.0 + '@typescript-eslint/types': 5.46.0 eslint-visitor-keys: 3.3.0 dev: true - /@unhead/dom/1.0.6: - resolution: {integrity: sha512-X+3UqdMM65piHAmE+SHmepTS5Ld4RdJ1L5lIPdAtAF1fu6GHrJTiZRLHhxVjlkR9oZ1IwjNIKtusabTlqF0B+g==} + /@unhead/dom/1.0.13: + resolution: {integrity: sha512-ErfhK3Nwk3kpxnPEOrkruKAdS3/TrNlKs0nYtKgFJ1ywJYg+uNwRFDe82v4JdUMhnfmbgL/qcO3PTx3Dv09IEQ==} dependencies: - '@unhead/schema': 1.0.6 + '@unhead/schema': 1.0.13 dev: true - /@unhead/schema/1.0.6: - resolution: {integrity: sha512-l0UzuEB8blsrtUeqFtfGrEChhEPXwuU/O02l56Zp5kxqUlmlD4cDa3dxuHSNxmxnfKCvZqjMyDTlQiUu2Ey1rA==} + /@unhead/schema/1.0.13: + resolution: {integrity: sha512-K8SiAEkM8G7GaF1QvsKlthLmRqGB8R9SvZXMCucZqb2VQ6bU4IFSs/4q6dKxmV0fXb5AHdKUL9+rX/4rQ6FsZg==} dependencies: - '@zhead/schema': 1.0.4 + '@zhead/schema': 1.0.7 hookable: 5.4.2 dev: true - /@unhead/ssr/1.0.6: - resolution: {integrity: sha512-38HeLIT9eQCQhgG95G8Ge7/acmo8NorUWovaEdgvTClIhEvkK5E82UYvZxLGfz3jsNOjKHVN73A3OoULvir9rA==} + /@unhead/ssr/1.0.13: + resolution: {integrity: sha512-pach3THVx8LU54M6aQ4qZeQdcLjXVnPlpHe7pQjHGvD6iBJC5bZc8TL+CHdTRxeiq2DqMA5uyfoor7VJJTi5AQ==} dependencies: - '@unhead/schema': 1.0.6 + '@unhead/schema': 1.0.13 dev: true - /@unhead/vue/1.0.6_vue@3.2.45: - resolution: {integrity: sha512-zkMiKyBWG1fNjbg4dVLDcUKx7nV/ZjWgnTJOzZoZuZFSE4yZBbCZoOtqyHHIih4LZS2x3g6rO/pljbMCWaPZtg==} + /@unhead/vue/1.0.13_vue@3.2.45: + resolution: {integrity: sha512-sGl640UQqN8HUYTKXOh6gErk/vw8byPdx1+ECqX4ec7UZYktsWgfyIReYBu09Qm3O6pIYfX8HlZbDipX+wQAOQ==} peerDependencies: vue: '*' peerDependenciesMeta: vue: optional: true dependencies: - '@unhead/schema': 1.0.6 + '@unhead/schema': 1.0.13 hookable: 5.4.2 vue: 3.2.45 dev: true - /@vercel/nft/0.22.1: - resolution: {integrity: sha512-lYYZIoxRurqDOSoVIdBicGnpUIpfyaS5qVjdPq+EfI285WqtZK3NK/dyCkiyBul+X2U2OEhRyeMdXPCHGJbohw==} + /@vercel/nft/0.22.5: + resolution: {integrity: sha512-mug57Wd1BL7GMj9gXMgMeKUjdqO0e4u+0QLPYMFE1rwdJ+55oPy6lp3nIBCS8gOvigT62UI4QKUL2sGqcoW4Hw==} + engines: {node: '>=14'} hasBin: true dependencies: '@mapbox/node-pre-gyp': 1.0.10 + '@rollup/pluginutils': 4.2.1 acorn: 8.8.1 async-sema: 3.1.1 bindings: 1.5.0 @@ -3136,13 +3142,12 @@ packages: micromatch: 4.0.5 node-gyp-build: 4.5.0 resolve-from: 5.0.0 - rollup-pluginutils: 2.8.2 transitivePeerDependencies: - encoding - supports-color dev: true - /@vitejs/plugin-vue-jsx/2.1.1_52n6m3tculxsdye4oufjkspuma: + /@vitejs/plugin-vue-jsx/2.1.1_pyfeoepnsr2fx4g4idwaoisbcq: resolution: {integrity: sha512-JgDhxstQlwnHBvZ1BSnU5mbmyQ14/t5JhREc6YH5kWyu2QdAAOsLF6xgHoIWarj8tddaiwFrNzLbWJPudpXKYA==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: @@ -3155,13 +3160,13 @@ packages: '@babel/core': 7.20.5 '@babel/plugin-transform-typescript': 7.20.2_@babel+core@7.20.5 '@vue/babel-plugin-jsx': 1.1.1_@babel+core@7.20.5 - vite: 4.0.0-beta.5 + vite: 4.0.0-beta.7 vue: 3.2.45 transitivePeerDependencies: - supports-color dev: true - /@vitejs/plugin-vue/2.3.4_52n6m3tculxsdye4oufjkspuma: + /@vitejs/plugin-vue/2.3.4_pyfeoepnsr2fx4g4idwaoisbcq: resolution: {integrity: sha512-IfFNbtkbIm36O9KB8QodlwwYvTEsJb4Lll4c2IwB3VHc2gie2mSPtSzL0eYay7X2jd/2WX02FjSGTWR6OPr/zg==} engines: {node: '>=12.0.0'} peerDependencies: @@ -3171,11 +3176,11 @@ packages: vue: optional: true dependencies: - vite: 4.0.0-beta.5 + vite: 4.0.0-beta.7 vue: 3.2.45 dev: true - /@vitejs/plugin-vue/3.2.0_52n6m3tculxsdye4oufjkspuma: + /@vitejs/plugin-vue/3.2.0_pyfeoepnsr2fx4g4idwaoisbcq: resolution: {integrity: sha512-E0tnaL4fr+qkdCNxJ+Xd0yM31UwMkQje76fsDVBBUCoGOUPexu2VDUYHL8P4CwV+zMvWw6nlRw19OnRKmYAJpw==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: @@ -3185,11 +3190,11 @@ packages: vue: optional: true dependencies: - vite: 4.0.0-beta.5_sass@1.56.1 + vite: 4.0.0-beta.7 vue: 3.2.45 dev: true - /@vitejs/plugin-vue/4.0.0-beta.0_52n6m3tculxsdye4oufjkspuma: + /@vitejs/plugin-vue/4.0.0-beta.0_pyfeoepnsr2fx4g4idwaoisbcq: resolution: {integrity: sha512-ip9aE0C3lyjwVCdM8Wa2oVhXOCRJPauNUrfftkipeud3xVHXUYI4akCIamMIMgXorqpd16ms7zLckfO1rU9i6g==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: @@ -3199,11 +3204,11 @@ packages: vue: optional: true dependencies: - vite: 4.0.0-beta.5 + vite: 4.0.0-beta.7_sass@1.56.1 vue: 3.2.45 dev: true - /@vitejs/plugin-vue2/1.1.2_mmbjmtyteriw7xwbxx7b4qoi3i: + /@vitejs/plugin-vue2/1.1.2_g4vwuhb4ubbae2itju7tz2wkne: resolution: {integrity: sha512-y6OEA+2UdJ0xrEQHodq20v9r3SpS62IOHrgN92JPLvVpNkhcissu7yvD5PXMzMESyazj0XNWGsc8UQk8+mVrjQ==} engines: {node: '>=14.6.0'} peerDependencies: @@ -3213,7 +3218,7 @@ packages: vue: optional: true dependencies: - vite: 4.0.0-beta.5 + vite: 4.0.0-beta.7 vue: 2.7.14 dev: true @@ -3331,7 +3336,7 @@ packages: eslint-config-standard: 16.0.3_sjdvciqzywqkm2lx7y3c65dmli eslint-import-resolver-node: 0.3.6 eslint-import-resolver-webpack: 0.13.2_fkfqfehjtk7sk2efaqbgxsuasa - eslint-plugin-import: 2.26.0_ub3senzxbs32f65wl7xoyha6lu + eslint-plugin-import: 2.26.0_jx43xxcguvnqqmtmaaygwl7cmu eslint-plugin-node: 11.1.0_eslint@8.29.0 eslint-plugin-promise: 6.1.1_eslint@8.29.0 eslint-plugin-vue: 9.8.0_eslint@8.29.0 @@ -3340,7 +3345,7 @@ packages: - webpack dev: true - /@vue/eslint-config-typescript/10.0.0_sb3redb42nwkq4q6vnqovjecl4: + /@vue/eslint-config-typescript/10.0.0_4ajq2belonl3hwwudzbg7tkiqi: resolution: {integrity: sha512-F94cL8ug3FaYXlCfU5/wiGjk1qeadmoBpRGAOBq+qre3Smdupa59dd6ZJrsfRODpsMPyTG7330juMDsUvpZ3Rw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -3353,11 +3358,11 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/eslint-plugin': 5.45.0_yjegg5cyoezm3fzsmuszzhetym - '@typescript-eslint/parser': 5.45.0_s5ps7njkmjlaqajutnox5ntcla + '@typescript-eslint/eslint-plugin': 5.46.0_5mle7isnkfgjmrghnnczirv6iy + '@typescript-eslint/parser': 5.46.0_ha6vam6werchizxrnqvarmz2zu eslint: 8.29.0 eslint-plugin-vue: 9.8.0_eslint@8.29.0 - typescript: 4.9.3 + typescript: 4.9.4 vue-eslint-parser: 8.3.0_eslint@8.29.0 transitivePeerDependencies: - supports-color @@ -3405,8 +3410,8 @@ packages: /@vue/shared/3.2.45: resolution: {integrity: sha512-Ewzq5Yhimg7pSztDV+RH1UDKBzmtqieXQlpTVm2AwraoRL/Rks96mvd8Vgi7Lj+h+TH8dv7mXD3FRZR3TUvbSg==} - /@vue/test-utils/2.2.5_vue@3.2.45: - resolution: {integrity: sha512-iKEbu/VRO53qXJlAupL7d4v+SdaypQuRDxwGO3dgYT7biPh+gJsa+0Z9dnaHIE752nPc/ueAoNd6KAKx6fD+Tw==} + /@vue/test-utils/2.2.6_vue@3.2.45: + resolution: {integrity: sha512-64zHtJZdG7V/U2L0j/z3Pt5bSygccI3xs+Kl7LB73AZK4MQ8WONJhqDQPK8leUFFA9CmmoJygeky7zcl2hX10A==} peerDependencies: vue: '*' peerDependenciesMeta: @@ -3416,7 +3421,7 @@ packages: vue: 3.2.45 dev: true - /@vuetify/loader-shared/1.7.0_vue@3.2.45+vuetify@3.0.3: + /@vuetify/loader-shared/1.7.0_vue@3.2.45+vuetify@3.0.4: resolution: {integrity: sha512-Db4K67wMhduDsbvdRBYkrYuomti+j0E/1vlz1lnDng5F9LYYBcXa60qypIazVGI6GX/CuY1vshN6XGtGQI4FKg==} peerDependencies: vue: '*' @@ -3428,7 +3433,7 @@ packages: find-cache-dir: 3.3.2 upath: 2.0.1 vue: 3.2.45 - vuetify: 3.0.3_ny5xcw2md7vsxw37otcxmygka4 + vuetify: 3.0.4_ny5xcw2md7vsxw37otcxmygka4 /@vueuse/core/8.9.4: resolution: {integrity: sha512-B/Mdj9TK1peFyWaPof+Zf/mP9XuGAngaJZBwPaXBvU3aCTZlx3ltlrFFFyMV4iGBwsjSCeUCgZrtkEj9dS2Y3Q==} @@ -3477,18 +3482,18 @@ packages: - vue dev: true - /@vueuse/head/1.0.19_vue@3.2.45: - resolution: {integrity: sha512-UB8Vij9fjLS+VIL8VnRxkkkX1dosQEgdfq7kyHNev5tMzAlUc1BwIRlSU5PtJv9+Zk46BhTNdh/Btp+dEinWFQ==} + /@vueuse/head/1.0.22_vue@3.2.45: + resolution: {integrity: sha512-YmUdbzNdCnhmrAFxGnJS+Rixj+swE+TQC9OEaYDHIro6gE7W11jugcdwVP00HrA4WRQhg+TOQ4YcY2oL/PP1hw==} peerDependencies: vue: '*' peerDependenciesMeta: vue: optional: true dependencies: - '@unhead/dom': 1.0.6 - '@unhead/schema': 1.0.6 - '@unhead/ssr': 1.0.6 - '@unhead/vue': 1.0.6_vue@3.2.45 + '@unhead/dom': 1.0.13 + '@unhead/schema': 1.0.13 + '@unhead/ssr': 1.0.13 + '@unhead/vue': 1.0.13_vue@3.2.45 vue: 3.2.45 dev: true @@ -3538,8 +3543,8 @@ packages: - vue dev: true - /@zhead/schema/1.0.4: - resolution: {integrity: sha512-v/CM22nH0TW9VU5IcRXlshwrMtsZPnFQWhcLBvpZjOJvfEmjl8cUb6OIJQJRR2WESNjjPW2Cji8mgL9XSVLjxA==} + /@zhead/schema/1.0.7: + resolution: {integrity: sha512-jN2ipkz39YrHd8uulgw/Y7x8iOxvR/cTkin/E9zRQVP5JBIrrJMiGyFFj6JBW4Q029xJ5dKtpwy/3RZWpz+dkQ==} dev: true /JSONStream/1.3.5: @@ -3759,7 +3764,7 @@ packages: '@apollo/utils.usagereporting': 1.0.1_graphql@16.6.0 '@apollographql/apollo-tools': 0.5.4_graphql@16.6.0 '@apollographql/graphql-playground-html': 1.6.29 - '@graphql-tools/mock': 8.7.12_graphql@16.6.0 + '@graphql-tools/mock': 8.7.14_graphql@16.6.0 '@graphql-tools/schema': 8.5.1_graphql@16.6.0 '@josephg/resolvable': 1.0.1 apollo-datasource: 3.3.2 @@ -3933,7 +3938,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.4 + es-abstract: 1.20.5 get-intrinsic: 1.1.3 is-string: 1.0.7 dev: true @@ -3949,7 +3954,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.4 + es-abstract: 1.20.5 es-shim-unscopables: 1.0.0 dev: true @@ -4030,10 +4035,10 @@ packages: resolution: {integrity: sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==} dev: true - /axios/0.21.4_debug@4.3.2: + /axios/0.21.4_debug@4.3.4: resolution: {integrity: sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==} dependencies: - follow-redirects: 1.15.2_debug@4.3.2 + follow-redirects: 1.15.2_debug@4.3.4 transitivePeerDependencies: - debug dev: true @@ -4189,17 +4194,19 @@ packages: engines: {node: '>= 0.8'} dev: true - /c12/1.0.1: - resolution: {integrity: sha512-EN9Rqix2q9X3PseFkUvRFZ/0fvncF35ZR5nykLDwv4Ml/Q1WYPLkcdqlrczFll2G9t4qmxgM4my3EF3IrRGl5Q==} + /c12/1.1.0: + resolution: {integrity: sha512-9KRFWEng+TH8sGST4NNdiKzZGw1Z1CHnPGAmNqAyVP7suluROmBjD8hsiR34f94DdlrvtGvvmiGDsoFXlCBWIw==} dependencies: defu: 6.1.1 dotenv: 16.0.3 - gittar: 0.1.1 + giget: 1.0.0 jiti: 1.16.0 mlly: 1.0.0 pathe: 1.0.0 pkg-types: 1.0.1 rc9: 2.0.0 + transitivePeerDependencies: + - supports-color /c8/7.12.0: resolution: {integrity: sha512-CtgQrHOkyxr5koX1wEUmN/5cfDa2ckbHRA4Gy5LAL0zaCFtVWJS5++n+w4/sr2GWGerBxgTjpKeDclk/Qk6W/A==} @@ -4376,11 +4383,11 @@ packages: /chownr/1.1.4: resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==} + dev: false /chownr/2.0.0: resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==} engines: {node: '>=10'} - dev: true /ci-info/3.7.0: resolution: {integrity: sha512-2CpRNYmImPx+RXKLq6jko/L07phmS9I02TyqkcNU20GCF/GgaWvc58hPtjxDX8lPpkdwc9sNh72V9k00S7ezog==} @@ -4512,7 +4519,6 @@ packages: /colorette/2.0.19: resolution: {integrity: sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==} - dev: true /combined-stream/1.0.8: resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} @@ -4594,7 +4600,7 @@ packages: chalk: 4.1.2 date-fns: 2.29.3 lodash: 4.17.21 - rxjs: 7.5.7 + rxjs: 7.6.0 shell-quote: 1.7.4 spawn-command: 0.0.2-1 supports-color: 8.1.1 @@ -5071,7 +5077,7 @@ packages: cli-table3: 0.6.3 commander: 5.1.0 common-tags: 1.8.2 - dayjs: 1.11.6 + dayjs: 1.11.7 debug: 4.3.4_supports-color@8.1.1 enquirer: 2.3.6 eventemitter2: 6.4.7 @@ -5121,7 +5127,7 @@ packages: cli-table3: 0.6.3 commander: 5.1.0 common-tags: 1.8.2 - dayjs: 1.11.6 + dayjs: 1.11.7 debug: 4.3.4_supports-color@8.1.1 enquirer: 2.3.6 eventemitter2: 6.4.9 @@ -5183,8 +5189,8 @@ packages: resolution: {integrity: sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==} dev: true - /dayjs/1.11.6: - resolution: {integrity: sha512-zZbY5giJAinCG+7AGaw0wIhNZ6J8AhWuSXKvuc1KAyMiRsvGQWqh4L+MomvhdAYjN+lqvVCMq1I41e3YHvXkyQ==} + /dayjs/1.11.7: + resolution: {integrity: sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ==} dev: true /de-indent/1.0.2: @@ -5224,18 +5230,6 @@ packages: supports-color: 8.1.1 dev: true - /debug/4.3.2: - resolution: {integrity: sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==} - engines: {node: '>=6.0'} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - dependencies: - ms: 2.1.2 - dev: true - /debug/4.3.4: resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} engines: {node: '>=6.0'} @@ -5273,8 +5267,8 @@ packages: engines: {node: '>=0.10.0'} dev: true - /decimal.js/10.4.2: - resolution: {integrity: sha512-ic1yEvwT6GuvaYwBLLY6/aFFgjZdySKTE8en/fkU3QICTmRtgtSlFn0u0BXN06InZwtfCelR7j8LRiDI/02iGA==} + /decimal.js/10.4.3: + resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==} dev: false /deep-equal/1.0.1: @@ -5342,8 +5336,8 @@ packages: engines: {node: '>= 0.8'} dev: true - /destr/1.2.1: - resolution: {integrity: sha512-ud8w0qMLlci6iFG7CNgeRr8OcbUWMsbfjtWft1eJ5Luqrz/M8Ebqk/KCzne8rKUlIQWWfLv0wD6QHrqOf4GshA==} + /destr/1.2.2: + resolution: {integrity: sha512-lrbCJwD9saUQrqUfXvl6qoM+QN3W7tLV5pAOs+OqOmopCCz/JkE05MHedJR1xfk4IAnZuJXPVuN5+7jNA2ZCiA==} /destroy/1.2.0: resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==} @@ -5612,8 +5606,8 @@ packages: is-arrayish: 0.2.1 dev: true - /es-abstract/1.20.4: - resolution: {integrity: sha512-0UtvRN79eMe2L+UNEF1BwRe364sj/DXhQ/k5FmivgoSdpM90b8Jc0mDzKMGo7QS0BVbOP/bTwBKNnDc9rNzaPA==} + /es-abstract/1.20.5: + resolution: {integrity: sha512-7h8MM2EQhsCA7pU/Nv78qOXFpD8Rhqd12gYiSJVkrH9+e8VuA8JlPJK/hQjjlLv6pJvx/z1iRFKzYb0XT/RuAQ==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 @@ -5622,6 +5616,7 @@ packages: function.prototype.name: 1.1.5 get-intrinsic: 1.1.3 get-symbol-description: 1.0.0 + gopd: 1.0.1 has: 1.0.3 has-property-descriptors: 1.0.0 has-symbols: 1.0.3 @@ -5661,8 +5656,8 @@ packages: resolution: {integrity: sha512-SOp9Phqvqn7jtEUxPWdWfWoLmyt2VaJ6MpvP9Comy1MceMXqE6bxvaTu4iaxpYYPzhny28Lc+M87/c2cPK6lDg==} dev: true - /esbuild-android-64/0.15.16: - resolution: {integrity: sha512-Vwkv/sT0zMSgPSVO3Jlt1pUbnZuOgtOQJkJkyyJFAlLe7BiT8e9ESzo0zQSx4c3wW4T6kGChmKDPMbWTgtliQA==} + /esbuild-android-64/0.15.18: + resolution: {integrity: sha512-wnpt3OXRhcjfIDSZu9bnzT4/TNTDsOUvip0foZOUBG7QbSt//w3QV4FInVJxNhKc/ErhUxc5z4QjHtMi7/TbgA==} engines: {node: '>=12'} cpu: [x64] os: [android] @@ -5670,8 +5665,8 @@ packages: dev: true optional: true - /esbuild-android-arm64/0.15.16: - resolution: {integrity: sha512-lqfKuofMExL5niNV3gnhMUYacSXfsvzTa/58sDlBET/hCOG99Zmeh+lz6kvdgvGOsImeo6J9SW21rFCogNPLxg==} + /esbuild-android-arm64/0.15.18: + resolution: {integrity: sha512-G4xu89B8FCzav9XU8EjsXacCKSG2FT7wW9J6hOc18soEHJdtWu03L3TQDGf0geNxfLTtxENKBzMSq9LlbjS8OQ==} engines: {node: '>=12'} cpu: [arm64] os: [android] @@ -5679,8 +5674,8 @@ packages: dev: true optional: true - /esbuild-darwin-64/0.15.16: - resolution: {integrity: sha512-wo2VWk/n/9V2TmqUZ/KpzRjCEcr00n7yahEdmtzlrfQ3lfMCf3Wa+0sqHAbjk3C6CKkR3WKK/whkMq5Gj4Da9g==} + /esbuild-darwin-64/0.15.18: + resolution: {integrity: sha512-2WAvs95uPnVJPuYKP0Eqx+Dl/jaYseZEUUT1sjg97TJa4oBtbAKnPnl3b5M9l51/nbx7+QAEtuummJZW0sBEmg==} engines: {node: '>=12'} cpu: [x64] os: [darwin] @@ -5688,8 +5683,8 @@ packages: dev: true optional: true - /esbuild-darwin-arm64/0.15.16: - resolution: {integrity: sha512-fMXaUr5ou0M4WnewBKsspMtX++C1yIa3nJ5R2LSbLCfJT3uFdcRoU/NZjoM4kOMKyOD9Sa/2vlgN8G07K3SJnw==} + /esbuild-darwin-arm64/0.15.18: + resolution: {integrity: sha512-tKPSxcTJ5OmNb1btVikATJ8NftlyNlc8BVNtyT/UAr62JFOhwHlnoPrhYWz09akBLHI9nElFVfWSTSRsrZiDUA==} engines: {node: '>=12'} cpu: [arm64] os: [darwin] @@ -5697,8 +5692,8 @@ packages: dev: true optional: true - /esbuild-freebsd-64/0.15.16: - resolution: {integrity: sha512-UzIc0xlRx5x9kRuMr+E3+hlSOxa/aRqfuMfiYBXu2jJ8Mzej4lGL7+o6F5hzhLqWfWm1GWHNakIdlqg1ayaTNQ==} + /esbuild-freebsd-64/0.15.18: + resolution: {integrity: sha512-TT3uBUxkteAjR1QbsmvSsjpKjOX6UkCstr8nMr+q7zi3NuZ1oIpa8U41Y8I8dJH2fJgdC3Dj3CXO5biLQpfdZA==} engines: {node: '>=12'} cpu: [x64] os: [freebsd] @@ -5706,8 +5701,8 @@ packages: dev: true optional: true - /esbuild-freebsd-arm64/0.15.16: - resolution: {integrity: sha512-8xyiYuGc0DLZphFQIiYaLHlfoP+hAN9RHbE+Ibh8EUcDNHAqbQgUrQg7pE7Bo00rXmQ5Ap6KFgcR0b4ALZls1g==} + /esbuild-freebsd-arm64/0.15.18: + resolution: {integrity: sha512-R/oVr+X3Tkh+S0+tL41wRMbdWtpWB8hEAMsOXDumSSa6qJR89U0S/PpLXrGF7Wk/JykfpWNokERUpCeHDl47wA==} engines: {node: '>=12'} cpu: [arm64] os: [freebsd] @@ -5715,8 +5710,8 @@ packages: dev: true optional: true - /esbuild-linux-32/0.15.16: - resolution: {integrity: sha512-iGijUTV+0kIMyUVoynK0v+32Oi8yyp0xwMzX69GX+5+AniNy/C/AL1MjFTsozRp/3xQPl7jVux/PLe2ds10/2w==} + /esbuild-linux-32/0.15.18: + resolution: {integrity: sha512-lphF3HiCSYtaa9p1DtXndiQEeQDKPl9eN/XNoBf2amEghugNuqXNZA/ZovthNE2aa4EN43WroO0B85xVSjYkbg==} engines: {node: '>=12'} cpu: [ia32] os: [linux] @@ -5724,8 +5719,8 @@ packages: dev: true optional: true - /esbuild-linux-64/0.15.16: - resolution: {integrity: sha512-tuSOjXdLw7VzaUj89fIdAaQT7zFGbKBcz4YxbWrOiXkwscYgE7HtTxUavreBbnRkGxKwr9iT/gmeJWNm4djy/g==} + /esbuild-linux-64/0.15.18: + resolution: {integrity: sha512-hNSeP97IviD7oxLKFuii5sDPJ+QHeiFTFLoLm7NZQligur8poNOWGIgpQ7Qf8Balb69hptMZzyOBIPtY09GZYw==} engines: {node: '>=12'} cpu: [x64] os: [linux] @@ -5733,8 +5728,8 @@ packages: dev: true optional: true - /esbuild-linux-arm/0.15.16: - resolution: {integrity: sha512-XKcrxCEXDTOuoRj5l12tJnkvuxXBMKwEC5j0JISw3ziLf0j4zIwXbKbTmUrKFWbo6ZgvNpa7Y5dnbsjVvH39bQ==} + /esbuild-linux-arm/0.15.18: + resolution: {integrity: sha512-UH779gstRblS4aoS2qpMl3wjg7U0j+ygu3GjIeTonCcN79ZvpPee12Qun3vcdxX+37O5LFxz39XeW2I9bybMVA==} engines: {node: '>=12'} cpu: [arm] os: [linux] @@ -5742,8 +5737,8 @@ packages: dev: true optional: true - /esbuild-linux-arm64/0.15.16: - resolution: {integrity: sha512-mPYksnfHnemNrvjrDhZyixL/AfbJN0Xn9S34ZOHYdh6/jJcNd8iTsv3JwJoEvTJqjMggjMhGUPJAdjnFBHoH8A==} + /esbuild-linux-arm64/0.15.18: + resolution: {integrity: sha512-54qr8kg/6ilcxd+0V3h9rjT4qmjc0CccMVWrjOEM/pEcUzt8X62HfBSeZfT2ECpM7104mk4yfQXkosY8Quptug==} engines: {node: '>=12'} cpu: [arm64] os: [linux] @@ -5751,8 +5746,8 @@ packages: dev: true optional: true - /esbuild-linux-mips64le/0.15.16: - resolution: {integrity: sha512-kSJO2PXaxfm0pWY39+YX+QtpFqyyrcp0ZeI8QPTrcFVQoWEPiPVtOfTZeS3ZKedfH+Ga38c4DSzmKMQJocQv6A==} + /esbuild-linux-mips64le/0.15.18: + resolution: {integrity: sha512-Mk6Ppwzzz3YbMl/ZZL2P0q1tnYqh/trYZ1VfNP47C31yT0K8t9s7Z077QrDA/guU60tGNp2GOwCQnp+DYv7bxQ==} engines: {node: '>=12'} cpu: [mips64el] os: [linux] @@ -5760,8 +5755,8 @@ packages: dev: true optional: true - /esbuild-linux-ppc64le/0.15.16: - resolution: {integrity: sha512-NimPikwkBY0yGABw6SlhKrtT35sU4O23xkhlrTT/O6lSxv3Pm5iSc6OYaqVAHWkLdVf31bF4UDVFO+D990WpAA==} + /esbuild-linux-ppc64le/0.15.18: + resolution: {integrity: sha512-b0XkN4pL9WUulPTa/VKHx2wLCgvIAbgwABGnKMY19WhKZPT+8BxhZdqz6EgkqCLld7X5qiCY2F/bfpUUlnFZ9w==} engines: {node: '>=12'} cpu: [ppc64] os: [linux] @@ -5769,8 +5764,8 @@ packages: dev: true optional: true - /esbuild-linux-riscv64/0.15.16: - resolution: {integrity: sha512-ty2YUHZlwFOwp7pR+J87M4CVrXJIf5ZZtU/umpxgVJBXvWjhziSLEQxvl30SYfUPq0nzeWKBGw5i/DieiHeKfw==} + /esbuild-linux-riscv64/0.15.18: + resolution: {integrity: sha512-ba2COaoF5wL6VLZWn04k+ACZjZ6NYniMSQStodFKH/Pu6RxzQqzsmjR1t9QC89VYJxBeyVPTaHuBMCejl3O/xg==} engines: {node: '>=12'} cpu: [riscv64] os: [linux] @@ -5778,8 +5773,8 @@ packages: dev: true optional: true - /esbuild-linux-s390x/0.15.16: - resolution: {integrity: sha512-VkZaGssvPDQtx4fvVdZ9czezmyWyzpQhEbSNsHZZN0BHvxRLOYAQ7sjay8nMQwYswP6O2KlZluRMNPYefFRs+w==} + /esbuild-linux-s390x/0.15.18: + resolution: {integrity: sha512-VbpGuXEl5FCs1wDVp93O8UIzl3ZrglgnSQ+Hu79g7hZu6te6/YHgVJxCM2SqfIila0J3k0csfnf8VD2W7u2kzQ==} engines: {node: '>=12'} cpu: [s390x] os: [linux] @@ -5787,8 +5782,8 @@ packages: dev: true optional: true - /esbuild-netbsd-64/0.15.16: - resolution: {integrity: sha512-ElQ9rhdY51et6MJTWrCPbqOd/YuPowD7Cxx3ee8wlmXQQVW7UvQI6nSprJ9uVFQISqSF5e5EWpwWqXZsECLvXg==} + /esbuild-netbsd-64/0.15.18: + resolution: {integrity: sha512-98ukeCdvdX7wr1vUYQzKo4kQ0N2p27H7I11maINv73fVEXt2kyh4K4m9f35U1K43Xc2QGXlzAw0K9yoU7JUjOg==} engines: {node: '>=12'} cpu: [x64] os: [netbsd] @@ -5796,8 +5791,8 @@ packages: dev: true optional: true - /esbuild-openbsd-64/0.15.16: - resolution: {integrity: sha512-KgxMHyxMCT+NdLQE1zVJEsLSt2QQBAvJfmUGDmgEq8Fvjrf6vSKB00dVHUEDKcJwMID6CdgCpvYNt999tIYhqA==} + /esbuild-openbsd-64/0.15.18: + resolution: {integrity: sha512-yK5NCcH31Uae076AyQAXeJzt/vxIo9+omZRKj1pauhk3ITuADzuOx5N2fdHrAKPxN+zH3w96uFKlY7yIn490xQ==} engines: {node: '>=12'} cpu: [x64] os: [openbsd] @@ -5805,8 +5800,8 @@ packages: dev: true optional: true - /esbuild-sunos-64/0.15.16: - resolution: {integrity: sha512-exSAx8Phj7QylXHlMfIyEfNrmqnLxFqLxdQF6MBHPdHAjT7fsKaX6XIJn+aQEFiOcE4X8e7VvdMCJ+WDZxjSRQ==} + /esbuild-sunos-64/0.15.18: + resolution: {integrity: sha512-On22LLFlBeLNj/YF3FT+cXcyKPEI263nflYlAhz5crxtp3yRG1Ugfr7ITyxmCmjm4vbN/dGrb/B7w7U8yJR9yw==} engines: {node: '>=12'} cpu: [x64] os: [sunos] @@ -5814,8 +5809,8 @@ packages: dev: true optional: true - /esbuild-windows-32/0.15.16: - resolution: {integrity: sha512-zQgWpY5pUCSTOwqKQ6/vOCJfRssTvxFuEkpB4f2VUGPBpdddZfdj8hbZuFRdZRPIVHvN7juGcpgCA/XCF37mAQ==} + /esbuild-windows-32/0.15.18: + resolution: {integrity: sha512-o+eyLu2MjVny/nt+E0uPnBxYuJHBvho8vWsC2lV61A7wwTWC3jkN2w36jtA+yv1UgYkHRihPuQsL23hsCYGcOQ==} engines: {node: '>=12'} cpu: [ia32] os: [win32] @@ -5823,8 +5818,8 @@ packages: dev: true optional: true - /esbuild-windows-64/0.15.16: - resolution: {integrity: sha512-HjW1hHRLSncnM3MBCP7iquatHVJq9l0S2xxsHHj4yzf4nm9TU4Z7k4NkeMlD/dHQ4jPlQQhwcMvwbJiOefSuZw==} + /esbuild-windows-64/0.15.18: + resolution: {integrity: sha512-qinug1iTTaIIrCorAUjR0fcBk24fjzEedFYhhispP8Oc7SFvs+XeW3YpAKiKp8dRpizl4YYAhxMjlftAMJiaUw==} engines: {node: '>=12'} cpu: [x64] os: [win32] @@ -5832,8 +5827,8 @@ packages: dev: true optional: true - /esbuild-windows-arm64/0.15.16: - resolution: {integrity: sha512-oCcUKrJaMn04Vxy9Ekd8x23O8LoU01+4NOkQ2iBToKgnGj5eo1vU9i27NQZ9qC8NFZgnQQZg5oZWAejmbsppNA==} + /esbuild-windows-arm64/0.15.18: + resolution: {integrity: sha512-q9bsYzegpZcLziq0zgUi5KqGVtfhjxGbnksaBFYmWLxeV/S1fK4OLdq2DFYnXcLMjlZw2L0jLsk1eGoB522WXQ==} engines: {node: '>=12'} cpu: [arm64] os: [win32] @@ -5841,64 +5836,64 @@ packages: dev: true optional: true - /esbuild/0.15.16: - resolution: {integrity: sha512-o6iS9zxdHrrojjlj6pNGC2NAg86ECZqIETswTM5KmJitq+R1YmahhWtMumeQp9lHqJaROGnsBi2RLawGnfo5ZQ==} + /esbuild/0.15.18: + resolution: {integrity: sha512-x/R72SmW3sSFRm5zrrIjAhCeQSAWoni3CmHEqfQrZIQTM3lVCdehdwuIqaOtfC2slvpdlLa62GYoN8SxT23m6Q==} engines: {node: '>=12'} hasBin: true requiresBuild: true optionalDependencies: - '@esbuild/android-arm': 0.15.16 - '@esbuild/linux-loong64': 0.15.16 - esbuild-android-64: 0.15.16 - esbuild-android-arm64: 0.15.16 - esbuild-darwin-64: 0.15.16 - esbuild-darwin-arm64: 0.15.16 - esbuild-freebsd-64: 0.15.16 - esbuild-freebsd-arm64: 0.15.16 - esbuild-linux-32: 0.15.16 - esbuild-linux-64: 0.15.16 - esbuild-linux-arm: 0.15.16 - esbuild-linux-arm64: 0.15.16 - esbuild-linux-mips64le: 0.15.16 - esbuild-linux-ppc64le: 0.15.16 - esbuild-linux-riscv64: 0.15.16 - esbuild-linux-s390x: 0.15.16 - esbuild-netbsd-64: 0.15.16 - esbuild-openbsd-64: 0.15.16 - esbuild-sunos-64: 0.15.16 - esbuild-windows-32: 0.15.16 - esbuild-windows-64: 0.15.16 - esbuild-windows-arm64: 0.15.16 - dev: true - - /esbuild/0.16.2: - resolution: {integrity: sha512-Rv/CJquZKE00irDLDpk9jmWmtxx1NW+MGpBbNNouaDY0oBwk806uJ51WpLaJBQUxhZqLauX2rrNol5lVQceHJw==} + '@esbuild/android-arm': 0.15.18 + '@esbuild/linux-loong64': 0.15.18 + esbuild-android-64: 0.15.18 + esbuild-android-arm64: 0.15.18 + esbuild-darwin-64: 0.15.18 + esbuild-darwin-arm64: 0.15.18 + esbuild-freebsd-64: 0.15.18 + esbuild-freebsd-arm64: 0.15.18 + esbuild-linux-32: 0.15.18 + esbuild-linux-64: 0.15.18 + esbuild-linux-arm: 0.15.18 + esbuild-linux-arm64: 0.15.18 + esbuild-linux-mips64le: 0.15.18 + esbuild-linux-ppc64le: 0.15.18 + esbuild-linux-riscv64: 0.15.18 + esbuild-linux-s390x: 0.15.18 + esbuild-netbsd-64: 0.15.18 + esbuild-openbsd-64: 0.15.18 + esbuild-sunos-64: 0.15.18 + esbuild-windows-32: 0.15.18 + esbuild-windows-64: 0.15.18 + esbuild-windows-arm64: 0.15.18 + dev: true + + /esbuild/0.16.3: + resolution: {integrity: sha512-71f7EjPWTiSguen8X/kxEpkAS7BFHwtQKisCDDV3Y4GLGWBaoSCyD5uXkaUew6JDzA9FEN1W23mdnSwW9kqCeg==} engines: {node: '>=12'} hasBin: true requiresBuild: true optionalDependencies: - '@esbuild/android-arm': 0.16.2 - '@esbuild/android-arm64': 0.16.2 - '@esbuild/android-x64': 0.16.2 - '@esbuild/darwin-arm64': 0.16.2 - '@esbuild/darwin-x64': 0.16.2 - '@esbuild/freebsd-arm64': 0.16.2 - '@esbuild/freebsd-x64': 0.16.2 - '@esbuild/linux-arm': 0.16.2 - '@esbuild/linux-arm64': 0.16.2 - '@esbuild/linux-ia32': 0.16.2 - '@esbuild/linux-loong64': 0.16.2 - '@esbuild/linux-mips64el': 0.16.2 - '@esbuild/linux-ppc64': 0.16.2 - '@esbuild/linux-riscv64': 0.16.2 - '@esbuild/linux-s390x': 0.16.2 - '@esbuild/linux-x64': 0.16.2 - '@esbuild/netbsd-x64': 0.16.2 - '@esbuild/openbsd-x64': 0.16.2 - '@esbuild/sunos-x64': 0.16.2 - '@esbuild/win32-arm64': 0.16.2 - '@esbuild/win32-ia32': 0.16.2 - '@esbuild/win32-x64': 0.16.2 + '@esbuild/android-arm': 0.16.3 + '@esbuild/android-arm64': 0.16.3 + '@esbuild/android-x64': 0.16.3 + '@esbuild/darwin-arm64': 0.16.3 + '@esbuild/darwin-x64': 0.16.3 + '@esbuild/freebsd-arm64': 0.16.3 + '@esbuild/freebsd-x64': 0.16.3 + '@esbuild/linux-arm': 0.16.3 + '@esbuild/linux-arm64': 0.16.3 + '@esbuild/linux-ia32': 0.16.3 + '@esbuild/linux-loong64': 0.16.3 + '@esbuild/linux-mips64el': 0.16.3 + '@esbuild/linux-ppc64': 0.16.3 + '@esbuild/linux-riscv64': 0.16.3 + '@esbuild/linux-s390x': 0.16.3 + '@esbuild/linux-x64': 0.16.3 + '@esbuild/netbsd-x64': 0.16.3 + '@esbuild/openbsd-x64': 0.16.3 + '@esbuild/sunos-x64': 0.16.3 + '@esbuild/win32-arm64': 0.16.3 + '@esbuild/win32-ia32': 0.16.3 + '@esbuild/win32-x64': 0.16.3 /escalade/3.1.1: resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} @@ -5950,7 +5945,7 @@ packages: optional: true dependencies: eslint: 8.29.0 - eslint-plugin-import: 2.26.0_ub3senzxbs32f65wl7xoyha6lu + eslint-plugin-import: 2.26.0_jx43xxcguvnqqmtmaaygwl7cmu eslint-plugin-node: 11.1.0_eslint@8.29.0 eslint-plugin-promise: 6.1.1_eslint@8.29.0 dev: true @@ -5977,7 +5972,7 @@ packages: array-find: 1.0.0 debug: 3.2.7 enhanced-resolve: 0.9.1 - eslint-plugin-import: 2.26.0_ub3senzxbs32f65wl7xoyha6lu + eslint-plugin-import: 2.26.0_jx43xxcguvnqqmtmaaygwl7cmu find-root: 1.1.0 has: 1.0.3 interpret: 1.4.0 @@ -5990,7 +5985,7 @@ packages: - supports-color dev: true - /eslint-module-utils/2.7.4_ka2zl4kbfnnb6pzn3mgzpmhlt4: + /eslint-module-utils/2.7.4_gt5xgaqja2wfyrirr5sgi3l66m: resolution: {integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==} engines: {node: '>=4'} peerDependencies: @@ -6011,7 +6006,7 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - '@typescript-eslint/parser': 5.45.0_s5ps7njkmjlaqajutnox5ntcla + '@typescript-eslint/parser': 5.46.0_ha6vam6werchizxrnqvarmz2zu debug: 3.2.7 eslint: 8.29.0 eslint-import-resolver-node: 0.3.6 @@ -6045,7 +6040,7 @@ packages: regexpp: 3.2.0 dev: true - /eslint-plugin-import/2.26.0_ub3senzxbs32f65wl7xoyha6lu: + /eslint-plugin-import/2.26.0_jx43xxcguvnqqmtmaaygwl7cmu: resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==} engines: {node: '>=4'} peerDependencies: @@ -6057,14 +6052,14 @@ packages: eslint: optional: true dependencies: - '@typescript-eslint/parser': 5.45.0_s5ps7njkmjlaqajutnox5ntcla + '@typescript-eslint/parser': 5.46.0_ha6vam6werchizxrnqvarmz2zu array-includes: 3.1.6 array.prototype.flat: 1.3.1 debug: 2.6.9 doctrine: 2.1.0 eslint: 8.29.0 eslint-import-resolver-node: 0.3.6 - eslint-module-utils: 2.7.4_ka2zl4kbfnnb6pzn3mgzpmhlt4 + eslint-module-utils: 2.7.4_gt5xgaqja2wfyrirr5sgi3l66m has: 1.0.3 is-core-module: 2.11.0 is-glob: 4.0.3 @@ -6266,10 +6261,6 @@ packages: resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} engines: {node: '>=4.0'} - /estree-walker/0.6.1: - resolution: {integrity: sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==} - dev: true - /estree-walker/2.0.2: resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} @@ -6661,7 +6652,7 @@ packages: vue-resize: 2.0.0-alpha.1_vue@3.2.45 dev: true - /follow-redirects/1.15.2_debug@4.3.2: + /follow-redirects/1.15.2_debug@4.3.4: resolution: {integrity: sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==} engines: {node: '>=4.0'} peerDependencies: @@ -6670,7 +6661,7 @@ packages: debug: optional: true dependencies: - debug: 4.3.2 + debug: 4.3.4 dev: true /foreground-child/2.0.0: @@ -6761,17 +6752,11 @@ packages: resolution: {integrity: sha512-YEexkCpL4j03jn5SxaMHqcO6IuWuqm8JFUYhyCep7Ao89JIYmB8xoKhK7zXXJ9cCaNXpyNH5L3QtAmoxjoHW2w==} dev: true - /fs-minipass/1.2.7: - resolution: {integrity: sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA==} - dependencies: - minipass: 2.9.0 - /fs-minipass/2.1.0: resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==} engines: {node: '>= 8'} dependencies: minipass: 3.3.6 - dev: true /fs-monkey/1.0.3: resolution: {integrity: sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==} @@ -6796,7 +6781,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.4 + es-abstract: 1.20.5 functions-have-names: 1.2.3 dev: true @@ -6889,6 +6874,20 @@ packages: assert-plus: 1.0.0 dev: true + /giget/1.0.0: + resolution: {integrity: sha512-KWELZn3Nxq5+0So485poHrFriK9Bn3V/x9y+wgqrHkbmnGbjfLmZ685/SVA/ovW+ewoqW0gVI47pI4yW/VNobQ==} + hasBin: true + dependencies: + colorette: 2.0.19 + defu: 6.1.1 + https-proxy-agent: 5.0.1 + mri: 1.2.0 + node-fetch-native: 1.0.1 + pathe: 1.0.0 + tar: 6.1.13 + transitivePeerDependencies: + - supports-color + /git-config-path/2.0.0: resolution: {integrity: sha512-qc8h1KIQbJpp+241id3GuAtkdyJ+IK+LIVtkiFTRKRrmddDzs3SI9CvP1QYmWBFvm1I/PWRwj//of8bgAc0ltA==} engines: {node: '>=4'} @@ -6942,13 +6941,6 @@ packages: ini: 1.3.8 dev: true - /gittar/0.1.1: - resolution: {integrity: sha512-p+XuqWJpW9ahUuNTptqeFjudFq31o6Jd+maMBarkMAR5U3K9c7zJB4sQ4BV8mIqrTOV29TtqikDhnZfCD4XNfQ==} - engines: {node: '>=4'} - dependencies: - mkdirp: 0.5.6 - tar: 4.4.19 - /glob-parent/5.1.2: resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} engines: {node: '>= 6'} @@ -7031,6 +7023,12 @@ packages: resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==} dev: true + /gopd/1.0.1: + resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} + dependencies: + get-intrinsic: 1.1.3 + dev: true + /graceful-fs/4.2.10: resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==} @@ -7092,7 +7090,7 @@ packages: resolution: {integrity: sha512-gDCGpRvjchZW2JBlTqbJ9IOs+mdkXXuwSQkSye+jubHAv/UhdamKqoQvd4RFgyBNjHSId8Y+b10UdTcPlP/V+w==} dependencies: cookie-es: 0.5.0 - destr: 1.2.1 + destr: 1.2.2 radix3: 1.0.0 ufo: 1.0.1 dev: true @@ -7292,7 +7290,7 @@ packages: engines: {node: '>=8.0.0'} dependencies: eventemitter3: 4.0.7 - follow-redirects: 1.15.2_debug@4.3.2 + follow-redirects: 1.15.2_debug@4.3.4 requires-port: 1.0.0 transitivePeerDependencies: - debug @@ -7433,7 +7431,7 @@ packages: mute-stream: 0.0.8 ora: 6.1.2 run-async: 2.4.1 - rxjs: 7.5.7 + rxjs: 7.6.0 string-width: 5.1.2 strip-ansi: 7.0.1 through: 2.3.8 @@ -7817,7 +7815,7 @@ packages: resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==} engines: {node: '>= 10.13.0'} dependencies: - '@types/node': 18.11.10 + '@types/node': 18.11.11 merge-stream: 2.0.0 supports-color: 7.2.0 dev: true @@ -7877,7 +7875,7 @@ packages: cssom: 0.5.0 cssstyle: 2.3.0 data-urls: 3.0.2 - decimal.js: 10.4.2 + decimal.js: 10.4.3 domexception: 4.0.0 escodegen: 2.0.0 form-data: 4.0.0 @@ -8030,8 +8028,8 @@ packages: - supports-color dev: true - /koa/2.13.4: - resolution: {integrity: sha512-43zkIKubNbnrULWlHdN5h1g3SEKXOEzoAlRsHOTFpnlDu8JlAOZSMJBLULusuXRequboiwJcj5vtYXKB3k7+2g==} + /koa/2.14.1: + resolution: {integrity: sha512-USJFyZgi2l0wDgqkfD27gL4YGno7TfUkcmOe6UOLFOVuN+J7FwnNu4Dydl4CUQzraM1lBAiGed0M9OVJoT0Kqw==} engines: {node: ^4.8.4 || ^6.10.1 || ^7.10.1 || >= 8.1.4} dependencies: accepts: 1.3.8 @@ -8143,7 +8141,7 @@ packages: log-update: 4.0.0 p-map: 4.0.0 rfdc: 1.3.0 - rxjs: 7.5.7 + rxjs: 7.6.0 through: 2.3.8 wrap-ansi: 7.0.0 dev: true @@ -8551,24 +8549,19 @@ packages: /minimist/1.2.7: resolution: {integrity: sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==} - - /minipass/2.9.0: - resolution: {integrity: sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==} - dependencies: - safe-buffer: 5.2.1 - yallist: 3.1.1 + dev: true /minipass/3.3.6: resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==} engines: {node: '>=8'} dependencies: yallist: 4.0.0 - dev: true - /minizlib/1.3.3: - resolution: {integrity: sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q==} + /minipass/4.0.0: + resolution: {integrity: sha512-g2Uuh2jEKoht+zvO6vJqXmYpflPqzRBT+Th2h01DKh5z7wbY/AZ2gCQ78cP70YoHPyFdY30YBV5WxgLOEwOykw==} + engines: {node: '>=8'} dependencies: - minipass: 2.9.0 + yallist: 4.0.0 /minizlib/2.1.2: resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} @@ -8576,7 +8569,6 @@ packages: dependencies: minipass: 3.3.6 yallist: 4.0.0 - dev: true /mkdir/0.0.2: resolution: {integrity: sha512-98OnjcWaNEIRUJJe9rFoWlbkQ5n9z8F86wIPCrI961YEViiVybTuJln919WuuSHSnlrqXy0ELKCntoPy8C7lqg==} @@ -8592,12 +8584,12 @@ packages: hasBin: true dependencies: minimist: 1.2.7 + dev: true /mkdirp/1.0.4: resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} engines: {node: '>=10'} hasBin: true - dev: true /mlly/0.4.3: resolution: {integrity: sha512-xezyv7hnfFPuiDS3AiJuWs0OxlvooS++3L2lURvmh/1n7UG4O2Ehz9UkwWgg3wyLEPKGVfJLlr2DjjTCl9UJTg==} @@ -8684,8 +8676,8 @@ packages: tslib: 2.4.1 dev: true - /nise/5.1.2: - resolution: {integrity: sha512-+gQjFi8v+tkfCuSCxfURHLhRhniE/+IaYbIphxAN2JRR9SHKhY8hgXpaXiYfHdw+gcGe4buxgbprBQFab9FkhA==} + /nise/5.1.3: + resolution: {integrity: sha512-U597iWTTBBYIV72986jyU382/MMZ70ApWcRmkoF1AZ75bpqOtI3Gugv/6+0jLgoDOabmcSwYBkSSAWIp1eA5cg==} dependencies: '@sinonjs/commons': 2.0.0 '@sinonjs/fake-timers': 7.1.2 @@ -8702,24 +8694,24 @@ packages: '@cloudflare/kv-asset-handler': 0.2.0 '@netlify/functions': 1.3.0 '@rollup/plugin-alias': 4.0.2_rollup@2.79.1 - '@rollup/plugin-commonjs': 23.0.3_rollup@2.79.1 + '@rollup/plugin-commonjs': 23.0.4_rollup@2.79.1 '@rollup/plugin-inject': 5.0.2_rollup@2.79.1 '@rollup/plugin-json': 5.0.2_rollup@2.79.1 '@rollup/plugin-node-resolve': 15.0.1_rollup@2.79.1 '@rollup/plugin-replace': 5.0.1_rollup@2.79.1 '@rollup/plugin-wasm': 6.0.1_rollup@2.79.1 '@rollup/pluginutils': 5.0.2_rollup@2.79.1 - '@vercel/nft': 0.22.1 + '@vercel/nft': 0.22.5 archiver: 5.3.1 - c12: 1.0.1 + c12: 1.1.0 chalk: 5.1.2 chokidar: 3.5.3 consola: 2.15.3 cookie-es: 0.5.0 defu: 6.1.1 - destr: 1.2.1 + destr: 1.2.2 dot-prop: 7.2.0 - esbuild: 0.15.16 + esbuild: 0.15.18 escape-string-regexp: 5.0.0 etag: 1.8.1 fs-extra: 10.1.0 @@ -8785,7 +8777,6 @@ packages: /node-fetch-native/1.0.1: resolution: {integrity: sha512-VzW+TAk2wE4X9maiKMlT+GsPU4OMmR1U9CrHSmd3DFLn2IcZ9VJ6M6BBugGfYUnPCLSYxXdZy17M0BEJyhUTwg==} - dev: true /node-fetch/2.6.7: resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==} @@ -8908,14 +8899,14 @@ packages: '@nuxt/telemetry': 2.1.8 '@nuxt/ui-templates': 1.0.0 '@nuxt/vite-builder': 3.0.0_vue@3.2.45 - '@unhead/ssr': 1.0.6 + '@unhead/ssr': 1.0.13 '@vue/reactivity': 3.2.45 '@vue/shared': 3.2.45 - '@vueuse/head': 1.0.19_vue@3.2.45 + '@vueuse/head': 1.0.22_vue@3.2.45 chokidar: 3.5.3 cookie-es: 0.5.0 defu: 6.1.1 - destr: 1.2.1 + destr: 1.2.2 escape-string-regexp: 5.0.0 estree-walker: 3.0.1 fs-extra: 10.1.0 @@ -8938,7 +8929,7 @@ packages: ultrahtml: 1.0.4 unctx: 2.1.1 unenv: 1.0.0 - unhead: 1.0.6 + unhead: 1.0.13 unimport: 1.0.1 unplugin: 1.0.0 untyped: 1.0.0 @@ -9004,13 +8995,13 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.4 + es-abstract: 1.20.5 dev: true /ofetch/1.0.0: resolution: {integrity: sha512-d40aof8czZFSQKJa4+F7Ch3UC5D631cK1TTUoK+iNEut9NoiCL+u0vykl/puYVUS2df4tIQl5upQcolIcEzQjQ==} dependencies: - destr: 1.2.1 + destr: 1.2.2 node-fetch-native: 1.0.1 ufo: 1.0.1 dev: true @@ -9022,10 +9013,10 @@ packages: /ohmyfetch/0.4.21: resolution: {integrity: sha512-VG7f/JRvqvBOYvL0tHyEIEG7XHWm7OqIfAs6/HqwWwDfjiJ1g0huIpe5sFEmyb+7hpFa1EGNH2aERWR72tlClw==} dependencies: - destr: 1.2.1 + destr: 1.2.2 node-fetch-native: 0.1.8 ufo: 0.8.6 - undici: 5.13.0 + undici: 5.14.0 dev: true /on-finished/2.3.0: @@ -9365,7 +9356,7 @@ packages: engines: {node: '>=4'} dev: true - /pinia/2.0.27_mgnvym7yiazkylwwogi5r767ue: + /pinia/2.0.27_prq2uz4lho2pwp6irk4cfkrxwu: resolution: {integrity: sha512-nOnXP0OFeL8R4WjAHsterU+11vptda643gH02xKNtSCDPiRzVfRYodOLihLDoa0gL1KKuQKV+KOzEgdt3YvqEw==} peerDependencies: '@vue/composition-api': ^1.4.0 @@ -9380,7 +9371,7 @@ packages: optional: true dependencies: '@vue/devtools-api': 6.4.5 - typescript: 4.9.3 + typescript: 4.9.4 vue: 3.2.45 vue-demi: 0.13.11_vue@3.2.45 dev: true @@ -9537,8 +9528,8 @@ packages: resolve: 1.22.1 dev: true - /postcss-import/15.0.1_postcss@8.4.19: - resolution: {integrity: sha512-UGlvk8EgT7Gm/Ndf9xZHnzr8xm8P54N8CBWLtcY5alP+YxlEge/Rv78etQyevZs3qWTE9If13+Bo6zATBrPOpA==} + /postcss-import/15.1.0_postcss@8.4.19: + resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==} engines: {node: '>=14.0.0'} peerDependencies: postcss: ^8.0.0 @@ -10009,6 +10000,7 @@ packages: /puppeteer/13.7.0: resolution: {integrity: sha512-U1uufzBjz3+PkpCxFrWzh4OrMIdIb2ztzCu0YEPfRHjHswcSwHZswnK+WdsOQJsRV8WeTg3jLhJR4D867+fjsA==} engines: {node: '>=10.18.1'} + deprecated: < 18.1.0 is no longer supported requiresBuild: true dependencies: cross-fetch: 3.1.5 @@ -10093,7 +10085,7 @@ packages: resolution: {integrity: sha512-yVeYJHOpJLOhs3V6RKwz7RPPwPurrx3JjwK264sPgvo/lFdhuUrLien7iSvAO6STVkN0gSMk/MehQNHQhflqZw==} dependencies: defu: 6.1.1 - destr: 1.2.1 + destr: 1.2.2 flat: 5.0.2 /react-is/18.2.0: @@ -10312,7 +10304,7 @@ packages: terser: 5.16.1 dev: true - /rollup-plugin-typescript2/0.34.1_rt6svyh24sgpogwv5hms77uhpq: + /rollup-plugin-typescript2/0.34.1_nv3cvulfrssbbv5jon74ek7f7i: resolution: {integrity: sha512-P4cHLtGikESmqi1CA+tdMDUv8WbQV48mzPYt77TSTOPJpERyZ9TXdDgjSDix8Fkqce6soYz3+fa4lrC93IEkcw==} peerDependencies: rollup: '>=1.26.3' @@ -10321,10 +10313,10 @@ packages: '@rollup/pluginutils': 4.2.1 find-cache-dir: 3.3.2 fs-extra: 10.1.0 - rollup: 3.5.1 + rollup: 3.7.0 semver: 7.3.8 tslib: 2.4.1 - typescript: 4.9.3 + typescript: 4.9.4 dev: true /rollup-plugin-visualizer/5.8.3_rollup@2.79.1: @@ -10343,12 +10335,6 @@ packages: yargs: 17.6.2 dev: true - /rollup-pluginutils/2.8.2: - resolution: {integrity: sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==} - dependencies: - estree-walker: 0.6.1 - dev: true - /rollup/2.79.1: resolution: {integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==} engines: {node: '>=10.0.0'} @@ -10357,14 +10343,6 @@ packages: fsevents: 2.3.2 dev: true - /rollup/3.5.1: - resolution: {integrity: sha512-hdQWTvPeiAbM6SUkxV70HdGUVxsgsc+CLy5fuh4KdgUBJ0SowXiix8gANgXoG3wEuLwfoJhCT2V+WwxfWq9Ikw==} - engines: {node: '>=14.18.0', npm: '>=8.0.0'} - hasBin: true - optionalDependencies: - fsevents: 2.3.2 - dev: true - /rollup/3.7.0: resolution: {integrity: sha512-FIJe0msW9P7L9BTfvaJyvn1U1BVCNTL3w8O+PKIrCyiMLg+rIUGb4MbcgVZ10Lnm1uWXOTOWRNARjfXC1+M12Q==} engines: {node: '>=14.18.0', npm: '>=8.0.0'} @@ -10382,8 +10360,8 @@ packages: dependencies: queue-microtask: 1.2.3 - /rxjs/7.5.7: - resolution: {integrity: sha512-z9MzKh/UcOqB3i20H6rtrlaE/CgjLOvheWK/9ILrbhROGTweAi1BaFsTT9FbwZi5Trr1qNRs+MXkhmR06awzQA==} + /rxjs/7.6.0: + resolution: {integrity: sha512-DDa7d8TFNUalGC9VqXvQ1euWNN7sc63TrUCuM9J998+ViviahMIjKSOU7rfcgFOF+FCD71BhDRv4hrFz+ImDLQ==} dependencies: tslib: 2.4.1 dev: true @@ -10601,7 +10579,7 @@ packages: '@sinonjs/fake-timers': 9.1.2 '@sinonjs/samsam': 7.0.1 diff: 5.1.0 - nise: 5.1.2 + nise: 5.1.3 supports-color: 7.2.0 dev: true @@ -10765,18 +10743,19 @@ packages: resolution: {integrity: sha512-qoRRSyROncaz1z0mvYqIE4lCd9p2R90i6GxW3uZv5ucSu8tU7B5HXUP1gG8pVZsYNVaXjk8ClXHPttLyxAL48A==} dev: true - /start-server-and-test/1.14.0: - resolution: {integrity: sha512-on5ELuxO2K0t8EmNj9MtVlFqwBMxfWOhu4U7uZD1xccVpFlOQKR93CSe0u98iQzfNxRyaNTb/CdadbNllplTsw==} + /start-server-and-test/1.15.1: + resolution: {integrity: sha512-ixhMbUAmym+7k3kqhjhTt6/0eUwE3dbNZPWgcfEUJ5uStaHbT0m8VB+049V5V9X0ueEyxAkwnkkR2SEhCKst5g==} engines: {node: '>=6'} hasBin: true dependencies: + arg: 5.0.2 bluebird: 3.7.2 check-more-types: 2.24.0 - debug: 4.3.2 + debug: 4.3.4 execa: 5.1.1 lazy-ass: 1.6.0 ps-tree: 1.2.0 - wait-on: 6.0.0_debug@4.3.2 + wait-on: 6.0.0_debug@4.3.4 transitivePeerDependencies: - supports-color dev: true @@ -10827,7 +10806,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.4 + es-abstract: 1.20.5 dev: true /string.prototype.trimstart/1.0.6: @@ -10835,7 +10814,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.4 + es-abstract: 1.20.5 dev: true /string_decoder/1.1.1: @@ -10938,8 +10917,8 @@ packages: resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} engines: {node: '>= 0.4'} - /svelte-check/2.10.0_svelte@3.53.1: - resolution: {integrity: sha512-5iLCoja/WsithyRkNtIeDQ0euJlgWj3Zzo2IA6iuHMuuX9D9OrRYZj2WlA5ACnAFQnN5L9mxWcwUW9VxDNEoGg==} + /svelte-check/2.10.2_svelte@3.54.0: + resolution: {integrity: sha512-h1Tuiir0m8J5yqN+Vx6qgKKk1L871e6a9o7rMwVWfu8Qs6Wg7x2R+wcxS3SO3VpW5JCxCat90rxPsZMYgz+HaQ==} hasBin: true peerDependencies: svelte: ^3.24.0 @@ -10950,9 +10929,9 @@ packages: import-fresh: 3.3.0 picocolors: 1.0.0 sade: 1.8.1 - svelte: 3.53.1 - svelte-preprocess: 4.10.7_7dvewpees4iyn2tkw2qzal77a4 - typescript: 4.9.3 + svelte: 3.54.0 + svelte-preprocess: 4.10.7_vjccw6zkwqrmxudvmy4reaayx4 + typescript: 4.9.4 transitivePeerDependencies: - '@babel/core' - coffeescript @@ -10966,16 +10945,16 @@ packages: - sugarss dev: true - /svelte-hmr/0.15.1_svelte@3.53.1: + /svelte-hmr/0.15.1_svelte@3.54.0: resolution: {integrity: sha512-BiKB4RZ8YSwRKCNVdNxK/GfY+r4Kjgp9jCLEy0DuqAKfmQtpL38cQK3afdpjw4sqSs4PLi3jIPJIFp259NkZtA==} engines: {node: ^12.20 || ^14.13.1 || >= 16} peerDependencies: svelte: '>=3.19.0' dependencies: - svelte: 3.53.1 + svelte: 3.54.0 dev: true - /svelte-preprocess/4.10.7_7dvewpees4iyn2tkw2qzal77a4: + /svelte-preprocess/4.10.7_svelte@3.54.0: resolution: {integrity: sha512-sNPBnqYD6FnmdBrUmBCaqS00RyCsCpj2BG58A1JBswNF7b0OKviwxqVrOL/CKyJrLSClrSeqQv5BXNg2RUbPOw==} engines: {node: '>= 9.11.2'} requiresBuild: true @@ -11022,11 +11001,10 @@ packages: magic-string: 0.25.9 sorcery: 0.10.0 strip-indent: 3.0.0 - svelte: 3.53.1 - typescript: 4.9.3 + svelte: 3.54.0 dev: true - /svelte-preprocess/4.10.7_svelte@3.53.1: + /svelte-preprocess/4.10.7_vjccw6zkwqrmxudvmy4reaayx4: resolution: {integrity: sha512-sNPBnqYD6FnmdBrUmBCaqS00RyCsCpj2BG58A1JBswNF7b0OKviwxqVrOL/CKyJrLSClrSeqQv5BXNg2RUbPOw==} engines: {node: '>= 9.11.2'} requiresBuild: true @@ -11073,11 +11051,12 @@ packages: magic-string: 0.25.9 sorcery: 0.10.0 strip-indent: 3.0.0 - svelte: 3.53.1 + svelte: 3.54.0 + typescript: 4.9.4 dev: true - /svelte/3.53.1: - resolution: {integrity: sha512-Q4/hHkktZogGhN5iqxqSi9sjEVoe/NbIxX4hXEHoasTxj+TxEQVAq66LnDMdAZxjmsodkoI5F3slqsS68U7FNw==} + /svelte/3.54.0: + resolution: {integrity: sha512-tdrgeJU0hob0ZWAMoKXkhcxXA7dpTg6lZGxUeko5YqvPdJBiyRspGsCwV27kIrbrqPP2WUoSV9ca0gnLlw8YzQ==} engines: {node: '>= 8'} /svg-tags/1.0.0: @@ -11127,7 +11106,7 @@ packages: '@koa/router': 9.4.0 commander: 6.2.1 fs-extra: 9.1.0 - koa: 2.13.4 + koa: 2.14.1 koa-static: 5.0.0 open: 7.4.2 portfinder: 1.0.32 @@ -11204,29 +11183,16 @@ packages: inherits: 2.0.4 readable-stream: 3.6.0 - /tar/4.4.19: - resolution: {integrity: sha512-a20gEsvHnWe0ygBY8JbxoM4w3SJdhc7ZAuxkLqh+nvNQN2IOt0B5lLgM490X5Hl8FF0dl0tOf2ewFYAlIFgzVA==} - engines: {node: '>=4.5'} - dependencies: - chownr: 1.1.4 - fs-minipass: 1.2.7 - minipass: 2.9.0 - minizlib: 1.3.3 - mkdirp: 0.5.6 - safe-buffer: 5.2.1 - yallist: 3.1.1 - - /tar/6.1.12: - resolution: {integrity: sha512-jU4TdemS31uABHd+Lt5WEYJuzn+TJTCBLljvIAHZOz6M9Os5pJ4dD+vRFLxPa/n3T0iEFzpi+0x1UfuDZYbRMw==} + /tar/6.1.13: + resolution: {integrity: sha512-jdIBIN6LTIe2jqzay/2vtYLlBHa3JF42ot3h1dW8Q0PaAG4v8rm0cvpVePtau5C6OKXGGcgO9q2AMNSWxiLqKw==} engines: {node: '>=10'} dependencies: chownr: 2.0.0 fs-minipass: 2.1.0 - minipass: 3.3.6 + minipass: 4.0.0 minizlib: 2.1.2 mkdirp: 1.0.4 yallist: 4.0.0 - dev: true /temp-dir/2.0.0: resolution: {integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==} @@ -11430,14 +11396,14 @@ packages: engines: {node: '>=0.6.x'} dev: true - /tsutils/3.21.0_typescript@4.9.3: + /tsutils/3.21.0_typescript@4.9.4: resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} engines: {node: '>= 6'} peerDependencies: typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' dependencies: tslib: 1.14.1 - typescript: 4.9.3 + typescript: 4.9.4 dev: true /tunnel-agent/0.6.0: @@ -11516,8 +11482,8 @@ packages: resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==} dev: true - /typescript/4.9.3: - resolution: {integrity: sha512-CIfGzTelbKNEnLpLdGFgdyKhG23CKdKgQPOBc+OUNrkJ2vr+KSzsSV5kq5iWhEQbok+quxgGzrAtGWCyU7tHnA==} + /typescript/4.9.4: + resolution: {integrity: sha512-Uz+dTXYzxXXbsFpM86Wh3dKCxrQqUcVMxwU54orwlJjOpO3ao8L7j5lH+dWfTwgCwIuM9GQ2kvVotzYJMXTBZg==} engines: {node: '>=4.2.0'} hasBin: true dev: true @@ -11569,8 +11535,8 @@ packages: magic-string: 0.26.7 unplugin: 1.0.0 - /undici/5.13.0: - resolution: {integrity: sha512-UDZKtwb2k7KRsK4SdXWG7ErXiL7yTGgLWvk2AXO1JMjgjh404nFo6tWSCM2xMpJwMPx3J8i/vfqEh1zOqvj82Q==} + /undici/5.14.0: + resolution: {integrity: sha512-yJlHYw6yXPPsuOH0x2Ib1Km61vu4hLiRRQoafs+WUgX1vO64vgnxiCEN9dpIrhZyHFsai3F0AEj4P9zy19enEQ==} engines: {node: '>=12.18'} dependencies: busboy: 1.6.0 @@ -11585,11 +11551,11 @@ packages: pathe: 1.0.0 dev: true - /unhead/1.0.6: - resolution: {integrity: sha512-HigQ2Myi9USkG+f18toJlWm+3E2Y16iPlMzCo9Rhf0WHJyw9ZHrico4uorVisZehVW84PM9nkQBmTuapUUAQsQ==} + /unhead/1.0.13: + resolution: {integrity: sha512-stWC9VawHWq27WiAsgNPLFXI61LaNy1E3Zs/0cSgPTvz4ti8fYuqLOz930pzVRIKrWnxQVGndw8UZLSEcK7ikA==} dependencies: - '@unhead/dom': 1.0.6 - '@unhead/schema': 1.0.6 + '@unhead/dom': 1.0.13 + '@unhead/schema': 1.0.13 hookable: 5.4.2 dev: true @@ -11654,7 +11620,7 @@ packages: dependencies: anymatch: 3.1.3 chokidar: 3.5.3 - destr: 1.2.1 + destr: 1.2.2 h3: 1.0.1 ioredis: 5.2.4 listhen: 1.0.1 @@ -11787,7 +11753,7 @@ packages: debug: 4.3.4 mlly: 0.5.17 pathe: 0.2.0 - vite: 4.0.0-beta.5_@types+node@17.0.45 + vite: 4.0.0-beta.7_@types+node@17.0.45 transitivePeerDependencies: - '@types/node' - less @@ -11798,8 +11764,8 @@ packages: - terser dev: false - /vite-node/0.25.3: - resolution: {integrity: sha512-0TyDFASTLJUOPRE5e5isyXXgM/fbTD6D37NKduk718l+Ih9FSwqaaHT5f0pIkJMXzyYT6zo4b4FA6pnGdoky3A==} + /vite-node/0.25.6: + resolution: {integrity: sha512-xwmZ4lVpqfKTCKZRt4vJflGIA4kEsClfGSWZijNqyORnAl1EvL/8USLGEHADe/NSjkwiEJoVQvZu0JQXpo+rQA==} engines: {node: '>=v14.16.0'} hasBin: true dependencies: @@ -11808,7 +11774,7 @@ packages: pathe: 0.2.0 source-map: 0.6.1 source-map-support: 0.5.21 - vite: 4.0.0-beta.5 + vite: 4.0.0-beta.7 transitivePeerDependencies: - '@types/node' - less @@ -11828,7 +11794,7 @@ packages: minimist: 1.2.7 mlly: 0.4.3 pathe: 0.2.0 - vite: 4.0.0-beta.5_@types+node@17.0.45 + vite: 4.0.0-beta.7_@types+node@17.0.45 transitivePeerDependencies: - '@types/node' - less @@ -11838,7 +11804,7 @@ packages: - terser dev: true - /vite-plugin-checker/0.5.1_vite@4.0.0-beta.5: + /vite-plugin-checker/0.5.1_vite@4.0.0-beta.7: resolution: {integrity: sha512-NFiO1PyK9yGuaeSnJ7Whw9fnxLc1AlELnZoyFURnauBYhbIkx9n+PmIXxSFUuC9iFyACtbJQUAEuQi6yHs2Adg==} engines: {node: '>=14.16'} peerDependencies: @@ -11868,30 +11834,30 @@ packages: npm-run-path: 4.0.1 strip-ansi: 6.0.1 tiny-invariant: 1.3.1 - vite: 4.0.0-beta.5 + vite: 4.0.0-beta.7 vscode-languageclient: 7.0.0 vscode-languageserver: 7.0.0 vscode-languageserver-textdocument: 1.0.7 vscode-uri: 3.0.6 dev: true - /vite-plugin-vuetify/1.0.0-alpha.12_4bc5gj3nsi2zssa6s544ael4i4: + /vite-plugin-vuetify/1.0.0-alpha.12_dyvtxqu4y55272vr4omix6z47u: resolution: {integrity: sha512-DMb7oY6F67P1RTEU28xQePUnyZdm+sbeGgIF3exBrA5yLL8NKKPIahqJN4+MAWMXCJVwNKy7nsS6zVgOLtcoQg==} engines: {node: '>=12'} peerDependencies: vite: ^2.7.0 || ^2.9.0 || ^3.0.0 || ^4.0.0 vuetify: ^3.0.0-beta.4 dependencies: - '@vuetify/loader-shared': 1.7.0_vue@3.2.45+vuetify@3.0.3 + '@vuetify/loader-shared': 1.7.0_vue@3.2.45+vuetify@3.0.4 debug: 4.3.4 - vite: 4.0.0-beta.5 - vuetify: 3.0.3_ny5xcw2md7vsxw37otcxmygka4 + vite: 4.0.0-beta.7 + vuetify: 3.0.4_ny5xcw2md7vsxw37otcxmygka4 transitivePeerDependencies: - supports-color - vue - /vite/4.0.0-beta.5: - resolution: {integrity: sha512-NNzcqXIFHFYVoP6bDcUitcIvSVHdrUBNr4wztCUbbi2Xmya2cc/tglCh73ncfsyzAT/WDLRoIeKG7Dp1r7LRVA==} + /vite/4.0.0-beta.7: + resolution: {integrity: sha512-fSSF4I95krr5iTkUcnGTCyLJCOjKKi6sqnIVHAwwPWdLPGAK/11dQaCkJeq/yOfWmFqbiFpsgIxb3bzicnV7ig==} engines: {node: ^14.18.0 || >=16.0.0} hasBin: true peerDependencies: @@ -11915,15 +11881,15 @@ packages: terser: optional: true dependencies: - esbuild: 0.16.2 + esbuild: 0.16.3 postcss: 8.4.19 resolve: 1.22.1 rollup: 3.7.0 optionalDependencies: fsevents: 2.3.2 - /vite/4.0.0-beta.5_@types+node@17.0.45: - resolution: {integrity: sha512-NNzcqXIFHFYVoP6bDcUitcIvSVHdrUBNr4wztCUbbi2Xmya2cc/tglCh73ncfsyzAT/WDLRoIeKG7Dp1r7LRVA==} + /vite/4.0.0-beta.7_@types+node@17.0.45: + resolution: {integrity: sha512-fSSF4I95krr5iTkUcnGTCyLJCOjKKi6sqnIVHAwwPWdLPGAK/11dQaCkJeq/yOfWmFqbiFpsgIxb3bzicnV7ig==} engines: {node: ^14.18.0 || >=16.0.0} hasBin: true peerDependencies: @@ -11948,15 +11914,15 @@ packages: optional: true dependencies: '@types/node': 17.0.45 - esbuild: 0.16.2 + esbuild: 0.16.3 postcss: 8.4.19 resolve: 1.22.1 rollup: 3.7.0 optionalDependencies: fsevents: 2.3.2 - /vite/4.0.0-beta.5_sass@1.56.1: - resolution: {integrity: sha512-NNzcqXIFHFYVoP6bDcUitcIvSVHdrUBNr4wztCUbbi2Xmya2cc/tglCh73ncfsyzAT/WDLRoIeKG7Dp1r7LRVA==} + /vite/4.0.0-beta.7_sass@1.56.1: + resolution: {integrity: sha512-fSSF4I95krr5iTkUcnGTCyLJCOjKKi6sqnIVHAwwPWdLPGAK/11dQaCkJeq/yOfWmFqbiFpsgIxb3bzicnV7ig==} engines: {node: ^14.18.0 || >=16.0.0} hasBin: true peerDependencies: @@ -11980,7 +11946,7 @@ packages: terser: optional: true dependencies: - esbuild: 0.16.2 + esbuild: 0.16.3 postcss: 8.4.19 resolve: 1.22.1 rollup: 3.7.0 @@ -11989,7 +11955,7 @@ packages: fsevents: 2.3.2 dev: true - /vitefu/0.2.2_vite@4.0.0-beta.5: + /vitefu/0.2.2_vite@4.0.0-beta.7: resolution: {integrity: sha512-8CKEIWPm4B4DUDN+h+hVJa9pyNi7rzc5MYmbxhs1wcMakueGFNWB5/DL30USm9qU3xUPnL4/rrLEAwwFiD1tag==} peerDependencies: vite: ^3.0.0 || ^2.9.0 || ^4.0.0 @@ -11997,7 +11963,7 @@ packages: vite: optional: true dependencies: - vite: 4.0.0-beta.5 + vite: 4.0.0-beta.7 dev: true /vitepress/1.0.0-alpha.10: @@ -12006,12 +11972,12 @@ packages: dependencies: '@docsearch/css': 3.3.0 '@docsearch/js': 3.3.0 - '@vitejs/plugin-vue': 3.2.0_52n6m3tculxsdye4oufjkspuma + '@vitejs/plugin-vue': 3.2.0_pyfeoepnsr2fx4g4idwaoisbcq '@vue/devtools-api': 6.4.5 '@vueuse/core': 9.6.0_vue@3.2.45 body-scroll-lock: 4.0.0-beta.0 shiki: 0.11.1 - vite: 4.0.0-beta.5 + vite: 4.0.0-beta.7 vue: 3.2.45 transitivePeerDependencies: - '@algolia/client-search' @@ -12195,14 +12161,14 @@ packages: he: 1.2.0 dev: true - /vue-tsc/0.35.2_typescript@4.9.3: + /vue-tsc/0.35.2_typescript@4.9.4: resolution: {integrity: sha512-aqY16VlODHzqtKGUkqdumNpH+s5ABCkufRyvMKQlL/mua+N2DfSVnHufzSNNUMr7vmOO0YsNg27jsspBMq4iGA==} hasBin: true peerDependencies: typescript: '*' dependencies: '@volar/vue-typescript': 0.35.2 - typescript: 4.9.3 + typescript: 4.9.4 dev: true /vue/2.7.14: @@ -12220,8 +12186,8 @@ packages: '@vue/server-renderer': 3.2.45_vue@3.2.45 '@vue/shared': 3.2.45 - /vuetify/3.0.3_ny5xcw2md7vsxw37otcxmygka4: - resolution: {integrity: sha512-ODqnS2ux/qUjn/E7W600mvy096nUSSf1mEgYN9o1IpfeNOC7RsakPD37t3zmtift54YTrE/upjSpILg3piYKmQ==} + /vuetify/3.0.4_ny5xcw2md7vsxw37otcxmygka4: + resolution: {integrity: sha512-znJjQbOeVhPqtI7y50wepiq/jMWXhAXEl43FUIgrppWNWDDoL00NiGQiJMEkc5/GTTq1gxkpg4QlCUaHXAMpBg==} engines: {node: ^12.20 || >=14.13} peerDependencies: vite-plugin-vuetify: ^1.0.0-alpha.12 @@ -12238,7 +12204,7 @@ packages: webpack-plugin-vuetify: optional: true dependencies: - vite-plugin-vuetify: 1.0.0-alpha.12_4bc5gj3nsi2zssa6s544ael4i4 + vite-plugin-vuetify: 1.0.0-alpha.12_dyvtxqu4y55272vr4omix6z47u vue: 3.2.45 /w3c-keyname/2.2.6: @@ -12252,16 +12218,16 @@ packages: xml-name-validator: 4.0.0 dev: false - /wait-on/6.0.0_debug@4.3.2: + /wait-on/6.0.0_debug@4.3.4: resolution: {integrity: sha512-tnUJr9p5r+bEYXPUdRseolmz5XqJTTj98JgOsfBn7Oz2dxfE2g3zw1jE+Mo8lopM3j3et/Mq1yW7kKX6qw7RVw==} engines: {node: '>=10.0.0'} hasBin: true dependencies: - axios: 0.21.4_debug@4.3.2 + axios: 0.21.4_debug@4.3.4 joi: 17.7.0 lodash: 4.17.21 minimist: 1.2.7 - rxjs: 7.5.7 + rxjs: 7.6.0 transitivePeerDependencies: - debug dev: true @@ -12434,9 +12400,6 @@ packages: engines: {node: '>=10'} dev: true - /yallist/3.1.1: - resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} - /yallist/4.0.0: resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} From 5315bfe81f3faa274d6e87bca1e02b2805250d85 Mon Sep 17 00:00:00 2001 From: Guillaume Chau Date: Thu, 15 Dec 2022 15:37:15 +0100 Subject: [PATCH 5/6] feat: update to stable vite 4 --- examples/svelte3/package.json | 6 +- examples/sveltekit/package.json | 4 +- examples/vue2/package.json | 4 +- examples/vue3-percy/package.json | 4 +- examples/vue3-screenshot/package.json | 4 +- examples/vue3-themed/package.json | 4 +- examples/vue3/package.json | 4 +- package.json | 3 - packages/histoire-app/package.json | 4 +- .../histoire-controls-stories/package.json | 4 +- packages/histoire-controls/package.json | 4 +- packages/histoire-plugin-nuxt/package.json | 2 +- packages/histoire-plugin-svelte/package.json | 2 +- packages/histoire-plugin-vue/package.json | 2 +- packages/histoire-plugin-vue2/package.json | 2 +- packages/histoire-shared/package.json | 4 +- packages/histoire/package.json | 6 +- pnpm-lock.yaml | 650 +++++++++++++----- 18 files changed, 513 insertions(+), 200 deletions(-) diff --git a/examples/svelte3/package.json b/examples/svelte3/package.json index cab55b80..1bb16604 100644 --- a/examples/svelte3/package.json +++ b/examples/svelte3/package.json @@ -13,15 +13,15 @@ }, "type": "module", "dependencies": { - "svelte": "^3.49.0" + "svelte": "^3.54.0" }, "devDependencies": { "@histoire/plugin-svelte": "workspace:*", - "@sveltejs/vite-plugin-svelte": "^1.0.1", + "@sveltejs/vite-plugin-svelte": "^2.0.0", "cypress": "^10.8.0", "histoire": "workspace:*", "start-server-and-test": "^1.14.0", "svelte-preprocess": "^4.10.7", - "vite": "^4.0.0-alpha.6" + "vite": "^4.0.0" } } diff --git a/examples/sveltekit/package.json b/examples/sveltekit/package.json index e49aea3d..d75d59a2 100644 --- a/examples/sveltekit/package.json +++ b/examples/sveltekit/package.json @@ -24,11 +24,11 @@ "@sveltejs/kit": "next", "@types/cookie": "^0.5.1", "histoire": "workspace:*", - "svelte": "^3.49.0", + "svelte": "^3.54.0", "svelte-check": "^2.7.1", "svelte-preprocess": "^4.10.7", "tslib": "^2.3.1", "typescript": "^4.7.4", - "vite": "^4.0.0-alpha.6" + "vite": "^4.0.0" } } diff --git a/examples/vue2/package.json b/examples/vue2/package.json index 42bfba1d..ff3e2a3b 100644 --- a/examples/vue2/package.json +++ b/examples/vue2/package.json @@ -12,9 +12,9 @@ }, "devDependencies": { "@histoire/plugin-vue2": "workspace:*", - "@vitejs/plugin-vue2": "^1.1.2", + "@vitejs/plugin-vue2": "^2.1.0", "histoire": "workspace:*", - "vite": "^4.0.0-alpha.6", + "vite": "^4.0.0", "vue-template-compiler": "^2.7.8" } } diff --git a/examples/vue3-percy/package.json b/examples/vue3-percy/package.json index 19cde3ad..c78eae2c 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": "^4.0.0-beta.0", + "@vitejs/plugin-vue": "^4.0.0", "histoire": "workspace:*", - "vite": "^4.0.0-alpha.6" + "vite": "^4.0.0" } } \ No newline at end of file diff --git a/examples/vue3-screenshot/package.json b/examples/vue3-screenshot/package.json index b619f434..8c721f84 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": "^4.0.0-beta.0", + "@vitejs/plugin-vue": "^4.0.0", "histoire": "workspace:*", - "vite": "^4.0.0-alpha.6" + "vite": "^4.0.0" } } \ No newline at end of file diff --git a/examples/vue3-themed/package.json b/examples/vue3-themed/package.json index 02c16390..699d0401 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": "^4.0.0-beta.0", + "@vitejs/plugin-vue": "^4.0.0", "@histoire/plugin-vue": "workspace:*", "histoire": "workspace:*", - "vite": "^4.0.0-alpha.6" + "vite": "^4.0.0" } } \ No newline at end of file diff --git a/examples/vue3/package.json b/examples/vue3/package.json index e946ce2e..4c87720f 100644 --- a/examples/vue3/package.json +++ b/examples/vue3/package.json @@ -21,11 +21,11 @@ "@histoire/app": "workspace:*", "@histoire/plugin-vue": "workspace:*", "@histoire/vendors": "workspace:*", - "@vitejs/plugin-vue": "^4.0.0-beta.0", + "@vitejs/plugin-vue": "^4.0.0", "cypress": "^9.5.3", "histoire": "workspace:*", "sass": "^1.50.0", "start-server-and-test": "^1.14.0", - "vite": "^4.0.0-alpha.6" + "vite": "^4.0.0" } } \ No newline at end of file diff --git a/package.json b/package.json index f17ae8a8..0b722dc7 100644 --- a/package.json +++ b/package.json @@ -65,9 +65,6 @@ "vite": "^2.9.0 || ^3.0.0 || ^4.0.0", "vue": "*" } - }, - "overrides": { - "vite": "^4.0.0-beta.5" } } } diff --git a/packages/histoire-app/package.json b/packages/histoire-app/package.json index 141dda45..64d0ddd6 100644 --- a/packages/histoire-app/package.json +++ b/packages/histoire-app/package.json @@ -40,7 +40,7 @@ "@tailwindcss/typography": "^0.5.2", "@types/fs-extra": "^9.0.13", "@types/node": "^17.0.32", - "@vitejs/plugin-vue": "^4.0.0-beta.0", + "@vitejs/plugin-vue": "^4.0.0", "autoprefixer": "^10.4.4", "chokidar": "^3.5.3", "concurrently": "^7.1.0", @@ -51,7 +51,7 @@ "postcss-import": "^14.1.0", "tailwindcss": "^3.0.23", "typescript": "^4.7.4", - "vite": "^4.0.0-alpha.6", + "vite": "^4.0.0", "vue": "^3.2.31" } } diff --git a/packages/histoire-controls-stories/package.json b/packages/histoire-controls-stories/package.json index fffc024e..66d996ee 100644 --- a/packages/histoire-controls-stories/package.json +++ b/packages/histoire-controls-stories/package.json @@ -24,8 +24,8 @@ }, "devDependencies": { "@histoire/plugin-vue": "workspace:*", - "@vitejs/plugin-vue": "^4.0.0-beta.0", + "@vitejs/plugin-vue": "^4.0.0", "histoire": "workspace:*", - "vite": "^4.0.0-alpha.6" + "vite": "^4.0.0" } } diff --git a/packages/histoire-controls/package.json b/packages/histoire-controls/package.json index f6319069..a1930311 100644 --- a/packages/histoire-controls/package.json +++ b/packages/histoire-controls/package.json @@ -53,7 +53,7 @@ "@peeky/server": "^0.14.0", "@peeky/test": "^0.14.1", "@types/node": "^17.0.32", - "@vitejs/plugin-vue": "^2.3.1", + "@vitejs/plugin-vue": "^4.0.0", "@vue/test-utils": "^2.0.0-rc.19", "@vueuse/core": "^8.2.5", "autoprefixer": "^10.4.4", @@ -63,7 +63,7 @@ "postcss-import": "^14.1.0", "tailwindcss": "^3.0.23", "typescript": "^4.7.4", - "vite": "^4.0.0-alpha.6", + "vite": "^4.0.0", "vue": "^3.2.31", "vue-tsc": "^0.35.2" } diff --git a/packages/histoire-plugin-nuxt/package.json b/packages/histoire-plugin-nuxt/package.json index 12f9bc34..5cb71d25 100644 --- a/packages/histoire-plugin-nuxt/package.json +++ b/packages/histoire-plugin-nuxt/package.json @@ -34,7 +34,7 @@ "@nuxt/schema": "^3.0.0-rc.11", "histoire": "workspace:*", "typescript": "^4.7.4", - "vite": "^4.0.0-alpha.6" + "vite": "^4.0.0" }, "peerDependencies": { "@histoire/plugin-vue": "^0.11.9", diff --git a/packages/histoire-plugin-svelte/package.json b/packages/histoire-plugin-svelte/package.json index 856815f9..e9965a43 100644 --- a/packages/histoire-plugin-svelte/package.json +++ b/packages/histoire-plugin-svelte/package.json @@ -52,7 +52,7 @@ "histoire": "workspace:*", "svelte": "^3.49.0", "svelte-preprocess": "^4.10.7", - "vite": "^4.0.0-alpha.6" + "vite": "^4.0.0" }, "peerDependencies": { "histoire": "^0.11.9", diff --git a/packages/histoire-plugin-vue/package.json b/packages/histoire-plugin-vue/package.json index fdfd73b1..e163eb05 100644 --- a/packages/histoire-plugin-vue/package.json +++ b/packages/histoire-plugin-vue/package.json @@ -55,7 +55,7 @@ "globby": "^13.1.1", "typescript": "^4.7.4", "histoire": "workspace:*", - "vite": "^4.0.0-alpha.6", + "vite": "^4.0.0", "vue": "^3.2.31" }, "peerDependencies": { diff --git a/packages/histoire-plugin-vue2/package.json b/packages/histoire-plugin-vue2/package.json index b4cbdb6d..2c0214d7 100644 --- a/packages/histoire-plugin-vue2/package.json +++ b/packages/histoire-plugin-vue2/package.json @@ -49,7 +49,7 @@ "globby": "^13.1.1", "histoire": "workspace:*", "typescript": "^4.7.4", - "vite": "^4.0.0-alpha.6", + "vite": "^4.0.0", "vue": "^2.7.8" }, "peerDependencies": { diff --git a/packages/histoire-shared/package.json b/packages/histoire-shared/package.json index b0d12dc4..d3ecde7c 100644 --- a/packages/histoire-shared/package.json +++ b/packages/histoire-shared/package.json @@ -36,10 +36,10 @@ "picocolors": "^1.0.0" }, "peerDependencies": { - "vite": "^2.9.0 || ^3.0.0 || ^4.0.0-alpha.6" + "vite": "^2.9.0 || ^3.0.0 || ^4.0.0" }, "devDependencies": { "typescript": "^4.7.4", - "vite": "^4.0.0-alpha.6" + "vite": "^4.0.0" } } diff --git a/packages/histoire/package.json b/packages/histoire/package.json index c3687dd8..06ce016b 100644 --- a/packages/histoire/package.json +++ b/packages/histoire/package.json @@ -69,10 +69,10 @@ "shiki": "0.11.1", "sirv": "^2.0.2", "tinypool": "^0.1.2", - "vite-node": "0.23.4" + "vite-node": "0.25.8" }, "peerDependencies": { - "vite": "^2.9.0 || ^3.0.0 || ^4.0.0-alpha.6" + "vite": "^2.9.0 || ^3.0.0 || ^4.0.0" }, "devDependencies": { "@peeky/server": "^0.14.0", @@ -83,6 +83,6 @@ "@types/node": "^17.0.32", "rollup": "^3.5.1", "typescript": "^4.7.4", - "vite": "^4.0.0-alpha.6" + "vite": "^4.0.0" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index df955bf6..8c67b77b 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,8 +1,5 @@ lockfileVersion: 5.4 -overrides: - vite: ^4.0.0-beta.5 - importers: .: @@ -78,29 +75,29 @@ importers: cypress: 10.11.0 histoire: link:../../packages/histoire nuxt: 3.0.0 - start-server-and-test: 1.15.1 + start-server-and-test: 1.15.2 vue: 3.2.45 examples/svelte3: specifiers: '@histoire/plugin-svelte': workspace:* - '@sveltejs/vite-plugin-svelte': ^1.0.1 + '@sveltejs/vite-plugin-svelte': ^2.0.0 cypress: ^10.8.0 histoire: workspace:* start-server-and-test: ^1.14.0 - svelte: ^3.49.0 + svelte: ^3.54.0 svelte-preprocess: ^4.10.7 - vite: ^4.0.0-beta.5 + vite: ^4.0.0 dependencies: svelte: 3.54.0 devDependencies: '@histoire/plugin-svelte': link:../../packages/histoire-plugin-svelte - '@sveltejs/vite-plugin-svelte': 1.4.0_rpfv7uk6fc5pyczlxjvsnm3swy + '@sveltejs/vite-plugin-svelte': 2.0.0_svelte@3.54.0+vite@4.0.0 cypress: 10.11.0 histoire: link:../../packages/histoire - start-server-and-test: 1.15.1 + start-server-and-test: 1.15.2 svelte-preprocess: 4.10.7_svelte@3.54.0 - vite: 4.0.0-beta.7 + vite: 4.0.0 examples/sveltekit: specifiers: @@ -111,19 +108,19 @@ importers: '@types/cookie': ^0.5.1 cookie: ^0.4.1 histoire: workspace:* - svelte: ^3.49.0 + svelte: ^3.54.0 svelte-check: ^2.7.1 svelte-preprocess: ^4.10.7 tslib: ^2.3.1 typescript: ^4.7.4 - vite: ^4.0.0-beta.5 + vite: ^4.0.0 dependencies: '@fontsource/fira-mono': 4.5.10 cookie: 0.4.2 devDependencies: '@histoire/plugin-svelte': link:../../packages/histoire-plugin-svelte - '@sveltejs/adapter-auto': 1.0.0-next.90 - '@sveltejs/kit': 1.0.0-next.577_rpfv7uk6fc5pyczlxjvsnm3swy + '@sveltejs/adapter-auto': 1.0.0-next.91_l5ueyfihz3gpzzvvyo2ean5u3e + '@sveltejs/kit': 1.0.0-next.589_svelte@3.54.0+vite@4.0.0 '@types/cookie': 0.5.1 histoire: link:../../packages/histoire svelte: 3.54.0 @@ -131,23 +128,23 @@ importers: svelte-preprocess: 4.10.7_vjccw6zkwqrmxudvmy4reaayx4 tslib: 2.4.1 typescript: 4.9.4 - vite: 4.0.0-beta.7 + vite: 4.0.0 examples/vue2: specifiers: '@histoire/plugin-vue2': workspace:* - '@vitejs/plugin-vue2': ^1.1.2 + '@vitejs/plugin-vue2': ^2.1.0 histoire: workspace:* - vite: ^4.0.0-beta.5 + vite: ^4.0.0 vue: ^2.7.8 vue-template-compiler: ^2.7.8 dependencies: vue: 2.7.14 devDependencies: '@histoire/plugin-vue2': link:../../packages/histoire-plugin-vue2 - '@vitejs/plugin-vue2': 1.1.2_g4vwuhb4ubbae2itju7tz2wkne + '@vitejs/plugin-vue2': 2.1.0_vite@4.0.0+vue@2.7.14 histoire: link:../../packages/histoire - vite: 4.0.0-beta.7 + vite: 4.0.0 vue-template-compiler: 2.7.14 examples/vue3: @@ -155,14 +152,14 @@ importers: '@histoire/app': workspace:* '@histoire/plugin-vue': workspace:* '@histoire/vendors': workspace:* - '@vitejs/plugin-vue': ^4.0.0-beta.0 + '@vitejs/plugin-vue': ^4.0.0 cypress: ^9.5.3 histoire: workspace:* lottie-web: ^5.9.6 pinia: ^2.0.13 sass: ^1.50.0 start-server-and-test: ^1.14.0 - vite: ^4.0.0-beta.5 + vite: ^4.0.0 vue: ^3.2.31 dependencies: lottie-web: 5.10.0 @@ -172,61 +169,61 @@ importers: '@histoire/app': link:../../packages/histoire-app '@histoire/plugin-vue': link:../../packages/histoire-plugin-vue '@histoire/vendors': link:../../packages/histoire-vendors - '@vitejs/plugin-vue': 4.0.0-beta.0_pyfeoepnsr2fx4g4idwaoisbcq + '@vitejs/plugin-vue': 4.0.0_vite@4.0.0+vue@3.2.45 cypress: 9.7.0 histoire: link:../../packages/histoire - sass: 1.56.1 - start-server-and-test: 1.15.1 - vite: 4.0.0-beta.7_sass@1.56.1 + sass: 1.56.2 + start-server-and-test: 1.15.2 + vite: 4.0.0_sass@1.56.2 examples/vue3-percy: specifiers: '@histoire/plugin-percy': workspace:* '@histoire/plugin-vue': workspace:* - '@vitejs/plugin-vue': ^4.0.0-beta.0 + '@vitejs/plugin-vue': ^4.0.0 histoire: workspace:* - vite: ^4.0.0-beta.5 + vite: ^4.0.0 vue: ^3.2.31 dependencies: vue: 3.2.45 devDependencies: '@histoire/plugin-percy': link:../../packages/histoire-plugin-percy '@histoire/plugin-vue': link:../../packages/histoire-plugin-vue - '@vitejs/plugin-vue': 4.0.0-beta.0_pyfeoepnsr2fx4g4idwaoisbcq + '@vitejs/plugin-vue': 4.0.0_vite@4.0.0+vue@3.2.45 histoire: link:../../packages/histoire - vite: 4.0.0-beta.7 + vite: 4.0.0 examples/vue3-screenshot: specifiers: '@histoire/plugin-screenshot': workspace:* '@histoire/plugin-vue': workspace:* - '@vitejs/plugin-vue': ^4.0.0-beta.0 + '@vitejs/plugin-vue': ^4.0.0 histoire: workspace:* - vite: ^4.0.0-beta.5 + vite: ^4.0.0 vue: ^3.2.31 dependencies: vue: 3.2.45 devDependencies: '@histoire/plugin-screenshot': link:../../packages/histoire-plugin-screenshot '@histoire/plugin-vue': link:../../packages/histoire-plugin-vue - '@vitejs/plugin-vue': 4.0.0-beta.0_pyfeoepnsr2fx4g4idwaoisbcq + '@vitejs/plugin-vue': 4.0.0_vite@4.0.0+vue@3.2.45 histoire: link:../../packages/histoire - vite: 4.0.0-beta.7 + vite: 4.0.0 examples/vue3-themed: specifiers: '@histoire/plugin-vue': workspace:* - '@vitejs/plugin-vue': ^4.0.0-beta.0 + '@vitejs/plugin-vue': ^4.0.0 histoire: workspace:* - vite: ^4.0.0-beta.5 + vite: ^4.0.0 vue: ^3.2.31 dependencies: vue: 3.2.45 devDependencies: '@histoire/plugin-vue': link:../../packages/histoire-plugin-vue - '@vitejs/plugin-vue': 4.0.0-beta.0_pyfeoepnsr2fx4g4idwaoisbcq + '@vitejs/plugin-vue': 4.0.0_vite@4.0.0+vue@3.2.45 histoire: link:../../packages/histoire - vite: 4.0.0-beta.7 + vite: 4.0.0 examples/vue3-vuetify: specifiers: @@ -234,7 +231,7 @@ importers: '@mdi/font': ^5.9.55 '@vitejs/plugin-vue': ^2.3.1 histoire: workspace:* - vite: ^4.0.0-beta.5 + vite: ^2.9.1 vite-plugin-vuetify: 1.0.0-alpha.12 vue: ^3.2.31 vuetify: ^3.0.0-beta.3 @@ -244,10 +241,10 @@ importers: vuetify: 3.0.4_ny5xcw2md7vsxw37otcxmygka4 devDependencies: '@histoire/plugin-vue': link:../../packages/histoire-plugin-vue - '@vitejs/plugin-vue': 2.3.4_pyfeoepnsr2fx4g4idwaoisbcq + '@vitejs/plugin-vue': 2.3.4_vite@2.9.15+vue@3.2.45 histoire: link:../../packages/histoire - vite: 4.0.0-beta.7 - vite-plugin-vuetify: 1.0.0-alpha.12_dyvtxqu4y55272vr4omix6z47u + vite: 2.9.15 + vite-plugin-vuetify: 1.0.0-alpha.12_6fvbykfru42ntqkibhp42cidqy packages/histoire: specifiers: @@ -288,8 +285,8 @@ importers: sirv: ^2.0.2 tinypool: ^0.1.2 typescript: ^4.7.4 - vite: ^4.0.0-beta.5 - vite-node: 0.23.4 + vite: ^4.0.0 + vite-node: 0.25.8 dependencies: '@histoire/app': link:../histoire-app '@histoire/controls': link:../histoire-controls @@ -321,7 +318,7 @@ importers: shiki: 0.11.1 sirv: 2.0.2 tinypool: 0.1.3 - vite-node: 0.23.4_@types+node@17.0.45 + vite-node: 0.25.8_@types+node@17.0.45 devDependencies: '@peeky/server': 0.14.0_@types+node@17.0.45 '@peeky/test': 0.14.1_7xgr23p2hp47ryj3a27pbosgwi @@ -330,7 +327,7 @@ importers: '@types/node': 17.0.45 rollup: 3.7.0 typescript: 4.9.4 - vite: 4.0.0-beta.7_@types+node@17.0.45 + vite: 4.0.0_@types+node@17.0.45 packages/histoire-app: specifiers: @@ -341,7 +338,7 @@ importers: '@types/flexsearch': ^0.7.3 '@types/fs-extra': ^9.0.13 '@types/node': ^17.0.32 - '@vitejs/plugin-vue': ^4.0.0-beta.0 + '@vitejs/plugin-vue': ^4.0.0 autoprefixer: ^10.4.4 chokidar: ^3.5.3 concurrently: ^7.1.0 @@ -354,7 +351,7 @@ importers: shiki-es: ^0.1.2 tailwindcss: ^3.0.23 typescript: ^4.7.4 - vite: ^4.0.0-beta.5 + vite: ^4.0.0 vue: ^3.2.31 dependencies: '@histoire/controls': link:../histoire-controls @@ -367,7 +364,7 @@ importers: '@tailwindcss/typography': 0.5.8_tailwindcss@3.2.4 '@types/fs-extra': 9.0.13 '@types/node': 17.0.45 - '@vitejs/plugin-vue': 4.0.0-beta.0_pyfeoepnsr2fx4g4idwaoisbcq + '@vitejs/plugin-vue': 4.0.0_vite@4.0.0+vue@3.2.45 autoprefixer: 10.4.13_postcss@8.4.19 chokidar: 3.5.3 concurrently: 7.6.0 @@ -378,7 +375,7 @@ importers: postcss-import: 14.1.0_postcss@8.4.19 tailwindcss: 3.2.4_postcss@8.4.19 typescript: 4.9.4 - vite: 4.0.0-beta.7_@types+node@17.0.45 + vite: 4.0.0_@types+node@17.0.45 vue: 3.2.45 packages/histoire-controls: @@ -394,7 +391,7 @@ importers: '@peeky/server': ^0.14.0 '@peeky/test': ^0.14.1 '@types/node': ^17.0.32 - '@vitejs/plugin-vue': ^2.3.1 + '@vitejs/plugin-vue': ^4.0.0 '@vue/test-utils': ^2.0.0-rc.19 '@vueuse/core': ^8.2.5 autoprefixer: ^10.4.4 @@ -404,7 +401,7 @@ importers: postcss-import: ^14.1.0 tailwindcss: ^3.0.23 typescript: ^4.7.4 - vite: ^4.0.0-beta.5 + vite: ^4.0.0 vue: ^3.2.31 vue-tsc: ^0.35.2 dependencies: @@ -420,7 +417,7 @@ importers: '@peeky/server': 0.14.0_@types+node@17.0.45 '@peeky/test': 0.14.1_7xgr23p2hp47ryj3a27pbosgwi '@types/node': 17.0.45 - '@vitejs/plugin-vue': 2.3.4_pyfeoepnsr2fx4g4idwaoisbcq + '@vitejs/plugin-vue': 4.0.0_vite@4.0.0+vue@3.2.45 '@vue/test-utils': 2.2.6_vue@3.2.45 '@vueuse/core': 8.9.4_vue@3.2.45 autoprefixer: 10.4.13_postcss@8.4.19 @@ -430,7 +427,7 @@ importers: postcss-import: 14.1.0_postcss@8.4.19 tailwindcss: 3.2.4_postcss@8.4.19 typescript: 4.9.4 - vite: 4.0.0-beta.7_@types+node@17.0.45 + vite: 4.0.0_@types+node@17.0.45 vue: 3.2.45 vue-tsc: 0.35.2_typescript@4.9.4 @@ -438,18 +435,18 @@ importers: specifiers: '@histoire/controls': workspace:* '@histoire/plugin-vue': workspace:* - '@vitejs/plugin-vue': ^4.0.0-beta.0 + '@vitejs/plugin-vue': ^4.0.0 histoire: workspace:* - vite: ^4.0.0-beta.5 + vite: ^4.0.0 vue: ^3.2.31 dependencies: '@histoire/controls': link:../histoire-controls vue: 3.2.45 devDependencies: '@histoire/plugin-vue': link:../histoire-plugin-vue - '@vitejs/plugin-vue': 4.0.0-beta.0_pyfeoepnsr2fx4g4idwaoisbcq + '@vitejs/plugin-vue': 4.0.0_vite@4.0.0+vue@3.2.45 histoire: link:../histoire - vite: 4.0.0-beta.7 + vite: 4.0.0 packages/histoire-plugin-nuxt: specifiers: @@ -458,7 +455,7 @@ importers: '@types/node': ^17.0.32 histoire: workspace:* typescript: ^4.7.4 - vite: ^4.0.0-beta.5 + vite: ^4.0.0 dependencies: '@nuxt/kit': 3.0.0 devDependencies: @@ -466,7 +463,7 @@ importers: '@types/node': 17.0.45 histoire: link:../histoire typescript: 4.9.4 - vite: 4.0.0-beta.7_@types+node@17.0.45 + vite: 4.0.0_@types+node@17.0.45 packages/histoire-plugin-percy: specifiers: @@ -522,13 +519,13 @@ importers: svelte: ^3.49.0 svelte-preprocess: ^4.10.7 typescript: ^4.7.4 - vite: ^4.0.0-beta.5 + vite: ^4.0.0 dependencies: '@histoire/controls': link:../histoire-controls '@histoire/shared': link:../histoire-shared '@histoire/vendors': link:../histoire-vendors devDependencies: - '@sveltejs/vite-plugin-svelte': 1.4.0_rpfv7uk6fc5pyczlxjvsnm3swy + '@sveltejs/vite-plugin-svelte': 1.4.0_svelte@3.54.0+vite@4.0.0 '@types/node': 17.0.45 concurrently: 7.6.0 fs-extra: 10.1.0 @@ -537,7 +534,7 @@ importers: svelte: 3.54.0 svelte-preprocess: 4.10.7_vjccw6zkwqrmxudvmy4reaayx4 typescript: 4.9.4 - vite: 4.0.0-beta.7_@types+node@17.0.45 + vite: 4.0.0_@types+node@17.0.45 packages/histoire-plugin-vue: specifiers: @@ -550,7 +547,7 @@ importers: globby: ^13.1.1 histoire: workspace:* typescript: ^4.7.4 - vite: ^4.0.0-beta.5 + vite: ^4.0.0 vue: ^3.2.31 dependencies: '@histoire/controls': link:../histoire-controls @@ -563,7 +560,7 @@ importers: globby: 13.1.2 histoire: link:../histoire typescript: 4.9.4 - vite: 4.0.0-beta.7_@types+node@17.0.45 + vite: 4.0.0_@types+node@17.0.45 vue: 3.2.45 packages/histoire-plugin-vue2: @@ -577,7 +574,7 @@ importers: globby: ^13.1.1 histoire: workspace:* typescript: ^4.7.4 - vite: ^4.0.0-beta.5 + vite: ^4.0.0 vue: ^2.7.8 dependencies: '@histoire/controls': link:../histoire-controls @@ -590,7 +587,7 @@ importers: globby: 13.1.2 histoire: link:../histoire typescript: 4.9.4 - vite: 4.0.0-beta.7_@types+node@17.0.45 + vite: 4.0.0_@types+node@17.0.45 vue: 2.7.14 packages/histoire-shared: @@ -601,7 +598,7 @@ importers: pathe: ^0.2.0 picocolors: ^1.0.0 typescript: ^4.7.4 - vite: ^4.0.0-beta.5 + vite: ^4.0.0 dependencies: '@types/fs-extra': 9.0.13 '@types/markdown-it': 12.2.3 @@ -610,7 +607,7 @@ importers: picocolors: 1.0.0 devDependencies: typescript: 4.9.4 - vite: 4.0.0-beta.7 + vite: 4.0.0 packages/histoire-vendors: specifiers: @@ -634,7 +631,7 @@ importers: '@iconify/vue': 3.2.1_vue@3.2.45 '@rollup/plugin-commonjs': 23.0.4_rollup@3.7.0 '@rollup/plugin-node-resolve': 15.0.1_rollup@3.7.0 - '@types/node': 18.11.11 + '@types/node': 18.11.12 '@vueuse/core': 8.9.4_vue@3.2.45 execa: 6.1.0 floating-vue: 2.0.0-beta.20_vue@3.2.45 @@ -1461,6 +1458,14 @@ packages: requiresBuild: true optional: true + /@esbuild/linux-loong64/0.14.54: + resolution: {integrity: sha512-bZBrLAIX1kpWelV0XemxBZllyRmM6vgFQQG2GdNb+r3Fkp0FOh1NJSvekXDs7jq70k4euu1cryLMfU+mTXlEpw==} + engines: {node: '>=12'} + cpu: [loong64] + os: [linux] + requiresBuild: true + optional: true + /@esbuild/linux-loong64/0.15.18: resolution: {integrity: sha512-L4jVKS82XVhw2nvzLg/19ClLWg0y27ulRwuP7lcyL6AbUWB5aPglXY3M21mauDQMDfRLs8cQmeT03r/+X3cZYQ==} engines: {node: '>=12'} @@ -2005,7 +2010,7 @@ packages: hasBin: true dependencies: '@nuxt/kit': 3.0.0 - chalk: 5.1.2 + chalk: 5.2.0 ci-info: 3.7.0 consola: 2.15.3 create-require: 1.1.1 @@ -2044,8 +2049,8 @@ packages: dependencies: '@nuxt/kit': 3.0.0_rollup@2.79.1 '@rollup/plugin-replace': 5.0.1_rollup@2.79.1 - '@vitejs/plugin-vue': 3.2.0_pyfeoepnsr2fx4g4idwaoisbcq - '@vitejs/plugin-vue-jsx': 2.1.1_pyfeoepnsr2fx4g4idwaoisbcq + '@vitejs/plugin-vue': 3.2.0_vite@3.2.5+vue@3.2.45 + '@vitejs/plugin-vue-jsx': 2.1.1_vite@3.2.5+vue@3.2.45 autoprefixer: 10.4.13_postcss@8.4.19 chokidar: 3.5.3 cssnano: 5.1.14_postcss@8.4.19 @@ -2071,9 +2076,9 @@ packages: rollup-plugin-visualizer: 5.8.3_rollup@2.79.1 ufo: 1.0.1 unplugin: 1.0.0 - vite: 4.0.0-beta.7 - vite-node: 0.25.6 - vite-plugin-checker: 0.5.1_vite@4.0.0-beta.7 + vite: 3.2.5 + vite-node: 0.25.8 + vite-plugin-checker: 0.5.1_vite@3.2.5 vue: 3.2.45 vue-bundle-renderer: 1.0.0 transitivePeerDependencies: @@ -2096,7 +2101,7 @@ packages: '@nuxt/kit': 3.0.0 '@nuxt/postcss8': 1.1.3 autoprefixer: 10.4.13_postcss@8.4.19 - chalk: 5.1.2 + chalk: 5.2.0 clear-module: 4.1.2 consola: 2.15.3 defu: 6.1.1 @@ -2159,7 +2164,7 @@ packages: fs-extra: 10.1.0 nanoid: 4.0.0 pathe: 0.3.9 - vite: 4.0.0-beta.7_@types+node@17.0.45 + vite: 3.2.5_@types+node@17.0.45 transitivePeerDependencies: - '@types/node' - less @@ -2185,7 +2190,7 @@ packages: '@peeky/utils': 0.14.0 '@types/sinon': 10.0.13 c8: 7.12.0 - chalk: 5.1.2 + chalk: 5.2.0 chokidar: 3.5.3 consola: 2.15.3 diffable-html: 5.0.0 @@ -2206,8 +2211,8 @@ packages: slugify: 1.6.5 source-map-support: 0.5.21 tinypool: 0.3.0 - vite: 4.0.0-beta.7_@types+node@17.0.45 - vite-node: 0.3.6_@types+node@17.0.45 + vite: 3.2.5_@types+node@17.0.45 + vite-node: 0.3.6 transitivePeerDependencies: - '@types/node' - encoding @@ -2243,7 +2248,7 @@ packages: object-inspect: 1.12.2 pathe: 0.3.9 slugify: 1.6.5 - vite: 4.0.0-beta.7_@types+node@17.0.45 + vite: 3.2.5_@types+node@17.0.45 ws: 8.11.0 transitivePeerDependencies: - '@types/node' @@ -2287,7 +2292,7 @@ packages: /@peeky/utils/0.14.0: resolution: {integrity: sha512-kfby487UlxJqg2JP+zEEnETg4FVTu5WthmL9UbcgJoD9tQa6G+l56xABIIDDUJBMQa2Q5NEZYQD9xcuE6UNHMQ==} dependencies: - chalk: 5.1.2 + chalk: 5.2.0 consola: 2.15.3 esbuild: 0.15.18 merge-source-map: 1.1.0 @@ -2622,25 +2627,29 @@ packages: resolution: {integrity: sha512-sXXKG+uL9IrKqViTtao2Ws6dy0znu9sOaP1di/jKGW1M6VssO8vlpXCQcpZ+jisQ1tTFAC5Jo/EOzFbggBagFQ==} dev: true - /@sveltejs/adapter-auto/1.0.0-next.90: - resolution: {integrity: sha512-qxH46Oqqn40998wTmnbffONI0HcW/kiZ3OIjZoysjONne+LU4uEsG425MZ2RHDxmR04zxhsdjCAsn6B4du8D7w==} + /@sveltejs/adapter-auto/1.0.0-next.91_l5ueyfihz3gpzzvvyo2ean5u3e: + resolution: {integrity: sha512-U57tQdzTfFINim8tzZSARC9ztWPzwOoHwNOpGdb2o6XrD0mEQwU9DsII7dBblvzg+xCnmd0pw7PDtXz5c5t96w==} + peerDependencies: + '@sveltejs/kit': ^1.0.0-next.587 dependencies: + '@sveltejs/kit': 1.0.0-next.589_svelte@3.54.0+vite@4.0.0 import-meta-resolve: 2.2.0 dev: true - /@sveltejs/kit/1.0.0-next.577_rpfv7uk6fc5pyczlxjvsnm3swy: - resolution: {integrity: sha512-hQuSGiF87pNNdmIMDwOr8+nMOe/tgtOne4VBpCFb4k0YrFh/5qC/pgWvWXFWeJBRi9/UzmEjGH9gJeJkgtMLmw==} + /@sveltejs/kit/1.0.0-next.589_svelte@3.54.0+vite@4.0.0: + resolution: {integrity: sha512-5ABRw46z9B+cCe/YWhcx+I/azNZg1NCDEkVJifZn8ToFoJ3a1eP0OexNIrvMEWpllMbNMPcJm2TC9tnz9oPfWQ==} engines: {node: '>=16.14'} hasBin: true requiresBuild: true peerDependencies: - svelte: ^3.44.0 - vite: ^3.2.0 || ^2.9.0 || ^3.0.0 || ^4.0.0 + svelte: ^3.54.0 + vite: ^4.0.0 || ^2.9.0 || ^3.0.0 dependencies: - '@sveltejs/vite-plugin-svelte': 1.4.0_rpfv7uk6fc5pyczlxjvsnm3swy + '@sveltejs/vite-plugin-svelte': 2.0.0_svelte@3.54.0+vite@4.0.0 '@types/cookie': 0.5.1 cookie: 0.5.0 devalue: 4.2.0 + esm-env: 1.0.0 kleur: 4.1.5 magic-string: 0.27.0 mime: 3.0.0 @@ -2650,12 +2659,12 @@ packages: svelte: 3.54.0 tiny-glob: 0.2.9 undici: 5.14.0 - vite: 4.0.0-beta.7 + vite: 4.0.0 transitivePeerDependencies: - supports-color dev: true - /@sveltejs/vite-plugin-svelte/1.4.0_rpfv7uk6fc5pyczlxjvsnm3swy: + /@sveltejs/vite-plugin-svelte/1.4.0_svelte@3.54.0+vite@4.0.0: resolution: {integrity: sha512-6QupI/jemMfK+yI2pMtJcu5iO2gtgTfcBdGwMZZt+lgbFELhszbDl6Qjh000HgAV8+XUA+8EY8DusOFk8WhOIg==} engines: {node: ^14.18.0 || >= 16} peerDependencies: @@ -2668,8 +2677,27 @@ packages: magic-string: 0.26.7 svelte: 3.54.0 svelte-hmr: 0.15.1_svelte@3.54.0 - vite: 4.0.0-beta.7 - vitefu: 0.2.2_vite@4.0.0-beta.7 + vite: 4.0.0_@types+node@17.0.45 + vitefu: 0.2.3_vite@4.0.0 + transitivePeerDependencies: + - supports-color + dev: true + + /@sveltejs/vite-plugin-svelte/2.0.0_svelte@3.54.0+vite@4.0.0: + resolution: {integrity: sha512-oUFrYQarRv4fppmxdrv00qw3wX8Ycdj0uv33MfpRZyR8K67dyxiOcHnqkB0zSy5sDJA8RC/2aNtYhXJ8NINVHQ==} + engines: {node: ^14.18.0 || >= 16} + peerDependencies: + svelte: ^3.54.0 + vite: ^4.0.0 || ^2.9.0 || ^3.0.0 + dependencies: + debug: 4.3.4 + deepmerge: 4.2.2 + kleur: 4.1.5 + magic-string: 0.27.0 + svelte: 3.54.0 + svelte-hmr: 0.15.1_svelte@3.54.0 + vite: 4.0.0 + vitefu: 0.2.3_vite@4.0.0 transitivePeerDependencies: - supports-color dev: true @@ -2860,8 +2888,8 @@ packages: /@types/node/17.0.45: resolution: {integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==} - /@types/node/18.11.11: - resolution: {integrity: sha512-KJ021B1nlQUBLopzZmPBVuGU9un7WJd/W4ya7Ih02B4Uwky5Nja0yGYav2EfYIk0RR2Q9oVhf60S2XR1BCWJ2g==} + /@types/node/18.11.12: + resolution: {integrity: sha512-FgD3NtTAKvyMmD44T07zz2fEf+OKwutgBCEVM8GcvMGVGaDktiLNTDvPwC/LUe3PinMW+X6CuLOF2Ui1mAlSXg==} dev: true /@types/node/8.10.66: @@ -2895,7 +2923,7 @@ packages: /@types/sass/1.43.1: resolution: {integrity: sha512-BPdoIt1lfJ6B7rw35ncdwBZrAssjcwzI5LByIrYs+tpXlj/CAkuVdRsgZDdP4lq5EjyWzwxZCqAoFyHKFwp32g==} dependencies: - '@types/node': 18.11.11 + '@types/node': 18.11.12 dev: true /@types/semver/7.3.13: @@ -3147,7 +3175,7 @@ packages: - supports-color dev: true - /@vitejs/plugin-vue-jsx/2.1.1_pyfeoepnsr2fx4g4idwaoisbcq: + /@vitejs/plugin-vue-jsx/2.1.1_vite@3.2.5+vue@3.2.45: resolution: {integrity: sha512-JgDhxstQlwnHBvZ1BSnU5mbmyQ14/t5JhREc6YH5kWyu2QdAAOsLF6xgHoIWarj8tddaiwFrNzLbWJPudpXKYA==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: @@ -3160,13 +3188,13 @@ packages: '@babel/core': 7.20.5 '@babel/plugin-transform-typescript': 7.20.2_@babel+core@7.20.5 '@vue/babel-plugin-jsx': 1.1.1_@babel+core@7.20.5 - vite: 4.0.0-beta.7 + vite: 3.2.5 vue: 3.2.45 transitivePeerDependencies: - supports-color dev: true - /@vitejs/plugin-vue/2.3.4_pyfeoepnsr2fx4g4idwaoisbcq: + /@vitejs/plugin-vue/2.3.4_vite@2.9.15+vue@3.2.45: resolution: {integrity: sha512-IfFNbtkbIm36O9KB8QodlwwYvTEsJb4Lll4c2IwB3VHc2gie2mSPtSzL0eYay7X2jd/2WX02FjSGTWR6OPr/zg==} engines: {node: '>=12.0.0'} peerDependencies: @@ -3176,11 +3204,11 @@ packages: vue: optional: true dependencies: - vite: 4.0.0-beta.7 + vite: 2.9.15 vue: 3.2.45 dev: true - /@vitejs/plugin-vue/3.2.0_pyfeoepnsr2fx4g4idwaoisbcq: + /@vitejs/plugin-vue/3.2.0_vite@3.2.5+vue@3.2.45: resolution: {integrity: sha512-E0tnaL4fr+qkdCNxJ+Xd0yM31UwMkQje76fsDVBBUCoGOUPexu2VDUYHL8P4CwV+zMvWw6nlRw19OnRKmYAJpw==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: @@ -3190,35 +3218,35 @@ packages: vue: optional: true dependencies: - vite: 4.0.0-beta.7 + vite: 3.2.5 vue: 3.2.45 dev: true - /@vitejs/plugin-vue/4.0.0-beta.0_pyfeoepnsr2fx4g4idwaoisbcq: - resolution: {integrity: sha512-ip9aE0C3lyjwVCdM8Wa2oVhXOCRJPauNUrfftkipeud3xVHXUYI4akCIamMIMgXorqpd16ms7zLckfO1rU9i6g==} + /@vitejs/plugin-vue/4.0.0_vite@4.0.0+vue@3.2.45: + resolution: {integrity: sha512-e0X4jErIxAB5oLtDqbHvHpJe/uWNkdpYV83AOG2xo2tEVSzCzewgJMtREZM30wXnM5ls90hxiOtAuVU6H5JgbA==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: - vite: ^4.0.0-alpha.0 || ^2.9.0 || ^3.0.0 || ^4.0.0 + vite: ^4.0.0 || ^2.9.0 || ^3.0.0 vue: '*' peerDependenciesMeta: vue: optional: true dependencies: - vite: 4.0.0-beta.7_sass@1.56.1 + vite: 4.0.0_sass@1.56.2 vue: 3.2.45 dev: true - /@vitejs/plugin-vue2/1.1.2_g4vwuhb4ubbae2itju7tz2wkne: - resolution: {integrity: sha512-y6OEA+2UdJ0xrEQHodq20v9r3SpS62IOHrgN92JPLvVpNkhcissu7yvD5PXMzMESyazj0XNWGsc8UQk8+mVrjQ==} - engines: {node: '>=14.6.0'} + /@vitejs/plugin-vue2/2.1.0_vite@4.0.0+vue@2.7.14: + resolution: {integrity: sha512-9glD5jLWRjdj+SpH7cQo+n/kZlZBaTjQwTe3aUxsWr9uU7aOnlhG319ywJT5175mHWIyNz8g5QG6NPdgKwwYDA==} + engines: {node: ^14.18.0 || >= 16.0.0} peerDependencies: - vite: '>=2.5.10 || ^2.9.0 || ^3.0.0 || ^4.0.0' + vite: ^3.0.0 || ^2.9.0 || ^4.0.0 vue: '*' peerDependenciesMeta: vue: optional: true dependencies: - vite: 4.0.0-beta.7 + vite: 4.0.0 vue: 2.7.14 dev: true @@ -4019,7 +4047,7 @@ packages: postcss: ^8.1.0 dependencies: browserslist: 4.21.4 - caniuse-lite: 1.0.30001436 + caniuse-lite: 1.0.30001439 fraction.js: 4.2.0 normalize-range: 0.1.2 picocolors: 1.0.0 @@ -4035,8 +4063,8 @@ packages: resolution: {integrity: sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==} dev: true - /axios/0.21.4_debug@4.3.4: - resolution: {integrity: sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==} + /axios/0.25.0_debug@4.3.4: + resolution: {integrity: sha512-cD8FOb0tRH3uuEe6+evtAbgJtfxr7ly3fQjYcMcuPlgkwVS9xboaVIpcDV+cYQe+yGykgwZCs1pzjntcGa6l5g==} dependencies: follow-redirects: 1.15.2_debug@4.3.4 transitivePeerDependencies: @@ -4152,7 +4180,7 @@ packages: engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001436 + caniuse-lite: 1.0.30001439 electron-to-chromium: 1.4.284 node-releases: 2.0.6 update-browserslist-db: 1.0.10_browserslist@4.21.4 @@ -4162,7 +4190,6 @@ packages: /buffer-from/1.1.2: resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} - dev: true /buffer/5.7.1: resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} @@ -4286,13 +4313,13 @@ packages: resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==} dependencies: browserslist: 4.21.4 - caniuse-lite: 1.0.30001436 + caniuse-lite: 1.0.30001439 lodash.memoize: 4.1.2 lodash.uniq: 4.5.0 dev: true - /caniuse-lite/1.0.30001436: - resolution: {integrity: sha512-ZmWkKsnC2ifEPoWUvSAIGyOYwT+keAaaWPHiQ9DfMqS1t6tfuyFYoWR78TeZtznkEQ64+vGXH9cZrElwR2Mrxg==} + /caniuse-lite/1.0.30001439: + resolution: {integrity: sha512-1MgUzEkoMO6gKfXflStpYgZDlFM7M/ck/bgfVCACO5vnAf0fXoNVHdWtqGU+MYca+4bL9Z5bpOVmR33cWW9G2A==} /capital-case/1.0.4: resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==} @@ -4337,8 +4364,8 @@ packages: supports-color: 7.2.0 dev: true - /chalk/5.1.2: - resolution: {integrity: sha512-E5CkT4jWURs1Vy5qGJye+XwCkNj7Od3Af7CP6SujMetSMkLs8Do2RWJK5yx1wamHV/op8Rz+9rltjaTQWDnEFQ==} + /chalk/5.2.0: + resolution: {integrity: sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA==} engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} dev: true @@ -5656,6 +5683,14 @@ packages: resolution: {integrity: sha512-SOp9Phqvqn7jtEUxPWdWfWoLmyt2VaJ6MpvP9Comy1MceMXqE6bxvaTu4iaxpYYPzhny28Lc+M87/c2cPK6lDg==} dev: true + /esbuild-android-64/0.14.54: + resolution: {integrity: sha512-Tz2++Aqqz0rJ7kYBfz+iqyE3QMycD4vk7LBRyWaAVFgFtQ/O8EJOnVmTOiDWYZ/uYzB4kvP+bqejYdVKzE5lAQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [android] + requiresBuild: true + optional: true + /esbuild-android-64/0.15.18: resolution: {integrity: sha512-wnpt3OXRhcjfIDSZu9bnzT4/TNTDsOUvip0foZOUBG7QbSt//w3QV4FInVJxNhKc/ErhUxc5z4QjHtMi7/TbgA==} engines: {node: '>=12'} @@ -5665,6 +5700,14 @@ packages: dev: true optional: true + /esbuild-android-arm64/0.14.54: + resolution: {integrity: sha512-F9E+/QDi9sSkLaClO8SOV6etqPd+5DgJje1F9lOWoNncDdOBL2YF59IhsWATSt0TLZbYCf3pNlTHvVV5VfHdvg==} + engines: {node: '>=12'} + cpu: [arm64] + os: [android] + requiresBuild: true + optional: true + /esbuild-android-arm64/0.15.18: resolution: {integrity: sha512-G4xu89B8FCzav9XU8EjsXacCKSG2FT7wW9J6hOc18soEHJdtWu03L3TQDGf0geNxfLTtxENKBzMSq9LlbjS8OQ==} engines: {node: '>=12'} @@ -5674,6 +5717,14 @@ packages: dev: true optional: true + /esbuild-darwin-64/0.14.54: + resolution: {integrity: sha512-jtdKWV3nBviOd5v4hOpkVmpxsBy90CGzebpbO9beiqUYVMBtSc0AL9zGftFuBon7PNDcdvNCEuQqw2x0wP9yug==} + engines: {node: '>=12'} + cpu: [x64] + os: [darwin] + requiresBuild: true + optional: true + /esbuild-darwin-64/0.15.18: resolution: {integrity: sha512-2WAvs95uPnVJPuYKP0Eqx+Dl/jaYseZEUUT1sjg97TJa4oBtbAKnPnl3b5M9l51/nbx7+QAEtuummJZW0sBEmg==} engines: {node: '>=12'} @@ -5683,6 +5734,14 @@ packages: dev: true optional: true + /esbuild-darwin-arm64/0.14.54: + resolution: {integrity: sha512-OPafJHD2oUPyvJMrsCvDGkRrVCar5aVyHfWGQzY1dWnzErjrDuSETxwA2HSsyg2jORLY8yBfzc1MIpUkXlctmw==} + engines: {node: '>=12'} + cpu: [arm64] + os: [darwin] + requiresBuild: true + optional: true + /esbuild-darwin-arm64/0.15.18: resolution: {integrity: sha512-tKPSxcTJ5OmNb1btVikATJ8NftlyNlc8BVNtyT/UAr62JFOhwHlnoPrhYWz09akBLHI9nElFVfWSTSRsrZiDUA==} engines: {node: '>=12'} @@ -5692,6 +5751,14 @@ packages: dev: true optional: true + /esbuild-freebsd-64/0.14.54: + resolution: {integrity: sha512-OKwd4gmwHqOTp4mOGZKe/XUlbDJ4Q9TjX0hMPIDBUWWu/kwhBAudJdBoxnjNf9ocIB6GN6CPowYpR/hRCbSYAg==} + engines: {node: '>=12'} + cpu: [x64] + os: [freebsd] + requiresBuild: true + optional: true + /esbuild-freebsd-64/0.15.18: resolution: {integrity: sha512-TT3uBUxkteAjR1QbsmvSsjpKjOX6UkCstr8nMr+q7zi3NuZ1oIpa8U41Y8I8dJH2fJgdC3Dj3CXO5biLQpfdZA==} engines: {node: '>=12'} @@ -5701,6 +5768,14 @@ packages: dev: true optional: true + /esbuild-freebsd-arm64/0.14.54: + resolution: {integrity: sha512-sFwueGr7OvIFiQT6WeG0jRLjkjdqWWSrfbVwZp8iMP+8UHEHRBvlaxL6IuKNDwAozNUmbb8nIMXa7oAOARGs1Q==} + engines: {node: '>=12'} + cpu: [arm64] + os: [freebsd] + requiresBuild: true + optional: true + /esbuild-freebsd-arm64/0.15.18: resolution: {integrity: sha512-R/oVr+X3Tkh+S0+tL41wRMbdWtpWB8hEAMsOXDumSSa6qJR89U0S/PpLXrGF7Wk/JykfpWNokERUpCeHDl47wA==} engines: {node: '>=12'} @@ -5710,6 +5785,14 @@ packages: dev: true optional: true + /esbuild-linux-32/0.14.54: + resolution: {integrity: sha512-1ZuY+JDI//WmklKlBgJnglpUL1owm2OX+8E1syCD6UAxcMM/XoWd76OHSjl/0MR0LisSAXDqgjT3uJqT67O3qw==} + engines: {node: '>=12'} + cpu: [ia32] + os: [linux] + requiresBuild: true + optional: true + /esbuild-linux-32/0.15.18: resolution: {integrity: sha512-lphF3HiCSYtaa9p1DtXndiQEeQDKPl9eN/XNoBf2amEghugNuqXNZA/ZovthNE2aa4EN43WroO0B85xVSjYkbg==} engines: {node: '>=12'} @@ -5719,6 +5802,14 @@ packages: dev: true optional: true + /esbuild-linux-64/0.14.54: + resolution: {integrity: sha512-EgjAgH5HwTbtNsTqQOXWApBaPVdDn7XcK+/PtJwZLT1UmpLoznPd8c5CxqsH2dQK3j05YsB3L17T8vE7cp4cCg==} + engines: {node: '>=12'} + cpu: [x64] + os: [linux] + requiresBuild: true + optional: true + /esbuild-linux-64/0.15.18: resolution: {integrity: sha512-hNSeP97IviD7oxLKFuii5sDPJ+QHeiFTFLoLm7NZQligur8poNOWGIgpQ7Qf8Balb69hptMZzyOBIPtY09GZYw==} engines: {node: '>=12'} @@ -5728,6 +5819,14 @@ packages: dev: true optional: true + /esbuild-linux-arm/0.14.54: + resolution: {integrity: sha512-qqz/SjemQhVMTnvcLGoLOdFpCYbz4v4fUo+TfsWG+1aOu70/80RV6bgNpR2JCrppV2moUQkww+6bWxXRL9YMGw==} + engines: {node: '>=12'} + cpu: [arm] + os: [linux] + requiresBuild: true + optional: true + /esbuild-linux-arm/0.15.18: resolution: {integrity: sha512-UH779gstRblS4aoS2qpMl3wjg7U0j+ygu3GjIeTonCcN79ZvpPee12Qun3vcdxX+37O5LFxz39XeW2I9bybMVA==} engines: {node: '>=12'} @@ -5737,6 +5836,14 @@ packages: dev: true optional: true + /esbuild-linux-arm64/0.14.54: + resolution: {integrity: sha512-WL71L+0Rwv+Gv/HTmxTEmpv0UgmxYa5ftZILVi2QmZBgX3q7+tDeOQNqGtdXSdsL8TQi1vIaVFHUPDe0O0kdig==} + engines: {node: '>=12'} + cpu: [arm64] + os: [linux] + requiresBuild: true + optional: true + /esbuild-linux-arm64/0.15.18: resolution: {integrity: sha512-54qr8kg/6ilcxd+0V3h9rjT4qmjc0CccMVWrjOEM/pEcUzt8X62HfBSeZfT2ECpM7104mk4yfQXkosY8Quptug==} engines: {node: '>=12'} @@ -5746,6 +5853,14 @@ packages: dev: true optional: true + /esbuild-linux-mips64le/0.14.54: + resolution: {integrity: sha512-qTHGQB8D1etd0u1+sB6p0ikLKRVuCWhYQhAHRPkO+OF3I/iSlTKNNS0Lh2Oc0g0UFGguaFZZiPJdJey3AGpAlw==} + engines: {node: '>=12'} + cpu: [mips64el] + os: [linux] + requiresBuild: true + optional: true + /esbuild-linux-mips64le/0.15.18: resolution: {integrity: sha512-Mk6Ppwzzz3YbMl/ZZL2P0q1tnYqh/trYZ1VfNP47C31yT0K8t9s7Z077QrDA/guU60tGNp2GOwCQnp+DYv7bxQ==} engines: {node: '>=12'} @@ -5755,6 +5870,14 @@ packages: dev: true optional: true + /esbuild-linux-ppc64le/0.14.54: + resolution: {integrity: sha512-j3OMlzHiqwZBDPRCDFKcx595XVfOfOnv68Ax3U4UKZ3MTYQB5Yz3X1mn5GnodEVYzhtZgxEBidLWeIs8FDSfrQ==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [linux] + requiresBuild: true + optional: true + /esbuild-linux-ppc64le/0.15.18: resolution: {integrity: sha512-b0XkN4pL9WUulPTa/VKHx2wLCgvIAbgwABGnKMY19WhKZPT+8BxhZdqz6EgkqCLld7X5qiCY2F/bfpUUlnFZ9w==} engines: {node: '>=12'} @@ -5764,6 +5887,14 @@ packages: dev: true optional: true + /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-riscv64/0.15.18: resolution: {integrity: sha512-ba2COaoF5wL6VLZWn04k+ACZjZ6NYniMSQStodFKH/Pu6RxzQqzsmjR1t9QC89VYJxBeyVPTaHuBMCejl3O/xg==} engines: {node: '>=12'} @@ -5773,6 +5904,14 @@ packages: dev: true optional: true + /esbuild-linux-s390x/0.14.54: + resolution: {integrity: sha512-zaHpW9dziAsi7lRcyV4r8dhfG1qBidQWUXweUjnw+lliChJqQr+6XD71K41oEIC3Mx1KStovEmlzm+MkGZHnHA==} + engines: {node: '>=12'} + cpu: [s390x] + os: [linux] + requiresBuild: true + optional: true + /esbuild-linux-s390x/0.15.18: resolution: {integrity: sha512-VbpGuXEl5FCs1wDVp93O8UIzl3ZrglgnSQ+Hu79g7hZu6te6/YHgVJxCM2SqfIila0J3k0csfnf8VD2W7u2kzQ==} engines: {node: '>=12'} @@ -5782,6 +5921,14 @@ packages: dev: true optional: true + /esbuild-netbsd-64/0.14.54: + resolution: {integrity: sha512-PR01lmIMnfJTgeU9VJTDY9ZerDWVFIUzAtJuDHwwceppW7cQWjBBqP48NdeRtoP04/AtO9a7w3viI+PIDr6d+w==} + engines: {node: '>=12'} + cpu: [x64] + os: [netbsd] + requiresBuild: true + optional: true + /esbuild-netbsd-64/0.15.18: resolution: {integrity: sha512-98ukeCdvdX7wr1vUYQzKo4kQ0N2p27H7I11maINv73fVEXt2kyh4K4m9f35U1K43Xc2QGXlzAw0K9yoU7JUjOg==} engines: {node: '>=12'} @@ -5791,6 +5938,14 @@ packages: dev: true optional: true + /esbuild-openbsd-64/0.14.54: + resolution: {integrity: sha512-Qyk7ikT2o7Wu76UsvvDS5q0amJvmRzDyVlL0qf5VLsLchjCa1+IAvd8kTBgUxD7VBUUVgItLkk609ZHUc1oCaw==} + engines: {node: '>=12'} + cpu: [x64] + os: [openbsd] + requiresBuild: true + optional: true + /esbuild-openbsd-64/0.15.18: resolution: {integrity: sha512-yK5NCcH31Uae076AyQAXeJzt/vxIo9+omZRKj1pauhk3ITuADzuOx5N2fdHrAKPxN+zH3w96uFKlY7yIn490xQ==} engines: {node: '>=12'} @@ -5800,6 +5955,14 @@ packages: dev: true optional: true + /esbuild-sunos-64/0.14.54: + resolution: {integrity: sha512-28GZ24KmMSeKi5ueWzMcco6EBHStL3B6ubM7M51RmPwXQGLe0teBGJocmWhgwccA1GeFXqxzILIxXpHbl9Q/Kw==} + engines: {node: '>=12'} + cpu: [x64] + os: [sunos] + requiresBuild: true + optional: true + /esbuild-sunos-64/0.15.18: resolution: {integrity: sha512-On22LLFlBeLNj/YF3FT+cXcyKPEI263nflYlAhz5crxtp3yRG1Ugfr7ITyxmCmjm4vbN/dGrb/B7w7U8yJR9yw==} engines: {node: '>=12'} @@ -5809,6 +5972,14 @@ packages: dev: true optional: true + /esbuild-windows-32/0.14.54: + resolution: {integrity: sha512-T+rdZW19ql9MjS7pixmZYVObd9G7kcaZo+sETqNH4RCkuuYSuv9AGHUVnPoP9hhuE1WM1ZimHz1CIBHBboLU7w==} + engines: {node: '>=12'} + cpu: [ia32] + os: [win32] + requiresBuild: true + optional: true + /esbuild-windows-32/0.15.18: resolution: {integrity: sha512-o+eyLu2MjVny/nt+E0uPnBxYuJHBvho8vWsC2lV61A7wwTWC3jkN2w36jtA+yv1UgYkHRihPuQsL23hsCYGcOQ==} engines: {node: '>=12'} @@ -5818,6 +5989,14 @@ packages: dev: true optional: true + /esbuild-windows-64/0.14.54: + resolution: {integrity: sha512-AoHTRBUuYwXtZhjXZbA1pGfTo8cJo3vZIcWGLiUcTNgHpJJMC1rVA44ZereBHMJtotyN71S8Qw0npiCIkW96cQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [win32] + requiresBuild: true + optional: true + /esbuild-windows-64/0.15.18: resolution: {integrity: sha512-qinug1iTTaIIrCorAUjR0fcBk24fjzEedFYhhispP8Oc7SFvs+XeW3YpAKiKp8dRpizl4YYAhxMjlftAMJiaUw==} engines: {node: '>=12'} @@ -5827,6 +6006,14 @@ packages: dev: true optional: true + /esbuild-windows-arm64/0.14.54: + resolution: {integrity: sha512-M0kuUvXhot1zOISQGXwWn6YtS+Y/1RT9WrVIOywZnJHo3jCDyewAc79aKNQWFCQm+xNHVTq9h8dZKvygoXQQRg==} + engines: {node: '>=12'} + cpu: [arm64] + os: [win32] + requiresBuild: true + optional: true + /esbuild-windows-arm64/0.15.18: resolution: {integrity: sha512-q9bsYzegpZcLziq0zgUi5KqGVtfhjxGbnksaBFYmWLxeV/S1fK4OLdq2DFYnXcLMjlZw2L0jLsk1eGoB522WXQ==} engines: {node: '>=12'} @@ -5836,6 +6023,34 @@ packages: dev: true optional: true + /esbuild/0.14.54: + resolution: {integrity: sha512-Cy9llcy8DvET5uznocPyqL3BFRrFXSVqbgpMJ9Wz8oVjZlh/zUSNbPRbov0VX7VxN2JH1Oa0uNxZ7eLRb62pJA==} + engines: {node: '>=12'} + hasBin: true + requiresBuild: true + optionalDependencies: + '@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 + /esbuild/0.15.18: resolution: {integrity: sha512-x/R72SmW3sSFRm5zrrIjAhCeQSAWoni3CmHEqfQrZIQTM3lVCdehdwuIqaOtfC2slvpdlLa62GYoN8SxT23m6Q==} engines: {node: '>=12'} @@ -6223,6 +6438,10 @@ packages: - supports-color dev: true + /esm-env/1.0.0: + resolution: {integrity: sha512-Cf6VksWPsTuW01vU9Mk/3vRue91Zevka5SjyNf3nEpokFRuqt/KjUQoGAwq9qMmhpLTHmXzSIrFRw8zxWzmFBA==} + dev: true + /espree/9.4.1: resolution: {integrity: sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -7422,7 +7641,7 @@ packages: engines: {node: '>=12.0.0'} dependencies: ansi-escapes: 6.0.0 - chalk: 5.1.2 + chalk: 5.2.0 cli-cursor: 4.0.0 cli-width: 4.0.0 external-editor: 3.1.0 @@ -7815,7 +8034,7 @@ packages: resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==} engines: {node: '>= 10.13.0'} dependencies: - '@types/node': 18.11.11 + '@types/node': 18.11.12 merge-stream: 2.0.0 supports-color: 7.2.0 dev: true @@ -8284,7 +8503,7 @@ packages: resolution: {integrity: sha512-l0x2DvrW294C9uDCoQe1VSU4gf529FkSZ6leBl4TiqZH/e+0R7hSfHQBNut2mNygDgHwvYHfFLn6Oxb3VWj2rA==} engines: {node: '>=12'} dependencies: - chalk: 5.1.2 + chalk: 5.2.0 is-unicode-supported: 1.3.0 dev: true @@ -8602,6 +8821,7 @@ packages: pathe: 1.0.0 pkg-types: 1.0.1 ufo: 1.0.1 + dev: true /mlly/1.0.0: resolution: {integrity: sha512-QL108Hwt+u9bXdWgOI0dhzZfACovn5Aen4Xvc8Jasd9ouRH4NjnrXEiyP3nVvJo91zPlYjVRckta0Nt2zfoR6g==} @@ -8704,7 +8924,7 @@ packages: '@vercel/nft': 0.22.5 archiver: 5.3.1 c12: 1.1.0 - chalk: 5.1.2 + chalk: 5.2.0 chokidar: 3.5.3 consola: 2.15.3 cookie-es: 0.5.0 @@ -9102,7 +9322,7 @@ packages: engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dependencies: bl: 5.1.0 - chalk: 5.1.2 + chalk: 5.2.0 cli-cursor: 4.0.0 cli-spinners: 2.7.0 is-interactive: 2.0.0 @@ -10335,6 +10555,13 @@ packages: yargs: 17.6.2 dev: true + /rollup/2.77.3: + resolution: {integrity: sha512-/qxNTG7FbmefJWoeeYJFbHehJ2HNWnjkAFRKzWN/45eNBBF/r8lo992CwcJXEzyVxs5FmfId+vTSTQDb+bxA+g==} + engines: {node: '>=10.0.0'} + hasBin: true + optionalDependencies: + fsevents: 2.3.2 + /rollup/2.79.1: resolution: {integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==} engines: {node: '>=10.0.0'} @@ -10398,8 +10625,8 @@ packages: rimraf: 2.7.1 dev: true - /sass/1.56.1: - resolution: {integrity: sha512-VpEyKpyBPCxE7qGDtOcdJ6fFbcpOM+Emu7uZLxVrkX8KVU/Dp5UF7WLvzqRuUhB6mqqQt1xffLoG+AndxTZrCQ==} + /sass/1.56.2: + resolution: {integrity: sha512-ciEJhnyCRwzlBCB+h5cCPM6ie/6f8HrhZMQOf5vlU60Y1bI1rx5Zb0vlDZvaycHsg/MqFfF1Eq2eokAa32iw8w==} engines: {node: '>=12.0.0'} hasBin: true dependencies: @@ -10648,7 +10875,6 @@ packages: dependencies: buffer-from: 1.1.2 source-map: 0.6.1 - dev: true /source-map/0.6.1: resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} @@ -10743,8 +10969,8 @@ packages: resolution: {integrity: sha512-qoRRSyROncaz1z0mvYqIE4lCd9p2R90i6GxW3uZv5ucSu8tU7B5HXUP1gG8pVZsYNVaXjk8ClXHPttLyxAL48A==} dev: true - /start-server-and-test/1.15.1: - resolution: {integrity: sha512-ixhMbUAmym+7k3kqhjhTt6/0eUwE3dbNZPWgcfEUJ5uStaHbT0m8VB+049V5V9X0ueEyxAkwnkkR2SEhCKst5g==} + /start-server-and-test/1.15.2: + resolution: {integrity: sha512-t5xJX04Hg7hqxiKHMJBz/n4zIMsE6G7hpAcerFAH+4Vh9le/LeyFcJERJM7WLiPygWF9TOg33oroJF1XOzJtYQ==} engines: {node: '>=6'} hasBin: true dependencies: @@ -10755,7 +10981,7 @@ packages: execa: 5.1.1 lazy-ass: 1.6.0 ps-tree: 1.2.0 - wait-on: 6.0.0_debug@4.3.4 + wait-on: 6.0.1_debug@4.3.4 transitivePeerDependencies: - supports-color dev: true @@ -11745,15 +11971,17 @@ packages: extsprintf: 1.3.0 dev: true - /vite-node/0.23.4_@types+node@17.0.45: - resolution: {integrity: sha512-8VuDGwTWIvwPYcbw8ZycMlwAwqCmqZfLdFrDK75+o+6bWYpede58k6AAXN9ioU+icW82V4u1MzkxLVhhIoQ9xA==} + /vite-node/0.25.8: + resolution: {integrity: sha512-o1GsPZcq4ce7ZUUALnOfYP/bjaHQYtLDLuirOMvYCdsuvDMb2tggib2RZRfHIhTEF2QnIgyQEoyaOjAMHGPRiw==} engines: {node: '>=v14.16.0'} hasBin: true dependencies: debug: 4.3.4 - mlly: 0.5.17 + mlly: 1.0.0 pathe: 0.2.0 - vite: 4.0.0-beta.7_@types+node@17.0.45 + source-map: 0.6.1 + source-map-support: 0.5.21 + vite: 4.0.0 transitivePeerDependencies: - '@types/node' - less @@ -11762,10 +11990,10 @@ packages: - sugarss - supports-color - terser - dev: false + dev: true - /vite-node/0.25.6: - resolution: {integrity: sha512-xwmZ4lVpqfKTCKZRt4vJflGIA4kEsClfGSWZijNqyORnAl1EvL/8USLGEHADe/NSjkwiEJoVQvZu0JQXpo+rQA==} + /vite-node/0.25.8_@types+node@17.0.45: + resolution: {integrity: sha512-o1GsPZcq4ce7ZUUALnOfYP/bjaHQYtLDLuirOMvYCdsuvDMb2tggib2RZRfHIhTEF2QnIgyQEoyaOjAMHGPRiw==} engines: {node: '>=v14.16.0'} hasBin: true dependencies: @@ -11774,7 +12002,7 @@ packages: pathe: 0.2.0 source-map: 0.6.1 source-map-support: 0.5.21 - vite: 4.0.0-beta.7 + vite: 4.0.0_@types+node@17.0.45 transitivePeerDependencies: - '@types/node' - less @@ -11783,9 +12011,9 @@ packages: - sugarss - supports-color - terser - dev: true + dev: false - /vite-node/0.3.6_@types+node@17.0.45: + /vite-node/0.3.6: resolution: {integrity: sha512-uJKzaOPUwthqDVWN8zIWxreMaiNOsQjh7HmyAAlGFRC/1ac9J3jcKV13LBVJ0TfAl0o0sagnHSQlLcDa0T8oUg==} engines: {node: '>=14.14.0'} hasBin: true @@ -11794,17 +12022,14 @@ packages: minimist: 1.2.7 mlly: 0.4.3 pathe: 0.2.0 - vite: 4.0.0-beta.7_@types+node@17.0.45 + vite: 2.9.15 transitivePeerDependencies: - - '@types/node' - less - sass - stylus - - sugarss - - terser dev: true - /vite-plugin-checker/0.5.1_vite@4.0.0-beta.7: + /vite-plugin-checker/0.5.1_vite@3.2.5: resolution: {integrity: sha512-NFiO1PyK9yGuaeSnJ7Whw9fnxLc1AlELnZoyFURnauBYhbIkx9n+PmIXxSFUuC9iFyACtbJQUAEuQi6yHs2Adg==} engines: {node: '>=14.16'} peerDependencies: @@ -11834,14 +12059,14 @@ packages: npm-run-path: 4.0.1 strip-ansi: 6.0.1 tiny-invariant: 1.3.1 - vite: 4.0.0-beta.7 + vite: 3.2.5 vscode-languageclient: 7.0.0 vscode-languageserver: 7.0.0 vscode-languageserver-textdocument: 1.0.7 vscode-uri: 3.0.6 dev: true - /vite-plugin-vuetify/1.0.0-alpha.12_dyvtxqu4y55272vr4omix6z47u: + /vite-plugin-vuetify/1.0.0-alpha.12_6fvbykfru42ntqkibhp42cidqy: resolution: {integrity: sha512-DMb7oY6F67P1RTEU28xQePUnyZdm+sbeGgIF3exBrA5yLL8NKKPIahqJN4+MAWMXCJVwNKy7nsS6zVgOLtcoQg==} engines: {node: '>=12'} peerDependencies: @@ -11850,14 +12075,104 @@ packages: dependencies: '@vuetify/loader-shared': 1.7.0_vue@3.2.45+vuetify@3.0.4 debug: 4.3.4 - vite: 4.0.0-beta.7 + vite: 2.9.15 vuetify: 3.0.4_ny5xcw2md7vsxw37otcxmygka4 transitivePeerDependencies: - supports-color - vue - /vite/4.0.0-beta.7: - resolution: {integrity: sha512-fSSF4I95krr5iTkUcnGTCyLJCOjKKi6sqnIVHAwwPWdLPGAK/11dQaCkJeq/yOfWmFqbiFpsgIxb3bzicnV7ig==} + /vite/2.9.15: + resolution: {integrity: sha512-fzMt2jK4vQ3yK56te3Kqpkaeq9DkcZfBbzHwYpobasvgYmP2SoAr6Aic05CsB4CzCZbsDv4sujX3pkEGhLabVQ==} + engines: {node: '>=12.2.0'} + hasBin: true + peerDependencies: + less: '*' + sass: '*' + stylus: '*' + peerDependenciesMeta: + less: + optional: true + sass: + optional: true + stylus: + optional: true + dependencies: + esbuild: 0.14.54 + postcss: 8.4.19 + resolve: 1.22.1 + rollup: 2.77.3 + optionalDependencies: + fsevents: 2.3.2 + + /vite/3.2.5: + resolution: {integrity: sha512-4mVEpXpSOgrssFZAOmGIr85wPHKvaDAcXqxVxVRZhljkJOMZi1ibLibzjLHzJvcok8BMguLc7g1W6W/GqZbLdQ==} + engines: {node: ^14.18.0 || >=16.0.0} + hasBin: true + peerDependencies: + '@types/node': '>= 14' + less: '*' + sass: '*' + stylus: '*' + sugarss: '*' + terser: ^5.4.0 + peerDependenciesMeta: + '@types/node': + optional: true + less: + optional: true + sass: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + dependencies: + esbuild: 0.15.18 + postcss: 8.4.19 + resolve: 1.22.1 + rollup: 2.79.1 + optionalDependencies: + fsevents: 2.3.2 + dev: true + + /vite/3.2.5_@types+node@17.0.45: + resolution: {integrity: sha512-4mVEpXpSOgrssFZAOmGIr85wPHKvaDAcXqxVxVRZhljkJOMZi1ibLibzjLHzJvcok8BMguLc7g1W6W/GqZbLdQ==} + engines: {node: ^14.18.0 || >=16.0.0} + hasBin: true + peerDependencies: + '@types/node': '>= 14' + less: '*' + sass: '*' + stylus: '*' + sugarss: '*' + terser: ^5.4.0 + peerDependenciesMeta: + '@types/node': + optional: true + less: + optional: true + sass: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + dependencies: + '@types/node': 17.0.45 + esbuild: 0.15.18 + postcss: 8.4.19 + resolve: 1.22.1 + rollup: 2.79.1 + optionalDependencies: + fsevents: 2.3.2 + dev: true + + /vite/4.0.0: + resolution: {integrity: sha512-ynad+4kYs8Jcnn8J7SacS9vAbk7eMy0xWg6E7bAhS1s79TK+D7tVFGXVZ55S7RNLRROU1rxoKlvZ/qjaB41DGA==} engines: {node: ^14.18.0 || >=16.0.0} hasBin: true peerDependencies: @@ -11887,9 +12202,10 @@ packages: rollup: 3.7.0 optionalDependencies: fsevents: 2.3.2 + dev: true - /vite/4.0.0-beta.7_@types+node@17.0.45: - resolution: {integrity: sha512-fSSF4I95krr5iTkUcnGTCyLJCOjKKi6sqnIVHAwwPWdLPGAK/11dQaCkJeq/yOfWmFqbiFpsgIxb3bzicnV7ig==} + /vite/4.0.0_@types+node@17.0.45: + resolution: {integrity: sha512-ynad+4kYs8Jcnn8J7SacS9vAbk7eMy0xWg6E7bAhS1s79TK+D7tVFGXVZ55S7RNLRROU1rxoKlvZ/qjaB41DGA==} engines: {node: ^14.18.0 || >=16.0.0} hasBin: true peerDependencies: @@ -11921,8 +12237,8 @@ packages: optionalDependencies: fsevents: 2.3.2 - /vite/4.0.0-beta.7_sass@1.56.1: - resolution: {integrity: sha512-fSSF4I95krr5iTkUcnGTCyLJCOjKKi6sqnIVHAwwPWdLPGAK/11dQaCkJeq/yOfWmFqbiFpsgIxb3bzicnV7ig==} + /vite/4.0.0_sass@1.56.2: + resolution: {integrity: sha512-ynad+4kYs8Jcnn8J7SacS9vAbk7eMy0xWg6E7bAhS1s79TK+D7tVFGXVZ55S7RNLRROU1rxoKlvZ/qjaB41DGA==} engines: {node: ^14.18.0 || >=16.0.0} hasBin: true peerDependencies: @@ -11950,20 +12266,20 @@ packages: postcss: 8.4.19 resolve: 1.22.1 rollup: 3.7.0 - sass: 1.56.1 + sass: 1.56.2 optionalDependencies: fsevents: 2.3.2 dev: true - /vitefu/0.2.2_vite@4.0.0-beta.7: - resolution: {integrity: sha512-8CKEIWPm4B4DUDN+h+hVJa9pyNi7rzc5MYmbxhs1wcMakueGFNWB5/DL30USm9qU3xUPnL4/rrLEAwwFiD1tag==} + /vitefu/0.2.3_vite@4.0.0: + resolution: {integrity: sha512-75l7TTuU8isAhz1QFtNKjDkqjxvndfMC1AfIMjJ0ZQ59ZD0Ow9QOIsJJX16Wv9PS8f+zMzp6fHy5cCbKG/yVUQ==} peerDependencies: - vite: ^3.0.0 || ^2.9.0 || ^4.0.0 + vite: ^3.0.0 || ^4.0.0 || ^2.9.0 peerDependenciesMeta: vite: optional: true dependencies: - vite: 4.0.0-beta.7 + vite: 4.0.0 dev: true /vitepress/1.0.0-alpha.10: @@ -11972,12 +12288,12 @@ packages: dependencies: '@docsearch/css': 3.3.0 '@docsearch/js': 3.3.0 - '@vitejs/plugin-vue': 3.2.0_pyfeoepnsr2fx4g4idwaoisbcq + '@vitejs/plugin-vue': 3.2.0_vite@3.2.5+vue@3.2.45 '@vue/devtools-api': 6.4.5 '@vueuse/core': 9.6.0_vue@3.2.45 body-scroll-lock: 4.0.0-beta.0 shiki: 0.11.1 - vite: 4.0.0-beta.7 + vite: 3.2.5 vue: 3.2.45 transitivePeerDependencies: - '@algolia/client-search' @@ -12204,7 +12520,7 @@ packages: webpack-plugin-vuetify: optional: true dependencies: - vite-plugin-vuetify: 1.0.0-alpha.12_dyvtxqu4y55272vr4omix6z47u + vite-plugin-vuetify: 1.0.0-alpha.12_6fvbykfru42ntqkibhp42cidqy vue: 3.2.45 /w3c-keyname/2.2.6: @@ -12218,12 +12534,12 @@ packages: xml-name-validator: 4.0.0 dev: false - /wait-on/6.0.0_debug@4.3.4: - resolution: {integrity: sha512-tnUJr9p5r+bEYXPUdRseolmz5XqJTTj98JgOsfBn7Oz2dxfE2g3zw1jE+Mo8lopM3j3et/Mq1yW7kKX6qw7RVw==} + /wait-on/6.0.1_debug@4.3.4: + resolution: {integrity: sha512-zht+KASY3usTY5u2LgaNqn/Cd8MukxLGjdcZxT2ns5QzDmTFc4XoWBgC+C/na+sMRZTuVygQoMYwdcVjHnYIVw==} engines: {node: '>=10.0.0'} hasBin: true dependencies: - axios: 0.21.4_debug@4.3.4 + axios: 0.25.0_debug@4.3.4 joi: 17.7.0 lodash: 4.17.21 minimist: 1.2.7 From 0be1a2a73ce2b75462860d629f5b340647b5b7f0 Mon Sep 17 00:00:00 2001 From: Guillaume Chau Date: Mon, 19 Dec 2022 14:04:00 +0100 Subject: [PATCH 6/6] fix: update vite-node to 0.26.0 --- packages/histoire/package.json | 2 +- pnpm-lock.yaml | 1296 ++++++++++++++++---------------- 2 files changed, 656 insertions(+), 642 deletions(-) diff --git a/packages/histoire/package.json b/packages/histoire/package.json index 06ce016b..891d6d12 100644 --- a/packages/histoire/package.json +++ b/packages/histoire/package.json @@ -69,7 +69,7 @@ "shiki": "0.11.1", "sirv": "^2.0.2", "tinypool": "^0.1.2", - "vite-node": "0.25.8" + "vite-node": "0.26.0" }, "peerDependencies": { "vite": "^2.9.0 || ^3.0.0 || ^4.0.0" diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 8c67b77b..fb76dc98 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -31,26 +31,26 @@ importers: '@akryum/sheep': 0.3.3 '@histoire/vendors': link:packages/histoire-vendors '@iconify/vue': 3.2.1 - '@typescript-eslint/eslint-plugin': 5.46.0_5mle7isnkfgjmrghnnczirv6iy - '@typescript-eslint/parser': 5.46.0_ha6vam6werchizxrnqvarmz2zu - '@vue/eslint-config-standard': 6.1.0_rgk4afcvwqij6gp7cdq6gh4rne - '@vue/eslint-config-typescript': 10.0.0_4ajq2belonl3hwwudzbg7tkiqi + '@typescript-eslint/eslint-plugin': 5.46.1_mqzxmroayievgzgel6yrqgih5i + '@typescript-eslint/parser': 5.46.1_lzzuuodtsqwxnvqeq4g4likcqa + '@vue/eslint-config-standard': 6.1.0_uub6xppuyv3lkprso7224jioyy + '@vue/eslint-config-typescript': 10.0.0_eh2oupyoc3mviptu6zovyv6md4 '@vueuse/core': 8.9.4 - autoprefixer: 10.4.13_postcss@8.4.19 + autoprefixer: 10.4.13_postcss@8.4.20 conventional-changelog-cli: 2.2.2 - eslint: 8.29.0 - eslint-plugin-cypress: 2.12.1_eslint@8.29.0 - eslint-plugin-import: 2.26.0_jx43xxcguvnqqmtmaaygwl7cmu - eslint-plugin-node: 11.1.0_eslint@8.29.0 - eslint-plugin-promise: 6.1.1_eslint@8.29.0 - eslint-plugin-vue: 9.8.0_eslint@8.29.0 + eslint: 8.30.0 + eslint-plugin-cypress: 2.12.1_eslint@8.30.0 + eslint-plugin-import: 2.26.0_k64j4kmmt6hmqbosszmu4ra6ae + eslint-plugin-node: 11.1.0_eslint@8.30.0 + eslint-plugin-promise: 6.1.1_eslint@8.30.0 + eslint-plugin-vue: 9.8.0_eslint@8.30.0 floating-vue: 2.0.0-beta.20 - postcss: 8.4.19 + postcss: 8.4.20 rimraf: 3.0.2 - tailwindcss: 3.2.4_postcss@8.4.19 + tailwindcss: 3.2.4_postcss@8.4.20 typescript: 4.9.4 vitepress: 1.0.0-alpha.10 - vue-eslint-parser: 9.1.0_eslint@8.29.0 + vue-eslint-parser: 9.1.0_eslint@8.30.0 docs: specifiers: @@ -89,15 +89,15 @@ importers: svelte-preprocess: ^4.10.7 vite: ^4.0.0 dependencies: - svelte: 3.54.0 + svelte: 3.55.0 devDependencies: '@histoire/plugin-svelte': link:../../packages/histoire-plugin-svelte - '@sveltejs/vite-plugin-svelte': 2.0.0_svelte@3.54.0+vite@4.0.0 + '@sveltejs/vite-plugin-svelte': 2.0.2_svelte@3.55.0+vite@4.0.2 cypress: 10.11.0 histoire: link:../../packages/histoire start-server-and-test: 1.15.2 - svelte-preprocess: 4.10.7_svelte@3.54.0 - vite: 4.0.0 + svelte-preprocess: 4.10.7_svelte@3.55.0 + vite: 4.0.2 examples/sveltekit: specifiers: @@ -120,15 +120,15 @@ importers: devDependencies: '@histoire/plugin-svelte': link:../../packages/histoire-plugin-svelte '@sveltejs/adapter-auto': 1.0.0-next.91_l5ueyfihz3gpzzvvyo2ean5u3e - '@sveltejs/kit': 1.0.0-next.589_svelte@3.54.0+vite@4.0.0 + '@sveltejs/kit': 1.0.0-next.589_svelte@3.55.0+vite@4.0.2 '@types/cookie': 0.5.1 histoire: link:../../packages/histoire - svelte: 3.54.0 - svelte-check: 2.10.2_svelte@3.54.0 - svelte-preprocess: 4.10.7_vjccw6zkwqrmxudvmy4reaayx4 + svelte: 3.55.0 + svelte-check: 2.10.2_svelte@3.55.0 + svelte-preprocess: 4.10.7_niwyv7xychq2ag6arq5eqxbomm tslib: 2.4.1 typescript: 4.9.4 - vite: 4.0.0 + vite: 4.0.2 examples/vue2: specifiers: @@ -142,9 +142,9 @@ importers: vue: 2.7.14 devDependencies: '@histoire/plugin-vue2': link:../../packages/histoire-plugin-vue2 - '@vitejs/plugin-vue2': 2.1.0_vite@4.0.0+vue@2.7.14 + '@vitejs/plugin-vue2': 2.2.0_vite@4.0.2+vue@2.7.14 histoire: link:../../packages/histoire - vite: 4.0.0 + vite: 4.0.2 vue-template-compiler: 2.7.14 examples/vue3: @@ -163,18 +163,18 @@ importers: vue: ^3.2.31 dependencies: lottie-web: 5.10.0 - pinia: 2.0.27_vue@3.2.45 + pinia: 2.0.28_vue@3.2.45 vue: 3.2.45 devDependencies: '@histoire/app': link:../../packages/histoire-app '@histoire/plugin-vue': link:../../packages/histoire-plugin-vue '@histoire/vendors': link:../../packages/histoire-vendors - '@vitejs/plugin-vue': 4.0.0_vite@4.0.0+vue@3.2.45 + '@vitejs/plugin-vue': 4.0.0_vite@4.0.2+vue@3.2.45 cypress: 9.7.0 histoire: link:../../packages/histoire - sass: 1.56.2 + sass: 1.57.0 start-server-and-test: 1.15.2 - vite: 4.0.0_sass@1.56.2 + vite: 4.0.2_sass@1.57.0 examples/vue3-percy: specifiers: @@ -189,9 +189,9 @@ importers: devDependencies: '@histoire/plugin-percy': link:../../packages/histoire-plugin-percy '@histoire/plugin-vue': link:../../packages/histoire-plugin-vue - '@vitejs/plugin-vue': 4.0.0_vite@4.0.0+vue@3.2.45 + '@vitejs/plugin-vue': 4.0.0_vite@4.0.2+vue@3.2.45 histoire: link:../../packages/histoire - vite: 4.0.0 + vite: 4.0.2 examples/vue3-screenshot: specifiers: @@ -206,9 +206,9 @@ importers: devDependencies: '@histoire/plugin-screenshot': link:../../packages/histoire-plugin-screenshot '@histoire/plugin-vue': link:../../packages/histoire-plugin-vue - '@vitejs/plugin-vue': 4.0.0_vite@4.0.0+vue@3.2.45 + '@vitejs/plugin-vue': 4.0.0_vite@4.0.2+vue@3.2.45 histoire: link:../../packages/histoire - vite: 4.0.0 + vite: 4.0.2 examples/vue3-themed: specifiers: @@ -221,9 +221,9 @@ importers: vue: 3.2.45 devDependencies: '@histoire/plugin-vue': link:../../packages/histoire-plugin-vue - '@vitejs/plugin-vue': 4.0.0_vite@4.0.0+vue@3.2.45 + '@vitejs/plugin-vue': 4.0.0_vite@4.0.2+vue@3.2.45 histoire: link:../../packages/histoire - vite: 4.0.0 + vite: 4.0.2 examples/vue3-vuetify: specifiers: @@ -238,13 +238,13 @@ importers: dependencies: '@mdi/font': 5.9.55 vue: 3.2.45 - vuetify: 3.0.4_ny5xcw2md7vsxw37otcxmygka4 + vuetify: 3.0.5_ny5xcw2md7vsxw37otcxmygka4 devDependencies: '@histoire/plugin-vue': link:../../packages/histoire-plugin-vue '@vitejs/plugin-vue': 2.3.4_vite@2.9.15+vue@3.2.45 histoire: link:../../packages/histoire vite: 2.9.15 - vite-plugin-vuetify: 1.0.0-alpha.12_6fvbykfru42ntqkibhp42cidqy + vite-plugin-vuetify: 1.0.0-alpha.12_ibyvml73pawao2tn3gik5jyc44 packages/histoire: specifiers: @@ -286,7 +286,7 @@ importers: tinypool: ^0.1.2 typescript: ^4.7.4 vite: ^4.0.0 - vite-node: 0.25.8 + vite-node: 0.26.0 dependencies: '@histoire/app': link:../histoire-app '@histoire/controls': link:../histoire-controls @@ -302,13 +302,13 @@ importers: diacritics: 1.3.0 flexsearch: 0.7.21 fs-extra: 10.1.0 - globby: 13.1.2 + globby: 13.1.3 gray-matter: 4.0.3 jiti: 1.16.0 jsdom: 20.0.3 markdown-it: 12.3.2 - markdown-it-anchor: 8.6.5_2zb4u3vubltivolgu556vv4aom - markdown-it-attrs: 4.1.4_markdown-it@12.3.2 + markdown-it-anchor: 8.6.6_2zb4u3vubltivolgu556vv4aom + markdown-it-attrs: 4.1.6_markdown-it@12.3.2 markdown-it-emoji: 2.0.2 micromatch: 4.0.5 mrmime: 1.0.1 @@ -318,16 +318,16 @@ importers: shiki: 0.11.1 sirv: 2.0.2 tinypool: 0.1.3 - vite-node: 0.25.8_@types+node@17.0.45 + vite-node: 0.26.0_@types+node@17.0.45 devDependencies: '@peeky/server': 0.14.0_@types+node@17.0.45 '@peeky/test': 0.14.1_7xgr23p2hp47ryj3a27pbosgwi '@types/fs-extra': 9.0.13 '@types/micromatch': 4.0.2 '@types/node': 17.0.45 - rollup: 3.7.0 + rollup: 3.7.5 typescript: 4.9.4 - vite: 4.0.0_@types+node@17.0.45 + vite: 4.0.2_@types+node@17.0.45 packages/histoire-app: specifiers: @@ -364,18 +364,18 @@ importers: '@tailwindcss/typography': 0.5.8_tailwindcss@3.2.4 '@types/fs-extra': 9.0.13 '@types/node': 17.0.45 - '@vitejs/plugin-vue': 4.0.0_vite@4.0.0+vue@3.2.45 - autoprefixer: 10.4.13_postcss@8.4.19 + '@vitejs/plugin-vue': 4.0.0_vite@4.0.2+vue@3.2.45 + autoprefixer: 10.4.13_postcss@8.4.20 chokidar: 3.5.3 concurrently: 7.6.0 fs-extra: 10.1.0 - globby: 13.1.2 + globby: 13.1.3 pathe: 0.2.0 - postcss: 8.4.19 - postcss-import: 14.1.0_postcss@8.4.19 - tailwindcss: 3.2.4_postcss@8.4.19 + postcss: 8.4.20 + postcss-import: 14.1.0_postcss@8.4.20 + tailwindcss: 3.2.4_postcss@8.4.20 typescript: 4.9.4 - vite: 4.0.0_@types+node@17.0.45 + vite: 4.0.2_@types+node@17.0.45 vue: 3.2.45 packages/histoire-controls: @@ -407,27 +407,27 @@ importers: dependencies: '@codemirror/commands': 6.1.2 '@codemirror/lang-json': 6.0.1 - '@codemirror/language': 6.3.1 + '@codemirror/language': 6.3.2 '@codemirror/lint': 6.1.0 '@codemirror/state': 6.1.4 '@codemirror/theme-one-dark': 6.1.0 - '@codemirror/view': 6.7.0 + '@codemirror/view': 6.7.1 '@histoire/vendors': link:../histoire-vendors devDependencies: '@peeky/server': 0.14.0_@types+node@17.0.45 '@peeky/test': 0.14.1_7xgr23p2hp47ryj3a27pbosgwi '@types/node': 17.0.45 - '@vitejs/plugin-vue': 4.0.0_vite@4.0.0+vue@3.2.45 + '@vitejs/plugin-vue': 4.0.0_vite@4.0.2+vue@3.2.45 '@vue/test-utils': 2.2.6_vue@3.2.45 '@vueuse/core': 8.9.4_vue@3.2.45 - autoprefixer: 10.4.13_postcss@8.4.19 + autoprefixer: 10.4.13_postcss@8.4.20 concurrently: 7.6.0 floating-vue: 2.0.0-beta.20_vue@3.2.45 - postcss: 8.4.19 - postcss-import: 14.1.0_postcss@8.4.19 - tailwindcss: 3.2.4_postcss@8.4.19 + postcss: 8.4.20 + postcss-import: 14.1.0_postcss@8.4.20 + tailwindcss: 3.2.4_postcss@8.4.20 typescript: 4.9.4 - vite: 4.0.0_@types+node@17.0.45 + vite: 4.0.2_@types+node@17.0.45 vue: 3.2.45 vue-tsc: 0.35.2_typescript@4.9.4 @@ -444,9 +444,9 @@ importers: vue: 3.2.45 devDependencies: '@histoire/plugin-vue': link:../histoire-plugin-vue - '@vitejs/plugin-vue': 4.0.0_vite@4.0.0+vue@3.2.45 + '@vitejs/plugin-vue': 4.0.0_vite@4.0.2+vue@3.2.45 histoire: link:../histoire - vite: 4.0.0 + vite: 4.0.2 packages/histoire-plugin-nuxt: specifiers: @@ -463,7 +463,7 @@ importers: '@types/node': 17.0.45 histoire: link:../histoire typescript: 4.9.4 - vite: 4.0.0_@types+node@17.0.45 + vite: 4.0.2_@types+node@17.0.45 packages/histoire-plugin-percy: specifiers: @@ -525,16 +525,16 @@ importers: '@histoire/shared': link:../histoire-shared '@histoire/vendors': link:../histoire-vendors devDependencies: - '@sveltejs/vite-plugin-svelte': 1.4.0_svelte@3.54.0+vite@4.0.0 + '@sveltejs/vite-plugin-svelte': 1.4.0_svelte@3.55.0+vite@4.0.2 '@types/node': 17.0.45 concurrently: 7.6.0 fs-extra: 10.1.0 - globby: 13.1.2 + globby: 13.1.3 histoire: link:../histoire - svelte: 3.54.0 - svelte-preprocess: 4.10.7_vjccw6zkwqrmxudvmy4reaayx4 + svelte: 3.55.0 + svelte-preprocess: 4.10.7_niwyv7xychq2ag6arq5eqxbomm typescript: 4.9.4 - vite: 4.0.0_@types+node@17.0.45 + vite: 4.0.2_@types+node@17.0.45 packages/histoire-plugin-vue: specifiers: @@ -557,10 +557,10 @@ importers: '@types/node': 17.0.45 change-case: 4.1.2 concurrently: 7.6.0 - globby: 13.1.2 + globby: 13.1.3 histoire: link:../histoire typescript: 4.9.4 - vite: 4.0.0_@types+node@17.0.45 + vite: 4.0.2_@types+node@17.0.45 vue: 3.2.45 packages/histoire-plugin-vue2: @@ -584,10 +584,10 @@ importers: '@types/node': 17.0.45 change-case: 4.1.2 concurrently: 7.6.0 - globby: 13.1.2 + globby: 13.1.3 histoire: link:../histoire typescript: 4.9.4 - vite: 4.0.0_@types+node@17.0.45 + vite: 4.0.2_@types+node@17.0.45 vue: 2.7.14 packages/histoire-shared: @@ -607,7 +607,7 @@ importers: picocolors: 1.0.0 devDependencies: typescript: 4.9.4 - vite: 4.0.0 + vite: 4.0.2 packages/histoire-vendors: specifiers: @@ -629,17 +629,17 @@ importers: vue-router: ^4.0.14 devDependencies: '@iconify/vue': 3.2.1_vue@3.2.45 - '@rollup/plugin-commonjs': 23.0.4_rollup@3.7.0 - '@rollup/plugin-node-resolve': 15.0.1_rollup@3.7.0 - '@types/node': 18.11.12 + '@rollup/plugin-commonjs': 23.0.7_rollup@3.7.5 + '@rollup/plugin-node-resolve': 15.0.1_rollup@3.7.5 + '@types/node': 18.11.17 '@vueuse/core': 8.9.4_vue@3.2.45 execa: 6.1.0 floating-vue: 2.0.0-beta.20_vue@3.2.45 fs-extra: 10.1.0 - globby: 13.1.2 - pinia: 2.0.27_prq2uz4lho2pwp6irk4cfkrxwu - rollup: 3.7.0 - rollup-plugin-typescript2: 0.34.1_nv3cvulfrssbbv5jon74ek7f7i + globby: 13.1.3 + pinia: 2.0.28_prq2uz4lho2pwp6irk4cfkrxwu + rollup: 3.7.5 + rollup-plugin-typescript2: 0.34.1_oj4jlwi3mkekxo3vucumcwebnq scroll-into-view-if-needed: 2.2.31 typescript: 4.9.4 vue: 3.2.45 @@ -940,7 +940,7 @@ packages: convert-source-map: 1.9.0 debug: 4.3.4 gensync: 1.0.0-beta.2 - json5: 2.2.1 + json5: 2.2.2 semver: 6.3.0 transitivePeerDependencies: - supports-color @@ -1227,24 +1227,24 @@ packages: /@codemirror/commands/6.1.2: resolution: {integrity: sha512-sO3jdX1s0pam6lIdeSJLMN3DQ6mPEbM4yLvyKkdqtmd/UDwhXA5+AwFJ89rRXm6vTeOXBsE5cAmlos/t7MJdgg==} dependencies: - '@codemirror/language': 6.3.1 + '@codemirror/language': 6.3.2 '@codemirror/state': 6.1.4 - '@codemirror/view': 6.7.0 + '@codemirror/view': 6.7.1 '@lezer/common': 1.0.2 dev: false /@codemirror/lang-json/6.0.1: resolution: {integrity: sha512-+T1flHdgpqDDlJZ2Lkil/rLiRy684WMLc74xUnjJH48GQdfJo/pudlTRreZmKwzP8/tGdKf83wlbAdOCzlJOGQ==} dependencies: - '@codemirror/language': 6.3.1 + '@codemirror/language': 6.3.2 '@lezer/json': 1.0.0 dev: false - /@codemirror/language/6.3.1: - resolution: {integrity: sha512-MK+G1QKaGfSEUg9YEFaBkMBI6j1ge4VMBPZv9fDYotw7w695c42x5Ba1mmwBkesYnzYFBfte6Hh9TDcKa6xORQ==} + /@codemirror/language/6.3.2: + resolution: {integrity: sha512-g42uHhOcEMAXjmozGG+rdom5UsbyfMxQFh7AbkeoaNImddL6Xt4cQDL0+JxmG7+as18rUAvZaqzP/TjsciVIrA==} dependencies: '@codemirror/state': 6.1.4 - '@codemirror/view': 6.7.0 + '@codemirror/view': 6.7.1 '@lezer/common': 1.0.2 '@lezer/highlight': 1.1.3 '@lezer/lr': 1.2.5 @@ -1255,7 +1255,7 @@ packages: resolution: {integrity: sha512-mdvDQrjRmYPvQ3WrzF6Ewaao+NWERYtpthJvoQ3tK3t/44Ynhk8ZGjTSL9jMEv8CgSMogmt75X8ceOZRDSXHtQ==} dependencies: '@codemirror/state': 6.1.4 - '@codemirror/view': 6.7.0 + '@codemirror/view': 6.7.1 crelt: 1.0.5 dev: false @@ -1266,14 +1266,14 @@ packages: /@codemirror/theme-one-dark/6.1.0: resolution: {integrity: sha512-AiTHtFRu8+vWT9wWUWDM+cog6ZwgivJogB1Tm/g40NIpLwph7AnmxrSzWfvJN5fBVufsuwBxecQCNmdcR5D7Aw==} dependencies: - '@codemirror/language': 6.3.1 + '@codemirror/language': 6.3.2 '@codemirror/state': 6.1.4 - '@codemirror/view': 6.7.0 + '@codemirror/view': 6.7.1 '@lezer/highlight': 1.1.3 dev: false - /@codemirror/view/6.7.0: - resolution: {integrity: sha512-sI3CngHQlguxAquc2oZ4sMFDgTJiCnKkRcFmw5apqcnNLvQfQtEDIlYvCVl1adJ6UV7ZUV9wOdqkeJ8kz2+5gg==} + /@codemirror/view/6.7.1: + resolution: {integrity: sha512-kYtS+uqYw/q/0ytYxpkqE1JVuK5NsbmBklWYhwLFTKO9gVuTdh/kDEeZPKorbqHcJ+P+ucrhcsS1czVweOpT2g==} dependencies: '@codemirror/state': 6.1.4 style-mod: 4.0.0 @@ -1287,14 +1287,14 @@ packages: dev: true optional: true - /@csstools/selector-specificity/2.0.2_tbwh2mpcdwdeb2slx6bobindua: + /@csstools/selector-specificity/2.0.2_2xshye3abirqjlplmebvmaxyna: 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.19 + postcss: 8.4.20 postcss-selector-parser: 6.0.11 dev: true @@ -1378,80 +1378,80 @@ packages: dev: true optional: true - /@esbuild/android-arm/0.16.3: - resolution: {integrity: sha512-mueuEoh+s1eRbSJqq9KNBQwI4QhQV6sRXIfTyLXSHGMpyew61rOK4qY21uKbXl1iBoMb0AdL1deWFCQVlN2qHA==} + /@esbuild/android-arm/0.16.9: + resolution: {integrity: sha512-kW5ccqWHVOOTGUkkJbtfoImtqu3kA1PFkivM+9QPFSHphPfPBlBalX9eDRqPK+wHCqKhU48/78T791qPgC9e9A==} engines: {node: '>=12'} cpu: [arm] os: [android] requiresBuild: true optional: true - /@esbuild/android-arm64/0.16.3: - resolution: {integrity: sha512-RolFVeinkeraDvN/OoRf1F/lP0KUfGNb5jxy/vkIMeRRChkrX/HTYN6TYZosRJs3a1+8wqpxAo5PI5hFmxyPRg==} + /@esbuild/android-arm64/0.16.9: + resolution: {integrity: sha512-ndIAZJUeLx4O+4AJbFQCurQW4VRUXjDsUvt1L+nP8bVELOWdmdCEOtlIweCUE6P+hU0uxYbEK2AEP0n5IVQvhg==} engines: {node: '>=12'} cpu: [arm64] os: [android] requiresBuild: true optional: true - /@esbuild/android-x64/0.16.3: - resolution: {integrity: sha512-SFpTUcIT1bIJuCCBMCQWq1bL2gPTjWoLZdjmIhjdcQHaUfV41OQfho6Ici5uvvkMmZRXIUGpM3GxysP/EU7ifQ==} + /@esbuild/android-x64/0.16.9: + resolution: {integrity: sha512-UbMcJB4EHrAVOnknQklREPgclNU2CPet2h+sCBCXmF2mfoYWopBn/CfTfeyOkb/JglOcdEADqAljFndMKnFtOw==} engines: {node: '>=12'} cpu: [x64] os: [android] requiresBuild: true optional: true - /@esbuild/darwin-arm64/0.16.3: - resolution: {integrity: sha512-DO8WykMyB+N9mIDfI/Hug70Dk1KipavlGAecxS3jDUwAbTpDXj0Lcwzw9svkhxfpCagDmpaTMgxWK8/C/XcXvw==} + /@esbuild/darwin-arm64/0.16.9: + resolution: {integrity: sha512-d7D7/nrt4CxPul98lx4PXhyNZwTYtbdaHhOSdXlZuu5zZIznjqtMqLac8Bv+IuT6SVHiHUwrkL6ywD7mOgLW+A==} engines: {node: '>=12'} cpu: [arm64] os: [darwin] requiresBuild: true optional: true - /@esbuild/darwin-x64/0.16.3: - resolution: {integrity: sha512-uEqZQ2omc6BvWqdCiyZ5+XmxuHEi1SPzpVxXCSSV2+Sh7sbXbpeNhHIeFrIpRjAs0lI1FmA1iIOxFozKBhKgRQ==} + /@esbuild/darwin-x64/0.16.9: + resolution: {integrity: sha512-LZc+Wlz06AkJYtwWsBM3x2rSqTG8lntDuftsUNQ3fCx9ZttYtvlDcVtgb+NQ6t9s6K5No5zutN3pcjZEC2a4iQ==} engines: {node: '>=12'} cpu: [x64] os: [darwin] requiresBuild: true optional: true - /@esbuild/freebsd-arm64/0.16.3: - resolution: {integrity: sha512-nJansp3sSXakNkOD5i5mIz2Is/HjzIhFs49b1tjrPrpCmwgBmH9SSzhC/Z1UqlkivqMYkhfPwMw1dGFUuwmXhw==} + /@esbuild/freebsd-arm64/0.16.9: + resolution: {integrity: sha512-gIj0UQZlQo93CHYouHKkpzP7AuruSaMIm1etcWIxccFEVqCN1xDr6BWlN9bM+ol/f0W9w3hx3HDuEwcJVtGneQ==} engines: {node: '>=12'} cpu: [arm64] os: [freebsd] requiresBuild: true optional: true - /@esbuild/freebsd-x64/0.16.3: - resolution: {integrity: sha512-TfoDzLw+QHfc4a8aKtGSQ96Wa+6eimljjkq9HKR0rHlU83vw8aldMOUSJTUDxbcUdcgnJzPaX8/vGWm7vyV7ug==} + /@esbuild/freebsd-x64/0.16.9: + resolution: {integrity: sha512-GNors4vaMJ7lzGOuhzNc7jvgsQZqErGA8rsW+nck8N1nYu86CvsJW2seigVrQQWOV4QzEP8Zf3gm+QCjA2hnBQ==} engines: {node: '>=12'} cpu: [x64] os: [freebsd] requiresBuild: true optional: true - /@esbuild/linux-arm/0.16.3: - resolution: {integrity: sha512-VwswmSYwVAAq6LysV59Fyqk3UIjbhuc6wb3vEcJ7HEJUtFuLK9uXWuFoH1lulEbE4+5GjtHi3MHX+w1gNHdOWQ==} + /@esbuild/linux-arm/0.16.9: + resolution: {integrity: sha512-cNx1EF99c2t1Ztn0lk9N+MuwBijGF8mH6nx9GFsB3e0lpUpPkCE/yt5d+7NP9EwJf5uzqdjutgVYoH1SNqzudA==} engines: {node: '>=12'} cpu: [arm] os: [linux] requiresBuild: true optional: true - /@esbuild/linux-arm64/0.16.3: - resolution: {integrity: sha512-7I3RlsnxEFCHVZNBLb2w7unamgZ5sVwO0/ikE2GaYvYuUQs9Qte/w7TqWcXHtCwxvZx/2+F97ndiUQAWs47ZfQ==} + /@esbuild/linux-arm64/0.16.9: + resolution: {integrity: sha512-YPxQunReYp8RQ1FvexFrOEqqf+nLbS3bKVZF5FRT2uKM7Wio7BeATqAwO02AyrdSEntt3I5fhFsujUChIa8CZg==} engines: {node: '>=12'} cpu: [arm64] os: [linux] requiresBuild: true optional: true - /@esbuild/linux-ia32/0.16.3: - resolution: {integrity: sha512-X8FDDxM9cqda2rJE+iblQhIMYY49LfvW4kaEjoFbTTQ4Go8G96Smj2w3BRTwA8IHGoi9dPOPGAX63dhuv19UqA==} + /@esbuild/linux-ia32/0.16.9: + resolution: {integrity: sha512-zb12ixDIKNwFpIqR00J88FFitVwOEwO78EiUi8wi8FXlmSc3GtUuKV/BSO+730Kglt0B47+ZrJN1BhhOxZaVrw==} engines: {node: '>=12'} cpu: [ia32] os: [linux] @@ -1475,111 +1475,111 @@ packages: dev: true optional: true - /@esbuild/linux-loong64/0.16.3: - resolution: {integrity: sha512-hIbeejCOyO0X9ujfIIOKjBjNAs9XD/YdJ9JXAy1lHA+8UXuOqbFe4ErMCqMr8dhlMGBuvcQYGF7+kO7waj2KHw==} + /@esbuild/linux-loong64/0.16.9: + resolution: {integrity: sha512-X8te4NLxtHiNT6H+4Pfm5RklzItA1Qy4nfyttihGGX+Koc53Ar20ViC+myY70QJ8PDEOehinXZj/F7QK3A+MKQ==} engines: {node: '>=12'} cpu: [loong64] os: [linux] requiresBuild: true optional: true - /@esbuild/linux-mips64el/0.16.3: - resolution: {integrity: sha512-znFRzICT/V8VZQMt6rjb21MtAVJv/3dmKRMlohlShrbVXdBuOdDrGb+C2cZGQAR8RFyRe7HS6klmHq103WpmVw==} + /@esbuild/linux-mips64el/0.16.9: + resolution: {integrity: sha512-ZqyMDLt02c5smoS3enlF54ndK5zK4IpClLTxF0hHfzHJlfm4y8IAkIF8LUW0W7zxcKy7oAwI7BRDqeVvC120SA==} engines: {node: '>=12'} cpu: [mips64el] os: [linux] requiresBuild: true optional: true - /@esbuild/linux-ppc64/0.16.3: - resolution: {integrity: sha512-EV7LuEybxhXrVTDpbqWF2yehYRNz5e5p+u3oQUS2+ZFpknyi1NXxr8URk4ykR8Efm7iu04//4sBg249yNOwy5Q==} + /@esbuild/linux-ppc64/0.16.9: + resolution: {integrity: sha512-k+ca5W5LDBEF3lfDwMV6YNXwm4wEpw9krMnNvvlNz3MrKSD2Eb2c861O0MaKrZkG/buTQAP4vkavbLwgIe6xjg==} engines: {node: '>=12'} cpu: [ppc64] os: [linux] requiresBuild: true optional: true - /@esbuild/linux-riscv64/0.16.3: - resolution: {integrity: sha512-uDxqFOcLzFIJ+r/pkTTSE9lsCEaV/Y6rMlQjUI9BkzASEChYL/aSQjZjchtEmdnVxDKETnUAmsaZ4pqK1eE5BQ==} + /@esbuild/linux-riscv64/0.16.9: + resolution: {integrity: sha512-GuInVdogjmg9DhgkEmNipHkC+3tzkanPJzgzTC2ihsvrruLyFoR1YrTGixblNSMPudQLpiqkcwGwwe0oqfrvfA==} engines: {node: '>=12'} cpu: [riscv64] os: [linux] requiresBuild: true optional: true - /@esbuild/linux-s390x/0.16.3: - resolution: {integrity: sha512-NbeREhzSxYwFhnCAQOQZmajsPYtX71Ufej3IQ8W2Gxskfz9DK58ENEju4SbpIj48VenktRASC52N5Fhyf/aliQ==} + /@esbuild/linux-s390x/0.16.9: + resolution: {integrity: sha512-49wQ0aYkvwXonGsxc7LuuLNICMX8XtO92Iqmug5Qau0kpnV6SP34jk+jIeu4suHwAbSbRhVFtDv75yRmyfQcHw==} engines: {node: '>=12'} cpu: [s390x] os: [linux] requiresBuild: true optional: true - /@esbuild/linux-x64/0.16.3: - resolution: {integrity: sha512-SDiG0nCixYO9JgpehoKgScwic7vXXndfasjnD5DLbp1xltANzqZ425l7LSdHynt19UWOcDjG9wJJzSElsPvk0w==} + /@esbuild/linux-x64/0.16.9: + resolution: {integrity: sha512-Nx4oKEAJ6EcQlt4dK7qJyuZUoXZG7CAeY22R7rqZijFzwFfMOD+gLP56uV7RrV86jGf8PeRY8TBsRmOcZoG42w==} engines: {node: '>=12'} cpu: [x64] os: [linux] requiresBuild: true optional: true - /@esbuild/netbsd-x64/0.16.3: - resolution: {integrity: sha512-AzbsJqiHEq1I/tUvOfAzCY15h4/7Ivp3ff/o1GpP16n48JMNAtbW0qui2WCgoIZArEHD0SUQ95gvR0oSO7ZbdA==} + /@esbuild/netbsd-x64/0.16.9: + resolution: {integrity: sha512-d0WnpgJ+FTiMZXEQ1NOv9+0gvEhttbgKEvVqWWAtl1u9AvlspKXbodKHzQ5MLP6YV1y52Xp+p8FMYqj8ykTahg==} engines: {node: '>=12'} cpu: [x64] os: [netbsd] requiresBuild: true optional: true - /@esbuild/openbsd-x64/0.16.3: - resolution: {integrity: sha512-gSABi8qHl8k3Cbi/4toAzHiykuBuWLZs43JomTcXkjMZVkp0gj3gg9mO+9HJW/8GB5H89RX/V0QP4JGL7YEEVg==} + /@esbuild/openbsd-x64/0.16.9: + resolution: {integrity: sha512-jccK11278dvEscHFfMk5EIPjF4wv1qGD0vps7mBV1a6TspdR36O28fgPem/SA/0pcsCPHjww5ouCLwP+JNAFlw==} engines: {node: '>=12'} cpu: [x64] os: [openbsd] requiresBuild: true optional: true - /@esbuild/sunos-x64/0.16.3: - resolution: {integrity: sha512-SF9Kch5Ete4reovvRO6yNjMxrvlfT0F0Flm+NPoUw5Z4Q3r1d23LFTgaLwm3Cp0iGbrU/MoUI+ZqwCv5XJijCw==} + /@esbuild/sunos-x64/0.16.9: + resolution: {integrity: sha512-OetwTSsv6mIDLqN7I7I2oX9MmHGwG+AP+wKIHvq+6sIHwcPPJqRx+DJB55jy9JG13CWcdcQno/7V5MTJ5a0xfQ==} engines: {node: '>=12'} cpu: [x64] os: [sunos] requiresBuild: true optional: true - /@esbuild/win32-arm64/0.16.3: - resolution: {integrity: sha512-u5aBonZIyGopAZyOnoPAA6fGsDeHByZ9CnEzyML9NqntK6D/xl5jteZUKm/p6nD09+v3pTM6TuUIqSPcChk5gg==} + /@esbuild/win32-arm64/0.16.9: + resolution: {integrity: sha512-tKSSSK6unhxbGbHg+Cc+JhRzemkcsX0tPBvG0m5qsWbkShDK9c+/LSb13L18LWVdOQZwuA55Vbakxmt6OjBDOQ==} engines: {node: '>=12'} cpu: [arm64] os: [win32] requiresBuild: true optional: true - /@esbuild/win32-ia32/0.16.3: - resolution: {integrity: sha512-GlgVq1WpvOEhNioh74TKelwla9KDuAaLZrdxuuUgsP2vayxeLgVc+rbpIv0IYF4+tlIzq2vRhofV+KGLD+37EQ==} + /@esbuild/win32-ia32/0.16.9: + resolution: {integrity: sha512-ZTQ5vhNS5gli0KK8I6/s6+LwXmNEfq1ftjnSVyyNm33dBw8zDpstqhGXYUbZSWWLvkqiRRjgxgmoncmi6Yy7Ng==} engines: {node: '>=12'} cpu: [ia32] os: [win32] requiresBuild: true optional: true - /@esbuild/win32-x64/0.16.3: - resolution: {integrity: sha512-5/JuTd8OWW8UzEtyf19fbrtMJENza+C9JoPIkvItgTBQ1FO2ZLvjbPO6Xs54vk0s5JB5QsfieUEshRQfu7ZHow==} + /@esbuild/win32-x64/0.16.9: + resolution: {integrity: sha512-C4ZX+YFIp6+lPrru3tpH6Gaapy8IBRHw/e7l63fzGDhn/EaiGpQgbIlT5paByyy+oMvRFQoxxyvC4LE0AjJMqQ==} engines: {node: '>=12'} cpu: [x64] os: [win32] requiresBuild: true optional: true - /@eslint/eslintrc/1.3.3: - resolution: {integrity: sha512-uj3pT6Mg+3t39fvLrj8iuCIJ38zKO9FpGtJ4BBJebJhEwjoT+KLVNCcHT5QC9NGRIEi7fZ0ZR8YRb884auB4Lg==} + /@eslint/eslintrc/1.4.0: + resolution: {integrity: sha512-7yfvXy6MWLgWSFsLhz5yH3iQ52St8cdUY6FoGieKkRDVxuxmrNuUetIuu6cmjNWwniUHiWXjxCr5tTXDrbYS5A==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: ajv: 6.12.6 debug: 4.3.4 espree: 9.4.1 - globals: 13.18.0 - ignore: 5.2.1 + globals: 13.19.0 + ignore: 5.2.2 import-fresh: 3.3.0 js-yaml: 4.1.0 minimatch: 3.1.2 @@ -1686,8 +1686,8 @@ packages: '@hapi/hoek': 9.3.0 dev: true - /@humanwhocodes/config-array/0.11.7: - resolution: {integrity: sha512-kBbPWzN8oVMLb0hOUYXhmxggL/1cJE6ydvjDIGi9EnAGUyA7cLVKQg+d/Dsm+KZwx2czGHrCmMVLiyg8s5JPKw==} + /@humanwhocodes/config-array/0.11.8: + resolution: {integrity: sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==} engines: {node: '>=10.10.0'} dependencies: '@humanwhocodes/object-schema': 1.2.1 @@ -1904,9 +1904,9 @@ packages: c12: 1.1.0 consola: 2.15.3 defu: 6.1.1 - globby: 13.1.2 + globby: 13.1.3 hash-sum: 2.0.0 - ignore: 5.2.1 + ignore: 5.2.2 jiti: 1.16.0 knitwork: 1.0.0 lodash.template: 4.5.0 @@ -1916,8 +1916,8 @@ packages: scule: 1.0.0 semver: 7.3.8 unctx: 2.1.1 - unimport: 1.0.1 - untyped: 1.0.0 + unimport: 1.0.2 + untyped: 1.2.0 transitivePeerDependencies: - rollup - supports-color @@ -1930,9 +1930,9 @@ packages: c12: 1.1.0 consola: 2.15.3 defu: 6.1.1 - globby: 13.1.2 + globby: 13.1.3 hash-sum: 2.0.0 - ignore: 5.2.1 + ignore: 5.2.2 jiti: 1.16.0 knitwork: 1.0.0 lodash.template: 4.5.0 @@ -1942,8 +1942,8 @@ packages: scule: 1.0.0 semver: 7.3.8 unctx: 2.1.1 - unimport: 1.0.1_rollup@2.79.1 - untyped: 1.0.0 + unimport: 1.0.2_rollup@2.79.1 + untyped: 1.2.0 transitivePeerDependencies: - rollup - supports-color @@ -1952,13 +1952,13 @@ packages: /@nuxt/postcss8/1.1.3: resolution: {integrity: sha512-CdHtErhvQwueNZPBOmlAAKrNCK7aIpZDYhtS7TzXlSgPHHox1g3cSlf+Ke9oB/8t4mNNjdB+prclme2ibuCOEA==} dependencies: - autoprefixer: 10.4.13_postcss@8.4.19 + autoprefixer: 10.4.13_postcss@8.4.20 css-loader: 5.2.7 defu: 3.2.2 - postcss: 8.4.19 - postcss-import: 13.0.0_postcss@8.4.19 - postcss-loader: 4.3.0_postcss@8.4.19 - postcss-url: 10.1.3_postcss@8.4.19 + postcss: 8.4.20 + postcss-import: 13.0.0_postcss@8.4.20 + postcss-loader: 4.3.0_postcss@8.4.20 + postcss-url: 10.1.3_postcss@8.4.20 semver: 7.3.8 transitivePeerDependencies: - webpack @@ -1978,8 +1978,8 @@ packages: scule: 1.0.0 std-env: 3.3.1 ufo: 1.0.1 - unimport: 1.0.1 - untyped: 1.0.0 + unimport: 1.0.2 + untyped: 1.2.0 transitivePeerDependencies: - rollup - supports-color @@ -1998,8 +1998,8 @@ packages: scule: 1.0.0 std-env: 3.3.1 ufo: 1.0.1 - unimport: 1.0.1_rollup@2.79.1 - untyped: 1.0.0 + unimport: 1.0.2_rollup@2.79.1 + untyped: 1.2.0 transitivePeerDependencies: - rollup - supports-color @@ -2048,12 +2048,12 @@ packages: optional: true dependencies: '@nuxt/kit': 3.0.0_rollup@2.79.1 - '@rollup/plugin-replace': 5.0.1_rollup@2.79.1 + '@rollup/plugin-replace': 5.0.2_rollup@2.79.1 '@vitejs/plugin-vue': 3.2.0_vite@3.2.5+vue@3.2.45 '@vitejs/plugin-vue-jsx': 2.1.1_vite@3.2.5+vue@3.2.45 - autoprefixer: 10.4.13_postcss@8.4.19 + autoprefixer: 10.4.13_postcss@8.4.20 chokidar: 3.5.3 - cssnano: 5.1.14_postcss@8.4.19 + cssnano: 5.1.14_postcss@8.4.20 defu: 6.1.1 esbuild: 0.15.18 escape-string-regexp: 5.0.0 @@ -2061,7 +2061,7 @@ packages: externality: 1.0.0 fs-extra: 10.1.0 get-port-please: 2.6.1 - h3: 1.0.1 + h3: 1.0.2 knitwork: 1.0.0 magic-string: 0.26.7 mlly: 1.0.0 @@ -2069,23 +2069,26 @@ packages: pathe: 1.0.0 perfect-debounce: 0.1.3 pkg-types: 1.0.1 - postcss: 8.4.19 - postcss-import: 15.1.0_postcss@8.4.19 - postcss-url: 10.1.3_postcss@8.4.19 + postcss: 8.4.20 + postcss-import: 15.1.0_postcss@8.4.20 + postcss-url: 10.1.3_postcss@8.4.20 rollup: 2.79.1 rollup-plugin-visualizer: 5.8.3_rollup@2.79.1 ufo: 1.0.1 - unplugin: 1.0.0 + unplugin: 1.0.1 vite: 3.2.5 vite-node: 0.25.8 - vite-plugin-checker: 0.5.1_vite@3.2.5 + vite-plugin-checker: 0.5.2_vite@3.2.5 vue: 3.2.45 vue-bundle-renderer: 1.0.0 transitivePeerDependencies: - '@types/node' - eslint - less + - meow + - optionator - sass + - stylelint - stylus - sugarss - supports-color @@ -2100,16 +2103,16 @@ packages: dependencies: '@nuxt/kit': 3.0.0 '@nuxt/postcss8': 1.1.3 - autoprefixer: 10.4.13_postcss@8.4.19 + autoprefixer: 10.4.13_postcss@8.4.20 chalk: 5.2.0 clear-module: 4.1.2 consola: 2.15.3 defu: 6.1.1 - postcss: 8.4.19 - postcss-custom-properties: 12.1.11_postcss@8.4.19 - postcss-nesting: 10.2.0_postcss@8.4.19 + postcss: 8.4.20 + postcss-custom-properties: 12.1.11_postcss@8.4.20 + postcss-nesting: 10.2.0_postcss@8.4.20 tailwind-config-viewer: 1.7.2_tailwindcss@3.2.4 - tailwindcss: 3.2.4_postcss@8.4.19 + tailwindcss: 3.2.4_postcss@8.4.20 ufo: 0.8.6 transitivePeerDependencies: - rollup @@ -2392,8 +2395,8 @@ packages: slash: 4.0.0 dev: true - /@rollup/plugin-commonjs/23.0.4_rollup@2.79.1: - resolution: {integrity: sha512-bOPJeTZg56D2MCm+TT4psP8e8Jmf1Jsi7pFUMl8BN5kOADNzofNHe47+84WVCt7D095xPghC235/YKuNDEhczg==} + /@rollup/plugin-commonjs/23.0.7_rollup@2.79.1: + resolution: {integrity: sha512-hsSD5Qzyuat/swzrExGG5l7EuIlPhwTsT7KwKbSCQzIcJWjRxiimi/0tyMYY2bByitNb3i1p+6JWEDGa0NvT0Q==} engines: {node: '>=14.0.0'} peerDependencies: rollup: ^2.68.0||^3.0.0 @@ -2406,12 +2409,12 @@ packages: estree-walker: 2.0.2 glob: 8.0.3 is-reference: 1.2.1 - magic-string: 0.26.7 + magic-string: 0.27.0 rollup: 2.79.1 dev: true - /@rollup/plugin-commonjs/23.0.4_rollup@3.7.0: - resolution: {integrity: sha512-bOPJeTZg56D2MCm+TT4psP8e8Jmf1Jsi7pFUMl8BN5kOADNzofNHe47+84WVCt7D095xPghC235/YKuNDEhczg==} + /@rollup/plugin-commonjs/23.0.7_rollup@3.7.5: + resolution: {integrity: sha512-hsSD5Qzyuat/swzrExGG5l7EuIlPhwTsT7KwKbSCQzIcJWjRxiimi/0tyMYY2bByitNb3i1p+6JWEDGa0NvT0Q==} engines: {node: '>=14.0.0'} peerDependencies: rollup: ^2.68.0||^3.0.0 @@ -2419,17 +2422,17 @@ packages: rollup: optional: true dependencies: - '@rollup/pluginutils': 5.0.2_rollup@3.7.0 + '@rollup/pluginutils': 5.0.2_rollup@3.7.5 commondir: 1.0.1 estree-walker: 2.0.2 glob: 8.0.3 is-reference: 1.2.1 - magic-string: 0.26.7 - rollup: 3.7.0 + magic-string: 0.27.0 + rollup: 3.7.5 dev: true - /@rollup/plugin-inject/5.0.2_rollup@2.79.1: - resolution: {integrity: sha512-zRthPC/sZ2OaQwPh2LvFn0A+3SyMAZR1Vqsp89mWkIuGXKswT8ty1JWj1pf7xdZvft4gHZaCuhdopuiCwjclWg==} + /@rollup/plugin-inject/5.0.3_rollup@2.79.1: + resolution: {integrity: sha512-411QlbL+z2yXpRWFXSmw/teQRMkXcAAC8aYTemc15gwJRpvEVDQwoe+N/HTFD8RFG8+88Bme9DK2V9CVm7hJdA==} engines: {node: '>=14.0.0'} peerDependencies: rollup: ^1.20.0||^2.0.0||^3.0.0 @@ -2439,7 +2442,7 @@ packages: dependencies: '@rollup/pluginutils': 5.0.2_rollup@2.79.1 estree-walker: 2.0.2 - magic-string: 0.26.7 + magic-string: 0.27.0 rollup: 2.79.1 dev: true @@ -2474,7 +2477,7 @@ packages: rollup: 2.79.1 dev: true - /@rollup/plugin-node-resolve/15.0.1_rollup@3.7.0: + /@rollup/plugin-node-resolve/15.0.1_rollup@3.7.5: resolution: {integrity: sha512-ReY88T7JhJjeRVbfCyNj+NXAG3IIsVMsX9b5/9jC98dRP8/yxlZdz7mHZbHk5zHr24wZZICS5AcXsFZAXYUQEg==} engines: {node: '>=14.0.0'} peerDependencies: @@ -2483,17 +2486,17 @@ packages: rollup: optional: true dependencies: - '@rollup/pluginutils': 5.0.2_rollup@3.7.0 + '@rollup/pluginutils': 5.0.2_rollup@3.7.5 '@types/resolve': 1.20.2 deepmerge: 4.2.2 is-builtin-module: 3.2.0 is-module: 1.0.0 resolve: 1.22.1 - rollup: 3.7.0 + rollup: 3.7.5 dev: true - /@rollup/plugin-replace/5.0.1_rollup@2.79.1: - resolution: {integrity: sha512-Z3MfsJ4CK17BfGrZgvrcp/l6WXoKb0kokULO+zt/7bmcyayokDaQ2K3eDJcRLCTAlp5FPI4/gz9MHAsosz4Rag==} + /@rollup/plugin-replace/5.0.2_rollup@2.79.1: + resolution: {integrity: sha512-M9YXNekv/C/iHHK+cvORzfRYfPbq0RDD8r0G+bMiTXjNGKulPnCT9O3Ss46WfhI6ZOCgApOP7xAdmCQJ+U2LAA==} engines: {node: '>=14.0.0'} peerDependencies: rollup: ^1.20.0||^2.0.0||^3.0.0 @@ -2502,12 +2505,12 @@ packages: optional: true dependencies: '@rollup/pluginutils': 5.0.2_rollup@2.79.1 - magic-string: 0.26.7 + magic-string: 0.27.0 rollup: 2.79.1 dev: true - /@rollup/plugin-wasm/6.0.1_rollup@2.79.1: - resolution: {integrity: sha512-a5yRknFQG/QGhb1xGkazWXgjpsv0hhWlx34irsf5adMEo55NdpzhZLg+jx49u+bzH6ekktuFg2WKA1RAF+WEDQ==} + /@rollup/plugin-wasm/6.1.1_rollup@2.79.1: + resolution: {integrity: sha512-dccyb8OvtpY21KiYjaNmibWlQJd/kBg+IVP24x9l1dsIRXBmGqLt+wsPjU296FNO8ap0SSEsTpi/7AfrlvQvBQ==} engines: {node: '>=14.0.0'} peerDependencies: rollup: ^1.20.0||^2.0.0||^3.0.0 @@ -2554,7 +2557,7 @@ packages: rollup: 2.79.1 dev: true - /@rollup/pluginutils/5.0.2_rollup@3.7.0: + /@rollup/pluginutils/5.0.2_rollup@3.7.5: resolution: {integrity: sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==} engines: {node: '>=14.0.0'} peerDependencies: @@ -2566,7 +2569,7 @@ packages: '@types/estree': 1.0.0 estree-walker: 2.0.2 picomatch: 2.3.1 - rollup: 3.7.0 + rollup: 3.7.5 dev: true /@sefinek/random-emoji/1.4.5: @@ -2579,8 +2582,8 @@ packages: '@hapi/hoek': 9.3.0 dev: true - /@sideway/formula/3.0.0: - resolution: {integrity: sha512-vHe7wZ4NOXVfkoRb8T5otiENVlT7a3IAiw7H5M2+GO+9CDgcVUUsX1zalAztCmwyOr2RUTGJdgB+ZvSVqmdHmg==} + /@sideway/formula/3.0.1: + resolution: {integrity: sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==} dev: true /@sideway/pinpoint/2.0.0: @@ -2632,11 +2635,11 @@ packages: peerDependencies: '@sveltejs/kit': ^1.0.0-next.587 dependencies: - '@sveltejs/kit': 1.0.0-next.589_svelte@3.54.0+vite@4.0.0 + '@sveltejs/kit': 1.0.0-next.589_svelte@3.55.0+vite@4.0.2 import-meta-resolve: 2.2.0 dev: true - /@sveltejs/kit/1.0.0-next.589_svelte@3.54.0+vite@4.0.0: + /@sveltejs/kit/1.0.0-next.589_svelte@3.55.0+vite@4.0.2: resolution: {integrity: sha512-5ABRw46z9B+cCe/YWhcx+I/azNZg1NCDEkVJifZn8ToFoJ3a1eP0OexNIrvMEWpllMbNMPcJm2TC9tnz9oPfWQ==} engines: {node: '>=16.14'} hasBin: true @@ -2645,7 +2648,7 @@ packages: svelte: ^3.54.0 vite: ^4.0.0 || ^2.9.0 || ^3.0.0 dependencies: - '@sveltejs/vite-plugin-svelte': 2.0.0_svelte@3.54.0+vite@4.0.0 + '@sveltejs/vite-plugin-svelte': 2.0.2_svelte@3.55.0+vite@4.0.2 '@types/cookie': 0.5.1 cookie: 0.5.0 devalue: 4.2.0 @@ -2656,15 +2659,15 @@ packages: sade: 1.8.1 set-cookie-parser: 2.5.1 sirv: 2.0.2 - svelte: 3.54.0 + svelte: 3.55.0 tiny-glob: 0.2.9 undici: 5.14.0 - vite: 4.0.0 + vite: 4.0.2 transitivePeerDependencies: - supports-color dev: true - /@sveltejs/vite-plugin-svelte/1.4.0_svelte@3.54.0+vite@4.0.0: + /@sveltejs/vite-plugin-svelte/1.4.0_svelte@3.55.0+vite@4.0.2: resolution: {integrity: sha512-6QupI/jemMfK+yI2pMtJcu5iO2gtgTfcBdGwMZZt+lgbFELhszbDl6Qjh000HgAV8+XUA+8EY8DusOFk8WhOIg==} engines: {node: ^14.18.0 || >= 16} peerDependencies: @@ -2675,16 +2678,16 @@ packages: deepmerge: 4.2.2 kleur: 4.1.5 magic-string: 0.26.7 - svelte: 3.54.0 - svelte-hmr: 0.15.1_svelte@3.54.0 - vite: 4.0.0_@types+node@17.0.45 - vitefu: 0.2.3_vite@4.0.0 + svelte: 3.55.0 + svelte-hmr: 0.15.1_svelte@3.55.0 + vite: 4.0.2_@types+node@17.0.45 + vitefu: 0.2.4_vite@4.0.2 transitivePeerDependencies: - supports-color dev: true - /@sveltejs/vite-plugin-svelte/2.0.0_svelte@3.54.0+vite@4.0.0: - resolution: {integrity: sha512-oUFrYQarRv4fppmxdrv00qw3wX8Ycdj0uv33MfpRZyR8K67dyxiOcHnqkB0zSy5sDJA8RC/2aNtYhXJ8NINVHQ==} + /@sveltejs/vite-plugin-svelte/2.0.2_svelte@3.55.0+vite@4.0.2: + resolution: {integrity: sha512-xCEan0/NNpQuL0l5aS42FjwQ6wwskdxC3pW1OeFtEKNZwRg7Evro9lac9HesGP6TdFsTv2xMes5ASQVKbCacxg==} engines: {node: ^14.18.0 || >= 16} peerDependencies: svelte: ^3.54.0 @@ -2694,10 +2697,10 @@ packages: deepmerge: 4.2.2 kleur: 4.1.5 magic-string: 0.27.0 - svelte: 3.54.0 - svelte-hmr: 0.15.1_svelte@3.54.0 - vite: 4.0.0 - vitefu: 0.2.3_vite@4.0.0 + svelte: 3.55.0 + svelte-hmr: 0.15.1_svelte@3.55.0 + vite: 4.0.2 + vitefu: 0.2.4_vite@4.0.2 transitivePeerDependencies: - supports-color dev: true @@ -2711,7 +2714,7 @@ packages: lodash.isplainobject: 4.0.6 lodash.merge: 4.6.2 postcss-selector-parser: 6.0.10 - tailwindcss: 3.2.4_postcss@8.4.19 + tailwindcss: 3.2.4_postcss@8.4.20 dev: true /@tootallnate/once/2.0.0: @@ -2882,14 +2885,14 @@ packages: resolution: {integrity: sha512-F0KIgDJfy2nA3zMLmWGKxcH2ZVEtCZXHHdOQs2gSaQ27+lNeEfGxzkIw90aXswATX7AZ33tahPbzy6KAfUreVw==} dev: true - /@types/node/14.18.34: - resolution: {integrity: sha512-hcU9AIQVHmPnmjRK+XUUYlILlr9pQrsqSrwov/JK1pnf3GTQowVBhx54FbvM0AU/VXGH4i3+vgXS5EguR7fysA==} + /@types/node/14.18.35: + resolution: {integrity: sha512-2ATO8pfhG1kDvw4Lc4C0GXIMSQFFJBCo/R1fSgTwmUlq5oy95LXyjDQinsRVgQY6gp6ghh3H91wk9ES5/5C+Tw==} /@types/node/17.0.45: resolution: {integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==} - /@types/node/18.11.12: - resolution: {integrity: sha512-FgD3NtTAKvyMmD44T07zz2fEf+OKwutgBCEVM8GcvMGVGaDktiLNTDvPwC/LUe3PinMW+X6CuLOF2Ui1mAlSXg==} + /@types/node/18.11.17: + resolution: {integrity: sha512-HJSUJmni4BeDHhfzn6nF0sVmd1SMezP7/4F0Lq+aXzmp2xm9O7WXrUtHW/CHlYVtZUbByEvWidHqRtcJXGF2Ng==} dev: true /@types/node/8.10.66: @@ -2923,7 +2926,7 @@ packages: /@types/sass/1.43.1: resolution: {integrity: sha512-BPdoIt1lfJ6B7rw35ncdwBZrAssjcwzI5LByIrYs+tpXlj/CAkuVdRsgZDdP4lq5EjyWzwxZCqAoFyHKFwp32g==} dependencies: - '@types/node': 18.11.12 + '@types/node': 18.11.17 dev: true /@types/semver/7.3.13: @@ -2981,11 +2984,11 @@ packages: resolution: {integrity: sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==} requiresBuild: true dependencies: - '@types/node': 14.18.34 + '@types/node': 14.18.35 optional: true - /@typescript-eslint/eslint-plugin/5.46.0_5mle7isnkfgjmrghnnczirv6iy: - resolution: {integrity: sha512-QrZqaIOzJAjv0sfjY4EjbXUi3ZOFpKfzntx22gPGr9pmFcTjcFw/1sS1LJhEubfAGwuLjNrPV0rH+D1/XZFy7Q==} + /@typescript-eslint/eslint-plugin/5.46.1_mqzxmroayievgzgel6yrqgih5i: + resolution: {integrity: sha512-YpzNv3aayRBwjs4J3oz65eVLXc9xx0PDbIRisHj+dYhvBn02MjYOD96P8YGiWEIFBrojaUjxvkaUpakD82phsA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: '@typescript-eslint/parser': ^5.0.0 @@ -2997,13 +3000,13 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/parser': 5.46.0_ha6vam6werchizxrnqvarmz2zu - '@typescript-eslint/scope-manager': 5.46.0 - '@typescript-eslint/type-utils': 5.46.0_ha6vam6werchizxrnqvarmz2zu - '@typescript-eslint/utils': 5.46.0_ha6vam6werchizxrnqvarmz2zu + '@typescript-eslint/parser': 5.46.1_lzzuuodtsqwxnvqeq4g4likcqa + '@typescript-eslint/scope-manager': 5.46.1 + '@typescript-eslint/type-utils': 5.46.1_lzzuuodtsqwxnvqeq4g4likcqa + '@typescript-eslint/utils': 5.46.1_lzzuuodtsqwxnvqeq4g4likcqa debug: 4.3.4 - eslint: 8.29.0 - ignore: 5.2.1 + eslint: 8.30.0 + ignore: 5.2.2 natural-compare-lite: 1.4.0 regexpp: 3.2.0 semver: 7.3.8 @@ -3013,8 +3016,8 @@ packages: - supports-color dev: true - /@typescript-eslint/parser/5.46.0_ha6vam6werchizxrnqvarmz2zu: - resolution: {integrity: sha512-joNO6zMGUZg+C73vwrKXCd8usnsmOYmgW/w5ZW0pG0RGvqeznjtGDk61EqqTpNrFLUYBW2RSBFrxdAZMqA4OZA==} + /@typescript-eslint/parser/5.46.1_lzzuuodtsqwxnvqeq4g4likcqa: + resolution: {integrity: sha512-RelQ5cGypPh4ySAtfIMBzBGyrNerQcmfA1oJvPj5f+H4jI59rl9xxpn4bonC0tQvUKOEN7eGBFWxFLK3Xepneg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: '*' @@ -3025,26 +3028,26 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/scope-manager': 5.46.0 - '@typescript-eslint/types': 5.46.0 - '@typescript-eslint/typescript-estree': 5.46.0_typescript@4.9.4 + '@typescript-eslint/scope-manager': 5.46.1 + '@typescript-eslint/types': 5.46.1 + '@typescript-eslint/typescript-estree': 5.46.1_typescript@4.9.4 debug: 4.3.4 - eslint: 8.29.0 + eslint: 8.30.0 typescript: 4.9.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/scope-manager/5.46.0: - resolution: {integrity: sha512-7wWBq9d/GbPiIM6SqPK9tfynNxVbfpihoY5cSFMer19OYUA3l4powA2uv0AV2eAZV6KoAh6lkzxv4PoxOLh1oA==} + /@typescript-eslint/scope-manager/5.46.1: + resolution: {integrity: sha512-iOChVivo4jpwUdrJZyXSMrEIM/PvsbbDOX1y3UCKjSgWn+W89skxWaYXACQfxmIGhPVpRWK/VWPYc+bad6smIA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - '@typescript-eslint/types': 5.46.0 - '@typescript-eslint/visitor-keys': 5.46.0 + '@typescript-eslint/types': 5.46.1 + '@typescript-eslint/visitor-keys': 5.46.1 dev: true - /@typescript-eslint/type-utils/5.46.0_ha6vam6werchizxrnqvarmz2zu: - resolution: {integrity: sha512-dwv4nimVIAsVS2dTA0MekkWaRnoYNXY26dKz8AN5W3cBFYwYGFQEqm/cG+TOoooKlncJS4RTbFKgcFY/pOiBCg==} + /@typescript-eslint/type-utils/5.46.1_lzzuuodtsqwxnvqeq4g4likcqa: + resolution: {integrity: sha512-V/zMyfI+jDmL1ADxfDxjZ0EMbtiVqj8LUGPAGyBkXXStWmCUErMpW873zEHsyguWCuq2iN4BrlWUkmuVj84yng==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: '*' @@ -3055,23 +3058,23 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/typescript-estree': 5.46.0_typescript@4.9.4 - '@typescript-eslint/utils': 5.46.0_ha6vam6werchizxrnqvarmz2zu + '@typescript-eslint/typescript-estree': 5.46.1_typescript@4.9.4 + '@typescript-eslint/utils': 5.46.1_lzzuuodtsqwxnvqeq4g4likcqa debug: 4.3.4 - eslint: 8.29.0 + eslint: 8.30.0 tsutils: 3.21.0_typescript@4.9.4 typescript: 4.9.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/types/5.46.0: - resolution: {integrity: sha512-wHWgQHFB+qh6bu0IAPAJCdeCdI0wwzZnnWThlmHNY01XJ9Z97oKqKOzWYpR2I83QmshhQJl6LDM9TqMiMwJBTw==} + /@typescript-eslint/types/5.46.1: + resolution: {integrity: sha512-Z5pvlCaZgU+93ryiYUwGwLl9AQVB/PQ1TsJ9NZ/gHzZjN7g9IAn6RSDkpCV8hqTwAiaj6fmCcKSQeBPlIpW28w==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /@typescript-eslint/typescript-estree/5.46.0_typescript@4.9.4: - resolution: {integrity: sha512-kDLNn/tQP+Yp8Ro2dUpyyVV0Ksn2rmpPpB0/3MO874RNmXtypMwSeazjEN/Q6CTp8D7ExXAAekPEcCEB/vtJkw==} + /@typescript-eslint/typescript-estree/5.46.1_typescript@4.9.4: + resolution: {integrity: sha512-j9W4t67QiNp90kh5Nbr1w92wzt+toiIsaVPnEblB2Ih2U9fqBTyqV9T3pYWZBRt6QoMh/zVWP59EpuCjc4VRBg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: typescript: '*' @@ -3079,8 +3082,8 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/types': 5.46.0 - '@typescript-eslint/visitor-keys': 5.46.0 + '@typescript-eslint/types': 5.46.1 + '@typescript-eslint/visitor-keys': 5.46.1 debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 @@ -3091,8 +3094,8 @@ packages: - supports-color dev: true - /@typescript-eslint/utils/5.46.0_ha6vam6werchizxrnqvarmz2zu: - resolution: {integrity: sha512-4O+Ps1CRDw+D+R40JYh5GlKLQERXRKW5yIQoNDpmXPJ+C7kaPF9R7GWl+PxGgXjB3PQCqsaaZUpZ9dG4U6DO7g==} + /@typescript-eslint/utils/5.46.1_lzzuuodtsqwxnvqeq4g4likcqa: + resolution: {integrity: sha512-RBdBAGv3oEpFojaCYT4Ghn4775pdjvwfDOfQ2P6qzNVgQOVrnSPe5/Pb88kv7xzYQjoio0eKHKB9GJ16ieSxvA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: '*' @@ -3102,23 +3105,23 @@ packages: dependencies: '@types/json-schema': 7.0.11 '@types/semver': 7.3.13 - '@typescript-eslint/scope-manager': 5.46.0 - '@typescript-eslint/types': 5.46.0 - '@typescript-eslint/typescript-estree': 5.46.0_typescript@4.9.4 - eslint: 8.29.0 + '@typescript-eslint/scope-manager': 5.46.1 + '@typescript-eslint/types': 5.46.1 + '@typescript-eslint/typescript-estree': 5.46.1_typescript@4.9.4 + eslint: 8.30.0 eslint-scope: 5.1.1 - eslint-utils: 3.0.0_eslint@8.29.0 + eslint-utils: 3.0.0_eslint@8.30.0 semver: 7.3.8 transitivePeerDependencies: - supports-color - typescript dev: true - /@typescript-eslint/visitor-keys/5.46.0: - resolution: {integrity: sha512-E13gBoIXmaNhwjipuvQg1ByqSAu/GbEpP/qzFihugJ+MomtoJtFAJG/+2DRPByf57B863m0/q7Zt16V9ohhANw==} + /@typescript-eslint/visitor-keys/5.46.1: + resolution: {integrity: sha512-jczZ9noovXwy59KjRTk1OftT78pwygdcmCuBf8yMoWt/8O8l+6x2LSEze0E4TeepXK4MezW3zGSyoDRZK7Y9cg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - '@typescript-eslint/types': 5.46.0 + '@typescript-eslint/types': 5.46.1 eslint-visitor-keys: 3.3.0 dev: true @@ -3154,8 +3157,8 @@ packages: vue: 3.2.45 dev: true - /@vercel/nft/0.22.5: - resolution: {integrity: sha512-mug57Wd1BL7GMj9gXMgMeKUjdqO0e4u+0QLPYMFE1rwdJ+55oPy6lp3nIBCS8gOvigT62UI4QKUL2sGqcoW4Hw==} + /@vercel/nft/0.22.6: + resolution: {integrity: sha512-gTsFnnT4mGxodr4AUlW3/urY+8JKKB452LwF3m477RFUJTAaDmcz2JqFuInzvdybYIeyIv1sSONEJxsxnbQ5JQ==} engines: {node: '>=14'} hasBin: true dependencies: @@ -3222,7 +3225,7 @@ packages: vue: 3.2.45 dev: true - /@vitejs/plugin-vue/4.0.0_vite@4.0.0+vue@3.2.45: + /@vitejs/plugin-vue/4.0.0_vite@4.0.2+vue@3.2.45: resolution: {integrity: sha512-e0X4jErIxAB5oLtDqbHvHpJe/uWNkdpYV83AOG2xo2tEVSzCzewgJMtREZM30wXnM5ls90hxiOtAuVU6H5JgbA==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: @@ -3232,21 +3235,21 @@ packages: vue: optional: true dependencies: - vite: 4.0.0_sass@1.56.2 + vite: 4.0.2_sass@1.57.0 vue: 3.2.45 dev: true - /@vitejs/plugin-vue2/2.1.0_vite@4.0.0+vue@2.7.14: - resolution: {integrity: sha512-9glD5jLWRjdj+SpH7cQo+n/kZlZBaTjQwTe3aUxsWr9uU7aOnlhG319ywJT5175mHWIyNz8g5QG6NPdgKwwYDA==} + /@vitejs/plugin-vue2/2.2.0_vite@4.0.2+vue@2.7.14: + resolution: {integrity: sha512-1km7zEuZ/9QRPvzXSjikbTYGQPG86Mq1baktpC4sXqsXlb02HQKfi+fl8qVS703JM7cgm24Ga9j+RwKmvFn90A==} engines: {node: ^14.18.0 || >= 16.0.0} peerDependencies: - vite: ^3.0.0 || ^2.9.0 || ^4.0.0 + vite: ^3.0.0 || ^4.0.0 || ^2.9.0 vue: '*' peerDependenciesMeta: vue: optional: true dependencies: - vite: 4.0.0 + vite: 4.0.2 vue: 2.7.14 dev: true @@ -3319,7 +3322,7 @@ packages: resolution: {integrity: sha512-aNmNHyLPsw+sVvlQFQ2/8sjNuLtK54TC6cuKnVzAY93ks4ZBrvwQSnkkIh7bsbNhum5hJBS00wSDipQ937f5DA==} dependencies: '@babel/parser': 7.20.5 - postcss: 8.4.19 + postcss: 8.4.20 source-map: 0.6.1 /@vue/compiler-sfc/3.2.45: @@ -3333,7 +3336,7 @@ packages: '@vue/shared': 3.2.45 estree-walker: 2.0.2 magic-string: 0.25.9 - postcss: 8.4.19 + postcss: 8.4.20 source-map: 0.6.1 /@vue/compiler-ssr/3.2.45: @@ -3345,7 +3348,7 @@ packages: /@vue/devtools-api/6.4.5: resolution: {integrity: sha512-JD5fcdIuFxU4fQyXUu3w2KpAJHzTVdN+p4iOX2lMWSHMOoQdMAcpFLZzm9Z/2nmsoZ1a96QEhZ26e50xLBsgOQ==} - /@vue/eslint-config-standard/6.1.0_rgk4afcvwqij6gp7cdq6gh4rne: + /@vue/eslint-config-standard/6.1.0_uub6xppuyv3lkprso7224jioyy: resolution: {integrity: sha512-9+hrEyflDzsGdlBDl9jPV5DIYUx1TOU5OSQqRDKCrNumrxRj5HRWKuk+ocXWnha6uoNRtLC24mY7d/MwqvBCNw==} peerDependencies: '@vue/cli-service': ^3.0.0 || ^4.0.0 || ^5.0.0-0 @@ -3360,20 +3363,20 @@ packages: eslint: optional: true dependencies: - eslint: 8.29.0 - eslint-config-standard: 16.0.3_sjdvciqzywqkm2lx7y3c65dmli + eslint: 8.30.0 + eslint-config-standard: 16.0.3_2mepb6nnyi3yasrprozvxmufyi eslint-import-resolver-node: 0.3.6 eslint-import-resolver-webpack: 0.13.2_fkfqfehjtk7sk2efaqbgxsuasa - eslint-plugin-import: 2.26.0_jx43xxcguvnqqmtmaaygwl7cmu - eslint-plugin-node: 11.1.0_eslint@8.29.0 - eslint-plugin-promise: 6.1.1_eslint@8.29.0 - eslint-plugin-vue: 9.8.0_eslint@8.29.0 + eslint-plugin-import: 2.26.0_k64j4kmmt6hmqbosszmu4ra6ae + eslint-plugin-node: 11.1.0_eslint@8.30.0 + eslint-plugin-promise: 6.1.1_eslint@8.30.0 + eslint-plugin-vue: 9.8.0_eslint@8.30.0 transitivePeerDependencies: - supports-color - webpack dev: true - /@vue/eslint-config-typescript/10.0.0_4ajq2belonl3hwwudzbg7tkiqi: + /@vue/eslint-config-typescript/10.0.0_eh2oupyoc3mviptu6zovyv6md4: resolution: {integrity: sha512-F94cL8ug3FaYXlCfU5/wiGjk1qeadmoBpRGAOBq+qre3Smdupa59dd6ZJrsfRODpsMPyTG7330juMDsUvpZ3Rw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -3386,12 +3389,12 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/eslint-plugin': 5.46.0_5mle7isnkfgjmrghnnczirv6iy - '@typescript-eslint/parser': 5.46.0_ha6vam6werchizxrnqvarmz2zu - eslint: 8.29.0 - eslint-plugin-vue: 9.8.0_eslint@8.29.0 + '@typescript-eslint/eslint-plugin': 5.46.1_mqzxmroayievgzgel6yrqgih5i + '@typescript-eslint/parser': 5.46.1_lzzuuodtsqwxnvqeq4g4likcqa + eslint: 8.30.0 + eslint-plugin-vue: 9.8.0_eslint@8.30.0 typescript: 4.9.4 - vue-eslint-parser: 8.3.0_eslint@8.29.0 + vue-eslint-parser: 8.3.0_eslint@8.30.0 transitivePeerDependencies: - supports-color dev: true @@ -3449,7 +3452,7 @@ packages: vue: 3.2.45 dev: true - /@vuetify/loader-shared/1.7.0_vue@3.2.45+vuetify@3.0.4: + /@vuetify/loader-shared/1.7.0_vue@3.2.45+vuetify@3.0.5: resolution: {integrity: sha512-Db4K67wMhduDsbvdRBYkrYuomti+j0E/1vlz1lnDng5F9LYYBcXa60qypIazVGI6GX/CuY1vshN6XGtGQI4FKg==} peerDependencies: vue: '*' @@ -3461,7 +3464,7 @@ packages: find-cache-dir: 3.3.2 upath: 2.0.1 vue: 3.2.45 - vuetify: 3.0.4_ny5xcw2md7vsxw37otcxmygka4 + vuetify: 3.0.5_ny5xcw2md7vsxw37otcxmygka4 /@vueuse/core/8.9.4: resolution: {integrity: sha512-B/Mdj9TK1peFyWaPof+Zf/mP9XuGAngaJZBwPaXBvU3aCTZlx3ltlrFFFyMV4iGBwsjSCeUCgZrtkEj9dS2Y3Q==} @@ -3498,12 +3501,12 @@ packages: vue-demi: 0.13.11_vue@3.2.45 dev: true - /@vueuse/core/9.6.0_vue@3.2.45: - resolution: {integrity: sha512-qGUcjKQXHgN+jqXEgpeZGoxdCbIDCdVPz3QiF1uyecVGbMuM63o96I1GjYx5zskKgRI0FKSNsVWM7rwrRMTf6A==} + /@vueuse/core/9.7.0_vue@3.2.45: + resolution: {integrity: sha512-/AGY/t7jJPxCyRoVTygNKoroTiCvRaaZIW+yeSlBCnI7QRpQ9cvXNTdNaSl3GvSyFbn83+XwZwEZvI1OpQfeGw==} dependencies: '@types/web-bluetooth': 0.0.16 - '@vueuse/metadata': 9.6.0 - '@vueuse/shared': 9.6.0_vue@3.2.45 + '@vueuse/metadata': 9.7.0 + '@vueuse/shared': 9.7.0_vue@3.2.45 vue-demi: 0.13.11_vue@3.2.45 transitivePeerDependencies: - '@vue/composition-api' @@ -3529,8 +3532,8 @@ packages: resolution: {integrity: sha512-IwSfzH80bnJMzqhaapqJl9JRIiyQU0zsRGEgnxN6jhq7992cPUJIRfV+JHRIZXjYqbwt07E1gTEp0R0zPJ1aqw==} dev: true - /@vueuse/metadata/9.6.0: - resolution: {integrity: sha512-sIC8R+kWkIdpi5X2z2Gk8TRYzmczDwHRhEFfCu2P+XW2JdPoXrziqsGpDDsN7ykBx4ilwieS7JUIweVGhvZ93w==} + /@vueuse/metadata/9.7.0: + resolution: {integrity: sha512-M7WsAgw28FNtTH0bzsGuHEtJOPJqPpyeHS6PHq+8UesLgNjZ9waMAntiUrgUQlxt09M4i2lH7y9sRi0jkfeXGA==} dev: true /@vueuse/shared/8.9.4: @@ -3562,8 +3565,8 @@ packages: vue-demi: 0.13.11_vue@3.2.45 dev: true - /@vueuse/shared/9.6.0_vue@3.2.45: - resolution: {integrity: sha512-/eDchxYYhkHnFyrb00t90UfjCx94kRHxc7J1GtBCqCG4HyPMX+krV9XJgVtWIsAMaxKVU4fC8NSUviG1JkwhUQ==} + /@vueuse/shared/9.7.0_vue@3.2.45: + resolution: {integrity: sha512-pwmt1y3TJ2s5KqWmkv9ZKEV59GwuZQZk8XLiU+hGswz0jej318ozbea9E4A/A50ksyM26swSFr7sZ9llNPsZHg==} dependencies: vue-demi: 0.13.11_vue@3.2.45 transitivePeerDependencies: @@ -3715,7 +3718,7 @@ packages: resolution: {integrity: sha512-IG23inYII3dWlU2EyiAiGj6Bwal5GzsgPMwjYGvc1HPE2dgbj4ZB5ToWBKSquKw74nB3TIuOwaI6/jSULzfgrw==} engines: {node: '>=14.16'} dependencies: - type-fest: 3.3.0 + type-fest: 3.4.0 dev: true /ansi-regex/5.0.1: @@ -4039,7 +4042,7 @@ packages: engines: {node: '>= 4.0.0'} dev: true - /autoprefixer/10.4.13_postcss@8.4.19: + /autoprefixer/10.4.13_postcss@8.4.20: resolution: {integrity: sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==} engines: {node: ^10 || ^12 || >=14} hasBin: true @@ -4051,7 +4054,7 @@ packages: fraction.js: 4.2.0 normalize-range: 0.1.2 picocolors: 1.0.0 - postcss: 8.4.19 + postcss: 8.4.20 postcss-value-parser: 4.2.0 dev: true @@ -4182,7 +4185,7 @@ packages: dependencies: caniuse-lite: 1.0.30001439 electron-to-chromium: 1.4.284 - node-releases: 2.0.6 + node-releases: 2.0.8 update-browserslist-db: 1.0.10_browserslist@4.21.4 /buffer-crc32/0.2.13: @@ -4627,7 +4630,7 @@ packages: chalk: 4.1.2 date-fns: 2.29.3 lodash: 4.17.21 - rxjs: 7.6.0 + rxjs: 7.8.0 shell-quote: 1.7.4 spawn-command: 0.0.2-1 supports-color: 8.1.1 @@ -4924,13 +4927,13 @@ packages: which: 2.0.2 dev: true - /css-declaration-sorter/6.3.1_postcss@8.4.19: + /css-declaration-sorter/6.3.1_postcss@8.4.20: resolution: {integrity: sha512-fBffmak0bPAnyqc/HO8C3n2sHrp9wcqQz6ES9koRF2/mLOVAx9zIQ3Y7R29sYCteTPqMCwns4WYQoCX91Xl3+w==} engines: {node: ^10 || ^12 || >=14} peerDependencies: postcss: ^8.0.9 dependencies: - postcss: 8.4.19 + postcss: 8.4.20 dev: true /css-loader/5.2.7: @@ -4942,13 +4945,13 @@ packages: webpack: optional: true dependencies: - icss-utils: 5.1.0_postcss@8.4.19 + icss-utils: 5.1.0_postcss@8.4.20 loader-utils: 2.0.4 - postcss: 8.4.19 - postcss-modules-extract-imports: 3.0.0_postcss@8.4.19 - postcss-modules-local-by-default: 4.0.0_postcss@8.4.19 - postcss-modules-scope: 3.0.0_postcss@8.4.19 - postcss-modules-values: 4.0.0_postcss@8.4.19 + postcss: 8.4.20 + postcss-modules-extract-imports: 3.0.0_postcss@8.4.20 + postcss-modules-local-by-default: 4.0.0_postcss@8.4.20 + postcss-modules-scope: 3.0.0_postcss@8.4.20 + postcss-modules-values: 4.0.0_postcss@8.4.20 postcss-value-parser: 4.2.0 schema-utils: 3.1.1 semver: 7.3.8 @@ -4991,62 +4994,62 @@ packages: resolution: {integrity: sha1-xtJnJjKi5cg+AT5oZKQs6N79IK4=} dev: true - /cssnano-preset-default/5.2.13_postcss@8.4.19: + /cssnano-preset-default/5.2.13_postcss@8.4.20: resolution: {integrity: sha512-PX7sQ4Pb+UtOWuz8A1d+Rbi+WimBIxJTRyBdgGp1J75VU0r/HFQeLnMYgHiCAp6AR4rqrc7Y4R+1Rjk3KJz6DQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - css-declaration-sorter: 6.3.1_postcss@8.4.19 - cssnano-utils: 3.1.0_postcss@8.4.19 - postcss: 8.4.19 - postcss-calc: 8.2.4_postcss@8.4.19 - postcss-colormin: 5.3.0_postcss@8.4.19 - postcss-convert-values: 5.1.3_postcss@8.4.19 - postcss-discard-comments: 5.1.2_postcss@8.4.19 - postcss-discard-duplicates: 5.1.0_postcss@8.4.19 - postcss-discard-empty: 5.1.1_postcss@8.4.19 - postcss-discard-overridden: 5.1.0_postcss@8.4.19 - postcss-merge-longhand: 5.1.7_postcss@8.4.19 - postcss-merge-rules: 5.1.3_postcss@8.4.19 - postcss-minify-font-values: 5.1.0_postcss@8.4.19 - postcss-minify-gradients: 5.1.1_postcss@8.4.19 - postcss-minify-params: 5.1.4_postcss@8.4.19 - postcss-minify-selectors: 5.2.1_postcss@8.4.19 - postcss-normalize-charset: 5.1.0_postcss@8.4.19 - postcss-normalize-display-values: 5.1.0_postcss@8.4.19 - postcss-normalize-positions: 5.1.1_postcss@8.4.19 - postcss-normalize-repeat-style: 5.1.1_postcss@8.4.19 - postcss-normalize-string: 5.1.0_postcss@8.4.19 - postcss-normalize-timing-functions: 5.1.0_postcss@8.4.19 - postcss-normalize-unicode: 5.1.1_postcss@8.4.19 - postcss-normalize-url: 5.1.0_postcss@8.4.19 - postcss-normalize-whitespace: 5.1.1_postcss@8.4.19 - postcss-ordered-values: 5.1.3_postcss@8.4.19 - postcss-reduce-initial: 5.1.1_postcss@8.4.19 - postcss-reduce-transforms: 5.1.0_postcss@8.4.19 - postcss-svgo: 5.1.0_postcss@8.4.19 - postcss-unique-selectors: 5.1.1_postcss@8.4.19 - dev: true - - /cssnano-utils/3.1.0_postcss@8.4.19: + css-declaration-sorter: 6.3.1_postcss@8.4.20 + cssnano-utils: 3.1.0_postcss@8.4.20 + postcss: 8.4.20 + postcss-calc: 8.2.4_postcss@8.4.20 + postcss-colormin: 5.3.0_postcss@8.4.20 + postcss-convert-values: 5.1.3_postcss@8.4.20 + postcss-discard-comments: 5.1.2_postcss@8.4.20 + postcss-discard-duplicates: 5.1.0_postcss@8.4.20 + postcss-discard-empty: 5.1.1_postcss@8.4.20 + postcss-discard-overridden: 5.1.0_postcss@8.4.20 + postcss-merge-longhand: 5.1.7_postcss@8.4.20 + postcss-merge-rules: 5.1.3_postcss@8.4.20 + postcss-minify-font-values: 5.1.0_postcss@8.4.20 + postcss-minify-gradients: 5.1.1_postcss@8.4.20 + postcss-minify-params: 5.1.4_postcss@8.4.20 + postcss-minify-selectors: 5.2.1_postcss@8.4.20 + postcss-normalize-charset: 5.1.0_postcss@8.4.20 + postcss-normalize-display-values: 5.1.0_postcss@8.4.20 + postcss-normalize-positions: 5.1.1_postcss@8.4.20 + postcss-normalize-repeat-style: 5.1.1_postcss@8.4.20 + postcss-normalize-string: 5.1.0_postcss@8.4.20 + postcss-normalize-timing-functions: 5.1.0_postcss@8.4.20 + postcss-normalize-unicode: 5.1.1_postcss@8.4.20 + postcss-normalize-url: 5.1.0_postcss@8.4.20 + postcss-normalize-whitespace: 5.1.1_postcss@8.4.20 + postcss-ordered-values: 5.1.3_postcss@8.4.20 + postcss-reduce-initial: 5.1.1_postcss@8.4.20 + postcss-reduce-transforms: 5.1.0_postcss@8.4.20 + postcss-svgo: 5.1.0_postcss@8.4.20 + postcss-unique-selectors: 5.1.1_postcss@8.4.20 + dev: true + + /cssnano-utils/3.1.0_postcss@8.4.20: resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.19 + postcss: 8.4.20 dev: true - /cssnano/5.1.14_postcss@8.4.19: + /cssnano/5.1.14_postcss@8.4.20: resolution: {integrity: sha512-Oou7ihiTocbKqi0J1bB+TRJIQX5RMR3JghA8hcWSw9mjBLQ5Y3RWqEDoYG3sRNlAbCIXpqMoZGbq5KDR3vdzgw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - cssnano-preset-default: 5.2.13_postcss@8.4.19 + cssnano-preset-default: 5.2.13_postcss@8.4.20 lilconfig: 2.0.6 - postcss: 8.4.19 + postcss: 8.4.20 yaml: 1.10.2 dev: true @@ -5090,7 +5093,7 @@ packages: dependencies: '@cypress/request': 2.88.10 '@cypress/xvfb': 1.2.4_supports-color@8.1.1 - '@types/node': 14.18.34 + '@types/node': 14.18.35 '@types/sinonjs__fake-timers': 8.1.1 '@types/sizzle': 2.3.3 arch: 2.2.0 @@ -5140,7 +5143,7 @@ packages: dependencies: '@cypress/request': 2.88.10 '@cypress/xvfb': 1.2.4_supports-color@8.1.1 - '@types/node': 14.18.34 + '@types/node': 14.18.35 '@types/sinonjs__fake-timers': 8.1.1 '@types/sizzle': 2.3.3 arch: 2.2.0 @@ -5647,7 +5650,7 @@ packages: has: 1.0.3 has-property-descriptors: 1.0.0 has-symbols: 1.0.3 - internal-slot: 1.0.3 + internal-slot: 1.0.4 is-callable: 1.2.7 is-negative-zero: 2.0.2 is-regex: 1.1.4 @@ -6081,34 +6084,34 @@ packages: esbuild-windows-arm64: 0.15.18 dev: true - /esbuild/0.16.3: - resolution: {integrity: sha512-71f7EjPWTiSguen8X/kxEpkAS7BFHwtQKisCDDV3Y4GLGWBaoSCyD5uXkaUew6JDzA9FEN1W23mdnSwW9kqCeg==} + /esbuild/0.16.9: + resolution: {integrity: sha512-gkH83yHyijMSZcZFs1IWew342eMdFuWXmQo3zkDPTre25LIPBJsXryg02M3u8OpTwCJdBkdaQwqKkDLnAsAeLQ==} engines: {node: '>=12'} hasBin: true requiresBuild: true optionalDependencies: - '@esbuild/android-arm': 0.16.3 - '@esbuild/android-arm64': 0.16.3 - '@esbuild/android-x64': 0.16.3 - '@esbuild/darwin-arm64': 0.16.3 - '@esbuild/darwin-x64': 0.16.3 - '@esbuild/freebsd-arm64': 0.16.3 - '@esbuild/freebsd-x64': 0.16.3 - '@esbuild/linux-arm': 0.16.3 - '@esbuild/linux-arm64': 0.16.3 - '@esbuild/linux-ia32': 0.16.3 - '@esbuild/linux-loong64': 0.16.3 - '@esbuild/linux-mips64el': 0.16.3 - '@esbuild/linux-ppc64': 0.16.3 - '@esbuild/linux-riscv64': 0.16.3 - '@esbuild/linux-s390x': 0.16.3 - '@esbuild/linux-x64': 0.16.3 - '@esbuild/netbsd-x64': 0.16.3 - '@esbuild/openbsd-x64': 0.16.3 - '@esbuild/sunos-x64': 0.16.3 - '@esbuild/win32-arm64': 0.16.3 - '@esbuild/win32-ia32': 0.16.3 - '@esbuild/win32-x64': 0.16.3 + '@esbuild/android-arm': 0.16.9 + '@esbuild/android-arm64': 0.16.9 + '@esbuild/android-x64': 0.16.9 + '@esbuild/darwin-arm64': 0.16.9 + '@esbuild/darwin-x64': 0.16.9 + '@esbuild/freebsd-arm64': 0.16.9 + '@esbuild/freebsd-x64': 0.16.9 + '@esbuild/linux-arm': 0.16.9 + '@esbuild/linux-arm64': 0.16.9 + '@esbuild/linux-ia32': 0.16.9 + '@esbuild/linux-loong64': 0.16.9 + '@esbuild/linux-mips64el': 0.16.9 + '@esbuild/linux-ppc64': 0.16.9 + '@esbuild/linux-riscv64': 0.16.9 + '@esbuild/linux-s390x': 0.16.9 + '@esbuild/linux-x64': 0.16.9 + '@esbuild/netbsd-x64': 0.16.9 + '@esbuild/openbsd-x64': 0.16.9 + '@esbuild/sunos-x64': 0.16.9 + '@esbuild/win32-arm64': 0.16.9 + '@esbuild/win32-ia32': 0.16.9 + '@esbuild/win32-x64': 0.16.9 /escalade/3.1.1: resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} @@ -6148,7 +6151,7 @@ packages: source-map: 0.6.1 dev: false - /eslint-config-standard/16.0.3_sjdvciqzywqkm2lx7y3c65dmli: + /eslint-config-standard/16.0.3_2mepb6nnyi3yasrprozvxmufyi: resolution: {integrity: sha512-x4fmJL5hGqNJKGHSjnLdgA6U6h1YW/G2dW9fA+cyVur4SK6lyue8+UgNKWlZtUDTXvgKDD/Oa3GQjmB5kjtVvg==} peerDependencies: eslint: '*' @@ -6159,10 +6162,10 @@ packages: eslint: optional: true dependencies: - eslint: 8.29.0 - eslint-plugin-import: 2.26.0_jx43xxcguvnqqmtmaaygwl7cmu - eslint-plugin-node: 11.1.0_eslint@8.29.0 - eslint-plugin-promise: 6.1.1_eslint@8.29.0 + eslint: 8.30.0 + eslint-plugin-import: 2.26.0_k64j4kmmt6hmqbosszmu4ra6ae + eslint-plugin-node: 11.1.0_eslint@8.30.0 + eslint-plugin-promise: 6.1.1_eslint@8.30.0 dev: true /eslint-import-resolver-node/0.3.6: @@ -6187,7 +6190,7 @@ packages: array-find: 1.0.0 debug: 3.2.7 enhanced-resolve: 0.9.1 - eslint-plugin-import: 2.26.0_jx43xxcguvnqqmtmaaygwl7cmu + eslint-plugin-import: 2.26.0_k64j4kmmt6hmqbosszmu4ra6ae find-root: 1.1.0 has: 1.0.3 interpret: 1.4.0 @@ -6200,7 +6203,7 @@ packages: - supports-color dev: true - /eslint-module-utils/2.7.4_gt5xgaqja2wfyrirr5sgi3l66m: + /eslint-module-utils/2.7.4_td2eemwvayfuh2r2bzyr5sfhqm: resolution: {integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==} engines: {node: '>=4'} peerDependencies: @@ -6221,15 +6224,15 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - '@typescript-eslint/parser': 5.46.0_ha6vam6werchizxrnqvarmz2zu + '@typescript-eslint/parser': 5.46.1_lzzuuodtsqwxnvqeq4g4likcqa debug: 3.2.7 - eslint: 8.29.0 + eslint: 8.30.0 eslint-import-resolver-node: 0.3.6 transitivePeerDependencies: - supports-color dev: true - /eslint-plugin-cypress/2.12.1_eslint@8.29.0: + /eslint-plugin-cypress/2.12.1_eslint@8.30.0: resolution: {integrity: sha512-c2W/uPADl5kospNDihgiLc7n87t5XhUbFDoTl6CfVkmG+kDAb5Ux10V9PoLPu9N+r7znpc+iQlcmAqT1A/89HA==} peerDependencies: eslint: '*' @@ -6237,11 +6240,11 @@ packages: eslint: optional: true dependencies: - eslint: 8.29.0 + eslint: 8.30.0 globals: 11.12.0 dev: true - /eslint-plugin-es/3.0.1_eslint@8.29.0: + /eslint-plugin-es/3.0.1_eslint@8.30.0: resolution: {integrity: sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==} engines: {node: '>=8.10.0'} peerDependencies: @@ -6250,12 +6253,12 @@ packages: eslint: optional: true dependencies: - eslint: 8.29.0 + eslint: 8.30.0 eslint-utils: 2.1.0 regexpp: 3.2.0 dev: true - /eslint-plugin-import/2.26.0_jx43xxcguvnqqmtmaaygwl7cmu: + /eslint-plugin-import/2.26.0_k64j4kmmt6hmqbosszmu4ra6ae: resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==} engines: {node: '>=4'} peerDependencies: @@ -6267,14 +6270,14 @@ packages: eslint: optional: true dependencies: - '@typescript-eslint/parser': 5.46.0_ha6vam6werchizxrnqvarmz2zu + '@typescript-eslint/parser': 5.46.1_lzzuuodtsqwxnvqeq4g4likcqa array-includes: 3.1.6 array.prototype.flat: 1.3.1 debug: 2.6.9 doctrine: 2.1.0 - eslint: 8.29.0 + eslint: 8.30.0 eslint-import-resolver-node: 0.3.6 - eslint-module-utils: 2.7.4_gt5xgaqja2wfyrirr5sgi3l66m + eslint-module-utils: 2.7.4_td2eemwvayfuh2r2bzyr5sfhqm has: 1.0.3 is-core-module: 2.11.0 is-glob: 4.0.3 @@ -6288,7 +6291,7 @@ packages: - supports-color dev: true - /eslint-plugin-node/11.1.0_eslint@8.29.0: + /eslint-plugin-node/11.1.0_eslint@8.30.0: resolution: {integrity: sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==} engines: {node: '>=8.10.0'} peerDependencies: @@ -6297,16 +6300,16 @@ packages: eslint: optional: true dependencies: - eslint: 8.29.0 - eslint-plugin-es: 3.0.1_eslint@8.29.0 + eslint: 8.30.0 + eslint-plugin-es: 3.0.1_eslint@8.30.0 eslint-utils: 2.1.0 - ignore: 5.2.1 + ignore: 5.2.2 minimatch: 3.1.2 resolve: 1.22.1 semver: 6.3.0 dev: true - /eslint-plugin-promise/6.1.1_eslint@8.29.0: + /eslint-plugin-promise/6.1.1_eslint@8.30.0: resolution: {integrity: sha512-tjqWDwVZQo7UIPMeDReOpUgHCmCiH+ePnVT+5zVapL0uuHnegBUs2smM13CzOs2Xb5+MHMRFTs9v24yjba4Oig==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -6315,10 +6318,10 @@ packages: eslint: optional: true dependencies: - eslint: 8.29.0 + eslint: 8.30.0 dev: true - /eslint-plugin-vue/9.8.0_eslint@8.29.0: + /eslint-plugin-vue/9.8.0_eslint@8.30.0: resolution: {integrity: sha512-E/AXwcTzunyzM83C2QqDHxepMzvI2y6x+mmeYHbVDQlKFqmKYvRrhaVixEeeG27uI44p9oKDFiyCRw4XxgtfHA==} engines: {node: ^14.17.0 || >=16.0.0} peerDependencies: @@ -6327,13 +6330,13 @@ packages: eslint: optional: true dependencies: - eslint: 8.29.0 - eslint-utils: 3.0.0_eslint@8.29.0 + eslint: 8.30.0 + eslint-utils: 3.0.0_eslint@8.30.0 natural-compare: 1.4.0 nth-check: 2.1.1 postcss-selector-parser: 6.0.11 semver: 7.3.8 - vue-eslint-parser: 9.1.0_eslint@8.29.0 + vue-eslint-parser: 9.1.0_eslint@8.30.0 xml-name-validator: 4.0.0 transitivePeerDependencies: - supports-color @@ -6362,7 +6365,7 @@ packages: eslint-visitor-keys: 1.3.0 dev: true - /eslint-utils/3.0.0_eslint@8.29.0: + /eslint-utils/3.0.0_eslint@8.30.0: resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} peerDependencies: @@ -6371,7 +6374,7 @@ packages: eslint: optional: true dependencies: - eslint: 8.29.0 + eslint: 8.30.0 eslint-visitor-keys: 2.1.0 dev: true @@ -6390,13 +6393,13 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /eslint/8.29.0: - resolution: {integrity: sha512-isQ4EEiyUjZFbEKvEGJKKGBwXtvXX+zJbkVKCgTuB9t/+jUBcy8avhkEwWJecI15BkRkOYmvIM5ynbhRjEkoeg==} + /eslint/8.30.0: + resolution: {integrity: sha512-MGADB39QqYuzEGov+F/qb18r4i7DohCDOfatHaxI2iGlPuC65bwG2gxgO+7DkyL38dRFaRH7RaRAgU6JKL9rMQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} hasBin: true dependencies: - '@eslint/eslintrc': 1.3.3 - '@humanwhocodes/config-array': 0.11.7 + '@eslint/eslintrc': 1.4.0 + '@humanwhocodes/config-array': 0.11.8 '@humanwhocodes/module-importer': 1.0.1 '@nodelib/fs.walk': 1.2.8 ajv: 6.12.6 @@ -6406,7 +6409,7 @@ packages: doctrine: 3.0.0 escape-string-regexp: 4.0.0 eslint-scope: 7.1.1 - eslint-utils: 3.0.0_eslint@8.29.0 + eslint-utils: 3.0.0_eslint@8.30.0 eslint-visitor-keys: 3.3.0 espree: 9.4.1 esquery: 1.4.0 @@ -6415,9 +6418,9 @@ packages: file-entry-cache: 6.0.1 find-up: 5.0.0 glob-parent: 6.0.2 - globals: 13.18.0 + globals: 13.19.0 grapheme-splitter: 1.0.4 - ignore: 5.2.1 + ignore: 5.2.2 import-fresh: 3.3.0 imurmurhash: 0.1.4 is-glob: 4.0.3 @@ -7205,8 +7208,8 @@ packages: resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} engines: {node: '>=4'} - /globals/13.18.0: - resolution: {integrity: sha512-/mR4KI8Ps2spmoc0Ulu9L7agOF0du1CZNQ3dke8yItYlyKNmGrkONemBbd6V8UTc1Wgcqn21t3WYB7dbRmh6/A==} + /globals/13.19.0: + resolution: {integrity: sha512-dkQ957uSRWHw7CFXLUtUHQI3g3aWApYhfNR2O6jn/907riyTYKVBmxYVROkBcY614FSSeSJh7Xm7SrUWCxvJMQ==} engines: {node: '>=8'} dependencies: type-fest: 0.20.2 @@ -7223,18 +7226,18 @@ packages: array-union: 2.1.0 dir-glob: 3.0.1 fast-glob: 3.2.12 - ignore: 5.2.1 + ignore: 5.2.2 merge2: 1.4.1 slash: 3.0.0 dev: true - /globby/13.1.2: - resolution: {integrity: sha512-LKSDZXToac40u8Q1PQtZihbNdTYSNMuWe+K5l+oa6KgDzSvVrHXlJy40hUP522RjAIoNLJYBJi7ow+rbFpIhHQ==} + /globby/13.1.3: + resolution: {integrity: sha512-8krCNHXvlCgHDpegPzleMq07yMYTO2sXKASmZmquEYWEmCx6J5UTRbp5RwMJkTJGtcQ44YpiUYUiN0b9mzy8Bw==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dependencies: dir-glob: 3.0.1 fast-glob: 3.2.12 - ignore: 5.2.1 + ignore: 5.2.2 merge2: 1.4.1 slash: 4.0.0 @@ -7305,8 +7308,8 @@ packages: duplexer: 0.1.2 dev: true - /h3/1.0.1: - resolution: {integrity: sha512-gDCGpRvjchZW2JBlTqbJ9IOs+mdkXXuwSQkSye+jubHAv/UhdamKqoQvd4RFgyBNjHSId8Y+b10UdTcPlP/V+w==} + /h3/1.0.2: + resolution: {integrity: sha512-25QqjQMz8pX1NI2rZ/ziNT9B8Aog7jmu2a0o8Qm9kKoH3zOhE+2icVs069h6DEp0g1Dst1+zKfRdRYcK0MogJA==} dependencies: cookie-es: 0.5.0 destr: 1.2.2 @@ -7572,20 +7575,20 @@ packages: dependencies: safer-buffer: 2.1.2 - /icss-utils/5.1.0_postcss@8.4.19: + /icss-utils/5.1.0_postcss@8.4.20: resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.19 + postcss: 8.4.20 dev: true /ieee754/1.2.1: resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} - /ignore/5.2.1: - resolution: {integrity: sha512-d2qQLzTJ9WxQftPAuEQpSPmKqzxePjzVbpAVv62AQ64NTL+wR4JkrVqR/LqFsFEUsHDAiId52mJteHDFuDkElA==} + /ignore/5.2.2: + resolution: {integrity: sha512-m1MJSy4Z2NAcyhoYpxQeBsc1ZdNQwYjN0wGbLBlnVArdJ90Gtr8IhNSfZZcCoR0fM/0E0BJ0mf1KnLNDOCJP4w==} engines: {node: '>= 4'} /immutable/4.1.0: @@ -7650,15 +7653,15 @@ packages: mute-stream: 0.0.8 ora: 6.1.2 run-async: 2.4.1 - rxjs: 7.6.0 + rxjs: 7.8.0 string-width: 5.1.2 strip-ansi: 7.0.1 through: 2.3.8 wrap-ansi: 8.0.1 dev: true - /internal-slot/1.0.3: - resolution: {integrity: sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==} + /internal-slot/1.0.4: + resolution: {integrity: sha512-tA8URYccNzMo94s5MQZgH8NB/XTa6HsOo0MLfXTKKEnHVVdegzaQoFZ7Jp44bdvLvY2waT5dc+j5ICEswhi7UQ==} engines: {node: '>= 0.4'} dependencies: get-intrinsic: 1.1.3 @@ -8034,7 +8037,7 @@ packages: resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==} engines: {node: '>= 10.13.0'} dependencies: - '@types/node': 18.11.12 + '@types/node': 18.11.17 merge-stream: 2.0.0 supports-color: 7.2.0 dev: true @@ -8049,7 +8052,7 @@ packages: '@hapi/hoek': 9.3.0 '@hapi/topo': 5.1.0 '@sideway/address': 4.1.4 - '@sideway/formula': 3.0.0 + '@sideway/formula': 3.0.1 '@sideway/pinpoint': 2.0.0 dev: true @@ -8156,8 +8159,8 @@ packages: minimist: 1.2.7 dev: true - /json5/2.2.1: - resolution: {integrity: sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==} + /json5/2.2.2: + resolution: {integrity: sha512-46Tk9JiOL2z7ytNQWFLpj99RZkVgeHf87yGQKsIkaPz1qSH9UczKH1rO7K3wgRselo0tYMUNfecYpm/p1vC7tQ==} engines: {node: '>=6'} hasBin: true @@ -8360,7 +8363,7 @@ packages: log-update: 4.0.0 p-map: 4.0.0 rfdc: 1.3.0 - rxjs: 7.6.0 + rxjs: 7.8.0 through: 2.3.8 wrap-ansi: 7.0.0 dev: true @@ -8381,7 +8384,7 @@ packages: dependencies: big.js: 5.2.2 emojis-list: 3.0.0 - json5: 2.2.1 + json5: 2.2.2 dev: true /local-pkg/0.4.2: @@ -8562,7 +8565,6 @@ packages: engines: {node: '>=12'} dependencies: '@jridgewell/sourcemap-codec': 1.4.14 - dev: true /make-dir/3.1.0: resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} @@ -8584,8 +8586,8 @@ packages: resolution: {integrity: sha512-CkYQrPYZfWnu/DAmVCpTSX/xHpKZ80eKh2lAkyA6AJTef6bW+6JpbQZN5rofum7da+SyN1bi5ctTm+lTfcCW3g==} dev: true - /markdown-it-anchor/8.6.5_2zb4u3vubltivolgu556vv4aom: - resolution: {integrity: sha512-PI1qEHHkTNWT+X6Ip9w+paonfIQ+QZP9sCeMYi47oqhH+EsW8CrJ8J7CzV19QVOj6il8ATGbK2nTECj22ZHGvQ==} + /markdown-it-anchor/8.6.6_2zb4u3vubltivolgu556vv4aom: + resolution: {integrity: sha512-jRW30YGywD2ESXDc+l17AiritL0uVaSnWsb26f+68qaW9zgbIIr1f4v2Nsvc0+s0Z2N3uX6t/yAw7BwCQ1wMsA==} peerDependencies: '@types/markdown-it': '*' markdown-it: '*' @@ -8594,8 +8596,8 @@ packages: markdown-it: 12.3.2 dev: false - /markdown-it-attrs/4.1.4_markdown-it@12.3.2: - resolution: {integrity: sha512-53Zfv8PTb6rlVFDlD106xcZHKBSsRZKJ2IW/rTxEJBEVbVaoxaNsmRkG0HXfbHl2SK8kaxZ2QKqdthWy/QBwmA==} + /markdown-it-attrs/4.1.6_markdown-it@12.3.2: + resolution: {integrity: sha512-O7PDKZlN8RFMyDX13JnctQompwrrILuz2y43pW2GagcwpIIElkAdfeek+erHfxUOlXWPsjFeWmZ8ch1xtRLWpA==} engines: {node: '>=6'} peerDependencies: markdown-it: '>= 9.0.0' @@ -8914,14 +8916,14 @@ packages: '@cloudflare/kv-asset-handler': 0.2.0 '@netlify/functions': 1.3.0 '@rollup/plugin-alias': 4.0.2_rollup@2.79.1 - '@rollup/plugin-commonjs': 23.0.4_rollup@2.79.1 - '@rollup/plugin-inject': 5.0.2_rollup@2.79.1 + '@rollup/plugin-commonjs': 23.0.7_rollup@2.79.1 + '@rollup/plugin-inject': 5.0.3_rollup@2.79.1 '@rollup/plugin-json': 5.0.2_rollup@2.79.1 '@rollup/plugin-node-resolve': 15.0.1_rollup@2.79.1 - '@rollup/plugin-replace': 5.0.1_rollup@2.79.1 - '@rollup/plugin-wasm': 6.0.1_rollup@2.79.1 + '@rollup/plugin-replace': 5.0.2_rollup@2.79.1 + '@rollup/plugin-wasm': 6.1.1_rollup@2.79.1 '@rollup/pluginutils': 5.0.2_rollup@2.79.1 - '@vercel/nft': 0.22.5 + '@vercel/nft': 0.22.6 archiver: 5.3.1 c12: 1.1.0 chalk: 5.2.0 @@ -8935,9 +8937,9 @@ packages: escape-string-regexp: 5.0.0 etag: 1.8.1 fs-extra: 10.1.0 - globby: 13.1.2 + globby: 13.1.3 gzip-size: 7.0.0 - h3: 1.0.1 + h3: 1.0.2 hookable: 5.4.2 http-proxy: 1.18.1 is-primitive: 3.0.1 @@ -8967,7 +8969,7 @@ packages: std-env: 3.3.1 ufo: 1.0.1 unenv: 1.0.0 - unimport: 1.0.1_rollup@2.79.1 + unimport: 1.0.2_rollup@2.79.1 unstorage: 1.0.1 transitivePeerDependencies: - bufferutil @@ -9027,8 +9029,8 @@ packages: hasBin: true dev: true - /node-releases/2.0.6: - resolution: {integrity: sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==} + /node-releases/2.0.8: + resolution: {integrity: sha512-dFSmB8fFHEH/s81Xi+Y/15DQY6VHW81nXRj86EMSL3lmuTmK1e+aT4wrFCkTbm+gSwkw4KpX+rT/pMM2c1mF+A==} /nopt/5.0.0: resolution: {integrity: sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==} @@ -9130,8 +9132,8 @@ packages: escape-string-regexp: 5.0.0 estree-walker: 3.0.1 fs-extra: 10.1.0 - globby: 13.1.2 - h3: 1.0.1 + globby: 13.1.3 + h3: 1.0.2 hash-sum: 2.0.0 hookable: 5.4.2 knitwork: 1.0.0 @@ -9146,13 +9148,13 @@ packages: scule: 1.0.0 strip-literal: 1.0.0 ufo: 1.0.1 - ultrahtml: 1.0.4 + ultrahtml: 1.2.0 unctx: 2.1.1 unenv: 1.0.0 unhead: 1.0.13 - unimport: 1.0.1 - unplugin: 1.0.0 - untyped: 1.0.0 + unimport: 1.0.2 + unplugin: 1.0.1 + untyped: 1.2.0 vue: 3.2.45 vue-bundle-renderer: 1.0.0 vue-devtools-stub: 0.1.0 @@ -9164,8 +9166,11 @@ packages: - encoding - eslint - less + - meow + - optionator - rollup - sass + - stylelint - stylus - sugarss - supports-color @@ -9576,8 +9581,8 @@ packages: engines: {node: '>=4'} dev: true - /pinia/2.0.27_prq2uz4lho2pwp6irk4cfkrxwu: - resolution: {integrity: sha512-nOnXP0OFeL8R4WjAHsterU+11vptda643gH02xKNtSCDPiRzVfRYodOLihLDoa0gL1KKuQKV+KOzEgdt3YvqEw==} + /pinia/2.0.28_prq2uz4lho2pwp6irk4cfkrxwu: + resolution: {integrity: sha512-YClq9DkqCblq9rlyUual7ezMu/iICWdBtfJrDt4oWU9Zxpijyz7xB2xTwx57DaBQ96UGvvTMORzALr+iO5PVMw==} peerDependencies: '@vue/composition-api': ^1.4.0 typescript: '>=4.4.4' @@ -9596,8 +9601,8 @@ packages: vue-demi: 0.13.11_vue@3.2.45 dev: true - /pinia/2.0.27_vue@3.2.45: - resolution: {integrity: sha512-nOnXP0OFeL8R4WjAHsterU+11vptda643gH02xKNtSCDPiRzVfRYodOLihLDoa0gL1KKuQKV+KOzEgdt3YvqEw==} + /pinia/2.0.28_vue@3.2.45: + resolution: {integrity: sha512-YClq9DkqCblq9rlyUual7ezMu/iICWdBtfJrDt4oWU9Zxpijyz7xB2xTwx57DaBQ96UGvvTMORzALr+iO5PVMw==} peerDependencies: '@vue/composition-api': ^1.4.0 typescript: '>=4.4.4' @@ -9639,17 +9644,17 @@ packages: - supports-color dev: true - /postcss-calc/8.2.4_postcss@8.4.19: + /postcss-calc/8.2.4_postcss@8.4.20: resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==} peerDependencies: postcss: ^8.2.2 dependencies: - postcss: 8.4.19 + postcss: 8.4.20 postcss-selector-parser: 6.0.11 postcss-value-parser: 4.2.0 dev: true - /postcss-colormin/5.3.0_postcss@8.4.19: + /postcss-colormin/5.3.0_postcss@8.4.20: resolution: {integrity: sha512-WdDO4gOFG2Z8n4P8TWBpshnL3JpmNmJwdnfP2gbk2qBA8PWwOYcmjmI/t3CmMeL72a7Hkd+x/Mg9O2/0rD54Pg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -9658,65 +9663,65 @@ packages: browserslist: 4.21.4 caniuse-api: 3.0.0 colord: 2.9.3 - postcss: 8.4.19 + postcss: 8.4.20 postcss-value-parser: 4.2.0 dev: true - /postcss-convert-values/5.1.3_postcss@8.4.19: + /postcss-convert-values/5.1.3_postcss@8.4.20: resolution: {integrity: sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: browserslist: 4.21.4 - postcss: 8.4.19 + postcss: 8.4.20 postcss-value-parser: 4.2.0 dev: true - /postcss-custom-properties/12.1.11_postcss@8.4.19: + /postcss-custom-properties/12.1.11_postcss@8.4.20: resolution: {integrity: sha512-0IDJYhgU8xDv1KY6+VgUwuQkVtmYzRwu+dMjnmdMafXYv86SWqfxkc7qdDvWS38vsjaEtv8e0vGOUQrAiMBLpQ==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.19 + postcss: 8.4.20 postcss-value-parser: 4.2.0 dev: true - /postcss-discard-comments/5.1.2_postcss@8.4.19: + /postcss-discard-comments/5.1.2_postcss@8.4.20: resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.19 + postcss: 8.4.20 dev: true - /postcss-discard-duplicates/5.1.0_postcss@8.4.19: + /postcss-discard-duplicates/5.1.0_postcss@8.4.20: resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.19 + postcss: 8.4.20 dev: true - /postcss-discard-empty/5.1.1_postcss@8.4.19: + /postcss-discard-empty/5.1.1_postcss@8.4.20: resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.19 + postcss: 8.4.20 dev: true - /postcss-discard-overridden/5.1.0_postcss@8.4.19: + /postcss-discard-overridden/5.1.0_postcss@8.4.20: resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.19 + postcss: 8.4.20 dev: true /postcss-import-resolver/2.0.0: @@ -9724,53 +9729,53 @@ packages: dependencies: enhanced-resolve: 4.5.0 - /postcss-import/13.0.0_postcss@8.4.19: + /postcss-import/13.0.0_postcss@8.4.20: resolution: {integrity: sha512-LPUbm3ytpYopwQQjqgUH4S3EM/Gb9QsaSPP/5vnoi+oKVy3/mIk2sc0Paqw7RL57GpScm9MdIMUypw2znWiBpg==} engines: {node: '>=10.0.0'} peerDependencies: postcss: ^8.0.0 dependencies: - postcss: 8.4.19 + postcss: 8.4.20 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.19: + /postcss-import/14.1.0_postcss@8.4.20: resolution: {integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==} engines: {node: '>=10.0.0'} peerDependencies: postcss: ^8.0.0 dependencies: - postcss: 8.4.19 + postcss: 8.4.20 postcss-value-parser: 4.2.0 read-cache: 1.0.0 resolve: 1.22.1 dev: true - /postcss-import/15.1.0_postcss@8.4.19: + /postcss-import/15.1.0_postcss@8.4.20: resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==} engines: {node: '>=14.0.0'} peerDependencies: postcss: ^8.0.0 dependencies: - postcss: 8.4.19 + postcss: 8.4.20 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.19: + /postcss-js/4.0.0_postcss@8.4.20: 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.19 + postcss: 8.4.20 dev: true - /postcss-load-config/3.1.4_postcss@8.4.19: + /postcss-load-config/3.1.4_postcss@8.4.20: resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==} engines: {node: '>= 10'} peerDependencies: @@ -9783,11 +9788,11 @@ packages: optional: true dependencies: lilconfig: 2.0.6 - postcss: 8.4.19 + postcss: 8.4.20 yaml: 1.10.2 dev: true - /postcss-loader/4.3.0_postcss@8.4.19: + /postcss-loader/4.3.0_postcss@8.4.20: resolution: {integrity: sha512-M/dSoIiNDOo8Rk0mUqoj4kpGq91gcxCfb9PoyZVdZ76/AuhxylHDYZblNE8o+EQ9AMSASeMFEKxZf5aU6wlx1Q==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -9800,23 +9805,23 @@ packages: cosmiconfig: 7.1.0 klona: 2.0.5 loader-utils: 2.0.4 - postcss: 8.4.19 + postcss: 8.4.20 schema-utils: 3.1.1 semver: 7.3.8 dev: true - /postcss-merge-longhand/5.1.7_postcss@8.4.19: + /postcss-merge-longhand/5.1.7_postcss@8.4.20: resolution: {integrity: sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.19 + postcss: 8.4.20 postcss-value-parser: 4.2.0 - stylehacks: 5.1.1_postcss@8.4.19 + stylehacks: 5.1.1_postcss@8.4.20 dev: true - /postcss-merge-rules/5.1.3_postcss@8.4.19: + /postcss-merge-rules/5.1.3_postcss@8.4.20: resolution: {integrity: sha512-LbLd7uFC00vpOuMvyZop8+vvhnfRGpp2S+IMQKeuOZZapPRY4SMq5ErjQeHbHsjCUgJkRNrlU+LmxsKIqPKQlA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -9824,220 +9829,220 @@ packages: dependencies: browserslist: 4.21.4 caniuse-api: 3.0.0 - cssnano-utils: 3.1.0_postcss@8.4.19 - postcss: 8.4.19 + cssnano-utils: 3.1.0_postcss@8.4.20 + postcss: 8.4.20 postcss-selector-parser: 6.0.11 dev: true - /postcss-minify-font-values/5.1.0_postcss@8.4.19: + /postcss-minify-font-values/5.1.0_postcss@8.4.20: resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.19 + postcss: 8.4.20 postcss-value-parser: 4.2.0 dev: true - /postcss-minify-gradients/5.1.1_postcss@8.4.19: + /postcss-minify-gradients/5.1.1_postcss@8.4.20: resolution: {integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: colord: 2.9.3 - cssnano-utils: 3.1.0_postcss@8.4.19 - postcss: 8.4.19 + cssnano-utils: 3.1.0_postcss@8.4.20 + postcss: 8.4.20 postcss-value-parser: 4.2.0 dev: true - /postcss-minify-params/5.1.4_postcss@8.4.19: + /postcss-minify-params/5.1.4_postcss@8.4.20: resolution: {integrity: sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: browserslist: 4.21.4 - cssnano-utils: 3.1.0_postcss@8.4.19 - postcss: 8.4.19 + cssnano-utils: 3.1.0_postcss@8.4.20 + postcss: 8.4.20 postcss-value-parser: 4.2.0 dev: true - /postcss-minify-selectors/5.2.1_postcss@8.4.19: + /postcss-minify-selectors/5.2.1_postcss@8.4.20: resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.19 + postcss: 8.4.20 postcss-selector-parser: 6.0.11 dev: true - /postcss-modules-extract-imports/3.0.0_postcss@8.4.19: + /postcss-modules-extract-imports/3.0.0_postcss@8.4.20: resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.19 + postcss: 8.4.20 dev: true - /postcss-modules-local-by-default/4.0.0_postcss@8.4.19: + /postcss-modules-local-by-default/4.0.0_postcss@8.4.20: resolution: {integrity: sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - icss-utils: 5.1.0_postcss@8.4.19 - postcss: 8.4.19 + icss-utils: 5.1.0_postcss@8.4.20 + postcss: 8.4.20 postcss-selector-parser: 6.0.11 postcss-value-parser: 4.2.0 dev: true - /postcss-modules-scope/3.0.0_postcss@8.4.19: + /postcss-modules-scope/3.0.0_postcss@8.4.20: resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.19 + postcss: 8.4.20 postcss-selector-parser: 6.0.11 dev: true - /postcss-modules-values/4.0.0_postcss@8.4.19: + /postcss-modules-values/4.0.0_postcss@8.4.20: 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.19 - postcss: 8.4.19 + icss-utils: 5.1.0_postcss@8.4.20 + postcss: 8.4.20 dev: true - /postcss-nested/6.0.0_postcss@8.4.19: + /postcss-nested/6.0.0_postcss@8.4.20: resolution: {integrity: sha512-0DkamqrPcmkBDsLn+vQDIrtkSbNkv5AD/M322ySo9kqFkCIYklym2xEmWkwo+Y3/qZo34tzEPNUw4y7yMCdv5w==} engines: {node: '>=12.0'} peerDependencies: postcss: ^8.2.14 dependencies: - postcss: 8.4.19 + postcss: 8.4.20 postcss-selector-parser: 6.0.11 dev: true - /postcss-nesting/10.2.0_postcss@8.4.19: + /postcss-nesting/10.2.0_postcss@8.4.20: resolution: {integrity: sha512-EwMkYchxiDiKUhlJGzWsD9b2zvq/r2SSubcRrgP+jujMXFzqvANLt16lJANC+5uZ6hjI7lpRmI6O8JIl+8l1KA==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - '@csstools/selector-specificity': 2.0.2_tbwh2mpcdwdeb2slx6bobindua - postcss: 8.4.19 + '@csstools/selector-specificity': 2.0.2_2xshye3abirqjlplmebvmaxyna + postcss: 8.4.20 postcss-selector-parser: 6.0.11 dev: true - /postcss-normalize-charset/5.1.0_postcss@8.4.19: + /postcss-normalize-charset/5.1.0_postcss@8.4.20: resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.19 + postcss: 8.4.20 dev: true - /postcss-normalize-display-values/5.1.0_postcss@8.4.19: + /postcss-normalize-display-values/5.1.0_postcss@8.4.20: resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.19 + postcss: 8.4.20 postcss-value-parser: 4.2.0 dev: true - /postcss-normalize-positions/5.1.1_postcss@8.4.19: + /postcss-normalize-positions/5.1.1_postcss@8.4.20: resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.19 + postcss: 8.4.20 postcss-value-parser: 4.2.0 dev: true - /postcss-normalize-repeat-style/5.1.1_postcss@8.4.19: + /postcss-normalize-repeat-style/5.1.1_postcss@8.4.20: resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.19 + postcss: 8.4.20 postcss-value-parser: 4.2.0 dev: true - /postcss-normalize-string/5.1.0_postcss@8.4.19: + /postcss-normalize-string/5.1.0_postcss@8.4.20: resolution: {integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.19 + postcss: 8.4.20 postcss-value-parser: 4.2.0 dev: true - /postcss-normalize-timing-functions/5.1.0_postcss@8.4.19: + /postcss-normalize-timing-functions/5.1.0_postcss@8.4.20: resolution: {integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.19 + postcss: 8.4.20 postcss-value-parser: 4.2.0 dev: true - /postcss-normalize-unicode/5.1.1_postcss@8.4.19: + /postcss-normalize-unicode/5.1.1_postcss@8.4.20: resolution: {integrity: sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: browserslist: 4.21.4 - postcss: 8.4.19 + postcss: 8.4.20 postcss-value-parser: 4.2.0 dev: true - /postcss-normalize-url/5.1.0_postcss@8.4.19: + /postcss-normalize-url/5.1.0_postcss@8.4.20: 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.19 + postcss: 8.4.20 postcss-value-parser: 4.2.0 dev: true - /postcss-normalize-whitespace/5.1.1_postcss@8.4.19: + /postcss-normalize-whitespace/5.1.1_postcss@8.4.20: resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.19 + postcss: 8.4.20 postcss-value-parser: 4.2.0 dev: true - /postcss-ordered-values/5.1.3_postcss@8.4.19: + /postcss-ordered-values/5.1.3_postcss@8.4.20: 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.19 - postcss: 8.4.19 + cssnano-utils: 3.1.0_postcss@8.4.20 + postcss: 8.4.20 postcss-value-parser: 4.2.0 dev: true - /postcss-reduce-initial/5.1.1_postcss@8.4.19: + /postcss-reduce-initial/5.1.1_postcss@8.4.20: resolution: {integrity: sha512-//jeDqWcHPuXGZLoolFrUXBDyuEGbr9S2rMo19bkTIjBQ4PqkaO+oI8wua5BOUxpfi97i3PCoInsiFIEBfkm9w==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -10045,16 +10050,16 @@ packages: dependencies: browserslist: 4.21.4 caniuse-api: 3.0.0 - postcss: 8.4.19 + postcss: 8.4.20 dev: true - /postcss-reduce-transforms/5.1.0_postcss@8.4.19: + /postcss-reduce-transforms/5.1.0_postcss@8.4.20: resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.19 + postcss: 8.4.20 postcss-value-parser: 4.2.0 dev: true @@ -10074,28 +10079,28 @@ packages: util-deprecate: 1.0.2 dev: true - /postcss-svgo/5.1.0_postcss@8.4.19: + /postcss-svgo/5.1.0_postcss@8.4.20: resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.19 + postcss: 8.4.20 postcss-value-parser: 4.2.0 svgo: 2.8.0 dev: true - /postcss-unique-selectors/5.1.1_postcss@8.4.19: + /postcss-unique-selectors/5.1.1_postcss@8.4.20: resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.19 + postcss: 8.4.20 postcss-selector-parser: 6.0.11 dev: true - /postcss-url/10.1.3_postcss@8.4.19: + /postcss-url/10.1.3_postcss@8.4.20: resolution: {integrity: sha512-FUzyxfI5l2tKmXdYc6VTu3TWZsInayEKPbiyW+P6vmmIrrb4I6CGX0BFoewgYHLK+oIL5FECEK02REYRpBvUCw==} engines: {node: '>=10'} peerDependencies: @@ -10104,7 +10109,7 @@ packages: make-dir: 3.1.0 mime: 2.5.2 minimatch: 3.0.8 - postcss: 8.4.19 + postcss: 8.4.20 xxhashjs: 0.2.2 dev: true @@ -10112,8 +10117,8 @@ packages: resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} dev: true - /postcss/8.4.19: - resolution: {integrity: sha512-h+pbPsyhlYj6N2ozBmHhHrs9DzGmbaarbLvWipMRO7RLS+v4onj26MPFXA5OBYFxyqYhUJK456SwDcY9H2/zsA==} + /postcss/8.4.20: + resolution: {integrity: sha512-6Q04AXR1212bXr5fh03u8aAwbLxAQNGQ/Q1LNa0VfOI06ZAlhPHtQvE4OIdpj4kLThXilalPnmDSOD65DcHt+g==} engines: {node: ^10 || ^12 || >=14} dependencies: nanoid: 3.3.4 @@ -10524,7 +10529,7 @@ packages: terser: 5.16.1 dev: true - /rollup-plugin-typescript2/0.34.1_nv3cvulfrssbbv5jon74ek7f7i: + /rollup-plugin-typescript2/0.34.1_oj4jlwi3mkekxo3vucumcwebnq: resolution: {integrity: sha512-P4cHLtGikESmqi1CA+tdMDUv8WbQV48mzPYt77TSTOPJpERyZ9TXdDgjSDix8Fkqce6soYz3+fa4lrC93IEkcw==} peerDependencies: rollup: '>=1.26.3' @@ -10533,7 +10538,7 @@ packages: '@rollup/pluginutils': 4.2.1 find-cache-dir: 3.3.2 fs-extra: 10.1.0 - rollup: 3.7.0 + rollup: 3.7.5 semver: 7.3.8 tslib: 2.4.1 typescript: 4.9.4 @@ -10570,8 +10575,8 @@ packages: fsevents: 2.3.2 dev: true - /rollup/3.7.0: - resolution: {integrity: sha512-FIJe0msW9P7L9BTfvaJyvn1U1BVCNTL3w8O+PKIrCyiMLg+rIUGb4MbcgVZ10Lnm1uWXOTOWRNARjfXC1+M12Q==} + /rollup/3.7.5: + resolution: {integrity: sha512-z0ZbqHBtS/et2EEUKMrAl2CoSdwN7ZPzL17UMiKN9RjjqHShTlv7F9J6ZJZJNREYjBh3TvBrdfjkFDIXFNeuiQ==} engines: {node: '>=14.18.0', npm: '>=8.0.0'} hasBin: true optionalDependencies: @@ -10587,8 +10592,8 @@ packages: dependencies: queue-microtask: 1.2.3 - /rxjs/7.6.0: - resolution: {integrity: sha512-DDa7d8TFNUalGC9VqXvQ1euWNN7sc63TrUCuM9J998+ViviahMIjKSOU7rfcgFOF+FCD71BhDRv4hrFz+ImDLQ==} + /rxjs/7.8.0: + resolution: {integrity: sha512-F2+gxDshqmIub1KdvZkaEfGDwLNpPvk9Fs6LD/MyQxNgMds/WH9OdDDXOmxUZpME+iSK3rQCctkL0DYyytUqMg==} dependencies: tslib: 2.4.1 dev: true @@ -10625,8 +10630,8 @@ packages: rimraf: 2.7.1 dev: true - /sass/1.56.2: - resolution: {integrity: sha512-ciEJhnyCRwzlBCB+h5cCPM6ie/6f8HrhZMQOf5vlU60Y1bI1rx5Zb0vlDZvaycHsg/MqFfF1Eq2eokAa32iw8w==} + /sass/1.57.0: + resolution: {integrity: sha512-IZNEJDTK1cF5B1cGA593TPAV/1S0ysUDxq9XHjX/+SMy0QfUny+nfUsq5ZP7wWSl4eEf7wDJcEZ8ABYFmh3m/w==} engines: {node: '>=12.0.0'} hasBin: true dependencies: @@ -11108,14 +11113,14 @@ packages: resolution: {integrity: sha512-OPhtyEjyyN9x3nhPsu76f52yUGXiZcgvsrFVtvTkyGRQJ0XK+GPc6ov1z+lRpbeabka+MYEQxOYRnt5nF30aMw==} dev: false - /stylehacks/5.1.1_postcss@8.4.19: + /stylehacks/5.1.1_postcss@8.4.20: resolution: {integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: browserslist: 4.21.4 - postcss: 8.4.19 + postcss: 8.4.20 postcss-selector-parser: 6.0.11 dev: true @@ -11143,7 +11148,7 @@ packages: resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} engines: {node: '>= 0.4'} - /svelte-check/2.10.2_svelte@3.54.0: + /svelte-check/2.10.2_svelte@3.55.0: resolution: {integrity: sha512-h1Tuiir0m8J5yqN+Vx6qgKKk1L871e6a9o7rMwVWfu8Qs6Wg7x2R+wcxS3SO3VpW5JCxCat90rxPsZMYgz+HaQ==} hasBin: true peerDependencies: @@ -11155,8 +11160,8 @@ packages: import-fresh: 3.3.0 picocolors: 1.0.0 sade: 1.8.1 - svelte: 3.54.0 - svelte-preprocess: 4.10.7_vjccw6zkwqrmxudvmy4reaayx4 + svelte: 3.55.0 + svelte-preprocess: 4.10.7_niwyv7xychq2ag6arq5eqxbomm typescript: 4.9.4 transitivePeerDependencies: - '@babel/core' @@ -11171,16 +11176,16 @@ packages: - sugarss dev: true - /svelte-hmr/0.15.1_svelte@3.54.0: + /svelte-hmr/0.15.1_svelte@3.55.0: resolution: {integrity: sha512-BiKB4RZ8YSwRKCNVdNxK/GfY+r4Kjgp9jCLEy0DuqAKfmQtpL38cQK3afdpjw4sqSs4PLi3jIPJIFp259NkZtA==} engines: {node: ^12.20 || ^14.13.1 || >= 16} peerDependencies: svelte: '>=3.19.0' dependencies: - svelte: 3.54.0 + svelte: 3.55.0 dev: true - /svelte-preprocess/4.10.7_svelte@3.54.0: + /svelte-preprocess/4.10.7_niwyv7xychq2ag6arq5eqxbomm: resolution: {integrity: sha512-sNPBnqYD6FnmdBrUmBCaqS00RyCsCpj2BG58A1JBswNF7b0OKviwxqVrOL/CKyJrLSClrSeqQv5BXNg2RUbPOw==} engines: {node: '>= 9.11.2'} requiresBuild: true @@ -11227,10 +11232,11 @@ packages: magic-string: 0.25.9 sorcery: 0.10.0 strip-indent: 3.0.0 - svelte: 3.54.0 + svelte: 3.55.0 + typescript: 4.9.4 dev: true - /svelte-preprocess/4.10.7_vjccw6zkwqrmxudvmy4reaayx4: + /svelte-preprocess/4.10.7_svelte@3.55.0: resolution: {integrity: sha512-sNPBnqYD6FnmdBrUmBCaqS00RyCsCpj2BG58A1JBswNF7b0OKviwxqVrOL/CKyJrLSClrSeqQv5BXNg2RUbPOw==} engines: {node: '>= 9.11.2'} requiresBuild: true @@ -11277,12 +11283,11 @@ packages: magic-string: 0.25.9 sorcery: 0.10.0 strip-indent: 3.0.0 - svelte: 3.54.0 - typescript: 4.9.4 + svelte: 3.55.0 dev: true - /svelte/3.54.0: - resolution: {integrity: sha512-tdrgeJU0hob0ZWAMoKXkhcxXA7dpTg6lZGxUeko5YqvPdJBiyRspGsCwV27kIrbrqPP2WUoSV9ca0gnLlw8YzQ==} + /svelte/3.55.0: + resolution: {integrity: sha512-uGu2FVMlOuey4JoKHKrpZFkoYyj0VLjJdz47zX5+gVK5odxHM40RVhar9/iK2YFRVxvfg9FkhfVlR0sjeIrOiA==} engines: {node: '>= 8'} /svg-tags/1.0.0: @@ -11337,12 +11342,12 @@ packages: open: 7.4.2 portfinder: 1.0.32 replace-in-file: 6.3.5 - tailwindcss: 3.2.4_postcss@8.4.19 + tailwindcss: 3.2.4_postcss@8.4.20 transitivePeerDependencies: - supports-color dev: true - /tailwindcss/3.2.4_postcss@8.4.19: + /tailwindcss/3.2.4_postcss@8.4.20: resolution: {integrity: sha512-AhwtHCKMtR71JgeYDaswmZXhPcW9iuI9Sp2LvZPo9upDZ7231ZJ7eA9RaURbhpXGVlrjX4cFNlB4ieTetEb7hQ==} engines: {node: '>=12.13.0'} hasBin: true @@ -11363,11 +11368,11 @@ packages: normalize-path: 3.0.0 object-hash: 3.0.0 picocolors: 1.0.0 - postcss: 8.4.19 - postcss-import: 14.1.0_postcss@8.4.19 - postcss-js: 4.0.0_postcss@8.4.19 - postcss-load-config: 3.1.4_postcss@8.4.19 - postcss-nested: 6.0.0_postcss@8.4.19 + postcss: 8.4.20 + postcss-import: 14.1.0_postcss@8.4.20 + postcss-js: 4.0.0_postcss@8.4.20 + postcss-load-config: 3.1.4_postcss@8.4.20 + postcss-nested: 6.0.0_postcss@8.4.20 postcss-selector-parser: 6.0.11 postcss-value-parser: 4.2.0 quick-lru: 5.1.1 @@ -11691,8 +11696,8 @@ packages: engines: {node: '>=12.20'} dev: true - /type-fest/3.3.0: - resolution: {integrity: sha512-gezeeOIZyQLGW5uuCeEnXF1aXmtt2afKspXz3YqoOcZ3l/YMJq1pujvgT+cz/Nw1O/7q/kSav5fihJHsC/AOUg==} + /type-fest/3.4.0: + resolution: {integrity: sha512-PEPg6RHlB9cFwoTMNENNrQFL0cXX04voWr2UPwQBJ3pVs7Mt8Y1oLWdUeMdGEwZE8HFFlujq8gS9enmyiQ8pLg==} engines: {node: '>=14.16'} dev: true @@ -11733,8 +11738,8 @@ packages: dev: true optional: true - /ultrahtml/1.0.4: - resolution: {integrity: sha512-sso5lk1F1/Q1crKx0+9/9/rHCykRJFSifYLaShnhgzfJhbEDZdpntClBs7ojhx0lRmQlUtDIxrC/8hBJj5bVPw==} + /ultrahtml/1.2.0: + resolution: {integrity: sha512-vxZM2yNvajRmCj/SknRYGNXk2tqiy6kRNvZjJLaleG3zJbSh/aNkOqD1/CVzypw8tyHyhpzYuwQgMMhUB4ZVNQ==} dev: true /unbox-primitive/1.0.2: @@ -11759,7 +11764,7 @@ packages: acorn: 8.8.1 estree-walker: 3.0.1 magic-string: 0.26.7 - unplugin: 1.0.0 + unplugin: 1.0.1 /undici/5.14.0: resolution: {integrity: sha512-yJlHYw6yXPPsuOH0x2Ib1Km61vu4hLiRRQoafs+WUgX1vO64vgnxiCEN9dpIrhZyHFsai3F0AEj4P9zy19enEQ==} @@ -11785,37 +11790,37 @@ packages: hookable: 5.4.2 dev: true - /unimport/1.0.1: - resolution: {integrity: sha512-SEPKl3uyqUvi6c0MnyCmUF9H07CuC9j9p2p33F03LmegU0sxjpnjL0fLKAhh7BTfcKaJKj+1iOiAFtg7P3m5mQ==} + /unimport/1.0.2: + resolution: {integrity: sha512-DcYkDwl1XMZNmyEKUFzVzHAul0FZcj9m0OM/WRfaAtg6Gw1waYlypYJl6qAg31k57TnNPwGDCAxYPodYC5qomQ==} dependencies: '@rollup/pluginutils': 5.0.2 escape-string-regexp: 5.0.0 fast-glob: 3.2.12 local-pkg: 0.4.2 - magic-string: 0.26.7 + magic-string: 0.27.0 mlly: 1.0.0 pathe: 1.0.0 pkg-types: 1.0.1 scule: 1.0.0 strip-literal: 1.0.0 - unplugin: 1.0.0 + unplugin: 1.0.1 transitivePeerDependencies: - rollup - /unimport/1.0.1_rollup@2.79.1: - resolution: {integrity: sha512-SEPKl3uyqUvi6c0MnyCmUF9H07CuC9j9p2p33F03LmegU0sxjpnjL0fLKAhh7BTfcKaJKj+1iOiAFtg7P3m5mQ==} + /unimport/1.0.2_rollup@2.79.1: + resolution: {integrity: sha512-DcYkDwl1XMZNmyEKUFzVzHAul0FZcj9m0OM/WRfaAtg6Gw1waYlypYJl6qAg31k57TnNPwGDCAxYPodYC5qomQ==} dependencies: '@rollup/pluginutils': 5.0.2_rollup@2.79.1 escape-string-regexp: 5.0.0 fast-glob: 3.2.12 local-pkg: 0.4.2 - magic-string: 0.26.7 + magic-string: 0.27.0 mlly: 1.0.0 pathe: 1.0.0 pkg-types: 1.0.1 scule: 1.0.0 strip-literal: 1.0.0 - unplugin: 1.0.0 + unplugin: 1.0.1 transitivePeerDependencies: - rollup dev: true @@ -11833,13 +11838,13 @@ packages: resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} engines: {node: '>= 0.8'} - /unplugin/1.0.0: - resolution: {integrity: sha512-H5UnBUxfhTXBXGo2AwKsl0UaLSHzSNDZNehPQSgdhVfO/t+XAS1Yoj3vmLrrlBrS9ZwtH5tejbX/TCp5DcyCKg==} + /unplugin/1.0.1: + resolution: {integrity: sha512-aqrHaVBWW1JVKBHmGo33T5TxeL0qWzfvjWokObHA9bYmN7eNDkwOxmLjhioHl9878qDFMAaT51XNroRyuz7WxA==} dependencies: acorn: 8.8.1 chokidar: 3.5.3 webpack-sources: 3.2.3 - webpack-virtual-modules: 0.4.6 + webpack-virtual-modules: 0.5.0 /unstorage/1.0.1: resolution: {integrity: sha512-J1c4b8K2KeihHrQtdgl/ybIapArUbPaPb+TyJy/nGSauDwDYqciZsEKdkee568P3c8SSH4TIgnGRHDWMPGw+Lg==} @@ -11847,7 +11852,7 @@ packages: anymatch: 3.1.3 chokidar: 3.5.3 destr: 1.2.2 - h3: 1.0.1 + h3: 1.0.2 ioredis: 5.2.4 listhen: 1.0.1 mkdir: 0.0.2 @@ -11866,8 +11871,8 @@ packages: engines: {node: '>=8'} dev: true - /untyped/1.0.0: - resolution: {integrity: sha512-aBeR3Z51038d7zVzsNShYEdO7u/VCp5R17fxpPXlD2QvG9g6uVJ+JM+zMJ7KFPIt1BNf3I6bU6PhAlsAFkIfdA==} + /untyped/1.2.0: + resolution: {integrity: sha512-nG0A55YEhUU5UCEM+nhIhCVkA8a4L1spIVtzO0937WDjEA6jrKpu184O2K9iv5UuJNHnwhu+Q3TXiSJh/JrjlQ==} dependencies: '@babel/core': 7.20.5 '@babel/standalone': 7.20.6 @@ -11981,7 +11986,7 @@ packages: pathe: 0.2.0 source-map: 0.6.1 source-map-support: 0.5.21 - vite: 4.0.0 + vite: 3.2.5 transitivePeerDependencies: - '@types/node' - less @@ -11992,8 +11997,8 @@ packages: - terser dev: true - /vite-node/0.25.8_@types+node@17.0.45: - resolution: {integrity: sha512-o1GsPZcq4ce7ZUUALnOfYP/bjaHQYtLDLuirOMvYCdsuvDMb2tggib2RZRfHIhTEF2QnIgyQEoyaOjAMHGPRiw==} + /vite-node/0.26.0_@types+node@17.0.45: + resolution: {integrity: sha512-nLtHWCv6reONl1oFsKhQ/LT7n3UNLpvVARAJlmGrQV6qSElht/9AdN41Pa+WSkw2Winh682UzM0Yw0GNlfqejw==} engines: {node: '>=v14.16.0'} hasBin: true dependencies: @@ -12002,7 +12007,7 @@ packages: pathe: 0.2.0 source-map: 0.6.1 source-map-support: 0.5.21 - vite: 4.0.0_@types+node@17.0.45 + vite: 4.0.2_@types+node@17.0.45 transitivePeerDependencies: - '@types/node' - less @@ -12029,18 +12034,27 @@ packages: - stylus dev: true - /vite-plugin-checker/0.5.1_vite@3.2.5: - resolution: {integrity: sha512-NFiO1PyK9yGuaeSnJ7Whw9fnxLc1AlELnZoyFURnauBYhbIkx9n+PmIXxSFUuC9iFyACtbJQUAEuQi6yHs2Adg==} + /vite-plugin-checker/0.5.2_vite@3.2.5: + resolution: {integrity: sha512-RtpoXS1+A31HcXcNiuHyVDU3SlH1tU/ufOZEBlBrKclNsE+P9BdVsXiO5AWpczZCM6G2k/7GeH/BRi9lDvvakQ==} engines: {node: '>=14.16'} peerDependencies: eslint: '*' + meow: ^9.0.0 + optionator: ^0.9.1 + stylelint: '>=13' typescript: '*' - vite: ^2.0.0 || ^3.0.0-0 || ^2.9.0 || ^3.0.0 || ^4.0.0 + vite: '>=2.0.0 || ^2.9.0 || ^3.0.0 || ^4.0.0' vls: '*' vti: '*' peerDependenciesMeta: eslint: optional: true + meow: + optional: true + optionator: + optional: true + stylelint: + optional: true typescript: optional: true vls: @@ -12062,21 +12076,21 @@ packages: vite: 3.2.5 vscode-languageclient: 7.0.0 vscode-languageserver: 7.0.0 - vscode-languageserver-textdocument: 1.0.7 - vscode-uri: 3.0.6 + vscode-languageserver-textdocument: 1.0.8 + vscode-uri: 3.0.7 dev: true - /vite-plugin-vuetify/1.0.0-alpha.12_6fvbykfru42ntqkibhp42cidqy: + /vite-plugin-vuetify/1.0.0-alpha.12_ibyvml73pawao2tn3gik5jyc44: resolution: {integrity: sha512-DMb7oY6F67P1RTEU28xQePUnyZdm+sbeGgIF3exBrA5yLL8NKKPIahqJN4+MAWMXCJVwNKy7nsS6zVgOLtcoQg==} engines: {node: '>=12'} peerDependencies: vite: ^2.7.0 || ^2.9.0 || ^3.0.0 || ^4.0.0 vuetify: ^3.0.0-beta.4 dependencies: - '@vuetify/loader-shared': 1.7.0_vue@3.2.45+vuetify@3.0.4 + '@vuetify/loader-shared': 1.7.0_vue@3.2.45+vuetify@3.0.5 debug: 4.3.4 vite: 2.9.15 - vuetify: 3.0.4_ny5xcw2md7vsxw37otcxmygka4 + vuetify: 3.0.5_ny5xcw2md7vsxw37otcxmygka4 transitivePeerDependencies: - supports-color - vue @@ -12098,7 +12112,7 @@ packages: optional: true dependencies: esbuild: 0.14.54 - postcss: 8.4.19 + postcss: 8.4.20 resolve: 1.22.1 rollup: 2.77.3 optionalDependencies: @@ -12130,7 +12144,7 @@ packages: optional: true dependencies: esbuild: 0.15.18 - postcss: 8.4.19 + postcss: 8.4.20 resolve: 1.22.1 rollup: 2.79.1 optionalDependencies: @@ -12164,15 +12178,15 @@ packages: dependencies: '@types/node': 17.0.45 esbuild: 0.15.18 - postcss: 8.4.19 + postcss: 8.4.20 resolve: 1.22.1 rollup: 2.79.1 optionalDependencies: fsevents: 2.3.2 dev: true - /vite/4.0.0: - resolution: {integrity: sha512-ynad+4kYs8Jcnn8J7SacS9vAbk7eMy0xWg6E7bAhS1s79TK+D7tVFGXVZ55S7RNLRROU1rxoKlvZ/qjaB41DGA==} + /vite/4.0.2: + resolution: {integrity: sha512-QJaY3R+tFlTagH0exVqbgkkw45B+/bXVBzF2ZD1KB5Z8RiAoiKo60vSUf6/r4c2Vh9jfGBKM4oBI9b4/1ZJYng==} engines: {node: ^14.18.0 || >=16.0.0} hasBin: true peerDependencies: @@ -12196,16 +12210,16 @@ packages: terser: optional: true dependencies: - esbuild: 0.16.3 - postcss: 8.4.19 + esbuild: 0.16.9 + postcss: 8.4.20 resolve: 1.22.1 - rollup: 3.7.0 + rollup: 3.7.5 optionalDependencies: fsevents: 2.3.2 dev: true - /vite/4.0.0_@types+node@17.0.45: - resolution: {integrity: sha512-ynad+4kYs8Jcnn8J7SacS9vAbk7eMy0xWg6E7bAhS1s79TK+D7tVFGXVZ55S7RNLRROU1rxoKlvZ/qjaB41DGA==} + /vite/4.0.2_@types+node@17.0.45: + resolution: {integrity: sha512-QJaY3R+tFlTagH0exVqbgkkw45B+/bXVBzF2ZD1KB5Z8RiAoiKo60vSUf6/r4c2Vh9jfGBKM4oBI9b4/1ZJYng==} engines: {node: ^14.18.0 || >=16.0.0} hasBin: true peerDependencies: @@ -12230,15 +12244,15 @@ packages: optional: true dependencies: '@types/node': 17.0.45 - esbuild: 0.16.3 - postcss: 8.4.19 + esbuild: 0.16.9 + postcss: 8.4.20 resolve: 1.22.1 - rollup: 3.7.0 + rollup: 3.7.5 optionalDependencies: fsevents: 2.3.2 - /vite/4.0.0_sass@1.56.2: - resolution: {integrity: sha512-ynad+4kYs8Jcnn8J7SacS9vAbk7eMy0xWg6E7bAhS1s79TK+D7tVFGXVZ55S7RNLRROU1rxoKlvZ/qjaB41DGA==} + /vite/4.0.2_sass@1.57.0: + resolution: {integrity: sha512-QJaY3R+tFlTagH0exVqbgkkw45B+/bXVBzF2ZD1KB5Z8RiAoiKo60vSUf6/r4c2Vh9jfGBKM4oBI9b4/1ZJYng==} engines: {node: ^14.18.0 || >=16.0.0} hasBin: true peerDependencies: @@ -12262,24 +12276,24 @@ packages: terser: optional: true dependencies: - esbuild: 0.16.3 - postcss: 8.4.19 + esbuild: 0.16.9 + postcss: 8.4.20 resolve: 1.22.1 - rollup: 3.7.0 - sass: 1.56.2 + rollup: 3.7.5 + sass: 1.57.0 optionalDependencies: fsevents: 2.3.2 dev: true - /vitefu/0.2.3_vite@4.0.0: - resolution: {integrity: sha512-75l7TTuU8isAhz1QFtNKjDkqjxvndfMC1AfIMjJ0ZQ59ZD0Ow9QOIsJJX16Wv9PS8f+zMzp6fHy5cCbKG/yVUQ==} + /vitefu/0.2.4_vite@4.0.2: + resolution: {integrity: sha512-fanAXjSaf9xXtOOeno8wZXIhgia+CZury481LsDaV++lSvcU2R9Ch2bPh3PYFyoHW+w9LqAeYRISVQjUIew14g==} peerDependencies: vite: ^3.0.0 || ^4.0.0 || ^2.9.0 peerDependenciesMeta: vite: optional: true dependencies: - vite: 4.0.0 + vite: 4.0.2 dev: true /vitepress/1.0.0-alpha.10: @@ -12290,7 +12304,7 @@ packages: '@docsearch/js': 3.3.0 '@vitejs/plugin-vue': 3.2.0_vite@3.2.5+vue@3.2.45 '@vue/devtools-api': 6.4.5 - '@vueuse/core': 9.6.0_vue@3.2.45 + '@vueuse/core': 9.7.0_vue@3.2.45 body-scroll-lock: 4.0.0-beta.0 shiki: 0.11.1 vite: 3.2.5 @@ -12330,8 +12344,8 @@ packages: vscode-languageserver-types: 3.16.0 dev: true - /vscode-languageserver-textdocument/1.0.7: - resolution: {integrity: sha512-bFJH7UQxlXT8kKeyiyu41r22jCZXG8kuuVVA33OEJn1diWOZK5n8zBSPZFHVBOu8kXZ6h0LIRhf5UnCo61J4Hg==} + /vscode-languageserver-textdocument/1.0.8: + resolution: {integrity: sha512-1bonkGqQs5/fxGT5UchTgjGVnfysL0O8v1AYMBjqTbWQTFn721zaPGDYFkOKtfDgFiSgXM3KwaG3FMGfW4Ed9Q==} dev: true /vscode-languageserver-types/3.16.0: @@ -12351,8 +12365,8 @@ packages: /vscode-textmate/6.0.0: resolution: {integrity: sha512-gu73tuZfJgu+mvCSy4UZwd2JXykjK9zAZsfmDeut5dx/1a7FeTk0XwJsSuqQn+cuMCGVbIBfl+s53X4T19DnzQ==} - /vscode-uri/3.0.6: - resolution: {integrity: sha512-fmL7V1eiDBFRRnu+gfRWTzyPpNIHJTc4mWnFkwBUmO9U3KPgJAmTx7oxi2bl/Rh6HLdU7+4C9wlj0k2E4AdKFQ==} + /vscode-uri/3.0.7: + resolution: {integrity: sha512-eOpPHogvorZRobNqJGhapa0JdwaxpjVvyBp0QIUMRMSf8ZAlqOdEquKuRmw9Qwu0qXtJIWqFtMkmvJjUZmMjVA==} dev: true /vue-bundle-renderer/1.0.0: @@ -12396,7 +12410,7 @@ packages: resolution: {integrity: sha512-RutnB7X8c5hjq39NceArgXg28WZtZpGc3+J16ljMiYnFhKvd8hITxSWQSQ5bvldxMDU6gG5mkxl1MTQLXckVSQ==} dev: true - /vue-eslint-parser/8.3.0_eslint@8.29.0: + /vue-eslint-parser/8.3.0_eslint@8.30.0: resolution: {integrity: sha512-dzHGG3+sYwSf6zFBa0Gi9ZDshD7+ad14DGOdTLjruRVgZXe2J+DcZ9iUhyR48z5g1PqRa20yt3Njna/veLJL/g==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -12406,7 +12420,7 @@ packages: optional: true dependencies: debug: 4.3.4 - eslint: 8.29.0 + eslint: 8.30.0 eslint-scope: 7.1.1 eslint-visitor-keys: 3.3.0 espree: 9.4.1 @@ -12417,7 +12431,7 @@ packages: - supports-color dev: true - /vue-eslint-parser/9.1.0_eslint@8.29.0: + /vue-eslint-parser/9.1.0_eslint@8.30.0: resolution: {integrity: sha512-NGn/iQy8/Wb7RrRa4aRkokyCZfOUWk19OP5HP6JEozQFX5AoS/t+Z0ZN7FY4LlmWc4FNI922V7cvX28zctN8dQ==} engines: {node: ^14.17.0 || >=16.0.0} peerDependencies: @@ -12427,7 +12441,7 @@ packages: optional: true dependencies: debug: 4.3.4 - eslint: 8.29.0 + eslint: 8.30.0 eslint-scope: 7.1.1 eslint-visitor-keys: 3.3.0 espree: 9.4.1 @@ -12502,8 +12516,8 @@ packages: '@vue/server-renderer': 3.2.45_vue@3.2.45 '@vue/shared': 3.2.45 - /vuetify/3.0.4_ny5xcw2md7vsxw37otcxmygka4: - resolution: {integrity: sha512-znJjQbOeVhPqtI7y50wepiq/jMWXhAXEl43FUIgrppWNWDDoL00NiGQiJMEkc5/GTTq1gxkpg4QlCUaHXAMpBg==} + /vuetify/3.0.5_ny5xcw2md7vsxw37otcxmygka4: + resolution: {integrity: sha512-ciX+9XuHQ4zx27dEceHrs6xuCeqPgo91DhvCm+udbp0Qg95phad03uVcdHvyv1XW/stgdZGneiqg5dxQvLGzPw==} engines: {node: ^12.20 || >=14.13} peerDependencies: vite-plugin-vuetify: ^1.0.0-alpha.12 @@ -12520,7 +12534,7 @@ packages: webpack-plugin-vuetify: optional: true dependencies: - vite-plugin-vuetify: 1.0.0-alpha.12_6fvbykfru42ntqkibhp42cidqy + vite-plugin-vuetify: 1.0.0-alpha.12_ibyvml73pawao2tn3gik5jyc44 vue: 3.2.45 /w3c-keyname/2.2.6: @@ -12543,7 +12557,7 @@ packages: joi: 17.7.0 lodash: 4.17.21 minimist: 1.2.7 - rxjs: 7.6.0 + rxjs: 7.8.0 transitivePeerDependencies: - debug dev: true @@ -12569,8 +12583,8 @@ packages: resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==} engines: {node: '>=10.13.0'} - /webpack-virtual-modules/0.4.6: - resolution: {integrity: sha512-5tyDlKLqPfMqjT3Q9TAqf2YqjwmnUleZwzJi1A5qXnlBCdj2AtOJ6wAWdglTIDOPgOiOrXeBeFcsQ8+aGQ6QbA==} + /webpack-virtual-modules/0.5.0: + resolution: {integrity: sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==} /whatwg-encoding/2.0.0: resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==}