From 62e47f1d1c8e1006e8a912616a3c4c71e86db480 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Wouts?= Date: Thu, 4 Jan 2024 08:58:52 +1100 Subject: [PATCH] chore: upgrade Vite to v5 and Vitest to v1 (#2341) --- analyzer/react/package.json | 2 +- app/package.json | 2 +- chromeless/package.json | 2 +- config/package.json | 2 +- core/package.json | 4 +- framework-plugins/preact/package.json | 4 +- .../tests/apps/vite-preact/package.json | 2 +- .../tests/apps/vite-storybook-js/package.json | 2 +- .../tests/apps/vite-storybook-ts/package.json | 2 +- framework-plugins/react/package.json | 2 +- .../react/tests/apps/vite-mobx/package.json | 2 +- .../tests/apps/vite-tailwind/package.json | 2 +- .../tests/apps/vite-ts-react-swc/package.json | 2 +- .../apps/vite-vanilla-extract/package.json | 2 +- .../tests/apps/vite-with-svgr/package.json | 2 +- .../tests/apps/vite-without-svgr/package.json | 2 +- framework-plugins/solid/package.json | 4 +- .../solid/tests/apps/solid-js/package.json | 2 +- .../solid/tests/apps/solid-ts/package.json | 2 +- .../solid/tests/apps/solid/package.json | 2 +- .../apps/solidstart-bare-ssr/package.json | 2 +- framework-plugins/svelte/package.json | 4 +- .../svelte/tests/apps/svelte/package.json | 2 +- .../svelte/tests/apps/svelte3/package.json | 2 +- .../svelte/tests/apps/svelte4/package.json | 2 +- .../tests/apps/sveltekit-app/package.json | 2 +- .../tests/apps/sveltekit-demo/package.json | 2 +- .../tests/apps/vite-storybook-js/package.json | 2 +- .../tests/apps/vite-storybook-ts/package.json | 2 +- framework-plugins/vue2/package.json | 4 +- framework-plugins/vue3/package.json | 4 +- framework-plugins/vue3/src/vue-reader.spec.ts | 4 +- .../tests/apps/vite-storybook-js/package.json | 2 +- .../tests/apps/vite-storybook-ts/package.json | 2 +- .../vue3/tests/apps/vue3/package.json | 2 +- iframe/package.json | 2 +- pnpm-lock.yaml | 2844 +++++++++++------ properties/package.json | 4 +- .../generate-props-assignment-source.spec.ts | 34 +- screenshot/test-app/package.json | 2 +- serializable-values/package.json | 4 +- .../src/generate-serializable-value.spec.ts | 16 +- .../src/serializable-value-to-js.spec.ts | 28 +- storybook-helpers/package.json | 4 +- type-analyzer/package.json | 4 +- .../src/generate-type-declarations.spec.ts | 84 +- type-analyzer/src/generate-type.spec.ts | 6 +- vfs/package.json | 4 +- 48 files changed, 1922 insertions(+), 1198 deletions(-) diff --git a/analyzer/react/package.json b/analyzer/react/package.json index 9bf9c5e2d2b..da472e9a338 100644 --- a/analyzer/react/package.json +++ b/analyzer/react/package.json @@ -42,6 +42,6 @@ "rimraf": "^5.0.5", "shx": "^0.3.4", "unbuild": "^2.0.0", - "vitest": "^0.34.6" + "vitest": "^1.1.1" } } diff --git a/app/package.json b/app/package.json index c779ca25ac4..91e699db97b 100644 --- a/app/package.json +++ b/app/package.json @@ -41,6 +41,6 @@ "fs-extra": "^11.2.0", "typescript": "^5.3.3", "unbuild": "^2.0.0", - "vite": "^4.5.1" + "vite": "^5.0.10" } } diff --git a/chromeless/package.json b/chromeless/package.json index 4f2c78df516..fea708c6b50 100644 --- a/chromeless/package.json +++ b/chromeless/package.json @@ -35,6 +35,6 @@ "@types/express": "^4.17.21", "rimraf": "^5.0.5", "unbuild": "^2.0.0", - "vite": "^4.5.1" + "vite": "^5.0.10" } } diff --git a/config/package.json b/config/package.json index dbbf595dfbb..daa3c2843c0 100644 --- a/config/package.json +++ b/config/package.json @@ -30,7 +30,7 @@ "build": "tsc && unbuild" }, "dependencies": { - "vite": "^4.5.1" + "vite": "^5.0.10" }, "devDependencies": { "@types/node": "^20.10.6", diff --git a/core/package.json b/core/package.json index 9d4ed6482d1..dfc2a16d774 100644 --- a/core/package.json +++ b/core/package.json @@ -45,7 +45,7 @@ "ts-node": "^10.9.2", "tsconfig-paths": "^4.2.0", "typescript": "^5.3.3", - "vite": "^4.5.1", + "vite": "^5.0.10", "zod": "^3.22.4" }, "devDependencies": { @@ -56,6 +56,6 @@ "shx": "^0.3.4", "unbuild": "^2.0.0", "vite": "^4.5.1", - "vitest": "^0.34.6" + "vitest": "^1.1.1" } } diff --git a/framework-plugins/preact/package.json b/framework-plugins/preact/package.json index 1bf3f9fe55b..b5af33648a1 100644 --- a/framework-plugins/preact/package.json +++ b/framework-plugins/preact/package.json @@ -43,7 +43,7 @@ "preact": "^10.19.3", "rimraf": "^5.0.5", "unbuild": "^2.0.0", - "vite": "^4.5.1", - "vitest": "^0.34.6" + "vite": "^5.0.10", + "vitest": "^1.1.1" } } diff --git a/framework-plugins/preact/tests/apps/vite-preact/package.json b/framework-plugins/preact/tests/apps/vite-preact/package.json index e9fca52da20..aabe1a4aaf7 100644 --- a/framework-plugins/preact/tests/apps/vite-preact/package.json +++ b/framework-plugins/preact/tests/apps/vite-preact/package.json @@ -12,6 +12,6 @@ "devDependencies": { "@preact/preset-vite": "^2.5.0", "typescript": "^4.9.5", - "vite": "^4.3.8" + "vite": "^5.0.10" } } diff --git a/framework-plugins/preact/tests/apps/vite-storybook-js/package.json b/framework-plugins/preact/tests/apps/vite-storybook-js/package.json index 187b2055870..4462114fedf 100644 --- a/framework-plugins/preact/tests/apps/vite-storybook-js/package.json +++ b/framework-plugins/preact/tests/apps/vite-storybook-js/package.json @@ -23,6 +23,6 @@ "react": "^18.2.0", "react-dom": "^18.2.0", "storybook": "^7.0.17", - "vite": "^4.3.8" + "vite": "^5.0.10" } } diff --git a/framework-plugins/preact/tests/apps/vite-storybook-ts/package.json b/framework-plugins/preact/tests/apps/vite-storybook-ts/package.json index 0c47e62cc07..c80dfaee1cd 100644 --- a/framework-plugins/preact/tests/apps/vite-storybook-ts/package.json +++ b/framework-plugins/preact/tests/apps/vite-storybook-ts/package.json @@ -25,6 +25,6 @@ "react-dom": "^18.2.0", "storybook": "^7.0.17", "typescript": "^4.9.5", - "vite": "^4.3.8" + "vite": "^5.0.10" } } diff --git a/framework-plugins/react/package.json b/framework-plugins/react/package.json index 675db4297b1..ea0a2831026 100644 --- a/framework-plugins/react/package.json +++ b/framework-plugins/react/package.json @@ -38,6 +38,6 @@ "pino-pretty": "^10.3.1", "react": "^18.2.0", "unbuild": "^2.0.0", - "vite": "^4.5.1" + "vite": "^5.0.10" } } diff --git a/framework-plugins/react/tests/apps/vite-mobx/package.json b/framework-plugins/react/tests/apps/vite-mobx/package.json index 34e47ba0f7c..56ff6b4e83c 100644 --- a/framework-plugins/react/tests/apps/vite-mobx/package.json +++ b/framework-plugins/react/tests/apps/vite-mobx/package.json @@ -19,6 +19,6 @@ "@types/react-dom": "^18.0.11", "@vitejs/plugin-react": "^4.0.0", "typescript": "^5.0.2", - "vite": "^4.3.9" + "vite": "^5.0.10" } } diff --git a/framework-plugins/react/tests/apps/vite-tailwind/package.json b/framework-plugins/react/tests/apps/vite-tailwind/package.json index c89cb690f24..18a20c252df 100644 --- a/framework-plugins/react/tests/apps/vite-tailwind/package.json +++ b/framework-plugins/react/tests/apps/vite-tailwind/package.json @@ -16,7 +16,7 @@ "postcss": "^8.4.31", "tailwindcss": "^3.3.2", "typescript": "^4.9.5", - "vite": "^4.3.8", + "vite": "^5.0.10", "vite-plugin-svgr": "^2.4.0" } } diff --git a/framework-plugins/react/tests/apps/vite-ts-react-swc/package.json b/framework-plugins/react/tests/apps/vite-ts-react-swc/package.json index dae2ec7a9a6..6edc8203b72 100644 --- a/framework-plugins/react/tests/apps/vite-ts-react-swc/package.json +++ b/framework-plugins/react/tests/apps/vite-ts-react-swc/package.json @@ -15,6 +15,6 @@ "@types/react-dom": "^18.2.4", "@vitejs/plugin-react-swc": "^3.3.1", "typescript": "^4.9.5", - "vite": "^4.3.8" + "vite": "^5.0.10" } } diff --git a/framework-plugins/react/tests/apps/vite-vanilla-extract/package.json b/framework-plugins/react/tests/apps/vite-vanilla-extract/package.json index f316ed19a18..6e3e2939c00 100644 --- a/framework-plugins/react/tests/apps/vite-vanilla-extract/package.json +++ b/framework-plugins/react/tests/apps/vite-vanilla-extract/package.json @@ -17,6 +17,6 @@ "@vanilla-extract/css": "^1.11.0", "@vanilla-extract/vite-plugin": "^3.8.2", "@vitejs/plugin-react": "^3.1.0", - "vite": "^4.3.8" + "vite": "^5.0.10" } } diff --git a/framework-plugins/react/tests/apps/vite-with-svgr/package.json b/framework-plugins/react/tests/apps/vite-with-svgr/package.json index fc67e0bcbef..315ecaac27c 100644 --- a/framework-plugins/react/tests/apps/vite-with-svgr/package.json +++ b/framework-plugins/react/tests/apps/vite-with-svgr/package.json @@ -14,7 +14,7 @@ }, "devDependencies": { "@vitejs/plugin-react": "^3.1.0", - "vite": "^4.3.8", + "vite": "^5.0.10", "vite-plugin-svgr": "^2.4.0" } } diff --git a/framework-plugins/react/tests/apps/vite-without-svgr/package.json b/framework-plugins/react/tests/apps/vite-without-svgr/package.json index 18d053ce3d5..52b6450ae2b 100644 --- a/framework-plugins/react/tests/apps/vite-without-svgr/package.json +++ b/framework-plugins/react/tests/apps/vite-without-svgr/package.json @@ -14,6 +14,6 @@ }, "devDependencies": { "@vitejs/plugin-react": "^3.1.0", - "vite": "^4.3.8" + "vite": "^5.0.10" } } diff --git a/framework-plugins/solid/package.json b/framework-plugins/solid/package.json index 3652a62f424..50510cac530 100644 --- a/framework-plugins/solid/package.json +++ b/framework-plugins/solid/package.json @@ -44,7 +44,7 @@ "pino-pretty": "^10.3.1", "solid-js": "^1.8.7", "unbuild": "^2.0.0", - "vite": "^4.5.1", - "vitest": "^0.34.6" + "vite": "^5.0.10", + "vitest": "^1.1.1" } } diff --git a/framework-plugins/solid/tests/apps/solid-js/package.json b/framework-plugins/solid/tests/apps/solid-js/package.json index c069c90b07d..93034a73aa4 100644 --- a/framework-plugins/solid/tests/apps/solid-js/package.json +++ b/framework-plugins/solid/tests/apps/solid-js/package.json @@ -5,7 +5,7 @@ }, "license": "MIT", "devDependencies": { - "vite": "^4.3.8", + "vite": "^5.0.10", "vite-plugin-solid": "^2.7.0" }, "dependencies": { diff --git a/framework-plugins/solid/tests/apps/solid-ts/package.json b/framework-plugins/solid/tests/apps/solid-ts/package.json index 2a390f00b80..60d00f8815e 100644 --- a/framework-plugins/solid/tests/apps/solid-ts/package.json +++ b/framework-plugins/solid/tests/apps/solid-ts/package.json @@ -6,7 +6,7 @@ "license": "MIT", "devDependencies": { "typescript": "^4.9.5", - "vite": "^4.3.8", + "vite": "^5.0.10", "vite-plugin-solid": "^2.7.0" }, "dependencies": { diff --git a/framework-plugins/solid/tests/apps/solid/package.json b/framework-plugins/solid/tests/apps/solid/package.json index 30a6c4e09cd..1e38290e4ca 100644 --- a/framework-plugins/solid/tests/apps/solid/package.json +++ b/framework-plugins/solid/tests/apps/solid/package.json @@ -10,7 +10,7 @@ "solid-js": "^1.7.5" }, "devDependencies": { - "vite": "^4.3.8", + "vite": "^5.0.10", "vite-plugin-solid": "^2.7.0" } } diff --git a/framework-plugins/solid/tests/apps/solidstart-bare-ssr/package.json b/framework-plugins/solid/tests/apps/solidstart-bare-ssr/package.json index 2da8825cb3a..e3d34affcb8 100644 --- a/framework-plugins/solid/tests/apps/solidstart-bare-ssr/package.json +++ b/framework-plugins/solid/tests/apps/solidstart-bare-ssr/package.json @@ -10,7 +10,7 @@ "postcss": "^8.4.31", "solid-start-node": "^0.2.26", "typescript": "^4.9.5", - "vite": "^3.2.6" + "vite": "^5.0.10" }, "dependencies": { "@solidjs/meta": "^0.28.5", diff --git a/framework-plugins/svelte/package.json b/framework-plugins/svelte/package.json index 6e598832e16..bdab2665d67 100644 --- a/framework-plugins/svelte/package.json +++ b/framework-plugins/svelte/package.json @@ -34,7 +34,7 @@ "fs-extra": "^11.2.0", "svelte": "^4.2.8", "typescript": "^5.3.3", - "vite": "^4.5.1" + "vite": "^5.0.10" }, "devDependencies": { "@playwright/test": "^1.40.1", @@ -46,6 +46,6 @@ "pino": "^8.17.2", "pino-pretty": "^10.3.1", "unbuild": "^2.0.0", - "vitest": "^0.34.6" + "vitest": "^1.1.1" } } diff --git a/framework-plugins/svelte/tests/apps/svelte/package.json b/framework-plugins/svelte/tests/apps/svelte/package.json index 9b64b5b2db3..2f437a53aae 100644 --- a/framework-plugins/svelte/tests/apps/svelte/package.json +++ b/framework-plugins/svelte/tests/apps/svelte/package.json @@ -14,6 +14,6 @@ "svelte-preprocess": "^4.10.7", "tslib": "^2.5.2", "typescript": "^4.9.5", - "vite": "^4.3.8" + "vite": "^5.0.10" } } diff --git a/framework-plugins/svelte/tests/apps/svelte3/package.json b/framework-plugins/svelte/tests/apps/svelte3/package.json index ea430016df8..7122700ce1f 100644 --- a/framework-plugins/svelte/tests/apps/svelte3/package.json +++ b/framework-plugins/svelte/tests/apps/svelte3/package.json @@ -13,6 +13,6 @@ "svelte-check": "^2.10.3", "tslib": "^2.5.2", "typescript": "^5.0.4", - "vite": "^4.3.8" + "vite": "^5.0.10" } } diff --git a/framework-plugins/svelte/tests/apps/svelte4/package.json b/framework-plugins/svelte/tests/apps/svelte4/package.json index b1dbac84209..1dcb425ae2d 100644 --- a/framework-plugins/svelte/tests/apps/svelte4/package.json +++ b/framework-plugins/svelte/tests/apps/svelte4/package.json @@ -13,6 +13,6 @@ "svelte-check": "^3.4.6", "tslib": "^2.6.0", "typescript": "^5.0.2", - "vite": "^4.4.5" + "vite": "^5.0.10" } } diff --git a/framework-plugins/svelte/tests/apps/sveltekit-app/package.json b/framework-plugins/svelte/tests/apps/sveltekit-app/package.json index e3f4da0203e..910149419f9 100644 --- a/framework-plugins/svelte/tests/apps/sveltekit-app/package.json +++ b/framework-plugins/svelte/tests/apps/sveltekit-app/package.json @@ -15,7 +15,7 @@ "svelte-preprocess": "^4.10.7", "tslib": "^2.5.2", "typescript": "^4.9.5", - "vite": "^4.3.8" + "vite": "^5.0.10" }, "type": "module" } diff --git a/framework-plugins/svelte/tests/apps/sveltekit-demo/package.json b/framework-plugins/svelte/tests/apps/sveltekit-demo/package.json index 2df0d26a9eb..51747282c71 100644 --- a/framework-plugins/svelte/tests/apps/sveltekit-demo/package.json +++ b/framework-plugins/svelte/tests/apps/sveltekit-demo/package.json @@ -17,7 +17,7 @@ "svelte-preprocess": "^4.10.7", "tslib": "^2.5.2", "typescript": "^4.9.5", - "vite": "^4.3.8" + "vite": "^5.0.10" }, "type": "module" } diff --git a/framework-plugins/svelte/tests/apps/vite-storybook-js/package.json b/framework-plugins/svelte/tests/apps/vite-storybook-js/package.json index 8aacb761a19..dc720f57fb5 100644 --- a/framework-plugins/svelte/tests/apps/vite-storybook-js/package.json +++ b/framework-plugins/svelte/tests/apps/vite-storybook-js/package.json @@ -20,6 +20,6 @@ "react-dom": "^18.2.0", "storybook": "^7.0.17", "svelte": "^3.59.1", - "vite": "^4.3.8" + "vite": "^5.0.10" } } diff --git a/framework-plugins/svelte/tests/apps/vite-storybook-ts/package.json b/framework-plugins/svelte/tests/apps/vite-storybook-ts/package.json index 671f89eb341..30505ced697 100644 --- a/framework-plugins/svelte/tests/apps/vite-storybook-ts/package.json +++ b/framework-plugins/svelte/tests/apps/vite-storybook-ts/package.json @@ -24,6 +24,6 @@ "svelte-check": "^2.10.3", "tslib": "^2.5.2", "typescript": "^5.0.4", - "vite": "^4.3.8" + "vite": "^5.0.10" } } diff --git a/framework-plugins/vue2/package.json b/framework-plugins/vue2/package.json index 164455aac3f..393b7d0fcc9 100644 --- a/framework-plugins/vue2/package.json +++ b/framework-plugins/vue2/package.json @@ -50,7 +50,7 @@ "rimraf": "^5.0.5", "shx": "^0.3.4", "unbuild": "^2.0.0", - "vite": "^4.5.1", - "vitest": "^0.34.6" + "vite": "^5.0.10", + "vitest": "^1.1.1" } } diff --git a/framework-plugins/vue3/package.json b/framework-plugins/vue3/package.json index deec6af9329..7dbfa12ec69 100644 --- a/framework-plugins/vue3/package.json +++ b/framework-plugins/vue3/package.json @@ -54,7 +54,7 @@ "rimraf": "^5.0.5", "shx": "^0.3.4", "unbuild": "^2.0.0", - "vite": "^4.5.1", - "vitest": "^0.34.6" + "vite": "^5.0.10", + "vitest": "^1.1.1" } } diff --git a/framework-plugins/vue3/src/vue-reader.spec.ts b/framework-plugins/vue3/src/vue-reader.spec.ts index e78e8deb541..c123f795b34 100644 --- a/framework-plugins/vue3/src/vue-reader.spec.ts +++ b/framework-plugins/vue3/src/vue-reader.spec.ts @@ -82,11 +82,11 @@ export default defineComponent({ }) const pjs_component = { - name: \\"App\\" + name: "App" } as const; - import type { PropType as PJS_PropType } from \\"@vue/runtime-core\\"; + import type { PropType as PJS_PropType } from "@vue/runtime-core"; type PJS_TypeOrUnion = PJS_PropType | ReadonlyArray>; type PJS_OptionalPropType = PJS_TypeOrUnion | {type: PJS_TypeOrUnion; required?: false}; diff --git a/framework-plugins/vue3/tests/apps/vite-storybook-js/package.json b/framework-plugins/vue3/tests/apps/vite-storybook-js/package.json index 25c4afc16ee..3c10969fb93 100644 --- a/framework-plugins/vue3/tests/apps/vite-storybook-js/package.json +++ b/framework-plugins/vue3/tests/apps/vite-storybook-js/package.json @@ -20,6 +20,6 @@ "@storybook/vue3-vite": "^7.0.17", "@vitejs/plugin-vue": "^4.2.3", "storybook": "^7.0.17", - "vite": "^4.3.8" + "vite": "^5.0.10" } } diff --git a/framework-plugins/vue3/tests/apps/vite-storybook-ts/package.json b/framework-plugins/vue3/tests/apps/vite-storybook-ts/package.json index 158699ffdfe..1f2d75b6c35 100644 --- a/framework-plugins/vue3/tests/apps/vite-storybook-ts/package.json +++ b/framework-plugins/vue3/tests/apps/vite-storybook-ts/package.json @@ -21,7 +21,7 @@ "@vitejs/plugin-vue": "^4.2.3", "storybook": "^7.0.17", "typescript": "^4.9.5", - "vite": "^4.3.8", + "vite": "^5.0.10", "vue-tsc": "^1.6.5" } } diff --git a/framework-plugins/vue3/tests/apps/vue3/package.json b/framework-plugins/vue3/tests/apps/vue3/package.json index f88c7e4796b..884ef67447d 100644 --- a/framework-plugins/vue3/tests/apps/vue3/package.json +++ b/framework-plugins/vue3/tests/apps/vue3/package.json @@ -9,7 +9,7 @@ }, "devDependencies": { "@vitejs/plugin-vue": "^4.2.3", - "vite": "^4.3.8", + "vite": "^5.0.10", "vue-tsc": "^1.6.5" } } diff --git a/iframe/package.json b/iframe/package.json index e86c0b1dbb6..215d3656a0e 100644 --- a/iframe/package.json +++ b/iframe/package.json @@ -25,6 +25,6 @@ "immer": "^10.0.3", "typescript": "^5.3.3", "unbuild": "^2.0.0", - "vite": "^4.5.1" + "vite": "^5.0.10" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 11315af4dda..0b497613992 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -103,7 +103,7 @@ importers: version: link:../../vfs '@vitejs/plugin-react': specifier: ^4.2.1 - version: 4.2.1(vite@4.5.1) + version: 4.2.1(vite@5.0.10) typescript: specifier: ^5.3.3 version: 5.3.3 @@ -136,8 +136,8 @@ importers: specifier: ^2.0.0 version: 2.0.0(typescript@5.3.3) vitest: - specifier: ^0.34.6 - version: 0.34.6 + specifier: ^1.1.1 + version: 1.1.1 api: dependencies: @@ -219,8 +219,8 @@ importers: specifier: ^2.0.0 version: 2.0.0(typescript@5.3.3) vite: - specifier: ^4.5.1 - version: 4.5.1(@types/node@20.10.6) + specifier: ^5.0.10 + version: 5.0.10(@types/node@20.10.6) chromeless: dependencies: @@ -262,14 +262,14 @@ importers: specifier: ^2.0.0 version: 2.0.0(typescript@5.3.3) vite: - specifier: ^4.5.1 - version: 4.5.1(@types/node@20.10.6) + specifier: ^5.0.10 + version: 5.0.10(@types/node@18.16.14) config: dependencies: vite: - specifier: ^4.5.1 - version: 4.5.1(@types/node@20.10.6) + specifier: ^5.0.10 + version: 5.0.10(@types/node@20.10.6) devDependencies: '@types/node': specifier: ^20.10.6 @@ -303,7 +303,7 @@ importers: dependencies: '@fwouts/vite-tsconfig-paths': specifier: ^4.2.1 - version: 4.2.1(typescript@5.3.3)(vite@4.5.1) + version: 4.2.1(typescript@5.3.3)(vite@5.0.10) '@previewjs/analyzer-api': specifier: ^0.1.5 version: link:../analyzer/api @@ -371,8 +371,8 @@ importers: specifier: ^5.3.3 version: 5.3.3 vite: - specifier: ^4.5.1 - version: 4.5.1(@types/node@20.10.6) + specifier: ^5.0.10 + version: 5.0.10(@types/node@20.10.6) zod: specifier: ^3.22.4 version: 3.22.4 @@ -396,8 +396,8 @@ importers: specifier: ^2.0.0 version: 2.0.0(typescript@5.3.3) vitest: - specifier: ^0.34.6 - version: 0.34.6 + specifier: ^1.1.1 + version: 1.1.1(@types/node@20.10.6) daemon: devDependencies: @@ -514,11 +514,11 @@ importers: specifier: ^2.0.0 version: 2.0.0(typescript@5.3.3) vite: - specifier: ^4.5.1 - version: 4.5.1(@types/node@20.10.6) + specifier: ^5.0.10 + version: 5.0.10(@types/node@18.16.14) vitest: - specifier: ^0.34.6 - version: 0.34.6 + specifier: ^1.1.1 + version: 1.1.1 framework-plugins/preact/tests/apps/preact-app: dependencies: @@ -553,13 +553,13 @@ importers: devDependencies: '@preact/preset-vite': specifier: ^2.5.0 - version: 2.5.0(@babel/core@7.23.5)(preact@10.15.0)(vite@4.3.8) + version: 2.5.0(@babel/core@7.23.7)(preact@10.15.0)(vite@5.0.10) typescript: specifier: ^4.9.5 version: 4.9.5 vite: - specifier: ^4.3.8 - version: 4.3.8(@types/node@20.10.6) + specifier: ^5.0.10 + version: 5.0.10(@types/node@18.16.14) framework-plugins/preact/tests/apps/vite-storybook-js: dependencies: @@ -569,7 +569,7 @@ importers: devDependencies: '@preact/preset-vite': specifier: ^2.5.0 - version: 2.5.0(@babel/core@7.23.5)(preact@10.15.0)(vite@4.3.8) + version: 2.5.0(@babel/core@7.23.7)(preact@10.15.0)(vite@5.0.10) '@storybook/addon-essentials': specifier: ^7.0.17 version: 7.0.17(react-dom@18.2.0)(react@18.2.0) @@ -587,7 +587,7 @@ importers: version: 7.0.17(preact@10.15.0) '@storybook/preact-vite': specifier: ^7.0.17 - version: 7.0.17(@babel/core@7.23.5)(preact@10.15.0)(typescript@5.3.3)(vite@4.3.8) + version: 7.0.17(@babel/core@7.23.7)(preact@10.15.0)(typescript@4.9.5)(vite@5.0.10) '@storybook/testing-library': specifier: 0.0.14-next.2 version: 0.0.14-next.2 @@ -604,8 +604,8 @@ importers: specifier: ^7.0.17 version: 7.0.17 vite: - specifier: ^4.3.8 - version: 4.3.8(@types/node@20.10.6) + specifier: ^5.0.10 + version: 5.0.10(@types/node@18.16.14) framework-plugins/preact/tests/apps/vite-storybook-ts: dependencies: @@ -615,7 +615,7 @@ importers: devDependencies: '@preact/preset-vite': specifier: ^2.5.0 - version: 2.5.0(@babel/core@7.23.5)(preact@10.15.0)(vite@4.3.8) + version: 2.5.0(@babel/core@7.23.7)(preact@10.15.0)(vite@5.0.10) '@storybook/addon-essentials': specifier: ^7.0.17 version: 7.0.17(react-dom@18.2.0)(react@18.2.0) @@ -633,7 +633,7 @@ importers: version: 7.0.17(preact@10.15.0) '@storybook/preact-vite': specifier: ^7.0.17 - version: 7.0.17(@babel/core@7.23.5)(preact@10.15.0)(typescript@4.9.5)(vite@4.3.8) + version: 7.0.17(@babel/core@7.23.7)(preact@10.15.0)(typescript@4.9.5)(vite@5.0.10) '@storybook/testing-library': specifier: 0.0.14-next.2 version: 0.0.14-next.2 @@ -656,8 +656,8 @@ importers: specifier: ^4.9.5 version: 4.9.5 vite: - specifier: ^4.3.8 - version: 4.3.8(@types/node@20.10.6) + specifier: ^5.0.10 + version: 5.0.10(@types/node@18.16.14) framework-plugins/react: dependencies: @@ -666,7 +666,7 @@ importers: version: link:../../analyzer/react '@vitejs/plugin-react': specifier: ^4.2.1 - version: 4.2.1(vite@4.5.1) + version: 4.2.1(vite@5.0.10) devDependencies: '@playwright/test': specifier: ^1.40.1 @@ -702,8 +702,8 @@ importers: specifier: ^2.0.0 version: 2.0.0(typescript@5.3.3) vite: - specifier: ^4.5.1 - version: 4.5.1(@types/node@20.10.6) + specifier: ^5.0.10 + version: 5.0.10(@types/node@18.16.14) framework-plugins/react/tests/apps/aliases: dependencies: @@ -1844,10 +1844,10 @@ importers: dependencies: '@babel/plugin-proposal-decorators': specifier: ^7.22.5 - version: 7.22.5(@babel/core@7.23.5) + version: 7.22.5(@babel/core@7.23.7) '@babel/plugin-transform-class-properties': specifier: ^7.22.5 - version: 7.22.5(@babel/core@7.23.5) + version: 7.22.5(@babel/core@7.23.7) mobx: specifier: ^6.9.0 version: 6.9.0 @@ -1869,13 +1869,13 @@ importers: version: 18.2.5 '@vitejs/plugin-react': specifier: ^4.0.0 - version: 4.0.0(vite@4.3.9) + version: 4.0.0(vite@5.0.10) typescript: specifier: ^5.0.2 version: 5.1.3 vite: - specifier: ^4.3.9 - version: 4.3.9(@types/node@20.10.6) + specifier: ^5.0.10 + version: 5.0.10(@types/node@18.16.14) framework-plugins/react/tests/apps/vite-tailwind: dependencies: @@ -1894,7 +1894,7 @@ importers: version: 18.2.4 '@vitejs/plugin-react': specifier: ^3.1.0 - version: 3.1.0(vite@4.3.8) + version: 3.1.0(vite@5.0.10) autoprefixer: specifier: ^10.4.14 version: 10.4.14(postcss@8.4.31) @@ -1903,16 +1903,16 @@ importers: version: 8.4.31 tailwindcss: specifier: ^3.3.2 - version: 3.3.2(ts-node@10.9.2) + version: 3.3.2 typescript: specifier: ^4.9.5 version: 4.9.5 vite: - specifier: ^4.3.8 - version: 4.3.8(@types/node@20.10.6) + specifier: ^5.0.10 + version: 5.0.10(@types/node@18.16.14) vite-plugin-svgr: specifier: ^2.4.0 - version: 2.4.0(vite@4.3.8) + version: 2.4.0(vite@5.0.10) framework-plugins/react/tests/apps/vite-ts-react-swc: dependencies: @@ -1931,13 +1931,13 @@ importers: version: 18.2.4 '@vitejs/plugin-react-swc': specifier: ^3.3.1 - version: 3.3.1(vite@4.3.8) + version: 3.3.1(vite@5.0.10) typescript: specifier: ^4.9.5 version: 4.9.5 vite: - specifier: ^4.3.8 - version: 4.3.8(@types/node@20.10.6) + specifier: ^5.0.10 + version: 5.0.10(@types/node@18.16.14) framework-plugins/react/tests/apps/vite-vanilla-extract: dependencies: @@ -1965,13 +1965,13 @@ importers: version: 1.11.0 '@vanilla-extract/vite-plugin': specifier: ^3.8.2 - version: 3.8.2(ts-node@10.9.2)(vite@4.3.8) + version: 3.8.2(vite@5.0.10) '@vitejs/plugin-react': specifier: ^3.1.0 - version: 3.1.0(vite@4.3.8) + version: 3.1.0(vite@5.0.10) vite: - specifier: ^4.3.8 - version: 4.3.8(@types/node@20.10.6) + specifier: ^5.0.10 + version: 5.0.10(@types/node@18.16.14) framework-plugins/react/tests/apps/vite-with-svgr: dependencies: @@ -1993,13 +1993,13 @@ importers: devDependencies: '@vitejs/plugin-react': specifier: ^3.1.0 - version: 3.1.0(vite@4.3.8) + version: 3.1.0(vite@5.0.10) vite: - specifier: ^4.3.8 - version: 4.3.8(@types/node@20.10.6) + specifier: ^5.0.10 + version: 5.0.10(@types/node@18.16.14) vite-plugin-svgr: specifier: ^2.4.0 - version: 2.4.0(vite@4.3.8) + version: 2.4.0(vite@5.0.10) framework-plugins/react/tests/apps/vite-without-svgr: dependencies: @@ -2021,10 +2021,10 @@ importers: devDependencies: '@vitejs/plugin-react': specifier: ^3.1.0 - version: 3.1.0(vite@4.3.8) + version: 3.1.0(vite@5.0.10) vite: - specifier: ^4.3.8 - version: 4.3.8(@types/node@20.10.6) + specifier: ^5.0.10 + version: 5.0.10(@types/node@18.16.14) framework-plugins/react/tests/apps/wrapper-custom: dependencies: @@ -2172,7 +2172,7 @@ importers: version: 5.3.3 vite-plugin-solid: specifier: ^2.8.0 - version: 2.8.0(solid-js@1.8.7)(vite@4.5.1) + version: 2.8.0(solid-js@1.8.7)(vite@5.0.10) devDependencies: '@playwright/test': specifier: ^1.40.1 @@ -2199,11 +2199,11 @@ importers: specifier: ^2.0.0 version: 2.0.0(typescript@5.3.3) vite: - specifier: ^4.5.1 - version: 4.5.1(@types/node@20.10.6) + specifier: ^5.0.10 + version: 5.0.10(@types/node@18.16.14) vitest: - specifier: ^0.34.6 - version: 0.34.6 + specifier: ^1.1.1 + version: 1.1.1 framework-plugins/solid/tests/apps/solid: dependencies: @@ -2212,11 +2212,11 @@ importers: version: 1.7.5 devDependencies: vite: - specifier: ^4.3.8 - version: 4.3.8(@types/node@20.10.6) + specifier: ^5.0.10 + version: 5.0.10(@types/node@18.16.14) vite-plugin-solid: specifier: ^2.7.0 - version: 2.7.0(solid-js@1.7.5)(vite@4.3.8) + version: 2.7.0(solid-js@1.7.5)(vite@5.0.10) framework-plugins/solid/tests/apps/solid-js: dependencies: @@ -2225,11 +2225,11 @@ importers: version: 1.7.5 devDependencies: vite: - specifier: ^4.3.8 - version: 4.3.8(@types/node@20.10.6) + specifier: ^5.0.10 + version: 5.0.10(@types/node@18.16.14) vite-plugin-solid: specifier: ^2.7.0 - version: 2.7.0(solid-js@1.7.5)(vite@4.3.8) + version: 2.7.0(solid-js@1.7.5)(vite@5.0.10) framework-plugins/solid/tests/apps/solid-ts: dependencies: @@ -2241,11 +2241,11 @@ importers: specifier: ^4.9.5 version: 4.9.5 vite: - specifier: ^4.3.8 - version: 4.3.8(@types/node@20.10.6) + specifier: ^5.0.10 + version: 5.0.10(@types/node@18.16.14) vite-plugin-solid: specifier: ^2.7.0 - version: 2.7.0(solid-js@1.7.5)(vite@4.3.8) + version: 2.7.0(solid-js@1.7.5)(vite@5.0.10) framework-plugins/solid/tests/apps/solidstart-bare-ssr: dependencies: @@ -2260,7 +2260,7 @@ importers: version: 1.7.5 solid-start: specifier: ^0.2.26 - version: 0.2.26(@solidjs/meta@0.28.5)(@solidjs/router@0.6.0)(solid-js@1.7.5)(solid-start-node@0.2.26)(vite@3.2.6) + version: 0.2.26(@solidjs/meta@0.28.5)(@solidjs/router@0.6.0)(solid-js@1.7.5)(solid-start-node@0.2.26)(vite@5.0.10) undici: specifier: ^5.26.2 version: 5.26.4 @@ -2276,13 +2276,13 @@ importers: version: 8.4.31 solid-start-node: specifier: ^0.2.26 - version: 0.2.26(solid-start@0.2.26)(undici@5.26.4)(vite@3.2.6) + version: 0.2.26(solid-start@0.2.26)(undici@5.26.4)(vite@5.0.10) typescript: specifier: ^4.9.5 version: 4.9.5 vite: - specifier: ^3.2.6 - version: 3.2.6(@types/node@18.16.14) + specifier: ^5.0.10 + version: 5.0.10(@types/node@18.16.14) framework-plugins/svelte: dependencies: @@ -2306,7 +2306,7 @@ importers: version: link:../../vfs '@sveltejs/vite-plugin-svelte': specifier: ^2.5.3 - version: 2.5.3(svelte@4.2.8)(vite@4.5.1) + version: 2.5.3(svelte@4.2.8)(vite@5.0.10) fs-extra: specifier: ^11.2.0 version: 11.2.0 @@ -2317,8 +2317,8 @@ importers: specifier: ^5.3.3 version: 5.3.3 vite: - specifier: ^4.5.1 - version: 4.5.1(@types/node@20.10.6) + specifier: ^5.0.10 + version: 5.0.10(@types/node@18.16.14) devDependencies: '@playwright/test': specifier: ^1.40.1 @@ -2334,7 +2334,7 @@ importers: version: link:../../testing '@sveltejs/kit': specifier: ^1.30.3 - version: 1.30.3(svelte@4.2.8)(vite@4.5.1) + version: 1.30.3(svelte@4.2.8)(vite@5.0.10) '@types/fs-extra': specifier: ^11.0.4 version: 11.0.4 @@ -2348,14 +2348,14 @@ importers: specifier: ^2.0.0 version: 2.0.0(typescript@5.3.3) vitest: - specifier: ^0.34.6 - version: 0.34.6 + specifier: ^1.1.1 + version: 1.1.1 framework-plugins/svelte/tests/apps/svelte: devDependencies: '@sveltejs/vite-plugin-svelte': specifier: ^1.4.0 - version: 1.4.0(svelte@3.59.1)(vite@4.3.8) + version: 1.4.0(svelte@3.59.1)(vite@5.0.10) '@tsconfig/svelte': specifier: ^3.0.0 version: 3.0.0 @@ -2364,7 +2364,7 @@ importers: version: 3.59.1 svelte-check: specifier: ^2.10.3 - version: 2.10.3(@babel/core@7.23.5)(svelte@3.59.1) + version: 2.10.3(@babel/core@7.23.7)(svelte@3.59.1) svelte-preprocess: specifier: ^4.10.7 version: 4.10.7(svelte@3.59.1)(typescript@4.9.5) @@ -2375,14 +2375,14 @@ importers: specifier: ^4.9.5 version: 4.9.5 vite: - specifier: ^4.3.8 - version: 4.3.8(@types/node@20.10.6) + specifier: ^5.0.10 + version: 5.0.10(@types/node@18.16.14) framework-plugins/svelte/tests/apps/svelte3: devDependencies: '@sveltejs/vite-plugin-svelte': specifier: ^2.3.0 - version: 2.3.0(svelte@3.59.1)(vite@4.3.8) + version: 2.3.0(svelte@3.59.1)(vite@5.0.10) '@tsconfig/svelte': specifier: ^4.0.1 version: 4.0.1 @@ -2391,7 +2391,7 @@ importers: version: 3.59.1 svelte-check: specifier: ^2.10.3 - version: 2.10.3(@babel/core@7.23.5)(svelte@3.59.1) + version: 2.10.3(@babel/core@7.23.7)(svelte@3.59.1) tslib: specifier: ^2.5.2 version: 2.5.2 @@ -2399,14 +2399,14 @@ importers: specifier: ^5.0.4 version: 5.0.4 vite: - specifier: ^4.3.8 - version: 4.3.8(@types/node@20.10.6) + specifier: ^5.0.10 + version: 5.0.10(@types/node@18.16.14) framework-plugins/svelte/tests/apps/svelte4: devDependencies: '@sveltejs/vite-plugin-svelte': specifier: ^2.4.2 - version: 2.4.2(svelte@4.0.5)(vite@4.4.9) + version: 2.4.2(svelte@4.0.5)(vite@5.0.10) '@tsconfig/svelte': specifier: ^5.0.0 version: 5.0.0 @@ -2423,8 +2423,8 @@ importers: specifier: ^5.0.2 version: 5.1.6 vite: - specifier: ^4.4.5 - version: 4.4.9(@types/node@20.10.6) + specifier: ^5.0.10 + version: 5.0.10(@types/node@18.16.14) framework-plugins/svelte/tests/apps/sveltekit-app: devDependencies: @@ -2433,13 +2433,13 @@ importers: version: 1.0.3(@sveltejs/kit@1.18.0) '@sveltejs/kit': specifier: ^1.18.0 - version: 1.18.0(svelte@3.59.1)(vite@4.3.8) + version: 1.18.0(svelte@3.59.1)(vite@5.0.10) svelte: specifier: ^3.59.1 version: 3.59.1 svelte-check: specifier: ^2.10.3 - version: 2.10.3(@babel/core@7.23.5)(svelte@3.59.1) + version: 2.10.3(@babel/core@7.23.7)(svelte@3.59.1) svelte-preprocess: specifier: ^4.10.7 version: 4.10.7(svelte@3.59.1)(typescript@4.9.5) @@ -2450,8 +2450,8 @@ importers: specifier: ^4.9.5 version: 4.9.5 vite: - specifier: ^4.3.8 - version: 4.3.8(@types/node@20.10.6) + specifier: ^5.0.10 + version: 5.0.10(@types/node@18.16.14) framework-plugins/svelte/tests/apps/sveltekit-demo: devDependencies: @@ -2466,7 +2466,7 @@ importers: version: 1.0.3(@sveltejs/kit@1.18.0) '@sveltejs/kit': specifier: ^1.18.0 - version: 1.18.0(svelte@3.59.1)(vite@4.3.8) + version: 1.18.0(svelte@3.59.1)(vite@5.0.10) '@types/cookie': specifier: ^0.5.1 version: 0.5.1 @@ -2475,7 +2475,7 @@ importers: version: 3.59.1 svelte-check: specifier: ^2.10.3 - version: 2.10.3(@babel/core@7.23.5)(svelte@3.59.1) + version: 2.10.3(@babel/core@7.23.7)(svelte@3.59.1) svelte-preprocess: specifier: ^4.10.7 version: 4.10.7(svelte@3.59.1)(typescript@4.9.5) @@ -2486,8 +2486,8 @@ importers: specifier: ^4.9.5 version: 4.9.5 vite: - specifier: ^4.3.8 - version: 4.3.8(@types/node@20.10.6) + specifier: ^5.0.10 + version: 5.0.10(@types/node@18.16.14) framework-plugins/svelte/tests/apps/vite-storybook-js: devDependencies: @@ -2508,13 +2508,13 @@ importers: version: 7.0.17(svelte@3.59.1) '@storybook/svelte-vite': specifier: ^7.0.17 - version: 7.0.17(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)(vite@4.3.8) + version: 7.0.17(react-dom@18.2.0)(react@18.2.0)(vite@5.0.10) '@storybook/testing-library': specifier: 0.0.14-next.2 version: 0.0.14-next.2 '@sveltejs/vite-plugin-svelte': specifier: ^2.3.0 - version: 2.3.0(svelte@3.59.1)(vite@4.3.8) + version: 2.3.0(svelte@3.59.1)(vite@5.0.10) react: specifier: ^18.2.0 version: 18.2.0 @@ -2528,8 +2528,8 @@ importers: specifier: ^3.59.1 version: 3.59.1 vite: - specifier: ^4.3.8 - version: 4.3.8(@types/node@20.10.6) + specifier: ^5.0.10 + version: 5.0.10(@types/node@18.16.14) framework-plugins/svelte/tests/apps/vite-storybook-ts: devDependencies: @@ -2550,13 +2550,13 @@ importers: version: 7.0.17(svelte@3.59.1) '@storybook/svelte-vite': specifier: ^7.0.17 - version: 7.0.17(react-dom@18.2.0)(react@18.2.0)(typescript@5.0.4)(vite@4.3.8) + version: 7.0.17(react-dom@18.2.0)(react@18.2.0)(typescript@5.0.4)(vite@5.0.10) '@storybook/testing-library': specifier: 0.0.14-next.2 version: 0.0.14-next.2 '@sveltejs/vite-plugin-svelte': specifier: ^2.3.0 - version: 2.3.0(svelte@3.59.1)(vite@4.3.8) + version: 2.3.0(svelte@3.59.1)(vite@5.0.10) '@tsconfig/svelte': specifier: ^4.0.1 version: 4.0.1 @@ -2574,7 +2574,7 @@ importers: version: 3.59.1 svelte-check: specifier: ^2.10.3 - version: 2.10.3(@babel/core@7.23.5)(svelte@3.59.1) + version: 2.10.3(@babel/core@7.23.7)(svelte@3.59.1) tslib: specifier: ^2.5.2 version: 2.5.2 @@ -2582,8 +2582,8 @@ importers: specifier: ^5.0.4 version: 5.0.4 vite: - specifier: ^4.3.8 - version: 4.3.8(@types/node@20.10.6) + specifier: ^5.0.10 + version: 5.0.10(@types/node@18.16.14) framework-plugins/vue2: dependencies: @@ -2610,10 +2610,10 @@ importers: version: link:../../vfs '@vitejs/plugin-vue2': specifier: ^2.3.1 - version: 2.3.1(vite@4.5.1)(vue@2.7.16) + version: 2.3.1(vite@5.0.10)(vue@2.7.16) '@vitejs/plugin-vue2-jsx': specifier: ^1.1.1 - version: 1.1.1(rollup@3.28.1)(vite@4.5.1)(vue@2.7.16) + version: 1.1.1(rollup@3.28.1)(vite@5.0.10)(vue@2.7.16) fs-extra: specifier: ^11.2.0 version: 11.2.0 @@ -2658,11 +2658,11 @@ importers: specifier: ^2.0.0 version: 2.0.0(typescript@5.3.3) vite: - specifier: ^4.5.1 - version: 4.5.1(@types/node@20.10.6) + specifier: ^5.0.10 + version: 5.0.10(@types/node@18.16.14) vitest: - specifier: ^0.34.6 - version: 0.34.6 + specifier: ^1.1.1 + version: 1.1.1 framework-plugins/vue2/tests/apps/nuxt2-app: dependencies: @@ -2777,10 +2777,10 @@ importers: version: link:../../vfs '@vitejs/plugin-vue': specifier: ^4.6.2 - version: 4.6.2(vite@4.5.1)(vue@3.3.13) + version: 4.6.2(vite@5.0.10)(vue@3.3.13) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@4.5.1)(vue@3.3.13) + version: 3.1.0(vite@5.0.10)(vue@3.3.13) '@vue/compiler-sfc': specifier: ^3.3.13 version: 3.3.13 @@ -2840,11 +2840,11 @@ importers: specifier: ^2.0.0 version: 2.0.0(typescript@5.3.3) vite: - specifier: ^4.5.1 - version: 4.5.1(@types/node@20.10.6) + specifier: ^5.0.10 + version: 5.0.10(@types/node@18.16.14) vitest: - specifier: ^0.34.6 - version: 0.34.6 + specifier: ^1.1.1 + version: 1.1.1 framework-plugins/vue3/tests/apps/nuxt-app: dependencies: @@ -2892,16 +2892,16 @@ importers: version: 7.0.17(vue@3.3.4) '@storybook/vue3-vite': specifier: ^7.0.17 - version: 7.0.17(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)(vite@4.3.8)(vue@3.3.4) + version: 7.0.17(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)(vite@5.0.10)(vue@3.3.4) '@vitejs/plugin-vue': specifier: ^4.2.3 - version: 4.2.3(vite@4.3.8)(vue@3.3.4) + version: 4.2.3(vite@5.0.10)(vue@3.3.4) storybook: specifier: ^7.0.17 version: 7.0.17 vite: - specifier: ^4.3.8 - version: 4.3.8(@types/node@20.10.6) + specifier: ^5.0.10 + version: 5.0.10(@types/node@18.16.14) framework-plugins/vue3/tests/apps/vite-storybook-ts: dependencies: @@ -2929,10 +2929,10 @@ importers: version: 7.0.17(vue@3.3.4) '@storybook/vue3-vite': specifier: ^7.0.17 - version: 7.0.17(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)(vite@4.3.8)(vue@3.3.4) + version: 7.0.17(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)(vite@5.0.10)(vue@3.3.4) '@vitejs/plugin-vue': specifier: ^4.2.3 - version: 4.2.3(vite@4.3.8)(vue@3.3.4) + version: 4.2.3(vite@5.0.10)(vue@3.3.4) storybook: specifier: ^7.0.17 version: 7.0.17 @@ -2940,8 +2940,8 @@ importers: specifier: ^4.9.5 version: 4.9.5 vite: - specifier: ^4.3.8 - version: 4.3.8(@types/node@20.10.6) + specifier: ^5.0.10 + version: 5.0.10(@types/node@18.16.14) vue-tsc: specifier: ^1.6.5 version: 1.6.5(typescript@4.9.5) @@ -2954,10 +2954,10 @@ importers: devDependencies: '@vitejs/plugin-vue': specifier: ^4.2.3 - version: 4.2.3(vite@4.3.8)(vue@3.3.4) + version: 4.2.3(vite@5.0.10)(vue@3.3.4) vite: - specifier: ^4.3.8 - version: 4.3.8(@types/node@20.10.6) + specifier: ^5.0.10 + version: 5.0.10(@types/node@18.16.14) vue-tsc: specifier: ^1.6.5 version: 1.6.5(typescript@5.3.3) @@ -2996,8 +2996,8 @@ importers: specifier: ^2.0.0 version: 2.0.0(typescript@5.3.3) vite: - specifier: ^4.5.1 - version: 4.5.1(@types/node@20.10.6) + specifier: ^5.0.10 + version: 5.0.10(@types/node@18.16.14) integrations/cli: devDependencies: @@ -3153,11 +3153,11 @@ importers: specifier: ^2.0.0 version: 2.0.0(typescript@5.3.3) vite: - specifier: ^4.5.1 - version: 4.5.1(@types/node@20.10.6) + specifier: ^5.0.10 + version: 5.0.10(@types/node@18.16.14) vitest: - specifier: ^0.34.6 - version: 0.34.6 + specifier: ^1.1.1 + version: 1.1.1 screenshot: dependencies: @@ -3213,7 +3213,7 @@ importers: version: 18.2.18 '@vitejs/plugin-react': specifier: ^4.2.1 - version: 4.2.1(vite@4.5.1) + version: 4.2.1(vite@5.0.10) playwright: specifier: ^1.40.1 version: 1.40.1 @@ -3221,8 +3221,8 @@ importers: specifier: ^5.3.3 version: 5.3.3 vite: - specifier: ^4.5.1 - version: 4.5.1(@types/node@20.10.6) + specifier: ^5.0.10 + version: 5.0.10(@types/node@18.16.14) serializable-values: dependencies: @@ -3249,11 +3249,11 @@ importers: specifier: ^2.0.0 version: 2.0.0(typescript@5.3.3) vite: - specifier: ^4.5.1 - version: 4.5.1(@types/node@20.10.6) + specifier: ^5.0.10 + version: 5.0.10(@types/node@18.16.14) vitest: - specifier: ^0.34.6 - version: 0.34.6 + specifier: ^1.1.1 + version: 1.1.1 storybook-helpers: dependencies: @@ -3283,11 +3283,11 @@ importers: specifier: ^2.0.0 version: 2.0.0(typescript@5.3.3) vite: - specifier: ^4.5.1 - version: 4.5.1(@types/node@20.10.6) + specifier: ^5.0.10 + version: 5.0.10(@types/node@18.16.14) vitest: - specifier: ^0.34.6 - version: 0.34.6 + specifier: ^1.1.1 + version: 1.1.1 testing: dependencies: @@ -3363,11 +3363,11 @@ importers: specifier: ^2.0.0 version: 2.0.0(typescript@5.3.3) vite: - specifier: ^4.5.1 - version: 4.5.1(@types/node@20.10.6) + specifier: ^5.0.10 + version: 5.0.10(@types/node@18.16.14) vitest: - specifier: ^0.34.6 - version: 0.34.6 + specifier: ^1.1.1 + version: 1.1.1 vfs: dependencies: @@ -3391,11 +3391,11 @@ importers: specifier: ^2.0.0 version: 2.0.0(typescript@5.3.3) vite: - specifier: ^4.5.1 - version: 4.5.1(@types/node@20.10.6) + specifier: ^5.0.10 + version: 5.0.10(@types/node@18.16.14) vitest: - specifier: ^0.34.6 - version: 0.34.6 + specifier: ^1.1.1 + version: 1.1.1 packages: @@ -3491,6 +3491,10 @@ packages: resolution: {integrity: sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==} engines: {node: '>=6.9.0'} + /@babel/compat-data@7.23.5: + resolution: {integrity: sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==} + engines: {node: '>=6.9.0'} + /@babel/core@7.12.9: resolution: {integrity: sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==} engines: {node: '>=6.9.0'} @@ -3553,7 +3557,7 @@ packages: '@babel/traverse': 7.22.5 '@babel/types': 7.22.5 convert-source-map: 1.9.0 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 6.3.0 @@ -3575,7 +3579,7 @@ packages: '@babel/traverse': 7.22.20 '@babel/types': 7.22.19 convert-source-map: 1.9.0 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 6.3.1 @@ -3597,12 +3601,13 @@ packages: '@babel/traverse': 7.23.5 '@babel/types': 7.23.5 convert-source-map: 2.0.0 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 6.3.1 transitivePeerDependencies: - supports-color + dev: false /@babel/core@7.23.5: resolution: {integrity: sha512-Cwc2XjUrG4ilcfOw4wBAK+enbdgwAcAJCfGUItPBKR7Mjw4aEfAFYrLxeRp4jWgtNIKn3n2AlBOfwwafl+42/g==} @@ -3619,7 +3624,29 @@ packages: '@babel/traverse': 7.23.5 '@babel/types': 7.23.5 convert-source-map: 2.0.0 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 + gensync: 1.0.0-beta.2 + json5: 2.2.3 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + /@babel/core@7.23.7: + resolution: {integrity: sha512-+UpDgowcmqe36d4NwqvKsyPMlOLNGMsfMmQ5WGCu+siCe3t3dfe9njrzGfdN4qq+bcNUt0+Vw6haRxBOycs4dw==} + engines: {node: '>=6.9.0'} + dependencies: + '@ampproject/remapping': 2.2.1 + '@babel/code-frame': 7.23.5 + '@babel/generator': 7.23.6 + '@babel/helper-compilation-targets': 7.23.6 + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7) + '@babel/helpers': 7.23.7 + '@babel/parser': 7.23.6 + '@babel/template': 7.22.15 + '@babel/traverse': 7.23.7 + '@babel/types': 7.23.6 + convert-source-map: 2.0.0 + debug: 4.3.4 gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 6.3.1 @@ -3685,6 +3712,15 @@ packages: '@jridgewell/trace-mapping': 0.3.19 jsesc: 2.5.2 + /@babel/generator@7.23.6: + resolution: {integrity: sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.23.6 + '@jridgewell/gen-mapping': 0.3.3 + '@jridgewell/trace-mapping': 0.3.20 + jsesc: 2.5.2 + /@babel/helper-annotate-as-pure@7.22.5: resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==} engines: {node: '>=6.9.0'} @@ -3738,14 +3774,14 @@ packages: lru-cache: 5.1.1 semver: 6.3.1 - /@babel/helper-compilation-targets@7.21.5(@babel/core@7.23.5): + /@babel/helper-compilation-targets@7.21.5(@babel/core@7.23.7): resolution: {integrity: sha512-1RkbFGUKex4lvsB9yhIfWltJM5cZKUftB2eNajaDv3dCMEp49iBG0K14uH8NnX9IPux2+mK7JGEOB0jn48/J6w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/compat-data': 7.22.9 - '@babel/core': 7.23.5 + '@babel/core': 7.23.7 '@babel/helper-validator-option': 7.22.15 browserslist: 4.21.10 lru-cache: 5.1.1 @@ -3761,6 +3797,16 @@ packages: lru-cache: 5.1.1 semver: 6.3.1 + /@babel/helper-compilation-targets@7.23.6: + resolution: {integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/compat-data': 7.23.5 + '@babel/helper-validator-option': 7.23.5 + browserslist: 4.22.2 + lru-cache: 5.1.1 + semver: 6.3.1 + /@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.21.4): resolution: {integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==} engines: {node: '>=6.9.0'} @@ -3829,6 +3875,7 @@ packages: '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 semver: 6.3.1 + dev: false /@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.23.5): resolution: {integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==} @@ -3847,6 +3894,23 @@ packages: '@babel/helper-split-export-declaration': 7.22.6 semver: 6.3.1 + /@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.23.7): + resolution: {integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-member-expression-to-functions': 7.23.0 + '@babel/helper-optimise-call-expression': 7.22.5 + '@babel/helper-replace-supers': 7.22.9(@babel/core@7.23.7) + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + semver: 6.3.1 + /@babel/helper-create-class-features-plugin@7.22.5(@babel/core@7.23.5): resolution: {integrity: sha512-xkb58MyOYIslxu3gKmVXmjTtUPvBU4odYzbiIQbWwLKIHCsx6UGZGX6F1IznMFVnDdirseUZopzN+ZRt8Xb33Q==} engines: {node: '>=6.9.0'} @@ -3864,6 +3928,24 @@ packages: '@babel/helper-split-export-declaration': 7.22.6 semver: 6.3.1 + /@babel/helper-create-class-features-plugin@7.22.5(@babel/core@7.23.7): + resolution: {integrity: sha512-xkb58MyOYIslxu3gKmVXmjTtUPvBU4odYzbiIQbWwLKIHCsx6UGZGX6F1IznMFVnDdirseUZopzN+ZRt8Xb33Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-member-expression-to-functions': 7.23.0 + '@babel/helper-optimise-call-expression': 7.22.5 + '@babel/helper-replace-supers': 7.22.9(@babel/core@7.23.7) + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + semver: 6.3.1 + dev: false + /@babel/helper-create-regexp-features-plugin@7.21.0(@babel/core@7.21.4): resolution: {integrity: sha512-N+LaFW/auRSWdx7SHD/HiARwXQju1vXTW4fKr4u5SgBUTm51OKEjKgj+cs00ggW3kEvNqwErnlwuq7Y3xBe4eg==} engines: {node: '>=6.9.0'} @@ -3895,13 +3977,13 @@ packages: '@babel/helper-annotate-as-pure': 7.22.5 regexpu-core: 5.3.1 - /@babel/helper-create-regexp-features-plugin@7.21.0(@babel/core@7.23.5): + /@babel/helper-create-regexp-features-plugin@7.21.0(@babel/core@7.23.7): resolution: {integrity: sha512-N+LaFW/auRSWdx7SHD/HiARwXQju1vXTW4fKr4u5SgBUTm51OKEjKgj+cs00ggW3kEvNqwErnlwuq7Y3xBe4eg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.23.7 '@babel/helper-annotate-as-pure': 7.22.5 regexpu-core: 5.3.1 @@ -3947,7 +4029,7 @@ packages: '@babel/core': 7.21.8 '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 lodash.debounce: 4.0.8 resolve: 1.22.8 semver: 6.3.1 @@ -3962,22 +4044,22 @@ packages: '@babel/core': 7.22.20 '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 lodash.debounce: 4.0.8 resolve: 1.22.8 semver: 6.3.1 transitivePeerDependencies: - supports-color - /@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.23.5): + /@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.23.7): resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==} peerDependencies: '@babel/core': ^7.4.0-0 dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.23.7 '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 lodash.debounce: 4.0.8 resolve: 1.22.8 semver: 6.3.1 @@ -4119,6 +4201,7 @@ packages: '@babel/helper-simple-access': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 '@babel/helper-validator-identifier': 7.22.20 + dev: false /@babel/helper-module-transforms@7.23.3(@babel/core@7.23.5): resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==} @@ -4133,6 +4216,19 @@ packages: '@babel/helper-split-export-declaration': 7.22.6 '@babel/helper-validator-identifier': 7.22.20 + /@babel/helper-module-transforms@7.23.3(@babel/core@7.23.7): + resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-module-imports': 7.22.15 + '@babel/helper-simple-access': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + '@babel/helper-validator-identifier': 7.22.20 + /@babel/helper-optimise-call-expression@7.22.5: resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==} engines: {node: '>=6.9.0'} @@ -4143,10 +4239,6 @@ packages: resolution: {integrity: sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==} dev: true - /@babel/helper-plugin-utils@7.21.5: - resolution: {integrity: sha512-0WDaIlXKOX/3KfBK/dwP1oQGiPh6rjMkT7HIRv7i5RR2VUMwrx5ZL0dwBkKx7+SW1zwNdgjHd34IMk5ZjTeHVg==} - engines: {node: '>=6.9.0'} - /@babel/helper-plugin-utils@7.22.5: resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==} engines: {node: '>=6.9.0'} @@ -4194,13 +4286,13 @@ packages: transitivePeerDependencies: - supports-color - /@babel/helper-remap-async-to-generator@7.18.9(@babel/core@7.23.5): + /@babel/helper-remap-async-to-generator@7.18.9(@babel/core@7.23.7): resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.23.7 '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-wrap-function': 7.20.5 @@ -4265,6 +4357,7 @@ packages: '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-member-expression-to-functions': 7.23.0 '@babel/helper-optimise-call-expression': 7.22.5 + dev: false /@babel/helper-replace-supers@7.22.9(@babel/core@7.23.5): resolution: {integrity: sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==} @@ -4277,6 +4370,17 @@ packages: '@babel/helper-member-expression-to-functions': 7.23.0 '@babel/helper-optimise-call-expression': 7.22.5 + /@babel/helper-replace-supers@7.22.9(@babel/core@7.23.7): + resolution: {integrity: sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-member-expression-to-functions': 7.23.0 + '@babel/helper-optimise-call-expression': 7.22.5 + /@babel/helper-simple-access@7.22.5: resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==} engines: {node: '>=6.9.0'} @@ -4321,6 +4425,10 @@ packages: resolution: {integrity: sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==} engines: {node: '>=6.9.0'} + /@babel/helper-validator-option@7.23.5: + resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==} + engines: {node: '>=6.9.0'} + /@babel/helper-wrap-function@7.20.5: resolution: {integrity: sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q==} engines: {node: '>=6.9.0'} @@ -4362,6 +4470,16 @@ packages: transitivePeerDependencies: - supports-color + /@babel/helpers@7.23.7: + resolution: {integrity: sha512-6AMnjCoC8wjqBzDHkuqpa7jAKwvMo4dC+lr/TFBz+ucfulO1XMpDnwWPGBNwClOKZ8h6xn5N81W/R5OrcKtCbQ==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/template': 7.22.15 + '@babel/traverse': 7.23.7 + '@babel/types': 7.23.6 + transitivePeerDependencies: + - supports-color + /@babel/highlight@7.23.4: resolution: {integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==} engines: {node: '>=6.9.0'} @@ -4406,6 +4524,13 @@ packages: dependencies: '@babel/types': 7.23.5 + /@babel/parser@7.23.6: + resolution: {integrity: sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==} + engines: {node: '>=6.0.0'} + hasBin: true + dependencies: + '@babel/types': 7.23.6 + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6(@babel/core@7.21.4): resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==} engines: {node: '>=6.9.0'} @@ -4434,13 +4559,13 @@ packages: '@babel/core': 7.22.20 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6(@babel/core@7.23.5): + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6(@babel/core@7.23.7): resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.20.7(@babel/core@7.21.4): @@ -4477,16 +4602,16 @@ packages: '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.20) - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.20.7(@babel/core@7.23.5): + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.20.7(@babel/core@7.23.7): resolution: {integrity: sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.13.0 dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.23.5) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.23.7) /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.21.4): resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} @@ -4540,8 +4665,23 @@ packages: '@babel/core': 7.23.5 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.23.5) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.5) + '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.23.7) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.7) + transitivePeerDependencies: + - supports-color + dev: false + + /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.23.7): + resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.23.7) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.7) transitivePeerDependencies: - supports-color @@ -4583,7 +4723,17 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.23.5 - '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.5) + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.7) + '@babel/helper-plugin-utils': 7.22.5 + + /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.23.7): + resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.7) '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-proposal-class-static-block@7.21.0(@babel/core@7.21.4): @@ -4620,16 +4770,16 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.22.20) - /@babel/plugin-proposal-class-static-block@7.21.0(@babel/core@7.23.5): + /@babel/plugin-proposal-class-static-block@7.21.0(@babel/core@7.23.7): resolution: {integrity: sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.12.0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.5) + '@babel/core': 7.23.7 + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.7) '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.5) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.7) /@babel/plugin-proposal-decorators@7.22.5(@babel/core@7.21.4): resolution: {integrity: sha512-h8hlezQ4dl6ixodgXkH8lUfcD7x+WAuIqPUjwGoItynrXOAv4a4Tci1zA/qjzQjjcl0v3QpLdc2LM6ZACQuY7A==} @@ -4694,6 +4844,22 @@ packages: transitivePeerDependencies: - supports-color + /@babel/plugin-proposal-decorators@7.22.5(@babel/core@7.23.7): + resolution: {integrity: sha512-h8hlezQ4dl6ixodgXkH8lUfcD7x+WAuIqPUjwGoItynrXOAv4a4Tci1zA/qjzQjjcl0v3QpLdc2LM6ZACQuY7A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-create-class-features-plugin': 7.22.5(@babel/core@7.23.7) + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-replace-supers': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.5 + '@babel/plugin-syntax-decorators': 7.22.5(@babel/core@7.23.7) + transitivePeerDependencies: + - supports-color + dev: false + /@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.21.4): resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} engines: {node: '>=6.9.0'} @@ -4725,15 +4891,15 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.20) - /@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.23.5): + /@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.23.7): resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.5) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.7) /@babel/plugin-proposal-export-default-from@7.18.10(@babel/core@7.21.8): resolution: {integrity: sha512-5H2N3R2aQFxkV4PIBUR/i7PUSwgTZjouJKzI8eKswfIjT0PhvzkPn0t0wIS5zn6maQuvtT0t1oHtMUz61LOuow==} @@ -4787,15 +4953,15 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.20) - /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.23.5): + /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.23.7): resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.5) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.7) /@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.21.4): resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} @@ -4828,15 +4994,15 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.20) - /@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.23.5): + /@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.23.7): resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.5) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.7) /@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.21.4): resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==} @@ -4869,15 +5035,15 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.20) - /@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.23.5): + /@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.23.7): resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.5) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.7) /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.21.4): resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} @@ -4918,7 +5084,17 @@ packages: dependencies: '@babel/core': 7.23.5 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.5) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.7) + + /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.23.7): + resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.7) /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.21.4): resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} @@ -4959,7 +5135,17 @@ packages: dependencies: '@babel/core': 7.23.5 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.5) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.7) + + /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.23.7): + resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.7) /@babel/plugin-proposal-object-rest-spread@7.12.1(@babel/core@7.12.9): resolution: {integrity: sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==} @@ -5023,8 +5209,21 @@ packages: '@babel/core': 7.23.5 '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-transform-parameters': 7.20.7(@babel/core@7.23.5) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.7) + '@babel/plugin-transform-parameters': 7.20.7(@babel/core@7.23.7) + + /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.23.7): + resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.22.9 + '@babel/core': 7.23.7 + '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.7) + '@babel/plugin-transform-parameters': 7.20.7(@babel/core@7.23.7) /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.21.4): resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} @@ -5065,7 +5264,18 @@ packages: dependencies: '@babel/core': 7.23.5 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.5) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.7) + dev: false + + /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.23.7): + resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.7) /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.21.4): resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==} @@ -5110,7 +5320,18 @@ packages: '@babel/core': 7.23.5 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.5) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.7) + + /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.23.7): + resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.7) /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.21.4): resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} @@ -5150,7 +5371,17 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.23.5 - '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.5) + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.7) + '@babel/helper-plugin-utils': 7.22.5 + + /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.23.7): + resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.7) '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-proposal-private-property-in-object@7.21.0(@babel/core@7.21.4): @@ -5198,9 +5429,21 @@ packages: dependencies: '@babel/core': 7.23.5 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.5) + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.7) '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.5) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.7) + + /@babel/plugin-proposal-private-property-in-object@7.21.0(@babel/core@7.23.7): + resolution: {integrity: sha512-ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.7) + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.7) /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.21.4): resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} @@ -5233,14 +5476,14 @@ packages: '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.22.20) '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.23.5): + /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.23.7): resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} engines: {node: '>=4'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.23.5) + '@babel/core': 7.23.7 + '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.23.7) '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.21.4): @@ -5276,6 +5519,14 @@ packages: '@babel/core': 7.23.5 '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.7): + resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.21.8): resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} peerDependencies: @@ -5325,6 +5576,14 @@ packages: '@babel/core': 7.23.5 '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.7): + resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.21.4): resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} engines: {node: '>=6.9.0'} @@ -5353,13 +5612,13 @@ packages: '@babel/core': 7.22.20 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.23.5): + /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.23.7): resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-syntax-decorators@7.22.5(@babel/core@7.21.4): @@ -5401,6 +5660,16 @@ packages: '@babel/core': 7.23.5 '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-decorators@7.22.5(@babel/core@7.23.7): + resolution: {integrity: sha512-avpUOBS7IU6al8MmF1XpAyj9QYeLPuSDJI5D4pVMSMdL7xQokKqJPYQC67RCT0aCTashUXPiGwMJ0DEXXCEmMA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + dev: false + /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.21.4): resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} peerDependencies: @@ -5434,6 +5703,14 @@ packages: '@babel/core': 7.23.5 '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.23.7): + resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-export-default-from@7.18.6(@babel/core@7.21.8): resolution: {integrity: sha512-Kr//z3ujSVNx6E9z9ih5xXXMqK07VVTuqPmqGe6Mss/zW5XPeLZeSDZoP9ab/hT4wPKqAgjl2PnhPrcpk8Seew==} engines: {node: '>=6.9.0'} @@ -5478,12 +5755,12 @@ packages: '@babel/core': 7.22.20 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.23.5): + /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.23.7): resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-syntax-flow@7.18.6(@babel/core@7.21.8): @@ -5532,13 +5809,13 @@ packages: '@babel/core': 7.22.20 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-import-assertions@7.20.0(@babel/core@7.23.5): + /@babel/plugin-syntax-import-assertions@7.20.0(@babel/core@7.23.7): resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.21.8): @@ -5574,6 +5851,14 @@ packages: '@babel/core': 7.23.5 '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.7): + resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.21.4): resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: @@ -5607,6 +5892,14 @@ packages: '@babel/core': 7.23.5 '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.23.7): + resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-jsx@7.12.1(@babel/core@7.12.9): resolution: {integrity: sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==} peerDependencies: @@ -5653,6 +5946,17 @@ packages: dependencies: '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 + dev: false + + /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.23.5): + resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.5 + '@babel/helper-plugin-utils': 7.22.5 + dev: true /@babel/plugin-syntax-jsx@7.23.3(@babel/core@7.21.4): resolution: {integrity: sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==} @@ -5702,6 +6006,16 @@ packages: '@babel/core': 7.23.5 '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-jsx@7.23.3(@babel/core@7.23.7): + resolution: {integrity: sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.21.4): resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: @@ -5735,6 +6049,14 @@ packages: '@babel/core': 7.23.5 '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.7): + resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.21.4): resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: @@ -5768,6 +6090,14 @@ packages: '@babel/core': 7.23.5 '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.7): + resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.21.4): resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} peerDependencies: @@ -5801,6 +6131,14 @@ packages: '@babel/core': 7.23.5 '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.7): + resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.12.9): resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: @@ -5843,6 +6181,14 @@ packages: '@babel/core': 7.23.5 '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.7): + resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.21.4): resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: @@ -5876,6 +6222,14 @@ packages: '@babel/core': 7.23.5 '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.23.7): + resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.21.4): resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: @@ -5909,6 +6263,14 @@ packages: '@babel/core': 7.23.5 '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.7): + resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.21.4): resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} engines: {node: '>=6.9.0'} @@ -5937,13 +6299,13 @@ packages: '@babel/core': 7.22.20 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.23.5): + /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.23.7): resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.21.4): @@ -5983,6 +6345,15 @@ packages: '@babel/core': 7.23.5 '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.7): + resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-typescript@7.23.3(@babel/core@7.21.4): resolution: {integrity: sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==} engines: {node: '>=6.9.0'} @@ -6020,6 +6391,7 @@ packages: dependencies: '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 + dev: false /@babel/plugin-syntax-typescript@7.23.3(@babel/core@7.23.5): resolution: {integrity: sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==} @@ -6076,6 +6448,16 @@ packages: dependencies: '@babel/core': 7.23.5 '@babel/helper-plugin-utils': 7.22.5 + dev: false + + /@babel/plugin-transform-arrow-functions@7.21.5(@babel/core@7.23.7): + resolution: {integrity: sha512-wb1mhwGOCaXHDTcsRYMKF9e5bbMgqwxtqa2Y1ifH96dXJPwbuLX9qHy3clhrxVqgMz7nyNXs8VkxdH8UBcjKqA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-async-to-generator@7.20.7(@babel/core@7.21.4): resolution: {integrity: sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==} @@ -6126,7 +6508,21 @@ packages: '@babel/core': 7.23.5 '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.23.5) + '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.23.7) + transitivePeerDependencies: + - supports-color + dev: false + + /@babel/plugin-transform-async-to-generator@7.20.7(@babel/core@7.23.7): + resolution: {integrity: sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-module-imports': 7.22.15 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.23.7) transitivePeerDependencies: - supports-color @@ -6166,6 +6562,16 @@ packages: dependencies: '@babel/core': 7.23.5 '@babel/helper-plugin-utils': 7.22.5 + dev: false + + /@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.23.7): + resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-block-scoping@7.21.0(@babel/core@7.21.4): resolution: {integrity: sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==} @@ -6204,14 +6610,23 @@ packages: '@babel/core': 7.23.5 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-class-properties@7.22.5(@babel/core@7.23.5): + /@babel/plugin-transform-block-scoping@7.21.0(@babel/core@7.23.7): + resolution: {integrity: sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + + /@babel/plugin-transform-class-properties@7.22.5(@babel/core@7.23.7): resolution: {integrity: sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-create-class-features-plugin': 7.22.5(@babel/core@7.23.5) + '@babel/core': 7.23.7 + '@babel/helper-create-class-features-plugin': 7.22.5(@babel/core@7.23.7) '@babel/helper-plugin-utils': 7.22.5 dev: false @@ -6280,7 +6695,24 @@ packages: '@babel/helper-function-name': 7.23.0 '@babel/helper-optimise-call-expression': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.9(@babel/core@7.23.5) + '@babel/helper-replace-supers': 7.22.9(@babel/core@7.23.7) + '@babel/helper-split-export-declaration': 7.22.6 + globals: 11.12.0 + + /@babel/plugin-transform-classes@7.21.0(@babel/core@7.23.7): + resolution: {integrity: sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-optimise-call-expression': 7.22.5 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-replace-supers': 7.22.9(@babel/core@7.23.7) '@babel/helper-split-export-declaration': 7.22.6 globals: 11.12.0 @@ -6324,6 +6756,17 @@ packages: '@babel/core': 7.23.5 '@babel/helper-plugin-utils': 7.22.5 '@babel/template': 7.22.15 + dev: false + + /@babel/plugin-transform-computed-properties@7.21.5(@babel/core@7.23.7): + resolution: {integrity: sha512-TR653Ki3pAwxBxUe8srfF3e4Pe3FTA46uaNHYyQwIoM4oWKSoOZiDNyHJ0oIoDIUPSRQbQG7jzgVBX3FPVne1Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/template': 7.22.15 /@babel/plugin-transform-destructuring@7.20.7(@babel/core@7.21.4): resolution: {integrity: sha512-Xwg403sRrZb81IVB79ZPqNQME23yhugYVqgTxAhT99h485F4f+GMELFhhOsscDUB7HCswepKeCKLn/GZvUKoBA==} @@ -6371,6 +6814,16 @@ packages: dependencies: '@babel/core': 7.23.5 '@babel/helper-plugin-utils': 7.22.5 + dev: false + + /@babel/plugin-transform-destructuring@7.21.3(@babel/core@7.23.7): + resolution: {integrity: sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-dotall-regex@7.18.6(@babel/core@7.21.4): resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==} @@ -6403,14 +6856,14 @@ packages: '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.22.20) '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-dotall-regex@7.18.6(@babel/core@7.23.5): + /@babel/plugin-transform-dotall-regex@7.18.6(@babel/core@7.23.7): resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.23.5) + '@babel/core': 7.23.7 + '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.23.7) '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-duplicate-keys@7.18.9(@babel/core@7.21.4): @@ -6441,13 +6894,13 @@ packages: '@babel/core': 7.22.20 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-duplicate-keys@7.18.9(@babel/core@7.23.5): + /@babel/plugin-transform-duplicate-keys@7.18.9(@babel/core@7.23.7): resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-exponentiation-operator@7.18.6(@babel/core@7.21.4): @@ -6490,6 +6943,17 @@ packages: '@babel/core': 7.23.5 '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9 '@babel/helper-plugin-utils': 7.22.5 + dev: false + + /@babel/plugin-transform-exponentiation-operator@7.18.6(@babel/core@7.23.7): + resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9 + '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-flow-strip-types@7.21.0(@babel/core@7.21.8): resolution: {integrity: sha512-FlFA2Mj87a6sDkW4gfGrQQqwY/dLlBAyJa2dJEZ+FHXUVHBflO2wyKvg+OOEzXfrKYIa4HWl0mgmbCzt0cMb7w==} @@ -6557,6 +7021,16 @@ packages: dependencies: '@babel/core': 7.23.5 '@babel/helper-plugin-utils': 7.22.5 + dev: false + + /@babel/plugin-transform-for-of@7.21.5(@babel/core@7.23.7): + resolution: {integrity: sha512-nYWpjKW/7j/I/mZkGVgHJXh4bA1sfdFnJoOXwJuj4m3Q2EraO/8ZyrkCau9P5tbHQk01RMSt6KYLCsW7730SXQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-function-name@7.18.9(@babel/core@7.21.4): resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==} @@ -6602,6 +7076,18 @@ packages: '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-function-name': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 + dev: false + + /@babel/plugin-transform-function-name@7.18.9(@babel/core@7.23.7): + resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-literals@7.18.9(@babel/core@7.21.4): resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==} @@ -6639,6 +7125,16 @@ packages: dependencies: '@babel/core': 7.23.5 '@babel/helper-plugin-utils': 7.22.5 + dev: false + + /@babel/plugin-transform-literals@7.18.9(@babel/core@7.23.7): + resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.21.4): resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==} @@ -6676,6 +7172,16 @@ packages: dependencies: '@babel/core': 7.23.5 '@babel/helper-plugin-utils': 7.22.5 + dev: false + + /@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.23.7): + resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-modules-amd@7.20.11(@babel/core@7.21.4): resolution: {integrity: sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==} @@ -6708,14 +7214,14 @@ packages: '@babel/helper-module-transforms': 7.23.3(@babel/core@7.22.20) '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-modules-amd@7.20.11(@babel/core@7.23.5): + /@babel/plugin-transform-modules-amd@7.20.11(@babel/core@7.23.7): resolution: {integrity: sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.5) + '@babel/core': 7.23.7 + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7) '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-modules-commonjs@7.21.5(@babel/core@7.21.8): @@ -6740,14 +7246,14 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-simple-access': 7.22.5 - /@babel/plugin-transform-modules-commonjs@7.21.5(@babel/core@7.23.5): + /@babel/plugin-transform-modules-commonjs@7.21.5(@babel/core@7.23.7): resolution: {integrity: sha512-OVryBEgKUbtqMoB7eG2rs6UFexJi6Zj6FDXx+esBLPTCxCNxAY9o+8Di7IsUGJ+AVhp5ncK0fxWUBd0/1gPhrQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.5) + '@babel/core': 7.23.7 + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7) '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-simple-access': 7.22.5 @@ -6834,15 +7340,15 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-validator-identifier': 7.22.20 - /@babel/plugin-transform-modules-systemjs@7.20.11(@babel/core@7.23.5): + /@babel/plugin-transform-modules-systemjs@7.20.11(@babel/core@7.23.7): resolution: {integrity: sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.23.7 '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.5) + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7) '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-validator-identifier': 7.22.20 @@ -6877,14 +7383,14 @@ packages: '@babel/helper-module-transforms': 7.23.3(@babel/core@7.22.20) '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-modules-umd@7.18.6(@babel/core@7.23.5): + /@babel/plugin-transform-modules-umd@7.18.6(@babel/core@7.23.7): resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.5) + '@babel/core': 7.23.7 + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7) '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-named-capturing-groups-regex@7.20.5(@babel/core@7.21.4): @@ -6925,7 +7431,18 @@ packages: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.23.5 - '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.23.5) + '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.23.7) + '@babel/helper-plugin-utils': 7.22.5 + dev: false + + /@babel/plugin-transform-named-capturing-groups-regex@7.20.5(@babel/core@7.23.7): + resolution: {integrity: sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.23.7) '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-new-target@7.18.6(@babel/core@7.21.4): @@ -6956,13 +7473,13 @@ packages: '@babel/core': 7.22.20 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-new-target@7.18.6(@babel/core@7.23.5): + /@babel/plugin-transform-new-target@7.18.6(@babel/core@7.23.7): resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-object-assign@7.18.6(@babel/core@7.21.4): @@ -7014,7 +7531,18 @@ packages: dependencies: '@babel/core': 7.23.5 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.9(@babel/core@7.23.5) + '@babel/helper-replace-supers': 7.22.9(@babel/core@7.23.7) + dev: false + + /@babel/plugin-transform-object-super@7.18.6(@babel/core@7.23.7): + resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-replace-supers': 7.22.9(@babel/core@7.23.7) /@babel/plugin-transform-parameters@7.20.7(@babel/core@7.21.4): resolution: {integrity: sha512-WiWBIkeHKVOSYPO0pWkxGPfKeWrCJyD3NJ53+Lrp/QMSZbsVPovrVl2aWZ19D/LTVnaDv5Ap7GJ/B2CTOZdrfA==} @@ -7052,6 +7580,16 @@ packages: dependencies: '@babel/core': 7.23.5 '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-transform-parameters@7.20.7(@babel/core@7.23.7): + resolution: {integrity: sha512-WiWBIkeHKVOSYPO0pWkxGPfKeWrCJyD3NJ53+Lrp/QMSZbsVPovrVl2aWZ19D/LTVnaDv5Ap7GJ/B2CTOZdrfA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-parameters@7.21.3(@babel/core@7.12.9): resolution: {integrity: sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==} @@ -7089,6 +7627,16 @@ packages: dependencies: '@babel/core': 7.23.5 '@babel/helper-plugin-utils': 7.22.5 + dev: false + + /@babel/plugin-transform-parameters@7.21.3(@babel/core@7.23.7): + resolution: {integrity: sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.21.4): resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==} @@ -7126,6 +7674,16 @@ packages: dependencies: '@babel/core': 7.23.5 '@babel/helper-plugin-utils': 7.22.5 + dev: false + + /@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.23.7): + resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-react-constant-elements@7.20.2(@babel/core@7.23.5): resolution: {integrity: sha512-KS/G8YI8uwMGKErLFOHS/ekhqdHhpEloxs43NecQHVgo2QuQSyJhGIY1fL8UGl9wy5ItVwwoUL4YxVqsplGq2g==} @@ -7173,6 +7731,16 @@ packages: '@babel/core': 7.23.5 '@babel/plugin-transform-react-jsx': 7.21.0(@babel/core@7.23.5) + /@babel/plugin-transform-react-jsx-development@7.18.6(@babel/core@7.23.7): + resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/plugin-transform-react-jsx': 7.21.0(@babel/core@7.23.7) + dev: true + /@babel/plugin-transform-react-jsx-self@7.21.0(@babel/core@7.21.8): resolution: {integrity: sha512-f/Eq+79JEu+KUANFks9UZCcvydOOGMgF7jBrcwjHa5jTZD8JivnhCJYvmlhR/WTXBWonDExPoW0eO/CR4QJirA==} engines: {node: '>=6.9.0'} @@ -7271,6 +7839,20 @@ packages: '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.5) '@babel/types': 7.23.5 + /@babel/plugin-transform-react-jsx@7.21.0(@babel/core@7.23.7): + resolution: {integrity: sha512-6OAWljMvQrZjR2DaNhVfRz6dkCAVV+ymcLUmaf8bccGOHn2v5rHJK3tTpij0BuhdYWP4LLaqj5lwcdlpAAPuvg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-module-imports': 7.22.15 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.7) + '@babel/types': 7.23.5 + dev: true + /@babel/plugin-transform-react-pure-annotations@7.18.6(@babel/core@7.21.8): resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==} engines: {node: '>=6.9.0'} @@ -7323,13 +7905,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 regenerator-transform: 0.15.1 - /@babel/plugin-transform-regenerator@7.21.5(@babel/core@7.23.5): + /@babel/plugin-transform-regenerator@7.21.5(@babel/core@7.23.7): resolution: {integrity: sha512-ZoYBKDb6LyMi5yCsByQ5jmXsHAQDDYeexT1Szvlmui+lADvfSecr5Dxd/PkrTC3pAD182Fcju1VQkB4oCp9M+w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 regenerator-transform: 0.15.1 @@ -7361,13 +7943,13 @@ packages: '@babel/core': 7.22.20 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-reserved-words@7.18.6(@babel/core@7.23.5): + /@babel/plugin-transform-reserved-words@7.18.6(@babel/core@7.23.7): resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-runtime@7.21.0(@babel/core@7.21.8): @@ -7457,6 +8039,15 @@ packages: '@babel/core': 7.23.5 '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.23.7): + resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-transform-spread@7.20.7(@babel/core@7.21.4): resolution: {integrity: sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==} engines: {node: '>=6.9.0'} @@ -7498,6 +8089,16 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + /@babel/plugin-transform-spread@7.20.7(@babel/core@7.23.7): + resolution: {integrity: sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + /@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.21.4): resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==} engines: {node: '>=6.9.0'} @@ -7534,6 +8135,16 @@ packages: dependencies: '@babel/core': 7.23.5 '@babel/helper-plugin-utils': 7.22.5 + dev: false + + /@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.23.7): + resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.21.4): resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==} @@ -7572,6 +8183,15 @@ packages: '@babel/core': 7.23.5 '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.23.7): + resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-transform-typeof-symbol@7.18.9(@babel/core@7.21.4): resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==} engines: {node: '>=6.9.0'} @@ -7600,13 +8220,13 @@ packages: '@babel/core': 7.22.20 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-typeof-symbol@7.18.9(@babel/core@7.23.5): + /@babel/plugin-transform-typeof-symbol@7.18.9(@babel/core@7.23.7): resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-typescript@7.22.15(@babel/core@7.21.4): @@ -7658,6 +8278,7 @@ packages: '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.3) '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.3) + dev: false /@babel/plugin-transform-typescript@7.23.3(@babel/core@7.23.5): resolution: {integrity: sha512-ogV0yWnq38CFwH20l2Afz0dfKuZBx9o/Y2Rmh5vuSS0YD1hswgEgTfyTzuSrT2q9btmHRSqYoSfwFUVaC1M1Jw==} @@ -7699,13 +8320,13 @@ packages: '@babel/core': 7.22.20 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-unicode-escapes@7.21.5(@babel/core@7.23.5): + /@babel/plugin-transform-unicode-escapes@7.21.5(@babel/core@7.23.7): resolution: {integrity: sha512-LYm/gTOwZqsYohlvFUe/8Tujz75LqqVC2w+2qPHLR+WyWHGCZPN1KBpJCJn+4Bk4gOkQy/IXKIge6az5MqwlOg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.21.4): @@ -7746,7 +8367,18 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.23.5 - '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.23.5) + '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.23.7) + '@babel/helper-plugin-utils': 7.22.5 + dev: false + + /@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.23.7): + resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.23.7) '@babel/helper-plugin-utils': 7.22.5 /@babel/preset-env@7.20.2(@babel/core@7.21.4): @@ -7844,7 +8476,7 @@ packages: '@babel/compat-data': 7.21.9 '@babel/core': 7.21.8 '@babel/helper-compilation-targets': 7.21.5(@babel/core@7.21.8) - '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-validator-option': 7.21.0 '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6(@babel/core@7.21.8) '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7(@babel/core@7.21.8) @@ -7912,12 +8544,12 @@ packages: '@babel/plugin-transform-unicode-escapes': 7.21.5(@babel/core@7.21.8) '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.21.8) '@babel/preset-modules': 0.1.5(@babel/core@7.21.8) - '@babel/types': 7.21.5 + '@babel/types': 7.23.5 babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.21.8) babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.21.8) babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.21.8) core-js-compat: 3.29.0 - semver: 6.3.0 + semver: 6.3.1 transitivePeerDependencies: - supports-color @@ -8015,84 +8647,171 @@ packages: dependencies: '@babel/compat-data': 7.21.9 '@babel/core': 7.23.5 - '@babel/helper-compilation-targets': 7.21.5(@babel/core@7.23.5) + '@babel/helper-compilation-targets': 7.21.5(@babel/core@7.23.7) '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-validator-option': 7.21.0 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6(@babel/core@7.23.5) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7(@babel/core@7.23.5) - '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.23.5) - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.5) - '@babel/plugin-proposal-class-static-block': 7.21.0(@babel/core@7.23.5) - '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.23.5) - '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.23.5) - '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.23.5) - '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.23.5) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.23.5) - '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.23.5) - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.23.5) - '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.23.5) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.23.5) - '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.23.5) - '@babel/plugin-proposal-private-property-in-object': 7.21.0(@babel/core@7.23.5) - '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.23.5) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.5) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.5) - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.5) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-syntax-import-assertions': 7.20.0(@babel/core@7.23.5) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.5) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.5) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.5) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.5) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.5) - '@babel/plugin-transform-arrow-functions': 7.21.5(@babel/core@7.23.5) - '@babel/plugin-transform-async-to-generator': 7.20.7(@babel/core@7.23.5) - '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.23.5) - '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.23.5) - '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.23.5) - '@babel/plugin-transform-computed-properties': 7.21.5(@babel/core@7.23.5) - '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.23.5) - '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.23.5) - '@babel/plugin-transform-duplicate-keys': 7.18.9(@babel/core@7.23.5) - '@babel/plugin-transform-exponentiation-operator': 7.18.6(@babel/core@7.23.5) - '@babel/plugin-transform-for-of': 7.21.5(@babel/core@7.23.5) - '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.23.5) - '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.23.5) - '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.23.5) - '@babel/plugin-transform-modules-amd': 7.20.11(@babel/core@7.23.5) - '@babel/plugin-transform-modules-commonjs': 7.21.5(@babel/core@7.23.5) - '@babel/plugin-transform-modules-systemjs': 7.20.11(@babel/core@7.23.5) - '@babel/plugin-transform-modules-umd': 7.18.6(@babel/core@7.23.5) - '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5(@babel/core@7.23.5) - '@babel/plugin-transform-new-target': 7.18.6(@babel/core@7.23.5) - '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.23.5) - '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.23.5) - '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.23.5) - '@babel/plugin-transform-regenerator': 7.21.5(@babel/core@7.23.5) - '@babel/plugin-transform-reserved-words': 7.18.6(@babel/core@7.23.5) - '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.23.5) - '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.23.5) - '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.23.5) - '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.23.5) - '@babel/plugin-transform-typeof-symbol': 7.18.9(@babel/core@7.23.5) - '@babel/plugin-transform-unicode-escapes': 7.21.5(@babel/core@7.23.5) - '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.23.5) - '@babel/preset-modules': 0.1.5(@babel/core@7.23.5) + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6(@babel/core@7.23.7) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7(@babel/core@7.23.7) + '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.23.7) + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.7) + '@babel/plugin-proposal-class-static-block': 7.21.0(@babel/core@7.23.7) + '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.23.7) + '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.23.7) + '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.23.7) + '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.23.7) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.23.7) + '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.23.7) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.23.7) + '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.23.7) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.23.7) + '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.23.7) + '@babel/plugin-proposal-private-property-in-object': 7.21.0(@babel/core@7.23.7) + '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.23.7) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.7) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.7) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.7) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.7) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.7) + '@babel/plugin-syntax-import-assertions': 7.20.0(@babel/core@7.23.7) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.7) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.7) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.7) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.7) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.7) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.7) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.7) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.7) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.7) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.7) + '@babel/plugin-transform-arrow-functions': 7.21.5(@babel/core@7.23.7) + '@babel/plugin-transform-async-to-generator': 7.20.7(@babel/core@7.23.7) + '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.23.7) + '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.23.7) + '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.23.7) + '@babel/plugin-transform-computed-properties': 7.21.5(@babel/core@7.23.7) + '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.23.7) + '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.23.7) + '@babel/plugin-transform-duplicate-keys': 7.18.9(@babel/core@7.23.7) + '@babel/plugin-transform-exponentiation-operator': 7.18.6(@babel/core@7.23.7) + '@babel/plugin-transform-for-of': 7.21.5(@babel/core@7.23.7) + '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.23.7) + '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.23.7) + '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.23.7) + '@babel/plugin-transform-modules-amd': 7.20.11(@babel/core@7.23.7) + '@babel/plugin-transform-modules-commonjs': 7.21.5(@babel/core@7.23.7) + '@babel/plugin-transform-modules-systemjs': 7.20.11(@babel/core@7.23.7) + '@babel/plugin-transform-modules-umd': 7.18.6(@babel/core@7.23.7) + '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5(@babel/core@7.23.7) + '@babel/plugin-transform-new-target': 7.18.6(@babel/core@7.23.7) + '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.23.7) + '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.23.7) + '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.23.7) + '@babel/plugin-transform-regenerator': 7.21.5(@babel/core@7.23.7) + '@babel/plugin-transform-reserved-words': 7.18.6(@babel/core@7.23.7) + '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.23.7) + '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.23.7) + '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.23.7) + '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.23.7) + '@babel/plugin-transform-typeof-symbol': 7.18.9(@babel/core@7.23.7) + '@babel/plugin-transform-unicode-escapes': 7.21.5(@babel/core@7.23.7) + '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.23.7) + '@babel/preset-modules': 0.1.5(@babel/core@7.23.7) '@babel/types': 7.23.5 - babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.23.5) - babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.23.5) - babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.23.5) + babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.23.7) + babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.23.7) + babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.23.7) core-js-compat: 3.29.0 semver: 6.3.1 transitivePeerDependencies: - supports-color + /@babel/preset-env@7.21.5(@babel/core@7.23.7): + resolution: {integrity: sha512-wH00QnTTldTbf/IefEVyChtRdw5RJvODT/Vb4Vcxq1AZvtXj6T0YeX0cAcXhI6/BdGuiP3GcNIL4OQbI2DVNxg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.21.9 + '@babel/core': 7.23.7 + '@babel/helper-compilation-targets': 7.21.5(@babel/core@7.23.7) + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-validator-option': 7.21.0 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6(@babel/core@7.23.7) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7(@babel/core@7.23.7) + '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.23.7) + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.7) + '@babel/plugin-proposal-class-static-block': 7.21.0(@babel/core@7.23.7) + '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.23.7) + '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.23.7) + '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.23.7) + '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.23.7) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.23.7) + '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.23.7) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.23.7) + '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.23.7) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.23.7) + '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.23.7) + '@babel/plugin-proposal-private-property-in-object': 7.21.0(@babel/core@7.23.7) + '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.23.7) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.7) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.7) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.7) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.7) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.7) + '@babel/plugin-syntax-import-assertions': 7.20.0(@babel/core@7.23.7) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.7) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.7) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.7) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.7) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.7) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.7) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.7) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.7) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.7) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.7) + '@babel/plugin-transform-arrow-functions': 7.21.5(@babel/core@7.23.7) + '@babel/plugin-transform-async-to-generator': 7.20.7(@babel/core@7.23.7) + '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.23.7) + '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.23.7) + '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.23.7) + '@babel/plugin-transform-computed-properties': 7.21.5(@babel/core@7.23.7) + '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.23.7) + '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.23.7) + '@babel/plugin-transform-duplicate-keys': 7.18.9(@babel/core@7.23.7) + '@babel/plugin-transform-exponentiation-operator': 7.18.6(@babel/core@7.23.7) + '@babel/plugin-transform-for-of': 7.21.5(@babel/core@7.23.7) + '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.23.7) + '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.23.7) + '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.23.7) + '@babel/plugin-transform-modules-amd': 7.20.11(@babel/core@7.23.7) + '@babel/plugin-transform-modules-commonjs': 7.21.5(@babel/core@7.23.7) + '@babel/plugin-transform-modules-systemjs': 7.20.11(@babel/core@7.23.7) + '@babel/plugin-transform-modules-umd': 7.18.6(@babel/core@7.23.7) + '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5(@babel/core@7.23.7) + '@babel/plugin-transform-new-target': 7.18.6(@babel/core@7.23.7) + '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.23.7) + '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.23.7) + '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.23.7) + '@babel/plugin-transform-regenerator': 7.21.5(@babel/core@7.23.7) + '@babel/plugin-transform-reserved-words': 7.18.6(@babel/core@7.23.7) + '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.23.7) + '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.23.7) + '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.23.7) + '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.23.7) + '@babel/plugin-transform-typeof-symbol': 7.18.9(@babel/core@7.23.7) + '@babel/plugin-transform-unicode-escapes': 7.21.5(@babel/core@7.23.7) + '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.23.7) + '@babel/preset-modules': 0.1.5(@babel/core@7.23.7) + '@babel/types': 7.23.5 + babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.23.7) + babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.23.7) + babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.23.7) + core-js-compat: 3.29.0 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/preset-flow@7.18.6(@babel/core@7.21.8): resolution: {integrity: sha512-E7BDhL64W6OUqpuyHnSroLnqyRTcG6ZdOBl1OKI/QK/HJfplqK/S3sq1Cckx7oTodJ5yOXyfw7rEADJ6UjoQDQ==} engines: {node: '>=6.9.0'} @@ -8153,15 +8872,15 @@ packages: '@babel/types': 7.23.5 esutils: 2.0.3 - /@babel/preset-modules@0.1.5(@babel/core@7.23.5): + /@babel/preset-modules@0.1.5(@babel/core@7.23.7): resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.23.5) - '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.23.5) + '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.23.7) + '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.23.7) '@babel/types': 7.23.5 esutils: 2.0.3 @@ -8318,6 +9037,24 @@ packages: '@babel/parser': 7.23.5 '@babel/types': 7.23.5 + /@babel/traverse@7.21.5: + resolution: {integrity: sha512-AhQoI3YjWi6u/y/ntv7k48mcrCXmus0t79J9qPNlk/lAsFlCiJ047RmbfMOawySTHtywXhbXgpx/8nXMYd+oFw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': 7.23.5 + '@babel/generator': 7.23.5 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-hoist-variables': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + '@babel/parser': 7.23.5 + '@babel/types': 7.23.5 + debug: 4.3.4 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/traverse@7.21.5(supports-color@5.5.0): resolution: {integrity: sha512-AhQoI3YjWi6u/y/ntv7k48mcrCXmus0t79J9qPNlk/lAsFlCiJ047RmbfMOawySTHtywXhbXgpx/8nXMYd+oFw==} engines: {node: '>=6.9.0'} @@ -8334,6 +9071,7 @@ packages: globals: 11.12.0 transitivePeerDependencies: - supports-color + dev: false /@babel/traverse@7.22.20: resolution: {integrity: sha512-eU260mPZbU7mZ0N+X10pxXhQFMGTeLb9eFS0mxehS8HZp9o1uSnFeWQuG1UPrlxgA7QoUzFhOnilHDp0AXCyHw==} @@ -8347,7 +9085,7 @@ packages: '@babel/helper-split-export-declaration': 7.22.6 '@babel/parser': 7.23.5 '@babel/types': 7.23.5 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 globals: 11.12.0 transitivePeerDependencies: - supports-color @@ -8364,7 +9102,7 @@ packages: '@babel/helper-split-export-declaration': 7.22.6 '@babel/parser': 7.23.5 '@babel/types': 7.23.5 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 globals: 11.12.0 transitivePeerDependencies: - supports-color @@ -8399,7 +9137,7 @@ packages: '@babel/helper-split-export-declaration': 7.22.6 '@babel/parser': 7.23.5 '@babel/types': 7.23.5 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 globals: 11.12.0 transitivePeerDependencies: - supports-color @@ -8416,7 +9154,24 @@ packages: '@babel/helper-split-export-declaration': 7.22.6 '@babel/parser': 7.23.5 '@babel/types': 7.23.5 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + + /@babel/traverse@7.23.7: + resolution: {integrity: sha512-tY3mM8rH9jM0YHFGyfC0/xf+SB5eKUu7HPj7/k3fpi9dAlsMc5YbQvDi0Sh2QTPXqMhyaAtzAr807TIyfQrmyg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': 7.23.5 + '@babel/generator': 7.23.6 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-hoist-variables': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + '@babel/parser': 7.23.6 + '@babel/types': 7.23.6 + debug: 4.3.4 globals: 11.12.0 transitivePeerDependencies: - supports-color @@ -8436,6 +9191,7 @@ packages: '@babel/helper-string-parser': 7.22.5 '@babel/helper-validator-identifier': 7.22.20 to-fast-properties: 2.0.0 + dev: true /@babel/types@7.22.19: resolution: {integrity: sha512-P7LAw/LbojPzkgp5oznjE6tQEIWbp4PkkfrZDINTro9zgBRtI324/EYsiSI7lhPbpIQ+DCeR2NNmMWANGGfZsg==} @@ -8478,6 +9234,14 @@ packages: '@babel/helper-validator-identifier': 7.22.20 to-fast-properties: 2.0.0 + /@babel/types@7.23.6: + resolution: {integrity: sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-string-parser': 7.23.4 + '@babel/helper-validator-identifier': 7.22.20 + to-fast-properties: 2.0.0 + /@base2/pretty-print-object@1.0.1: resolution: {integrity: sha512-4iri8i1AqYHJE2DstZYkyEprg6Pq6sKx3xn5FpySk9sNhH7qN2LLlHJCfDTZRILNwQNPD7mATWM0TBui7uC1pA==} dev: true @@ -9266,14 +10030,6 @@ packages: dev: true optional: true - /@esbuild/android-arm@0.15.18: - resolution: {integrity: sha512-5GT+kcs2WVGjVs7+boataCkO5Fg0y4kCjzkB5bAip7H4jfnOS3dA6KPiww9W1OEKTKeAcUVhdZGvgI65OXmUnw==} - engines: {node: '>=12'} - cpu: [arm] - os: [android] - requiresBuild: true - optional: true - /@esbuild/android-arm@0.16.17: resolution: {integrity: sha512-N9x1CMXVhtWEAMS7pNNONyA14f71VPQN9Cnavj1XQh6T7bskqiLLrSca4O0Vr8Wdcga943eThxnVp3JLnBMYtw==} engines: {node: '>=12'} @@ -9661,14 +10417,6 @@ packages: dev: true optional: true - /@esbuild/linux-loong64@0.15.18: - resolution: {integrity: sha512-L4jVKS82XVhw2nvzLg/19ClLWg0y27ulRwuP7lcyL6AbUWB5aPglXY3M21mauDQMDfRLs8cQmeT03r/+X3cZYQ==} - engines: {node: '>=12'} - cpu: [loong64] - os: [linux] - requiresBuild: true - optional: true - /@esbuild/linux-loong64@0.16.17: resolution: {integrity: sha512-dTzNnQwembNDhd654cA4QhbS9uDdXC3TKqMJjgOWsC0yNCbpzfWoXdZvp0mY7HU6nzk5E0zpRGGx3qoQg8T2DQ==} engines: {node: '>=12'} @@ -10191,7 +10939,7 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: ajv: 6.12.6 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 espree: 9.6.1 globals: 13.20.0 ignore: 5.2.4 @@ -10612,6 +11360,24 @@ packages: - typescript dev: false + /@fwouts/vite-tsconfig-paths@4.2.1(typescript@5.3.3)(vite@5.0.10): + resolution: {integrity: sha512-z18jfssqNPiMTiCgogWGF+KE0p0DgX4lBWr5dmeSI3sp0hFHG+h8rRUGCAdyTT0Ej79PxtjSLuL3up5uFi89EQ==} + peerDependencies: + vite: '*' + peerDependenciesMeta: + vite: + optional: true + dependencies: + async-mutex: 0.4.0 + debug: 4.3.4 + globrex: 0.1.2 + tsconfck: 2.1.1(typescript@5.3.3) + vite: 5.0.10(@types/node@20.10.6) + transitivePeerDependencies: + - supports-color + - typescript + dev: false + /@gar/promisify@1.1.3: resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==} @@ -10659,7 +11425,7 @@ packages: engines: {node: '>=10.10.0'} dependencies: '@humanwhocodes/object-schema': 1.2.1 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 minimatch: 3.1.2 transitivePeerDependencies: - supports-color @@ -10857,6 +11623,13 @@ packages: '@sinclair/typebox': 0.25.24 dev: true + /@jest/schemas@29.6.3: + resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@sinclair/typebox': 0.27.8 + dev: true + /@jest/source-map@27.5.1: resolution: {integrity: sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} @@ -11020,10 +11793,22 @@ packages: '@jridgewell/sourcemap-codec': 1.4.15 '@jridgewell/trace-mapping': 0.3.19 + /@jridgewell/gen-mapping@0.3.3: + resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==} + engines: {node: '>=6.0.0'} + dependencies: + '@jridgewell/set-array': 1.1.2 + '@jridgewell/sourcemap-codec': 1.4.15 + '@jridgewell/trace-mapping': 0.3.20 + /@jridgewell/resolve-uri@3.1.0: resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==} engines: {node: '>=6.0.0'} + /@jridgewell/resolve-uri@3.1.1: + resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==} + engines: {node: '>=6.0.0'} + /@jridgewell/set-array@1.1.2: resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} engines: {node: '>=6.0.0'} @@ -11054,6 +11839,12 @@ packages: '@jridgewell/resolve-uri': 3.1.0 '@jridgewell/sourcemap-codec': 1.4.15 + /@jridgewell/trace-mapping@0.3.20: + resolution: {integrity: sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==} + dependencies: + '@jridgewell/resolve-uri': 3.1.1 + '@jridgewell/sourcemap-codec': 1.4.15 + /@jridgewell/trace-mapping@0.3.9: resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} dependencies: @@ -12068,7 +12859,7 @@ packages: pretty-bytes: 5.6.0 semver: 7.5.4 serve-static: 1.15.0 - std-env: 3.3.3 + std-env: 3.4.3 upath: 2.0.1 wrap-ansi: 7.0.0 transitivePeerDependencies: @@ -12103,7 +12894,7 @@ packages: dotenv: 16.3.1 lodash: 4.17.21 rc9: 2.1.1 - std-env: 3.3.3 + std-env: 3.4.3 ufo: 1.1.2 dev: false @@ -12400,7 +13191,7 @@ packages: node-fetch: 2.6.9 parse-git-config: 3.0.0 rc9: 2.1.1 - std-env: 3.3.3 + std-env: 3.4.3 transitivePeerDependencies: - encoding dev: false @@ -12428,7 +13219,7 @@ packages: ofetch: 1.0.1 parse-git-config: 3.0.0 rc9: 2.1.1 - std-env: 3.3.3 + std-env: 3.4.3 transitivePeerDependencies: - rollup - supports-color @@ -12457,7 +13248,7 @@ packages: ofetch: 1.0.1 parse-git-config: 3.0.0 rc9: 2.1.1 - std-env: 3.3.3 + std-env: 3.4.3 transitivePeerDependencies: - rollup - supports-color @@ -12631,7 +13422,7 @@ packages: postcss-import: 15.1.0(postcss@8.4.32) postcss-url: 10.1.3(postcss@8.4.32) rollup-plugin-visualizer: 5.9.0(rollup@3.28.1) - std-env: 3.3.3 + std-env: 3.4.3 strip-literal: 1.0.1 ufo: 1.1.2 unplugin: 1.3.1 @@ -12726,7 +13517,7 @@ packages: postcss-preset-env: 8.0.1(postcss@8.4.32) postcss-url: 10.1.3(postcss@8.4.32) semver: 7.5.4 - std-env: 3.3.3 + std-env: 3.4.3 style-resources-loader: 1.5.0(webpack@4.46.0) terser-webpack-plugin: 4.2.3(webpack@4.46.0) thread-loader: 3.0.4(webpack@4.46.0) @@ -12957,22 +13748,22 @@ packages: preact: 10.15.0 dev: true - /@preact/preset-vite@2.5.0(@babel/core@7.23.5)(preact@10.15.0)(vite@4.3.8): + /@preact/preset-vite@2.5.0(@babel/core@7.23.7)(preact@10.15.0)(vite@5.0.10): resolution: {integrity: sha512-BUhfB2xQ6ex0yPkrT1Z3LbfPzjpJecOZwQ/xJrXGFSZD84+ObyS//41RdEoQCMWsM0t7UHGaujUxUBub7WM1Jw==} peerDependencies: '@babel/core': 7.x vite: 2.x || 3.x || 4.x dependencies: - '@babel/core': 7.23.5 - '@babel/plugin-transform-react-jsx': 7.21.0(@babel/core@7.23.5) - '@babel/plugin-transform-react-jsx-development': 7.18.6(@babel/core@7.23.5) - '@prefresh/vite': 2.2.9(preact@10.15.0)(vite@4.3.8) + '@babel/core': 7.23.7 + '@babel/plugin-transform-react-jsx': 7.21.0(@babel/core@7.23.7) + '@babel/plugin-transform-react-jsx-development': 7.18.6(@babel/core@7.23.7) + '@prefresh/vite': 2.2.9(preact@10.15.0)(vite@5.0.10) '@rollup/pluginutils': 4.2.1 - babel-plugin-transform-hook-names: 1.0.2(@babel/core@7.23.5) - debug: 4.3.4(supports-color@5.5.0) + babel-plugin-transform-hook-names: 1.0.2(@babel/core@7.23.7) + debug: 4.3.4 kolorist: 1.7.0 resolve: 1.22.1 - vite: 4.3.8(@types/node@20.10.6) + vite: 5.0.10(@types/node@18.16.14) transitivePeerDependencies: - preact - supports-color @@ -12994,7 +13785,7 @@ packages: resolution: {integrity: sha512-Mb9abhJTOV4yCfkXrMrcgFiFT7MfNOw8sDa+XyZBdq/Ai2p4Zyxqsb3EgHLOEdHpMj6J9aiZ54W8H6FTam1u+A==} dev: true - /@prefresh/vite@2.2.9(preact@10.15.0)(vite@4.3.8): + /@prefresh/vite@2.2.9(preact@10.15.0)(vite@5.0.10): resolution: {integrity: sha512-1ERBF85Ja9/lkrfaltmo4Gca7R2ClQPSHHDDysFgfvPzHmLUeyB0x9WHwhwov/AA1DnyPhsfYT54z3yQd8XrgA==} peerDependencies: preact: ^10.4.0 @@ -13006,7 +13797,7 @@ packages: '@prefresh/utils': 1.1.3 '@rollup/pluginutils': 4.2.1 preact: 10.15.0 - vite: 4.3.8(@types/node@20.10.6) + vite: 5.0.10(@types/node@18.16.14) transitivePeerDependencies: - supports-color dev: true @@ -13826,6 +14617,97 @@ packages: picomatch: 2.3.1 rollup: 3.28.1 + /@rollup/rollup-android-arm-eabi@4.9.2: + resolution: {integrity: sha512-RKzxFxBHq9ysZ83fn8Iduv3A283K7zPPYuhL/z9CQuyFrjwpErJx0h4aeb/bnJ+q29GRLgJpY66ceQ/Wcsn3wA==} + cpu: [arm] + os: [android] + requiresBuild: true + optional: true + + /@rollup/rollup-android-arm64@4.9.2: + resolution: {integrity: sha512-yZ+MUbnwf3SHNWQKJyWh88ii2HbuHCFQnAYTeeO1Nb8SyEiWASEi5dQUygt3ClHWtA9My9RQAYkjvrsZ0WK8Xg==} + cpu: [arm64] + os: [android] + requiresBuild: true + optional: true + + /@rollup/rollup-darwin-arm64@4.9.2: + resolution: {integrity: sha512-vqJ/pAUh95FLc/G/3+xPqlSBgilPnauVf2EXOQCZzhZJCXDXt/5A8mH/OzU6iWhb3CNk5hPJrh8pqJUPldN5zw==} + cpu: [arm64] + os: [darwin] + requiresBuild: true + optional: true + + /@rollup/rollup-darwin-x64@4.9.2: + resolution: {integrity: sha512-otPHsN5LlvedOprd3SdfrRNhOahhVBwJpepVKUN58L0RnC29vOAej1vMEaVU6DadnpjivVsNTM5eNt0CcwTahw==} + cpu: [x64] + os: [darwin] + requiresBuild: true + optional: true + + /@rollup/rollup-linux-arm-gnueabihf@4.9.2: + resolution: {integrity: sha512-ewG5yJSp+zYKBYQLbd1CUA7b1lSfIdo9zJShNTyc2ZP1rcPrqyZcNlsHgs7v1zhgfdS+kW0p5frc0aVqhZCiYQ==} + cpu: [arm] + os: [linux] + requiresBuild: true + optional: true + + /@rollup/rollup-linux-arm64-gnu@4.9.2: + resolution: {integrity: sha512-pL6QtV26W52aCWTG1IuFV3FMPL1m4wbsRG+qijIvgFO/VBsiXJjDPE/uiMdHBAO6YcpV4KvpKtd0v3WFbaxBtg==} + cpu: [arm64] + os: [linux] + requiresBuild: true + optional: true + + /@rollup/rollup-linux-arm64-musl@4.9.2: + resolution: {integrity: sha512-On+cc5EpOaTwPSNetHXBuqylDW+765G/oqB9xGmWU3npEhCh8xu0xqHGUA+4xwZLqBbIZNcBlKSIYfkBm6ko7g==} + cpu: [arm64] + os: [linux] + requiresBuild: true + optional: true + + /@rollup/rollup-linux-riscv64-gnu@4.9.2: + resolution: {integrity: sha512-Wnx/IVMSZ31D/cO9HSsU46FjrPWHqtdF8+0eyZ1zIB5a6hXaZXghUKpRrC4D5DcRTZOjml2oBhXoqfGYyXKipw==} + cpu: [riscv64] + os: [linux] + requiresBuild: true + optional: true + + /@rollup/rollup-linux-x64-gnu@4.9.2: + resolution: {integrity: sha512-ym5x1cj4mUAMBummxxRkI4pG5Vht1QMsJexwGP8547TZ0sox9fCLDHw9KCH9c1FO5d9GopvkaJsBIOkTKxksdw==} + cpu: [x64] + os: [linux] + requiresBuild: true + optional: true + + /@rollup/rollup-linux-x64-musl@4.9.2: + resolution: {integrity: sha512-m0hYELHGXdYx64D6IDDg/1vOJEaiV8f1G/iO+tejvRCJNSwK4jJ15e38JQy5Q6dGkn1M/9KcyEOwqmlZ2kqaZg==} + cpu: [x64] + os: [linux] + requiresBuild: true + optional: true + + /@rollup/rollup-win32-arm64-msvc@4.9.2: + resolution: {integrity: sha512-x1CWburlbN5JjG+juenuNa4KdedBdXLjZMp56nHFSHTOsb/MI2DYiGzLtRGHNMyydPGffGId+VgjOMrcltOksA==} + cpu: [arm64] + os: [win32] + requiresBuild: true + optional: true + + /@rollup/rollup-win32-ia32-msvc@4.9.2: + resolution: {integrity: sha512-VVzCB5yXR1QlfsH1Xw1zdzQ4Pxuzv+CPr5qpElpKhVxlxD3CRdfubAG9mJROl6/dmj5gVYDDWk8sC+j9BI9/kQ==} + cpu: [ia32] + os: [win32] + requiresBuild: true + optional: true + + /@rollup/rollup-win32-x64-msvc@4.9.2: + resolution: {integrity: sha512-SYRedJi+mweatroB+6TTnJYLts0L0bosg531xnQWtklOI6dezEagx4Q0qDyvRdK+qgdA3YZpjjGuPFtxBmddBA==} + cpu: [x64] + os: [win32] + requiresBuild: true + optional: true + /@rushstack/eslint-patch@1.2.0: resolution: {integrity: sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg==} @@ -13854,6 +14736,10 @@ packages: resolution: {integrity: sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==} dev: true + /@sinclair/typebox@0.27.8: + resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==} + dev: true + /@sindresorhus/is@0.14.0: resolution: {integrity: sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==} engines: {node: '>=6'} @@ -15054,7 +15940,7 @@ packages: - supports-color dev: true - /@storybook/builder-vite@7.0.17(@preact/preset-vite@2.5.0)(typescript@4.9.5)(vite@4.3.8): + /@storybook/builder-vite@7.0.17(@preact/preset-vite@2.5.0)(typescript@4.9.5)(vite@5.0.10): resolution: {integrity: sha512-x2kbiFjzTHbhMDmCvkQb0V3PXv9V1vHhqMOBCdxAX/V1weGGdAMa8faL7+FOML5fD/tDbaUEVWbOyq3n3+nwEQ==} peerDependencies: '@preact/preset-vite': '*' @@ -15069,7 +15955,7 @@ packages: vite-plugin-glimmerx: optional: true dependencies: - '@preact/preset-vite': 2.5.0(@babel/core@7.23.5)(preact@10.15.0)(vite@4.3.8) + '@preact/preset-vite': 2.5.0(@babel/core@7.23.7)(preact@10.15.0)(vite@5.0.10) '@storybook/channel-postmessage': 7.0.17 '@storybook/channel-websocket': 7.0.17 '@storybook/client-logger': 7.0.17 @@ -15091,54 +15977,12 @@ packages: remark-slug: 6.1.0 rollup: 3.28.1 typescript: 4.9.5 - vite: 4.3.8(@types/node@20.10.6) - transitivePeerDependencies: - - supports-color - dev: true - - /@storybook/builder-vite@7.0.17(@preact/preset-vite@2.5.0)(typescript@5.3.3)(vite@4.3.8): - resolution: {integrity: sha512-x2kbiFjzTHbhMDmCvkQb0V3PXv9V1vHhqMOBCdxAX/V1weGGdAMa8faL7+FOML5fD/tDbaUEVWbOyq3n3+nwEQ==} - peerDependencies: - '@preact/preset-vite': '*' - typescript: '>= 4.3.x' - vite: ^3.0.0 || ^4.0.0 - vite-plugin-glimmerx: '*' - peerDependenciesMeta: - '@preact/preset-vite': - optional: true - typescript: - optional: true - vite-plugin-glimmerx: - optional: true - dependencies: - '@preact/preset-vite': 2.5.0(@babel/core@7.23.5)(preact@10.15.0)(vite@4.3.8) - '@storybook/channel-postmessage': 7.0.17 - '@storybook/channel-websocket': 7.0.17 - '@storybook/client-logger': 7.0.17 - '@storybook/core-common': 7.0.17 - '@storybook/csf-plugin': 7.0.17 - '@storybook/mdx2-csf': 1.0.0 - '@storybook/node-logger': 7.0.17 - '@storybook/preview': 7.0.17 - '@storybook/preview-api': 7.0.17 - '@storybook/types': 7.0.17 - browser-assert: 1.2.1 - es-module-lexer: 0.9.3 - express: 4.18.2 - fs-extra: 11.2.0 - glob: 8.1.0 - glob-promise: 6.0.2(glob@8.1.0) - magic-string: 0.27.0 - remark-external-links: 8.0.0 - remark-slug: 6.1.0 - rollup: 3.28.1 - typescript: 5.3.3 - vite: 4.3.8(@types/node@20.10.6) + vite: 5.0.10(@types/node@18.16.14) transitivePeerDependencies: - supports-color dev: true - /@storybook/builder-vite@7.0.17(typescript@5.0.4)(vite@4.3.8): + /@storybook/builder-vite@7.0.17(typescript@5.0.4)(vite@5.0.10): resolution: {integrity: sha512-x2kbiFjzTHbhMDmCvkQb0V3PXv9V1vHhqMOBCdxAX/V1weGGdAMa8faL7+FOML5fD/tDbaUEVWbOyq3n3+nwEQ==} peerDependencies: '@preact/preset-vite': '*' @@ -15174,7 +16018,7 @@ packages: remark-slug: 6.1.0 rollup: 3.28.1 typescript: 5.0.4 - vite: 4.3.8(@types/node@20.10.6) + vite: 5.0.10(@types/node@18.16.14) transitivePeerDependencies: - supports-color dev: true @@ -15500,7 +16344,7 @@ packages: hasBin: true dependencies: '@babel/core': 7.23.5 - '@babel/preset-env': 7.21.5(@babel/core@7.23.5) + '@babel/preset-env': 7.21.5(@babel/core@7.23.7) '@ndelangen/get-tarball': 3.0.7 '@storybook/codemod': 7.0.17 '@storybook/core-common': 7.0.17 @@ -16303,7 +17147,7 @@ packages: dependencies: '@babel/generator': 7.21.9 '@babel/parser': 7.21.9 - '@babel/traverse': 7.21.5(supports-color@5.5.0) + '@babel/traverse': 7.21.5 '@babel/types': 7.21.5 '@storybook/csf': 0.1.0 '@storybook/types': 7.0.17 @@ -16717,37 +17561,18 @@ packages: resolution: {integrity: sha512-t8UgKv+imnrP663T3SckYOCs7NdZ0+WlydM3PRabgvqL+LzyGWRvoT5kquK/sMjSsRo+R+dGMmwrI1zeOTtC8g==} dev: true - /@storybook/preact-vite@7.0.17(@babel/core@7.23.5)(preact@10.15.0)(typescript@4.9.5)(vite@4.3.8): - resolution: {integrity: sha512-Jwb5TIZYb4iukzxDMFJuhmxuVN4jbfL3lULG2yMr92w8axSJE07jBtxr1TgNtaBRGePGJzbVJneo257suW+zdQ==} - engines: {node: '>=16'} - peerDependencies: - preact: '>=10' - vite: ^3.0.0 || ^4.0.0 - dependencies: - '@preact/preset-vite': 2.5.0(@babel/core@7.23.5)(preact@10.15.0)(vite@4.3.8) - '@storybook/builder-vite': 7.0.17(@preact/preset-vite@2.5.0)(typescript@4.9.5)(vite@4.3.8) - '@storybook/preact': 7.0.17(preact@10.15.0) - preact: 10.15.0 - vite: 4.3.8(@types/node@20.10.6) - transitivePeerDependencies: - - '@babel/core' - - supports-color - - typescript - - vite-plugin-glimmerx - dev: true - - /@storybook/preact-vite@7.0.17(@babel/core@7.23.5)(preact@10.15.0)(typescript@5.3.3)(vite@4.3.8): + /@storybook/preact-vite@7.0.17(@babel/core@7.23.7)(preact@10.15.0)(typescript@4.9.5)(vite@5.0.10): resolution: {integrity: sha512-Jwb5TIZYb4iukzxDMFJuhmxuVN4jbfL3lULG2yMr92w8axSJE07jBtxr1TgNtaBRGePGJzbVJneo257suW+zdQ==} engines: {node: '>=16'} peerDependencies: preact: '>=10' vite: ^3.0.0 || ^4.0.0 dependencies: - '@preact/preset-vite': 2.5.0(@babel/core@7.23.5)(preact@10.15.0)(vite@4.3.8) - '@storybook/builder-vite': 7.0.17(@preact/preset-vite@2.5.0)(typescript@5.3.3)(vite@4.3.8) + '@preact/preset-vite': 2.5.0(@babel/core@7.23.7)(preact@10.15.0)(vite@5.0.10) + '@storybook/builder-vite': 7.0.17(@preact/preset-vite@2.5.0)(typescript@4.9.5)(vite@5.0.10) '@storybook/preact': 7.0.17(preact@10.15.0) preact: 10.15.0 - vite: 4.3.8(@types/node@20.10.6) + vite: 5.0.10(@types/node@18.16.14) transitivePeerDependencies: - '@babel/core' - supports-color @@ -17354,7 +18179,7 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/svelte-vite@7.0.17(react-dom@18.2.0)(react@18.2.0)(typescript@5.0.4)(vite@4.3.8): + /@storybook/svelte-vite@7.0.17(react-dom@18.2.0)(react@18.2.0)(typescript@5.0.4)(vite@5.0.10): resolution: {integrity: sha512-DeZpGgv0Ad37xkNDDFKzdqTsCNaQ/Z3j3WSw/6Xl0Tpzx8tAOTNvaKvbcvYsQai6E7Ghpdxy1ra21D1WLydN1g==} engines: {node: ^14.18 || >=16} peerDependencies: @@ -17362,17 +18187,17 @@ packages: react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^18 vite: ^3.0.0 || ^4.0.0 dependencies: - '@storybook/builder-vite': 7.0.17(typescript@5.0.4)(vite@4.3.8) + '@storybook/builder-vite': 7.0.17(typescript@5.0.4)(vite@5.0.10) '@storybook/node-logger': 7.0.17 '@storybook/svelte': 7.0.17(svelte@3.59.2) - '@sveltejs/vite-plugin-svelte': 2.5.3(svelte@3.59.2)(vite@4.3.8) + '@sveltejs/vite-plugin-svelte': 2.5.3(svelte@3.59.2)(vite@5.0.10) magic-string: 0.27.0 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) svelte: 3.59.2 sveltedoc-parser: 4.2.1 ts-dedent: 2.2.0 - vite: 4.3.8(@types/node@20.10.6) + vite: 5.0.10(@types/node@18.16.14) transitivePeerDependencies: - '@preact/preset-vite' - supports-color @@ -17380,7 +18205,7 @@ packages: - vite-plugin-glimmerx dev: true - /@storybook/svelte-vite@7.0.17(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)(vite@4.3.8): + /@storybook/svelte-vite@7.0.17(react-dom@18.2.0)(react@18.2.0)(vite@5.0.10): resolution: {integrity: sha512-DeZpGgv0Ad37xkNDDFKzdqTsCNaQ/Z3j3WSw/6Xl0Tpzx8tAOTNvaKvbcvYsQai6E7Ghpdxy1ra21D1WLydN1g==} engines: {node: ^14.18 || >=16} peerDependencies: @@ -17388,17 +18213,17 @@ packages: react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^18 vite: ^3.0.0 || ^4.0.0 dependencies: - '@storybook/builder-vite': 7.0.17(@preact/preset-vite@2.5.0)(typescript@5.3.3)(vite@4.3.8) + '@storybook/builder-vite': 7.0.17(@preact/preset-vite@2.5.0)(typescript@4.9.5)(vite@5.0.10) '@storybook/node-logger': 7.0.17 '@storybook/svelte': 7.0.17(svelte@3.59.2) - '@sveltejs/vite-plugin-svelte': 2.5.3(svelte@3.59.2)(vite@4.3.8) + '@sveltejs/vite-plugin-svelte': 2.5.3(svelte@3.59.2)(vite@5.0.10) magic-string: 0.27.0 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) svelte: 3.59.2 sveltedoc-parser: 4.2.1 ts-dedent: 2.2.0 - vite: 4.3.8(@types/node@20.10.6) + vite: 5.0.10(@types/node@18.16.14) transitivePeerDependencies: - '@preact/preset-vite' - supports-color @@ -17601,35 +18426,7 @@ packages: resolve-from: 5.0.0 dev: true - /@storybook/vue3-vite@7.0.17(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)(vite@4.3.8)(vue@3.3.4): - resolution: {integrity: sha512-iqTEzAQmXidk8AOC3JVUWN+ugkeKZxqxrZSl55uN4MWrUvwX73hz7BgL5HdvN33urrK1Od+s4CpqmtNv5yQwjg==} - engines: {node: ^14.18 || >=16} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^18 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^18 - vite: ^3.0.0 || ^4.0.0 - dependencies: - '@storybook/builder-vite': 7.0.17(@preact/preset-vite@2.5.0)(typescript@4.9.5)(vite@4.3.8) - '@storybook/core-server': 7.0.17 - '@storybook/vue3': 7.0.17(vue@3.3.4) - '@vitejs/plugin-vue': 4.6.2(vite@4.3.8)(vue@3.3.4) - magic-string: 0.27.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - vite: 4.3.8(@types/node@20.10.6) - vue-docgen-api: 4.67.0(vue@3.3.4) - transitivePeerDependencies: - - '@preact/preset-vite' - - bufferutil - - encoding - - supports-color - - typescript - - utf-8-validate - - vite-plugin-glimmerx - - vue - dev: true - - /@storybook/vue3-vite@7.0.17(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)(vite@4.3.8)(vue@3.3.4): + /@storybook/vue3-vite@7.0.17(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)(vite@5.0.10)(vue@3.3.4): resolution: {integrity: sha512-iqTEzAQmXidk8AOC3JVUWN+ugkeKZxqxrZSl55uN4MWrUvwX73hz7BgL5HdvN33urrK1Od+s4CpqmtNv5yQwjg==} engines: {node: ^14.18 || >=16} peerDependencies: @@ -17637,14 +18434,14 @@ packages: react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^18 vite: ^3.0.0 || ^4.0.0 dependencies: - '@storybook/builder-vite': 7.0.17(@preact/preset-vite@2.5.0)(typescript@5.3.3)(vite@4.3.8) + '@storybook/builder-vite': 7.0.17(@preact/preset-vite@2.5.0)(typescript@4.9.5)(vite@5.0.10) '@storybook/core-server': 7.0.17 '@storybook/vue3': 7.0.17(vue@3.3.4) - '@vitejs/plugin-vue': 4.6.2(vite@4.3.8)(vue@3.3.4) + '@vitejs/plugin-vue': 4.6.2(vite@5.0.10)(vue@3.3.4) magic-string: 0.27.0 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - vite: 4.3.8(@types/node@20.10.6) + vite: 5.0.10(@types/node@18.16.14) vue-docgen-api: 4.67.0(vue@3.3.4) transitivePeerDependencies: - '@preact/preset-vite' @@ -17688,11 +18485,11 @@ packages: peerDependencies: '@sveltejs/kit': ^1.0.0 dependencies: - '@sveltejs/kit': 1.18.0(svelte@3.59.1)(vite@4.3.8) + '@sveltejs/kit': 1.18.0(svelte@3.59.1)(vite@5.0.10) import-meta-resolve: 2.2.1 dev: true - /@sveltejs/kit@1.18.0(svelte@3.59.1)(vite@4.3.8): + /@sveltejs/kit@1.18.0(svelte@3.59.1)(vite@5.0.10): resolution: {integrity: sha512-QE5X9gCG34khrO6j01ZbRXtVx+yyUNe8PmVPeG0M+I8eyFejqYMEhD1JtjCrLzpd4KukvuO8bL35M1VWmPM7hQ==} engines: {node: ^16.14 || >=18} hasBin: true @@ -17701,7 +18498,7 @@ packages: svelte: ^3.54.0 vite: ^4.0.0 dependencies: - '@sveltejs/vite-plugin-svelte': 2.5.3(svelte@3.59.1)(vite@4.3.8) + '@sveltejs/vite-plugin-svelte': 2.5.3(svelte@3.59.1)(vite@5.0.10) '@types/cookie': 0.5.1 cookie: 0.5.0 devalue: 4.3.2 @@ -17715,12 +18512,12 @@ packages: svelte: 3.59.1 tiny-glob: 0.2.9 undici: 5.22.1 - vite: 4.3.8(@types/node@20.10.6) + vite: 5.0.10(@types/node@18.16.14) transitivePeerDependencies: - supports-color dev: true - /@sveltejs/kit@1.30.3(svelte@4.2.8)(vite@4.5.1): + /@sveltejs/kit@1.30.3(svelte@4.2.8)(vite@5.0.10): resolution: {integrity: sha512-0DzVXfU4h+tChFvoc8C61IqErCyskD4ydSIDjpKS2lYlEzIYrtYrY7juSqACFxqcvZAnOEXvSY+zZ8br0+ZMMg==} engines: {node: ^16.14 || >=18} hasBin: true @@ -17729,7 +18526,7 @@ packages: svelte: ^3.54.0 || ^4.0.0-next.0 || ^5.0.0-next.0 vite: ^4.0.0 dependencies: - '@sveltejs/vite-plugin-svelte': 2.5.3(svelte@4.2.8)(vite@4.5.1) + '@sveltejs/vite-plugin-svelte': 2.5.3(svelte@4.2.8)(vite@5.0.10) '@types/cookie': 0.5.1 cookie: 0.5.0 devalue: 4.3.2 @@ -17743,12 +18540,12 @@ packages: svelte: 4.2.8 tiny-glob: 0.2.9 undici: 5.26.4 - vite: 4.5.1(@types/node@20.10.6) + vite: 5.0.10(@types/node@18.16.14) transitivePeerDependencies: - supports-color dev: true - /@sveltejs/vite-plugin-svelte-inspector@1.0.1(@sveltejs/vite-plugin-svelte@2.3.0)(svelte@3.59.1)(vite@4.3.8): + /@sveltejs/vite-plugin-svelte-inspector@1.0.1(@sveltejs/vite-plugin-svelte@2.3.0)(svelte@3.59.1)(vite@5.0.10): resolution: {integrity: sha512-8ZXgDbAL1b2o7WHxnPsbkxTzZiZhMwOsCI/GFti3zFlh8unqJtUsgwRQV/XSULFcqkbZXz5v6MqMLSUpl3VKaA==} engines: {node: ^14.18.0 || >= 16} peerDependencies: @@ -17756,15 +18553,15 @@ packages: svelte: ^3.54.0 vite: ^4.0.0 dependencies: - '@sveltejs/vite-plugin-svelte': 2.3.0(svelte@3.59.1)(vite@4.3.8) - debug: 4.3.4(supports-color@5.5.0) + '@sveltejs/vite-plugin-svelte': 2.3.0(svelte@3.59.1)(vite@5.0.10) + debug: 4.3.4 svelte: 3.59.1 - vite: 4.3.8(@types/node@20.10.6) + vite: 5.0.10(@types/node@18.16.14) transitivePeerDependencies: - supports-color dev: true - /@sveltejs/vite-plugin-svelte-inspector@1.0.3(@sveltejs/vite-plugin-svelte@2.4.2)(svelte@4.0.5)(vite@4.4.9): + /@sveltejs/vite-plugin-svelte-inspector@1.0.3(@sveltejs/vite-plugin-svelte@2.4.2)(svelte@4.0.5)(vite@5.0.10): resolution: {integrity: sha512-Khdl5jmmPN6SUsVuqSXatKpQTMIifoQPDanaxC84m9JxIibWvSABJyHpyys0Z+1yYrxY5TTEQm+6elh0XCMaOA==} engines: {node: ^14.18.0 || >= 16} peerDependencies: @@ -17772,15 +18569,15 @@ packages: svelte: ^3.54.0 || ^4.0.0 vite: ^4.0.0 dependencies: - '@sveltejs/vite-plugin-svelte': 2.4.2(svelte@4.0.5)(vite@4.4.9) - debug: 4.3.4(supports-color@5.5.0) + '@sveltejs/vite-plugin-svelte': 2.4.2(svelte@4.0.5)(vite@5.0.10) + debug: 4.3.4 svelte: 4.0.5 - vite: 4.4.9(@types/node@20.10.6) + vite: 5.0.10(@types/node@18.16.14) transitivePeerDependencies: - supports-color dev: true - /@sveltejs/vite-plugin-svelte-inspector@1.0.4(@sveltejs/vite-plugin-svelte@2.5.3)(svelte@3.59.1)(vite@4.3.8): + /@sveltejs/vite-plugin-svelte-inspector@1.0.4(@sveltejs/vite-plugin-svelte@2.5.3)(svelte@3.59.1)(vite@5.0.10): resolution: {integrity: sha512-zjiuZ3yydBtwpF3bj0kQNV0YXe+iKE545QGZVTaylW3eAzFr+pJ/cwK8lZEaRp4JtaJXhD5DyWAV4AxLh6DgaQ==} engines: {node: ^14.18.0 || >= 16} peerDependencies: @@ -17788,15 +18585,15 @@ packages: svelte: ^3.54.0 || ^4.0.0 vite: ^4.0.0 dependencies: - '@sveltejs/vite-plugin-svelte': 2.5.3(svelte@3.59.1)(vite@4.3.8) - debug: 4.3.4(supports-color@5.5.0) + '@sveltejs/vite-plugin-svelte': 2.5.3(svelte@3.59.1)(vite@5.0.10) + debug: 4.3.4 svelte: 3.59.1 - vite: 4.3.8(@types/node@20.10.6) + vite: 5.0.10(@types/node@18.16.14) transitivePeerDependencies: - supports-color dev: true - /@sveltejs/vite-plugin-svelte-inspector@1.0.4(@sveltejs/vite-plugin-svelte@2.5.3)(svelte@3.59.2)(vite@4.3.8): + /@sveltejs/vite-plugin-svelte-inspector@1.0.4(@sveltejs/vite-plugin-svelte@2.5.3)(svelte@3.59.2)(vite@5.0.10): resolution: {integrity: sha512-zjiuZ3yydBtwpF3bj0kQNV0YXe+iKE545QGZVTaylW3eAzFr+pJ/cwK8lZEaRp4JtaJXhD5DyWAV4AxLh6DgaQ==} engines: {node: ^14.18.0 || >= 16} peerDependencies: @@ -17804,15 +18601,15 @@ packages: svelte: ^3.54.0 || ^4.0.0 vite: ^4.0.0 dependencies: - '@sveltejs/vite-plugin-svelte': 2.5.3(svelte@3.59.2)(vite@4.3.8) - debug: 4.3.4(supports-color@5.5.0) + '@sveltejs/vite-plugin-svelte': 2.5.3(svelte@3.59.2)(vite@5.0.10) + debug: 4.3.4 svelte: 3.59.2 - vite: 4.3.8(@types/node@20.10.6) + vite: 5.0.10(@types/node@18.16.14) transitivePeerDependencies: - supports-color dev: true - /@sveltejs/vite-plugin-svelte-inspector@1.0.4(@sveltejs/vite-plugin-svelte@2.5.3)(svelte@4.2.8)(vite@4.5.1): + /@sveltejs/vite-plugin-svelte-inspector@1.0.4(@sveltejs/vite-plugin-svelte@2.5.3)(svelte@4.2.8)(vite@5.0.10): resolution: {integrity: sha512-zjiuZ3yydBtwpF3bj0kQNV0YXe+iKE545QGZVTaylW3eAzFr+pJ/cwK8lZEaRp4JtaJXhD5DyWAV4AxLh6DgaQ==} engines: {node: ^14.18.0 || >= 16} peerDependencies: @@ -17820,128 +18617,128 @@ packages: svelte: ^3.54.0 || ^4.0.0 vite: ^4.0.0 dependencies: - '@sveltejs/vite-plugin-svelte': 2.5.3(svelte@4.2.8)(vite@4.5.1) - debug: 4.3.4(supports-color@5.5.0) + '@sveltejs/vite-plugin-svelte': 2.5.3(svelte@4.2.8)(vite@5.0.10) + debug: 4.3.4 svelte: 4.2.8 - vite: 4.5.1(@types/node@20.10.6) + vite: 5.0.10(@types/node@18.16.14) transitivePeerDependencies: - supports-color - /@sveltejs/vite-plugin-svelte@1.4.0(svelte@3.59.1)(vite@4.3.8): + /@sveltejs/vite-plugin-svelte@1.4.0(svelte@3.59.1)(vite@5.0.10): resolution: {integrity: sha512-6QupI/jemMfK+yI2pMtJcu5iO2gtgTfcBdGwMZZt+lgbFELhszbDl6Qjh000HgAV8+XUA+8EY8DusOFk8WhOIg==} engines: {node: ^14.18.0 || >= 16} peerDependencies: svelte: ^3.44.0 vite: ^3.0.0 dependencies: - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 deepmerge: 4.3.1 kleur: 4.1.5 magic-string: 0.26.7 svelte: 3.59.1 svelte-hmr: 0.15.1(svelte@3.59.1) - vite: 4.3.8(@types/node@20.10.6) - vitefu: 0.2.4(vite@4.3.8) + vite: 5.0.10(@types/node@18.16.14) + vitefu: 0.2.4(vite@5.0.10) transitivePeerDependencies: - supports-color dev: true - /@sveltejs/vite-plugin-svelte@2.3.0(svelte@3.59.1)(vite@4.3.8): + /@sveltejs/vite-plugin-svelte@2.3.0(svelte@3.59.1)(vite@5.0.10): resolution: {integrity: sha512-NbgDn5/auWfGYFip7DheDj49/JLE6VugdtdLJjnQASYxXqrQjl81xaZzQsoSAxWk+j2mOkmPFy56gV2i63FUnA==} engines: {node: ^14.18.0 || >= 16} peerDependencies: svelte: ^3.54.0 vite: ^4.0.0 dependencies: - '@sveltejs/vite-plugin-svelte-inspector': 1.0.1(@sveltejs/vite-plugin-svelte@2.3.0)(svelte@3.59.1)(vite@4.3.8) - debug: 4.3.4(supports-color@5.5.0) + '@sveltejs/vite-plugin-svelte-inspector': 1.0.1(@sveltejs/vite-plugin-svelte@2.3.0)(svelte@3.59.1)(vite@5.0.10) + debug: 4.3.4 deepmerge: 4.3.1 kleur: 4.1.5 magic-string: 0.30.0 svelte: 3.59.1 svelte-hmr: 0.15.1(svelte@3.59.1) - vite: 4.3.8(@types/node@20.10.6) - vitefu: 0.2.4(vite@4.3.8) + vite: 5.0.10(@types/node@18.16.14) + vitefu: 0.2.4(vite@5.0.10) transitivePeerDependencies: - supports-color dev: true - /@sveltejs/vite-plugin-svelte@2.4.2(svelte@4.0.5)(vite@4.4.9): + /@sveltejs/vite-plugin-svelte@2.4.2(svelte@4.0.5)(vite@5.0.10): resolution: {integrity: sha512-ePfcC48ftMKhkT0OFGdOyycYKnnkT6i/buzey+vHRTR/JpQvuPzzhf1PtKqCDQfJRgoPSN2vscXs6gLigx/zGw==} engines: {node: ^14.18.0 || >= 16} peerDependencies: svelte: ^3.54.0 || ^4.0.0 vite: ^4.0.0 dependencies: - '@sveltejs/vite-plugin-svelte-inspector': 1.0.3(@sveltejs/vite-plugin-svelte@2.4.2)(svelte@4.0.5)(vite@4.4.9) - debug: 4.3.4(supports-color@5.5.0) + '@sveltejs/vite-plugin-svelte-inspector': 1.0.3(@sveltejs/vite-plugin-svelte@2.4.2)(svelte@4.0.5)(vite@5.0.10) + debug: 4.3.4 deepmerge: 4.3.1 kleur: 4.1.5 magic-string: 0.30.2 svelte: 4.0.5 svelte-hmr: 0.15.3(svelte@4.0.5) - vite: 4.4.9(@types/node@20.10.6) - vitefu: 0.2.4(vite@4.4.9) + vite: 5.0.10(@types/node@18.16.14) + vitefu: 0.2.4(vite@5.0.10) transitivePeerDependencies: - supports-color dev: true - /@sveltejs/vite-plugin-svelte@2.5.3(svelte@3.59.1)(vite@4.3.8): + /@sveltejs/vite-plugin-svelte@2.5.3(svelte@3.59.1)(vite@5.0.10): resolution: {integrity: sha512-erhNtXxE5/6xGZz/M9eXsmI7Pxa6MS7jyTy06zN3Ck++ldrppOnOlJwHHTsMC7DHDQdgUp4NAc4cDNQ9eGdB/w==} engines: {node: ^14.18.0 || >= 16} peerDependencies: svelte: ^3.54.0 || ^4.0.0 || ^5.0.0-next.0 vite: ^4.0.0 dependencies: - '@sveltejs/vite-plugin-svelte-inspector': 1.0.4(@sveltejs/vite-plugin-svelte@2.5.3)(svelte@3.59.1)(vite@4.3.8) - debug: 4.3.4(supports-color@5.5.0) + '@sveltejs/vite-plugin-svelte-inspector': 1.0.4(@sveltejs/vite-plugin-svelte@2.5.3)(svelte@3.59.1)(vite@5.0.10) + debug: 4.3.4 deepmerge: 4.3.1 kleur: 4.1.5 magic-string: 0.30.5 svelte: 3.59.1 svelte-hmr: 0.15.3(svelte@3.59.1) - vite: 4.3.8(@types/node@20.10.6) - vitefu: 0.2.4(vite@4.3.8) + vite: 5.0.10(@types/node@18.16.14) + vitefu: 0.2.4(vite@5.0.10) transitivePeerDependencies: - supports-color dev: true - /@sveltejs/vite-plugin-svelte@2.5.3(svelte@3.59.2)(vite@4.3.8): + /@sveltejs/vite-plugin-svelte@2.5.3(svelte@3.59.2)(vite@5.0.10): resolution: {integrity: sha512-erhNtXxE5/6xGZz/M9eXsmI7Pxa6MS7jyTy06zN3Ck++ldrppOnOlJwHHTsMC7DHDQdgUp4NAc4cDNQ9eGdB/w==} engines: {node: ^14.18.0 || >= 16} peerDependencies: svelte: ^3.54.0 || ^4.0.0 || ^5.0.0-next.0 vite: ^4.0.0 dependencies: - '@sveltejs/vite-plugin-svelte-inspector': 1.0.4(@sveltejs/vite-plugin-svelte@2.5.3)(svelte@3.59.2)(vite@4.3.8) - debug: 4.3.4(supports-color@5.5.0) + '@sveltejs/vite-plugin-svelte-inspector': 1.0.4(@sveltejs/vite-plugin-svelte@2.5.3)(svelte@3.59.2)(vite@5.0.10) + debug: 4.3.4 deepmerge: 4.3.1 kleur: 4.1.5 magic-string: 0.30.5 svelte: 3.59.2 svelte-hmr: 0.15.3(svelte@3.59.2) - vite: 4.3.8(@types/node@20.10.6) - vitefu: 0.2.4(vite@4.3.8) + vite: 5.0.10(@types/node@18.16.14) + vitefu: 0.2.4(vite@5.0.10) transitivePeerDependencies: - supports-color dev: true - /@sveltejs/vite-plugin-svelte@2.5.3(svelte@4.2.8)(vite@4.5.1): + /@sveltejs/vite-plugin-svelte@2.5.3(svelte@4.2.8)(vite@5.0.10): resolution: {integrity: sha512-erhNtXxE5/6xGZz/M9eXsmI7Pxa6MS7jyTy06zN3Ck++ldrppOnOlJwHHTsMC7DHDQdgUp4NAc4cDNQ9eGdB/w==} engines: {node: ^14.18.0 || >= 16} peerDependencies: svelte: ^3.54.0 || ^4.0.0 || ^5.0.0-next.0 vite: ^4.0.0 dependencies: - '@sveltejs/vite-plugin-svelte-inspector': 1.0.4(@sveltejs/vite-plugin-svelte@2.5.3)(svelte@4.2.8)(vite@4.5.1) - debug: 4.3.4(supports-color@5.5.0) + '@sveltejs/vite-plugin-svelte-inspector': 1.0.4(@sveltejs/vite-plugin-svelte@2.5.3)(svelte@4.2.8)(vite@5.0.10) + debug: 4.3.4 deepmerge: 4.3.1 kleur: 4.1.5 magic-string: 0.30.5 svelte: 4.2.8 svelte-hmr: 0.15.3(svelte@4.2.8) - vite: 4.5.1(@types/node@20.10.6) - vitefu: 0.2.4(vite@4.5.1) + vite: 5.0.10(@types/node@18.16.14) + vitefu: 0.2.4(vite@5.0.10) transitivePeerDependencies: - supports-color @@ -18401,16 +19198,6 @@ packages: dependencies: '@types/node': 18.16.14 - /@types/chai-subset@1.3.3: - resolution: {integrity: sha512-frBecisrNGz+F4T6bcc+NLeolfiojh5FxW2klu669+8BARtyQv2C/GkNW6FUodVe4BroGMP/wER/YDGc7rEllw==} - dependencies: - '@types/chai': 4.3.5 - dev: true - - /@types/chai@4.3.5: - resolution: {integrity: sha512-mEo1sAde+UCE6b2hxn332f1g1E8WfYRu6p5SvTKr2ZKC1f7gFJXk4h5PyGP9Dt6gCaG8y8XhwnXWC6Iy2cmBng==} - dev: true - /@types/clean-css@4.2.6: resolution: {integrity: sha512-Ze1tf+LnGPmG6hBFMi0B4TEB0mhF7EiMM5oyjLDNPE9hxrPU0W+5+bHvO+eFPA+bt0iC1zkQMoU/iGdRVjcRbw==} dependencies: @@ -18687,10 +19474,6 @@ packages: dependencies: undici-types: 5.26.5 - /@types/node@20.7.1: - resolution: {integrity: sha512-LT+OIXpp2kj4E2S/p91BMe+VgGX2+lfO+XTpfXhh+bCk2LkQtHZSub8ewFBMGP5ClysPjTDFa4sMI8Q3n4T0wg==} - dev: true - /@types/normalize-package-data@2.4.1: resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==} dev: true @@ -19644,7 +20427,7 @@ packages: resolution: {integrity: sha512-17kVyLq3ePTKOkveHxXuIJZtGYs+cSoev7BlP+Lf4916qfDhk/HBjvlYDe8egrea7LNPHKwSZJK/bzZC+Q6AwQ==} dev: true - /@vanilla-extract/vite-plugin@3.8.2(ts-node@10.9.2)(vite@4.3.8): + /@vanilla-extract/vite-plugin@3.8.2(vite@5.0.10): resolution: {integrity: sha512-i0vpuBUoh10Obl0hJr0dWQa6M3Udu/irm4tnsg1lUze8DXTbv3ctHmVu/wrRZHKw1EzzW/v+nLoJJRvisApspQ==} peerDependencies: vite: ^2.2.3 || ^3.0.0 || ^4.0.3 @@ -19652,8 +20435,8 @@ packages: '@vanilla-extract/integration': 6.1.1 outdent: 0.8.0 postcss: 8.4.31 - postcss-load-config: 3.1.4(postcss@8.4.31)(ts-node@10.9.2) - vite: 4.3.8(@types/node@20.10.6) + postcss-load-config: 3.1.4(postcss@8.4.31) + vite: 5.0.10(@types/node@18.16.14) transitivePeerDependencies: - supports-color - ts-node @@ -19680,18 +20463,18 @@ packages: - supports-color dev: true - /@vitejs/plugin-react-swc@3.3.1(vite@4.3.8): + /@vitejs/plugin-react-swc@3.3.1(vite@5.0.10): resolution: {integrity: sha512-ZoYjGxMniXP7X+5ry/W1tpY7w0OeLUEsBF5RHFPmAhpgwwNWie8OF4056MRXRi9QgvYYoZPDzdOXGK3wlCoTfQ==} peerDependencies: vite: ^4 dependencies: '@swc/core': 1.3.59 - vite: 4.3.8(@types/node@20.10.6) + vite: 5.0.10(@types/node@18.16.14) transitivePeerDependencies: - '@swc/helpers' dev: true - /@vitejs/plugin-react@3.1.0(vite@4.3.8): + /@vitejs/plugin-react@3.1.0(vite@5.0.10): resolution: {integrity: sha512-AfgcRL8ZBhAlc3BFdigClmTUMISmmzHn7sB2h9U1odvc5U/MjWXsAaz18b/WoppUTDBzxOJwo2VdClfUcItu9g==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: @@ -19702,12 +20485,12 @@ packages: '@babel/plugin-transform-react-jsx-source': 7.19.6(@babel/core@7.21.8) magic-string: 0.27.0 react-refresh: 0.14.0 - vite: 4.3.8(@types/node@20.10.6) + vite: 5.0.10(@types/node@18.16.14) transitivePeerDependencies: - supports-color dev: true - /@vitejs/plugin-react@4.0.0(vite@4.3.9): + /@vitejs/plugin-react@4.0.0(vite@5.0.10): resolution: {integrity: sha512-HX0XzMjL3hhOYm+0s95pb0Z7F8O81G7joUHgfDd/9J/ZZf5k4xX6QAMFkKsHFxaHlf6X7GD7+XuaZ66ULiJuhQ==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: @@ -19717,12 +20500,12 @@ packages: '@babel/plugin-transform-react-jsx-self': 7.21.0(@babel/core@7.21.8) '@babel/plugin-transform-react-jsx-source': 7.19.6(@babel/core@7.21.8) react-refresh: 0.14.0 - vite: 4.3.9(@types/node@20.10.6) + vite: 5.0.10(@types/node@18.16.14) transitivePeerDependencies: - supports-color dev: true - /@vitejs/plugin-react@4.2.1(vite@4.5.1): + /@vitejs/plugin-react@4.2.1(vite@5.0.10): resolution: {integrity: sha512-oojO9IDc4nCUUi8qIR11KoQm0XFFLIwsRBwHRR4d/88IWghn1y6ckz/bJ8GHDCsYEJee8mDzqtJxh15/cisJNQ==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: @@ -19733,7 +20516,7 @@ packages: '@babel/plugin-transform-react-jsx-source': 7.23.3(@babel/core@7.23.5) '@types/babel__core': 7.20.5 react-refresh: 0.14.0 - vite: 4.5.1(@types/node@20.10.6) + vite: 5.0.10(@types/node@18.16.14) transitivePeerDependencies: - supports-color @@ -19744,9 +20527,9 @@ packages: vite: ^4.0.0 || ^5.0.0 vue: ^3.0.0 dependencies: - '@babel/core': 7.23.3 - '@babel/plugin-transform-typescript': 7.23.3(@babel/core@7.23.3) - '@vue/babel-plugin-jsx': 1.1.5(@babel/core@7.23.3) + '@babel/core': 7.23.5 + '@babel/plugin-transform-typescript': 7.23.3(@babel/core@7.23.5) + '@vue/babel-plugin-jsx': 1.1.5(@babel/core@7.23.5) vite: 4.0.4(@types/node@20.10.6) vue: 3.3.13(typescript@5.3.3) transitivePeerDependencies: @@ -19760,16 +20543,16 @@ packages: vite: ^4.0.0 || ^5.0.0 vue: ^3.0.0 dependencies: - '@babel/core': 7.23.3 - '@babel/plugin-transform-typescript': 7.23.3(@babel/core@7.23.3) - '@vue/babel-plugin-jsx': 1.1.5(@babel/core@7.23.3) + '@babel/core': 7.23.5 + '@babel/plugin-transform-typescript': 7.23.3(@babel/core@7.23.5) + '@vue/babel-plugin-jsx': 1.1.5(@babel/core@7.23.5) vite: 4.3.9(@types/node@20.10.6) vue: 3.3.13(typescript@5.3.3) transitivePeerDependencies: - supports-color dev: true - /@vitejs/plugin-vue-jsx@3.1.0(vite@4.5.1)(vue@3.3.13): + /@vitejs/plugin-vue-jsx@3.1.0(vite@5.0.10)(vue@3.3.13): resolution: {integrity: sha512-w9M6F3LSEU5kszVb9An2/MmXNxocAnUb3WhRr8bHlimhDrXNt6n6D2nJQR3UXpGlZHh/EsgouOHCsM8V3Ln+WA==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: @@ -19779,13 +20562,13 @@ packages: '@babel/core': 7.23.3 '@babel/plugin-transform-typescript': 7.23.3(@babel/core@7.23.3) '@vue/babel-plugin-jsx': 1.1.5(@babel/core@7.23.3) - vite: 4.5.1(@types/node@20.10.6) + vite: 5.0.10(@types/node@18.16.14) vue: 3.3.13(typescript@5.3.3) transitivePeerDependencies: - supports-color dev: false - /@vitejs/plugin-vue2-jsx@1.1.1(rollup@3.28.1)(vite@4.5.1)(vue@2.7.16): + /@vitejs/plugin-vue2-jsx@1.1.1(rollup@3.28.1)(vite@5.0.10)(vue@2.7.16): resolution: {integrity: sha512-r6BjWP2aVg4/uXdjf+wMwLuk0LQEUbPTC9UcRpWMhWsfVl9n/8RhiG6pQPO9g+oab/g3fHoZ2bmJJbKuraqCsw==} engines: {node: '>=14.18.0'} peerDependencies: @@ -19797,32 +20580,32 @@ packages: '@babel/plugin-transform-typescript': 7.23.3(@babel/core@7.23.3) '@rollup/pluginutils': 5.0.3(rollup@3.28.1) '@vue/babel-preset-jsx': 1.4.0(@babel/core@7.23.3)(vue@2.7.16) - vite: 4.5.1(@types/node@20.10.6) + vite: 5.0.10(@types/node@18.16.14) vue: 2.7.16 transitivePeerDependencies: - rollup - supports-color dev: false - /@vitejs/plugin-vue2@2.3.1(vite@4.5.1)(vue@2.7.16): + /@vitejs/plugin-vue2@2.3.1(vite@5.0.10)(vue@2.7.16): resolution: {integrity: sha512-/ksaaz2SRLN11JQhLdEUhDzOn909WEk99q9t9w+N12GjQCljzv7GyvAbD/p20aBUjHkvpGOoQ+FCOkG+mjDF4A==} engines: {node: ^14.18.0 || >= 16.0.0} peerDependencies: vite: ^3.0.0 || ^4.0.0 || ^5.0.0 vue: ^2.7.0-0 dependencies: - vite: 4.5.1(@types/node@20.10.6) + vite: 5.0.10(@types/node@18.16.14) vue: 2.7.16 dev: false - /@vitejs/plugin-vue@4.2.3(vite@4.3.8)(vue@3.3.4): + /@vitejs/plugin-vue@4.2.3(vite@5.0.10)(vue@3.3.4): resolution: {integrity: sha512-R6JDUfiZbJA9cMiguQ7jxALsgiprjBeHL5ikpXfJCH62pPHtI+JdJ5xWj6Ev73yXSlYl86+blXn1kZHQ7uElxw==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: vite: ^4.0.0 vue: ^3.2.25 dependencies: - vite: 4.3.8(@types/node@20.10.6) + vite: 5.0.10(@types/node@18.16.14) vue: 3.3.4 dev: true @@ -19837,75 +20620,75 @@ packages: vue: 3.3.13(typescript@5.3.3) dev: true - /@vitejs/plugin-vue@4.6.2(vite@4.3.8)(vue@3.3.4): + /@vitejs/plugin-vue@4.6.2(vite@4.3.9)(vue@3.3.13): resolution: {integrity: sha512-kqf7SGFoG+80aZG6Pf+gsZIVvGSCKE98JbiWqcCV9cThtg91Jav0yvYFC9Zb+jKetNGF6ZKeoaxgZfND21fWKw==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: vite: ^4.0.0 || ^5.0.0 vue: ^3.2.25 dependencies: - vite: 4.3.8(@types/node@20.10.6) - vue: 3.3.4 + vite: 4.3.9(@types/node@20.10.6) + vue: 3.3.13(typescript@5.3.3) dev: true - /@vitejs/plugin-vue@4.6.2(vite@4.3.9)(vue@3.3.13): + /@vitejs/plugin-vue@4.6.2(vite@5.0.10)(vue@3.3.13): resolution: {integrity: sha512-kqf7SGFoG+80aZG6Pf+gsZIVvGSCKE98JbiWqcCV9cThtg91Jav0yvYFC9Zb+jKetNGF6ZKeoaxgZfND21fWKw==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: vite: ^4.0.0 || ^5.0.0 vue: ^3.2.25 dependencies: - vite: 4.3.9(@types/node@20.10.6) + vite: 5.0.10(@types/node@18.16.14) vue: 3.3.13(typescript@5.3.3) - dev: true + dev: false - /@vitejs/plugin-vue@4.6.2(vite@4.5.1)(vue@3.3.13): + /@vitejs/plugin-vue@4.6.2(vite@5.0.10)(vue@3.3.4): resolution: {integrity: sha512-kqf7SGFoG+80aZG6Pf+gsZIVvGSCKE98JbiWqcCV9cThtg91Jav0yvYFC9Zb+jKetNGF6ZKeoaxgZfND21fWKw==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: vite: ^4.0.0 || ^5.0.0 vue: ^3.2.25 dependencies: - vite: 4.5.1(@types/node@20.10.6) - vue: 3.3.13(typescript@5.3.3) - dev: false + vite: 5.0.10(@types/node@18.16.14) + vue: 3.3.4 + dev: true - /@vitest/expect@0.34.6: - resolution: {integrity: sha512-QUzKpUQRc1qC7qdGo7rMK3AkETI7w18gTCUrsNnyjjJKYiuUB9+TQK3QnR1unhCnWRC0AbKv2omLGQDF/mIjOw==} + /@vitest/expect@1.1.1: + resolution: {integrity: sha512-Qpw01C2Hyb3085jBkOJLQ7HRX0Ncnh2qV4p+xWmmhcIUlMykUF69zsnZ1vPmAjZpomw9+5tWEGOQ0GTfR8U+kA==} dependencies: - '@vitest/spy': 0.34.6 - '@vitest/utils': 0.34.6 + '@vitest/spy': 1.1.1 + '@vitest/utils': 1.1.1 chai: 4.3.10 dev: true - /@vitest/runner@0.34.6: - resolution: {integrity: sha512-1CUQgtJSLF47NnhN+F9X2ycxUP0kLHQ/JWvNHbeBfwW8CzEGgeskzNnHDyv1ieKTltuR6sdIHV+nmR6kPxQqzQ==} + /@vitest/runner@1.1.1: + resolution: {integrity: sha512-8HokyJo1SnSi3uPFKfWm/Oq1qDwLC4QDcVsqpXIXwsRPAg3gIDh8EbZ1ri8cmQkBxdOu62aOF9B4xcqJhvt4xQ==} dependencies: - '@vitest/utils': 0.34.6 - p-limit: 4.0.0 + '@vitest/utils': 1.1.1 + p-limit: 5.0.0 pathe: 1.1.1 dev: true - /@vitest/snapshot@0.34.6: - resolution: {integrity: sha512-B3OZqYn6k4VaN011D+ve+AA4whM4QkcwcrwaKwAbyyvS/NB1hCWjFIBQxAQQSQir9/RtyAAGuq+4RJmbn2dH4w==} + /@vitest/snapshot@1.1.1: + resolution: {integrity: sha512-WnMHjv4VdHLbFGgCdVVvyRkRPnOKN75JJg+LLTdr6ah7YnL75W+7CTIMdzPEPzaDxA8r5yvSVlc1d8lH3yE28w==} dependencies: magic-string: 0.30.5 pathe: 1.1.1 - pretty-format: 29.5.0 + pretty-format: 29.7.0 dev: true - /@vitest/spy@0.34.6: - resolution: {integrity: sha512-xaCvneSaeBw/cz8ySmF7ZwGvL0lBjfvqc1LpQ/vcdHEvpLn3Ff1vAvjw+CoGn0802l++5L/pxb7whwcWAw+DUQ==} + /@vitest/spy@1.1.1: + resolution: {integrity: sha512-hDU2KkOTfFp4WFFPWwHFauddwcKuGQ7gF6Un/ZZkCogoAiTMN7/7YKvUDbywPZZ754iCQGjdUmXN3t4k0jm1IQ==} dependencies: - tinyspy: 2.1.1 + tinyspy: 2.2.0 dev: true - /@vitest/utils@0.34.6: - resolution: {integrity: sha512-IG5aDD8S6zlvloDsnzHw0Ut5xczlF+kv2BOTo+iXfPr54Yhi5qbVOgGB1hZaVq4iJ4C/MZ2J0y15IlsV/ZcI0A==} + /@vitest/utils@1.1.1: + resolution: {integrity: sha512-E9LedH093vST/JuBSyHLFMpxJKW3dLhe/flUSPFedoyj4wKiFX7Jm8gYLtOIiin59dgrssfmFv0BJ1u8P/LC/A==} dependencies: - diff-sequences: 29.4.3 - loupe: 2.3.6 - pretty-format: 29.5.0 + diff-sequences: 29.6.3 + loupe: 2.3.7 + pretty-format: 29.7.0 dev: true /@volar/language-core@1.4.1: @@ -20060,6 +20843,26 @@ packages: svg-tags: 1.0.0 transitivePeerDependencies: - supports-color + dev: false + + /@vue/babel-plugin-jsx@1.1.5(@babel/core@7.23.5): + resolution: {integrity: sha512-nKs1/Bg9U1n3qSWnsHhCVQtAzI6aQXqua8j/bZrau8ywT1ilXQbK4FwEJGmU8fV7tcpuFvWmmN7TMmV1OBma1g==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.5 + '@babel/helper-module-imports': 7.22.15 + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.5) + '@babel/template': 7.22.15 + '@babel/traverse': 7.23.3 + '@babel/types': 7.23.3 + '@vue/babel-helper-vue-transform-on': 1.1.5 + camelcase: 6.3.0 + html-tags: 3.3.1 + svg-tags: 1.0.0 + transitivePeerDependencies: + - supports-color + dev: true /@vue/babel-plugin-transform-vue-jsx@1.4.0(@babel/core@7.22.20): resolution: {integrity: sha512-Fmastxw4MMx0vlgLS4XBX0XiBbUFzoMGeVXuMV08wyOfXdikAFqBTuYPR0tlk+XskL19EzHc39SgjrPGY23JnA==} @@ -21648,6 +22451,11 @@ packages: resolution: {integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==} engines: {node: '>=0.4.0'} + /acorn-walk@8.3.1: + resolution: {integrity: sha512-TgUZgYvqZprrl7YldZNoa9OciCAyZR+Ejm9eXzKCmjsF5IKp/wgQ7Z/ZpjpGTIUPwrHQIcYeI8qDh4PsEwxMbw==} + engines: {node: '>=0.4.0'} + dev: true + /acorn@6.4.2: resolution: {integrity: sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==} engines: {node: '>=0.4.0'} @@ -21663,6 +22471,12 @@ packages: engines: {node: '>=0.4.0'} hasBin: true + /acorn@8.11.3: + resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==} + engines: {node: '>=0.4.0'} + hasBin: true + dev: true + /address@1.2.2: resolution: {integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==} engines: {node: '>= 10.0.0'} @@ -21683,7 +22497,7 @@ packages: resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} engines: {node: '>= 6.0.0'} dependencies: - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 transitivePeerDependencies: - supports-color @@ -22632,7 +23446,19 @@ packages: dependencies: '@babel/compat-data': 7.22.9 '@babel/core': 7.23.5 - '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.23.5) + '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.23.7) + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + /babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.23.7): + resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.22.9 + '@babel/core': 7.23.7 + '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.23.7) semver: 6.3.1 transitivePeerDependencies: - supports-color @@ -22689,7 +23515,18 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.23.5 - '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.23.5) + '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.23.7) + core-js-compat: 3.29.0 + transitivePeerDependencies: + - supports-color + + /babel-plugin-polyfill-corejs3@0.6.0(@babel/core@7.23.7): + resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.23.7) core-js-compat: 3.29.0 transitivePeerDependencies: - supports-color @@ -22731,7 +23568,17 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.23.5 - '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.23.5) + '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.23.7) + transitivePeerDependencies: + - supports-color + + /babel-plugin-polyfill-regenerator@0.4.1(@babel/core@7.23.7): + resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.23.7) transitivePeerDependencies: - supports-color @@ -22770,12 +23617,12 @@ packages: resolution: {integrity: sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==} dev: false - /babel-plugin-transform-hook-names@1.0.2(@babel/core@7.23.5): + /babel-plugin-transform-hook-names@1.0.2(@babel/core@7.23.7): resolution: {integrity: sha512-5gafyjyyBTTdX/tQQ0hRgu4AhNHG/hqWi0ZZmg2xvs2FgRkJXzDNKBZCyoYqgFkovfDrgM8OoKg8karoUvWeCw==} peerDependencies: '@babel/core': ^7.12.10 dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.23.7 dev: true /babel-plugin-transform-react-remove-prop-types@0.4.24: @@ -23312,6 +24159,16 @@ packages: node-releases: 2.0.13 update-browserslist-db: 1.0.11(browserslist@4.21.5) + /browserslist@4.22.2: + resolution: {integrity: sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + dependencies: + caniuse-lite: 1.0.30001572 + electron-to-chromium: 1.4.618 + node-releases: 2.0.14 + update-browserslist-db: 1.0.13(browserslist@4.22.2) + /bser@2.1.1: resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==} dependencies: @@ -23645,6 +24502,9 @@ packages: /caniuse-lite@1.0.30001518: resolution: {integrity: sha512-rup09/e3I0BKjncL+FesTayKtPrdwKhUufQFd3riFw1hHg8JmIFoInYfB102cFcY/pPgGmdyl/iy+jgiDi2vdA==} + /caniuse-lite@1.0.30001572: + resolution: {integrity: sha512-1Pbh5FLmn5y4+QhNyJE9j3/7dK44dGB83/ZMjv/qJk86TvDbjk0LosiZo0i0WB0Vx607qMX9jYrn1VLHCkN4rw==} + /capture-exit@2.0.0: resolution: {integrity: sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==} engines: {node: 6.* || 8.* || >= 10.*} @@ -23672,7 +24532,7 @@ packages: check-error: 1.0.3 deep-eql: 4.1.3 get-func-name: 2.0.2 - loupe: 2.3.6 + loupe: 2.3.7 pathval: 1.1.1 type-detect: 4.0.8 dev: true @@ -25767,6 +26627,17 @@ packages: dependencies: ms: 2.1.3 + /debug@4.3.4: + resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + dependencies: + ms: 2.1.2 + /debug@4.3.4(supports-color@5.5.0): resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} engines: {node: '>=6.0'} @@ -26130,7 +27001,7 @@ packages: hasBin: true dependencies: address: 1.2.2 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 transitivePeerDependencies: - supports-color dev: true @@ -26157,8 +27028,8 @@ packages: resolution: {integrity: sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - /diff-sequences@29.4.3: - resolution: {integrity: sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA==} + /diff-sequences@29.6.3: + resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dev: true @@ -26421,6 +27292,9 @@ packages: /electron-to-chromium@1.4.478: resolution: {integrity: sha512-qjTA8djMXd+ruoODDFGnRCRBpID+AAfYWCyGtYTNhsuwxI19s8q19gbjKTwRS5z/LyVf5wICaIiPQGLekmbJbA==} + /electron-to-chromium@1.4.618: + resolution: {integrity: sha512-mTM2HieHLxs1RbD/R/ZoQLMsGI8lWIkP17G7cx32mJRBJt9wlNPkXwE3sYg/OnNb5GBkus98lXatSthoL8Y5Ag==} + /elliptic@6.5.4: resolution: {integrity: sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==} dependencies: @@ -26661,14 +27535,6 @@ packages: dev: true optional: true - /esbuild-android-64@0.15.18: - resolution: {integrity: sha512-wnpt3OXRhcjfIDSZu9bnzT4/TNTDsOUvip0foZOUBG7QbSt//w3QV4FInVJxNhKc/ErhUxc5z4QjHtMi7/TbgA==} - engines: {node: '>=12'} - cpu: [x64] - os: [android] - requiresBuild: true - optional: true - /esbuild-android-arm64@0.14.54: resolution: {integrity: sha512-F9E+/QDi9sSkLaClO8SOV6etqPd+5DgJje1F9lOWoNncDdOBL2YF59IhsWATSt0TLZbYCf3pNlTHvVV5VfHdvg==} engines: {node: '>=12'} @@ -26678,14 +27544,6 @@ packages: dev: true optional: true - /esbuild-android-arm64@0.15.18: - resolution: {integrity: sha512-G4xu89B8FCzav9XU8EjsXacCKSG2FT7wW9J6hOc18soEHJdtWu03L3TQDGf0geNxfLTtxENKBzMSq9LlbjS8OQ==} - engines: {node: '>=12'} - cpu: [arm64] - os: [android] - requiresBuild: true - optional: true - /esbuild-darwin-64@0.14.54: resolution: {integrity: sha512-jtdKWV3nBviOd5v4hOpkVmpxsBy90CGzebpbO9beiqUYVMBtSc0AL9zGftFuBon7PNDcdvNCEuQqw2x0wP9yug==} engines: {node: '>=12'} @@ -26695,14 +27553,6 @@ packages: dev: true optional: true - /esbuild-darwin-64@0.15.18: - resolution: {integrity: sha512-2WAvs95uPnVJPuYKP0Eqx+Dl/jaYseZEUUT1sjg97TJa4oBtbAKnPnl3b5M9l51/nbx7+QAEtuummJZW0sBEmg==} - engines: {node: '>=12'} - cpu: [x64] - os: [darwin] - requiresBuild: true - optional: true - /esbuild-darwin-arm64@0.14.54: resolution: {integrity: sha512-OPafJHD2oUPyvJMrsCvDGkRrVCar5aVyHfWGQzY1dWnzErjrDuSETxwA2HSsyg2jORLY8yBfzc1MIpUkXlctmw==} engines: {node: '>=12'} @@ -26712,14 +27562,6 @@ packages: dev: true optional: true - /esbuild-darwin-arm64@0.15.18: - resolution: {integrity: sha512-tKPSxcTJ5OmNb1btVikATJ8NftlyNlc8BVNtyT/UAr62JFOhwHlnoPrhYWz09akBLHI9nElFVfWSTSRsrZiDUA==} - engines: {node: '>=12'} - cpu: [arm64] - os: [darwin] - requiresBuild: true - optional: true - /esbuild-freebsd-64@0.14.54: resolution: {integrity: sha512-OKwd4gmwHqOTp4mOGZKe/XUlbDJ4Q9TjX0hMPIDBUWWu/kwhBAudJdBoxnjNf9ocIB6GN6CPowYpR/hRCbSYAg==} engines: {node: '>=12'} @@ -26729,14 +27571,6 @@ packages: dev: true optional: true - /esbuild-freebsd-64@0.15.18: - resolution: {integrity: sha512-TT3uBUxkteAjR1QbsmvSsjpKjOX6UkCstr8nMr+q7zi3NuZ1oIpa8U41Y8I8dJH2fJgdC3Dj3CXO5biLQpfdZA==} - engines: {node: '>=12'} - cpu: [x64] - os: [freebsd] - requiresBuild: true - optional: true - /esbuild-freebsd-arm64@0.14.54: resolution: {integrity: sha512-sFwueGr7OvIFiQT6WeG0jRLjkjdqWWSrfbVwZp8iMP+8UHEHRBvlaxL6IuKNDwAozNUmbb8nIMXa7oAOARGs1Q==} engines: {node: '>=12'} @@ -26746,14 +27580,6 @@ packages: dev: true optional: true - /esbuild-freebsd-arm64@0.15.18: - resolution: {integrity: sha512-R/oVr+X3Tkh+S0+tL41wRMbdWtpWB8hEAMsOXDumSSa6qJR89U0S/PpLXrGF7Wk/JykfpWNokERUpCeHDl47wA==} - engines: {node: '>=12'} - cpu: [arm64] - os: [freebsd] - requiresBuild: true - optional: true - /esbuild-linux-32@0.14.54: resolution: {integrity: sha512-1ZuY+JDI//WmklKlBgJnglpUL1owm2OX+8E1syCD6UAxcMM/XoWd76OHSjl/0MR0LisSAXDqgjT3uJqT67O3qw==} engines: {node: '>=12'} @@ -26763,14 +27589,6 @@ packages: dev: true optional: true - /esbuild-linux-32@0.15.18: - resolution: {integrity: sha512-lphF3HiCSYtaa9p1DtXndiQEeQDKPl9eN/XNoBf2amEghugNuqXNZA/ZovthNE2aa4EN43WroO0B85xVSjYkbg==} - engines: {node: '>=12'} - cpu: [ia32] - os: [linux] - requiresBuild: true - optional: true - /esbuild-linux-64@0.14.54: resolution: {integrity: sha512-EgjAgH5HwTbtNsTqQOXWApBaPVdDn7XcK+/PtJwZLT1UmpLoznPd8c5CxqsH2dQK3j05YsB3L17T8vE7cp4cCg==} engines: {node: '>=12'} @@ -26780,14 +27598,6 @@ packages: dev: true optional: true - /esbuild-linux-64@0.15.18: - resolution: {integrity: sha512-hNSeP97IviD7oxLKFuii5sDPJ+QHeiFTFLoLm7NZQligur8poNOWGIgpQ7Qf8Balb69hptMZzyOBIPtY09GZYw==} - engines: {node: '>=12'} - cpu: [x64] - os: [linux] - requiresBuild: true - optional: true - /esbuild-linux-arm64@0.14.54: resolution: {integrity: sha512-WL71L+0Rwv+Gv/HTmxTEmpv0UgmxYa5ftZILVi2QmZBgX3q7+tDeOQNqGtdXSdsL8TQi1vIaVFHUPDe0O0kdig==} engines: {node: '>=12'} @@ -26797,14 +27607,6 @@ packages: dev: true optional: true - /esbuild-linux-arm64@0.15.18: - resolution: {integrity: sha512-54qr8kg/6ilcxd+0V3h9rjT4qmjc0CccMVWrjOEM/pEcUzt8X62HfBSeZfT2ECpM7104mk4yfQXkosY8Quptug==} - engines: {node: '>=12'} - cpu: [arm64] - os: [linux] - requiresBuild: true - optional: true - /esbuild-linux-arm@0.14.54: resolution: {integrity: sha512-qqz/SjemQhVMTnvcLGoLOdFpCYbz4v4fUo+TfsWG+1aOu70/80RV6bgNpR2JCrppV2moUQkww+6bWxXRL9YMGw==} engines: {node: '>=12'} @@ -26814,14 +27616,6 @@ packages: dev: true optional: true - /esbuild-linux-arm@0.15.18: - resolution: {integrity: sha512-UH779gstRblS4aoS2qpMl3wjg7U0j+ygu3GjIeTonCcN79ZvpPee12Qun3vcdxX+37O5LFxz39XeW2I9bybMVA==} - engines: {node: '>=12'} - cpu: [arm] - os: [linux] - requiresBuild: true - optional: true - /esbuild-linux-mips64le@0.14.54: resolution: {integrity: sha512-qTHGQB8D1etd0u1+sB6p0ikLKRVuCWhYQhAHRPkO+OF3I/iSlTKNNS0Lh2Oc0g0UFGguaFZZiPJdJey3AGpAlw==} engines: {node: '>=12'} @@ -26831,14 +27625,6 @@ packages: dev: true optional: true - /esbuild-linux-mips64le@0.15.18: - resolution: {integrity: sha512-Mk6Ppwzzz3YbMl/ZZL2P0q1tnYqh/trYZ1VfNP47C31yT0K8t9s7Z077QrDA/guU60tGNp2GOwCQnp+DYv7bxQ==} - engines: {node: '>=12'} - cpu: [mips64el] - os: [linux] - requiresBuild: true - optional: true - /esbuild-linux-ppc64le@0.14.54: resolution: {integrity: sha512-j3OMlzHiqwZBDPRCDFKcx595XVfOfOnv68Ax3U4UKZ3MTYQB5Yz3X1mn5GnodEVYzhtZgxEBidLWeIs8FDSfrQ==} engines: {node: '>=12'} @@ -26848,14 +27634,6 @@ packages: dev: true optional: true - /esbuild-linux-ppc64le@0.15.18: - resolution: {integrity: sha512-b0XkN4pL9WUulPTa/VKHx2wLCgvIAbgwABGnKMY19WhKZPT+8BxhZdqz6EgkqCLld7X5qiCY2F/bfpUUlnFZ9w==} - engines: {node: '>=12'} - cpu: [ppc64] - os: [linux] - requiresBuild: true - optional: true - /esbuild-linux-riscv64@0.14.54: resolution: {integrity: sha512-y7Vt7Wl9dkOGZjxQZnDAqqn+XOqFD7IMWiewY5SPlNlzMX39ocPQlOaoxvT4FllA5viyV26/QzHtvTjVNOxHZg==} engines: {node: '>=12'} @@ -26865,14 +27643,6 @@ packages: dev: true optional: true - /esbuild-linux-riscv64@0.15.18: - resolution: {integrity: sha512-ba2COaoF5wL6VLZWn04k+ACZjZ6NYniMSQStodFKH/Pu6RxzQqzsmjR1t9QC89VYJxBeyVPTaHuBMCejl3O/xg==} - engines: {node: '>=12'} - cpu: [riscv64] - os: [linux] - requiresBuild: true - optional: true - /esbuild-linux-s390x@0.14.54: resolution: {integrity: sha512-zaHpW9dziAsi7lRcyV4r8dhfG1qBidQWUXweUjnw+lliChJqQr+6XD71K41oEIC3Mx1KStovEmlzm+MkGZHnHA==} engines: {node: '>=12'} @@ -26882,14 +27652,6 @@ packages: dev: true optional: true - /esbuild-linux-s390x@0.15.18: - resolution: {integrity: sha512-VbpGuXEl5FCs1wDVp93O8UIzl3ZrglgnSQ+Hu79g7hZu6te6/YHgVJxCM2SqfIila0J3k0csfnf8VD2W7u2kzQ==} - engines: {node: '>=12'} - cpu: [s390x] - os: [linux] - requiresBuild: true - optional: true - /esbuild-netbsd-64@0.14.54: resolution: {integrity: sha512-PR01lmIMnfJTgeU9VJTDY9ZerDWVFIUzAtJuDHwwceppW7cQWjBBqP48NdeRtoP04/AtO9a7w3viI+PIDr6d+w==} engines: {node: '>=12'} @@ -26899,14 +27661,6 @@ packages: dev: true optional: true - /esbuild-netbsd-64@0.15.18: - resolution: {integrity: sha512-98ukeCdvdX7wr1vUYQzKo4kQ0N2p27H7I11maINv73fVEXt2kyh4K4m9f35U1K43Xc2QGXlzAw0K9yoU7JUjOg==} - engines: {node: '>=12'} - cpu: [x64] - os: [netbsd] - requiresBuild: true - optional: true - /esbuild-openbsd-64@0.14.54: resolution: {integrity: sha512-Qyk7ikT2o7Wu76UsvvDS5q0amJvmRzDyVlL0qf5VLsLchjCa1+IAvd8kTBgUxD7VBUUVgItLkk609ZHUc1oCaw==} engines: {node: '>=12'} @@ -26916,14 +27670,6 @@ packages: dev: true optional: true - /esbuild-openbsd-64@0.15.18: - resolution: {integrity: sha512-yK5NCcH31Uae076AyQAXeJzt/vxIo9+omZRKj1pauhk3ITuADzuOx5N2fdHrAKPxN+zH3w96uFKlY7yIn490xQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [openbsd] - requiresBuild: true - optional: true - /esbuild-plugin-alias@0.2.1: resolution: {integrity: sha512-jyfL/pwPqaFXyKnj8lP8iLk6Z0m099uXR45aSN8Av1XD4vhvQutxxPzgA2bTcAwQpa1zCXDcWOlhFgyP3GKqhQ==} dev: true @@ -26957,7 +27703,7 @@ packages: peerDependencies: esbuild: '>=0.12 <1' dependencies: - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 esbuild: 0.17.19 transitivePeerDependencies: - supports-color @@ -26972,14 +27718,6 @@ packages: dev: true optional: true - /esbuild-sunos-64@0.15.18: - resolution: {integrity: sha512-On22LLFlBeLNj/YF3FT+cXcyKPEI263nflYlAhz5crxtp3yRG1Ugfr7ITyxmCmjm4vbN/dGrb/B7w7U8yJR9yw==} - engines: {node: '>=12'} - cpu: [x64] - os: [sunos] - requiresBuild: true - optional: true - /esbuild-windows-32@0.14.54: resolution: {integrity: sha512-T+rdZW19ql9MjS7pixmZYVObd9G7kcaZo+sETqNH4RCkuuYSuv9AGHUVnPoP9hhuE1WM1ZimHz1CIBHBboLU7w==} engines: {node: '>=12'} @@ -26989,14 +27727,6 @@ packages: dev: true optional: true - /esbuild-windows-32@0.15.18: - resolution: {integrity: sha512-o+eyLu2MjVny/nt+E0uPnBxYuJHBvho8vWsC2lV61A7wwTWC3jkN2w36jtA+yv1UgYkHRihPuQsL23hsCYGcOQ==} - engines: {node: '>=12'} - cpu: [ia32] - os: [win32] - requiresBuild: true - optional: true - /esbuild-windows-64@0.14.54: resolution: {integrity: sha512-AoHTRBUuYwXtZhjXZbA1pGfTo8cJo3vZIcWGLiUcTNgHpJJMC1rVA44ZereBHMJtotyN71S8Qw0npiCIkW96cQ==} engines: {node: '>=12'} @@ -27006,14 +27736,6 @@ packages: dev: true optional: true - /esbuild-windows-64@0.15.18: - resolution: {integrity: sha512-qinug1iTTaIIrCorAUjR0fcBk24fjzEedFYhhispP8Oc7SFvs+XeW3YpAKiKp8dRpizl4YYAhxMjlftAMJiaUw==} - engines: {node: '>=12'} - cpu: [x64] - os: [win32] - requiresBuild: true - optional: true - /esbuild-windows-arm64@0.14.54: resolution: {integrity: sha512-M0kuUvXhot1zOISQGXwWn6YtS+Y/1RT9WrVIOywZnJHo3jCDyewAc79aKNQWFCQm+xNHVTq9h8dZKvygoXQQRg==} engines: {node: '>=12'} @@ -27023,14 +27745,6 @@ packages: dev: true optional: true - /esbuild-windows-arm64@0.15.18: - resolution: {integrity: sha512-q9bsYzegpZcLziq0zgUi5KqGVtfhjxGbnksaBFYmWLxeV/S1fK4OLdq2DFYnXcLMjlZw2L0jLsk1eGoB522WXQ==} - engines: {node: '>=12'} - cpu: [arm64] - os: [win32] - requiresBuild: true - optional: true - /esbuild@0.14.54: resolution: {integrity: sha512-Cy9llcy8DvET5uznocPyqL3BFRrFXSVqbgpMJ9Wz8oVjZlh/zUSNbPRbov0VX7VxN2JH1Oa0uNxZ7eLRb62pJA==} engines: {node: '>=12'} @@ -27060,35 +27774,6 @@ packages: esbuild-windows-arm64: 0.14.54 dev: true - /esbuild@0.15.18: - resolution: {integrity: sha512-x/R72SmW3sSFRm5zrrIjAhCeQSAWoni3CmHEqfQrZIQTM3lVCdehdwuIqaOtfC2slvpdlLa62GYoN8SxT23m6Q==} - engines: {node: '>=12'} - hasBin: true - requiresBuild: true - optionalDependencies: - '@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 - /esbuild@0.16.17: resolution: {integrity: sha512-G8LEkV0XzDMNwXKgM0Jwu3nY3lSTwSGY6XbxM9cr9+s0T/qSV1q1JVPBGzm3dcjhCic9+emZDmMffkwgPeOeLg==} engines: {node: '>=12'} @@ -27646,7 +28331,7 @@ packages: ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.3 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 doctrine: 3.0.0 enquirer: 2.3.6 escape-string-regexp: 4.0.0 @@ -27904,7 +28589,7 @@ packages: human-signals: 5.0.0 is-stream: 3.0.0 merge-stream: 2.0.0 - npm-run-path: 5.1.0 + npm-run-path: 5.2.0 onetime: 6.0.0 signal-exit: 4.1.0 strip-final-newline: 3.0.0 @@ -28672,7 +29357,7 @@ packages: debug: optional: true dependencies: - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 /fontfaceobserver@2.3.0: resolution: {integrity: sha512-6FPvD/IVyT4ZlNe7Wcn5Fb/4ChigpucKYSvD6a+0iMoLn2inpo711eyIcKjmDtE5XNcgAkSH9uN/nfAeZzHEfg==} @@ -30248,7 +30933,7 @@ packages: engines: {node: '>= 6.0.0'} dependencies: agent-base: 5.1.1 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 transitivePeerDependencies: - supports-color dev: true @@ -30258,7 +30943,7 @@ packages: engines: {node: '>= 6'} dependencies: agent-base: 6.0.2 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 transitivePeerDependencies: - supports-color @@ -32011,7 +32696,7 @@ packages: '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.23.5) '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.23.5) '@babel/plugin-transform-modules-commonjs': 7.23.0(@babel/core@7.23.5) - '@babel/preset-env': 7.21.5(@babel/core@7.23.5) + '@babel/preset-env': 7.21.5(@babel/core@7.23.7) '@babel/preset-flow': 7.18.6(@babel/core@7.23.5) '@babel/preset-typescript': 7.23.0(@babel/core@7.23.5) '@babel/register': 7.21.0(@babel/core@7.23.5) @@ -32632,6 +33317,14 @@ packages: engines: {node: '>=14'} dev: true + /local-pkg@0.5.0: + resolution: {integrity: sha512-ok6z3qlYyCDS4ZEU27HaU6x/xZa9Whf8jD4ptH5UZTQYZVYeb9bnZ3ojVhiJNLiXK1Hfc0GNbLXcmZ5plLDDBg==} + engines: {node: '>=14'} + dependencies: + mlly: 1.4.2 + pkg-types: 1.0.3 + dev: true + /locate-character@3.0.0: resolution: {integrity: sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA==} @@ -32781,8 +33474,8 @@ packages: dev: true optional: true - /loupe@2.3.6: - resolution: {integrity: sha512-RaPMZKiMy8/JruncMU5Bt6na1eftNoo++R4Y+N2FrxkDVTrGvcyzFTsaGif4QTeKESheMGegbhw6iUAq+5A8zA==} + /loupe@2.3.7: + resolution: {integrity: sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==} dependencies: get-func-name: 2.0.2 dev: true @@ -33820,6 +34513,15 @@ packages: ufo: 1.1.2 dev: true + /mlly@1.4.2: + resolution: {integrity: sha512-i/Ykufi2t1EZ6NaPLdfnZk2AX8cs0d+mTzVKuPfqPKPatxLApaBoxJQ9x1/uckXtrS/U5oisPMDkNs0yQTaBRg==} + dependencies: + acorn: 8.11.3 + pathe: 1.1.1 + pkg-types: 1.0.3 + ufo: 1.3.2 + dev: true + /mobx-react-lite@3.4.3(mobx@6.9.0)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-NkJREyFTSUXR772Qaai51BnE1voWx56LOL80xG7qkZr6vo8vEaLF3sz1JNUVh+rxmUzxYaqOhfuxTfqUh0FXUg==} peerDependencies: @@ -34384,7 +35086,7 @@ packages: serve-placeholder: 2.0.1 serve-static: 1.15.0 source-map-support: 0.5.21 - std-env: 3.3.3 + std-env: 3.4.3 ufo: 1.1.2 unenv: 1.5.0 unimport: 3.0.7(rollup@3.28.1) @@ -34548,6 +35250,9 @@ packages: /node-releases@2.0.13: resolution: {integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==} + /node-releases@2.0.14: + resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==} + /node-res@5.0.1: resolution: {integrity: sha512-YOleO9c7MAqoHC+Ccu2vzvV1fL6Ku49gShq3PIMKWHRgrMSih3XcwL05NbLBi6oU2J471gTBfdpVVxwT6Pfhxg==} dependencies: @@ -34696,6 +35401,13 @@ packages: path-key: 4.0.0 dev: true + /npm-run-path@5.2.0: + resolution: {integrity: sha512-W4/tgAXFqFA0iL7fk0+uQ3g7wkL8xJmx3XdK0VGb4cHW//eZTtKGvFBBoRKVTpY7n6ze4NL9ly7rgXcHufqXKg==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dependencies: + path-key: 4.0.0 + dev: true + /npmlog@5.0.1: resolution: {integrity: sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==} dependencies: @@ -35367,9 +36079,9 @@ packages: dependencies: yocto-queue: 0.1.0 - /p-limit@4.0.0: - resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + /p-limit@5.0.0: + resolution: {integrity: sha512-/Eaoq+QyLSiXQ4lyYV23f14mZRQcXnxfHrN0vCai+ak9G0pp9iEQukIIZq5NccEvwRB8PUnZT0KsOoDCINS1qQ==} + engines: {node: '>=18'} dependencies: yocto-queue: 1.0.0 dev: true @@ -36729,7 +37441,7 @@ packages: yaml: 1.10.2 dev: true - /postcss-load-config@3.1.4(postcss@8.4.31)(ts-node@10.9.2): + /postcss-load-config@3.1.4(postcss@8.4.31): resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==} engines: {node: '>= 10'} peerDependencies: @@ -36743,10 +37455,26 @@ packages: dependencies: lilconfig: 2.1.0 postcss: 8.4.31 - ts-node: 10.9.2(@types/node@20.10.6)(typescript@5.3.3) yaml: 1.10.2 dev: true + /postcss-load-config@4.0.1(postcss@8.4.31): + resolution: {integrity: sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==} + engines: {node: '>= 14'} + peerDependencies: + postcss: '>=8.0.9' + ts-node: '>=9.0.0' + peerDependenciesMeta: + postcss: + optional: true + ts-node: + optional: true + dependencies: + lilconfig: 2.1.0 + postcss: 8.4.31 + yaml: 2.3.0 + dev: true + /postcss-load-config@4.0.1(postcss@8.4.31)(ts-node@10.9.2): resolution: {integrity: sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==} engines: {node: '>= 14'} @@ -38387,11 +39115,11 @@ packages: ansi-styles: 5.2.0 react-is: 18.2.0 - /pretty-format@29.5.0: - resolution: {integrity: sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw==} + /pretty-format@29.7.0: + resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/schemas': 29.4.3 + '@jest/schemas': 29.6.3 ansi-styles: 5.2.0 react-is: 18.2.0 dev: true @@ -38687,7 +39415,7 @@ packages: engines: {node: '>=8.16.0'} dependencies: '@types/mime-types': 2.1.1 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 extract-zip: 1.7.0 https-proxy-agent: 4.0.0 mime: 2.6.0 @@ -40427,19 +41155,31 @@ packages: optionalDependencies: fsevents: 2.3.3 - /rollup@3.23.0: - resolution: {integrity: sha512-h31UlwEi7FHihLe1zbk+3Q7z1k/84rb9BSwmBSr/XjOCEaBJ2YyedQDuM0t/kfOS0IxM+vk1/zI9XxYj9V+NJQ==} + /rollup@3.28.1: + resolution: {integrity: sha512-R9OMQmIHJm9znrU3m3cpE8uhN0fGdXiawME7aZIpQqvpS/85+Vt1Hq1/yVIcYfOmaQiHjvXkQAoJukvLpau6Yw==} engines: {node: '>=14.18.0', npm: '>=8.0.0'} hasBin: true optionalDependencies: fsevents: 2.3.3 - dev: true - /rollup@3.28.1: - resolution: {integrity: sha512-R9OMQmIHJm9znrU3m3cpE8uhN0fGdXiawME7aZIpQqvpS/85+Vt1Hq1/yVIcYfOmaQiHjvXkQAoJukvLpau6Yw==} - engines: {node: '>=14.18.0', npm: '>=8.0.0'} + /rollup@4.9.2: + resolution: {integrity: sha512-66RB8OtFKUTozmVEh3qyNfH+b+z2RXBVloqO2KCC/pjFaGaHtxP9fVfOQKPSGXg2mElmjmxjW/fZ7iKrEpMH5Q==} + engines: {node: '>=18.0.0', npm: '>=8.0.0'} hasBin: true optionalDependencies: + '@rollup/rollup-android-arm-eabi': 4.9.2 + '@rollup/rollup-android-arm64': 4.9.2 + '@rollup/rollup-darwin-arm64': 4.9.2 + '@rollup/rollup-darwin-x64': 4.9.2 + '@rollup/rollup-linux-arm-gnueabihf': 4.9.2 + '@rollup/rollup-linux-arm64-gnu': 4.9.2 + '@rollup/rollup-linux-arm64-musl': 4.9.2 + '@rollup/rollup-linux-riscv64-gnu': 4.9.2 + '@rollup/rollup-linux-x64-gnu': 4.9.2 + '@rollup/rollup-linux-x64-musl': 4.9.2 + '@rollup/rollup-win32-arm64-msvc': 4.9.2 + '@rollup/rollup-win32-ia32-msvc': 4.9.2 + '@rollup/rollup-win32-x64-msvc': 4.9.2 fsevents: 2.3.3 /route-sort@1.0.0: @@ -41162,7 +41902,7 @@ packages: solid-js: 1.8.7 dev: false - /solid-start-node@0.2.26(solid-start@0.2.26)(undici@5.26.4)(vite@3.2.6): + /solid-start-node@0.2.26(solid-start@0.2.26)(undici@5.26.4)(vite@5.0.10): resolution: {integrity: sha512-8vciTGoQV+lIlCUSVHJPazlaoKDRfBowDkPeBr/EZdmtbcMOKoJYf/APPQWFspylF+nhzunMf0+zJP90VtMEYg==} peerDependencies: solid-start: '*' @@ -41176,14 +41916,14 @@ packages: polka: 1.0.0-next.22 rollup: 3.21.0 sirv: 2.0.2 - solid-start: 0.2.26(@solidjs/meta@0.28.5)(@solidjs/router@0.6.0)(solid-js@1.7.5)(solid-start-node@0.2.26)(vite@3.2.6) + solid-start: 0.2.26(@solidjs/meta@0.28.5)(@solidjs/router@0.6.0)(solid-js@1.7.5)(solid-start-node@0.2.26)(vite@5.0.10) terser: 5.16.5 undici: 5.26.4 - vite: 3.2.6(@types/node@18.16.14) + vite: 5.0.10(@types/node@18.16.14) transitivePeerDependencies: - supports-color - /solid-start@0.2.26(@solidjs/meta@0.28.5)(@solidjs/router@0.6.0)(solid-js@1.7.5)(solid-start-node@0.2.26)(vite@3.2.6): + /solid-start@0.2.26(@solidjs/meta@0.28.5)(@solidjs/router@0.6.0)(solid-js@1.7.5)(solid-start-node@0.2.26)(vite@5.0.10): resolution: {integrity: sha512-kne2HZlnSMzsirdnvNs1CsDqBl0L0uvKKt1t4de1CH7JIngyqoMcER97jTE0Ejr84KknANaKAdvJAzZcL7Ueng==} hasBin: true peerDependencies: @@ -41229,7 +41969,7 @@ packages: chokidar: 3.5.3 compression: 1.7.4 connect: 3.7.0 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 dequal: 2.0.3 dotenv: 16.0.3 es-module-lexer: 1.2.1 @@ -41246,12 +41986,12 @@ packages: set-cookie-parser: 2.6.0 sirv: 2.0.2 solid-js: 1.7.5 - solid-start-node: 0.2.26(solid-start@0.2.26)(undici@5.26.4)(vite@3.2.6) + solid-start-node: 0.2.26(solid-start@0.2.26)(undici@5.26.4)(vite@5.0.10) terser: 5.16.5 undici: 5.26.4 - vite: 3.2.6(@types/node@18.16.14) - vite-plugin-inspect: 0.7.15(rollup@3.21.0)(vite@3.2.6) - vite-plugin-solid: 2.8.0(solid-js@1.7.5)(vite@3.2.6) + vite: 5.0.10(@types/node@18.16.14) + vite-plugin-inspect: 0.7.15(rollup@3.21.0)(vite@5.0.10) + vite-plugin-solid: 2.8.0(solid-js@1.7.5)(vite@5.0.10) wait-on: 6.0.1(debug@4.3.4) transitivePeerDependencies: - supports-color @@ -41551,12 +42291,13 @@ packages: resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} engines: {node: '>= 0.8'} - /std-env@3.3.3: - resolution: {integrity: sha512-Rz6yejtVyWnVjC1RFvNmYL10kgjC49EOghxWn0RFqlCHGFpQx+Xe7yW3I4ceK1SGrWIGMjD5Kbue8W/udkbMJg==} - /std-env@3.4.3: resolution: {integrity: sha512-f9aPhy8fYBuMN+sNfakZV18U39PbalgjXG3lLB9WkaYTxijru61wb57V9wxxNthXM5Sd88ETBWi29qLAsHO52Q==} + /std-env@3.7.0: + resolution: {integrity: sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==} + dev: true + /stealthy-require@1.1.1: resolution: {integrity: sha512-ZnWpYnYugiOVEY5GkcuJK1io5V8QmNYChG62gSit9pQVGErXtrKuPC55ITaVSukmMta5qpMU7vqLt2Lnni4f/g==} engines: {node: '>=0.10.0'} @@ -41869,6 +42610,12 @@ packages: acorn: 8.10.0 dev: true + /strip-literal@1.3.0: + resolution: {integrity: sha512-PugKzOsyXpArk0yWmUwqOZecSO0GH0bPoctLcqNDH9J04pVW3lflYE0ujElBGTloevcxF5MofAOZ7C5l2b+wLg==} + dependencies: + acorn: 8.11.3 + dev: true + /structured-headers@0.4.1: resolution: {integrity: sha512-0MP/Cxx5SzeeZ10p/bZI0S6MpgD+yxAhi1BOQ34jgnMXsCq3j1t6tQnZu+KdlL7dvJTLT3g9xN8tl10TqgFMcg==} dev: false @@ -42146,7 +42893,7 @@ packages: resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} engines: {node: '>= 0.4'} - /svelte-check@2.10.3(@babel/core@7.23.5)(svelte@3.59.1): + /svelte-check@2.10.3(@babel/core@7.23.7)(svelte@3.59.1): resolution: {integrity: sha512-Nt1aWHTOKFReBpmJ1vPug0aGysqPwJh2seM1OvICfM2oeyaA62mOiy5EvkXhltGfhCcIQcq2LoE0l1CwcWPjlw==} hasBin: true peerDependencies: @@ -42159,7 +42906,7 @@ packages: picocolors: 1.0.0 sade: 1.8.1 svelte: 3.59.1 - svelte-preprocess: 4.10.7(@babel/core@7.23.5)(svelte@3.59.1)(typescript@5.3.3) + svelte-preprocess: 4.10.7(@babel/core@7.23.7)(svelte@3.59.1)(typescript@5.3.3) typescript: 5.3.3 transitivePeerDependencies: - '@babel/core' @@ -42245,7 +42992,7 @@ packages: dependencies: svelte: 4.2.8 - /svelte-preprocess@4.10.7(@babel/core@7.23.5)(svelte@3.59.1)(typescript@5.3.3): + /svelte-preprocess@4.10.7(@babel/core@7.23.7)(svelte@3.59.1)(typescript@5.3.3): resolution: {integrity: sha512-sNPBnqYD6FnmdBrUmBCaqS00RyCsCpj2BG58A1JBswNF7b0OKviwxqVrOL/CKyJrLSClrSeqQv5BXNg2RUbPOw==} engines: {node: '>= 9.11.2'} requiresBuild: true @@ -42286,7 +43033,7 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.23.7 '@types/pug': 2.0.6 '@types/sass': 1.45.0 detect-indent: 6.1.0 @@ -42553,6 +43300,38 @@ packages: - supports-color dev: true + /tailwindcss@3.3.2: + resolution: {integrity: sha512-9jPkMiIBXvPc2KywkraqsUfbfj+dHDb+JPWtSJa9MLFdrPyazI7q6WX2sUrm7R9eVR7qqv3Pas7EvQFzxKnI6w==} + engines: {node: '>=14.0.0'} + hasBin: true + dependencies: + '@alloc/quick-lru': 5.2.0 + arg: 5.0.2 + chokidar: 3.5.3 + didyoumean: 1.2.2 + dlv: 1.1.3 + fast-glob: 3.2.12 + glob-parent: 6.0.2 + is-glob: 4.0.3 + jiti: 1.18.2 + lilconfig: 2.1.0 + micromatch: 4.0.5 + normalize-path: 3.0.0 + object-hash: 3.0.0 + picocolors: 1.0.0 + postcss: 8.4.31 + postcss-import: 15.1.0(postcss@8.4.31) + postcss-js: 4.0.1(postcss@8.4.31) + postcss-load-config: 4.0.1(postcss@8.4.31) + postcss-nested: 6.0.1(postcss@8.4.31) + postcss-selector-parser: 6.0.11 + postcss-value-parser: 4.2.0 + resolve: 1.22.2 + sucrase: 3.32.0 + transitivePeerDependencies: + - ts-node + dev: true + /tailwindcss@3.3.2(ts-node@10.9.2): resolution: {integrity: sha512-9jPkMiIBXvPc2KywkraqsUfbfj+dHDb+JPWtSJa9MLFdrPyazI7q6WX2sUrm7R9eVR7qqv3Pas7EvQFzxKnI6w==} engines: {node: '>=14.0.0'} @@ -42944,17 +43723,17 @@ packages: resolution: {integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==} dev: false - /tinybench@2.5.0: - resolution: {integrity: sha512-kRwSG8Zx4tjF9ZiyH4bhaebu+EDz1BOx9hOigYHlUW4xxI/wKIUQUqo018UlU4ar6ATPBsaMrdbKZ+tmPdohFA==} + /tinybench@2.5.1: + resolution: {integrity: sha512-65NKvSuAVDP/n4CqH+a9w2kTlLReS9vhsAP06MWx+/89nMinJyB2icyl58RIcqCmIggpojIGeuJGhjU1aGMBSg==} dev: true - /tinypool@0.7.0: - resolution: {integrity: sha512-zSYNUlYSMhJ6Zdou4cJwo/p7w5nmAH17GRfU/ui3ctvjXFErXXkruT4MWW6poDeXgCaIBlGLrfU6TbTXxyGMww==} + /tinypool@0.8.1: + resolution: {integrity: sha512-zBTCK0cCgRROxvs9c0CGK838sPkeokNGdQVUUwHAbynHFlmyJYj825f/oRs528HaIJ97lo0pLIlDUzwN+IorWg==} engines: {node: '>=14.0.0'} dev: true - /tinyspy@2.1.1: - resolution: {integrity: sha512-XPJL2uSzcOyBMky6OFrusqWlzfFrXtE0hPuMgW8A2HmaqrPo4ZQHRN/V0QXN3FSjKxpsbRrFc5LI7KOwBsT1/w==} + /tinyspy@2.2.0: + resolution: {integrity: sha512-d2eda04AN/cPOR89F7Xv5bK/jrQEhmcLFe6HFldoeO9AJtps+fqEnh486vnT/8y4bw38pSyxDcTCAq+Ks2aJTg==} engines: {node: '>=14.0.0'} dev: true @@ -43590,6 +44369,10 @@ packages: /ufo@1.3.1: resolution: {integrity: sha512-uY/99gMLIOlJPwATcMVYfqDSxUR9//AUcgZMzwfSTJPDKzA1S8mX4VLqa+fiAtveraQUBCz4FFcwVZBGbwBXIw==} + /ufo@1.3.2: + resolution: {integrity: sha512-o+ORpgGwaYQXgqGDwd+hkS4PuZ3QnmqMMxRuajK/a38L6fTpcE5GPIfrf+L/KemFzfUpeUQc1rRS1iDBozvnFA==} + dev: true + /uglify-es@3.3.9: resolution: {integrity: sha512-r+MU0rfv4L/0eeW3xZrd16t4NZfK8Ld4SWVglYBb7ez5uXFWHuVRs6xCTrf1yirs9a4j4Y27nn7SRfO6v67XsQ==} engines: {node: '>=0.8.0'} @@ -44157,6 +44940,16 @@ packages: escalade: 3.1.1 picocolors: 1.0.0 + /update-browserslist-db@1.0.13(browserslist@4.22.2): + resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==} + hasBin: true + peerDependencies: + browserslist: '>= 4.21.0' + dependencies: + browserslist: 4.22.2 + escalade: 3.1.1 + picocolors: 1.0.0 + /update-notifier@5.1.0: resolution: {integrity: sha512-ItnICHbeMh9GqUy31hFPrD1kcuZ3rpxDZbf4KUDavXwS0bW5m7SLbDQpGX3UYr072cbrF5hFUs3r5tUsPwjfHw==} engines: {node: '>=10'} @@ -44486,17 +45279,37 @@ packages: - terser dev: true - /vite-node@0.34.6(@types/node@20.7.1): - resolution: {integrity: sha512-nlBMJ9x6n7/Amaz6F3zJ97EBwR2FkzhBRxF5e+jE6LA3yi6Wtc2lyTij1OnDMIr34v5g/tVQtsVAzhT0jc5ygA==} - engines: {node: '>=v14.18.0'} + /vite-node@1.1.1: + resolution: {integrity: sha512-2bGE5w4jvym5v8llF6Gu1oBrmImoNSs4WmRVcavnG2me6+8UQntTqLiAMFyiAobp+ZXhj5ZFhI7SmLiFr/jrow==} + engines: {node: ^18.0.0 || >=20.0.0} hasBin: true dependencies: cac: 6.7.14 - debug: 4.3.4(supports-color@5.5.0) - mlly: 1.4.0 + debug: 4.3.4 pathe: 1.1.1 picocolors: 1.0.0 - vite: 4.5.1(@types/node@20.7.1) + vite: 5.0.10(@types/node@18.16.14) + transitivePeerDependencies: + - '@types/node' + - less + - lightningcss + - sass + - stylus + - sugarss + - supports-color + - terser + dev: true + + /vite-node@1.1.1(@types/node@20.10.6): + resolution: {integrity: sha512-2bGE5w4jvym5v8llF6Gu1oBrmImoNSs4WmRVcavnG2me6+8UQntTqLiAMFyiAobp+ZXhj5ZFhI7SmLiFr/jrow==} + engines: {node: ^18.0.0 || >=20.0.0} + hasBin: true + dependencies: + cac: 6.7.14 + debug: 4.3.4 + pathe: 1.1.1 + picocolors: 1.0.0 + vite: 5.0.10(@types/node@20.10.6) transitivePeerDependencies: - '@types/node' - less @@ -44613,7 +45426,7 @@ packages: vscode-uri: 3.0.7 dev: true - /vite-plugin-inspect@0.7.15(rollup@3.21.0)(vite@3.2.6): + /vite-plugin-inspect@0.7.15(rollup@3.21.0)(vite@5.0.10): resolution: {integrity: sha512-oxeZCljacA/slhGFbDNlBqdhDU9fgdHL84i7Nz7DnaAIE7DhTiW2djanw3d/BKuZtduKUY82vRUQ4iaG917t2A==} engines: {node: '>=14'} peerDependencies: @@ -44621,12 +45434,12 @@ packages: dependencies: '@antfu/utils': 0.7.2 '@rollup/pluginutils': 5.0.3(rollup@3.21.0) - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 fs-extra: 11.2.0 kolorist: 1.7.0 sirv: 2.0.2 ufo: 1.1.2 - vite: 3.2.6(@types/node@18.16.14) + vite: 5.0.10(@types/node@18.16.14) transitivePeerDependencies: - rollup - supports-color @@ -44641,7 +45454,7 @@ packages: - supports-color dev: true - /vite-plugin-solid@2.7.0(solid-js@1.7.5)(vite@4.3.8): + /vite-plugin-solid@2.7.0(solid-js@1.7.5)(vite@5.0.10): resolution: {integrity: sha512-avp/Jl5zOp/Itfo67xtDB2O61U7idviaIp4mLsjhCa13PjKNasz+IID0jYTyqUp9SFx6/PmBr6v4KgDppqompg==} peerDependencies: solid-js: ^1.7.2 @@ -44654,13 +45467,13 @@ packages: merge-anything: 5.1.4 solid-js: 1.7.5 solid-refresh: 0.5.1(solid-js@1.7.5) - vite: 4.3.8(@types/node@20.10.6) - vitefu: 0.2.4(vite@4.3.8) + vite: 5.0.10(@types/node@18.16.14) + vitefu: 0.2.4(vite@5.0.10) transitivePeerDependencies: - supports-color dev: true - /vite-plugin-solid@2.8.0(solid-js@1.7.5)(vite@3.2.6): + /vite-plugin-solid@2.8.0(solid-js@1.7.5)(vite@5.0.10): resolution: {integrity: sha512-n5FAm7ZmTl94VWUoiJCgG7bouF2NlC9CA1wY/qbVnkFbYDWk++bFWyNoU48aLJ+lMtzNeYzJypJXOHzFKxL9xA==} peerDependencies: solid-js: ^1.7.2 @@ -44673,12 +45486,12 @@ packages: merge-anything: 5.1.7 solid-js: 1.7.5 solid-refresh: 0.5.3(solid-js@1.7.5) - vite: 3.2.6(@types/node@18.16.14) - vitefu: 0.2.5(vite@3.2.6) + vite: 5.0.10(@types/node@18.16.14) + vitefu: 0.2.5(vite@5.0.10) transitivePeerDependencies: - supports-color - /vite-plugin-solid@2.8.0(solid-js@1.8.7)(vite@4.5.1): + /vite-plugin-solid@2.8.0(solid-js@1.8.7)(vite@5.0.10): resolution: {integrity: sha512-n5FAm7ZmTl94VWUoiJCgG7bouF2NlC9CA1wY/qbVnkFbYDWk++bFWyNoU48aLJ+lMtzNeYzJypJXOHzFKxL9xA==} peerDependencies: solid-js: ^1.7.2 @@ -44691,58 +45504,25 @@ packages: merge-anything: 5.1.7 solid-js: 1.8.7 solid-refresh: 0.5.3(solid-js@1.8.7) - vite: 4.5.1(@types/node@20.10.6) - vitefu: 0.2.5(vite@4.5.1) + vite: 5.0.10(@types/node@18.16.14) + vitefu: 0.2.5(vite@5.0.10) transitivePeerDependencies: - supports-color dev: false - /vite-plugin-svgr@2.4.0(vite@4.3.8): + /vite-plugin-svgr@2.4.0(vite@5.0.10): resolution: {integrity: sha512-q+mJJol6ThvqkkJvvVFEndI4EaKIjSI0I3jNFgSoC9fXAz1M7kYTVUin8fhUsFojFDKZ9VHKtX6NXNaOLpbsHA==} peerDependencies: vite: ^2.6.0 || 3 || 4 dependencies: '@rollup/pluginutils': 5.0.2(rollup@3.21.0) '@svgr/core': 6.5.1 - vite: 4.3.8(@types/node@20.10.6) + vite: 5.0.10(@types/node@18.16.14) transitivePeerDependencies: - rollup - supports-color dev: true - /vite@3.2.6(@types/node@18.16.14): - resolution: {integrity: sha512-nTXTxYVvaQNLoW5BQ8PNNQ3lPia57gzsQU/Khv+JvzKPku8kNZL6NMUR/qwXhMG6E+g1idqEPanomJ+VZgixEg==} - 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': 18.16.14 - esbuild: 0.15.18 - postcss: 8.4.31 - resolve: 1.22.2 - rollup: 2.79.1 - optionalDependencies: - fsevents: 2.3.3 - /vite@4.0.4(@types/node@20.10.6): resolution: {integrity: sha512-xevPU7M8FU0i/80DMR+YhgrzR5KS2ORy1B4xcX/cXLsvnUWvfHuqMmVU6N0YiJ4JWGRJJsLCgjEzKjG9/GKoSw==} engines: {node: ^14.18.0 || >=16.0.0} @@ -44777,39 +45557,6 @@ packages: fsevents: 2.3.3 dev: true - /vite@4.3.8(@types/node@20.10.6): - resolution: {integrity: sha512-uYB8PwN7hbMrf4j1xzGDk/lqjsZvCDbt/JC5dyfxc19Pg8kRm14LinK/uq+HSLNswZEoKmweGdtpbnxRtrAXiQ==} - 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': 20.10.6 - esbuild: 0.17.19 - postcss: 8.4.27 - rollup: 3.21.0 - optionalDependencies: - fsevents: 2.3.3 - dev: true - /vite@4.3.9(@types/node@20.10.6): resolution: {integrity: sha512-qsTNZjO9NoJNW7KnOrgYwczm0WctJ8m/yqYAMAK9Lxt4SoySUfS5S8ia9K7JHpa3KEeMfyF8LoJ3c5NeBJy6pg==} engines: {node: ^14.18.0 || >=16.0.0} @@ -44837,14 +45584,14 @@ packages: dependencies: '@types/node': 20.10.6 esbuild: 0.17.19 - postcss: 8.4.31 - rollup: 3.23.0 + postcss: 8.4.32 + rollup: 3.28.1 optionalDependencies: fsevents: 2.3.3 dev: true - /vite@4.4.9(@types/node@20.10.6): - resolution: {integrity: sha512-2mbUn2LlUmNASWwSCNSJ/EG2HuSRTnVNaydp6vMCm5VIqJsjMfbIWtbH2kDuwUVW5mMUKKZvGPX/rqeqVvv1XA==} + /vite@4.5.1(@types/node@20.10.6): + resolution: {integrity: sha512-AXXFaAJ8yebyqzoNB9fu2pHoo/nWX+xZlaRwoeYUxEqBO+Zj4msE5G+BhGBll9lYEKv9Hfks52PAF2X7qDYXQA==} engines: {node: ^14.18.0 || >=16.0.0} hasBin: true peerDependencies: @@ -44873,18 +45620,17 @@ packages: dependencies: '@types/node': 20.10.6 esbuild: 0.18.18 - postcss: 8.4.31 + postcss: 8.4.32 rollup: 3.28.1 optionalDependencies: fsevents: 2.3.3 - dev: true - /vite@4.4.9(@types/node@20.7.1): - resolution: {integrity: sha512-2mbUn2LlUmNASWwSCNSJ/EG2HuSRTnVNaydp6vMCm5VIqJsjMfbIWtbH2kDuwUVW5mMUKKZvGPX/rqeqVvv1XA==} - engines: {node: ^14.18.0 || >=16.0.0} + /vite@5.0.10(@types/node@18.16.14): + resolution: {integrity: sha512-2P8J7WWgmc355HUMlFrwofacvr98DAjoE52BfdbwQtyLH06XKwaL/FMnmKM2crF0iX4MpmMKoDlNCB1ok7zHCw==} + engines: {node: ^18.0.0 || >=20.0.0} hasBin: true peerDependencies: - '@types/node': '>= 14' + '@types/node': ^18.0.0 || >=20.0.0 less: '*' lightningcss: ^1.21.0 sass: '*' @@ -44907,20 +45653,19 @@ packages: terser: optional: true dependencies: - '@types/node': 20.7.1 - esbuild: 0.18.18 + '@types/node': 18.16.14 + esbuild: 0.19.11 postcss: 8.4.32 - rollup: 3.28.1 + rollup: 4.9.2 optionalDependencies: fsevents: 2.3.3 - dev: true - /vite@4.5.1(@types/node@20.10.6): - resolution: {integrity: sha512-AXXFaAJ8yebyqzoNB9fu2pHoo/nWX+xZlaRwoeYUxEqBO+Zj4msE5G+BhGBll9lYEKv9Hfks52PAF2X7qDYXQA==} - engines: {node: ^14.18.0 || >=16.0.0} + /vite@5.0.10(@types/node@20.10.6): + resolution: {integrity: sha512-2P8J7WWgmc355HUMlFrwofacvr98DAjoE52BfdbwQtyLH06XKwaL/FMnmKM2crF0iX4MpmMKoDlNCB1ok7zHCw==} + engines: {node: ^18.0.0 || >=20.0.0} hasBin: true peerDependencies: - '@types/node': '>= 14' + '@types/node': ^18.0.0 || >=20.0.0 less: '*' lightningcss: ^1.21.0 sass: '*' @@ -44944,49 +45689,13 @@ packages: optional: true dependencies: '@types/node': 20.10.6 - esbuild: 0.18.18 - postcss: 8.4.31 - rollup: 3.28.1 - optionalDependencies: - fsevents: 2.3.3 - - /vite@4.5.1(@types/node@20.7.1): - resolution: {integrity: sha512-AXXFaAJ8yebyqzoNB9fu2pHoo/nWX+xZlaRwoeYUxEqBO+Zj4msE5G+BhGBll9lYEKv9Hfks52PAF2X7qDYXQA==} - engines: {node: ^14.18.0 || >=16.0.0} - hasBin: true - peerDependencies: - '@types/node': '>= 14' - less: '*' - lightningcss: ^1.21.0 - sass: '*' - stylus: '*' - sugarss: '*' - terser: ^5.4.0 - peerDependenciesMeta: - '@types/node': - optional: true - less: - optional: true - lightningcss: - optional: true - sass: - optional: true - stylus: - optional: true - sugarss: - optional: true - terser: - optional: true - dependencies: - '@types/node': 20.7.1 - esbuild: 0.18.18 - postcss: 8.4.31 - rollup: 3.28.1 + esbuild: 0.19.11 + postcss: 8.4.32 + rollup: 4.9.2 optionalDependencies: fsevents: 2.3.3 - dev: true - /vitefu@0.2.4(vite@4.3.8): + /vitefu@0.2.4(vite@5.0.10): resolution: {integrity: sha512-fanAXjSaf9xXtOOeno8wZXIhgia+CZury481LsDaV++lSvcU2R9Ch2bPh3PYFyoHW+w9LqAeYRISVQjUIew14g==} peerDependencies: vite: ^3.0.0 || ^4.0.0 @@ -44994,31 +45703,9 @@ packages: vite: optional: true dependencies: - vite: 4.3.8(@types/node@20.10.6) - dev: true + vite: 5.0.10(@types/node@18.16.14) - /vitefu@0.2.4(vite@4.4.9): - resolution: {integrity: sha512-fanAXjSaf9xXtOOeno8wZXIhgia+CZury481LsDaV++lSvcU2R9Ch2bPh3PYFyoHW+w9LqAeYRISVQjUIew14g==} - peerDependencies: - vite: ^3.0.0 || ^4.0.0 - peerDependenciesMeta: - vite: - optional: true - dependencies: - vite: 4.4.9(@types/node@20.10.6) - dev: true - - /vitefu@0.2.4(vite@4.5.1): - resolution: {integrity: sha512-fanAXjSaf9xXtOOeno8wZXIhgia+CZury481LsDaV++lSvcU2R9Ch2bPh3PYFyoHW+w9LqAeYRISVQjUIew14g==} - peerDependencies: - vite: ^3.0.0 || ^4.0.0 - peerDependenciesMeta: - vite: - optional: true - dependencies: - vite: 4.5.1(@types/node@20.10.6) - - /vitefu@0.2.5(vite@3.2.6): + /vitefu@0.2.5(vite@5.0.10): resolution: {integrity: sha512-SgHtMLoqaeeGnd2evZ849ZbACbnwQCIwRH57t18FxcXoZop0uQu0uzlIhJBlF/eWVzuce0sHeqPcDo+evVcg8Q==} peerDependencies: vite: ^3.0.0 || ^4.0.0 || ^5.0.0 @@ -45026,35 +45713,80 @@ packages: vite: optional: true dependencies: - vite: 3.2.6(@types/node@18.16.14) + vite: 5.0.10(@types/node@18.16.14) - /vitefu@0.2.5(vite@4.5.1): - resolution: {integrity: sha512-SgHtMLoqaeeGnd2evZ849ZbACbnwQCIwRH57t18FxcXoZop0uQu0uzlIhJBlF/eWVzuce0sHeqPcDo+evVcg8Q==} + /vitest@1.1.1: + resolution: {integrity: sha512-Ry2qs4UOu/KjpXVfOCfQkTnwSXYGrqTbBZxw6reIYEFjSy1QUARRg5pxiI5BEXy+kBVntxUYNMlq4Co+2vD3fQ==} + engines: {node: ^18.0.0 || >=20.0.0} + hasBin: true peerDependencies: - vite: ^3.0.0 || ^4.0.0 || ^5.0.0 + '@edge-runtime/vm': '*' + '@types/node': ^18.0.0 || >=20.0.0 + '@vitest/browser': ^1.0.0 + '@vitest/ui': ^1.0.0 + happy-dom: '*' + jsdom: '*' peerDependenciesMeta: - vite: + '@edge-runtime/vm': + optional: true + '@types/node': + optional: true + '@vitest/browser': + optional: true + '@vitest/ui': + optional: true + happy-dom: + optional: true + jsdom: optional: true dependencies: - vite: 4.5.1(@types/node@20.10.6) - dev: false + '@vitest/expect': 1.1.1 + '@vitest/runner': 1.1.1 + '@vitest/snapshot': 1.1.1 + '@vitest/spy': 1.1.1 + '@vitest/utils': 1.1.1 + acorn-walk: 8.3.1 + cac: 6.7.14 + chai: 4.3.10 + debug: 4.3.4 + execa: 8.0.1 + local-pkg: 0.5.0 + magic-string: 0.30.5 + pathe: 1.1.1 + picocolors: 1.0.0 + std-env: 3.7.0 + strip-literal: 1.3.0 + tinybench: 2.5.1 + tinypool: 0.8.1 + vite: 5.0.10(@types/node@18.16.14) + vite-node: 1.1.1 + why-is-node-running: 2.2.2 + transitivePeerDependencies: + - less + - lightningcss + - sass + - stylus + - sugarss + - supports-color + - terser + dev: true - /vitest@0.34.6: - resolution: {integrity: sha512-+5CALsOvbNKnS+ZHMXtuUC7nL8/7F1F2DnHGjSsszX8zCjWSSviphCb/NuS9Nzf4Q03KyyDRBAXhF/8lffME4Q==} - engines: {node: '>=v14.18.0'} + /vitest@1.1.1(@types/node@20.10.6): + resolution: {integrity: sha512-Ry2qs4UOu/KjpXVfOCfQkTnwSXYGrqTbBZxw6reIYEFjSy1QUARRg5pxiI5BEXy+kBVntxUYNMlq4Co+2vD3fQ==} + engines: {node: ^18.0.0 || >=20.0.0} hasBin: true peerDependencies: '@edge-runtime/vm': '*' - '@vitest/browser': '*' - '@vitest/ui': '*' + '@types/node': ^18.0.0 || >=20.0.0 + '@vitest/browser': ^1.0.0 + '@vitest/ui': ^1.0.0 happy-dom: '*' jsdom: '*' - playwright: '*' - safaridriver: '*' - webdriverio: '*' peerDependenciesMeta: '@edge-runtime/vm': optional: true + '@types/node': + optional: true '@vitest/browser': optional: true '@vitest/ui': @@ -45063,36 +45795,28 @@ packages: optional: true jsdom: optional: true - playwright: - optional: true - safaridriver: - optional: true - webdriverio: - optional: true dependencies: - '@types/chai': 4.3.5 - '@types/chai-subset': 1.3.3 - '@types/node': 20.7.1 - '@vitest/expect': 0.34.6 - '@vitest/runner': 0.34.6 - '@vitest/snapshot': 0.34.6 - '@vitest/spy': 0.34.6 - '@vitest/utils': 0.34.6 - acorn: 8.10.0 - acorn-walk: 8.2.0 + '@types/node': 20.10.6 + '@vitest/expect': 1.1.1 + '@vitest/runner': 1.1.1 + '@vitest/snapshot': 1.1.1 + '@vitest/spy': 1.1.1 + '@vitest/utils': 1.1.1 + acorn-walk: 8.3.1 cac: 6.7.14 chai: 4.3.10 - debug: 4.3.4(supports-color@5.5.0) - local-pkg: 0.4.3 - magic-string: 0.30.3 + debug: 4.3.4 + execa: 8.0.1 + local-pkg: 0.5.0 + magic-string: 0.30.5 pathe: 1.1.1 picocolors: 1.0.0 - std-env: 3.3.3 - strip-literal: 1.0.1 - tinybench: 2.5.0 - tinypool: 0.7.0 - vite: 4.4.9(@types/node@20.7.1) - vite-node: 0.34.6(@types/node@20.7.1) + std-env: 3.7.0 + strip-literal: 1.3.0 + tinybench: 2.5.1 + tinypool: 0.8.1 + vite: 5.0.10(@types/node@20.10.6) + vite-node: 1.1.1(@types/node@20.10.6) why-is-node-running: 2.2.2 transitivePeerDependencies: - less diff --git a/properties/package.json b/properties/package.json index d1b0d08496e..a968e55da3b 100644 --- a/properties/package.json +++ b/properties/package.json @@ -28,7 +28,7 @@ "devDependencies": { "typescript": "^5.3.3", "unbuild": "^2.0.0", - "vite": "^4.5.1", - "vitest": "^0.34.6" + "vite": "^5.0.10", + "vitest": "^1.1.1" } } diff --git a/properties/src/generate-props-assignment-source.spec.ts b/properties/src/generate-props-assignment-source.spec.ts index 10fe036fad4..d7f933a7cc5 100644 --- a/properties/src/generate-props-assignment-source.spec.ts +++ b/properties/src/generate-props-assignment-source.spec.ts @@ -35,7 +35,7 @@ describe("generatePropsAssignmentSource", () => { ) ).toMatchInlineSnapshot(` "properties = { - foo: \\"foo\\" + foo: "foo" };" `); }); @@ -56,7 +56,7 @@ describe("generatePropsAssignmentSource", () => { ) ).toMatchInlineSnapshot(` "properties = { - foo: \\"foo\\" + foo: "foo" };" `); }); @@ -78,9 +78,9 @@ describe("generatePropsAssignmentSource", () => { ) ).toMatchInlineSnapshot(` "properties = { - foo: \\"foo\\", + foo: "foo", recursive: { - foo: \\"foo\\", + foo: "foo", recursive: {} } };" @@ -142,29 +142,29 @@ describe("generatePropsAssignmentSource", () => { "properties = { nullType: null, booleanType: false, - stringType: \\"stringType\\", + stringType: "stringType", numberType: 0, - reactNodeType: \\"reactNodeType\\", + reactNodeType: "reactNodeType", numberLiteral: 123, - stringLiteral: \\"foo\\", + stringLiteral: "foo", trueLiteral: true, falseLiteral: false, - stringEnumType: \\"A\\", + stringEnumType: "A", numberEnumType: 3, - arrayType: [\\"arrayType\\"], - setType: new Set([\\"setType\\"]), + arrayType: ["arrayType"], + setType: new Set(["setType"]), recordType: {}, - unionType: \\"unionType\\", - intersectionType: \\"intersectionType\\", + unionType: "unionType", + intersectionType: "intersectionType", functionType: () => { - console.log(\\"functionType invoked\\"); - return \\"functionType\\"; + console.log("functionType invoked"); + return "functionType"; }, promiseType: Promise.reject(), namedType: { bar: () => { - console.log(\\"bar invoked\\"); - return \\"bar\\"; + console.log("bar invoked"); + return "bar"; } } };" @@ -188,7 +188,7 @@ describe("generatePropsAssignmentSource", () => { ) ).toMatchInlineSnapshot(` "properties = { - bar: \\"bar\\" + bar: "bar" };" `); }); diff --git a/screenshot/test-app/package.json b/screenshot/test-app/package.json index 62441538345..b706132bb03 100644 --- a/screenshot/test-app/package.json +++ b/screenshot/test-app/package.json @@ -16,6 +16,6 @@ "@vitejs/plugin-react": "^4.2.1", "playwright": "^1.40.1", "typescript": "^5.3.3", - "vite": "^4.5.1" + "vite": "^5.0.10" } } diff --git a/serializable-values/package.json b/serializable-values/package.json index 3c81c2393bf..5b6b6c0f7d5 100644 --- a/serializable-values/package.json +++ b/serializable-values/package.json @@ -31,7 +31,7 @@ "devDependencies": { "@types/prettier": "^2.7.3", "unbuild": "^2.0.0", - "vite": "^4.5.1", - "vitest": "^0.34.6" + "vite": "^5.0.10", + "vitest": "^1.1.1" } } diff --git a/serializable-values/src/generate-serializable-value.spec.ts b/serializable-values/src/generate-serializable-value.spec.ts index 346bc5691b4..056e4b5ef6b 100644 --- a/serializable-values/src/generate-serializable-value.spec.ts +++ b/serializable-values/src/generate-serializable-value.spec.ts @@ -163,7 +163,7 @@ describe("generateSerializableValue", () => { "value": { "kind": "function", "source": "() => { - console.log(\\"foo invoked\\"); + console.log("foo invoked"); return {}; }", }, @@ -209,7 +209,7 @@ describe("generateSerializableValue", () => { "value": { "kind": "function", "source": "() => { - console.log(\\"friends invoked\\"); + console.log("friends invoked"); return []; }", }, @@ -508,8 +508,8 @@ describe("generateSerializableValue", () => { "value": { "kind": "function", "source": "() => { - console.log(\\"functionType invoked\\"); - return \\"functionType\\"; + console.log("functionType invoked"); + return "functionType"; }", }, }, @@ -522,7 +522,7 @@ describe("generateSerializableValue", () => { "value": { "kind": "function", "source": "() => { - console.log(\\"voidFunctionType invoked\\"); + console.log("voidFunctionType invoked"); }", }, }, @@ -535,7 +535,7 @@ describe("generateSerializableValue", () => { "value": { "kind": "function", "source": "() => { - console.log(\\"voidUnionFunctionType invoked\\"); + console.log("voidUnionFunctionType invoked"); }", }, }, @@ -570,8 +570,8 @@ describe("generateSerializableValue", () => { "value": { "kind": "function", "source": "() => { - console.log(\\"bar invoked\\"); - return \\"bar\\"; + console.log("bar invoked"); + return "bar"; }", }, }, diff --git a/serializable-values/src/serializable-value-to-js.spec.ts b/serializable-values/src/serializable-value-to-js.spec.ts index 330e4a5eeee..55bfc38ba64 100644 --- a/serializable-values/src/serializable-value-to-js.spec.ts +++ b/serializable-values/src/serializable-value-to-js.spec.ts @@ -28,7 +28,7 @@ describe("serializableValueToJavaScript", () => { ); expect( serializableValueToJavaScript(array([string("foo"), number(123)])) - ).toMatchInlineSnapshot('"[\\"foo\\", 123]"'); + ).toMatchInlineSnapshot(`"["foo", 123]"`); }); test("boolean", () => { @@ -139,7 +139,7 @@ describe("serializableValueToJavaScript", () => { ).toMatchInlineSnapshot(` " foo - {\\" \\"} + {" "} bar " `); @@ -189,9 +189,9 @@ describe("serializableValueToJavaScript", () => { .toMatchInlineSnapshot(` " { .toMatchInlineSnapshot(` " { ).toMatchInlineSnapshot(` " { }) ) ).toMatchInlineSnapshot( - '"Promise.reject(new Error(\\"an error occurred\\"))"' + `"Promise.reject(new Error("an error occurred"))"` ); }); @@ -320,19 +320,19 @@ describe("serializableValueToJavaScript", () => { ); expect( serializableValueToJavaScript(set(array([number(123), string("foo")]))) - ).toMatchInlineSnapshot('"new Set([123, \\"foo\\"])"'); + ).toMatchInlineSnapshot(`"new Set([123, "foo"])"`); }); test("string", () => { expect(serializableValueToJavaScript(string(""))).toMatchInlineSnapshot( - '"\\"\\""' + `""""` ); expect(serializableValueToJavaScript(string("foo"))).toMatchInlineSnapshot( - '"\\"foo\\""' + `""foo""` ); expect( serializableValueToJavaScript(string("a'b\"c`")) - ).toMatchInlineSnapshot('"\\"a\'b\\\\\\"c`\\""'); + ).toMatchInlineSnapshot(`""a'b\\"c\`""`); }); test("undefined", () => { @@ -347,7 +347,7 @@ describe("serializableValueToJavaScript", () => { ); expect( serializableValueToJavaScript(unknown('{ foo: "bar" }')) - ).toMatchInlineSnapshot('"{ foo: \\"bar\\" }"'); + ).toMatchInlineSnapshot(`"{ foo: "bar" }"`); expect(serializableValueToJavaScript(unknown("foo"))).toMatchInlineSnapshot( '"foo"' ); diff --git a/storybook-helpers/package.json b/storybook-helpers/package.json index 104a6f5e691..8c0a7ce1e1e 100644 --- a/storybook-helpers/package.json +++ b/storybook-helpers/package.json @@ -32,7 +32,7 @@ "devDependencies": { "@previewjs/vfs": "workspace:*", "unbuild": "^2.0.0", - "vite": "^4.5.1", - "vitest": "^0.34.6" + "vite": "^5.0.10", + "vitest": "^1.1.1" } } diff --git a/type-analyzer/package.json b/type-analyzer/package.json index 45cc07f687c..1ce37716660 100644 --- a/type-analyzer/package.json +++ b/type-analyzer/package.json @@ -33,7 +33,7 @@ "@types/prettier": "^2.7.3", "lodash": "^4.17.21", "unbuild": "^2.0.0", - "vite": "^4.5.1", - "vitest": "^0.34.6" + "vite": "^5.0.10", + "vitest": "^1.1.1" } } diff --git a/type-analyzer/src/generate-type-declarations.spec.ts b/type-analyzer/src/generate-type-declarations.spec.ts index 9abab841e57..03ed8c6b4d9 100644 --- a/type-analyzer/src/generate-type-declarations.spec.ts +++ b/type-analyzer/src/generate-type-declarations.spec.ts @@ -51,7 +51,7 @@ describe("generateTypeDeclarations", () => { }) ).toMatchInlineSnapshot(` "type Foo = { - [\\"foo\\"]: string; + ["foo"]: string; };" `); }); @@ -69,8 +69,8 @@ describe("generateTypeDeclarations", () => { }) ).toMatchInlineSnapshot(` "type Foo = { - [\\"child\\"]?: Foo; - [\\"children\\"]: Array; + ["child"]?: Foo; + ["children"]: Array; };" `); }); @@ -91,7 +91,7 @@ describe("generateTypeDeclarations", () => { }) ).toMatchInlineSnapshot(` "type MyComponentProps = { - [\\"foo\\"]: Fn; + ["foo"]: Fn; }; type Fn = (...params: any[]) => void | Fn;" @@ -147,34 +147,34 @@ describe("generateTypeDeclarations", () => { }) ).toMatchInlineSnapshot(` "type Foo = { - [\\"anyType\\"]?: any; - [\\"unknownType\\"]?: unknown; - [\\"neverType\\"]: never; - [\\"voidType\\"]: void; - [\\"nullType\\"]: null; - [\\"booleanType\\"]: boolean; - [\\"stringType\\"]: string; - [\\"numberType\\"]: number; - [\\"reactNodeType\\"]: any; - [\\"numberLiteral\\"]: 123; - [\\"stringLiteral\\"]: \\"foo\\"; - [\\"trueLiteral\\"]: true; - [\\"falseLiteral\\"]: false; - [\\"stringEnumType\\"]: \\"A\\" | \\"B\\" | \\"C\\"; - [\\"numberEnumType\\"]: 3 | 2 | 1; - [\\"arrayType\\"]: Array; - [\\"setType\\"]: Set; - [\\"tupleType\\"]: [string, number]; - [\\"recordType\\"]: Record; - [\\"unionType\\"]: string | number; - [\\"intersectionType\\"]: string & number; - [\\"functionType\\"]: (...params: any[]) => string; - [\\"promiseType\\"]: Promise; - [\\"namedType\\"]: Bar; + ["anyType"]?: any; + ["unknownType"]?: unknown; + ["neverType"]: never; + ["voidType"]: void; + ["nullType"]: null; + ["booleanType"]: boolean; + ["stringType"]: string; + ["numberType"]: number; + ["reactNodeType"]: any; + ["numberLiteral"]: 123; + ["stringLiteral"]: "foo"; + ["trueLiteral"]: true; + ["falseLiteral"]: false; + ["stringEnumType"]: "A" | "B" | "C"; + ["numberEnumType"]: 3 | 2 | 1; + ["arrayType"]: Array; + ["setType"]: Set; + ["tupleType"]: [string, number]; + ["recordType"]: Record; + ["unionType"]: string | number; + ["intersectionType"]: string & number; + ["functionType"]: (...params: any[]) => string; + ["promiseType"]: Promise; + ["namedType"]: Bar; }; type Bar = { - [\\"bar\\"]: (...params: any[]) => string; + ["bar"]: (...params: any[]) => string; };" `); }); @@ -203,15 +203,15 @@ describe("generateTypeDeclarations", () => { }) ).toMatchInlineSnapshot(` "type Foo = { - [\\"foo\\"]: Foo_2; + ["foo"]: Foo_2; }; type Foo_2 = { - [\\"bar\\"]: Foo_3; + ["bar"]: Foo_3; }; type Foo_3 = { - [\\"baz\\"]: string; + ["baz"]: string; };" `); }); @@ -233,12 +233,12 @@ describe("generateTypeDeclarations", () => { }) ).toMatchInlineSnapshot(` "type Foo = { - [\\"a\\"]: string; - [\\"b\\"]?: string; - [\\"c\\"]?: any; - [\\"d\\"]?: unknown; - [\\"e\\"]: string; - [\\"f\\"]?: string; + ["a"]: string; + ["b"]?: string; + ["c"]?: any; + ["d"]?: unknown; + ["e"]: string; + ["f"]?: string; };" `); }); @@ -271,12 +271,12 @@ describe("generateTypeDeclarations", () => { "type A = T; type B = { - [\\"foo\\"]: C; + ["foo"]: C; }; type C = { - [\\"t\\"]: T; - [\\"s\\"]: S; + ["t"]: T; + ["s"]: S; };" `); }); @@ -299,7 +299,7 @@ describe("generateTypeDeclarations", () => { "type default_2 = T; type for_2 = { - [\\"foo\\"]: string; + ["foo"]: string; };" `); }); diff --git a/type-analyzer/src/generate-type.spec.ts b/type-analyzer/src/generate-type.spec.ts index 3dd6276a56e..c36ccfbeb21 100644 --- a/type-analyzer/src/generate-type.spec.ts +++ b/type-analyzer/src/generate-type.spec.ts @@ -68,7 +68,7 @@ describe("generateType", () => { test("string literal", () => { expect(generateType(literalType("foo"), {})).toMatchInlineSnapshot( - '"\\"foo\\""' + `""foo""` ); }); @@ -92,7 +92,7 @@ describe("generateType", () => { }), {} ) - ).toMatchInlineSnapshot('"\\"A\\" | \\"B\\" | \\"C\\""'); + ).toMatchInlineSnapshot(`""A" | "B" | "C""`); }); test("number enum", () => { @@ -172,7 +172,7 @@ describe("generateType", () => { ) ).toMatchInlineSnapshot(` "{ - [\\"foo\\"]: string + ["foo"]: string }" `); }); diff --git a/vfs/package.json b/vfs/package.json index 3dd7152ed90..a06921cfeeb 100644 --- a/vfs/package.json +++ b/vfs/package.json @@ -30,7 +30,7 @@ "@types/fs-extra": "^11.0.4", "typescript": "^5.3.3", "unbuild": "^2.0.0", - "vite": "^4.5.1", - "vitest": "^0.34.6" + "vite": "^5.0.10", + "vitest": "^1.1.1" } }