-
-
-
+ | undefined = undefined,
+>() =>
+ defineComponent(
+ <
+ TName extends DeepKeys,
+ TFieldValidator extends
+ | Validator, unknown>
+ | undefined = undefined,
+ TData extends DeepValue = DeepValue<
+ TParentData,
+ TName
+ >,
+ >(
+ _props: Omit<
+ FieldComponentProps<
+ TParentData,
+ TName,
+ TFieldValidator,
+ TFormValidator,
+ TData
+ >,
+ 'form'
+ >,
+ _ctx: SetupContext<
+ EmitsOptions,
+ SlotsType<{
+ default: {
+ field: FieldApi<
+ TParentData,
+ TName,
+ TFieldValidator,
+ TFormValidator,
+ TData
+ >
+ state: FieldApi<
+ TParentData,
+ TName,
+ TFieldValidator,
+ TFormValidator,
+ TData
+ >['state']
+ }
+ }>
+ >,
+ ) =>
+ () =>
+ null,
+ )
+
+export type FieldComponent<
+ TParentData,
+ TFormValidator extends
+ | Validator
+ | undefined = undefined,
+> = ReturnType>
+
interface VueFieldApi<
TParentData,
TFormValidator extends
@@ -102,7 +162,7 @@ export function useField<
return { api: fieldApi, state: fieldState } as const
}
-type FieldComponentProps<
+export type FieldComponentProps<
TParentData,
TName extends DeepKeys,
TFieldValidator extends
@@ -114,51 +174,6 @@ type FieldComponentProps<
TData extends DeepValue = DeepValue,
> = UseFieldOptions
-export type FieldComponent<
- TParentData,
- TFormValidator extends
- | Validator
- | undefined = undefined,
-> = <
- TName extends DeepKeys,
- TFieldValidator extends
- | Validator, unknown>
- | undefined = undefined,
- TData extends DeepValue = DeepValue,
->(
- fieldOptions: Omit<
- FieldComponentProps<
- TParentData,
- TName,
- TFieldValidator,
- TFormValidator,
- TData
- >,
- 'form'
- >,
- context: SetupContext<
- {},
- SlotsType<{
- default: {
- field: FieldApi<
- TParentData,
- TName,
- TFieldValidator,
- TFormValidator,
- TData
- >
- state: FieldApi<
- TParentData,
- TName,
- TFieldValidator,
- TFormValidator,
- TData
- >['state']
- }
- }>
- >,
-) => any
-
export const Field = defineComponent(
<
TParentData,
diff --git a/packages/vue-form/src/useForm.tsx b/packages/vue-form/src/useForm.tsx
index 3b1f1589f..28d5ec7f2 100644
--- a/packages/vue-form/src/useForm.tsx
+++ b/packages/vue-form/src/useForm.tsx
@@ -7,6 +7,21 @@ import type { NoInfer } from '@tanstack/vue-store'
import type { EmitsOptions, Ref, SetupContext, SlotsType } from 'vue'
import type { FieldComponent, UseField } from './useField'
+const SubscribeFn = () =>
+ defineComponent(
+ >,>(
+ _props: {
+ selector?: (state: NoInfer>) => TSelected
+ },
+ _ctx: SetupContext<
+ EmitsOptions,
+ SlotsType<{ default: NoInfer> }>
+ >,
+ ) =>
+ () =>
+ null,
+ )
+
interface VueFormApi<
TFormData,
TFormValidator extends Validator | undefined = undefined,
@@ -16,15 +31,7 @@ interface VueFormApi<
useStore: >>(
selector?: (state: NoInfer>) => TSelected,
) => Readonly[>
- Subscribe: >>(
- props: {
- selector?: (state: NoInfer>) => TSelected
- },
- context: SetupContext<
- EmitsOptions,
- SlotsType<{ default: NoInfer> }>
- >,
- ) => any
+ Subscribe: ReturnType>
}
export function useForm<
@@ -49,7 +56,7 @@ export function useForm<
name: 'APIField',
inheritAttrs: false,
},
- )
+ ) as never
extendedApi.useField = (props) => {
const field = useField({ ...props, form: api })
return field
@@ -60,7 +67,7 @@ export function useForm<
extendedApi.Subscribe = defineComponent(
(props, context) => {
const allProps = { ...props, ...context.attrs }
- const selector = allProps.selector ?? ((state) => state)
+ const selector = allProps.selector ?? ((state: never) => state)
const data = useStore(api.store as never, selector as never)
return () => context.slots.default!(data.value)
},
@@ -68,7 +75,7 @@ export function useForm<
name: 'Subscribe',
inheritAttrs: false,
},
- )
+ ) as never
return extendedApi
})()
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 184087d70..b3f408856 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -13,25 +13,25 @@ importers:
version: 1.5.16(eslint@8.57.0)(typescript@5.4.2)
'@solidjs/testing-library':
specifier: ^0.8.6
- version: 0.8.6(@solidjs/router@0.13.0(solid-js@1.7.12))(solid-js@1.7.12)
+ version: 0.8.6(@solidjs/router@0.13.6(solid-js@1.7.12))(solid-js@1.7.12)
'@tanstack/config':
specifier: ^0.9.0
- version: 0.9.0(@types/node@20.10.6)(esbuild@0.20.2)(eslint@8.57.0)(rollup@4.18.0)(typescript@5.4.2)(vite@5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1))
+ version: 0.9.0(@types/node@20.14.10)(esbuild@0.23.0)(eslint@8.57.0)(rollup@4.18.0)(typescript@5.4.2)(vite@5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))
'@testing-library/jest-dom':
specifier: ^6.4.2
- version: 6.4.2(vitest@1.3.1(@types/node@20.10.6)(jsdom@24.0.0)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1))
+ version: 6.4.6(vitest@1.6.0(@types/node@20.14.10)(jsdom@24.0.0)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))
'@testing-library/react':
specifier: ^14.2.1
version: 14.2.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@testing-library/user-event':
specifier: ^14.5.2
- version: 14.5.2(@testing-library/dom@9.3.4)
+ version: 14.5.2(@testing-library/dom@10.3.1)
'@testing-library/vue':
- specifier: ^8.0.2
- version: 8.0.2(@vue/compiler-sfc@3.3.4)(@vue/server-renderer@3.3.4(vue@3.3.4))(vue@3.3.4)
+ specifier: ^8.1.0
+ version: 8.1.0(@vue/compiler-sfc@3.4.31)(vue@3.4.31(typescript@5.4.2))
'@types/node':
specifier: ^20.9.0
- version: 20.10.6
+ version: 20.14.10
'@types/react':
specifier: ^18.3.3
version: 18.3.3
@@ -39,8 +39,8 @@ importers:
specifier: ^18.3.0
version: 18.3.0
'@vitest/coverage-istanbul':
- specifier: ^1.3.1
- version: 1.3.1(vitest@1.3.1(@types/node@20.10.6)(jsdom@24.0.0)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1))
+ specifier: ^1.6.0
+ version: 1.6.0(vitest@1.6.0(@types/node@20.14.10)(jsdom@24.0.0)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))
eslint:
specifier: ^8.57.0
version: 8.57.0
@@ -52,7 +52,7 @@ importers:
version: 24.0.0
knip:
specifier: ^5.22.0
- version: 5.22.0(@types/node@20.10.6)(typescript@5.4.2)
+ version: 5.22.0(@types/node@20.14.10)(typescript@5.4.2)
nx:
specifier: ^19.3.0
version: 19.3.0(@swc/core@1.4.6)
@@ -70,7 +70,7 @@ importers:
version: 18.3.1(react@18.3.1)
rimraf:
specifier: ^5.0.5
- version: 5.0.5
+ version: 5.0.8
sherif:
specifier: ^0.9.0
version: 0.9.0
@@ -102,14 +102,14 @@ importers:
specifier: npm:typescript@5.3
version: typescript@5.3.3
vite:
- specifier: ^5.1.4
- version: 5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1(postcss@8.4.32))(terser@5.29.1)
+ specifier: ^5.3.3
+ version: 5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)
vitest:
- specifier: ^1.3.1
- version: 1.3.1(@types/node@20.10.6)(jsdom@24.0.0)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.10)(jsdom@24.0.0)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)
vue:
- specifier: ^3.3.4
- version: 3.3.4
+ specifier: ^3.4.31
+ version: 3.4.31(typescript@5.4.2)
examples/angular/array:
dependencies:
@@ -145,14 +145,14 @@ importers:
version: 7.8.1
tslib:
specifier: ^2.3.0
- version: 2.6.2
+ version: 2.6.3
zone.js:
specifier: ~0.14.2
version: 0.14.4
devDependencies:
'@angular-devkit/build-angular':
specifier: ^17.3.0
- version: 17.3.0(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2))(@swc/core@1.4.6)(@types/express@4.17.21)(@types/node@20.10.6)(chokidar@3.6.0)(ng-packagr@17.3.0(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2))(tslib@2.6.2)(typescript@5.4.2))(sugarss@4.0.1(postcss@8.4.35))(typescript@5.4.2)
+ version: 17.3.0(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2))(@swc/core@1.4.6)(@types/express@4.17.21)(@types/node@20.14.10)(chokidar@3.6.0)(ng-packagr@17.3.0(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2))(tslib@2.6.3)(typescript@5.4.2))(sugarss@4.0.1(postcss@8.4.35))(typescript@5.4.2)
'@angular/cli':
specifier: ^17.3.0
version: 17.3.0(chokidar@3.6.0)
@@ -197,14 +197,14 @@ importers:
version: 7.8.1
tslib:
specifier: ^2.3.0
- version: 2.6.2
+ version: 2.6.3
zone.js:
specifier: ~0.14.2
version: 0.14.4
devDependencies:
'@angular-devkit/build-angular':
specifier: ^17.3.0
- version: 17.3.0(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2))(@swc/core@1.4.6)(@types/express@4.17.21)(@types/node@20.10.6)(chokidar@3.6.0)(ng-packagr@17.3.0(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2))(tslib@2.6.2)(typescript@5.4.2))(sugarss@4.0.1)(typescript@5.4.2)
+ version: 17.3.0(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2))(@swc/core@1.4.6)(@types/express@4.17.21)(@types/node@20.14.10)(chokidar@3.6.0)(ng-packagr@17.3.0(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2))(tslib@2.6.3)(typescript@5.4.2))(sugarss@4.0.1)(typescript@5.4.2)
'@angular/cli':
specifier: ^17.3.0
version: 17.3.0(chokidar@3.6.0)
@@ -252,7 +252,7 @@ importers:
version: 7.8.1
tslib:
specifier: ^2.3.0
- version: 2.6.2
+ version: 2.6.3
valibot:
specifier: ^0.35.0
version: 0.35.0
@@ -262,7 +262,7 @@ importers:
devDependencies:
'@angular-devkit/build-angular':
specifier: ^17.3.0
- version: 17.3.0(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2))(@swc/core@1.4.6)(@types/express@4.17.21)(@types/node@20.10.6)(chokidar@3.6.0)(ng-packagr@17.3.0(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2))(tslib@2.6.2)(typescript@5.4.2))(sugarss@4.0.1)(typescript@5.4.2)
+ version: 17.3.0(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2))(@swc/core@1.4.6)(@types/express@4.17.21)(@types/node@20.14.10)(chokidar@3.6.0)(ng-packagr@17.3.0(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2))(tslib@2.6.3)(typescript@5.4.2))(sugarss@4.0.1)(typescript@5.4.2)
'@angular/cli':
specifier: ^17.3.0
version: 17.3.0(chokidar@3.6.0)
@@ -310,7 +310,7 @@ importers:
version: 7.8.1
tslib:
specifier: ^2.3.0
- version: 2.6.2
+ version: 2.6.3
yup:
specifier: ^1.3.2
version: 1.3.2
@@ -320,7 +320,7 @@ importers:
devDependencies:
'@angular-devkit/build-angular':
specifier: ^17.3.0
- version: 17.3.0(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2))(@swc/core@1.4.6)(@types/express@4.17.21)(@types/node@20.10.6)(chokidar@3.6.0)(ng-packagr@17.3.0(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2))(tslib@2.6.2)(typescript@5.4.2))(sugarss@4.0.1)(typescript@5.4.2)
+ version: 17.3.0(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2))(@swc/core@1.4.6)(@types/express@4.17.21)(@types/node@20.14.10)(chokidar@3.6.0)(ng-packagr@17.3.0(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2))(tslib@2.6.3)(typescript@5.4.2))(sugarss@4.0.1)(typescript@5.4.2)
'@angular/cli':
specifier: ^17.3.0
version: 17.3.0(chokidar@3.6.0)
@@ -368,7 +368,7 @@ importers:
version: 7.8.1
tslib:
specifier: ^2.3.0
- version: 2.6.2
+ version: 2.6.3
zod:
specifier: ^3.22.4
version: 3.22.4
@@ -378,7 +378,7 @@ importers:
devDependencies:
'@angular-devkit/build-angular':
specifier: ^17.3.0
- version: 17.3.0(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2))(@swc/core@1.4.6)(@types/express@4.17.21)(@types/node@20.10.6)(chokidar@3.6.0)(ng-packagr@17.3.0(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2))(tslib@2.6.2)(typescript@5.4.2))(sugarss@4.0.1)(typescript@5.4.2)
+ version: 17.3.0(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2))(@swc/core@1.4.6)(@types/express@4.17.21)(@types/node@20.14.10)(chokidar@3.6.0)(ng-packagr@17.3.0(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2))(tslib@2.6.3)(typescript@5.4.2))(sugarss@4.0.1)(typescript@5.4.2)
'@angular/cli':
specifier: ^17.3.0
version: 17.3.0(chokidar@3.6.0)
@@ -399,8 +399,8 @@ importers:
version: 3.1.2
devDependencies:
vite:
- specifier: ^5.1.4
- version: 5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1(postcss@8.4.32))(terser@5.29.1)
+ specifier: ^5.3.3
+ version: 5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)
examples/lit/ui-libraries:
dependencies:
@@ -415,8 +415,8 @@ importers:
version: 3.1.2
devDependencies:
vite:
- specifier: ^5.1.4
- version: 5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1(postcss@8.4.32))(terser@5.29.1)
+ specifier: ^5.3.3
+ version: 5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)
examples/react/array:
dependencies:
@@ -438,10 +438,10 @@ importers:
version: 18.3.0
'@vitejs/plugin-react':
specifier: ^4.3.0
- version: 4.3.1(vite@5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1(postcss@8.4.32))(terser@5.29.1))
+ version: 4.3.1(vite@5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))
vite:
- specifier: ^5.1.4
- version: 5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1(postcss@8.4.32))(terser@5.29.1)
+ specifier: ^5.3.3
+ version: 5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)
examples/react/next-server-actions:
dependencies:
@@ -450,7 +450,7 @@ importers:
version: link:../../../packages/react-form
next:
specifier: 15.0.0-rc.0
- version: 15.0.0-rc.0(@opentelemetry/api@1.9.0)(react-dom@19.0.0-rc-6d3110b4d9-20240531(react@19.0.0-rc-6d3110b4d9-20240531))(react@19.0.0-rc-6d3110b4d9-20240531)(sass@1.72.0)
+ version: 15.0.0-rc.0(@opentelemetry/api@1.9.0)(react-dom@19.0.0-rc-6d3110b4d9-20240531(react@19.0.0-rc-6d3110b4d9-20240531))(react@19.0.0-rc-6d3110b4d9-20240531)(sass@1.77.6)
react:
specifier: 19.0.0-rc-6d3110b4d9-20240531
version: 19.0.0-rc-6d3110b4d9-20240531
@@ -460,7 +460,7 @@ importers:
devDependencies:
'@types/node':
specifier: ^20.9.0
- version: 20.10.6
+ version: 20.14.10
'@types/react':
specifier: npm:types-react@rc
version: types-react@19.0.0-rc.1
@@ -494,10 +494,10 @@ importers:
version: 18.3.0
'@vitejs/plugin-react':
specifier: ^4.3.0
- version: 4.3.1(vite@5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1(postcss@8.4.32))(terser@5.29.1))
+ version: 4.3.1(vite@5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))
vite:
- specifier: ^5.1.4
- version: 5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1(postcss@8.4.32))(terser@5.29.1)
+ specifier: ^5.3.3
+ version: 5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)
examples/react/simple:
dependencies:
@@ -519,10 +519,10 @@ importers:
version: 18.3.0
'@vitejs/plugin-react':
specifier: ^4.3.0
- version: 4.3.1(vite@5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1(postcss@8.4.32))(terser@5.29.1))
+ version: 4.3.1(vite@5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))
vite:
- specifier: ^5.1.4
- version: 5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1(postcss@8.4.32))(terser@5.29.1)
+ specifier: ^5.3.3
+ version: 5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)
examples/react/tanstack-start:
dependencies:
@@ -537,10 +537,10 @@ importers:
version: 1.43.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@tanstack/router-vite-plugin':
specifier: ^1.41.0
- version: 1.43.1(vite@5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1))
+ version: 1.43.1(vite@5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))
'@tanstack/start':
specifier: ^1.42.1
- version: 1.43.2(@opentelemetry/api@1.9.0)(@types/node@20.10.6)(encoding@0.1.13)(ioredis@5.4.1)(less@4.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1)(typescript@5.4.2)(vite@5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1))
+ version: 1.43.2(@opentelemetry/api@1.9.0)(@types/node@20.14.10)(encoding@0.1.13)(ioredis@5.4.1)(less@4.2.0)(magicast@0.3.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)(typescript@5.4.2)(vite@5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))
react:
specifier: ^18.3.1
version: 18.3.1
@@ -549,11 +549,11 @@ importers:
version: 18.3.1(react@18.3.1)
vinxi:
specifier: ^0.3.11
- version: 0.3.12(@opentelemetry/api@1.9.0)(@types/node@20.10.6)(encoding@0.1.13)(ioredis@5.4.1)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1)
+ version: 0.3.12(@opentelemetry/api@1.9.0)(@types/node@20.14.10)(encoding@0.1.13)(ioredis@5.4.1)(less@4.2.0)(magicast@0.3.4)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)
devDependencies:
'@types/node':
specifier: ^20.9.0
- version: 20.10.6
+ version: 20.14.10
'@types/react':
specifier: ^18.3.3
version: 18.3.3
@@ -562,16 +562,16 @@ importers:
version: 18.3.0
'@vitejs/plugin-react':
specifier: ^4.3.0
- version: 4.3.1(vite@5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1(postcss@8.4.32))(terser@5.29.1))
+ version: 4.3.1(vite@5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))
typescript:
specifier: 5.4.2
version: 5.4.2
vite:
- specifier: ^5.1.4
- version: 5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1(postcss@8.4.32))(terser@5.29.1)
+ specifier: ^5.3.3
+ version: 5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)
vite-tsconfig-paths:
specifier: ^4.3.2
- version: 4.3.2(typescript@5.4.2)(vite@5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1))
+ version: 4.3.2(typescript@5.4.2)(vite@5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))
examples/react/ui-libraries:
dependencies:
@@ -620,16 +620,16 @@ importers:
version: 18.3.0
'@typescript-eslint/eslint-plugin':
specifier: ^7.13.1
- version: 7.13.1(@typescript-eslint/parser@7.13.1(eslint@8.57.0)(typescript@5.4.2))(eslint@8.57.0)(typescript@5.4.2)
+ version: 7.14.1(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.4.2))(eslint@8.57.0)(typescript@5.4.2)
'@typescript-eslint/parser':
specifier: ^7.13.1
- version: 7.13.1(eslint@8.57.0)(typescript@5.4.2)
+ version: 7.14.1(eslint@8.57.0)(typescript@5.4.2)
'@vitejs/plugin-react':
specifier: ^4.3.0
- version: 4.3.1(vite@5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1(postcss@8.4.32))(terser@5.29.1))
+ version: 4.3.1(vite@5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1(postcss@8.4.32))(terser@5.31.1))
'@vitejs/plugin-react-swc':
specifier: ^3.6.0
- version: 3.6.0(@swc/helpers@0.5.11)(vite@5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1(postcss@8.4.32))(terser@5.29.1))
+ version: 3.6.0(@swc/helpers@0.5.11)(vite@5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1(postcss@8.4.32))(terser@5.31.1))
eslint:
specifier: ^8.57.0
version: 8.57.0
@@ -643,8 +643,8 @@ importers:
specifier: 5.4.2
version: 5.4.2
vite:
- specifier: ^5.1.4
- version: 5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1(postcss@8.4.32))(terser@5.29.1)
+ specifier: ^5.3.3
+ version: 5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1(postcss@8.4.32))(terser@5.31.1)
examples/react/valibot:
dependencies:
@@ -672,10 +672,10 @@ importers:
version: 18.3.0
'@vitejs/plugin-react':
specifier: ^4.3.0
- version: 4.3.1(vite@5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1(postcss@8.4.32))(terser@5.29.1))
+ version: 4.3.1(vite@5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))
vite:
- specifier: ^5.1.4
- version: 5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1(postcss@8.4.32))(terser@5.29.1)
+ specifier: ^5.3.3
+ version: 5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)
examples/react/yup:
dependencies:
@@ -703,10 +703,10 @@ importers:
version: 18.3.0
'@vitejs/plugin-react':
specifier: ^4.3.0
- version: 4.3.1(vite@5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1(postcss@8.4.32))(terser@5.29.1))
+ version: 4.3.1(vite@5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))
vite:
- specifier: ^5.1.4
- version: 5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1(postcss@8.4.32))(terser@5.29.1)
+ specifier: ^5.3.3
+ version: 5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)
examples/react/zod:
dependencies:
@@ -734,10 +734,10 @@ importers:
version: 18.3.0
'@vitejs/plugin-react':
specifier: ^4.3.0
- version: 4.3.1(vite@5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1(postcss@8.4.32))(terser@5.29.1))
+ version: 4.3.1(vite@5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))
vite:
- specifier: ^5.1.4
- version: 5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1(postcss@8.4.32))(terser@5.29.1)
+ specifier: ^5.3.3
+ version: 5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)
examples/solid/array:
dependencies:
@@ -752,11 +752,11 @@ importers:
specifier: 5.4.2
version: 5.4.2
vite:
- specifier: ^5.1.4
- version: 5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1(postcss@8.4.32))(terser@5.29.1)
+ specifier: ^5.3.3
+ version: 5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)
vite-plugin-solid:
specifier: ^2.10.1
- version: 2.10.1(@testing-library/jest-dom@6.4.2(vitest@1.3.1(@types/node@20.10.6)(jsdom@24.0.0)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1)))(solid-js@1.7.12)(vite@5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1))
+ version: 2.10.1(@testing-library/jest-dom@6.4.6(vitest@1.6.0(@types/node@20.14.10)(jsdom@24.0.0)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)))(solid-js@1.7.12)(vite@5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))
examples/solid/simple:
dependencies:
@@ -771,11 +771,11 @@ importers:
specifier: 5.4.2
version: 5.4.2
vite:
- specifier: ^5.1.4
- version: 5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1(postcss@8.4.32))(terser@5.29.1)
+ specifier: ^5.3.3
+ version: 5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)
vite-plugin-solid:
specifier: ^2.10.1
- version: 2.10.1(@testing-library/jest-dom@6.4.2(vitest@1.3.1(@types/node@20.10.6)(jsdom@24.0.0)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1)))(solid-js@1.7.12)(vite@5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1))
+ version: 2.10.1(@testing-library/jest-dom@6.4.6(vitest@1.6.0(@types/node@20.14.10)(jsdom@24.0.0)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)))(solid-js@1.7.12)(vite@5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))
examples/solid/valibot:
dependencies:
@@ -796,11 +796,11 @@ importers:
specifier: 5.4.2
version: 5.4.2
vite:
- specifier: ^5.1.4
- version: 5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1(postcss@8.4.32))(terser@5.29.1)
+ specifier: ^5.3.3
+ version: 5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)
vite-plugin-solid:
specifier: ^2.10.1
- version: 2.10.1(@testing-library/jest-dom@6.4.2(vitest@1.3.1(@types/node@20.10.6)(jsdom@24.0.0)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1)))(solid-js@1.7.12)(vite@5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1))
+ version: 2.10.1(@testing-library/jest-dom@6.4.6(vitest@1.6.0(@types/node@20.14.10)(jsdom@24.0.0)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)))(solid-js@1.7.12)(vite@5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))
examples/solid/yup:
dependencies:
@@ -821,11 +821,11 @@ importers:
specifier: 5.4.2
version: 5.4.2
vite:
- specifier: ^5.1.4
- version: 5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1(postcss@8.4.32))(terser@5.29.1)
+ specifier: ^5.3.3
+ version: 5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)
vite-plugin-solid:
specifier: ^2.10.1
- version: 2.10.1(@testing-library/jest-dom@6.4.2(vitest@1.3.1(@types/node@20.10.6)(jsdom@24.0.0)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1)))(solid-js@1.7.12)(vite@5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1))
+ version: 2.10.1(@testing-library/jest-dom@6.4.6(vitest@1.6.0(@types/node@20.14.10)(jsdom@24.0.0)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)))(solid-js@1.7.12)(vite@5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))
examples/solid/zod:
dependencies:
@@ -846,11 +846,11 @@ importers:
specifier: 5.4.2
version: 5.4.2
vite:
- specifier: ^5.1.4
- version: 5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1(postcss@8.4.32))(terser@5.29.1)
+ specifier: ^5.3.3
+ version: 5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)
vite-plugin-solid:
specifier: ^2.10.1
- version: 2.10.1(@testing-library/jest-dom@6.4.2(vitest@1.3.1(@types/node@20.10.6)(jsdom@24.0.0)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1)))(solid-js@1.7.12)(vite@5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1))
+ version: 2.10.1(@testing-library/jest-dom@6.4.6(vitest@1.6.0(@types/node@20.14.10)(jsdom@24.0.0)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)))(solid-js@1.7.12)(vite@5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))
examples/vue/array:
dependencies:
@@ -858,21 +858,21 @@ importers:
specifier: ^0.25.2
version: link:../../../packages/vue-form
vue:
- specifier: ^3.3.4
- version: 3.3.4
+ specifier: ^3.4.31
+ version: 3.4.31(typescript@5.4.2)
devDependencies:
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1))(vue@3.3.4)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))(vue@3.4.31(typescript@5.4.2))
typescript:
specifier: 5.4.2
version: 5.4.2
vite:
- specifier: ^5.1.4
- version: 5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1(postcss@8.4.32))(terser@5.29.1)
+ specifier: ^5.3.3
+ version: 5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)
vue-tsc:
- specifier: ^2.0.6
- version: 2.0.6(typescript@5.4.2)
+ specifier: ^2.0.26
+ version: 2.0.26(typescript@5.4.2)
examples/vue/simple:
dependencies:
@@ -880,21 +880,21 @@ importers:
specifier: ^0.25.2
version: link:../../../packages/vue-form
vue:
- specifier: ^3.3.4
- version: 3.3.4
+ specifier: ^3.4.31
+ version: 3.4.31(typescript@5.4.2)
devDependencies:
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1))(vue@3.3.4)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))(vue@3.4.31(typescript@5.4.2))
typescript:
specifier: 5.4.2
version: 5.4.2
vite:
- specifier: ^5.1.4
- version: 5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1(postcss@8.4.32))(terser@5.29.1)
+ specifier: ^5.3.3
+ version: 5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)
vue-tsc:
- specifier: ^2.0.6
- version: 2.0.6(typescript@5.4.2)
+ specifier: ^2.0.26
+ version: 2.0.26(typescript@5.4.2)
examples/vue/valibot:
dependencies:
@@ -908,21 +908,21 @@ importers:
specifier: ^0.35.0
version: 0.35.0
vue:
- specifier: ^3.3.4
- version: 3.3.4
+ specifier: ^3.4.31
+ version: 3.4.31(typescript@5.4.2)
devDependencies:
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1))(vue@3.3.4)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))(vue@3.4.31(typescript@5.4.2))
typescript:
specifier: 5.4.2
version: 5.4.2
vite:
- specifier: ^5.1.4
- version: 5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1(postcss@8.4.32))(terser@5.29.1)
+ specifier: ^5.3.3
+ version: 5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)
vue-tsc:
- specifier: ^2.0.6
- version: 2.0.6(typescript@5.4.2)
+ specifier: ^2.0.26
+ version: 2.0.26(typescript@5.4.2)
examples/vue/yup:
dependencies:
@@ -933,24 +933,24 @@ importers:
specifier: ^0.25.2
version: link:../../../packages/yup-form-adapter
vue:
- specifier: ^3.3.4
- version: 3.3.4
+ specifier: ^3.4.31
+ version: 3.4.31(typescript@5.4.2)
yup:
specifier: ^1.3.2
version: 1.3.2
devDependencies:
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1))(vue@3.3.4)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))(vue@3.4.31(typescript@5.4.2))
typescript:
specifier: 5.4.2
version: 5.4.2
vite:
- specifier: ^5.1.4
- version: 5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1(postcss@8.4.32))(terser@5.29.1)
+ specifier: ^5.3.3
+ version: 5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)
vue-tsc:
- specifier: ^2.0.6
- version: 2.0.6(typescript@5.4.2)
+ specifier: ^2.0.26
+ version: 2.0.26(typescript@5.4.2)
examples/vue/zod:
dependencies:
@@ -961,24 +961,24 @@ importers:
specifier: ^0.25.2
version: link:../../../packages/zod-form-adapter
vue:
- specifier: ^3.3.4
- version: 3.3.4
+ specifier: ^3.4.31
+ version: 3.4.31(typescript@5.4.2)
zod:
specifier: ^3.22.4
version: 3.22.4
devDependencies:
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1))(vue@3.3.4)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))(vue@3.4.31(typescript@5.4.2))
typescript:
specifier: 5.4.2
version: 5.4.2
vite:
- specifier: ^5.1.4
- version: 5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1(postcss@8.4.32))(terser@5.29.1)
+ specifier: ^5.3.3
+ version: 5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)
vue-tsc:
- specifier: ^2.0.6
- version: 2.0.6(typescript@5.4.2)
+ specifier: ^2.0.26
+ version: 2.0.26(typescript@5.4.2)
packages/angular-form:
dependencies:
@@ -990,11 +990,11 @@ importers:
version: link:../form-core
tslib:
specifier: ^2.3.0
- version: 2.6.2
+ version: 2.6.3
devDependencies:
'@analogjs/vite-plugin-angular':
specifier: ^1.0.0
- version: 1.0.0(@angular-devkit/build-angular@17.3.0(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2))(@swc/core@1.4.6)(@types/express@4.17.21)(@types/node@20.10.6)(chokidar@3.6.0)(ng-packagr@17.3.0(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2))(tslib@2.6.2)(typescript@5.4.2))(sugarss@4.0.1)(typescript@5.4.2))
+ version: 1.0.0(@angular-devkit/build-angular@18.0.7(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2))(@swc/core@1.4.6)(@types/node@20.14.10)(chokidar@3.6.0)(ng-packagr@17.3.0(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2))(tslib@2.6.3)(typescript@5.4.2))(sugarss@4.0.1(postcss@8.4.38))(typescript@5.4.2))
'@angular/common':
specifier: ^17.3.0
version: 17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1)
@@ -1015,10 +1015,10 @@ importers:
version: 17.3.0(@angular/common@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(@angular/platform-browser@17.3.0(@angular/animations@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))
'@testing-library/angular':
specifier: ^15.2.0
- version: 15.2.0(@angular/common@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(@angular/platform-browser@17.3.0(@angular/animations@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/router@17.3.0(@angular/common@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(@angular/platform-browser@17.3.0(@angular/animations@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(rxjs@7.8.1))
+ version: 15.2.0(@angular/common@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(@angular/platform-browser@17.3.0(@angular/animations@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/router@18.0.6(@angular/common@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(@angular/platform-browser@17.3.0(@angular/animations@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(rxjs@7.8.1))
ng-packagr:
specifier: ^17.3.0
- version: 17.3.0(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2))(tslib@2.6.2)(typescript@5.4.2)
+ version: 17.3.0(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2))(tslib@2.6.3)(typescript@5.4.2)
typescript:
specifier: 5.4.2
version: 5.4.2
@@ -1045,7 +1045,7 @@ importers:
dependencies:
'@remix-run/node':
specifier: ^2.9.2
- version: 2.10.0(typescript@5.4.2)
+ version: 2.10.0(typescript@5.5.3)
'@tanstack/form-core':
specifier: workspace:*
version: link:../form-core
@@ -1058,7 +1058,7 @@ importers:
devDependencies:
'@tanstack/start':
specifier: ^1.42.1
- version: 1.43.2(@opentelemetry/api@1.9.0)(@types/node@20.10.6)(encoding@0.1.13)(ioredis@5.4.1)(less@4.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1)(typescript@5.4.2)(vite@5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1))
+ version: 1.43.2(@types/node@20.14.10)(ioredis@5.4.1)(less@4.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)(typescript@5.5.3)(vite@5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))
'@types/react':
specifier: ^18.3.3
version: 18.3.3
@@ -1067,7 +1067,7 @@ importers:
version: 18.3.0
'@vitejs/plugin-react':
specifier: ^4.3.0
- version: 4.3.1(vite@5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1(postcss@8.4.32))(terser@5.29.1))
+ version: 4.3.1(vite@5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))
react:
specifier: ^18.3.1
version: 18.3.1
@@ -1075,8 +1075,8 @@ importers:
specifier: ^18.3.1
version: 18.3.1(react@18.3.1)
vite:
- specifier: ^5.1.4
- version: 5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1(postcss@8.4.32))(terser@5.29.1)
+ specifier: ^5.3.3
+ version: 5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)
packages/solid-form:
dependencies:
@@ -1091,11 +1091,11 @@ importers:
specifier: ^1.7.8
version: 1.7.12
vite:
- specifier: ^5.1.4
- version: 5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1(postcss@8.4.32))(terser@5.29.1)
+ specifier: ^5.3.3
+ version: 5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)
vite-plugin-solid:
specifier: ^2.10.1
- version: 2.10.1(@testing-library/jest-dom@6.4.2(vitest@1.3.1(@types/node@20.10.6)(jsdom@24.0.0)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1)))(solid-js@1.7.12)(vite@5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1))
+ version: 2.10.1(@testing-library/jest-dom@6.4.6(vitest@1.6.0(@types/node@20.14.10)(jsdom@24.0.0)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)))(solid-js@1.7.12)(vite@5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))
packages/valibot-form-adapter:
dependencies:
@@ -1114,17 +1114,17 @@ importers:
version: link:../form-core
'@tanstack/vue-store':
specifier: ^0.5.0
- version: 0.5.0(vue@3.3.4)
+ version: 0.5.0(vue@3.4.31(typescript@5.5.3))
devDependencies:
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1))(vue@3.3.4)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))(vue@3.4.31(typescript@5.5.3))
vite:
- specifier: ^5.1.4
- version: 5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1(postcss@8.4.32))(terser@5.29.1)
+ specifier: ^5.3.3
+ version: 5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)
vue:
- specifier: ^3.3.4
- version: 3.3.4
+ specifier: ^3.4.31
+ version: 3.4.31(typescript@5.5.3)
packages/yup-form-adapter:
dependencies:
@@ -1152,8 +1152,8 @@ packages:
resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==}
engines: {node: '>=0.10.0'}
- '@adobe/css-tools@4.3.2':
- resolution: {integrity: sha512-DA5a1C0gD/pLOvhv33YMrbf2FK3oUzwNl9oOJqE4XVjuEtt6XIakRcsd7eLiOSPkp1kTRQGICTA8cKra/vFbjw==}
+ '@adobe/css-tools@4.4.0':
+ resolution: {integrity: sha512-Ff9+ksdQQB3rMncgqDK78uLznstjyfIf2Arnh22pW8kBpLs6rpKDwgnZT46hin5Hl1WzazzK64DOrhSwYpS7bQ==}
'@ampproject/remapping@2.3.0':
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
@@ -1168,6 +1168,10 @@ packages:
resolution: {integrity: sha512-2X2cswI4TIwtQxCe5U9f4jeiDjAb8r89XLpU0QwEHyZyWx02uhYHO3FDMJq/NxCS95IUAQOBGBhbD4ey4Hl9cQ==}
engines: {node: ^18.13.0 || >=20.9.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
+ '@angular-devkit/architect@0.1800.7':
+ resolution: {integrity: sha512-ZYIjdngUOjY6G2XJGHtATLr+HhJWdo7Z3ATlzQTGI9D1a02kW3UFlELQBhFIn+1o78FU6W0STZgyfBH8M7wD2w==}
+ engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
+
'@angular-devkit/build-angular@17.3.0':
resolution: {integrity: sha512-mC70mZK/liITM4VlGL6hmYPkVsZwAb+X3TxwodBl/g8p/sYijDhK/4QJHzmcHTxLYQQS6nS5CUcr9ARQFkGN2w==}
engines: {node: ^18.13.0 || >=20.9.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
@@ -1209,6 +1213,47 @@ packages:
tailwindcss:
optional: true
+ '@angular-devkit/build-angular@18.0.7':
+ resolution: {integrity: sha512-64wCCqPA7ZpawqSopnGQ9USJBt0EiejrtD7iJLA9xgIlpJhoIetxGnglPxfiBNs5RmXXTQDY+8yrUwEPA2l6cQ==}
+ engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
+ peerDependencies:
+ '@angular/compiler-cli': ^18.0.0
+ '@angular/localize': ^18.0.0
+ '@angular/platform-server': ^18.0.0
+ '@angular/service-worker': ^18.0.0
+ '@web/test-runner': ^0.18.0
+ browser-sync: ^3.0.2
+ jest: ^29.5.0
+ jest-environment-jsdom: ^29.5.0
+ karma: ^6.3.0
+ ng-packagr: ^18.0.0
+ protractor: ^7.0.0
+ tailwindcss: ^2.0.0 || ^3.0.0
+ typescript: '>=5.4 <5.5'
+ peerDependenciesMeta:
+ '@angular/localize':
+ optional: true
+ '@angular/platform-server':
+ optional: true
+ '@angular/service-worker':
+ optional: true
+ '@web/test-runner':
+ optional: true
+ browser-sync:
+ optional: true
+ jest:
+ optional: true
+ jest-environment-jsdom:
+ optional: true
+ karma:
+ optional: true
+ ng-packagr:
+ optional: true
+ protractor:
+ optional: true
+ tailwindcss:
+ optional: true
+
'@angular-devkit/build-webpack@0.1703.0':
resolution: {integrity: sha512-IEaLzV5lolURJhMKM4naW6pYTDjI5E8I+97o/kbSa0yakvGOBwg7yRmfc54T1M0Z4nmifPsj4OVRGhBaa6dgXA==}
engines: {node: ^18.13.0 || >=20.9.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
@@ -1216,6 +1261,13 @@ packages:
webpack: ^5.30.0
webpack-dev-server: ^4.0.0
+ '@angular-devkit/build-webpack@0.1800.7':
+ resolution: {integrity: sha512-UQN0VFincuhuIHch8y9rfaDbVJ8RMwIJ084geJnJNMLEbzpiRdo1t4rrcuXLN0+Fp5U0bHdHl/OGyLI9GTynWg==}
+ engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
+ peerDependencies:
+ webpack: ^5.30.0
+ webpack-dev-server: ^5.0.2
+
'@angular-devkit/core@17.3.0':
resolution: {integrity: sha512-ldErhMYq8rcFOhWQ0syQdLy6IYb/LL0erigj7gCMOf59oJgM7B13o/ZTOCvyJttUZ9IP0HB98Gi3epEuJ30VLg==}
engines: {node: ^18.13.0 || >=20.9.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
@@ -1225,6 +1277,15 @@ packages:
chokidar:
optional: true
+ '@angular-devkit/core@18.0.7':
+ resolution: {integrity: sha512-pVmuE37DNuTe3S4Lh1jg6U4dyHljiZiqI99u3gtS7PF765P4AeGlugHIYE7ztC74fYd9gy04sWnbeV+RQuBTVw==}
+ engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
+ peerDependencies:
+ chokidar: ^3.5.2
+ peerDependenciesMeta:
+ chokidar:
+ optional: true
+
'@angular-devkit/schematics@17.3.0':
resolution: {integrity: sha512-EW4Y8W/KTlvvT2fw3bh9hY7quDF2b9EaF+KftEqoDRWYbw0tlF8hWIdlfA6JxQC12d6uefh3kDNj5am0Il2oNQ==}
engines: {node: ^18.13.0 || >=20.9.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
@@ -1235,6 +1296,32 @@ packages:
peerDependencies:
'@angular/core': 17.3.0
+ '@angular/build@18.0.7':
+ resolution: {integrity: sha512-6XfLx8VHDIB6o0cAyOqX4sUok0tB24/AupAxTtQpt+fbwVOv6fj+M1dzGj+3bdopM6WzZUPiBxjk+o/3QRCEbA==}
+ engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
+ peerDependencies:
+ '@angular/compiler-cli': ^18.0.0
+ '@angular/localize': ^18.0.0
+ '@angular/platform-server': ^18.0.0
+ '@angular/service-worker': ^18.0.0
+ less: ^4.2.0
+ postcss: ^8.4.0
+ tailwindcss: ^2.0.0 || ^3.0.0
+ typescript: '>=5.4 <5.5'
+ peerDependenciesMeta:
+ '@angular/localize':
+ optional: true
+ '@angular/platform-server':
+ optional: true
+ '@angular/service-worker':
+ optional: true
+ less:
+ optional: true
+ postcss:
+ optional: true
+ tailwindcss:
+ optional: true
+
'@angular/cli@17.3.0':
resolution: {integrity: sha512-xwxlimNP4MECkdzjc0+m7lGxighcH0ncAfEo9yUo+r+4EFalB/Q7DAQPIU1xkbBk8iJwcFhGFAnS1IeLur15kQ==}
engines: {node: ^18.13.0 || >=20.9.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
@@ -1309,6 +1396,15 @@ packages:
'@angular/platform-browser': 17.3.0
rxjs: ^6.5.3 || ^7.4.0
+ '@angular/router@18.0.6':
+ resolution: {integrity: sha512-0hPs0ZVIEuf7MZd6quRCBsXEBMQvh0QHCjlj/WrRB3LSHs616mi+olApQ1DvwNZBYXfI7/qW7TQyUyNbm+xkfg==}
+ engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
+ peerDependencies:
+ '@angular/common': 18.0.6
+ '@angular/core': 18.0.6
+ '@angular/platform-browser': 18.0.6
+ rxjs: ^6.5.3 || ^7.4.0
+
'@babel/code-frame@7.24.7':
resolution: {integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==}
engines: {node: '>=6.9.0'}
@@ -1325,6 +1421,10 @@ packages:
resolution: {integrity: sha512-fQfkg0Gjkza3nf0c7/w6Xf34BW4YvzNfACRLmmb7XRLa6XHdR+K9AlJlxneFfWYf6uhOzuzZVTjF/8KfndZANw==}
engines: {node: '>=6.9.0'}
+ '@babel/core@7.24.5':
+ resolution: {integrity: sha512-tVQRucExLQ02Boi4vdPp49svNGcfL2GhdTCT9aldhXgCJVAI21EtRfBettiuLUwce/7r6bFdgs6JFkcdTiFttA==}
+ engines: {node: '>=6.9.0'}
+
'@babel/core@7.24.7':
resolution: {integrity: sha512-nykK+LEK86ahTkX/3TgauT0ikKoNCfKHEaZYTUVupJdTLzGNvrblu4u6fa7DhZONAltdf8e662t/abY8idrd/g==}
engines: {node: '>=6.9.0'}
@@ -1333,6 +1433,10 @@ packages:
resolution: {integrity: sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==}
engines: {node: '>=6.9.0'}
+ '@babel/generator@7.24.5':
+ resolution: {integrity: sha512-x32i4hEXvr+iI0NEoEfDKzlemF8AmtOP8CcrRaEcpzysWuoEb1KknpcvMsHKPONoKZiDuItklgWhB18xEhr9PA==}
+ engines: {node: '>=6.9.0'}
+
'@babel/generator@7.24.7':
resolution: {integrity: sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA==}
engines: {node: '>=6.9.0'}
@@ -1341,22 +1445,26 @@ packages:
resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-builder-binary-assignment-operator-visitor@7.22.15':
- resolution: {integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==}
+ '@babel/helper-annotate-as-pure@7.24.7':
+ resolution: {integrity: sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-builder-binary-assignment-operator-visitor@7.24.7':
+ resolution: {integrity: sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA==}
engines: {node: '>=6.9.0'}
'@babel/helper-compilation-targets@7.24.7':
resolution: {integrity: sha512-ctSdRHBi20qWOfy27RUb4Fhp07KSJ3sXcuSvTrXrc4aG8NSYDo1ici3Vhg9bg69y5bj0Mr1lh0aeEgTvc12rMg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-create-class-features-plugin@7.24.0':
- resolution: {integrity: sha512-QAH+vfvts51BCsNZ2PhY6HAggnlS6omLLFTsIpeqZk/MmJ6cW7tgz5yRv0fMJThcr6FmbMrENh1RgrWPTYA76g==}
+ '@babel/helper-create-class-features-plugin@7.24.7':
+ resolution: {integrity: sha512-kTkaDl7c9vO80zeX1rJxnuRpEsD5tA81yh11X1gQo+PhSti3JS+7qeZo9U4RHobKRiFPKaGK3svUAeb8D0Q7eg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-create-regexp-features-plugin@7.22.15':
- resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==}
+ '@babel/helper-create-regexp-features-plugin@7.24.7':
+ resolution: {integrity: sha512-03TCmXy2FtXJEZfbXDTSqq1fRJArk7lX9DOFC/47VthYcxyIOx+eXQmdo6DOQvrbpIix+KfXwvuXdFDZHxt+rA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -1366,8 +1474,8 @@ packages:
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- '@babel/helper-define-polyfill-provider@0.6.1':
- resolution: {integrity: sha512-o7SDgTJuvx5vLKD6SFvkydkSMBvahDKGiNJzG22IZYXhiqoe9efY7zocICBgzHV4IRg5wdgl2nEL/tulKIEIbA==}
+ '@babel/helper-define-polyfill-provider@0.6.2':
+ resolution: {integrity: sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
@@ -1383,8 +1491,8 @@ packages:
resolution: {integrity: sha512-MJJwhkoGy5c4ehfoRyrJ/owKeMl19U54h27YYftT0o2teQ3FJ3nQUf/I3LlJsX4l3qlw7WRXUmiyajvHXoTubQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-member-expression-to-functions@7.23.0':
- resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==}
+ '@babel/helper-member-expression-to-functions@7.24.7':
+ resolution: {integrity: sha512-LGeMaf5JN4hAT471eJdBs/GK1DoYIJ5GCtZN/EsL6KUiiDZOvO/eKE11AMZJa2zP4zk4qe9V2O/hxAmkRc8p6w==}
engines: {node: '>=6.9.0'}
'@babel/helper-module-imports@7.18.6':
@@ -1401,22 +1509,22 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-optimise-call-expression@7.22.5':
- resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==}
+ '@babel/helper-optimise-call-expression@7.24.7':
+ resolution: {integrity: sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==}
engines: {node: '>=6.9.0'}
'@babel/helper-plugin-utils@7.24.7':
resolution: {integrity: sha512-Rq76wjt7yz9AAc1KnlRKNAi/dMSVWgDRx43FHoJEbcYU6xOWaE2dVPwcdTukJrjxS65GITyfbvEYHvkirZ6uEg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-remap-async-to-generator@7.22.20':
- resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==}
+ '@babel/helper-remap-async-to-generator@7.24.7':
+ resolution: {integrity: sha512-9pKLcTlZ92hNZMQfGCHImUpDOlAgkkpqalWEeftW5FBya75k8Li2ilerxkM/uBEj01iBZXcCIB/bwvDYgWyibA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-replace-supers@7.22.20':
- resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==}
+ '@babel/helper-replace-supers@7.24.7':
+ resolution: {integrity: sha512-qTAxxBM81VEyoAY0TtLrx1oAEJc09ZK67Q9ljQToqCnA+55eNwCORaxlKyu+rNfX86o8OXRUSNUnrtsAZXM9sg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -1425,14 +1533,18 @@ packages:
resolution: {integrity: sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-skip-transparent-expression-wrappers@7.22.5':
- resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==}
+ '@babel/helper-skip-transparent-expression-wrappers@7.24.7':
+ resolution: {integrity: sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-split-export-declaration@7.22.6':
resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-split-export-declaration@7.24.5':
+ resolution: {integrity: sha512-5CHncttXohrHk8GWOFCcCl4oRD9fKosWlIRgWm4ql9VYioKm52Mk2xsmoohvm7f3JoiLSM5ZgJuRaf5QZZYd3Q==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-split-export-declaration@7.24.7':
resolution: {integrity: sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==}
engines: {node: '>=6.9.0'}
@@ -1449,8 +1561,8 @@ packages:
resolution: {integrity: sha512-yy1/KvjhV/ZCL+SM7hBrvnZJ3ZuT9OuZgIJAGpPEToANvc3iM6iDvBnRjtElWibHU6n8/LPR/EjX9EtIEYO3pw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-wrap-function@7.22.20':
- resolution: {integrity: sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==}
+ '@babel/helper-wrap-function@7.24.7':
+ resolution: {integrity: sha512-N9JIYk3TD+1vq/wn77YnJOqMtfWhNewNE+DJV4puD2X7Ew9J4JvrzrFDfTfyv5EgEXVy9/Wt8QiOErzEmv5Ifw==}
engines: {node: '>=6.9.0'}
'@babel/helpers@7.24.7':
@@ -1466,20 +1578,26 @@ packages:
engines: {node: '>=6.0.0'}
hasBin: true
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3':
- resolution: {integrity: sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==}
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.7':
+ resolution: {integrity: sha512-TiT1ss81W80eQsN+722OaeQMY/G4yTb4G9JrqeiDADs3N8lbPMGldWi9x8tyqCW5NLx1Jh2AvkE6r6QvEltMMQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.7':
+ resolution: {integrity: sha512-unaQgZ/iRu/By6tsjMZzpeBZjChYfLYry6HrEXPoz3KmfF0sVBQ1l8zKMQ4xRGLWVsjuvB8nQfjNP/DcfEOCsg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3':
- resolution: {integrity: sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==}
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7':
+ resolution: {integrity: sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.13.0
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.7':
- resolution: {integrity: sha512-LlRT7HgaifEpQA1ZgLVOIJZZFVPWN5iReq/7/JixwBtwcoeVGDBD53ZV28rrsLYOZs1Y/EHhA8N/Z6aazHR8cw==}
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.7':
+ resolution: {integrity: sha512-utA4HuR6F4Vvcr+o4DnjL8fCOlgRFGbeeBEGNg3ZTrLFw6VWG5XmUrvcQ0FjIYMU2ST4XcR2Wsp7t9qOAPnxMg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -1516,14 +1634,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-import-assertions@7.23.3':
- resolution: {integrity: sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==}
+ '@babel/plugin-syntax-import-assertions@7.24.7':
+ resolution: {integrity: sha512-Ec3NRUMoi8gskrkBe3fNmEQfxDvY8bgfQpz6jlk/41kX9eUjvpyqWU7PBP/pLAvMaSQjbMNKJmvX57jP+M6bPg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-import-attributes@7.23.3':
- resolution: {integrity: sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==}
+ '@babel/plugin-syntax-import-attributes@7.24.7':
+ resolution: {integrity: sha512-hbX+lKKeUMGihnK8nvKqmXBInriT3GVjzXKFriV3YC6APGxMbP8RZNFwy91+hocLXq90Mta+HshoB31802bb8A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1538,12 +1656,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-jsx@7.23.3':
- resolution: {integrity: sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-syntax-jsx@7.24.7':
resolution: {integrity: sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==}
engines: {node: '>=6.9.0'}
@@ -1604,8 +1716,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-transform-arrow-functions@7.23.3':
- resolution: {integrity: sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==}
+ '@babel/plugin-transform-arrow-functions@7.24.7':
+ resolution: {integrity: sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1616,212 +1728,224 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-async-generator-functions@7.24.3':
+ resolution: {integrity: sha512-Qe26CMYVjpQxJ8zxM1340JFNjZaF+ISWpr1Kt/jGo+ZTUzKkfw/pphEWbRCb+lmSM6k/TOgfYLvmbHkUQ0asIg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-async-to-generator@7.23.3':
resolution: {integrity: sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-block-scoped-functions@7.23.3':
- resolution: {integrity: sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==}
+ '@babel/plugin-transform-async-to-generator@7.24.1':
+ resolution: {integrity: sha512-AawPptitRXp1y0n4ilKcGbRYWfbbzFWz2NqNu7dacYDtFtz0CMjG64b3LQsb3KIgnf4/obcUL78hfaOS7iCUfw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-block-scoped-functions@7.24.7':
+ resolution: {integrity: sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-block-scoping@7.23.4':
- resolution: {integrity: sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==}
+ '@babel/plugin-transform-block-scoping@7.24.7':
+ resolution: {integrity: sha512-Nd5CvgMbWc+oWzBsuaMcbwjJWAcp5qzrbg69SZdHSP7AMY0AbWFqFO0WTFCA1jxhMCwodRwvRec8k0QUbZk7RQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-class-properties@7.23.3':
- resolution: {integrity: sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==}
+ '@babel/plugin-transform-class-properties@7.24.7':
+ resolution: {integrity: sha512-vKbfawVYayKcSeSR5YYzzyXvsDFWU2mD8U5TFeXtbCPLFUqe7GyCgvO6XDHzje862ODrOwy6WCPmKeWHbCFJ4w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-class-static-block@7.23.4':
- resolution: {integrity: sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ==}
+ '@babel/plugin-transform-class-static-block@7.24.7':
+ resolution: {integrity: sha512-HMXK3WbBPpZQufbMG4B46A90PkuuhN9vBCb5T8+VAHqvAqvcLi+2cKoukcpmUYkszLhScU3l1iudhrks3DggRQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
- '@babel/plugin-transform-classes@7.23.8':
- resolution: {integrity: sha512-yAYslGsY1bX6Knmg46RjiCiNSwJKv2IUC8qOdYKqMMr0491SXFhcHqOdRDeCRohOOIzwN/90C6mQ9qAKgrP7dg==}
+ '@babel/plugin-transform-classes@7.24.7':
+ resolution: {integrity: sha512-CFbbBigp8ln4FU6Bpy6g7sE8B/WmCmzvivzUC6xDAdWVsjYTXijpuuGJmYkAaoWAzcItGKT3IOAbxRItZ5HTjw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-computed-properties@7.23.3':
- resolution: {integrity: sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==}
+ '@babel/plugin-transform-computed-properties@7.24.7':
+ resolution: {integrity: sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-destructuring@7.23.3':
- resolution: {integrity: sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==}
+ '@babel/plugin-transform-destructuring@7.24.7':
+ resolution: {integrity: sha512-19eJO/8kdCQ9zISOf+SEUJM/bAUIsvY3YDnXZTupUCQ8LgrWnsG/gFB9dvXqdXnRXMAM8fvt7b0CBKQHNGy1mw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-dotall-regex@7.23.3':
- resolution: {integrity: sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==}
+ '@babel/plugin-transform-dotall-regex@7.24.7':
+ resolution: {integrity: sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-duplicate-keys@7.23.3':
- resolution: {integrity: sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==}
+ '@babel/plugin-transform-duplicate-keys@7.24.7':
+ resolution: {integrity: sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-dynamic-import@7.23.4':
- resolution: {integrity: sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ==}
+ '@babel/plugin-transform-dynamic-import@7.24.7':
+ resolution: {integrity: sha512-sc3X26PhZQDb3JhORmakcbvkeInvxz+A8oda99lj7J60QRuPZvNAk9wQlTBS1ZynelDrDmTU4pw1tyc5d5ZMUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-exponentiation-operator@7.23.3':
- resolution: {integrity: sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==}
+ '@babel/plugin-transform-exponentiation-operator@7.24.7':
+ resolution: {integrity: sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-export-namespace-from@7.23.4':
- resolution: {integrity: sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ==}
+ '@babel/plugin-transform-export-namespace-from@7.24.7':
+ resolution: {integrity: sha512-v0K9uNYsPL3oXZ/7F9NNIbAj2jv1whUEtyA6aujhekLs56R++JDQuzRcP2/z4WX5Vg/c5lE9uWZA0/iUoFhLTA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-for-of@7.23.6':
- resolution: {integrity: sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw==}
+ '@babel/plugin-transform-for-of@7.24.7':
+ resolution: {integrity: sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-function-name@7.23.3':
- resolution: {integrity: sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==}
+ '@babel/plugin-transform-function-name@7.24.7':
+ resolution: {integrity: sha512-U9FcnA821YoILngSmYkW6FjyQe2TyZD5pHt4EVIhmcTkrJw/3KqcrRSxuOo5tFZJi7TE19iDyI1u+weTI7bn2w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-json-strings@7.23.4':
- resolution: {integrity: sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg==}
+ '@babel/plugin-transform-json-strings@7.24.7':
+ resolution: {integrity: sha512-2yFnBGDvRuxAaE/f0vfBKvtnvvqU8tGpMHqMNpTN2oWMKIR3NqFkjaAgGwawhqK/pIN2T3XdjGPdaG0vDhOBGw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-literals@7.23.3':
- resolution: {integrity: sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==}
+ '@babel/plugin-transform-literals@7.24.7':
+ resolution: {integrity: sha512-vcwCbb4HDH+hWi8Pqenwnjy+UiklO4Kt1vfspcQYFhJdpthSnW8XvWGyDZWKNVrVbVViI/S7K9PDJZiUmP2fYQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-logical-assignment-operators@7.23.4':
- resolution: {integrity: sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg==}
+ '@babel/plugin-transform-logical-assignment-operators@7.24.7':
+ resolution: {integrity: sha512-4D2tpwlQ1odXmTEIFWy9ELJcZHqrStlzK/dAOWYyxX3zT0iXQB6banjgeOJQXzEc4S0E0a5A+hahxPaEFYftsw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-member-expression-literals@7.23.3':
- resolution: {integrity: sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==}
+ '@babel/plugin-transform-member-expression-literals@7.24.7':
+ resolution: {integrity: sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-amd@7.23.3':
- resolution: {integrity: sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==}
+ '@babel/plugin-transform-modules-amd@7.24.7':
+ resolution: {integrity: sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-commonjs@7.23.3':
- resolution: {integrity: sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==}
+ '@babel/plugin-transform-modules-commonjs@7.24.7':
+ resolution: {integrity: sha512-iFI8GDxtevHJ/Z22J5xQpVqFLlMNstcLXh994xifFwxxGslr2ZXXLWgtBeLctOD63UFDArdvN6Tg8RFw+aEmjQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-systemjs@7.23.9':
- resolution: {integrity: sha512-KDlPRM6sLo4o1FkiSlXoAa8edLXFsKKIda779fbLrvmeuc3itnjCtaO6RrtoaANsIJANj+Vk1zqbZIMhkCAHVw==}
+ '@babel/plugin-transform-modules-systemjs@7.24.7':
+ resolution: {integrity: sha512-GYQE0tW7YoaN13qFh3O1NCY4MPkUiAH3fiF7UcV/I3ajmDKEdG3l+UOcbAm4zUE3gnvUU+Eni7XrVKo9eO9auw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-umd@7.23.3':
- resolution: {integrity: sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==}
+ '@babel/plugin-transform-modules-umd@7.24.7':
+ resolution: {integrity: sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-named-capturing-groups-regex@7.22.5':
- resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==}
+ '@babel/plugin-transform-named-capturing-groups-regex@7.24.7':
+ resolution: {integrity: sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-transform-new-target@7.23.3':
- resolution: {integrity: sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==}
+ '@babel/plugin-transform-new-target@7.24.7':
+ resolution: {integrity: sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-nullish-coalescing-operator@7.23.4':
- resolution: {integrity: sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA==}
+ '@babel/plugin-transform-nullish-coalescing-operator@7.24.7':
+ resolution: {integrity: sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-numeric-separator@7.23.4':
- resolution: {integrity: sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q==}
+ '@babel/plugin-transform-numeric-separator@7.24.7':
+ resolution: {integrity: sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-object-rest-spread@7.24.0':
- resolution: {integrity: sha512-y/yKMm7buHpFFXfxVFS4Vk1ToRJDilIa6fKRioB9Vjichv58TDGXTvqV0dN7plobAmTW5eSEGXDngE+Mm+uO+w==}
+ '@babel/plugin-transform-object-rest-spread@7.24.7':
+ resolution: {integrity: sha512-4QrHAr0aXQCEFni2q4DqKLD31n2DL+RxcwnNjDFkSG0eNQ/xCavnRkfCUjsyqGC2OviNJvZOF/mQqZBw7i2C5Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-object-super@7.23.3':
- resolution: {integrity: sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==}
+ '@babel/plugin-transform-object-super@7.24.7':
+ resolution: {integrity: sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-optional-catch-binding@7.23.4':
- resolution: {integrity: sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A==}
+ '@babel/plugin-transform-optional-catch-binding@7.24.7':
+ resolution: {integrity: sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-optional-chaining@7.23.4':
- resolution: {integrity: sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA==}
+ '@babel/plugin-transform-optional-chaining@7.24.7':
+ resolution: {integrity: sha512-tK+0N9yd4j+x/4hxF3F0e0fu/VdcxU18y5SevtyM/PCFlQvXbR0Zmlo2eBrKtVipGNFzpq56o8WsIIKcJFUCRQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-parameters@7.23.3':
- resolution: {integrity: sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==}
+ '@babel/plugin-transform-parameters@7.24.7':
+ resolution: {integrity: sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-private-methods@7.23.3':
- resolution: {integrity: sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==}
+ '@babel/plugin-transform-private-methods@7.24.7':
+ resolution: {integrity: sha512-COTCOkG2hn4JKGEKBADkA8WNb35TGkkRbI5iT845dB+NyqgO8Hn+ajPbSnIQznneJTa3d30scb6iz/DhH8GsJQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-private-property-in-object@7.23.4':
- resolution: {integrity: sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A==}
+ '@babel/plugin-transform-private-property-in-object@7.24.7':
+ resolution: {integrity: sha512-9z76mxwnwFxMyxZWEgdgECQglF2Q7cFLm0kMf8pGwt+GSJsY0cONKj/UuO4bOH0w/uAel3ekS4ra5CEAyJRmDA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-property-literals@7.23.3':
- resolution: {integrity: sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==}
+ '@babel/plugin-transform-property-literals@7.24.7':
+ resolution: {integrity: sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1838,14 +1962,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-regenerator@7.23.3':
- resolution: {integrity: sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==}
+ '@babel/plugin-transform-regenerator@7.24.7':
+ resolution: {integrity: sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-reserved-words@7.23.3':
- resolution: {integrity: sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==}
+ '@babel/plugin-transform-reserved-words@7.24.7':
+ resolution: {integrity: sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1856,56 +1980,62 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-shorthand-properties@7.23.3':
- resolution: {integrity: sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==}
+ '@babel/plugin-transform-runtime@7.24.3':
+ resolution: {integrity: sha512-J0BuRPNlNqlMTRJ72eVptpt9VcInbxO6iP3jaxr+1NPhC0UkKL+6oeX6VXMEYdADnuqmMmsBspt4d5w8Y/TCbQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-shorthand-properties@7.24.7':
+ resolution: {integrity: sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-spread@7.23.3':
- resolution: {integrity: sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==}
+ '@babel/plugin-transform-spread@7.24.7':
+ resolution: {integrity: sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-sticky-regex@7.23.3':
- resolution: {integrity: sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==}
+ '@babel/plugin-transform-sticky-regex@7.24.7':
+ resolution: {integrity: sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-template-literals@7.23.3':
- resolution: {integrity: sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==}
+ '@babel/plugin-transform-template-literals@7.24.7':
+ resolution: {integrity: sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-typeof-symbol@7.23.3':
- resolution: {integrity: sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==}
+ '@babel/plugin-transform-typeof-symbol@7.24.7':
+ resolution: {integrity: sha512-VtR8hDy7YLB7+Pet9IarXjg/zgCMSF+1mNS/EQEiEaUPoFXCVsHG64SIxcaaI2zJgRiv+YmgaQESUfWAdbjzgg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-escapes@7.23.3':
- resolution: {integrity: sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==}
+ '@babel/plugin-transform-unicode-escapes@7.24.7':
+ resolution: {integrity: sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-property-regex@7.23.3':
- resolution: {integrity: sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==}
+ '@babel/plugin-transform-unicode-property-regex@7.24.7':
+ resolution: {integrity: sha512-uH2O4OV5M9FZYQrwc7NdVmMxQJOCCzFeYudlZSzUAHRFeOujQefa92E74TQDVskNHCzOXoigEuoyzHDhaEaK5w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-regex@7.23.3':
- resolution: {integrity: sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==}
+ '@babel/plugin-transform-unicode-regex@7.24.7':
+ resolution: {integrity: sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-sets-regex@7.23.3':
- resolution: {integrity: sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==}
+ '@babel/plugin-transform-unicode-sets-regex@7.24.7':
+ resolution: {integrity: sha512-2G8aAvF4wy1w/AGZkemprdGMRg5o6zPNhbHVImRz3lss55TYCBd6xStN19rt8XJHq20sqV0JbyWjOWwQRwV/wg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -1916,6 +2046,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/preset-env@7.24.5':
+ resolution: {integrity: sha512-UGK2ifKtcC8i5AI4cH+sbLLuLc2ktYSFJgBAXorKAsHUZmrQ1q6aQ6i3BvU24wWs2AAKqQB6kq3N9V9Gw1HiMQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/preset-modules@0.1.6-no-external-plugins':
resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==}
peerDependencies:
@@ -1928,6 +2064,14 @@ packages:
resolution: {integrity: sha512-Chk32uHMg6TnQdvw2e9IlqPpFX/6NLuK0Ys2PqLb7/gL5uFn9mXvK715FGLlOLQrcO4qIkNHkvPGktzzXexsFw==}
engines: {node: '>=6.9.0'}
+ '@babel/runtime@7.24.5':
+ resolution: {integrity: sha512-Nms86NXrsaeU9vbBJKni6gXiEXZ4CVpYVzEjDH9Sb8vmZ3UljyA1GSOJl/6LGPO8EHLuSF9H+IxNXHPX8QHJ4g==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/runtime@7.24.7':
+ resolution: {integrity: sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw==}
+ engines: {node: '>=6.9.0'}
+
'@babel/template@7.24.7':
resolution: {integrity: sha512-jYqfPrU9JTF0PmPy1tLYHW4Mp4KlgxJD9l2nP9fD6yT/ICi554DmrWBAEYpIelzjHf1msDP3PxJIRt/nFNfBig==}
engines: {node: '>=6.9.0'}
@@ -2041,6 +2185,24 @@ packages:
cpu: [ppc64]
os: [aix]
+ '@esbuild/aix-ppc64@0.21.3':
+ resolution: {integrity: sha512-yTgnwQpFVYfvvo4SvRFB0SwrW8YjOxEoT7wfMT7Ol5v7v5LDNvSGo67aExmxOb87nQNeWPVvaGBNfQ7BXcrZ9w==}
+ engines: {node: '>=12'}
+ cpu: [ppc64]
+ os: [aix]
+
+ '@esbuild/aix-ppc64@0.21.5':
+ resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==}
+ engines: {node: '>=12'}
+ cpu: [ppc64]
+ os: [aix]
+
+ '@esbuild/aix-ppc64@0.23.0':
+ resolution: {integrity: sha512-3sG8Zwa5fMcA9bgqB8AfWPQ+HFke6uD3h1s3RIwUNK8EG7a4buxvuFTs3j1IMs2NXAk9F30C/FF4vxRgQCcmoQ==}
+ engines: {node: '>=18'}
+ cpu: [ppc64]
+ os: [aix]
+
'@esbuild/android-arm64@0.18.20':
resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==}
engines: {node: '>=12'}
@@ -2065,6 +2227,24 @@ packages:
cpu: [arm64]
os: [android]
+ '@esbuild/android-arm64@0.21.3':
+ resolution: {integrity: sha512-c+ty9necz3zB1Y+d/N+mC6KVVkGUUOcm4ZmT5i/Fk5arOaY3i6CA3P5wo/7+XzV8cb4GrI/Zjp8NuOQ9Lfsosw==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [android]
+
+ '@esbuild/android-arm64@0.21.5':
+ resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [android]
+
+ '@esbuild/android-arm64@0.23.0':
+ resolution: {integrity: sha512-EuHFUYkAVfU4qBdyivULuu03FhJO4IJN9PGuABGrFy4vUuzk91P2d+npxHcFdpUnfYKy0PuV+n6bKIpHOB3prQ==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [android]
+
'@esbuild/android-arm@0.18.20':
resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==}
engines: {node: '>=12'}
@@ -2089,6 +2269,24 @@ packages:
cpu: [arm]
os: [android]
+ '@esbuild/android-arm@0.21.3':
+ resolution: {integrity: sha512-bviJOLMgurLJtF1/mAoJLxDZDL6oU5/ztMHnJQRejbJrSc9FFu0QoUoFhvi6qSKJEw9y5oGyvr9fuDtzJ30rNQ==}
+ engines: {node: '>=12'}
+ cpu: [arm]
+ os: [android]
+
+ '@esbuild/android-arm@0.21.5':
+ resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==}
+ engines: {node: '>=12'}
+ cpu: [arm]
+ os: [android]
+
+ '@esbuild/android-arm@0.23.0':
+ resolution: {integrity: sha512-+KuOHTKKyIKgEEqKbGTK8W7mPp+hKinbMBeEnNzjJGyFcWsfrXjSTNluJHCY1RqhxFurdD8uNXQDei7qDlR6+g==}
+ engines: {node: '>=18'}
+ cpu: [arm]
+ os: [android]
+
'@esbuild/android-x64@0.18.20':
resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==}
engines: {node: '>=12'}
@@ -2113,6 +2311,24 @@ packages:
cpu: [x64]
os: [android]
+ '@esbuild/android-x64@0.21.3':
+ resolution: {integrity: sha512-JReHfYCRK3FVX4Ra+y5EBH1b9e16TV2OxrPAvzMsGeES0X2Ndm9ImQRI4Ket757vhc5XBOuGperw63upesclRw==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [android]
+
+ '@esbuild/android-x64@0.21.5':
+ resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [android]
+
+ '@esbuild/android-x64@0.23.0':
+ resolution: {integrity: sha512-WRrmKidLoKDl56LsbBMhzTTBxrsVwTKdNbKDalbEZr0tcsBgCLbEtoNthOW6PX942YiYq8HzEnb4yWQMLQuipQ==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [android]
+
'@esbuild/darwin-arm64@0.18.20':
resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==}
engines: {node: '>=12'}
@@ -2137,6 +2353,24 @@ packages:
cpu: [arm64]
os: [darwin]
+ '@esbuild/darwin-arm64@0.21.3':
+ resolution: {integrity: sha512-U3fuQ0xNiAkXOmQ6w5dKpEvXQRSpHOnbw7gEfHCRXPeTKW9sBzVck6C5Yneb8LfJm0l6le4NQfkNPnWMSlTFUQ==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@esbuild/darwin-arm64@0.21.5':
+ resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@esbuild/darwin-arm64@0.23.0':
+ resolution: {integrity: sha512-YLntie/IdS31H54Ogdn+v50NuoWF5BDkEUFpiOChVa9UnKpftgwzZRrI4J132ETIi+D8n6xh9IviFV3eXdxfow==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [darwin]
+
'@esbuild/darwin-x64@0.18.20':
resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==}
engines: {node: '>=12'}
@@ -2161,6 +2395,24 @@ packages:
cpu: [x64]
os: [darwin]
+ '@esbuild/darwin-x64@0.21.3':
+ resolution: {integrity: sha512-3m1CEB7F07s19wmaMNI2KANLcnaqryJxO1fXHUV5j1rWn+wMxdUYoPyO2TnAbfRZdi7ADRwJClmOwgT13qlP3Q==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [darwin]
+
+ '@esbuild/darwin-x64@0.21.5':
+ resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [darwin]
+
+ '@esbuild/darwin-x64@0.23.0':
+ resolution: {integrity: sha512-IMQ6eme4AfznElesHUPDZ+teuGwoRmVuuixu7sv92ZkdQcPbsNHzutd+rAfaBKo8YK3IrBEi9SLLKWJdEvJniQ==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [darwin]
+
'@esbuild/freebsd-arm64@0.18.20':
resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==}
engines: {node: '>=12'}
@@ -2185,6 +2437,24 @@ packages:
cpu: [arm64]
os: [freebsd]
+ '@esbuild/freebsd-arm64@0.21.3':
+ resolution: {integrity: sha512-fsNAAl5pU6wmKHq91cHWQT0Fz0vtyE1JauMzKotrwqIKAswwP5cpHUCxZNSTuA/JlqtScq20/5KZ+TxQdovU/g==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [freebsd]
+
+ '@esbuild/freebsd-arm64@0.21.5':
+ resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [freebsd]
+
+ '@esbuild/freebsd-arm64@0.23.0':
+ resolution: {integrity: sha512-0muYWCng5vqaxobq6LB3YNtevDFSAZGlgtLoAc81PjUfiFz36n4KMpwhtAd4he8ToSI3TGyuhyx5xmiWNYZFyw==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [freebsd]
+
'@esbuild/freebsd-x64@0.18.20':
resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==}
engines: {node: '>=12'}
@@ -2209,6 +2479,24 @@ packages:
cpu: [x64]
os: [freebsd]
+ '@esbuild/freebsd-x64@0.21.3':
+ resolution: {integrity: sha512-tci+UJ4zP5EGF4rp8XlZIdq1q1a/1h9XuronfxTMCNBslpCtmk97Q/5qqy1Mu4zIc0yswN/yP/BLX+NTUC1bXA==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@esbuild/freebsd-x64@0.21.5':
+ resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@esbuild/freebsd-x64@0.23.0':
+ resolution: {integrity: sha512-XKDVu8IsD0/q3foBzsXGt/KjD/yTKBCIwOHE1XwiXmrRwrX6Hbnd5Eqn/WvDekddK21tfszBSrE/WMaZh+1buQ==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [freebsd]
+
'@esbuild/linux-arm64@0.18.20':
resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==}
engines: {node: '>=12'}
@@ -2233,6 +2521,24 @@ packages:
cpu: [arm64]
os: [linux]
+ '@esbuild/linux-arm64@0.21.3':
+ resolution: {integrity: sha512-vvG6R5g5ieB4eCJBQevyDMb31LMHthLpXTc2IGkFnPWS/GzIFDnaYFp558O+XybTmYrVjxnryru7QRleJvmZ6Q==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [linux]
+
+ '@esbuild/linux-arm64@0.21.5':
+ resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [linux]
+
+ '@esbuild/linux-arm64@0.23.0':
+ resolution: {integrity: sha512-j1t5iG8jE7BhonbsEg5d9qOYcVZv/Rv6tghaXM/Ug9xahM0nX/H2gfu6X6z11QRTMT6+aywOMA8TDkhPo8aCGw==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [linux]
+
'@esbuild/linux-arm@0.18.20':
resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==}
engines: {node: '>=12'}
@@ -2257,6 +2563,24 @@ packages:
cpu: [arm]
os: [linux]
+ '@esbuild/linux-arm@0.21.3':
+ resolution: {integrity: sha512-f6kz2QpSuyHHg01cDawj0vkyMwuIvN62UAguQfnNVzbge2uWLhA7TCXOn83DT0ZvyJmBI943MItgTovUob36SQ==}
+ engines: {node: '>=12'}
+ cpu: [arm]
+ os: [linux]
+
+ '@esbuild/linux-arm@0.21.5':
+ resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==}
+ engines: {node: '>=12'}
+ cpu: [arm]
+ os: [linux]
+
+ '@esbuild/linux-arm@0.23.0':
+ resolution: {integrity: sha512-SEELSTEtOFu5LPykzA395Mc+54RMg1EUgXP+iw2SJ72+ooMwVsgfuwXo5Fn0wXNgWZsTVHwY2cg4Vi/bOD88qw==}
+ engines: {node: '>=18'}
+ cpu: [arm]
+ os: [linux]
+
'@esbuild/linux-ia32@0.18.20':
resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==}
engines: {node: '>=12'}
@@ -2281,6 +2605,24 @@ packages:
cpu: [ia32]
os: [linux]
+ '@esbuild/linux-ia32@0.21.3':
+ resolution: {integrity: sha512-HjCWhH7K96Na+66TacDLJmOI9R8iDWDDiqe17C7znGvvE4sW1ECt9ly0AJ3dJH62jHyVqW9xpxZEU1jKdt+29A==}
+ engines: {node: '>=12'}
+ cpu: [ia32]
+ os: [linux]
+
+ '@esbuild/linux-ia32@0.21.5':
+ resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==}
+ engines: {node: '>=12'}
+ cpu: [ia32]
+ os: [linux]
+
+ '@esbuild/linux-ia32@0.23.0':
+ resolution: {integrity: sha512-P7O5Tkh2NbgIm2R6x1zGJJsnacDzTFcRWZyTTMgFdVit6E98LTxO+v8LCCLWRvPrjdzXHx9FEOA8oAZPyApWUA==}
+ engines: {node: '>=18'}
+ cpu: [ia32]
+ os: [linux]
+
'@esbuild/linux-loong64@0.18.20':
resolution: {integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==}
engines: {node: '>=12'}
@@ -2305,6 +2647,24 @@ packages:
cpu: [loong64]
os: [linux]
+ '@esbuild/linux-loong64@0.21.3':
+ resolution: {integrity: sha512-BGpimEccmHBZRcAhdlRIxMp7x9PyJxUtj7apL2IuoG9VxvU/l/v1z015nFs7Si7tXUwEsvjc1rOJdZCn4QTU+Q==}
+ engines: {node: '>=12'}
+ cpu: [loong64]
+ os: [linux]
+
+ '@esbuild/linux-loong64@0.21.5':
+ resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==}
+ engines: {node: '>=12'}
+ cpu: [loong64]
+ os: [linux]
+
+ '@esbuild/linux-loong64@0.23.0':
+ resolution: {integrity: sha512-InQwepswq6urikQiIC/kkx412fqUZudBO4SYKu0N+tGhXRWUqAx+Q+341tFV6QdBifpjYgUndV1hhMq3WeJi7A==}
+ engines: {node: '>=18'}
+ cpu: [loong64]
+ os: [linux]
+
'@esbuild/linux-mips64el@0.18.20':
resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==}
engines: {node: '>=12'}
@@ -2329,19 +2689,37 @@ packages:
cpu: [mips64el]
os: [linux]
- '@esbuild/linux-ppc64@0.18.20':
- resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==}
+ '@esbuild/linux-mips64el@0.21.3':
+ resolution: {integrity: sha512-5rMOWkp7FQGtAH3QJddP4w3s47iT20hwftqdm7b+loe95o8JU8ro3qZbhgMRy0VuFU0DizymF1pBKkn3YHWtsw==}
engines: {node: '>=12'}
- cpu: [ppc64]
+ cpu: [mips64el]
os: [linux]
- '@esbuild/linux-ppc64@0.19.11':
- resolution: {integrity: sha512-MHrZYLeCG8vXblMetWyttkdVRjQlQUb/oMgBNurVEnhj4YWOr4G5lmBfZjHYQHHN0g6yDmCAQRR8MUHldvvRDA==}
+ '@esbuild/linux-mips64el@0.21.5':
+ resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==}
engines: {node: '>=12'}
- cpu: [ppc64]
+ cpu: [mips64el]
os: [linux]
- '@esbuild/linux-ppc64@0.20.1':
+ '@esbuild/linux-mips64el@0.23.0':
+ resolution: {integrity: sha512-J9rflLtqdYrxHv2FqXE2i1ELgNjT+JFURt/uDMoPQLcjWQA5wDKgQA4t/dTqGa88ZVECKaD0TctwsUfHbVoi4w==}
+ engines: {node: '>=18'}
+ cpu: [mips64el]
+ os: [linux]
+
+ '@esbuild/linux-ppc64@0.18.20':
+ resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==}
+ engines: {node: '>=12'}
+ cpu: [ppc64]
+ os: [linux]
+
+ '@esbuild/linux-ppc64@0.19.11':
+ resolution: {integrity: sha512-MHrZYLeCG8vXblMetWyttkdVRjQlQUb/oMgBNurVEnhj4YWOr4G5lmBfZjHYQHHN0g6yDmCAQRR8MUHldvvRDA==}
+ engines: {node: '>=12'}
+ cpu: [ppc64]
+ os: [linux]
+
+ '@esbuild/linux-ppc64@0.20.1':
resolution: {integrity: sha512-b+yuD1IUeL+Y93PmFZDZFIElwbmFfIKLKlYI8M6tRyzE6u7oEP7onGk0vZRh8wfVGC2dZoy0EqX1V8qok4qHaw==}
engines: {node: '>=12'}
cpu: [ppc64]
@@ -2353,6 +2731,24 @@ packages:
cpu: [ppc64]
os: [linux]
+ '@esbuild/linux-ppc64@0.21.3':
+ resolution: {integrity: sha512-h0zj1ldel89V5sjPLo5H1SyMzp4VrgN1tPkN29TmjvO1/r0MuMRwJxL8QY05SmfsZRs6TF0c/IDH3u7XYYmbAg==}
+ engines: {node: '>=12'}
+ cpu: [ppc64]
+ os: [linux]
+
+ '@esbuild/linux-ppc64@0.21.5':
+ resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==}
+ engines: {node: '>=12'}
+ cpu: [ppc64]
+ os: [linux]
+
+ '@esbuild/linux-ppc64@0.23.0':
+ resolution: {integrity: sha512-cShCXtEOVc5GxU0fM+dsFD10qZ5UpcQ8AM22bYj0u/yaAykWnqXJDpd77ublcX6vdDsWLuweeuSNZk4yUxZwtw==}
+ engines: {node: '>=18'}
+ cpu: [ppc64]
+ os: [linux]
+
'@esbuild/linux-riscv64@0.18.20':
resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==}
engines: {node: '>=12'}
@@ -2377,6 +2773,24 @@ packages:
cpu: [riscv64]
os: [linux]
+ '@esbuild/linux-riscv64@0.21.3':
+ resolution: {integrity: sha512-dkAKcTsTJ+CRX6bnO17qDJbLoW37npd5gSNtSzjYQr0svghLJYGYB0NF1SNcU1vDcjXLYS5pO4qOW4YbFama4A==}
+ engines: {node: '>=12'}
+ cpu: [riscv64]
+ os: [linux]
+
+ '@esbuild/linux-riscv64@0.21.5':
+ resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==}
+ engines: {node: '>=12'}
+ cpu: [riscv64]
+ os: [linux]
+
+ '@esbuild/linux-riscv64@0.23.0':
+ resolution: {integrity: sha512-HEtaN7Y5UB4tZPeQmgz/UhzoEyYftbMXrBCUjINGjh3uil+rB/QzzpMshz3cNUxqXN7Vr93zzVtpIDL99t9aRw==}
+ engines: {node: '>=18'}
+ cpu: [riscv64]
+ os: [linux]
+
'@esbuild/linux-s390x@0.18.20':
resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==}
engines: {node: '>=12'}
@@ -2401,6 +2815,24 @@ packages:
cpu: [s390x]
os: [linux]
+ '@esbuild/linux-s390x@0.21.3':
+ resolution: {integrity: sha512-vnD1YUkovEdnZWEuMmy2X2JmzsHQqPpZElXx6dxENcIwTu+Cu5ERax6+Ke1QsE814Zf3c6rxCfwQdCTQ7tPuXA==}
+ engines: {node: '>=12'}
+ cpu: [s390x]
+ os: [linux]
+
+ '@esbuild/linux-s390x@0.21.5':
+ resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==}
+ engines: {node: '>=12'}
+ cpu: [s390x]
+ os: [linux]
+
+ '@esbuild/linux-s390x@0.23.0':
+ resolution: {integrity: sha512-WDi3+NVAuyjg/Wxi+o5KPqRbZY0QhI9TjrEEm+8dmpY9Xir8+HE/HNx2JoLckhKbFopW0RdO2D72w8trZOV+Wg==}
+ engines: {node: '>=18'}
+ cpu: [s390x]
+ os: [linux]
+
'@esbuild/linux-x64@0.18.20':
resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==}
engines: {node: '>=12'}
@@ -2425,6 +2857,24 @@ packages:
cpu: [x64]
os: [linux]
+ '@esbuild/linux-x64@0.21.3':
+ resolution: {integrity: sha512-IOXOIm9WaK7plL2gMhsWJd+l2bfrhfilv0uPTptoRoSb2p09RghhQQp9YY6ZJhk/kqmeRt6siRdMSLLwzuT0KQ==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [linux]
+
+ '@esbuild/linux-x64@0.21.5':
+ resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [linux]
+
+ '@esbuild/linux-x64@0.23.0':
+ resolution: {integrity: sha512-a3pMQhUEJkITgAw6e0bWA+F+vFtCciMjW/LPtoj99MhVt+Mfb6bbL9hu2wmTZgNd994qTAEw+U/r6k3qHWWaOQ==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [linux]
+
'@esbuild/netbsd-x64@0.18.20':
resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==}
engines: {node: '>=12'}
@@ -2449,6 +2899,30 @@ packages:
cpu: [x64]
os: [netbsd]
+ '@esbuild/netbsd-x64@0.21.3':
+ resolution: {integrity: sha512-uTgCwsvQ5+vCQnqM//EfDSuomo2LhdWhFPS8VL8xKf+PKTCrcT/2kPPoWMTs22aB63MLdGMJiE3f1PHvCDmUOw==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [netbsd]
+
+ '@esbuild/netbsd-x64@0.21.5':
+ resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [netbsd]
+
+ '@esbuild/netbsd-x64@0.23.0':
+ resolution: {integrity: sha512-cRK+YDem7lFTs2Q5nEv/HHc4LnrfBCbH5+JHu6wm2eP+d8OZNoSMYgPZJq78vqQ9g+9+nMuIsAO7skzphRXHyw==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [netbsd]
+
+ '@esbuild/openbsd-arm64@0.23.0':
+ resolution: {integrity: sha512-suXjq53gERueVWu0OKxzWqk7NxiUWSUlrxoZK7usiF50C6ipColGR5qie2496iKGYNLhDZkPxBI3erbnYkU0rQ==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [openbsd]
+
'@esbuild/openbsd-x64@0.18.20':
resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==}
engines: {node: '>=12'}
@@ -2473,6 +2947,24 @@ packages:
cpu: [x64]
os: [openbsd]
+ '@esbuild/openbsd-x64@0.21.3':
+ resolution: {integrity: sha512-vNAkR17Ub2MgEud2Wag/OE4HTSI6zlb291UYzHez/psiKarp0J8PKGDnAhMBcHFoOHMXHfExzmjMojJNbAStrQ==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [openbsd]
+
+ '@esbuild/openbsd-x64@0.21.5':
+ resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [openbsd]
+
+ '@esbuild/openbsd-x64@0.23.0':
+ resolution: {integrity: sha512-6p3nHpby0DM/v15IFKMjAaayFhqnXV52aEmv1whZHX56pdkK+MEaLoQWj+H42ssFarP1PcomVhbsR4pkz09qBg==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [openbsd]
+
'@esbuild/sunos-x64@0.18.20':
resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==}
engines: {node: '>=12'}
@@ -2497,6 +2989,24 @@ packages:
cpu: [x64]
os: [sunos]
+ '@esbuild/sunos-x64@0.21.3':
+ resolution: {integrity: sha512-W8H9jlGiSBomkgmouaRoTXo49j4w4Kfbl6I1bIdO/vT0+0u4f20ko3ELzV3hPI6XV6JNBVX+8BC+ajHkvffIJA==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [sunos]
+
+ '@esbuild/sunos-x64@0.21.5':
+ resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [sunos]
+
+ '@esbuild/sunos-x64@0.23.0':
+ resolution: {integrity: sha512-BFelBGfrBwk6LVrmFzCq1u1dZbG4zy/Kp93w2+y83Q5UGYF1d8sCzeLI9NXjKyujjBBniQa8R8PzLFAUrSM9OA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [sunos]
+
'@esbuild/win32-arm64@0.18.20':
resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==}
engines: {node: '>=12'}
@@ -2521,6 +3031,24 @@ packages:
cpu: [arm64]
os: [win32]
+ '@esbuild/win32-arm64@0.21.3':
+ resolution: {integrity: sha512-EjEomwyLSCg8Ag3LDILIqYCZAq/y3diJ04PnqGRgq8/4O3VNlXyMd54j/saShaN4h5o5mivOjAzmU6C3X4v0xw==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [win32]
+
+ '@esbuild/win32-arm64@0.21.5':
+ resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [win32]
+
+ '@esbuild/win32-arm64@0.23.0':
+ resolution: {integrity: sha512-lY6AC8p4Cnb7xYHuIxQ6iYPe6MfO2CC43XXKo9nBXDb35krYt7KGhQnOkRGar5psxYkircpCqfbNDB4uJbS2jQ==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [win32]
+
'@esbuild/win32-ia32@0.18.20':
resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==}
engines: {node: '>=12'}
@@ -2545,6 +3073,24 @@ packages:
cpu: [ia32]
os: [win32]
+ '@esbuild/win32-ia32@0.21.3':
+ resolution: {integrity: sha512-WGiE/GgbsEwR33++5rzjiYsKyHywE8QSZPF7Rfx9EBfK3Qn3xyR6IjyCr5Uk38Kg8fG4/2phN7sXp4NPWd3fcw==}
+ engines: {node: '>=12'}
+ cpu: [ia32]
+ os: [win32]
+
+ '@esbuild/win32-ia32@0.21.5':
+ resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==}
+ engines: {node: '>=12'}
+ cpu: [ia32]
+ os: [win32]
+
+ '@esbuild/win32-ia32@0.23.0':
+ resolution: {integrity: sha512-7L1bHlOTcO4ByvI7OXVI5pNN6HSu6pUQq9yodga8izeuB1KcT2UkHaH6118QJwopExPn0rMHIseCTx1CRo/uNA==}
+ engines: {node: '>=18'}
+ cpu: [ia32]
+ os: [win32]
+
'@esbuild/win32-x64@0.18.20':
resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==}
engines: {node: '>=12'}
@@ -2569,6 +3115,24 @@ packages:
cpu: [x64]
os: [win32]
+ '@esbuild/win32-x64@0.21.3':
+ resolution: {integrity: sha512-xRxC0jaJWDLYvcUvjQmHCJSfMrgmUuvsoXgDeU/wTorQ1ngDdUBuFtgY3W1Pc5sprGAvZBtWdJX7RPg/iZZUqA==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [win32]
+
+ '@esbuild/win32-x64@0.21.5':
+ resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [win32]
+
+ '@esbuild/win32-x64@0.23.0':
+ resolution: {integrity: sha512-Arm+WgUFLUATuoxCJcahGuk6Yj9Pzxd6l11Zb/2aAuv5kWWvvfhLFo2fni4uSK5vzlUdCGZ/BdV5tH8klj8p8g==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [win32]
+
'@eslint-community/eslint-utils@4.4.0':
resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -2785,6 +3349,10 @@ packages:
cpu: [x64]
os: [win32]
+ '@inquirer/figures@1.0.3':
+ resolution: {integrity: sha512-ErXXzENMH5pJt5/ssXV0DfWUZqly8nGzf0UcBV9xTnP+KyffE2mqyxIMBrZ8ijQck2nU0TQm40EQB53YreyWHw==}
+ engines: {node: '>=18'}
+
'@ioredis/commands@1.2.0':
resolution: {integrity: sha512-Sx1pU8EM64o2BrqNpEO1CNLtKQwyhuXuqyfH7oGKCk+1a33d2r5saW8zNwm3j6BTExtjrv2BxTgzzkMwts6vGg==}
@@ -2828,6 +3396,24 @@ packages:
'@js-sdsl/ordered-map@4.4.2':
resolution: {integrity: sha512-iUKgm52T8HOE/makSxjqoWhe95ZJA1/G1sYsGev2JDKUSS14KAgg1LHb+Ba+IPow0xflbnSkOsZcO08C7w1gYw==}
+ '@jsonjoy.com/base64@1.1.2':
+ resolution: {integrity: sha512-q6XAnWQDIMA3+FTiOYajoYqySkO+JSat0ytXGSuRdq9uXE7o92gzuQwQM14xaCRlBLGq3v5miDGC4vkVTn54xA==}
+ engines: {node: '>=10.0'}
+ peerDependencies:
+ tslib: '2'
+
+ '@jsonjoy.com/json-pack@1.0.4':
+ resolution: {integrity: sha512-aOcSN4MeAtFROysrbqG137b7gaDDSmVrl5mpo6sT/w+kcXpWnzhMjmY/Fh/sDx26NBxyIE7MB1seqLeCAzy9Sg==}
+ engines: {node: '>=10.0'}
+ peerDependencies:
+ tslib: '2'
+
+ '@jsonjoy.com/util@1.2.0':
+ resolution: {integrity: sha512-4B8B+3vFsY4eo33DMKyJPlQ3sBMpPFUZK2dr3O3rXrOGKKbYG44J0XSFkDo1VOQiri5HFEhIeVvItjR2xcazmg==}
+ engines: {node: '>=10.0'}
+ peerDependencies:
+ tslib: '2'
+
'@kwsites/file-exists@1.1.1':
resolution: {integrity: sha512-m9/5YGR18lIwxSFDwfE3oA7bWuq9kdau6ugN4H2rJeyhFQZcG9AgSHkQtSD15a8WvTgfz9aikZMrKPHvbpqFiw==}
@@ -2847,6 +3433,36 @@ packages:
resolution: {integrity: sha512-/gKJun8NNiWGZJkGzI/Ragc53cOdcLNdzjLaIa+GEjguQs0ulsurx8WN0jijdK9yPqDvziX995sMRLyLt1uZMQ==}
engines: {node: '>= 0.4'}
+ '@lmdb/lmdb-darwin-arm64@3.0.8':
+ resolution: {integrity: sha512-+lFwFvU+zQ9zVIFETNtmW++syh3Ps5JS8MPQ8zOYtQZoU+dTR8ivWHTaE2QVk1JG2payGDLUAvpndLAjGMdeeA==}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@lmdb/lmdb-darwin-x64@3.0.8':
+ resolution: {integrity: sha512-T98rfsgfdQMS5/mqdsPb6oHSJ+iBYNa+PQDLtXLh6rzTEBsYP9x2uXxIj6VS4qXVDWXVi8rv85NCOG+UBOsHXQ==}
+ cpu: [x64]
+ os: [darwin]
+
+ '@lmdb/lmdb-linux-arm64@3.0.8':
+ resolution: {integrity: sha512-uEBGCQIChsixpykL0pjCxfF64btv64vzsb1NoM5u0qvabKvKEvErhXGoqovyldDu9u1T/fswD8Kf6ih0vJEvDQ==}
+ cpu: [arm64]
+ os: [linux]
+
+ '@lmdb/lmdb-linux-arm@3.0.8':
+ resolution: {integrity: sha512-gVNCi3bYWatdPMeFpFjuZl6bzVL55FkeZU3sPeU+NsMRXC+Zl3qOx3M6cM4OMlJWbhHjYjf2b8q83K0mczaiWQ==}
+ cpu: [arm]
+ os: [linux]
+
+ '@lmdb/lmdb-linux-x64@3.0.8':
+ resolution: {integrity: sha512-6v0B4sa9ulNezmDZtVpLjNHmA0qZzUl3001YJ2RF0naxsuv/Jq/xEwNYpOzfcdizHfpCE0oBkWzk/r+Slr+0zw==}
+ cpu: [x64]
+ os: [linux]
+
+ '@lmdb/lmdb-win32-x64@3.0.8':
+ resolution: {integrity: sha512-lDLGRIMqdwYD39vinwNqqZUxCdL2m2iIdn+0HyQgIHEiT0g5rIAlzaMKzoGWon5NQumfxXFk9y0DarttkR7C1w==}
+ cpu: [x64]
+ os: [win32]
+
'@mantine/core@7.3.2':
resolution: {integrity: sha512-CwAuQogVLcLR7O9e1eOgi3gtk4XX6cnaqevAxzJJpIOIyCnHiQ3cEGINVXyUUjUUipBlvK3sqz3NPGJ2ekLFDQ==}
peerDependencies:
@@ -2879,6 +3495,36 @@ packages:
'@microsoft/tsdoc@0.14.2':
resolution: {integrity: sha512-9b8mPpKrfeGRuhFH5iO1iwCLeIIsV6+H1sRfxbkoGXIyQE2BTsPd9zqSqQJ+pv5sJ/hT5M1zvOFL02MnEezFug==}
+ '@msgpackr-extract/msgpackr-extract-darwin-arm64@3.0.3':
+ resolution: {integrity: sha512-QZHtlVgbAdy2zAqNA9Gu1UpIuI8Xvsd1v8ic6B2pZmeFnFcMWiPLfWXh7TVw4eGEZ/C9TH281KwhVoeQUKbyjw==}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@msgpackr-extract/msgpackr-extract-darwin-x64@3.0.3':
+ resolution: {integrity: sha512-mdzd3AVzYKuUmiWOQ8GNhl64/IoFGol569zNRdkLReh6LRLHOXxU4U8eq0JwaD8iFHdVGqSy4IjFL4reoWCDFw==}
+ cpu: [x64]
+ os: [darwin]
+
+ '@msgpackr-extract/msgpackr-extract-linux-arm64@3.0.3':
+ resolution: {integrity: sha512-YxQL+ax0XqBJDZiKimS2XQaf+2wDGVa1enVRGzEvLLVFeqa5kx2bWbtcSXgsxjQB7nRqqIGFIcLteF/sHeVtQg==}
+ cpu: [arm64]
+ os: [linux]
+
+ '@msgpackr-extract/msgpackr-extract-linux-arm@3.0.3':
+ resolution: {integrity: sha512-fg0uy/dG/nZEXfYilKoRe7yALaNmHoYeIoJuJ7KJ+YyU2bvY8vPv27f7UKhGRpY6euFYqEVhxCFZgAUNQBM3nw==}
+ cpu: [arm]
+ os: [linux]
+
+ '@msgpackr-extract/msgpackr-extract-linux-x64@3.0.3':
+ resolution: {integrity: sha512-cvwNfbP07pKUfq1uH+S6KJ7dT9K8WOE4ZiAcsrSes+UY55E/0jLYc+vq+DO7jlmqRb5zAggExKm0H7O/CBaesg==}
+ cpu: [x64]
+ os: [linux]
+
+ '@msgpackr-extract/msgpackr-extract-win32-x64@3.0.3':
+ resolution: {integrity: sha512-x0fWaQtYp4E6sktbsdAqnehxDgEc/VwM7uLsRCYWaiGu0ykYdZPiS8zCWdnjHwyiumousxfBm4SO31eXqwEZhQ==}
+ cpu: [x64]
+ os: [win32]
+
'@mui/base@5.0.0-beta.29':
resolution: {integrity: sha512-OXfUssYrB6ch/xpBVHMKAjThPlI9VyGGKdvQLMXef2j39wXfcxPlUVQlwia/lmE3rxWIGvbwkZsDtNYzLMsDUg==}
engines: {node: '>=12.0.0'}
@@ -3044,6 +3690,14 @@ packages:
typescript: '>=5.2 <5.5'
webpack: ^5.54.0
+ '@ngtools/webpack@18.0.7':
+ resolution: {integrity: sha512-lXTy+SpLpoO5verX7TGTxV3sbD9MGWxMwJGdXA7DwZcVtDe5t38ZntzJUm7OpxWjRZ/OJn6JLmURNLcVNHzp9g==}
+ engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
+ peerDependencies:
+ '@angular/compiler-cli': ^18.0.0
+ typescript: '>=5.4 <5.5'
+ webpack: ^5.54.0
+
'@nodelib/fs.scandir@2.1.5':
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
engines: {node: '>= 8'}
@@ -3072,8 +3726,8 @@ packages:
resolution: {integrity: sha512-H4FrOVtNyWC8MUwL3UfjOsAihHvT1Pe8POj3JvjXhSTJipsZMtgUALCT4mGyYZNxymkUfOw3PUj6dE4QPp6osQ==}
engines: {node: ^16.14.0 || >=18.0.0}
- '@npmcli/fs@3.1.0':
- resolution: {integrity: sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==}
+ '@npmcli/fs@3.1.1':
+ resolution: {integrity: sha512-q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
'@npmcli/git@5.0.4':
@@ -3533,168 +4187,88 @@ packages:
rollup:
optional: true
- '@rollup/rollup-android-arm-eabi@4.17.1':
- resolution: {integrity: sha512-P6Wg856Ou/DLpR+O0ZLneNmrv7QpqBg+hK4wE05ijbC/t349BRfMfx+UFj5Ha3fCFopIa6iSZlpdaB4agkWp2Q==}
- cpu: [arm]
- os: [android]
-
'@rollup/rollup-android-arm-eabi@4.18.0':
resolution: {integrity: sha512-Tya6xypR10giZV1XzxmH5wr25VcZSncG0pZIjfePT0OVBvqNEurzValetGNarVrGiq66EBVAFn15iYX4w6FKgQ==}
cpu: [arm]
os: [android]
- '@rollup/rollup-android-arm64@4.17.1':
- resolution: {integrity: sha512-piwZDjuW2WiHr05djVdUkrG5JbjnGbtx8BXQchYCMfib/nhjzWoiScelZ+s5IJI7lecrwSxHCzW026MWBL+oJQ==}
- cpu: [arm64]
- os: [android]
-
'@rollup/rollup-android-arm64@4.18.0':
resolution: {integrity: sha512-avCea0RAP03lTsDhEyfy+hpfr85KfyTctMADqHVhLAF3MlIkq83CP8UfAHUssgXTYd+6er6PaAhx/QGv4L1EiA==}
cpu: [arm64]
os: [android]
- '@rollup/rollup-darwin-arm64@4.17.1':
- resolution: {integrity: sha512-LsZXXIsN5Q460cKDT4Y+bzoPDhBmO5DTr7wP80d+2EnYlxSgkwdPfE3hbE+Fk8dtya+8092N9srjBTJ0di8RIA==}
- cpu: [arm64]
- os: [darwin]
-
'@rollup/rollup-darwin-arm64@4.18.0':
resolution: {integrity: sha512-IWfdwU7KDSm07Ty0PuA/W2JYoZ4iTj3TUQjkVsO/6U+4I1jN5lcR71ZEvRh52sDOERdnNhhHU57UITXz5jC1/w==}
cpu: [arm64]
os: [darwin]
- '@rollup/rollup-darwin-x64@4.17.1':
- resolution: {integrity: sha512-S7TYNQpWXB9APkxu/SLmYHezWwCoZRA9QLgrDeml+SR2A1LLPD2DBUdUlvmCF7FUpRMKvbeeWky+iizQj65Etw==}
- cpu: [x64]
- os: [darwin]
-
'@rollup/rollup-darwin-x64@4.18.0':
resolution: {integrity: sha512-n2LMsUz7Ynu7DoQrSQkBf8iNrjOGyPLrdSg802vk6XT3FtsgX6JbE8IHRvposskFm9SNxzkLYGSq9QdpLYpRNA==}
cpu: [x64]
os: [darwin]
- '@rollup/rollup-linux-arm-gnueabihf@4.17.1':
- resolution: {integrity: sha512-Lq2JR5a5jsA5um2ZoLiXXEaOagnVyCpCW7xvlcqHC7y46tLwTEgUSTM3a2TfmmTMmdqv+jknUioWXlmxYxE9Yw==}
- cpu: [arm]
- os: [linux]
-
'@rollup/rollup-linux-arm-gnueabihf@4.18.0':
resolution: {integrity: sha512-C/zbRYRXFjWvz9Z4haRxcTdnkPt1BtCkz+7RtBSuNmKzMzp3ZxdM28Mpccn6pt28/UWUCTXa+b0Mx1k3g6NOMA==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm-musleabihf@4.17.1':
- resolution: {integrity: sha512-9BfzwyPNV0IizQoR+5HTNBGkh1KXE8BqU0DBkqMngmyFW7BfuIZyMjQ0s6igJEiPSBvT3ZcnIFohZ19OqjhDPg==}
- cpu: [arm]
- os: [linux]
-
'@rollup/rollup-linux-arm-musleabihf@4.18.0':
resolution: {integrity: sha512-l3m9ewPgjQSXrUMHg93vt0hYCGnrMOcUpTz6FLtbwljo2HluS4zTXFy2571YQbisTnfTKPZ01u/ukJdQTLGh9A==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm64-gnu@4.17.1':
- resolution: {integrity: sha512-e2uWaoxo/rtzA52OifrTSXTvJhAXb0XeRkz4CdHBK2KtxrFmuU/uNd544Ogkpu938BzEfvmWs8NZ8Axhw33FDw==}
- cpu: [arm64]
- os: [linux]
-
'@rollup/rollup-linux-arm64-gnu@4.18.0':
resolution: {integrity: sha512-rJ5D47d8WD7J+7STKdCUAgmQk49xuFrRi9pZkWoRD1UeSMakbcepWXPF8ycChBoAqs1pb2wzvbY6Q33WmN2ftw==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-arm64-musl@4.17.1':
- resolution: {integrity: sha512-ekggix/Bc/d/60H1Mi4YeYb/7dbal1kEDZ6sIFVAE8pUSx7PiWeEh+NWbL7bGu0X68BBIkgF3ibRJe1oFTksQQ==}
- cpu: [arm64]
- os: [linux]
-
'@rollup/rollup-linux-arm64-musl@4.18.0':
resolution: {integrity: sha512-be6Yx37b24ZwxQ+wOQXXLZqpq4jTckJhtGlWGZs68TgdKXJgw54lUUoFYrg6Zs/kjzAQwEwYbp8JxZVzZLRepQ==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-powerpc64le-gnu@4.17.1':
- resolution: {integrity: sha512-UGV0dUo/xCv4pkr/C8KY7XLFwBNnvladt8q+VmdKrw/3RUd3rD0TptwjisvE2TTnnlENtuY4/PZuoOYRiGp8Gw==}
- cpu: [ppc64]
- os: [linux]
-
'@rollup/rollup-linux-powerpc64le-gnu@4.18.0':
resolution: {integrity: sha512-hNVMQK+qrA9Todu9+wqrXOHxFiD5YmdEi3paj6vP02Kx1hjd2LLYR2eaN7DsEshg09+9uzWi2W18MJDlG0cxJA==}
cpu: [ppc64]
os: [linux]
- '@rollup/rollup-linux-riscv64-gnu@4.17.1':
- resolution: {integrity: sha512-gEYmYYHaehdvX46mwXrU49vD6Euf1Bxhq9pPb82cbUU9UT2NV+RSckQ5tKWOnNXZixKsy8/cPGtiUWqzPuAcXQ==}
- cpu: [riscv64]
- os: [linux]
-
'@rollup/rollup-linux-riscv64-gnu@4.18.0':
resolution: {integrity: sha512-ROCM7i+m1NfdrsmvwSzoxp9HFtmKGHEqu5NNDiZWQtXLA8S5HBCkVvKAxJ8U+CVctHwV2Gb5VUaK7UAkzhDjlg==}
cpu: [riscv64]
os: [linux]
- '@rollup/rollup-linux-s390x-gnu@4.17.1':
- resolution: {integrity: sha512-xeae5pMAxHFp6yX5vajInG2toST5lsCTrckSRUFwNgzYqnUjNBcQyqk1bXUxX5yhjWFl2Mnz3F8vQjl+2FRIcw==}
- cpu: [s390x]
- os: [linux]
-
'@rollup/rollup-linux-s390x-gnu@4.18.0':
resolution: {integrity: sha512-0UyyRHyDN42QL+NbqevXIIUnKA47A+45WyasO+y2bGJ1mhQrfrtXUpTxCOrfxCR4esV3/RLYyucGVPiUsO8xjg==}
cpu: [s390x]
os: [linux]
- '@rollup/rollup-linux-x64-gnu@4.17.1':
- resolution: {integrity: sha512-AsdnINQoDWfKpBzCPqQWxSPdAWzSgnYbrJYtn6W0H2E9It5bZss99PiLA8CgmDRfvKygt20UpZ3xkhFlIfX9zQ==}
- cpu: [x64]
- os: [linux]
-
'@rollup/rollup-linux-x64-gnu@4.18.0':
resolution: {integrity: sha512-xuglR2rBVHA5UsI8h8UbX4VJ470PtGCf5Vpswh7p2ukaqBGFTnsfzxUBetoWBWymHMxbIG0Cmx7Y9qDZzr648w==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-linux-x64-musl@4.17.1':
- resolution: {integrity: sha512-KoB4fyKXTR+wYENkIG3fFF+5G6N4GFvzYx8Jax8BR4vmddtuqSb5oQmYu2Uu067vT/Fod7gxeQYKupm8gAcMSQ==}
- cpu: [x64]
- os: [linux]
-
'@rollup/rollup-linux-x64-musl@4.18.0':
resolution: {integrity: sha512-LKaqQL9osY/ir2geuLVvRRs+utWUNilzdE90TpyoX0eNqPzWjRm14oMEE+YLve4k/NAqCdPkGYDaDF5Sw+xBfg==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-win32-arm64-msvc@4.17.1':
- resolution: {integrity: sha512-J0d3NVNf7wBL9t4blCNat+d0PYqAx8wOoY+/9Q5cujnafbX7BmtYk3XvzkqLmFECaWvXGLuHmKj/wrILUinmQg==}
- cpu: [arm64]
- os: [win32]
-
'@rollup/rollup-win32-arm64-msvc@4.18.0':
resolution: {integrity: sha512-7J6TkZQFGo9qBKH0pk2cEVSRhJbL6MtfWxth7Y5YmZs57Pi+4x6c2dStAUvaQkHQLnEQv1jzBUW43GvZW8OFqA==}
cpu: [arm64]
os: [win32]
- '@rollup/rollup-win32-ia32-msvc@4.17.1':
- resolution: {integrity: sha512-xjgkWUwlq7IbgJSIxvl516FJ2iuC/7ttjsAxSPpC9kkI5iQQFHKyEN5BjbhvJ/IXIZ3yIBcW5QDlWAyrA+TFag==}
- cpu: [ia32]
- os: [win32]
-
'@rollup/rollup-win32-ia32-msvc@4.18.0':
resolution: {integrity: sha512-Txjh+IxBPbkUB9+SXZMpv+b/vnTEtFyfWZgJ6iyCmt2tdx0OF5WhFowLmnh8ENGNpfUlUZkdI//4IEmhwPieNg==}
cpu: [ia32]
os: [win32]
- '@rollup/rollup-win32-x64-msvc@4.17.1':
- resolution: {integrity: sha512-0QbCkfk6cnnVKWqqlC0cUrrUMDMfu5ffvYMTUHf+qMN2uAb3MKP31LPcwiMXBNsvoFGs/kYdFOsuLmvppCopXA==}
- cpu: [x64]
- os: [win32]
-
'@rollup/rollup-win32-x64-msvc@4.18.0':
resolution: {integrity: sha512-UOo5FdvOL0+eIVTgS4tIdbW+TtnBLWg1YBCcU2KWM7nuNwRz9bksDX1bekJJCpu25N1DVWaCwnT39dVQxzqS8g==}
cpu: [x64]
os: [win32]
- '@rollup/wasm-node@4.13.0':
- resolution: {integrity: sha512-oFX11wzU7RTaiW06WBtRpzIVN/oaG0I3XkevNO0brBklYnY9zpLhTfksN4b+TdBt6CfXV/KdVhdWLbb0fQIR7A==}
+ '@rollup/wasm-node@4.18.0':
+ resolution: {integrity: sha512-DkLoyblRMhJw9ZogW9zCpyH0CNJ+7GaM7Ty+Vl+G21z/Gr7uKBaXqcJqwWUiNYVxTOgxZrxhDG6pmOFxOuswvw==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
@@ -3760,8 +4334,8 @@ packages:
engines: {node: '>=8.10'}
hasBin: true
- '@solidjs/router@0.13.0':
- resolution: {integrity: sha512-YHLbFv9J53+iG4yVrh0vVdYiyXPTk892UyZ1jiMPsUXn2dYkX4552N+8SjvlKWWsmNmYxaoefM6jZn1YtVIUUg==}
+ '@solidjs/router@0.13.6':
+ resolution: {integrity: sha512-CdpFsBYoiJ/FQ4wZIamj3KEFRkmrYu5sVXM6PouNkmSENta1YJamsm9wa/VjaPmkw2RsnDnO0UvZ705v6EgOXQ==}
peerDependencies:
solid-js: ^1.8.6
@@ -3841,14 +4415,14 @@ packages:
'@swc/helpers':
optional: true
- '@swc/counter@0.1.2':
- resolution: {integrity: sha512-9F4ys4C74eSTEUNndnER3VJ15oru2NumfQxS8geE+f3eB5xvfxpWyqE5XlVnxb/R14uoXi6SLbBwwiDSkv+XEw==}
+ '@swc/counter@0.1.3':
+ resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==}
'@swc/helpers@0.5.11':
resolution: {integrity: sha512-YNlnKRWF2sVojTpIyzwou9XoTNbzbzONwRhOoniEioF1AtaitTvVZblaQRrAzChWQ1bLYyYSWzM18y4WwgzJ+A==}
- '@swc/types@0.1.5':
- resolution: {integrity: sha512-myfUej5naTBWnqOCc/MdVOLVjXUXtIA+NpDrDBKJtLLg2shUjBu3cZmB/85RyitKc55+lUUyl7oRfLOvkr2hsw==}
+ '@swc/types@0.1.9':
+ resolution: {integrity: sha512-qKnCno++jzcJ4lM4NTfYifm1EFSCeIfKiAHAfkENZAV5Kl9PjJIyd2yeeVv6c/2CckuLyv2NmRC5pv6pm2WQBg==}
'@tanstack/angular-store@0.5.1':
resolution: {integrity: sha512-ixEqH994z0uLYf8JnH/C1XSKuCVe/5dPkQP7dUgKjoKunPYTR25RvPSE+wKd9gtrBGWFjhWezQPeOmOY1NAKfA==}
@@ -3957,12 +4531,16 @@ packages:
'@angular/platform-browser': '>= 17.0.0'
'@angular/router': '>= 17.0.0'
+ '@testing-library/dom@10.3.1':
+ resolution: {integrity: sha512-q/WL+vlXMpC0uXDyfsMtc1rmotzLV8Y0gq6q1gfrrDjQeHoeLrqHbxdPvPNAh1i+xuJl7+BezywcXArz7vLqKQ==}
+ engines: {node: '>=18'}
+
'@testing-library/dom@9.3.4':
resolution: {integrity: sha512-FlS4ZWlp97iiNWig0Muq8p+3rVDjRiYE+YKGbAqXOu9nwJFFOdL00kFpz42M+4huzYi86vAK1sOOfyOG45muIQ==}
engines: {node: '>=14'}
- '@testing-library/jest-dom@6.4.2':
- resolution: {integrity: sha512-CzqH0AFymEMG48CpzXFriYYkOjk6ZGPCLMhW9e9jg3KMCn5OfJecF8GtGW7yGfR/IgCe3SX8BSwjdzI6BBbZLw==}
+ '@testing-library/jest-dom@6.4.6':
+ resolution: {integrity: sha512-8qpnGVincVDLEcQXWaHOf6zmlbwTKc6Us6PPu4CRnPXCzo2OGBS5cwgMMOWdxDpEz1mkbvXHpEy99M5Yvt682w==}
engines: {node: '>=14', npm: '>=6', yarn: '>=1'}
peerDependencies:
'@jest/globals': '>= 28'
@@ -3995,8 +4573,8 @@ packages:
peerDependencies:
'@testing-library/dom': '>=7.21.4'
- '@testing-library/vue@8.0.2':
- resolution: {integrity: sha512-A8wWX+qQn0o0izpQWnGCpwQt8wAdpsVP8vPP2h5Q/jcGhZ5yKXz9PPUqhQv+45LTFaWlyRf8bArTVaB/KFFd5A==}
+ '@testing-library/vue@8.1.0':
+ resolution: {integrity: sha512-ls4RiHO1ta4mxqqajWRh8158uFObVrrtAPoxk7cIp4HrnQUj/ScKzqz53HxYpG3X6Zb7H2v+0eTGLSoy8HQ2nA==}
engines: {node: '>=14'}
peerDependencies:
'@vue/compiler-sfc': '>= 3'
@@ -4019,27 +4597,18 @@ packages:
'@types/argparse@1.0.38':
resolution: {integrity: sha512-ebDJ9b0e702Yr7pWgB0jzm+CX4Srzz8RcXtLJDJB+BSccqMa36uyH/zUsSYao5+BD1ytv3k3rPYCq4mAE1hsXA==}
- '@types/aria-query@5.0.1':
- resolution: {integrity: sha512-XTIieEY+gvJ39ChLcB4If5zHtPxt3Syj5rgZR+e1ctpmK8NjPf0zFqsz4JpLJT0xla9GFDKjy8Cpu331nrmE1Q==}
+ '@types/aria-query@5.0.4':
+ resolution: {integrity: sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==}
'@types/babel__core@7.20.5':
resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==}
- '@types/babel__generator@7.6.4':
- resolution: {integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==}
-
'@types/babel__generator@7.6.8':
resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==}
- '@types/babel__template@7.4.1':
- resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==}
-
'@types/babel__template@7.4.4':
resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==}
- '@types/babel__traverse@7.17.1':
- resolution: {integrity: sha512-kVzjari1s2YVi77D3w1yuvohV2idweYXMCDzqBiVNN63TcDWrIlTVOYpqVrvbbyOE/IyzBoTKF0fdnLPEORFxA==}
-
'@types/babel__traverse@7.20.6':
resolution: {integrity: sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==}
@@ -4097,17 +4666,14 @@ packages:
'@types/mime@1.3.5':
resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==}
- '@types/mime@3.0.4':
- resolution: {integrity: sha512-iJt33IQnVRkqeqC7PzBHPTC6fDlRNRW8vjrgqtScAhrmMwe8c4Eo7+fUGTa+XdWrpEgpyKWMYmi2dIwMAYRzPw==}
-
'@types/minimist@1.2.2':
resolution: {integrity: sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==}
'@types/node-forge@1.3.11':
resolution: {integrity: sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==}
- '@types/node@20.10.6':
- resolution: {integrity: sha512-Vac8H+NlRNNlAmDfGUP7b5h/KA+AtWIzuXy0E6OyP8f1tCLYAtPvKRRDJjAPqhpCb0t6U2j7/xqAuLEebW2kiw==}
+ '@types/node@20.14.10':
+ resolution: {integrity: sha512-MdiXf+nDuMvY0gJKxyfZ7/6UFsETO7mGKF54MVD/ekJS6HdFtpZFBgrh6Pseu64XTb2MLyFPlbW6hj8HYRQNOQ==}
'@types/normalize-package-data@2.4.1':
resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==}
@@ -4139,14 +4705,17 @@ packages:
'@types/retry@0.12.0':
resolution: {integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==}
+ '@types/retry@0.12.2':
+ resolution: {integrity: sha512-XISRgDJ2Tc5q4TRqvgJtzsRkFYNJzZrhTdtMoGVBttwzzQJkPnS3WWTFc7kuDRoPtPakl+T+OfdEUjYJj7Jbow==}
+
'@types/send@0.17.4':
resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==}
'@types/serve-index@1.9.4':
resolution: {integrity: sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==}
- '@types/serve-static@1.15.5':
- resolution: {integrity: sha512-PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ==}
+ '@types/serve-static@1.15.7':
+ resolution: {integrity: sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==}
'@types/shimmer@1.0.5':
resolution: {integrity: sha512-9Hp0ObzwwO57DpLFF0InUjUm/II8GmKAvzbefxQTihCb7KI6yc9yzf0nLc4mVdby5N4DRCgQM2wCup9KTieeww==}
@@ -4160,8 +4729,8 @@ packages:
'@types/ws@8.5.10':
resolution: {integrity: sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==}
- '@typescript-eslint/eslint-plugin@7.13.1':
- resolution: {integrity: sha512-kZqi+WZQaZfPKnsflLJQCz6Ze9FFSMfXrrIOcyargekQxG37ES7DJNpJUE9Q/X5n3yTIP/WPutVNzgknQ7biLg==}
+ '@typescript-eslint/eslint-plugin@7.14.1':
+ resolution: {integrity: sha512-aAJd6bIf2vvQRjUG3ZkNXkmBpN+J7Wd0mfQiiVCJMu9Z5GcZZdcc0j8XwN/BM97Fl7e3SkTXODSk4VehUv7CGw==}
engines: {node: ^18.18.0 || >=20.0.0}
peerDependencies:
'@typescript-eslint/parser': ^7.0.0
@@ -4171,19 +4740,22 @@ packages:
typescript:
optional: true
- '@typescript-eslint/eslint-plugin@7.14.1':
- resolution: {integrity: sha512-aAJd6bIf2vvQRjUG3ZkNXkmBpN+J7Wd0mfQiiVCJMu9Z5GcZZdcc0j8XwN/BM97Fl7e3SkTXODSk4VehUv7CGw==}
+ '@typescript-eslint/parser@7.14.1':
+ resolution: {integrity: sha512-8lKUOebNLcR0D7RvlcloOacTOWzOqemWEWkKSVpMZVF/XVcwjPR+3MD08QzbW9TCGJ+DwIc6zUSGZ9vd8cO1IA==}
engines: {node: ^18.18.0 || >=20.0.0}
peerDependencies:
- '@typescript-eslint/parser': ^7.0.0
eslint: ^8.56.0
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
- '@typescript-eslint/parser@7.13.1':
- resolution: {integrity: sha512-1ELDPlnLvDQ5ybTSrMhRTFDfOQEOXNM+eP+3HT/Yq7ruWpciQw+Avi73pdEbA4SooCawEWo3dtYbF68gN7Ed1A==}
+ '@typescript-eslint/scope-manager@7.14.1':
+ resolution: {integrity: sha512-gPrFSsoYcsffYXTOZ+hT7fyJr95rdVe4kGVX1ps/dJ+DfmlnjFN/GcMxXcVkeHDKqsq6uAcVaQaIi3cFffmAbA==}
+ engines: {node: ^18.18.0 || >=20.0.0}
+
+ '@typescript-eslint/type-utils@7.14.1':
+ resolution: {integrity: sha512-/MzmgNd3nnbDbOi3LfasXWWe292+iuo+umJ0bCCMCPc1jLO/z2BQmWUUUXvXLbrQey/JgzdF/OV+I5bzEGwJkQ==}
engines: {node: ^18.18.0 || >=20.0.0}
peerDependencies:
eslint: ^8.56.0
@@ -4192,61 +4764,10 @@ packages:
typescript:
optional: true
- '@typescript-eslint/parser@7.14.1':
- resolution: {integrity: sha512-8lKUOebNLcR0D7RvlcloOacTOWzOqemWEWkKSVpMZVF/XVcwjPR+3MD08QzbW9TCGJ+DwIc6zUSGZ9vd8cO1IA==}
- engines: {node: ^18.18.0 || >=20.0.0}
- peerDependencies:
- eslint: ^8.56.0
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
-
- '@typescript-eslint/scope-manager@7.13.1':
- resolution: {integrity: sha512-adbXNVEs6GmbzaCpymHQ0MB6E4TqoiVbC0iqG3uijR8ZYfpAXMGttouQzF4Oat3P2GxDVIrg7bMI/P65LiQZdg==}
- engines: {node: ^18.18.0 || >=20.0.0}
-
- '@typescript-eslint/scope-manager@7.14.1':
- resolution: {integrity: sha512-gPrFSsoYcsffYXTOZ+hT7fyJr95rdVe4kGVX1ps/dJ+DfmlnjFN/GcMxXcVkeHDKqsq6uAcVaQaIi3cFffmAbA==}
- engines: {node: ^18.18.0 || >=20.0.0}
-
- '@typescript-eslint/type-utils@7.13.1':
- resolution: {integrity: sha512-aWDbLu1s9bmgPGXSzNCxELu+0+HQOapV/y+60gPXafR8e2g1Bifxzevaa+4L2ytCWm+CHqpELq4CSoN9ELiwCg==}
- engines: {node: ^18.18.0 || >=20.0.0}
- peerDependencies:
- eslint: ^8.56.0
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
-
- '@typescript-eslint/type-utils@7.14.1':
- resolution: {integrity: sha512-/MzmgNd3nnbDbOi3LfasXWWe292+iuo+umJ0bCCMCPc1jLO/z2BQmWUUUXvXLbrQey/JgzdF/OV+I5bzEGwJkQ==}
- engines: {node: ^18.18.0 || >=20.0.0}
- peerDependencies:
- eslint: ^8.56.0
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
-
- '@typescript-eslint/types@7.13.1':
- resolution: {integrity: sha512-7K7HMcSQIAND6RBL4kDl24sG/xKM13cA85dc7JnmQXw2cBDngg7c19B++JzvJHRG3zG36n9j1i451GBzRuHchw==}
- engines: {node: ^18.18.0 || >=20.0.0}
-
'@typescript-eslint/types@7.14.1':
resolution: {integrity: sha512-mL7zNEOQybo5R3AavY+Am7KLv8BorIv7HCYS5rKoNZKQD9tsfGUpO4KdAn3sSUvTiS4PQkr2+K0KJbxj8H9NDg==}
engines: {node: ^18.18.0 || >=20.0.0}
- '@typescript-eslint/typescript-estree@7.13.1':
- resolution: {integrity: sha512-uxNr51CMV7npU1BxZzYjoVz9iyjckBduFBP0S5sLlh1tXYzHzgZ3BR9SVsNed+LmwKrmnqN3Kdl5t7eZ5TS1Yw==}
- engines: {node: ^18.18.0 || >=20.0.0}
- peerDependencies:
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
-
'@typescript-eslint/typescript-estree@7.14.1':
resolution: {integrity: sha512-k5d0VuxViE2ulIO6FbxxSZaxqDVUyMbXcidC8rHvii0I56XZPv8cq+EhMns+d/EVIL41sMXqRbK3D10Oza1bbA==}
engines: {node: ^18.18.0 || >=20.0.0}
@@ -4256,22 +4777,12 @@ packages:
typescript:
optional: true
- '@typescript-eslint/utils@7.13.1':
- resolution: {integrity: sha512-h5MzFBD5a/Gh/fvNdp9pTfqJAbuQC4sCN2WzuXme71lqFJsZtLbjxfSk4r3p02WIArOF9N94pdsLiGutpDbrXQ==}
- engines: {node: ^18.18.0 || >=20.0.0}
- peerDependencies:
- eslint: ^8.56.0
-
'@typescript-eslint/utils@7.14.1':
resolution: {integrity: sha512-CMmVVELns3nak3cpJhZosDkm63n+DwBlDX8g0k4QUa9BMnF+lH2lr3d130M1Zt1xxmB3LLk3NV7KQCq86ZBBhQ==}
engines: {node: ^18.18.0 || >=20.0.0}
peerDependencies:
eslint: ^8.56.0
- '@typescript-eslint/visitor-keys@7.13.1':
- resolution: {integrity: sha512-k/Bfne7lrP7hcb7m9zSsgcBmo+8eicqqfNAJ7uUY+jkTFpKeH2FSkWpFRtimBxgkyvqfu9jTPRbYOvud6isdXA==}
- engines: {node: ^18.18.0 || >=20.0.0}
-
'@typescript-eslint/visitor-keys@7.14.1':
resolution: {integrity: sha512-Crb+F75U1JAEtBeQGxSKwI60hZmmzaqA3z9sYsVm8X7W5cwLEm5bRe0/uXS6+MR/y8CVpKSR/ontIAIEPFcEkA==}
engines: {node: ^18.18.0 || >=20.0.0}
@@ -4331,68 +4842,62 @@ packages:
peerDependencies:
vite: ^4.2.0 || ^5.0.0
- '@vitejs/plugin-vue@5.0.4':
- resolution: {integrity: sha512-WS3hevEszI6CEVEx28F8RjTX97k3KsrcY6kvTg7+Whm5y3oYvcqzVeGCU3hxSAn4uY2CLCkeokkGKpoctccilQ==}
+ '@vitejs/plugin-vue@5.0.5':
+ resolution: {integrity: sha512-LOjm7XeIimLBZyzinBQ6OSm3UBCNVCpLkxGC0oWmm2YPzVZoxMsdvNVimLTBzpAnR9hl/yn1SHGuRfe6/Td9rQ==}
engines: {node: ^18.0.0 || >=20.0.0}
peerDependencies:
vite: ^5.0.0
vue: ^3.2.25
- '@vitest/coverage-istanbul@1.3.1':
- resolution: {integrity: sha512-aBVgQ2eY9gzrxBJjGKbWgatTU2w1CacEx0n8OMctPzl9836KqoM5X/WigJpjM7wZEtX2N0ZTE5KDGPmVM+o2Wg==}
+ '@vitest/coverage-istanbul@1.6.0':
+ resolution: {integrity: sha512-h/BwpXehkkS0qsNCS00QxiupAqVkNi0WT19BR0dQvlge5oHghoSVLx63fABYFoKxVb7Ue7+k6V2KokmQ1zdMpg==}
peerDependencies:
- vitest: 1.3.1
+ vitest: 1.6.0
- '@vitest/expect@1.3.1':
- resolution: {integrity: sha512-xofQFwIzfdmLLlHa6ag0dPV8YsnKOCP1KdAeVVh34vSjN2dcUiXYCD9htu/9eM7t8Xln4v03U9HLxLpPlsXdZw==}
+ '@vitest/expect@1.6.0':
+ resolution: {integrity: sha512-ixEvFVQjycy/oNgHjqsL6AZCDduC+tflRluaHIzKIsdbzkLn2U/iBnVeJwB6HsIjQBdfMR8Z0tRxKUsvFJEeWQ==}
- '@vitest/runner@1.3.1':
- resolution: {integrity: sha512-5FzF9c3jG/z5bgCnjr8j9LNq/9OxV2uEBAITOXfoe3rdZJTdO7jzThth7FXv/6b+kdY65tpRQB7WaKhNZwX+Kg==}
+ '@vitest/runner@1.6.0':
+ resolution: {integrity: sha512-P4xgwPjwesuBiHisAVz/LSSZtDjOTPYZVmNAnpHHSR6ONrf8eCJOFRvUwdHn30F5M1fxhqtl7QZQUk2dprIXAg==}
- '@vitest/snapshot@1.3.1':
- resolution: {integrity: sha512-EF++BZbt6RZmOlE3SuTPu/NfwBF6q4ABS37HHXzs2LUVPBLx2QoY/K0fKpRChSo8eLiuxcbCVfqKgx/dplCDuQ==}
+ '@vitest/snapshot@1.6.0':
+ resolution: {integrity: sha512-+Hx43f8Chus+DCmygqqfetcAZrDJwvTj0ymqjQq4CvmpKFSTVteEOBzCusu1x2tt4OJcvBflyHUE0DZSLgEMtQ==}
- '@vitest/spy@1.3.1':
- resolution: {integrity: sha512-xAcW+S099ylC9VLU7eZfdT9myV67Nor9w9zhf0mGCYJSO+zM2839tOeROTdikOi/8Qeusffvxb/MyBSOja1Uig==}
+ '@vitest/spy@1.6.0':
+ resolution: {integrity: sha512-leUTap6B/cqi/bQkXUu6bQV5TZPx7pmMBKBQiI0rJA8c3pB56ZsaTbREnF7CJfmvAS4V2cXIBAh/3rVwrrCYgw==}
- '@vitest/utils@1.3.1':
- resolution: {integrity: sha512-d3Waie/299qqRyHTm2DjADeTaNdNSVsnwHPWrs20JMpjh6eiVq7ggggweO8rc4arhf6rRkWuHKwvxGvejUXZZQ==}
+ '@vitest/utils@1.6.0':
+ resolution: {integrity: sha512-21cPiuGMoMZwiOHa2i4LXkMkMkCGzA+MVFV70jRwHo95dL4x/ts5GZhML1QWuy7yfp3WzK3lRvZi3JnXTYqrBw==}
'@volar/language-core@1.11.1':
resolution: {integrity: sha512-dOcNn3i9GgZAcJt43wuaEykSluAuOkQgzni1cuxLxTV0nJKanQztp7FxyswdRILaKH+P2XZMPRp2S4MV/pElCw==}
- '@volar/language-core@2.1.2':
- resolution: {integrity: sha512-5qsDp0Gf6fE09UWCeK7bkVn6NxMwC9OqFWQkMMkeej8h8XjyABPdRygC2RCrqDrfVdGijqlMQeXs6yRS+vfZYA==}
+ '@volar/language-core@2.4.0-alpha.15':
+ resolution: {integrity: sha512-mt8z4Fm2WxfQYoQHPcKVjLQV6PgPqyKLbkCVY2cr5RSaamqCHjhKEpsFX66aL4D/7oYguuaUw9Bx03Vt0TpIIA==}
'@volar/source-map@1.11.1':
resolution: {integrity: sha512-hJnOnwZ4+WT5iupLRnuzbULZ42L7BWWPMmruzwtLhJfpDVoZLjNBxHDi2sY2bgZXCKlpU5XcsMFoYrsQmPhfZg==}
- '@volar/source-map@2.1.2':
- resolution: {integrity: sha512-yFJqsuLm1OaWrsz9E3yd3bJcYIlHqdZ8MbmIoZLrAzMYQDcoF26/INIhgziEXSdyHc8xd7rd/tJdSnUyh0gH4Q==}
+ '@volar/source-map@2.4.0-alpha.15':
+ resolution: {integrity: sha512-8Htngw5TmBY4L3ClDqBGyfLhsB8EmoEXUH1xydyEtEoK0O6NX5ur4Jw8jgvscTlwzizyl/wsN1vn0cQXVbbXYg==}
'@volar/typescript@1.11.1':
resolution: {integrity: sha512-iU+t2mas/4lYierSnoFOeRFQUhAEMgsFuQxoxvwn5EdQopw43j+J27a4lt9LMInx1gLJBC6qL14WYGlgymaSMQ==}
- '@volar/typescript@2.1.2':
- resolution: {integrity: sha512-lhTancZqamvaLvoz0u/uth8dpudENNt2LFZOWCw9JZiX14xRFhdhfzmphiCRb7am9E6qAJSbdS/gMt1utXAoHQ==}
-
- '@vue/compiler-core@3.3.4':
- resolution: {integrity: sha512-cquyDNvZ6jTbf/+x+AgM2Arrp6G4Dzbb0R64jiG804HRMfRiFXWI6kqUVqZ6ZR0bQhIoQjB4+2bhNtVwndW15g==}
+ '@volar/typescript@2.4.0-alpha.15':
+ resolution: {integrity: sha512-U3StRBbDuxV6Woa4hvGS4kz3XcOzrWUKgFdEFN+ba1x3eaYg7+ytau8ul05xgA+UNGLXXsKur7fTUhDFyISk0w==}
- '@vue/compiler-core@3.4.21':
- resolution: {integrity: sha512-MjXawxZf2SbZszLPYxaFCjxfibYrzr3eYbKxwpLR9EQN+oaziSu3qKVbwBERj1IFIB8OLUewxB5m/BFzi613og==}
+ '@vue/compiler-core@3.4.31':
+ resolution: {integrity: sha512-skOiodXWTV3DxfDhB4rOf3OGalpITLlgCeOwb+Y9GJpfQ8ErigdBUHomBzvG78JoVE8MJoQsb+qhZiHfKeNeEg==}
- '@vue/compiler-dom@3.3.4':
- resolution: {integrity: sha512-wyM+OjOVpuUukIq6p5+nwHYtj9cFroz9cwkfmP9O1nzH68BenTTv0u7/ndggT8cIQlnBeOo6sUT/gvHcIkLA5w==}
+ '@vue/compiler-dom@3.4.31':
+ resolution: {integrity: sha512-wK424WMXsG1IGMyDGyLqB+TbmEBFM78hIsOJ9QwUVLGrcSk0ak6zYty7Pj8ftm7nEtdU/DGQxAXp0/lM/2cEpQ==}
- '@vue/compiler-dom@3.4.21':
- resolution: {integrity: sha512-IZC6FKowtT1sl0CR5DpXSiEB5ayw75oT2bma1BEhV7RRR1+cfwLrxc2Z8Zq/RGFzJ8w5r9QtCOvTjQgdn0IKmA==}
+ '@vue/compiler-sfc@3.4.31':
+ resolution: {integrity: sha512-einJxqEw8IIJxzmnxmJBuK2usI+lJonl53foq+9etB2HAzlPjAS/wa7r0uUpXw5ByX3/0uswVSrjNb17vJm1kQ==}
- '@vue/compiler-sfc@3.3.4':
- resolution: {integrity: sha512-6y/d8uw+5TkCuzBkgLS0v3lSM3hJDntFEiUORM11pQ/hKvkhSKZrXW6i69UyXlJQisJxuUEJKAWEqWbWsLeNKQ==}
-
- '@vue/compiler-ssr@3.3.4':
- resolution: {integrity: sha512-m0v6oKpup2nMSehwA6Uuu+j+wEwcy7QmwMkVNVfrV9P2qE5KshC6RwOCq8fjGS/Eak/uNb8AaWekfiXxbBB6gQ==}
+ '@vue/compiler-ssr@3.4.31':
+ resolution: {integrity: sha512-RtefmITAje3fJ8FSg1gwgDhdKhZVntIVbwupdyZDSifZTRMiWxWehAOTCc8/KZDnBOcYQ4/9VWxsTbd3wT0hAA==}
'@vue/language-core@1.8.27':
resolution: {integrity: sha512-L8Kc27VdQserNaCUNiSFdDl9LWT24ly8Hpwf1ECy3aFb9m6bDhBGQYOujDm21N7EW3moKIOKEanQwe1q5BK+mA==}
@@ -4402,45 +4907,33 @@ packages:
typescript:
optional: true
- '@vue/language-core@2.0.6':
- resolution: {integrity: sha512-UzqU12tzf9XLqRO3TiWPwRNpP4fyUzE6MAfOQWQNZ4jy6a30ARRUpmODDKq6O8C4goMc2AlPqTmjOHPjHkilSg==}
+ '@vue/language-core@2.0.26':
+ resolution: {integrity: sha512-/lt6SfQ3O1yDAhPsnLv9iSUgXd1dMHqUm/t3RctfqjuwQf1LnftZ414X3UBn6aXT4MiwXWtbNJ4Z0NZWwDWgJQ==}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
- '@vue/reactivity-transform@3.3.4':
- resolution: {integrity: sha512-MXgwjako4nu5WFLAjpBnCj/ieqcjE2aJBINUNQzkZQfzIZA4xn+0fV1tIYBJvvva3N3OvKGofRLvQIwEQPpaXw==}
-
- '@vue/reactivity@3.3.4':
- resolution: {integrity: sha512-kLTDLwd0B1jG08NBF3R5rqULtv/f8x3rOFByTDz4J53ttIQEDmALqKqXY0J+XQeN0aV2FBxY8nJDf88yvOPAqQ==}
+ '@vue/reactivity@3.4.31':
+ resolution: {integrity: sha512-VGkTani8SOoVkZNds1PfJ/T1SlAIOf8E58PGAhIOUDYPC4GAmFA2u/E14TDAFcf3vVDKunc4QqCe/SHr8xC65Q==}
- '@vue/runtime-core@3.3.4':
- resolution: {integrity: sha512-R+bqxMN6pWO7zGI4OMlmvePOdP2c93GsHFM/siJI7O2nxFRzj55pLwkpCedEY+bTMgp5miZ8CxfIZo3S+gFqvA==}
+ '@vue/runtime-core@3.4.31':
+ resolution: {integrity: sha512-LDkztxeUPazxG/p8c5JDDKPfkCDBkkiNLVNf7XZIUnJ+66GVGkP+TIh34+8LtPisZ+HMWl2zqhIw0xN5MwU1cw==}
- '@vue/runtime-dom@3.3.4':
- resolution: {integrity: sha512-Aj5bTJ3u5sFsUckRghsNjVTtxZQ1OyMWCr5dZRAPijF/0Vy4xEoRCwLyHXcj4D0UFbJ4lbx3gPTgg06K/GnPnQ==}
+ '@vue/runtime-dom@3.4.31':
+ resolution: {integrity: sha512-2Auws3mB7+lHhTFCg8E9ZWopA6Q6L455EcU7bzcQ4x6Dn4cCPuqj6S2oBZgN2a8vJRS/LSYYxwFFq2Hlx3Fsaw==}
- '@vue/server-renderer@3.3.4':
- resolution: {integrity: sha512-Q6jDDzR23ViIb67v+vM1Dqntu+HUexQcsWKhhQa4ARVzxOY2HbC7QRW/ggkDBd5BU+uM1sV6XOAP0b216o34JQ==}
+ '@vue/server-renderer@3.4.31':
+ resolution: {integrity: sha512-D5BLbdvrlR9PE3by9GaUp1gQXlCNadIZytMIb8H2h3FMWJd4oUfkUTEH2wAr3qxoRz25uxbTcbqd3WKlm9EHQA==}
peerDependencies:
- vue: 3.3.4
+ vue: 3.4.31
- '@vue/shared@3.3.4':
- resolution: {integrity: sha512-7OjdcV8vQ74eiz1TZLzZP4JwqM5fA94K6yntPS5Z25r9HDuGNzaGdgvwKYq6S+MxwF0TFRwe50fIR/MYnakdkQ==}
+ '@vue/shared@3.4.31':
+ resolution: {integrity: sha512-Yp3wtJk//8cO4NItOPpi3QkLExAr/aLBGZMmTtW9WpdwBCJpRM6zj9WgWktXAl8IDIozwNMByT45JP3tO3ACWA==}
- '@vue/shared@3.4.21':
- resolution: {integrity: sha512-PuJe7vDIi6VYSinuEbUIQgMIRZGgM8e4R+G+/dQTk0X1NEdvgvvgv7m+rfmDH1gZzyA1OjjoWskvHlfRNfQf3g==}
-
- '@vue/test-utils@2.4.1':
- resolution: {integrity: sha512-VO8nragneNzUZUah6kOjiFmD/gwRjUauG9DROh6oaOeFwX1cZRUNHhdeogE8635cISigXFTtGLUQWx5KCb0xeg==}
- peerDependencies:
- '@vue/server-renderer': ^3.0.1
- vue: ^3.0.1
- peerDependenciesMeta:
- '@vue/server-renderer':
- optional: true
+ '@vue/test-utils@2.4.6':
+ resolution: {integrity: sha512-FMxEjOpYNYiFe0GkaHsnJPXFHxQ6m4t8vI/ElPGpMWxZKpmRvQ33OIrvRXemy6yha03RxhOlQuy+gZMC3CQSow==}
'@web3-storage/multipart-parser@1.0.0':
resolution: {integrity: sha512-BEO6al7BYqcnfX15W2cnGR+Q566ACXAT9UQykORCWW80lmkpWsnEob6zJS1ZVBKsSJC8+7vJkHwlp+lXG1UCdw==}
@@ -4558,17 +5051,12 @@ packages:
peerDependencies:
acorn: '>=8.9.0'
- acorn-walk@8.3.2:
- resolution: {integrity: sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==}
+ acorn-walk@8.3.3:
+ resolution: {integrity: sha512-MxXdReSRhGO7VlFe1bRG/oI7/mdLV9B9JJT0N8vZOhF7gFRR5l3M8W9G8JxmKV+JC5mGqJ0QvqfSOLsCPa4nUw==}
engines: {node: '>=0.4.0'}
- acorn@8.10.0:
- resolution: {integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==}
- engines: {node: '>=0.4.0'}
- hasBin: true
-
- acorn@8.12.0:
- resolution: {integrity: sha512-RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw==}
+ acorn@8.12.1:
+ resolution: {integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==}
engines: {node: '>=0.4.0'}
hasBin: true
@@ -4596,6 +5084,14 @@ packages:
ajv:
optional: true
+ ajv-formats@3.0.1:
+ resolution: {integrity: sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==}
+ peerDependencies:
+ ajv: ^8.0.0
+ peerDependenciesMeta:
+ ajv:
+ optional: true
+
ajv-keywords@3.5.2:
resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==}
peerDependencies:
@@ -4612,6 +5108,12 @@ packages:
ajv@8.12.0:
resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==}
+ ajv@8.13.0:
+ resolution: {integrity: sha512-PRA911Blj99jR5RMeTunVbNXMF6Lp4vZXnk5GQjcnUWUTsrXtekg/pnmFFI2u/I36Y/2bITGS30GZCXei6uNkA==}
+
+ ajv@8.16.0:
+ resolution: {integrity: sha512-F0twR8U1ZU67JIEtekUcLkXkoO5mMMmgGD8sK/xUFzJ805jxHQl92hImFAqqXMyMYjSPOyUPAwHYhB72g5sTXw==}
+
ansi-align@3.0.1:
resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==}
@@ -4760,6 +5262,13 @@ packages:
peerDependencies:
postcss: ^8.1.0
+ autoprefixer@10.4.19:
+ resolution: {integrity: sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==}
+ engines: {node: ^10 || ^12 || >=14}
+ hasBin: true
+ peerDependencies:
+ postcss: ^8.1.0
+
available-typed-arrays@1.0.7:
resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==}
engines: {node: '>= 0.4'}
@@ -4796,8 +5305,13 @@ packages:
resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==}
engines: {node: '>=10', npm: '>=6'}
- babel-plugin-polyfill-corejs2@0.4.10:
- resolution: {integrity: sha512-rpIuu//y5OX6jVU+a5BCn1R5RSZYWAl2Nar76iwaOdycqb6JPxediskWFMMl7stfwNJR4b7eiQvh5fB5TEQJTQ==}
+ babel-plugin-polyfill-corejs2@0.4.11:
+ resolution: {integrity: sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==}
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+
+ babel-plugin-polyfill-corejs3@0.10.4:
+ resolution: {integrity: sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
@@ -4811,6 +5325,11 @@ packages:
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ babel-plugin-polyfill-regenerator@0.6.2:
+ resolution: {integrity: sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==}
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+
babel-preset-solid@1.8.6:
resolution: {integrity: sha512-Ened42CHjU4EFkvNeS042/3Pm21yvMWn8p4G4ddzQTlKaMwSGGD1VciA/e7EshBVHJCcBj9vHiUd/r3A4qLPZA==}
peerDependencies:
@@ -4865,12 +5384,12 @@ packages:
brace-expansion@2.0.1:
resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
- braces@3.0.2:
- resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==}
+ braces@3.0.3:
+ resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
engines: {node: '>=8'}
- browserslist@4.23.0:
- resolution: {integrity: sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==}
+ browserslist@4.23.1:
+ resolution: {integrity: sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
@@ -4894,6 +5413,10 @@ packages:
builtins@5.0.1:
resolution: {integrity: sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==}
+ bundle-name@4.1.0:
+ resolution: {integrity: sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==}
+ engines: {node: '>=18'}
+
busboy@1.6.0:
resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==}
engines: {node: '>=10.16.0'}
@@ -4918,8 +5441,8 @@ packages:
resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
engines: {node: '>=8'}
- cacache@18.0.2:
- resolution: {integrity: sha512-r3NU8h/P+4lVUHfeRw1dtgQYar3DZMm4/cm2bZgOvrFC/su7budSOeqh52VJIC4U4iG1WWwV6vRW0znqBvxNuw==}
+ cacache@18.0.3:
+ resolution: {integrity: sha512-qXCd4rh6I07cnDqh8V48/94Tc/WSfj+o3Gn6NZ0aZovS255bUx8O13uKxRFd2eWG0xgsco7+YItQNPaa5E85hg==}
engines: {node: ^16.14.0 || >=18.0.0}
call-bind@1.0.7:
@@ -4946,11 +5469,11 @@ packages:
resolution: {integrity: sha512-xlx1yCK2Oc1APsPXDL2LdlNP6+uu8OCDdhOBSVT279M/S+y75O30C2VuD8T2ogdePBBl7PfPF4504tnLgX3zfw==}
engines: {node: '>=14.16'}
- caniuse-lite@1.0.30001599:
- resolution: {integrity: sha512-LRAQHZ4yT1+f9LemSMeqdMpMxZcc4RMWdj4tiFe3G8tNkWK+E58g+/tzotb5cU6TbcVJLr4fySiAW7XmxQvZQA==}
+ caniuse-lite@1.0.30001640:
+ resolution: {integrity: sha512-lA4VMpW0PSUrFnkmVuEKBUovSWKhj7puyCg8StBChgu298N1AtuF1sKWEvfDuimSEDbhlb/KqPKC3fs1HbuQUA==}
- chai@4.3.10:
- resolution: {integrity: sha512-0UXG04VuVbruMUYbJ6JctvH0YnC/4q3/AkT18q4NaITo91CUm0liMS9VqzT9vZhVQ/1eqPanMWjBM+Juhfb/9g==}
+ chai@4.4.1:
+ resolution: {integrity: sha512-13sOfMv2+DWduEU+/xbun3LScLoqN17nBeTLUsmDfKdoiC1fr0n9PU4guu4AhRcOVFk/sW8LyZWHuhWtQZiF+g==}
engines: {node: '>=4'}
chalk@2.4.2:
@@ -4983,8 +5506,8 @@ packages:
resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==}
engines: {node: '>=10'}
- chrome-trace-event@1.0.3:
- resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==}
+ chrome-trace-event@1.0.4:
+ resolution: {integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==}
engines: {node: '>=6.0'}
ci-info@4.0.0:
@@ -5185,10 +5708,6 @@ packages:
resolution: {integrity: sha512-78KWk9T26NhzXtuL26cIJ8/qNHANyJ/ZYrmEXFzUmhZdjpBv+DlWlOANRTGBt48YcyslsLrj0bMLFTmXvLRCOw==}
engines: {node: '>=6.6.0'}
- cookie@0.5.0:
- resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==}
- engines: {node: '>= 0.6'}
-
cookie@0.6.0:
resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==}
engines: {node: '>= 0.6'}
@@ -5202,9 +5721,6 @@ packages:
peerDependencies:
webpack: ^5.1.0
- core-js-compat@3.36.0:
- resolution: {integrity: sha512-iV9Pd/PsgjNWBXeq8XRtWVSgz2tKAfhfvBs7qxYty+RlRd+OCksaWmOnc4JKrTc1cToXL1N0s3l/vwlxPtdElw==}
-
core-js-compat@3.37.1:
resolution: {integrity: sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==}
@@ -5267,6 +5783,18 @@ packages:
webpack:
optional: true
+ css-loader@7.1.1:
+ resolution: {integrity: sha512-OxIR5P2mjO1PSXk44bWuQ8XtMK4dpEqpIyERCx3ewOo3I8EmbcxMPUc5ScLtQfgXtOojoMv57So4V/C02HQLsw==}
+ engines: {node: '>= 18.12.0'}
+ peerDependencies:
+ '@rspack/core': 0.x || 1.x
+ webpack: ^5.27.0
+ peerDependenciesMeta:
+ '@rspack/core':
+ optional: true
+ webpack:
+ optional: true
+
css-select@5.1.0:
resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==}
@@ -5286,8 +5814,8 @@ packages:
resolution: {integrity: sha512-8ZYiJ3A/3OkDd093CBT/0UKDWry7ak4BdPTFP2+QEP7cmhouyq/Up709ASSj2cK02BbZiMgk7kYjZNS4QP5qrQ==}
engines: {node: '>=18'}
- csstype@3.1.2:
- resolution: {integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==}
+ csstype@3.1.3:
+ resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
current-git-branch@1.1.0:
resolution: {integrity: sha512-n5mwGZllLsFzxDPtTmadqGe4IIBPfqPbiIRX4xgFR9VK/Bx47U+94KiVkxSKAKN6/s43TlkztS2GZpgMKzwQ8A==}
@@ -5336,15 +5864,6 @@ packages:
supports-color:
optional: true
- debug@4.3.4:
- resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
- engines: {node: '>=6.0'}
- peerDependencies:
- supports-color: '*'
- peerDependenciesMeta:
- supports-color:
- optional: true
-
debug@4.3.5:
resolution: {integrity: sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==}
engines: {node: '>=6.0'}
@@ -5368,8 +5887,8 @@ packages:
decode-formdata@0.7.5:
resolution: {integrity: sha512-zwz+xh+Z2R1s2hk14pGiwgVnYiw1UnlsoxHZ5neSXnslgET1weO0dw0d9dLpf1rxAtcvNXo59IMKq5avdaOcvA==}
- deep-eql@4.1.3:
- resolution: {integrity: sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==}
+ deep-eql@4.1.4:
+ resolution: {integrity: sha512-SUwdGfqdKOwxCPeVYjwSyRpJ7Z+fhpwIAtmCUdZIWZ/YP5R9WAsyuSgpLVDi9bjWoN2LXHNss/dk3urXtdQxGg==}
engines: {node: '>=6'}
deep-equal@2.2.2:
@@ -5386,6 +5905,14 @@ packages:
resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
engines: {node: '>=0.10.0'}
+ default-browser-id@5.0.0:
+ resolution: {integrity: sha512-A6p/pu/6fyBcA1TRz/GqWYPViplrftcW2gZC9q79ngNCKAeR/X3gcEdXQHl4KNXV+3wgIJ1CPkJQ3IHM6lcsyA==}
+ engines: {node: '>=18'}
+
+ default-browser@5.2.1:
+ resolution: {integrity: sha512-WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg==}
+ engines: {node: '>=18'}
+
default-gateway@6.0.3:
resolution: {integrity: sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==}
engines: {node: '>= 10'}
@@ -5401,6 +5928,10 @@ packages:
resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==}
engines: {node: '>=8'}
+ define-lazy-prop@3.0.0:
+ resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==}
+ engines: {node: '>=12'}
+
define-properties@1.2.1:
resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==}
engines: {node: '>= 0.4'}
@@ -5539,8 +6070,8 @@ packages:
ee-first@1.1.1:
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
- electron-to-chromium@1.4.708:
- resolution: {integrity: sha512-iWgEEvREL4GTXXHKohhh33+6Y8XkPI5eHihDmm8zUk5Zo7HICEW+wI/j5kJ2tbuNUCXJ/sNXa03ajW635DiJXA==}
+ electron-to-chromium@1.4.818:
+ resolution: {integrity: sha512-eGvIk2V0dGImV9gWLq8fDfTTsCAeMDwZqEPMr+jMInxZdnp9Us8UpovYpRCf9NQ7VOFgrN2doNSgvISbsbNpxA==}
emoji-regex@8.0.0:
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
@@ -5562,8 +6093,8 @@ packages:
end-of-stream@1.4.4:
resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
- enhanced-resolve@5.15.0:
- resolution: {integrity: sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==}
+ enhanced-resolve@5.17.0:
+ resolution: {integrity: sha512-dwDPwZL0dmye8Txp2gzFmA6sxALaSvdRDjPH0viLcKrtlOL3tw62nWWweVD1SdILDTJrbrL6tdWVN58Wo6U3eA==}
engines: {node: '>=10.13.0'}
enquirer@2.3.6:
@@ -5599,8 +6130,8 @@ packages:
es-get-iterator@1.1.3:
resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==}
- es-module-lexer@1.4.1:
- resolution: {integrity: sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w==}
+ es-module-lexer@1.5.4:
+ resolution: {integrity: sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==}
esbuild-register@3.5.0:
resolution: {integrity: sha512-+4G/XmakeBAsvJuDugJvtyF1x+XJT4FMocynNpxrvEBViirpfUn2PgNpCHedfWhF4WokNsO/OvMKrmJOIJsI5A==}
@@ -5617,6 +6148,11 @@ packages:
engines: {node: '>=12'}
hasBin: true
+ esbuild-wasm@0.21.3:
+ resolution: {integrity: sha512-DMOV+eeVra0yVq3XIojfczdEQsz+RiFnpEj7lqs8Gux9mlTpN7yIbw0a4KzLspn0Uhw6UVEH3nUAidSqc/rcQg==}
+ engines: {node: '>=12'}
+ hasBin: true
+
esbuild@0.18.20:
resolution: {integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==}
engines: {node: '>=12'}
@@ -5637,8 +6173,23 @@ packages:
engines: {node: '>=12'}
hasBin: true
- escalade@3.1.1:
- resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
+ esbuild@0.21.3:
+ resolution: {integrity: sha512-Kgq0/ZsAPzKrbOjCQcjoSmPoWhlcVnGAUo7jvaLHoxW1Drto0KGkR1xBNg2Cp43b9ImvxmPEJZ9xkfcnqPsfBw==}
+ engines: {node: '>=12'}
+ hasBin: true
+
+ esbuild@0.21.5:
+ resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==}
+ engines: {node: '>=12'}
+ hasBin: true
+
+ esbuild@0.23.0:
+ resolution: {integrity: sha512-1lvV17H2bMYda/WaFb2jLPeHU3zml2k4/yagNMG8Q/YtfMjCwEUZa2eXXMgZTVSL5q1n4H7sQ0X6CdJDqqeCFA==}
+ engines: {node: '>=18'}
+ hasBin: true
+
+ escalade@3.1.2:
+ resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==}
engines: {node: '>=6'}
escape-html@1.0.3:
@@ -5822,8 +6373,8 @@ packages:
exponential-backoff@3.1.1:
resolution: {integrity: sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==}
- express@4.18.3:
- resolution: {integrity: sha512-6VyCijWQ+9O7WuVMTRBTl+cjNNIzD5cY5mQ1WM8r/LEkI2u8EYpOotESNwzNlyCn3g+dmjKYI6BmNneSr/FSRw==}
+ express@4.19.2:
+ resolution: {integrity: sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==}
engines: {node: '>= 0.10.0'}
extend@3.0.2:
@@ -5870,8 +6421,8 @@ packages:
file-uri-to-path@1.0.0:
resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==}
- fill-range@7.0.1:
- resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==}
+ fill-range@7.1.1:
+ resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
engines: {node: '>=8'}
filter-obj@1.1.0:
@@ -5951,8 +6502,8 @@ packages:
resolution: {integrity: sha512-0OABksIGrxKK8K4kynWkQ7y1zounQxP+CWnyclVwj81KW3vlLlGUx57DKGcP/LH216GzqnstnPocF16Nxs0Ycg==}
engines: {node: '>=0.10.0'}
- foreground-child@3.1.1:
- resolution: {integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==}
+ foreground-child@3.2.1:
+ resolution: {integrity: sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA==}
engines: {node: '>=14'}
form-data@4.0.0:
@@ -5976,10 +6527,6 @@ packages:
fs-constants@1.0.0:
resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==}
- fs-extra@11.1.1:
- resolution: {integrity: sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==}
- engines: {node: '>=14.14'}
-
fs-extra@11.2.0:
resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==}
engines: {node: '>=14.14'}
@@ -6077,9 +6624,9 @@ packages:
glob-to-regexp@0.4.1:
resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
- glob@10.3.10:
- resolution: {integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==}
- engines: {node: '>=16 || 14 >=14.17'}
+ glob@10.4.3:
+ resolution: {integrity: sha512-Q38SGlYRpVtDBPSWEylRyctn7uDeTp4NQERTLiCT1FqA9JXPYWqAVmQU6qh4r/zMM5ehxTcbaO8EjhWnvEhmyg==}
+ engines: {node: '>=18'}
hasBin: true
glob@7.2.3:
@@ -6234,6 +6781,9 @@ packages:
html-entities@2.3.3:
resolution: {integrity: sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==}
+ html-entities@2.5.2:
+ resolution: {integrity: sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==}
+
html-escaper@2.0.2:
resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==}
@@ -6270,6 +6820,10 @@ packages:
'@types/express':
optional: true
+ http-proxy-middleware@3.0.0:
+ resolution: {integrity: sha512-36AV1fIaI2cWRzHo+rbcxhe3M3jUDCNzc4D5zRl57sEWRAxdXYtw7FSQKYY6PDKssiAKjLYypbssHk+xs/kMXw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
http-proxy@1.18.1:
resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==}
engines: {node: '>=8.0.0'}
@@ -6297,6 +6851,10 @@ packages:
resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==}
engines: {node: '>=16.17.0'}
+ hyperdyperid@1.2.0:
+ resolution: {integrity: sha512-Y93lCzHYgGWdrJ66yIktxiaGULYc6oGiABxhcO5AufBeOyoIdZF7bIfLaOrbM0iGIOXQQgxxRrFEnb+Y6w1n4A==}
+ engines: {node: '>=10.18'}
+
iconv-lite@0.4.24:
resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==}
engines: {node: '>=0.10.0'}
@@ -6334,8 +6892,8 @@ packages:
engines: {node: '>=0.10.0'}
hasBin: true
- immutable@4.3.5:
- resolution: {integrity: sha512-8eabxkth9gZatlwl5TBuJnCsoTADlL6ftEr7A4qgdaTsPyreilDSnUk57SO+jfKcNtxPa22U5KK6DSeAYhpBJw==}
+ immutable@4.3.6:
+ resolution: {integrity: sha512-Ju0+lEMyzMVZarkTn/gqRpdqd5dOPaz1mCZ0SH3JV6iFw81PldE/PEB1hWVEA288HPt4WXW8O7AWxB10M+03QQ==}
import-fresh@3.3.0:
resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
@@ -6390,6 +6948,10 @@ packages:
resolution: {integrity: sha512-vI2w4zl/mDluHt9YEQ/543VTCwPKWiHzKtm9dM2V0NdFcqEexDAjUHzO1oA60HRNaVifGXXM1tRRNluLVHa0Kg==}
engines: {node: '>=18'}
+ inquirer@9.2.22:
+ resolution: {integrity: sha512-SqLLa/Oe5rZUagTR9z+Zd6izyatHglbmbvVofo1KzuVB54YHleWzeHNLoR7FOICGOeQSqeLh1cordb3MzhGcEw==}
+ engines: {node: '>=18'}
+
internal-slot@1.0.7:
resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==}
engines: {node: '>= 0.4'}
@@ -6416,8 +6978,8 @@ packages:
resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==}
engines: {node: '>= 0.10'}
- ipaddr.js@2.1.0:
- resolution: {integrity: sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ==}
+ ipaddr.js@2.2.0:
+ resolution: {integrity: sha512-Ag3wB2o37wslZS19hZqorUnrnzSkpOVy+IiiDEiTqNubEYpYuHWIf6K4psgN2ZWKExS4xhVCrRVfb/wfW8fWJA==}
engines: {node: '>= 10'}
iron-webcrypto@1.2.1:
@@ -6518,6 +7080,10 @@ packages:
is-module@1.0.0:
resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==}
+ is-network-error@1.1.0:
+ resolution: {integrity: sha512-tUdRRAnhT+OtCZR/LxZelH/C7QtjtFrTu5tXCA8pl55eTUElUHT+GPYV8MBMBvea/j+NxQqVt3LbWMRir7Gx9g==}
+ engines: {node: '>=16'}
+
is-number-object@1.0.7:
resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==}
engines: {node: '>= 0.4'}
@@ -6669,29 +7235,33 @@ packages:
resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==}
engines: {node: '>=8'}
- istanbul-lib-instrument@6.0.1:
- resolution: {integrity: sha512-EAMEJBsYuyyztxMxW3g7ugGPkrZsV57v0Hmv3mm1uQsmB+QnZuepg731CRaIgeUVSdmsTngOkSnauNF8p7FIhA==}
+ istanbul-lib-instrument@6.0.2:
+ resolution: {integrity: sha512-1WUsZ9R1lA0HtBSohTkm39WTPlNKSJ5iFk7UwqXkBLoHQT+hfqPsfsTDVuZdKGaBwn7din9bS7SsnoAr943hvw==}
+ engines: {node: '>=10'}
+
+ istanbul-lib-instrument@6.0.3:
+ resolution: {integrity: sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==}
engines: {node: '>=10'}
istanbul-lib-report@3.0.1:
resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==}
engines: {node: '>=10'}
- istanbul-lib-source-maps@4.0.1:
- resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==}
+ istanbul-lib-source-maps@5.0.6:
+ resolution: {integrity: sha512-yg2d+Em4KizZC5niWhQaIomgf5WlL4vOOjZ5xGCmF8SnPE/mDWWXgvRExdcpCgh9lLRRa1/fSYp2ymmbJ1pI+A==}
engines: {node: '>=10'}
- istanbul-reports@3.1.6:
- resolution: {integrity: sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==}
+ istanbul-reports@3.1.7:
+ resolution: {integrity: sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==}
engines: {node: '>=8'}
iterable-lookahead@1.0.0:
resolution: {integrity: sha512-hJnEP2Xk4+44DDwJqUQGdXal5VbyeWLaPyDl2AQc242Zr7iqz4DgpQOrEzglWVMGHMDCkguLHEKxd1+rOsmgSQ==}
engines: {node: '>=4'}
- jackspeak@2.3.6:
- resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==}
- engines: {node: '>=14'}
+ jackspeak@3.4.1:
+ resolution: {integrity: sha512-U23pQPDnmYybVkYjObcuYMk43VRlMLLqLI+RdZy8s8WV8WsxO9SnqSroKaluuvcNOdCAlauKszDwd+umbot5Mg==}
+ engines: {node: '>=18'}
jest-diff@29.7.0:
resolution: {integrity: sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==}
@@ -6705,10 +7275,6 @@ packages:
resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==}
engines: {node: '>= 10.13.0'}
- jiti@1.21.0:
- resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==}
- hasBin: true
-
jiti@1.21.6:
resolution: {integrity: sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==}
hasBin: true
@@ -6716,17 +7282,18 @@ packages:
jju@1.4.0:
resolution: {integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==}
- js-beautify@1.14.9:
- resolution: {integrity: sha512-coM7xq1syLcMyuVGyToxcj2AlzhkDjmfklL8r0JgJ7A76wyGMpJ1oA35mr4APdYNO/o/4YY8H54NQIJzhMbhBg==}
- engines: {node: '>=12'}
+ js-beautify@1.15.1:
+ resolution: {integrity: sha512-ESjNzSlt/sWE8sciZH8kBF8BPlwXPwhR6pWKAw8bw4Bwj+iZcnKW6ONWUutJ7eObuBZQpiIb8S7OYspWrKt7rA==}
+ engines: {node: '>=14'}
hasBin: true
+ js-cookie@3.0.5:
+ resolution: {integrity: sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw==}
+ engines: {node: '>=14'}
+
js-tokens@4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
- js-tokens@8.0.3:
- resolution: {integrity: sha512-UfJMcSJc+SEXEl9lH/VLHSZbThQyLpw1vLO1Lb+j4RWDvG3N2f7yj3PVQA3cmkTBNldJ9eFnM+xEXxHIXrYiJw==}
-
js-tokens@9.0.0:
resolution: {integrity: sha512-WriZw1luRMlmV3LGJaR6QOJjWwgLUTf89OwT2lUOyjX2dJGBwgmIkbcz+7WFZjrZM635JOIR517++e/67CP9dQ==}
@@ -6797,6 +7364,9 @@ packages:
jsonc-parser@3.2.1:
resolution: {integrity: sha512-AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA==}
+ jsonc-parser@3.3.1:
+ resolution: {integrity: sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==}
+
jsonfile@4.0.0:
resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==}
@@ -6838,8 +7408,8 @@ packages:
kolorist@1.8.0:
resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==}
- launch-editor@2.6.1:
- resolution: {integrity: sha512-eB/uXmFVpY4zezmGp5XtU21kwo7GBbKB+EQ+UZeWtGb9yAM5xt/Evk+lYH3eRNAtId+ej4u7TYPFZ07w4s7rRw==}
+ launch-editor@2.8.0:
+ resolution: {integrity: sha512-vJranOAJrI/llyWGRQqiDM+adrw+k83fvmmx3+nV47g3+36xM15jE+zyZ6Ffel02+xSvuM0b2GDRosXZkbb6wA==}
lazystream@1.0.1:
resolution: {integrity: sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==}
@@ -6852,6 +7422,19 @@ packages:
less: ^3.5.0 || ^4.0.0
webpack: ^5.0.0
+ less-loader@12.2.0:
+ resolution: {integrity: sha512-MYUxjSQSBUQmowc0l5nPieOYwMzGPUaTzB6inNW/bdPEG9zOL3eAAD1Qw5ZxSPk7we5dMojHwNODYMV1hq4EVg==}
+ engines: {node: '>= 18.12.0'}
+ peerDependencies:
+ '@rspack/core': 0.x || 1.x
+ less: ^3.5.0 || ^4.0.0
+ webpack: ^5.0.0
+ peerDependenciesMeta:
+ '@rspack/core':
+ optional: true
+ webpack:
+ optional: true
+
less@4.2.0:
resolution: {integrity: sha512-P3b3HJDBtSzsXUl0im2L7gTO5Ubg8mEN6G8qoTS77iXxXX4Hvu4Qj540PZDvQ8V6DmX6iXo98k7Md0Cm1PrLaA==}
engines: {node: '>=6'}
@@ -6893,6 +7476,10 @@ packages:
lit@3.1.2:
resolution: {integrity: sha512-VZx5iAyMtX7CV4K8iTLdCkMaYZ7ipjJZ0JcSdJ0zIdGxxyurjIn7yuuSxNBD7QmjvcNJwr0JS4cAdAtsy7gZ6w==}
+ lmdb@3.0.8:
+ resolution: {integrity: sha512-9rp8JT4jPhCRJUL7vRARa2N06OLSYzLwQsEkhC6Qu5XbcLyM/XBLMzDlgS/K7l7c5CdURLdDk9uE+hPFIogHTQ==}
+ hasBin: true
+
loader-runner@4.3.0:
resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==}
engines: {node: '>=6.11.5'}
@@ -6962,9 +7549,9 @@ packages:
loupe@2.3.7:
resolution: {integrity: sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==}
- lru-cache@10.2.0:
- resolution: {integrity: sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==}
- engines: {node: 14 || >=16.14}
+ lru-cache@10.3.1:
+ resolution: {integrity: sha512-9/8QXrtbGeMB6LxwQd4x1tIMnsmUxMvIH/qWGsccz6bt9Uln3S+sgAaqfQNhbGA8ufzs2fHuP/yqapGgP9Hh2g==}
+ engines: {node: '>=18'}
lru-cache@4.1.5:
resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==}
@@ -7000,8 +7587,8 @@ packages:
magicast@0.2.11:
resolution: {integrity: sha512-6saXbRDA1HMkqbsvHOU6HBjCVgZT460qheRkLhJQHWAbhXoWESI3Kn/dGGXyKs15FFKR85jsUqFx2sMK0wy/5g==}
- magicast@0.3.3:
- resolution: {integrity: sha512-ZbrP1Qxnpoes8sz47AM0z08U+jW6TyRgZzcWy3Ma3vDhJttwMwAFDMMQFobwdBxByBD46JYmxRzeF7w2+wJEuw==}
+ magicast@0.3.4:
+ resolution: {integrity: sha512-TyDF/Pn36bBji9rWKHlZe+PZb6Mx5V8IHCSxk7X4aljM4e/vyDvZZYwHewdVaqiA0nb3ghfHU/6AUpDxWoER2Q==}
make-dir@2.1.0:
resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==}
@@ -7044,6 +7631,10 @@ packages:
resolution: {integrity: sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==}
engines: {node: '>= 4.0.0'}
+ memfs@4.9.3:
+ resolution: {integrity: sha512-bsYSSnirtYTWi1+OPMFb0M048evMKyUYe0EbtuGQgq6BVQM1g1W8/KIUJCCvjgI/El0j6Q4WsmMiBwLUBSw8LA==}
+ engines: {node: '>= 4.0.0'}
+
meow@12.0.1:
resolution: {integrity: sha512-/QOqMALNoKQcJAOOdIXjNLtfcCdLXbMFyB1fOOPdm6RzfBTlsuodOCTBDjVbeUSmgDQb8UI2oONqYGtq1PKKKA==}
engines: {node: '>=16.10'}
@@ -7069,8 +7660,8 @@ packages:
micro-memoize@4.1.2:
resolution: {integrity: sha512-+HzcV2H+rbSJzApgkj0NdTakkC+bnyeiUxgT6/m7mjcz1CmM22KYFKp+EVj1sWe4UYcnriJr5uqHQD/gMHLD+g==}
- micromatch@4.0.5:
- resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}
+ micromatch@4.0.7:
+ resolution: {integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==}
engines: {node: '>=8.6'}
mime-db@1.52.0:
@@ -7114,6 +7705,12 @@ packages:
peerDependencies:
webpack: ^5.0.0
+ mini-css-extract-plugin@2.9.0:
+ resolution: {integrity: sha512-Zs1YsZVfemekSZG+44vBsYTLQORkPMwnlv+aehcxK/NLKC+EGhDB39/YePYYqx/sTk6NnYpuqikhSn7+JIevTA==}
+ engines: {node: '>= 12.13.0'}
+ peerDependencies:
+ webpack: ^5.0.0
+
minimalistic-assert@1.0.1:
resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==}
@@ -7135,8 +7732,8 @@ packages:
resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==}
engines: {node: '>=16 || 14 >=14.17'}
- minimatch@9.0.4:
- resolution: {integrity: sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==}
+ minimatch@9.0.5:
+ resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
engines: {node: '>=16 || 14 >=14.17'}
minimist-options@4.1.0:
@@ -7177,8 +7774,8 @@ packages:
resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==}
engines: {node: '>=8'}
- minipass@7.0.3:
- resolution: {integrity: sha512-LhbbwCfz3vsb12j/WkWQPZfKTsgqIe1Nf/ti1pKjYESGLHIVjWU96G9/ljLH4F9mWNVhlQOm0VySdAWzf05dpg==}
+ minipass@7.1.2:
+ resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
engines: {node: '>=16 || 14 >=14.17'}
minizlib@2.1.2:
@@ -7195,9 +7792,6 @@ packages:
engines: {node: '>=10'}
hasBin: true
- mlly@1.4.2:
- resolution: {integrity: sha512-i/Ykufi2t1EZ6NaPLdfnZk2AX8cs0d+mTzVKuPfqPKPatxLApaBoxJQ9x1/uckXtrS/U5oisPMDkNs0yQTaBRg==}
-
mlly@1.7.1:
resolution: {integrity: sha512-rrVRZRELyQzrIUAVMHxP97kv+G786pHmOKzuFII8zDYahFBS7qnHh2AlYSl1GAHhaMPCz6/oHjVMcfFYgFYHgA==}
@@ -7225,6 +7819,13 @@ packages:
ms@2.1.3:
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
+ msgpackr-extract@3.0.3:
+ resolution: {integrity: sha512-P0efT1C9jIdVRefqjzOQ9Xml57zpOXnIuS+csaB4MdZbTdmGDLo8XhzBG1N7aO11gKDDkJvBLULeFTo46wwreA==}
+ hasBin: true
+
+ msgpackr@1.10.2:
+ resolution: {integrity: sha512-L60rsPynBvNE+8BWipKKZ9jHcSGbtyJYIwjRq0VrIvQ08cRjntGXJYW/tmciZ2IHWIY8WEW32Qa2xbh5+SKBZA==}
+
muggle-string@0.3.1:
resolution: {integrity: sha512-ckmWDJjphvd/FvZawgygcUeQCxzvohjFO5RxTjj4eq8kw359gFF3E1brjfI+viLMxss5JrHTDRHZvu2/tuy0Qg==}
@@ -7310,6 +7911,9 @@ packages:
node-addon-api@3.2.1:
resolution: {integrity: sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==}
+ node-addon-api@6.1.0:
+ resolution: {integrity: sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==}
+
node-addon-api@7.1.0:
resolution: {integrity: sha512-mNcltoe1R8o7STTegSOHdnJNN7s5EUvhoS7ShnTHDyOSd+8H+UdWODq6qSv67PjC8Zc5JRT8+oLAMCr0SIXw7g==}
engines: {node: ^16 || ^18 || >= 20}
@@ -7330,6 +7934,14 @@ packages:
resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==}
engines: {node: '>= 6.13.0'}
+ node-gyp-build-optional-packages@5.1.1:
+ resolution: {integrity: sha512-+P72GAjVAbTxjjwUmwjVrqrdZROD4nf8KgpBoDxqXXTiYZZt/ud60dE5yvCSr9lRO8e8yv6kgJIC0K0PfZFVQw==}
+ hasBin: true
+
+ node-gyp-build-optional-packages@5.2.2:
+ resolution: {integrity: sha512-s+w+rBWnpTMwSFbaE0UXsRlg7hU4FjekKU4eyAih5T8nJuNZT1nNsskXpxmeqSK9UzkBl6UgRlnKc8hz8IEqOw==}
+ hasBin: true
+
node-gyp-build@4.8.0:
resolution: {integrity: sha512-u6fs2AEUljNho3EYTJNBfImO5QTo/J/1Etd+NVdCj7qWKUSN/bSLkZwhDv7I+w/MSC6qJ4cknepkAYykDdK8og==}
hasBin: true
@@ -7350,13 +7962,8 @@ packages:
engines: {node: '>=6'}
hasBin: true
- nopt@6.0.0:
- resolution: {integrity: sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==}
- engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
- hasBin: true
-
- nopt@7.2.0:
- resolution: {integrity: sha512-CVDtwCdhYIvnAzFoJ6NJ6dX3oga9/HyciQDnG1vQDjSLMeKLJ4A93ZqYKDrgYSr1FBY5/hMYC+2VCi24pgpkGA==}
+ nopt@7.2.1:
+ resolution: {integrity: sha512-taM24ViiimT/XntxbPyJQzCG+p4EKOpgD3mxFwW38mGjVUrfERQOeY4EDHjdnptttfHuHQXFx+lTP08Q+mLa/w==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
hasBin: true
@@ -7432,8 +8039,8 @@ packages:
resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
engines: {node: '>=8'}
- npm-run-path@5.2.0:
- resolution: {integrity: sha512-W4/tgAXFqFA0iL7fk0+uQ3g7wkL8xJmx3XdK0VGb4cHW//eZTtKGvFBBoRKVTpY7n6ze4NL9ly7rgXcHufqXKg==}
+ npm-run-path@5.3.0:
+ resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
npmlog@5.0.1:
@@ -7526,6 +8133,10 @@ packages:
resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==}
engines: {node: '>=12'}
+ open@10.1.0:
+ resolution: {integrity: sha512-mnkeQ1qP5Ue2wd+aivTD3NHd/lZ96Lu0jgf0pwktLPtx6cTZiH7tyeGRRHs0zX0rbrahXPnXlUnbeXyaBBuIaw==}
+ engines: {node: '>=18'}
+
open@8.4.2:
resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==}
engines: {node: '>=12'}
@@ -7546,6 +8157,9 @@ packages:
resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==}
engines: {node: '>=10'}
+ ordered-binary@1.5.1:
+ resolution: {integrity: sha512-5VyHfHY3cd0iza71JepYG50My+YUbrFtGoUz2ooEydPyPM7Aai/JW098juLr+RG6+rDJuzNNTsEQu2DZa1A41A==}
+
os-tmpdir@1.0.2:
resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==}
engines: {node: '>=0.10.0'}
@@ -7590,10 +8204,17 @@ packages:
resolution: {integrity: sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==}
engines: {node: '>=8'}
+ p-retry@6.2.0:
+ resolution: {integrity: sha512-JA6nkq6hKyWLLasXQXUrO4z8BUZGUt/LjlJxx8Gb2+2ntodU/SS63YZ8b0LUTbQ8ZB9iwOfhEPhg4ykKnn2KsA==}
+ engines: {node: '>=16.17'}
+
p-try@2.2.0:
resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
engines: {node: '>=6'}
+ package-json-from-dist@1.0.0:
+ resolution: {integrity: sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==}
+
pacote@17.0.6:
resolution: {integrity: sha512-cJKrW21VRE8vVTRskJo78c/RCvwJCn1f4qgfxL4w77SOWrTCRcmfkYHlHtS0gqpgjv3zhXflRtgsrUCX5xwNnQ==}
engines: {node: ^16.14.0 || >=18.0.0}
@@ -7674,9 +8295,9 @@ packages:
resolution: {integrity: sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==}
engines: {node: '>=0.10.0'}
- path-scurry@1.10.1:
- resolution: {integrity: sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==}
- engines: {node: '>=16 || 14 >=14.17'}
+ path-scurry@1.11.1:
+ resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
+ engines: {node: '>=16 || 14 >=14.18'}
path-to-regexp@0.1.7:
resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==}
@@ -7692,9 +8313,6 @@ packages:
resolution: {integrity: sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==}
engines: {node: '>=12'}
- pathe@1.1.1:
- resolution: {integrity: sha512-d+RQGp0MAYTIaDBIMmOfMwz3E+LOZnxx1HZd5R18mmCZY0QBlK0LDZfPc8FW8Ed2DlvsuE6PRjroDY+wg4+j/Q==}
-
pathe@1.1.2:
resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==}
@@ -7715,6 +8333,10 @@ packages:
resolution: {integrity: sha512-xUXwsxNjwTQ8K3GnT4pCJm+xq3RUPQbmkYJTP5aFIfNIvbcc/4MUxgBaaRSZJ6yGJZiGSyYlM6MzwTsRk8SYCg==}
engines: {node: '>=12'}
+ picomatch@4.0.2:
+ resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==}
+ engines: {node: '>=12'}
+
pify@4.0.1:
resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==}
engines: {node: '>=6'}
@@ -7725,6 +8347,12 @@ packages:
piscina@4.4.0:
resolution: {integrity: sha512-+AQduEJefrOApE4bV7KRmp3N2JnnyErlVqq4P/jmko4FPz9Z877BCccl/iB3FdrWSUkvbGV9Kan/KllJgat3Vg==}
+ piscina@4.5.0:
+ resolution: {integrity: sha512-iBaLWI56PFP81cfBSomWTmhOo9W2/yhIOL+Tk8O1vBCpK39cM0tGxB+wgYjG31qq4ohGvysfXSdnj8h7g4rZxA==}
+
+ piscina@4.6.1:
+ resolution: {integrity: sha512-z30AwWGtQE+Apr+2WBZensP2lIvwoaMcOPkQlIEmSGMJNUvaYACylPYrQM6wSdUNJlnDVMSpLv7xTMJqlVshOA==}
+
pkg-dir@4.2.0:
resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==}
engines: {node: '>=8'}
@@ -7733,11 +8361,8 @@ packages:
resolution: {integrity: sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==}
engines: {node: '>=14.16'}
- pkg-types@1.0.3:
- resolution: {integrity: sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A==}
-
- pkg-types@1.1.1:
- resolution: {integrity: sha512-ko14TjmDuQJ14zsotODv7dBlwxKhUKQEhuhmbqo1uCi9BB0Z2alo/wAXg6q1dTR5TyuqYyWhjtfe/Tsh+X28jQ==}
+ pkg-types@1.1.3:
+ resolution: {integrity: sha512-+JrgthZG6m3ckicaOB74TwQ+tBWsFl3qVQg7mN8ulwSOElJ7gBhKzj2VkCPnZ4NlF6kEquYU+RIYNVAvzd54UA==}
pluralize@8.0.0:
resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==}
@@ -7775,20 +8400,20 @@ packages:
peerDependencies:
postcss: ^8.2.14
- postcss-modules-extract-imports@3.0.0:
- resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==}
+ postcss-modules-extract-imports@3.1.0:
+ resolution: {integrity: sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
- postcss-modules-local-by-default@4.0.4:
- resolution: {integrity: sha512-L4QzMnOdVwRm1Qb8m4x8jsZzKAaPAgrUF1r/hjDR2Xj7R+8Zsf97jAlSQzWtKx5YNiNGN8QxmPFIc/sh+RQl+Q==}
+ postcss-modules-local-by-default@4.0.5:
+ resolution: {integrity: sha512-6MieY7sIfTK0hYfafw1OMEG+2bg8Q1ocHCpoWLqOKj3JXlKu4G7btkmM/B7lFubYkYWmRSPLZi5chid63ZaZYw==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
- postcss-modules-scope@3.1.1:
- resolution: {integrity: sha512-uZgqzdTleelWjzJY+Fhti6F3C9iF1JR/dODLs/JDefozYcKTBCdD8BIl6nNPbTbcLnGrk56hzwZC2DaGNvYjzA==}
+ postcss-modules-scope@3.2.0:
+ resolution: {integrity: sha512-oq+g1ssrsZOsx9M96c5w8laRmvEu9C3adDSjI8oTcbfkrTE8hx/zfyobUoWIxaKPO8bt6S62kxpw5GqypEw1QQ==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
@@ -7810,8 +8435,8 @@ packages:
peerDependencies:
postcss: '>=8.0.0'
- postcss-selector-parser@6.0.15:
- resolution: {integrity: sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw==}
+ postcss-selector-parser@6.1.0:
+ resolution: {integrity: sha512-UMz42UD0UY0EApS0ZL9o1XnLhSTtvvvLe5Dc2H2O56fvRZi+KulDyf5ctDhhtYJBGKStV2FL1fy6253cmLgqVQ==}
engines: {node: '>=4'}
postcss-simple-vars@7.0.1:
@@ -7839,6 +8464,10 @@ packages:
resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==}
engines: {node: ^10 || ^12 || >=14}
+ postcss@8.4.39:
+ resolution: {integrity: sha512-0vzE+lAiG7hZl1/9I8yzKLx3aR9Xbof3fBHKunvMfOCYAtMhrsnccJY2iTURb9EZd5+pLuiNV9/c/GZJOHsgIw==}
+ engines: {node: ^10 || ^12 || >=14}
+
prelude-ls@1.2.1:
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
engines: {node: '>= 0.8.0'}
@@ -8124,8 +8753,8 @@ packages:
regenerate@1.4.2:
resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==}
- regenerator-runtime@0.14.0:
- resolution: {integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==}
+ regenerator-runtime@0.14.1:
+ resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==}
regenerator-transform@0.15.2:
resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==}
@@ -8218,9 +8847,9 @@ packages:
deprecated: Rimraf versions prior to v4 are no longer supported
hasBin: true
- rimraf@5.0.5:
- resolution: {integrity: sha512-CqDakW+hMe/Bz202FPEymy68P+G50RfMQK+Qo5YUqc9SPipvbGjCGKd0RSKEelbsfQuw3g5NZDSrlZZAJurH1A==}
- engines: {node: '>=14'}
+ rimraf@5.0.8:
+ resolution: {integrity: sha512-XSh0V2/yNhDEi8HwdIefD8MLgs4LQXPag/nEJWs3YUc3Upn+UHa1GyIkEg9xSSNt7HnkO5FjTvmcRzgf+8UZuw==}
+ engines: {node: '>=18'}
hasBin: true
rollup-plugin-preserve-directives@0.4.0:
@@ -8238,11 +8867,6 @@ packages:
rollup:
optional: true
- rollup@4.17.1:
- resolution: {integrity: sha512-0gG94inrUtg25sB2V/pApwiv1lUb0bQ25FPNuzO89Baa+B+c0ccaaBKM5zkZV/12pUUdH+lWCSm9wmHqyocuVQ==}
- engines: {node: '>=18.0.0', npm: '>=8.0.0'}
- hasBin: true
-
rollup@4.18.0:
resolution: {integrity: sha512-QmJz14PX3rzbJCN1SG4Xe/bAAX2a6NpCP8ab2vfu2GiUr8AQcr2nCV/oEO3yneFarB67zk8ShlIyWb2LGTb3Sg==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
@@ -8251,6 +8875,10 @@ packages:
rrweb-cssom@0.6.0:
resolution: {integrity: sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw==}
+ run-applescript@7.0.0:
+ resolution: {integrity: sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A==}
+ engines: {node: '>=18'}
+
run-async@3.0.0:
resolution: {integrity: sha512-540WwVDOMxA6dN6We19EcT9sc3hkXPw5mzRNGM3FkdN/vtE9NFvj5lFAPNwUDmJjXidm3v7TC1cTE7t17Ulm1Q==}
engines: {node: '>=0.12.0'}
@@ -8295,13 +8923,39 @@ packages:
webpack:
optional: true
+ sass-loader@14.2.1:
+ resolution: {integrity: sha512-G0VcnMYU18a4N7VoNDegg2OuMjYtxnqzQWARVWCIVSZwJeiL9kg8QMsuIZOplsJgTzZLF6jGxI3AClj8I9nRdQ==}
+ engines: {node: '>= 18.12.0'}
+ peerDependencies:
+ '@rspack/core': 0.x || 1.x
+ node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0
+ sass: ^1.3.0
+ sass-embedded: '*'
+ webpack: ^5.0.0
+ peerDependenciesMeta:
+ '@rspack/core':
+ optional: true
+ node-sass:
+ optional: true
+ sass:
+ optional: true
+ sass-embedded:
+ optional: true
+ webpack:
+ optional: true
+
sass@1.71.1:
resolution: {integrity: sha512-wovtnV2PxzteLlfNzbgm1tFXPLoZILYAMJtvoXXkD7/+1uP41eKkIt1ypWq5/q2uT94qHjXehEYfmjKOvjL9sg==}
engines: {node: '>=14.0.0'}
hasBin: true
- sass@1.72.0:
- resolution: {integrity: sha512-Gpczt3WA56Ly0Mn8Sl21Vj94s1axi9hDIzDFn9Ph9x3C3p4nNyvsqJoQyVXKou6cBlfFWEgRW4rT8Tb4i3XnVA==}
+ sass@1.77.2:
+ resolution: {integrity: sha512-eb4GZt1C3avsX3heBNlrc7I09nyT00IUuo4eFhAbeXWU2fvA7oXI53SxODVAA+zgZCk9aunAZgO+losjR3fAwA==}
+ engines: {node: '>=14.0.0'}
+ hasBin: true
+
+ sass@1.77.6:
+ resolution: {integrity: sha512-ByXE1oLD79GVq9Ht1PeHWCPMPB8XHpBuz1r85oByKHjZY6qV6rWnQovQzXJXuQ/XyE1Oj3iPk3lo28uzaRA2/Q==}
engines: {node: '>=14.0.0'}
hasBin: true
@@ -8598,8 +9252,8 @@ packages:
sprintf-js@1.1.3:
resolution: {integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==}
- ssri@10.0.5:
- resolution: {integrity: sha512-bSf16tAFkGeRlUNDjXu8FzaMQt6g2HZJrun7mtMbIPOddxt3GLMSz5VWUWcqTJUPfLEaDIepGxv+bYQW49596A==}
+ ssri@10.0.6:
+ resolution: {integrity: sha512-MGrFH9Z4NP9Iyhqn16sDtBpRRNJ0Y2hNa6D65h736fVSaPCHr4DM4sWUNvVaSuC+0OBGhwsrydQwmgfg5LncqQ==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
stackback@0.0.2:
@@ -8700,9 +9354,6 @@ packages:
resolution: {integrity: sha512-0fk9zBqO67Nq5M/m45qHCJxylV/DhBlIOVExqgOMiCCrzrhU6tCibRXNqE3jwJLftzE9SNuZtYbpzcO+i9FiKw==}
engines: {node: '>=14.16'}
- strip-literal@2.0.0:
- resolution: {integrity: sha512-f9vHgsCWBq2ugHAkGMiiYY+AYG0D/cbloKKg0nhaaaSNsujdGIpVXCNsrJpCKr5M0f4aI31mr13UjY6GAuXCKA==}
-
strip-literal@2.1.0:
resolution: {integrity: sha512-Op+UycaUt/8FbN/Z2TWPBLge3jWrP3xj10f3fnYxf052bKuS3EKs1ZQcVGjnEMdsNVAM+plXRdmjrZ/KgG3Skw==}
@@ -8784,8 +9435,8 @@ packages:
tar-stream@3.1.7:
resolution: {integrity: sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==}
- tar@6.2.0:
- resolution: {integrity: sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==}
+ tar@6.2.1:
+ resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==}
engines: {node: '>=10'}
terser-webpack-plugin@5.3.10:
@@ -8809,6 +9460,16 @@ packages:
engines: {node: '>=10'}
hasBin: true
+ terser@5.29.2:
+ resolution: {integrity: sha512-ZiGkhUBIM+7LwkNjXYJq8svgkd+QK3UUr0wJqY4MieaezBSAIPgbSPZyIx0idM6XWK5CMzSWa8MJIzmRcB8Caw==}
+ engines: {node: '>=10'}
+ hasBin: true
+
+ terser@5.31.1:
+ resolution: {integrity: sha512-37upzU1+viGvuFtBo9NPufCb9dwM0+l9hMxYyWfBA+fbwrPqNJAhbZ6W47bBFnZHKHTUBnMvi87434qq+qnxOg==}
+ engines: {node: '>=10'}
+ hasBin: true
+
test-exclude@6.0.0:
resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==}
engines: {node: '>=8'}
@@ -8823,6 +9484,12 @@ packages:
text-table@0.2.0:
resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
+ thingies@1.21.0:
+ resolution: {integrity: sha512-hsqsJsFMsV+aD4s3CWKk85ep/3I9XzYV/IXaSouJMYIoDlgyi11cBhsqYe9/geRfB0YIikBQg6raRaM+nIMP9g==}
+ engines: {node: '>=10.18'}
+ peerDependencies:
+ tslib: ^2
+
through@2.3.8:
resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==}
@@ -8874,15 +9541,15 @@ packages:
tiny-warning@1.0.3:
resolution: {integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==}
- tinybench@2.5.1:
- resolution: {integrity: sha512-65NKvSuAVDP/n4CqH+a9w2kTlLReS9vhsAP06MWx+/89nMinJyB2icyl58RIcqCmIggpojIGeuJGhjU1aGMBSg==}
+ tinybench@2.8.0:
+ resolution: {integrity: sha512-1/eK7zUnIklz4JUUlL+658n58XO2hHLQfSk1Zf2LKieUjxidN16eKFEoDEfjHc3ohofSSqK3X5yO6VGb6iW8Lw==}
- tinypool@0.8.2:
- resolution: {integrity: sha512-SUszKYe5wgsxnNOVlBYO6IC+8VGWdVGZWAqUxp3UErNBtptZvWbwyUOyzNL59zigz2rCA92QiL3wvG+JDSdJdQ==}
+ tinypool@0.8.4:
+ resolution: {integrity: sha512-i11VH5gS6IFeLY3gMBQ00/MmLncVP7JLXOw1vlgkytLmJK7QnEr7NXf0LBdxfmNPAeyetukOk0bOYrJrFGjYJQ==}
engines: {node: '>=14.0.0'}
- tinyspy@2.2.0:
- resolution: {integrity: sha512-d2eda04AN/cPOR89F7Xv5bK/jrQEhmcLFe6HFldoeO9AJtps+fqEnh486vnT/8y4bw38pSyxDcTCAq+Ks2aJTg==}
+ tinyspy@2.2.1:
+ resolution: {integrity: sha512-KYad6Vy5VDWV4GH3fjpseMQ/XU2BhIYP7Vzd0LG44qRWm/Yt2WCOTicFdvmgo6gWaqooMQCawTtILVQJupKu7A==}
engines: {node: '>=14.0.0'}
tmp@0.0.33:
@@ -8928,6 +9595,12 @@ packages:
resolution: {integrity: sha512-tk2G5R2KRwBd+ZN0zaEXpmzdKyOYksXwywulIX95MBODjSzMIuQnQ3m8JxgbhnL1LeVo7lqQKsYa1O3Htl7K5g==}
engines: {node: '>=18'}
+ tree-dump@1.0.2:
+ resolution: {integrity: sha512-dpev9ABuLWdEubk+cIaI9cHwRNNDjkBBLXTwI4UCUFdQ5xXKqNXoK4FEciw/vxf+NQ7Cb7sGUyeUtORvHIdRXQ==}
+ engines: {node: '>=10.0'}
+ peerDependencies:
+ tslib: '2'
+
tree-kill@1.2.2:
resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==}
hasBin: true
@@ -8965,6 +9638,9 @@ packages:
tslib@2.6.2:
resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
+ tslib@2.6.3:
+ resolution: {integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==}
+
tuf-js@2.2.0:
resolution: {integrity: sha512-ZSDngmP1z6zw+FIkIBjvOp/II/mIub/O7Pp12j1WNsiCpg5R5wAc//i555bBQsE44O94btLt0xM/Zr2LQjwdCg==}
engines: {node: ^16.14.0 || >=18.0.0}
@@ -9069,8 +9745,10 @@ packages:
engines: {node: '>=14.17'}
hasBin: true
- ufo@1.3.0:
- resolution: {integrity: sha512-bRn3CsoojyNStCZe0BG0Mt4Nr/4KF+rhFlnNXybgqt5pXHNFRlqinSoQaTrGyzE4X8aHplSb+TorH+COin9Yxw==}
+ typescript@5.5.3:
+ resolution: {integrity: sha512-/hreyEujaB0w76zKo6717l3L0o/qEUtRgdvUBvlkhoWeOVMjMuHNHk0BRBzikzuGDqNmPQbg5ifMEqsHLiIUcQ==}
+ engines: {node: '>=14.17'}
+ hasBin: true
ufo@1.5.3:
resolution: {integrity: sha512-Y7HYmWaFwPUmkoQCUIAYpKqkOf+SbVj/2fJJZ4RJMCfZp0rTGwRbzQD+HghfnhKOjL9E01okqz+ncJskGYfBNw==}
@@ -9092,6 +9770,10 @@ packages:
resolution: {integrity: sha512-72RFADWFqKmUb2hmmvNODKL3p9hcB6Gt2DOQMis1SEBaV6a4MH8soBvzg+95CYhCKPFedut2JY9bMfrDl9D23g==}
engines: {node: '>=14.0'}
+ undici@6.18.0:
+ resolution: {integrity: sha512-nT8jjv/fE9Et1ilR6QoW8ingRTY2Pp4l2RUrdzV5Yz35RJDrtPc1DXvuNqcpsJSGIRHFdt3YKKktTzJA6r0fTA==}
+ engines: {node: '>=18.17'}
+
undici@6.19.2:
resolution: {integrity: sha512-JfjKqIauur3Q6biAtHJ564e3bWa8VvT+7cSiOJHFbX4Erv6CLGDpg8z+Fmg/1OI/47RA+GI2QZaF48SSaLvyBA==}
engines: {node: '>=18.17'}
@@ -9208,8 +9890,8 @@ packages:
unwasm@0.3.9:
resolution: {integrity: sha512-LDxTx/2DkFURUd+BU1vUsF/moj0JsoTvl+2tcg2AUOiEzVturhGGx17/IMgGvKUYdZwr33EJHtChCJuhu9Ouvg==}
- update-browserslist-db@1.0.13:
- resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==}
+ update-browserslist-db@1.1.0:
+ resolution: {integrity: sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==}
hasBin: true
peerDependencies:
browserslist: '>= 4.21.0'
@@ -9324,8 +10006,8 @@ packages:
resolution: {integrity: sha512-YU/Scild/Rdy6qwgdILYRlO99Wp8ti2CmlMlYioEg7lRtxAST5iCFjviDya+BYQDgc3Pugh4KzOypVwjZknF2A==}
hasBin: true
- vite-node@1.3.1:
- resolution: {integrity: sha512-azbRrqRxlWTJEVbzInZCTchx0X69M/XPTCz4H+TLvlTcR/xH/3hkRqhOakT41fMJCMzXTu4UvegkZiEoJAWvng==}
+ vite-node@1.6.0:
+ resolution: {integrity: sha512-de6HJgzC+TFzOu0NTC4RAIsyf/DY/ibWDYQUcuEA84EMHhcefTUGkjFHKKEJhQN4A+6I0u++kr3l36ZF2d7XRw==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
@@ -9390,8 +10072,8 @@ packages:
terser:
optional: true
- vite@5.2.10:
- resolution: {integrity: sha512-PAzgUZbP7msvQvqdSD+ErD5qGnSFiGOoWmV5yAKUEI0kdhjbH6nMWVyZQC/hSc4aXwc0oJ9aEdIiF9Oje0JFCw==}
+ vite@5.2.11:
+ resolution: {integrity: sha512-HndV31LWW05i1BLPMUCE1B9E9GFbOu1MbenhS58FuK6owSO5qHm7GiCotrNY1YE5rMeQSFBGmT5ZaLEjFizgiQ==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
@@ -9418,33 +10100,61 @@ packages:
terser:
optional: true
- vitefu@0.2.5:
- resolution: {integrity: sha512-SgHtMLoqaeeGnd2evZ849ZbACbnwQCIwRH57t18FxcXoZop0uQu0uzlIhJBlF/eWVzuce0sHeqPcDo+evVcg8Q==}
- peerDependencies:
- vite: ^3.0.0 || ^4.0.0 || ^5.0.0
- peerDependenciesMeta:
- vite:
- optional: true
-
- vitest@1.3.1:
- resolution: {integrity: sha512-/1QJqXs8YbCrfv/GPQ05wAZf2eakUPLPa18vkJAKE7RXOKfVHqMZZ1WlTjiwl6Gcn65M5vpNUB6EFLnEdRdEXQ==}
+ vite@5.3.3:
+ resolution: {integrity: sha512-NPQdeCU0Dv2z5fu+ULotpuq5yfCS1BzKUIPhNbP3YBfAMGJXbt2nS+sbTFu+qchaqWTD+H3JK++nRwr6XIcp6A==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
- '@edge-runtime/vm': '*'
'@types/node': ^18.0.0 || >=20.0.0
- '@vitest/browser': 1.3.1
- '@vitest/ui': 1.3.1
- happy-dom: '*'
- jsdom: '*'
+ less: '*'
+ lightningcss: ^1.21.0
+ sass: '*'
+ stylus: '*'
+ sugarss: '*'
+ terser: ^5.4.0
peerDependenciesMeta:
- '@edge-runtime/vm':
- optional: true
'@types/node':
optional: true
- '@vitest/browser':
+ less:
optional: true
- '@vitest/ui':
+ lightningcss:
+ optional: true
+ sass:
+ optional: true
+ stylus:
+ optional: true
+ sugarss:
+ optional: true
+ terser:
+ optional: true
+
+ vitefu@0.2.5:
+ resolution: {integrity: sha512-SgHtMLoqaeeGnd2evZ849ZbACbnwQCIwRH57t18FxcXoZop0uQu0uzlIhJBlF/eWVzuce0sHeqPcDo+evVcg8Q==}
+ peerDependencies:
+ vite: ^3.0.0 || ^4.0.0 || ^5.0.0
+ peerDependenciesMeta:
+ vite:
+ optional: true
+
+ vitest@1.6.0:
+ resolution: {integrity: sha512-H5r/dN06swuFnzNFhq/dnz37bPXnq8xB2xB5JOVk8K09rUtoeNN+LHWkoQ0A/i3hvbUKKcCei9KpbxqHMLhLLA==}
+ engines: {node: ^18.0.0 || >=20.0.0}
+ hasBin: true
+ peerDependencies:
+ '@edge-runtime/vm': '*'
+ '@types/node': ^18.0.0 || >=20.0.0
+ '@vitest/browser': 1.6.0
+ '@vitest/ui': 1.6.0
+ happy-dom: '*'
+ jsdom: '*'
+ peerDependenciesMeta:
+ '@edge-runtime/vm':
+ optional: true
+ '@types/node':
+ optional: true
+ '@vitest/browser':
+ optional: true
+ '@vitest/ui':
optional: true
happy-dom:
optional: true
@@ -9460,8 +10170,11 @@ packages:
vscode-textmate@8.0.0:
resolution: {integrity: sha512-AFbieoL7a5LMqcnOF04ji+rpXadgOXnZsxQr//r83kLPr7biP7am3g9zbaZIaBGwBRWeSvoMD4mgPdX3e4NWBg==}
- vue-component-type-helpers@1.8.4:
- resolution: {integrity: sha512-6bnLkn8O0JJyiFSIF0EfCogzeqNXpnjJ0vW/SZzNHfe6sPx30lTtTXlE5TFs2qhJlAtDFybStVNpL73cPe3OMQ==}
+ vscode-uri@3.0.8:
+ resolution: {integrity: sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==}
+
+ vue-component-type-helpers@2.0.26:
+ resolution: {integrity: sha512-sO9qQ8oC520SW6kqlls0iqDak53gsTVSrYylajgjmkt1c0vcgjsGSy1KzlDrbEx8pm02IEYhlUkU5hCYf8rwtg==}
vue-demi@0.14.6:
resolution: {integrity: sha512-8QA7wrYSHKaYgUxDA5ZC24w+eHm3sYCbp0EzcDwKqN3p6HqtTCGR/GVsPyZW92unff4UlcSh++lmqDWN3ZIq4w==}
@@ -9474,8 +10187,8 @@ packages:
'@vue/composition-api':
optional: true
- vue-template-compiler@2.7.14:
- resolution: {integrity: sha512-zyA5Y3ArvVG0NacJDkkzJuPQDF8RFeRlzV2vLeSnhSpieO6LK2OVbdLPi5MPPs09Ii+gMO8nY4S3iKQxBxDmWQ==}
+ vue-template-compiler@2.7.16:
+ resolution: {integrity: sha512-AYbUWAJHLGGQM7+cNTELw+KsOG9nl2CnSv467WobS5Cv9uk3wFcnr1Etsz2sEIHEZvw1U+o9mRlEO6QbZvUPGQ==}
vue-tsc@1.8.27:
resolution: {integrity: sha512-WesKCAZCRAbmmhuGl3+VrdWItEvfoFIPXOvUJkjULi+x+6G/Dy69yO3TBRJDr9eUlmsNAwVmxsNZxvHKzbkKdg==}
@@ -9483,14 +10196,19 @@ packages:
peerDependencies:
typescript: '*'
- vue-tsc@2.0.6:
- resolution: {integrity: sha512-kK50W4XqQL34vHRkxlRWLicrT6+F9xfgCgJ4KSmCHcytKzc1u3c94XXgI+CjmhOSxyw0krpExF7Obo7y4+0dVQ==}
+ vue-tsc@2.0.26:
+ resolution: {integrity: sha512-tOhuwy2bIXbMhz82ef37qeiaQHMXKQkD6mOF6CCPl3/uYtST3l6fdNyfMxipudrQTxTfXVPlgJdMENBFfC1CfQ==}
hasBin: true
peerDependencies:
- typescript: '*'
+ typescript: '>=5.0.0'
- vue@3.3.4:
- resolution: {integrity: sha512-VTyEYn3yvIeY1Py0WaYGZsXnz3y5UnGi62GjVEqvEGPl6nxbOrCXbVOTQWBEJUqAyTUk2uJ5JLVnYJ6ZzGbrSw==}
+ vue@3.4.31:
+ resolution: {integrity: sha512-njqRrOy7W3YLAlVqSKpBebtZpDVg21FPoaq1I7f/+qqBThK9ChAIjkRWgeP6Eat+8C+iia4P3OYqpATP21BCoQ==}
+ peerDependencies:
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
w3c-xmlserializer@5.0.0:
resolution: {integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==}
@@ -9500,12 +10218,19 @@ packages:
resolution: {integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==}
engines: {node: '>=10.13.0'}
+ watchpack@2.4.1:
+ resolution: {integrity: sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==}
+ engines: {node: '>=10.13.0'}
+
wbuf@1.7.3:
resolution: {integrity: sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==}
wcwidth@1.0.1:
resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==}
+ weak-lru-cache@1.2.2:
+ resolution: {integrity: sha512-DEAoo25RfSYMuTGc9vPJzZcZullwIqRDSI9LOy+fkCJPi6hykCnfKaXTuPBDuXAUcqHXyOgFtHNp/kB2FjYHbw==}
+
web-encoding@1.1.5:
resolution: {integrity: sha512-HYLeVCdJ0+lBYV2FvNZmv3HJ2Nt0QYXqZojk3d9FJOLkwnuhzM9tmamh8d7HPM8QqjKH8DeHkFTx+CFlWpZZDA==}
@@ -9535,6 +10260,15 @@ packages:
webpack:
optional: true
+ webpack-dev-middleware@7.2.1:
+ resolution: {integrity: sha512-hRLz+jPQXo999Nx9fXVdKlg/aehsw1ajA9skAneGmT03xwmyuhvF93p6HUKKbWhXdcERtGTzUCtIQr+2IQegrA==}
+ engines: {node: '>= 18.12.0'}
+ peerDependencies:
+ webpack: ^5.0.0
+ peerDependenciesMeta:
+ webpack:
+ optional: true
+
webpack-dev-server@4.15.1:
resolution: {integrity: sha512-5hbAst3h3C3L8w6W4P96L5vaV0PxSmJhxZvWKYIdgxOQm8pNZ5dEOmmSLBVpP85ReeyRt6AS1QJNyo/oFFPeVA==}
engines: {node: '>= 12.13.0'}
@@ -9548,6 +10282,19 @@ packages:
webpack-cli:
optional: true
+ webpack-dev-server@5.0.4:
+ resolution: {integrity: sha512-dljXhUgx3HqKP2d8J/fUMvhxGhzjeNVarDLcbO/EWMSgRizDkxHQDZQaLFL5VJY9tRBj2Gz+rvCEYYvhbqPHNA==}
+ engines: {node: '>= 18.12.0'}
+ hasBin: true
+ peerDependencies:
+ webpack: ^5.0.0
+ webpack-cli: '*'
+ peerDependenciesMeta:
+ webpack:
+ optional: true
+ webpack-cli:
+ optional: true
+
webpack-merge@5.10.0:
resolution: {integrity: sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==}
engines: {node: '>=10.0.0'}
@@ -9579,6 +10326,16 @@ packages:
webpack-cli:
optional: true
+ webpack@5.91.0:
+ resolution: {integrity: sha512-rzVwlLeBWHJbmgTC/8TvAcu5vpJNII+MelQpylD4jNERPwpBJOE2lEcko1zJX3QJeLjTTAnQxn/OJ8bjDzVQaw==}
+ engines: {node: '>=10.13.0'}
+ hasBin: true
+ peerDependencies:
+ webpack-cli: '*'
+ peerDependenciesMeta:
+ webpack-cli:
+ optional: true
+
websocket-driver@0.7.4:
resolution: {integrity: sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==}
engines: {node: '>=0.8.0'}
@@ -9665,8 +10422,8 @@ packages:
wrappy@1.0.2:
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
- ws@8.16.0:
- resolution: {integrity: sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==}
+ ws@8.18.0:
+ resolution: {integrity: sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==}
engines: {node: '>=10.0.0'}
peerDependencies:
bufferutil: ^4.0.1
@@ -9713,8 +10470,8 @@ packages:
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
engines: {node: '>=10'}
- yocto-queue@1.0.0:
- resolution: {integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==}
+ yocto-queue@1.1.1:
+ resolution: {integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==}
engines: {node: '>=12.20'}
yup@1.3.2:
@@ -9748,16 +10505,16 @@ snapshots:
'@aashutoshrathi/word-wrap@1.2.6': {}
- '@adobe/css-tools@4.3.2': {}
+ '@adobe/css-tools@4.4.0': {}
'@ampproject/remapping@2.3.0':
dependencies:
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
- '@analogjs/vite-plugin-angular@1.0.0(@angular-devkit/build-angular@17.3.0(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2))(@swc/core@1.4.6)(@types/express@4.17.21)(@types/node@20.10.6)(chokidar@3.6.0)(ng-packagr@17.3.0(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2))(tslib@2.6.2)(typescript@5.4.2))(sugarss@4.0.1)(typescript@5.4.2))':
+ '@analogjs/vite-plugin-angular@1.0.0(@angular-devkit/build-angular@18.0.7(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2))(@swc/core@1.4.6)(@types/node@20.14.10)(chokidar@3.6.0)(ng-packagr@17.3.0(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2))(tslib@2.6.3)(typescript@5.4.2))(sugarss@4.0.1(postcss@8.4.38))(typescript@5.4.2))':
dependencies:
- '@angular-devkit/build-angular': 17.3.0(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2))(@swc/core@1.4.6)(@types/express@4.17.21)(@types/node@20.10.6)(chokidar@3.6.0)(ng-packagr@17.3.0(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2))(tslib@2.6.2)(typescript@5.4.2))(sugarss@4.0.1)(typescript@5.4.2)
+ '@angular-devkit/build-angular': 18.0.7(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2))(@swc/core@1.4.6)(@types/node@20.14.10)(chokidar@3.6.0)(ng-packagr@17.3.0(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2))(tslib@2.6.3)(typescript@5.4.2))(sugarss@4.0.1(postcss@8.4.38))(typescript@5.4.2)
ts-morph: 21.0.1
'@angular-devkit/architect@0.1703.0(chokidar@3.6.0)':
@@ -9767,7 +10524,14 @@ snapshots:
transitivePeerDependencies:
- chokidar
- '@angular-devkit/build-angular@17.3.0(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2))(@swc/core@1.4.6)(@types/express@4.17.21)(@types/node@20.10.6)(chokidar@3.6.0)(ng-packagr@17.3.0(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2))(tslib@2.6.2)(typescript@5.4.2))(sugarss@4.0.1(postcss@8.4.35))(typescript@5.4.2)':
+ '@angular-devkit/architect@0.1800.7(chokidar@3.6.0)':
+ dependencies:
+ '@angular-devkit/core': 18.0.7(chokidar@3.6.0)
+ rxjs: 7.8.1
+ transitivePeerDependencies:
+ - chokidar
+
+ '@angular-devkit/build-angular@17.3.0(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2))(@swc/core@1.4.6)(@types/express@4.17.21)(@types/node@20.14.10)(chokidar@3.6.0)(ng-packagr@17.3.0(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2))(tslib@2.6.3)(typescript@5.4.2))(sugarss@4.0.1(postcss@8.4.35))(typescript@5.4.2)':
dependencies:
'@ampproject/remapping': 2.3.0
'@angular-devkit/architect': 0.1703.0(chokidar@3.6.0)
@@ -9785,12 +10549,12 @@ snapshots:
'@babel/runtime': 7.24.0
'@discoveryjs/json-ext': 0.5.7
'@ngtools/webpack': 17.3.0(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2))(typescript@5.4.2)(webpack@5.90.3(@swc/core@1.4.6)(esbuild@0.20.1))
- '@vitejs/plugin-basic-ssl': 1.1.0(vite@5.1.5(@types/node@20.10.6)(less@4.2.0)(sass@1.71.1)(sugarss@4.0.1(postcss@8.4.35))(terser@5.29.1))
+ '@vitejs/plugin-basic-ssl': 1.1.0(vite@5.1.5(@types/node@20.14.10)(less@4.2.0)(sass@1.71.1)(sugarss@4.0.1(postcss@8.4.35))(terser@5.29.1))
ansi-colors: 4.1.3
autoprefixer: 10.4.18(postcss@8.4.35)
babel-loader: 9.1.3(@babel/core@7.24.0)(webpack@5.90.3(@swc/core@1.4.6)(esbuild@0.20.1))
babel-plugin-istanbul: 6.1.1
- browserslist: 4.23.0
+ browserslist: 4.23.1
copy-webpack-plugin: 11.0.0(webpack@5.90.3(@swc/core@1.4.6)(esbuild@0.20.1))
critters: 0.0.22
css-loader: 6.10.0(webpack@5.90.3(@swc/core@1.4.6)(esbuild@0.20.1))
@@ -9827,16 +10591,16 @@ snapshots:
tslib: 2.6.2
typescript: 5.4.2
undici: 6.7.1
- vite: 5.1.5(@types/node@20.10.6)(less@4.2.0)(sass@1.71.1)(sugarss@4.0.1(postcss@8.4.35))(terser@5.29.1)
+ vite: 5.1.5(@types/node@20.14.10)(less@4.2.0)(sass@1.71.1)(sugarss@4.0.1(postcss@8.4.35))(terser@5.29.1)
watchpack: 2.4.0
- webpack: 5.90.3(@swc/core@1.4.6)(esbuild@0.20.2)
+ webpack: 5.90.3(@swc/core@1.4.6)(esbuild@0.23.0)
webpack-dev-middleware: 6.1.1(webpack@5.90.3(@swc/core@1.4.6)(esbuild@0.20.1))
webpack-dev-server: 4.15.1(webpack@5.90.3(@swc/core@1.4.6)(esbuild@0.20.1))
webpack-merge: 5.10.0
webpack-subresource-integrity: 5.1.0(webpack@5.90.3(@swc/core@1.4.6)(esbuild@0.20.1))
optionalDependencies:
esbuild: 0.20.1
- ng-packagr: 17.3.0(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2))(tslib@2.6.2)(typescript@5.4.2)
+ ng-packagr: 17.3.0(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2))(tslib@2.6.3)(typescript@5.4.2)
transitivePeerDependencies:
- '@rspack/core'
- '@swc/core'
@@ -9856,7 +10620,7 @@ snapshots:
- utf-8-validate
- webpack-cli
- '@angular-devkit/build-angular@17.3.0(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2))(@swc/core@1.4.6)(@types/express@4.17.21)(@types/node@20.10.6)(chokidar@3.6.0)(ng-packagr@17.3.0(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2))(tslib@2.6.2)(typescript@5.4.2))(sugarss@4.0.1)(typescript@5.4.2)':
+ '@angular-devkit/build-angular@17.3.0(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2))(@swc/core@1.4.6)(@types/express@4.17.21)(@types/node@20.14.10)(chokidar@3.6.0)(ng-packagr@17.3.0(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2))(tslib@2.6.3)(typescript@5.4.2))(sugarss@4.0.1)(typescript@5.4.2)':
dependencies:
'@ampproject/remapping': 2.3.0
'@angular-devkit/architect': 0.1703.0(chokidar@3.6.0)
@@ -9874,12 +10638,12 @@ snapshots:
'@babel/runtime': 7.24.0
'@discoveryjs/json-ext': 0.5.7
'@ngtools/webpack': 17.3.0(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2))(typescript@5.4.2)(webpack@5.90.3(@swc/core@1.4.6)(esbuild@0.20.1))
- '@vitejs/plugin-basic-ssl': 1.1.0(vite@5.1.5(@types/node@20.10.6)(less@4.2.0)(sass@1.71.1)(sugarss@4.0.1)(terser@5.29.1))
+ '@vitejs/plugin-basic-ssl': 1.1.0(vite@5.1.5(@types/node@20.14.10)(less@4.2.0)(sass@1.71.1)(sugarss@4.0.1)(terser@5.29.1))
ansi-colors: 4.1.3
autoprefixer: 10.4.18(postcss@8.4.35)
babel-loader: 9.1.3(@babel/core@7.24.0)(webpack@5.90.3(@swc/core@1.4.6)(esbuild@0.20.1))
babel-plugin-istanbul: 6.1.1
- browserslist: 4.23.0
+ browserslist: 4.23.1
copy-webpack-plugin: 11.0.0(webpack@5.90.3(@swc/core@1.4.6)(esbuild@0.20.1))
critters: 0.0.22
css-loader: 6.10.0(webpack@5.90.3(@swc/core@1.4.6)(esbuild@0.20.1))
@@ -9916,16 +10680,16 @@ snapshots:
tslib: 2.6.2
typescript: 5.4.2
undici: 6.7.1
- vite: 5.1.5(@types/node@20.10.6)(less@4.2.0)(sass@1.71.1)(sugarss@4.0.1)(terser@5.29.1)
+ vite: 5.1.5(@types/node@20.14.10)(less@4.2.0)(sass@1.71.1)(sugarss@4.0.1)(terser@5.29.1)
watchpack: 2.4.0
- webpack: 5.90.3(@swc/core@1.4.6)(esbuild@0.20.2)
+ webpack: 5.90.3(@swc/core@1.4.6)(esbuild@0.23.0)
webpack-dev-middleware: 6.1.1(webpack@5.90.3(@swc/core@1.4.6)(esbuild@0.20.1))
webpack-dev-server: 4.15.1(webpack@5.90.3(@swc/core@1.4.6)(esbuild@0.20.1))
webpack-merge: 5.10.0
webpack-subresource-integrity: 5.1.0(webpack@5.90.3(@swc/core@1.4.6)(esbuild@0.20.1))
optionalDependencies:
esbuild: 0.20.1
- ng-packagr: 17.3.0(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2))(tslib@2.6.2)(typescript@5.4.2)
+ ng-packagr: 17.3.0(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2))(tslib@2.6.3)(typescript@5.4.2)
transitivePeerDependencies:
- '@rspack/core'
- '@swc/core'
@@ -9945,15 +10709,113 @@ snapshots:
- utf-8-validate
- webpack-cli
+ '@angular-devkit/build-angular@18.0.7(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2))(@swc/core@1.4.6)(@types/node@20.14.10)(chokidar@3.6.0)(ng-packagr@17.3.0(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2))(tslib@2.6.3)(typescript@5.4.2))(sugarss@4.0.1(postcss@8.4.38))(typescript@5.4.2)':
+ dependencies:
+ '@ampproject/remapping': 2.3.0
+ '@angular-devkit/architect': 0.1800.7(chokidar@3.6.0)
+ '@angular-devkit/build-webpack': 0.1800.7(chokidar@3.6.0)(webpack-dev-server@5.0.4(webpack@5.91.0(@swc/core@1.4.6)(esbuild@0.21.3)))(webpack@5.91.0(@swc/core@1.4.6)(esbuild@0.21.3))
+ '@angular-devkit/core': 18.0.7(chokidar@3.6.0)
+ '@angular/build': 18.0.7(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2))(@types/node@20.14.10)(chokidar@3.6.0)(less@4.2.0)(postcss@8.4.38)(sugarss@4.0.1(postcss@8.4.38))(terser@5.29.2)(typescript@5.4.2)
+ '@angular/compiler-cli': 17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2)
+ '@babel/core': 7.24.5
+ '@babel/generator': 7.24.5
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-split-export-declaration': 7.24.5
+ '@babel/plugin-transform-async-generator-functions': 7.24.3(@babel/core@7.24.5)
+ '@babel/plugin-transform-async-to-generator': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-runtime': 7.24.3(@babel/core@7.24.5)
+ '@babel/preset-env': 7.24.5(@babel/core@7.24.5)
+ '@babel/runtime': 7.24.5
+ '@discoveryjs/json-ext': 0.5.7
+ '@ngtools/webpack': 18.0.7(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2))(typescript@5.4.2)(webpack@5.91.0(@swc/core@1.4.6)(esbuild@0.21.3))
+ '@vitejs/plugin-basic-ssl': 1.1.0(vite@5.2.11(@types/node@20.14.10)(less@4.2.0)(sass@1.77.2)(sugarss@4.0.1(postcss@8.4.38))(terser@5.29.2))
+ ansi-colors: 4.1.3
+ autoprefixer: 10.4.19(postcss@8.4.38)
+ babel-loader: 9.1.3(@babel/core@7.24.5)(webpack@5.91.0(@swc/core@1.4.6)(esbuild@0.21.3))
+ browserslist: 4.23.1
+ copy-webpack-plugin: 11.0.0(webpack@5.91.0(@swc/core@1.4.6)(esbuild@0.21.3))
+ critters: 0.0.22
+ css-loader: 7.1.1(webpack@5.91.0(@swc/core@1.4.6)(esbuild@0.21.3))
+ esbuild-wasm: 0.21.3
+ fast-glob: 3.3.2
+ http-proxy-middleware: 3.0.0
+ https-proxy-agent: 7.0.4
+ inquirer: 9.2.22
+ istanbul-lib-instrument: 6.0.2
+ jsonc-parser: 3.2.1
+ karma-source-map-support: 1.4.0
+ less: 4.2.0
+ less-loader: 12.2.0(less@4.2.0)(webpack@5.91.0(@swc/core@1.4.6)(esbuild@0.21.3))
+ license-webpack-plugin: 4.0.2(webpack@5.91.0(@swc/core@1.4.6)(esbuild@0.21.3))
+ loader-utils: 3.2.1
+ magic-string: 0.30.10
+ mini-css-extract-plugin: 2.9.0(webpack@5.91.0(@swc/core@1.4.6)(esbuild@0.21.3))
+ mrmime: 2.0.0
+ open: 8.4.2
+ ora: 5.4.1
+ parse5-html-rewriting-stream: 7.0.0
+ picomatch: 4.0.2
+ piscina: 4.5.0
+ postcss: 8.4.38
+ postcss-loader: 8.1.1(postcss@8.4.38)(typescript@5.4.2)(webpack@5.91.0(@swc/core@1.4.6)(esbuild@0.21.3))
+ resolve-url-loader: 5.0.0
+ rxjs: 7.8.1
+ sass: 1.77.2
+ sass-loader: 14.2.1(sass@1.77.2)(webpack@5.91.0(@swc/core@1.4.6)(esbuild@0.21.3))
+ semver: 7.6.2
+ source-map-loader: 5.0.0(webpack@5.91.0(@swc/core@1.4.6)(esbuild@0.21.3))
+ source-map-support: 0.5.21
+ terser: 5.29.2
+ tree-kill: 1.2.2
+ tslib: 2.6.2
+ typescript: 5.4.2
+ undici: 6.18.0
+ vite: 5.2.11(@types/node@20.14.10)(less@4.2.0)(sass@1.77.2)(sugarss@4.0.1(postcss@8.4.38))(terser@5.29.2)
+ watchpack: 2.4.1
+ webpack: 5.91.0(@swc/core@1.4.6)(esbuild@0.23.0)
+ webpack-dev-middleware: 7.2.1(webpack@5.91.0(@swc/core@1.4.6)(esbuild@0.21.3))
+ webpack-dev-server: 5.0.4(webpack@5.91.0(@swc/core@1.4.6)(esbuild@0.21.3))
+ webpack-merge: 5.10.0
+ webpack-subresource-integrity: 5.1.0(webpack@5.91.0(@swc/core@1.4.6)(esbuild@0.21.3))
+ optionalDependencies:
+ esbuild: 0.21.3
+ ng-packagr: 17.3.0(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2))(tslib@2.6.3)(typescript@5.4.2)
+ transitivePeerDependencies:
+ - '@rspack/core'
+ - '@swc/core'
+ - '@types/node'
+ - bufferutil
+ - chokidar
+ - debug
+ - html-webpack-plugin
+ - lightningcss
+ - node-sass
+ - sass-embedded
+ - stylus
+ - sugarss
+ - supports-color
+ - uglify-js
+ - utf-8-validate
+ - webpack-cli
+
'@angular-devkit/build-webpack@0.1703.0(chokidar@3.6.0)(webpack-dev-server@4.15.1(webpack@5.90.3(@swc/core@1.4.6)(esbuild@0.20.1)))(webpack@5.90.3(@swc/core@1.4.6)(esbuild@0.20.1))':
dependencies:
'@angular-devkit/architect': 0.1703.0(chokidar@3.6.0)
rxjs: 7.8.1
- webpack: 5.90.3(@swc/core@1.4.6)(esbuild@0.20.2)
+ webpack: 5.90.3(@swc/core@1.4.6)(esbuild@0.23.0)
webpack-dev-server: 4.15.1(webpack@5.90.3(@swc/core@1.4.6)(esbuild@0.20.1))
transitivePeerDependencies:
- chokidar
+ '@angular-devkit/build-webpack@0.1800.7(chokidar@3.6.0)(webpack-dev-server@5.0.4(webpack@5.91.0(@swc/core@1.4.6)(esbuild@0.21.3)))(webpack@5.91.0(@swc/core@1.4.6)(esbuild@0.21.3))':
+ dependencies:
+ '@angular-devkit/architect': 0.1800.7(chokidar@3.6.0)
+ rxjs: 7.8.1
+ webpack: 5.91.0(@swc/core@1.4.6)(esbuild@0.23.0)
+ webpack-dev-server: 5.0.4(webpack@5.91.0(@swc/core@1.4.6)(esbuild@0.21.3))
+ transitivePeerDependencies:
+ - chokidar
+
'@angular-devkit/core@17.3.0(chokidar@3.6.0)':
dependencies:
ajv: 8.12.0
@@ -9965,6 +10827,17 @@ snapshots:
optionalDependencies:
chokidar: 3.6.0
+ '@angular-devkit/core@18.0.7(chokidar@3.6.0)':
+ dependencies:
+ ajv: 8.13.0
+ ajv-formats: 3.0.1(ajv@8.13.0)
+ jsonc-parser: 3.2.1
+ picomatch: 4.0.2
+ rxjs: 7.8.1
+ source-map: 0.7.4
+ optionalDependencies:
+ chokidar: 3.6.0
+
'@angular-devkit/schematics@17.3.0(chokidar@3.6.0)':
dependencies:
'@angular-devkit/core': 17.3.0(chokidar@3.6.0)
@@ -9978,7 +10851,48 @@ snapshots:
'@angular/animations@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))':
dependencies:
'@angular/core': 17.3.0(rxjs@7.8.1)(zone.js@0.14.4)
- tslib: 2.6.2
+ tslib: 2.6.3
+
+ '@angular/build@18.0.7(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2))(@types/node@20.14.10)(chokidar@3.6.0)(less@4.2.0)(postcss@8.4.38)(sugarss@4.0.1(postcss@8.4.38))(terser@5.29.2)(typescript@5.4.2)':
+ dependencies:
+ '@ampproject/remapping': 2.3.0
+ '@angular-devkit/architect': 0.1800.7(chokidar@3.6.0)
+ '@angular/compiler-cli': 17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2)
+ '@babel/core': 7.24.5
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-split-export-declaration': 7.24.5
+ '@vitejs/plugin-basic-ssl': 1.1.0(vite@5.2.11(@types/node@20.14.10)(less@4.2.0)(sass@1.77.2)(sugarss@4.0.1(postcss@8.4.38))(terser@5.29.2))
+ ansi-colors: 4.1.3
+ browserslist: 4.23.1
+ critters: 0.0.22
+ esbuild: 0.21.3
+ fast-glob: 3.3.2
+ https-proxy-agent: 7.0.4
+ inquirer: 9.2.22
+ lmdb: 3.0.8
+ magic-string: 0.30.10
+ mrmime: 2.0.0
+ ora: 5.4.1
+ parse5-html-rewriting-stream: 7.0.0
+ picomatch: 4.0.2
+ piscina: 4.5.0
+ sass: 1.77.2
+ semver: 7.6.2
+ typescript: 5.4.2
+ undici: 6.18.0
+ vite: 5.2.11(@types/node@20.14.10)(less@4.2.0)(sass@1.77.2)(sugarss@4.0.1(postcss@8.4.38))(terser@5.29.2)
+ watchpack: 2.4.1
+ optionalDependencies:
+ less: 4.2.0
+ postcss: 8.4.38
+ transitivePeerDependencies:
+ - '@types/node'
+ - chokidar
+ - lightningcss
+ - stylus
+ - sugarss
+ - supports-color
+ - terser
'@angular/cli@17.3.0(chokidar@3.6.0)':
dependencies:
@@ -10009,7 +10923,7 @@ snapshots:
dependencies:
'@angular/core': 17.3.0(rxjs@7.8.1)(zone.js@0.14.4)
rxjs: 7.8.1
- tslib: 2.6.2
+ tslib: 2.6.3
'@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2)':
dependencies:
@@ -10020,7 +10934,7 @@ snapshots:
convert-source-map: 1.9.0
reflect-metadata: 0.2.1
semver: 7.6.2
- tslib: 2.6.2
+ tslib: 2.6.3
typescript: 5.4.2
yargs: 17.7.2
transitivePeerDependencies:
@@ -10028,14 +10942,14 @@ snapshots:
'@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))':
dependencies:
- tslib: 2.6.2
+ tslib: 2.6.3
optionalDependencies:
'@angular/core': 17.3.0(rxjs@7.8.1)(zone.js@0.14.4)
'@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)':
dependencies:
rxjs: 7.8.1
- tslib: 2.6.2
+ tslib: 2.6.3
zone.js: 0.14.4
'@angular/forms@17.3.0(@angular/common@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(@angular/platform-browser@17.3.0(@angular/animations@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(rxjs@7.8.1)':
@@ -10044,7 +10958,7 @@ snapshots:
'@angular/core': 17.3.0(rxjs@7.8.1)(zone.js@0.14.4)
'@angular/platform-browser': 17.3.0(@angular/animations@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))
rxjs: 7.8.1
- tslib: 2.6.2
+ tslib: 2.6.3
'@angular/platform-browser-dynamic@17.3.0(@angular/common@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(@angular/platform-browser@17.3.0(@angular/animations@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))':
dependencies:
@@ -10052,13 +10966,13 @@ snapshots:
'@angular/compiler': 17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))
'@angular/core': 17.3.0(rxjs@7.8.1)(zone.js@0.14.4)
'@angular/platform-browser': 17.3.0(@angular/animations@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))
- tslib: 2.6.2
+ tslib: 2.6.3
'@angular/platform-browser@17.3.0(@angular/animations@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))':
dependencies:
'@angular/common': 17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1)
'@angular/core': 17.3.0(rxjs@7.8.1)(zone.js@0.14.4)
- tslib: 2.6.2
+ tslib: 2.6.3
optionalDependencies:
'@angular/animations': 17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))
@@ -10068,7 +10982,15 @@ snapshots:
'@angular/core': 17.3.0(rxjs@7.8.1)(zone.js@0.14.4)
'@angular/platform-browser': 17.3.0(@angular/animations@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))
rxjs: 7.8.1
- tslib: 2.6.2
+ tslib: 2.6.3
+
+ '@angular/router@18.0.6(@angular/common@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(@angular/platform-browser@17.3.0(@angular/animations@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(rxjs@7.8.1)':
+ dependencies:
+ '@angular/common': 17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1)
+ '@angular/core': 17.3.0(rxjs@7.8.1)(zone.js@0.14.4)
+ '@angular/platform-browser': 17.3.0(@angular/animations@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))
+ rxjs: 7.8.1
+ tslib: 2.6.3
'@babel/code-frame@7.24.7':
dependencies:
@@ -10090,7 +11012,7 @@ snapshots:
'@babel/traverse': 7.24.7
'@babel/types': 7.24.7
convert-source-map: 2.0.0
- debug: 4.3.4
+ debug: 4.3.5
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
@@ -10110,7 +11032,27 @@ snapshots:
'@babel/traverse': 7.24.7
'@babel/types': 7.24.7
convert-source-map: 2.0.0
- debug: 4.3.4
+ debug: 4.3.5
+ gensync: 1.0.0-beta.2
+ json5: 2.2.3
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/core@7.24.5':
+ dependencies:
+ '@ampproject/remapping': 2.3.0
+ '@babel/code-frame': 7.24.7
+ '@babel/generator': 7.24.7
+ '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.5)
+ '@babel/helpers': 7.24.7
+ '@babel/parser': 7.24.7
+ '@babel/template': 7.24.7
+ '@babel/traverse': 7.24.7
+ '@babel/types': 7.24.7
+ convert-source-map: 2.0.0
+ debug: 4.3.5
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
@@ -10130,7 +11072,7 @@ snapshots:
'@babel/traverse': 7.24.7
'@babel/types': 7.24.7
convert-source-map: 2.0.0
- debug: 4.3.4
+ debug: 4.3.5
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
@@ -10144,6 +11086,13 @@ snapshots:
'@jridgewell/trace-mapping': 0.3.25
jsesc: 2.5.2
+ '@babel/generator@7.24.5':
+ dependencies:
+ '@babel/types': 7.24.7
+ '@jridgewell/gen-mapping': 0.3.5
+ '@jridgewell/trace-mapping': 0.3.25
+ jsesc: 2.5.2
+
'@babel/generator@7.24.7':
dependencies:
'@babel/types': 7.24.7
@@ -10155,35 +11104,66 @@ snapshots:
dependencies:
'@babel/types': 7.24.7
- '@babel/helper-builder-binary-assignment-operator-visitor@7.22.15':
+ '@babel/helper-annotate-as-pure@7.24.7':
dependencies:
'@babel/types': 7.24.7
+ '@babel/helper-builder-binary-assignment-operator-visitor@7.24.7':
+ dependencies:
+ '@babel/traverse': 7.24.7
+ '@babel/types': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/helper-compilation-targets@7.24.7':
dependencies:
'@babel/compat-data': 7.24.7
'@babel/helper-validator-option': 7.24.7
- browserslist: 4.23.0
+ browserslist: 4.23.1
lru-cache: 5.1.1
semver: 6.3.1
- '@babel/helper-create-class-features-plugin@7.24.0(@babel/core@7.24.0)':
+ '@babel/helper-create-class-features-plugin@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-function-name': 7.24.7
+ '@babel/helper-member-expression-to-functions': 7.24.7
+ '@babel/helper-optimise-call-expression': 7.24.7
+ '@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.0)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ '@babel/helper-split-export-declaration': 7.24.7
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-create-class-features-plugin@7.24.7(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-annotate-as-pure': 7.24.7
'@babel/helper-environment-visitor': 7.24.7
'@babel/helper-function-name': 7.24.7
- '@babel/helper-member-expression-to-functions': 7.23.0
- '@babel/helper-optimise-call-expression': 7.22.5
- '@babel/helper-replace-supers': 7.22.20(@babel/core@7.24.0)
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
+ '@babel/helper-member-expression-to-functions': 7.24.7
+ '@babel/helper-optimise-call-expression': 7.24.7
+ '@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.5)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
'@babel/helper-split-export-declaration': 7.24.7
semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
- '@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.24.0)':
+ '@babel/helper-create-regexp-features-plugin@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-annotate-as-pure': 7.24.7
+ regexpu-core: 5.3.2
+ semver: 6.3.1
+
+ '@babel/helper-create-regexp-features-plugin@7.24.7(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-annotate-as-pure': 7.24.7
regexpu-core: 5.3.2
semver: 6.3.1
@@ -10192,18 +11172,29 @@ snapshots:
'@babel/core': 7.24.0
'@babel/helper-compilation-targets': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
- debug: 4.3.4
+ debug: 4.3.5
lodash.debounce: 4.0.8
resolve: 1.22.8
transitivePeerDependencies:
- supports-color
- '@babel/helper-define-polyfill-provider@0.6.1(@babel/core@7.24.0)':
+ '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-compilation-targets': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
- debug: 4.3.4
+ debug: 4.3.5
+ lodash.debounce: 4.0.8
+ resolve: 1.22.8
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ debug: 4.3.5
lodash.debounce: 4.0.8
resolve: 1.22.8
transitivePeerDependencies:
@@ -10222,9 +11213,12 @@ snapshots:
dependencies:
'@babel/types': 7.24.7
- '@babel/helper-member-expression-to-functions@7.23.0':
+ '@babel/helper-member-expression-to-functions@7.24.7':
dependencies:
+ '@babel/traverse': 7.24.7
'@babel/types': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
'@babel/helper-module-imports@7.18.6':
dependencies:
@@ -10259,6 +11253,17 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helper-module-transforms@7.24.7(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-simple-access': 7.24.7
+ '@babel/helper-split-export-declaration': 7.24.7
+ '@babel/helper-validator-identifier': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/helper-module-transforms@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
@@ -10270,41 +11275,70 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-optimise-call-expression@7.22.5':
+ '@babel/helper-optimise-call-expression@7.24.7':
dependencies:
'@babel/types': 7.24.7
'@babel/helper-plugin-utils@7.24.7': {}
- '@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.24.0)':
+ '@babel/helper-remap-async-to-generator@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-annotate-as-pure': 7.24.7
'@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-wrap-function': 7.22.20
+ '@babel/helper-wrap-function': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
- '@babel/helper-replace-supers@7.22.20(@babel/core@7.24.0)':
+ '@babel/helper-remap-async-to-generator@7.24.7(@babel/core@7.24.5)':
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-annotate-as-pure': 7.24.7
'@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-member-expression-to-functions': 7.23.0
- '@babel/helper-optimise-call-expression': 7.22.5
+ '@babel/helper-wrap-function': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
- '@babel/helper-simple-access@7.24.7':
+ '@babel/helper-replace-supers@7.24.7(@babel/core@7.24.0)':
dependencies:
- '@babel/traverse': 7.24.7
- '@babel/types': 7.24.7
+ '@babel/core': 7.24.0
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-member-expression-to-functions': 7.24.7
+ '@babel/helper-optimise-call-expression': 7.24.7
transitivePeerDependencies:
- supports-color
- '@babel/helper-skip-transparent-expression-wrappers@7.22.5':
+ '@babel/helper-replace-supers@7.24.7(@babel/core@7.24.5)':
dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-member-expression-to-functions': 7.24.7
+ '@babel/helper-optimise-call-expression': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-simple-access@7.24.7':
+ dependencies:
+ '@babel/traverse': 7.24.7
'@babel/types': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-skip-transparent-expression-wrappers@7.24.7':
+ dependencies:
+ '@babel/traverse': 7.24.7
+ '@babel/types': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
'@babel/helper-split-export-declaration@7.22.6':
dependencies:
'@babel/types': 7.24.7
+ '@babel/helper-split-export-declaration@7.24.5':
+ dependencies:
+ '@babel/types': 7.24.7
+
'@babel/helper-split-export-declaration@7.24.7':
dependencies:
'@babel/types': 7.24.7
@@ -10315,11 +11349,14 @@ snapshots:
'@babel/helper-validator-option@7.24.7': {}
- '@babel/helper-wrap-function@7.22.20':
+ '@babel/helper-wrap-function@7.24.7':
dependencies:
'@babel/helper-function-name': 7.24.7
'@babel/template': 7.24.7
+ '@babel/traverse': 7.24.7
'@babel/types': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
'@babel/helpers@7.24.7':
dependencies:
@@ -10337,76 +11374,148 @@ snapshots:
dependencies:
'@babel/types': 7.24.7
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3(@babel/core@7.24.0)':
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.7(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3(@babel/core@7.24.0)':
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.7(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.7
+
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.24.0)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ '@babel/plugin-transform-optional-chaining': 7.24.7(@babel/core@7.24.0)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ '@babel/plugin-transform-optional-chaining': 7.24.7(@babel/core@7.24.5)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.7(@babel/core@7.24.0)':
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-environment-visitor': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.7(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+
'@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
+ '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+
'@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.7
+
'@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.7
+
'@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.7
+
'@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.7
+
'@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-import-assertions@7.23.3(@babel/core@7.24.0)':
+ '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.7
+
+ '@babel/plugin-syntax-import-assertions@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-import-attributes@7.23.3(@babel/core@7.24.0)':
+ '@babel/plugin-syntax-import-assertions@7.24.7(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.7
+
+ '@babel/plugin-syntax-import-attributes@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-import-attributes@7.24.7(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.7
+
'@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.7
+
'@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-jsx@7.23.3(@babel/core@7.24.7)':
+ '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.5)':
dependencies:
- '@babel/core': 7.24.7
+ '@babel/core': 7.24.5
'@babel/helper-plugin-utils': 7.24.7
'@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.24.7)':
@@ -10419,41 +11528,81 @@ snapshots:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.7
+
'@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.7
+
'@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.7
+
'@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.7
+
'@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.7
+
'@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.7
+
'@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.7
+
'@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.7
+
'@babel/plugin-syntax-typescript@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
@@ -10462,142 +11611,323 @@ snapshots:
'@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.0)
+ '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.0)
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-arrow-functions@7.23.3(@babel/core@7.24.0)':
+ '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.5)
+ '@babel/helper-plugin-utils': 7.24.7
+
+ '@babel/plugin-transform-arrow-functions@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-transform-arrow-functions@7.24.7(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.7
+
'@babel/plugin-transform-async-generator-functions@7.23.9(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-environment-visitor': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.0)
+ '@babel/helper-remap-async-to-generator': 7.24.7(@babel/core@7.24.0)
'@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.0)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-async-generator-functions@7.24.3(@babel/core@7.24.0)':
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-remap-async-to-generator': 7.24.7(@babel/core@7.24.0)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.0)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-async-generator-functions@7.24.3(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-remap-async-to-generator': 7.24.7(@babel/core@7.24.5)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.5)
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-transform-async-to-generator@7.23.3(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-module-imports': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.0)
+ '@babel/helper-remap-async-to-generator': 7.24.7(@babel/core@7.24.0)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-block-scoped-functions@7.23.3(@babel/core@7.24.0)':
+ '@babel/plugin-transform-async-to-generator@7.24.1(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
+ '@babel/helper-module-imports': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-remap-async-to-generator': 7.24.7(@babel/core@7.24.0)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-block-scoping@7.23.4(@babel/core@7.24.0)':
+ '@babel/plugin-transform-async-to-generator@7.24.1(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-remap-async-to-generator': 7.24.7(@babel/core@7.24.5)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-block-scoped-functions@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-class-properties@7.23.3(@babel/core@7.24.0)':
+ '@babel/plugin-transform-block-scoped-functions@7.24.7(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.7
+
+ '@babel/plugin-transform-block-scoping@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-create-class-features-plugin': 7.24.0(@babel/core@7.24.0)
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-class-static-block@7.23.4(@babel/core@7.24.0)':
+ '@babel/plugin-transform-block-scoping@7.24.7(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.7
+
+ '@babel/plugin-transform-class-properties@7.24.7(@babel/core@7.24.0)':
+ dependencies:
+ '@babel/core': 7.24.0
+ '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.0)
+ '@babel/helper-plugin-utils': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-class-properties@7.24.7(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.5)
+ '@babel/helper-plugin-utils': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-class-static-block@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-create-class-features-plugin': 7.24.0(@babel/core@7.24.0)
+ '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.0)
'@babel/helper-plugin-utils': 7.24.7
'@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.0)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-classes@7.23.8(@babel/core@7.24.0)':
+ '@babel/plugin-transform-class-static-block@7.24.7(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.5)
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.5)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-classes@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-annotate-as-pure': 7.24.7
'@babel/helper-compilation-targets': 7.24.7
'@babel/helper-environment-visitor': 7.24.7
'@babel/helper-function-name': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-replace-supers': 7.22.20(@babel/core@7.24.0)
+ '@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.0)
'@babel/helper-split-export-declaration': 7.24.7
globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-computed-properties@7.23.3(@babel/core@7.24.0)':
+ '@babel/plugin-transform-classes@7.24.7(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-function-name': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.5)
+ '@babel/helper-split-export-declaration': 7.24.7
+ globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-computed-properties@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.24.7
'@babel/template': 7.24.7
- '@babel/plugin-transform-destructuring@7.23.3(@babel/core@7.24.0)':
+ '@babel/plugin-transform-computed-properties@7.24.7(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/template': 7.24.7
+
+ '@babel/plugin-transform-destructuring@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-dotall-regex@7.23.3(@babel/core@7.24.0)':
+ '@babel/plugin-transform-destructuring@7.24.7(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.7
+
+ '@babel/plugin-transform-dotall-regex@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.0)
+ '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.0)
+ '@babel/helper-plugin-utils': 7.24.7
+
+ '@babel/plugin-transform-dotall-regex@7.24.7(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.5)
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-duplicate-keys@7.23.3(@babel/core@7.24.0)':
+ '@babel/plugin-transform-duplicate-keys@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-dynamic-import@7.23.4(@babel/core@7.24.0)':
+ '@babel/plugin-transform-duplicate-keys@7.24.7(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.7
+
+ '@babel/plugin-transform-dynamic-import@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.24.7
'@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.0)
- '@babel/plugin-transform-exponentiation-operator@7.23.3(@babel/core@7.24.0)':
+ '@babel/plugin-transform-dynamic-import@7.24.7(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.5)
+
+ '@babel/plugin-transform-exponentiation-operator@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15
+ '@babel/helper-builder-binary-assignment-operator-visitor': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-exponentiation-operator@7.24.7(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-builder-binary-assignment-operator-visitor': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-export-namespace-from@7.23.4(@babel/core@7.24.0)':
+ '@babel/plugin-transform-export-namespace-from@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.24.7
'@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.0)
- '@babel/plugin-transform-for-of@7.23.6(@babel/core@7.24.0)':
+ '@babel/plugin-transform-export-namespace-from@7.24.7(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.5)
+
+ '@babel/plugin-transform-for-of@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-function-name@7.23.3(@babel/core@7.24.0)':
+ '@babel/plugin-transform-for-of@7.24.7(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-function-name@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-compilation-targets': 7.24.7
'@babel/helper-function-name': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-json-strings@7.23.4(@babel/core@7.24.0)':
+ '@babel/plugin-transform-function-name@7.24.7(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-function-name': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+
+ '@babel/plugin-transform-json-strings@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.24.7
'@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.0)
- '@babel/plugin-transform-literals@7.23.3(@babel/core@7.24.0)':
+ '@babel/plugin-transform-json-strings@7.24.7(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.5)
+
+ '@babel/plugin-transform-literals@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-logical-assignment-operators@7.23.4(@babel/core@7.24.0)':
+ '@babel/plugin-transform-literals@7.24.7(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.7
+
+ '@babel/plugin-transform-logical-assignment-operators@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.24.7
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.0)
- '@babel/plugin-transform-member-expression-literals@7.23.3(@babel/core@7.24.0)':
+ '@babel/plugin-transform-logical-assignment-operators@7.24.7(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.5)
+
+ '@babel/plugin-transform-member-expression-literals@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-modules-amd@7.23.3(@babel/core@7.24.0)':
+ '@babel/plugin-transform-member-expression-literals@7.24.7(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.7
+
+ '@babel/plugin-transform-modules-amd@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.0)
@@ -10605,7 +11935,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.24.0)':
+ '@babel/plugin-transform-modules-amd@7.24.7(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.5)
+ '@babel/helper-plugin-utils': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-modules-commonjs@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.0)
@@ -10614,7 +11952,16 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-systemjs@7.23.9(@babel/core@7.24.0)':
+ '@babel/plugin-transform-modules-commonjs@7.24.7(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.5)
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-simple-access': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-modules-systemjs@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-hoist-variables': 7.24.7
@@ -10624,7 +11971,17 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-umd@7.23.3(@babel/core@7.24.0)':
+ '@babel/plugin-transform-modules-systemjs@7.24.7(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-hoist-variables': 7.24.7
+ '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.5)
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-validator-identifier': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-modules-umd@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.0)
@@ -10632,81 +11989,178 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.24.0)':
+ '@babel/plugin-transform-modules-umd@7.24.7(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.5)
+ '@babel/helper-plugin-utils': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-named-capturing-groups-regex@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.0)
+ '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.0)
+ '@babel/helper-plugin-utils': 7.24.7
+
+ '@babel/plugin-transform-named-capturing-groups-regex@7.24.7(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.5)
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-new-target@7.23.3(@babel/core@7.24.0)':
+ '@babel/plugin-transform-new-target@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-nullish-coalescing-operator@7.23.4(@babel/core@7.24.0)':
+ '@babel/plugin-transform-new-target@7.24.7(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.7
+
+ '@babel/plugin-transform-nullish-coalescing-operator@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.24.7
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.0)
- '@babel/plugin-transform-numeric-separator@7.23.4(@babel/core@7.24.0)':
+ '@babel/plugin-transform-nullish-coalescing-operator@7.24.7(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.5)
+
+ '@babel/plugin-transform-numeric-separator@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.24.7
'@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.0)
- '@babel/plugin-transform-object-rest-spread@7.24.0(@babel/core@7.24.0)':
+ '@babel/plugin-transform-numeric-separator@7.24.7(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.5)
+
+ '@babel/plugin-transform-object-rest-spread@7.24.7(@babel/core@7.24.0)':
dependencies:
- '@babel/compat-data': 7.24.7
'@babel/core': 7.24.0
'@babel/helper-compilation-targets': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
'@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.0)
- '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.24.0)
+ '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.24.0)
- '@babel/plugin-transform-object-super@7.23.3(@babel/core@7.24.0)':
+ '@babel/plugin-transform-object-rest-spread@7.24.7(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.5)
+ '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.24.5)
+
+ '@babel/plugin-transform-object-super@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-replace-supers': 7.22.20(@babel/core@7.24.0)
+ '@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.0)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-object-super@7.24.7(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.5)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-optional-catch-binding@7.23.4(@babel/core@7.24.0)':
+ '@babel/plugin-transform-optional-catch-binding@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.24.7
'@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.0)
- '@babel/plugin-transform-optional-chaining@7.23.4(@babel/core@7.24.0)':
+ '@babel/plugin-transform-optional-catch-binding@7.24.7(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.5)
+
+ '@babel/plugin-transform-optional-chaining@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.0)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-parameters@7.23.3(@babel/core@7.24.0)':
+ '@babel/plugin-transform-optional-chaining@7.24.7(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.5)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-parameters@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-private-methods@7.23.3(@babel/core@7.24.0)':
+ '@babel/plugin-transform-parameters@7.24.7(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.7
+
+ '@babel/plugin-transform-private-methods@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-create-class-features-plugin': 7.24.0(@babel/core@7.24.0)
+ '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.0)
+ '@babel/helper-plugin-utils': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-private-methods@7.24.7(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.5)
'@babel/helper-plugin-utils': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-private-property-in-object@7.23.4(@babel/core@7.24.0)':
+ '@babel/plugin-transform-private-property-in-object@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.24.0(@babel/core@7.24.0)
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.0)
'@babel/helper-plugin-utils': 7.24.7
'@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.0)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-private-property-in-object@7.24.7(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.5)
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.5)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-property-literals@7.23.3(@babel/core@7.24.0)':
+ '@babel/plugin-transform-property-literals@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-transform-property-literals@7.24.7(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.7
+
'@babel/plugin-transform-react-jsx-self@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
@@ -10717,76 +12171,152 @@ snapshots:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-regenerator@7.23.3(@babel/core@7.24.0)':
+ '@babel/plugin-transform-regenerator@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.24.7
regenerator-transform: 0.15.2
- '@babel/plugin-transform-reserved-words@7.23.3(@babel/core@7.24.0)':
+ '@babel/plugin-transform-regenerator@7.24.7(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.7
+ regenerator-transform: 0.15.2
+
+ '@babel/plugin-transform-reserved-words@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-transform-reserved-words@7.24.7(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.7
+
'@babel/plugin-transform-runtime@7.24.0(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-module-imports': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
- babel-plugin-polyfill-corejs2: 0.4.10(@babel/core@7.24.0)
+ babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.24.0)
babel-plugin-polyfill-corejs3: 0.9.0(@babel/core@7.24.0)
babel-plugin-polyfill-regenerator: 0.5.5(@babel/core@7.24.0)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-shorthand-properties@7.23.3(@babel/core@7.24.0)':
+ '@babel/plugin-transform-runtime@7.24.3(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.24.5)
+ babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.5)
+ babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.24.5)
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-shorthand-properties@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-spread@7.23.3(@babel/core@7.24.0)':
+ '@babel/plugin-transform-shorthand-properties@7.24.7(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.7
+
+ '@babel/plugin-transform-spread@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-sticky-regex@7.23.3(@babel/core@7.24.0)':
+ '@babel/plugin-transform-spread@7.24.7(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-sticky-regex@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-template-literals@7.23.3(@babel/core@7.24.0)':
+ '@babel/plugin-transform-sticky-regex@7.24.7(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.7
+
+ '@babel/plugin-transform-template-literals@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-typeof-symbol@7.23.3(@babel/core@7.24.0)':
+ '@babel/plugin-transform-template-literals@7.24.7(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.7
+
+ '@babel/plugin-transform-typeof-symbol@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-unicode-escapes@7.23.3(@babel/core@7.24.0)':
+ '@babel/plugin-transform-typeof-symbol@7.24.7(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.7
+
+ '@babel/plugin-transform-unicode-escapes@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-unicode-property-regex@7.23.3(@babel/core@7.24.0)':
+ '@babel/plugin-transform-unicode-escapes@7.24.7(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.7
+
+ '@babel/plugin-transform-unicode-property-regex@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.0)
+ '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.0)
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-unicode-regex@7.23.3(@babel/core@7.24.0)':
+ '@babel/plugin-transform-unicode-property-regex@7.24.7(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.5)
+ '@babel/helper-plugin-utils': 7.24.7
+
+ '@babel/plugin-transform-unicode-regex@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.0)
+ '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.0)
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-unicode-sets-regex@7.23.3(@babel/core@7.24.0)':
+ '@babel/plugin-transform-unicode-regex@7.24.7(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.5)
+ '@babel/helper-plugin-utils': 7.24.7
+
+ '@babel/plugin-transform-unicode-sets-regex@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.0)
+ '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.0)
+ '@babel/helper-plugin-utils': 7.24.7
+
+ '@babel/plugin-transform-unicode-sets-regex@7.24.7(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.5)
'@babel/helper-plugin-utils': 7.24.7
'@babel/preset-env@7.24.0(@babel/core@7.24.0)':
@@ -10796,17 +12326,17 @@ snapshots:
'@babel/helper-compilation-targets': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
'@babel/helper-validator-option': 7.24.7
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.23.7(@babel/core@7.24.0)
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.24.7(@babel/core@7.24.0)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.7(@babel/core@7.24.0)
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.24.7(@babel/core@7.24.0)
'@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.0)
'@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.0)
'@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.0)
'@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.0)
'@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.0)
'@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.0)
- '@babel/plugin-syntax-import-assertions': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-syntax-import-attributes': 7.23.3(@babel/core@7.24.0)
+ '@babel/plugin-syntax-import-assertions': 7.24.7(@babel/core@7.24.0)
+ '@babel/plugin-syntax-import-attributes': 7.24.7(@babel/core@7.24.0)
'@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.0)
'@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.0)
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.0)
@@ -10818,59 +12348,146 @@ snapshots:
'@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.0)
'@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.0)
'@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.24.0)
- '@babel/plugin-transform-arrow-functions': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-async-generator-functions': 7.23.9(@babel/core@7.24.0)
- '@babel/plugin-transform-async-to-generator': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-block-scoped-functions': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-block-scoping': 7.23.4(@babel/core@7.24.0)
- '@babel/plugin-transform-class-properties': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-class-static-block': 7.23.4(@babel/core@7.24.0)
- '@babel/plugin-transform-classes': 7.23.8(@babel/core@7.24.0)
- '@babel/plugin-transform-computed-properties': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-destructuring': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-dotall-regex': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-duplicate-keys': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-dynamic-import': 7.23.4(@babel/core@7.24.0)
- '@babel/plugin-transform-exponentiation-operator': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-export-namespace-from': 7.23.4(@babel/core@7.24.0)
- '@babel/plugin-transform-for-of': 7.23.6(@babel/core@7.24.0)
- '@babel/plugin-transform-function-name': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-json-strings': 7.23.4(@babel/core@7.24.0)
- '@babel/plugin-transform-literals': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-logical-assignment-operators': 7.23.4(@babel/core@7.24.0)
- '@babel/plugin-transform-member-expression-literals': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-modules-amd': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-modules-systemjs': 7.23.9(@babel/core@7.24.0)
- '@babel/plugin-transform-modules-umd': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.24.0)
- '@babel/plugin-transform-new-target': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.23.4(@babel/core@7.24.0)
- '@babel/plugin-transform-numeric-separator': 7.23.4(@babel/core@7.24.0)
- '@babel/plugin-transform-object-rest-spread': 7.24.0(@babel/core@7.24.0)
- '@babel/plugin-transform-object-super': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-optional-catch-binding': 7.23.4(@babel/core@7.24.0)
- '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.24.0)
- '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-private-methods': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-private-property-in-object': 7.23.4(@babel/core@7.24.0)
- '@babel/plugin-transform-property-literals': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-regenerator': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-reserved-words': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-shorthand-properties': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-spread': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-sticky-regex': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-template-literals': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-typeof-symbol': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-unicode-escapes': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-unicode-property-regex': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-unicode-regex': 7.23.3(@babel/core@7.24.0)
- '@babel/plugin-transform-unicode-sets-regex': 7.23.3(@babel/core@7.24.0)
+ '@babel/plugin-transform-arrow-functions': 7.24.7(@babel/core@7.24.0)
+ '@babel/plugin-transform-async-generator-functions': 7.24.3(@babel/core@7.24.0)
+ '@babel/plugin-transform-async-to-generator': 7.24.1(@babel/core@7.24.0)
+ '@babel/plugin-transform-block-scoped-functions': 7.24.7(@babel/core@7.24.0)
+ '@babel/plugin-transform-block-scoping': 7.24.7(@babel/core@7.24.0)
+ '@babel/plugin-transform-class-properties': 7.24.7(@babel/core@7.24.0)
+ '@babel/plugin-transform-class-static-block': 7.24.7(@babel/core@7.24.0)
+ '@babel/plugin-transform-classes': 7.24.7(@babel/core@7.24.0)
+ '@babel/plugin-transform-computed-properties': 7.24.7(@babel/core@7.24.0)
+ '@babel/plugin-transform-destructuring': 7.24.7(@babel/core@7.24.0)
+ '@babel/plugin-transform-dotall-regex': 7.24.7(@babel/core@7.24.0)
+ '@babel/plugin-transform-duplicate-keys': 7.24.7(@babel/core@7.24.0)
+ '@babel/plugin-transform-dynamic-import': 7.24.7(@babel/core@7.24.0)
+ '@babel/plugin-transform-exponentiation-operator': 7.24.7(@babel/core@7.24.0)
+ '@babel/plugin-transform-export-namespace-from': 7.24.7(@babel/core@7.24.0)
+ '@babel/plugin-transform-for-of': 7.24.7(@babel/core@7.24.0)
+ '@babel/plugin-transform-function-name': 7.24.7(@babel/core@7.24.0)
+ '@babel/plugin-transform-json-strings': 7.24.7(@babel/core@7.24.0)
+ '@babel/plugin-transform-literals': 7.24.7(@babel/core@7.24.0)
+ '@babel/plugin-transform-logical-assignment-operators': 7.24.7(@babel/core@7.24.0)
+ '@babel/plugin-transform-member-expression-literals': 7.24.7(@babel/core@7.24.0)
+ '@babel/plugin-transform-modules-amd': 7.24.7(@babel/core@7.24.0)
+ '@babel/plugin-transform-modules-commonjs': 7.24.7(@babel/core@7.24.0)
+ '@babel/plugin-transform-modules-systemjs': 7.24.7(@babel/core@7.24.0)
+ '@babel/plugin-transform-modules-umd': 7.24.7(@babel/core@7.24.0)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.24.7(@babel/core@7.24.0)
+ '@babel/plugin-transform-new-target': 7.24.7(@babel/core@7.24.0)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.24.7(@babel/core@7.24.0)
+ '@babel/plugin-transform-numeric-separator': 7.24.7(@babel/core@7.24.0)
+ '@babel/plugin-transform-object-rest-spread': 7.24.7(@babel/core@7.24.0)
+ '@babel/plugin-transform-object-super': 7.24.7(@babel/core@7.24.0)
+ '@babel/plugin-transform-optional-catch-binding': 7.24.7(@babel/core@7.24.0)
+ '@babel/plugin-transform-optional-chaining': 7.24.7(@babel/core@7.24.0)
+ '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.24.0)
+ '@babel/plugin-transform-private-methods': 7.24.7(@babel/core@7.24.0)
+ '@babel/plugin-transform-private-property-in-object': 7.24.7(@babel/core@7.24.0)
+ '@babel/plugin-transform-property-literals': 7.24.7(@babel/core@7.24.0)
+ '@babel/plugin-transform-regenerator': 7.24.7(@babel/core@7.24.0)
+ '@babel/plugin-transform-reserved-words': 7.24.7(@babel/core@7.24.0)
+ '@babel/plugin-transform-shorthand-properties': 7.24.7(@babel/core@7.24.0)
+ '@babel/plugin-transform-spread': 7.24.7(@babel/core@7.24.0)
+ '@babel/plugin-transform-sticky-regex': 7.24.7(@babel/core@7.24.0)
+ '@babel/plugin-transform-template-literals': 7.24.7(@babel/core@7.24.0)
+ '@babel/plugin-transform-typeof-symbol': 7.24.7(@babel/core@7.24.0)
+ '@babel/plugin-transform-unicode-escapes': 7.24.7(@babel/core@7.24.0)
+ '@babel/plugin-transform-unicode-property-regex': 7.24.7(@babel/core@7.24.0)
+ '@babel/plugin-transform-unicode-regex': 7.24.7(@babel/core@7.24.0)
+ '@babel/plugin-transform-unicode-sets-regex': 7.24.7(@babel/core@7.24.0)
'@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.24.0)
- babel-plugin-polyfill-corejs2: 0.4.10(@babel/core@7.24.0)
+ babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.24.0)
babel-plugin-polyfill-corejs3: 0.9.0(@babel/core@7.24.0)
babel-plugin-polyfill-regenerator: 0.5.5(@babel/core@7.24.0)
- core-js-compat: 3.36.0
+ core-js-compat: 3.37.1
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/preset-env@7.24.5(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/compat-data': 7.24.7
+ '@babel/core': 7.24.5
+ '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-validator-option': 7.24.7
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.24.7(@babel/core@7.24.5)
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.24.7(@babel/core@7.24.5)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.7(@babel/core@7.24.5)
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.24.7(@babel/core@7.24.5)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.5)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.5)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.5)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.5)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.5)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.5)
+ '@babel/plugin-syntax-import-assertions': 7.24.7(@babel/core@7.24.5)
+ '@babel/plugin-syntax-import-attributes': 7.24.7(@babel/core@7.24.5)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.5)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.5)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.5)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.5)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.5)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.5)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.5)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.5)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.5)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.5)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.24.5)
+ '@babel/plugin-transform-arrow-functions': 7.24.7(@babel/core@7.24.5)
+ '@babel/plugin-transform-async-generator-functions': 7.24.3(@babel/core@7.24.5)
+ '@babel/plugin-transform-async-to-generator': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-block-scoped-functions': 7.24.7(@babel/core@7.24.5)
+ '@babel/plugin-transform-block-scoping': 7.24.7(@babel/core@7.24.5)
+ '@babel/plugin-transform-class-properties': 7.24.7(@babel/core@7.24.5)
+ '@babel/plugin-transform-class-static-block': 7.24.7(@babel/core@7.24.5)
+ '@babel/plugin-transform-classes': 7.24.7(@babel/core@7.24.5)
+ '@babel/plugin-transform-computed-properties': 7.24.7(@babel/core@7.24.5)
+ '@babel/plugin-transform-destructuring': 7.24.7(@babel/core@7.24.5)
+ '@babel/plugin-transform-dotall-regex': 7.24.7(@babel/core@7.24.5)
+ '@babel/plugin-transform-duplicate-keys': 7.24.7(@babel/core@7.24.5)
+ '@babel/plugin-transform-dynamic-import': 7.24.7(@babel/core@7.24.5)
+ '@babel/plugin-transform-exponentiation-operator': 7.24.7(@babel/core@7.24.5)
+ '@babel/plugin-transform-export-namespace-from': 7.24.7(@babel/core@7.24.5)
+ '@babel/plugin-transform-for-of': 7.24.7(@babel/core@7.24.5)
+ '@babel/plugin-transform-function-name': 7.24.7(@babel/core@7.24.5)
+ '@babel/plugin-transform-json-strings': 7.24.7(@babel/core@7.24.5)
+ '@babel/plugin-transform-literals': 7.24.7(@babel/core@7.24.5)
+ '@babel/plugin-transform-logical-assignment-operators': 7.24.7(@babel/core@7.24.5)
+ '@babel/plugin-transform-member-expression-literals': 7.24.7(@babel/core@7.24.5)
+ '@babel/plugin-transform-modules-amd': 7.24.7(@babel/core@7.24.5)
+ '@babel/plugin-transform-modules-commonjs': 7.24.7(@babel/core@7.24.5)
+ '@babel/plugin-transform-modules-systemjs': 7.24.7(@babel/core@7.24.5)
+ '@babel/plugin-transform-modules-umd': 7.24.7(@babel/core@7.24.5)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.24.7(@babel/core@7.24.5)
+ '@babel/plugin-transform-new-target': 7.24.7(@babel/core@7.24.5)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.24.7(@babel/core@7.24.5)
+ '@babel/plugin-transform-numeric-separator': 7.24.7(@babel/core@7.24.5)
+ '@babel/plugin-transform-object-rest-spread': 7.24.7(@babel/core@7.24.5)
+ '@babel/plugin-transform-object-super': 7.24.7(@babel/core@7.24.5)
+ '@babel/plugin-transform-optional-catch-binding': 7.24.7(@babel/core@7.24.5)
+ '@babel/plugin-transform-optional-chaining': 7.24.7(@babel/core@7.24.5)
+ '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.24.5)
+ '@babel/plugin-transform-private-methods': 7.24.7(@babel/core@7.24.5)
+ '@babel/plugin-transform-private-property-in-object': 7.24.7(@babel/core@7.24.5)
+ '@babel/plugin-transform-property-literals': 7.24.7(@babel/core@7.24.5)
+ '@babel/plugin-transform-regenerator': 7.24.7(@babel/core@7.24.5)
+ '@babel/plugin-transform-reserved-words': 7.24.7(@babel/core@7.24.5)
+ '@babel/plugin-transform-shorthand-properties': 7.24.7(@babel/core@7.24.5)
+ '@babel/plugin-transform-spread': 7.24.7(@babel/core@7.24.5)
+ '@babel/plugin-transform-sticky-regex': 7.24.7(@babel/core@7.24.5)
+ '@babel/plugin-transform-template-literals': 7.24.7(@babel/core@7.24.5)
+ '@babel/plugin-transform-typeof-symbol': 7.24.7(@babel/core@7.24.5)
+ '@babel/plugin-transform-unicode-escapes': 7.24.7(@babel/core@7.24.5)
+ '@babel/plugin-transform-unicode-property-regex': 7.24.7(@babel/core@7.24.5)
+ '@babel/plugin-transform-unicode-regex': 7.24.7(@babel/core@7.24.5)
+ '@babel/plugin-transform-unicode-sets-regex': 7.24.7(@babel/core@7.24.5)
+ '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.24.5)
+ babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.24.5)
+ babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.5)
+ babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.24.5)
+ core-js-compat: 3.37.1
semver: 6.3.1
transitivePeerDependencies:
- supports-color
@@ -10882,11 +12499,26 @@ snapshots:
'@babel/types': 7.24.7
esutils: 2.0.3
+ '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/types': 7.24.7
+ esutils: 2.0.3
+
'@babel/regjsgen@0.8.0': {}
'@babel/runtime@7.24.0':
dependencies:
- regenerator-runtime: 0.14.0
+ regenerator-runtime: 0.14.1
+
+ '@babel/runtime@7.24.5':
+ dependencies:
+ regenerator-runtime: 0.14.1
+
+ '@babel/runtime@7.24.7':
+ dependencies:
+ regenerator-runtime: 0.14.1
'@babel/template@7.24.7':
dependencies:
@@ -10904,7 +12536,7 @@ snapshots:
'@babel/helper-split-export-declaration': 7.24.7
'@babel/parser': 7.24.7
'@babel/types': 7.24.7
- debug: 4.3.4
+ debug: 4.3.5
globals: 11.12.0
transitivePeerDependencies:
- supports-color
@@ -10941,13 +12573,13 @@ snapshots:
'@emnapi/runtime@1.2.0':
dependencies:
- tslib: 2.6.2
+ tslib: 2.6.3
optional: true
'@emotion/babel-plugin@11.11.0':
dependencies:
'@babel/helper-module-imports': 7.24.7
- '@babel/runtime': 7.24.0
+ '@babel/runtime': 7.24.7
'@emotion/hash': 0.9.1
'@emotion/memoize': 0.8.1
'@emotion/serialize': 1.1.3
@@ -10978,7 +12610,7 @@ snapshots:
'@emotion/react@11.11.3(@types/react@18.3.3)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.0
+ '@babel/runtime': 7.24.7
'@emotion/babel-plugin': 11.11.0
'@emotion/cache': 11.11.0
'@emotion/serialize': 1.1.3
@@ -10998,13 +12630,13 @@ snapshots:
'@emotion/memoize': 0.8.1
'@emotion/unitless': 0.8.1
'@emotion/utils': 1.2.1
- csstype: 3.1.2
+ csstype: 3.1.3
'@emotion/sheet@1.2.2': {}
'@emotion/styled@11.11.0(@emotion/react@11.11.3(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.0
+ '@babel/runtime': 7.24.7
'@emotion/babel-plugin': 11.11.0
'@emotion/is-prop-valid': 1.2.1
'@emotion/react': 11.11.3(@types/react@18.3.3)(react@18.3.1)
@@ -11056,6 +12688,15 @@ snapshots:
'@esbuild/aix-ppc64@0.20.2':
optional: true
+ '@esbuild/aix-ppc64@0.21.3':
+ optional: true
+
+ '@esbuild/aix-ppc64@0.21.5':
+ optional: true
+
+ '@esbuild/aix-ppc64@0.23.0':
+ optional: true
+
'@esbuild/android-arm64@0.18.20':
optional: true
@@ -11068,6 +12709,15 @@ snapshots:
'@esbuild/android-arm64@0.20.2':
optional: true
+ '@esbuild/android-arm64@0.21.3':
+ optional: true
+
+ '@esbuild/android-arm64@0.21.5':
+ optional: true
+
+ '@esbuild/android-arm64@0.23.0':
+ optional: true
+
'@esbuild/android-arm@0.18.20':
optional: true
@@ -11080,6 +12730,15 @@ snapshots:
'@esbuild/android-arm@0.20.2':
optional: true
+ '@esbuild/android-arm@0.21.3':
+ optional: true
+
+ '@esbuild/android-arm@0.21.5':
+ optional: true
+
+ '@esbuild/android-arm@0.23.0':
+ optional: true
+
'@esbuild/android-x64@0.18.20':
optional: true
@@ -11092,6 +12751,15 @@ snapshots:
'@esbuild/android-x64@0.20.2':
optional: true
+ '@esbuild/android-x64@0.21.3':
+ optional: true
+
+ '@esbuild/android-x64@0.21.5':
+ optional: true
+
+ '@esbuild/android-x64@0.23.0':
+ optional: true
+
'@esbuild/darwin-arm64@0.18.20':
optional: true
@@ -11104,6 +12772,15 @@ snapshots:
'@esbuild/darwin-arm64@0.20.2':
optional: true
+ '@esbuild/darwin-arm64@0.21.3':
+ optional: true
+
+ '@esbuild/darwin-arm64@0.21.5':
+ optional: true
+
+ '@esbuild/darwin-arm64@0.23.0':
+ optional: true
+
'@esbuild/darwin-x64@0.18.20':
optional: true
@@ -11116,6 +12793,15 @@ snapshots:
'@esbuild/darwin-x64@0.20.2':
optional: true
+ '@esbuild/darwin-x64@0.21.3':
+ optional: true
+
+ '@esbuild/darwin-x64@0.21.5':
+ optional: true
+
+ '@esbuild/darwin-x64@0.23.0':
+ optional: true
+
'@esbuild/freebsd-arm64@0.18.20':
optional: true
@@ -11128,6 +12814,15 @@ snapshots:
'@esbuild/freebsd-arm64@0.20.2':
optional: true
+ '@esbuild/freebsd-arm64@0.21.3':
+ optional: true
+
+ '@esbuild/freebsd-arm64@0.21.5':
+ optional: true
+
+ '@esbuild/freebsd-arm64@0.23.0':
+ optional: true
+
'@esbuild/freebsd-x64@0.18.20':
optional: true
@@ -11140,6 +12835,15 @@ snapshots:
'@esbuild/freebsd-x64@0.20.2':
optional: true
+ '@esbuild/freebsd-x64@0.21.3':
+ optional: true
+
+ '@esbuild/freebsd-x64@0.21.5':
+ optional: true
+
+ '@esbuild/freebsd-x64@0.23.0':
+ optional: true
+
'@esbuild/linux-arm64@0.18.20':
optional: true
@@ -11152,6 +12856,15 @@ snapshots:
'@esbuild/linux-arm64@0.20.2':
optional: true
+ '@esbuild/linux-arm64@0.21.3':
+ optional: true
+
+ '@esbuild/linux-arm64@0.21.5':
+ optional: true
+
+ '@esbuild/linux-arm64@0.23.0':
+ optional: true
+
'@esbuild/linux-arm@0.18.20':
optional: true
@@ -11164,6 +12877,15 @@ snapshots:
'@esbuild/linux-arm@0.20.2':
optional: true
+ '@esbuild/linux-arm@0.21.3':
+ optional: true
+
+ '@esbuild/linux-arm@0.21.5':
+ optional: true
+
+ '@esbuild/linux-arm@0.23.0':
+ optional: true
+
'@esbuild/linux-ia32@0.18.20':
optional: true
@@ -11176,6 +12898,15 @@ snapshots:
'@esbuild/linux-ia32@0.20.2':
optional: true
+ '@esbuild/linux-ia32@0.21.3':
+ optional: true
+
+ '@esbuild/linux-ia32@0.21.5':
+ optional: true
+
+ '@esbuild/linux-ia32@0.23.0':
+ optional: true
+
'@esbuild/linux-loong64@0.18.20':
optional: true
@@ -11188,6 +12919,15 @@ snapshots:
'@esbuild/linux-loong64@0.20.2':
optional: true
+ '@esbuild/linux-loong64@0.21.3':
+ optional: true
+
+ '@esbuild/linux-loong64@0.21.5':
+ optional: true
+
+ '@esbuild/linux-loong64@0.23.0':
+ optional: true
+
'@esbuild/linux-mips64el@0.18.20':
optional: true
@@ -11200,6 +12940,15 @@ snapshots:
'@esbuild/linux-mips64el@0.20.2':
optional: true
+ '@esbuild/linux-mips64el@0.21.3':
+ optional: true
+
+ '@esbuild/linux-mips64el@0.21.5':
+ optional: true
+
+ '@esbuild/linux-mips64el@0.23.0':
+ optional: true
+
'@esbuild/linux-ppc64@0.18.20':
optional: true
@@ -11212,6 +12961,15 @@ snapshots:
'@esbuild/linux-ppc64@0.20.2':
optional: true
+ '@esbuild/linux-ppc64@0.21.3':
+ optional: true
+
+ '@esbuild/linux-ppc64@0.21.5':
+ optional: true
+
+ '@esbuild/linux-ppc64@0.23.0':
+ optional: true
+
'@esbuild/linux-riscv64@0.18.20':
optional: true
@@ -11224,6 +12982,15 @@ snapshots:
'@esbuild/linux-riscv64@0.20.2':
optional: true
+ '@esbuild/linux-riscv64@0.21.3':
+ optional: true
+
+ '@esbuild/linux-riscv64@0.21.5':
+ optional: true
+
+ '@esbuild/linux-riscv64@0.23.0':
+ optional: true
+
'@esbuild/linux-s390x@0.18.20':
optional: true
@@ -11236,6 +13003,15 @@ snapshots:
'@esbuild/linux-s390x@0.20.2':
optional: true
+ '@esbuild/linux-s390x@0.21.3':
+ optional: true
+
+ '@esbuild/linux-s390x@0.21.5':
+ optional: true
+
+ '@esbuild/linux-s390x@0.23.0':
+ optional: true
+
'@esbuild/linux-x64@0.18.20':
optional: true
@@ -11248,6 +13024,15 @@ snapshots:
'@esbuild/linux-x64@0.20.2':
optional: true
+ '@esbuild/linux-x64@0.21.3':
+ optional: true
+
+ '@esbuild/linux-x64@0.21.5':
+ optional: true
+
+ '@esbuild/linux-x64@0.23.0':
+ optional: true
+
'@esbuild/netbsd-x64@0.18.20':
optional: true
@@ -11260,6 +13045,18 @@ snapshots:
'@esbuild/netbsd-x64@0.20.2':
optional: true
+ '@esbuild/netbsd-x64@0.21.3':
+ optional: true
+
+ '@esbuild/netbsd-x64@0.21.5':
+ optional: true
+
+ '@esbuild/netbsd-x64@0.23.0':
+ optional: true
+
+ '@esbuild/openbsd-arm64@0.23.0':
+ optional: true
+
'@esbuild/openbsd-x64@0.18.20':
optional: true
@@ -11272,6 +13069,15 @@ snapshots:
'@esbuild/openbsd-x64@0.20.2':
optional: true
+ '@esbuild/openbsd-x64@0.21.3':
+ optional: true
+
+ '@esbuild/openbsd-x64@0.21.5':
+ optional: true
+
+ '@esbuild/openbsd-x64@0.23.0':
+ optional: true
+
'@esbuild/sunos-x64@0.18.20':
optional: true
@@ -11284,6 +13090,15 @@ snapshots:
'@esbuild/sunos-x64@0.20.2':
optional: true
+ '@esbuild/sunos-x64@0.21.3':
+ optional: true
+
+ '@esbuild/sunos-x64@0.21.5':
+ optional: true
+
+ '@esbuild/sunos-x64@0.23.0':
+ optional: true
+
'@esbuild/win32-arm64@0.18.20':
optional: true
@@ -11296,6 +13111,15 @@ snapshots:
'@esbuild/win32-arm64@0.20.2':
optional: true
+ '@esbuild/win32-arm64@0.21.3':
+ optional: true
+
+ '@esbuild/win32-arm64@0.21.5':
+ optional: true
+
+ '@esbuild/win32-arm64@0.23.0':
+ optional: true
+
'@esbuild/win32-ia32@0.18.20':
optional: true
@@ -11308,6 +13132,15 @@ snapshots:
'@esbuild/win32-ia32@0.20.2':
optional: true
+ '@esbuild/win32-ia32@0.21.3':
+ optional: true
+
+ '@esbuild/win32-ia32@0.21.5':
+ optional: true
+
+ '@esbuild/win32-ia32@0.23.0':
+ optional: true
+
'@esbuild/win32-x64@0.18.20':
optional: true
@@ -11320,6 +13153,15 @@ snapshots:
'@esbuild/win32-x64@0.20.2':
optional: true
+ '@esbuild/win32-x64@0.21.3':
+ optional: true
+
+ '@esbuild/win32-x64@0.21.5':
+ optional: true
+
+ '@esbuild/win32-x64@0.23.0':
+ optional: true
+
'@eslint-community/eslint-utils@4.4.0(eslint@8.57.0)':
dependencies:
eslint: 8.57.0
@@ -11332,9 +13174,9 @@ snapshots:
'@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0)
'@eslint-react/tools': 1.5.16
'@eslint-react/types': 1.5.16(eslint@8.57.0)(typescript@5.4.2)
- '@typescript-eslint/scope-manager': 7.13.1
- '@typescript-eslint/types': 7.13.1
- '@typescript-eslint/utils': 7.13.1(eslint@8.57.0)(typescript@5.4.2)
+ '@typescript-eslint/scope-manager': 7.14.1
+ '@typescript-eslint/types': 7.14.1
+ '@typescript-eslint/utils': 7.14.1(eslint@8.57.0)(typescript@5.4.2)
string-ts: 2.1.1
ts-pattern: 5.2.0
transitivePeerDependencies:
@@ -11350,10 +13192,10 @@ snapshots:
'@eslint-react/tools': 1.5.16
'@eslint-react/types': 1.5.16(eslint@8.57.0)(typescript@5.4.2)
'@eslint-react/var': 1.5.16(eslint@8.57.0)(typescript@5.4.2)
- '@typescript-eslint/scope-manager': 7.13.1
- '@typescript-eslint/type-utils': 7.13.1(eslint@8.57.0)(typescript@5.4.2)
- '@typescript-eslint/types': 7.13.1
- '@typescript-eslint/utils': 7.13.1(eslint@8.57.0)(typescript@5.4.2)
+ '@typescript-eslint/scope-manager': 7.14.1
+ '@typescript-eslint/type-utils': 7.14.1(eslint@8.57.0)(typescript@5.4.2)
+ '@typescript-eslint/types': 7.14.1
+ '@typescript-eslint/utils': 7.14.1(eslint@8.57.0)(typescript@5.4.2)
short-unique-id: 5.2.0
ts-pattern: 5.2.0
valibot: 0.32.0
@@ -11367,10 +13209,10 @@ snapshots:
'@eslint-react/shared': 1.5.16(eslint@8.57.0)(typescript@5.4.2)
'@eslint-react/tools': 1.5.16
'@eslint-react/types': 1.5.16(eslint@8.57.0)(typescript@5.4.2)
- '@typescript-eslint/scope-manager': 7.13.1
- '@typescript-eslint/type-utils': 7.13.1(eslint@8.57.0)(typescript@5.4.2)
- '@typescript-eslint/types': 7.13.1
- '@typescript-eslint/utils': 7.13.1(eslint@8.57.0)(typescript@5.4.2)
+ '@typescript-eslint/scope-manager': 7.14.1
+ '@typescript-eslint/type-utils': 7.14.1(eslint@8.57.0)(typescript@5.4.2)
+ '@typescript-eslint/types': 7.14.1
+ '@typescript-eslint/utils': 7.14.1(eslint@8.57.0)(typescript@5.4.2)
eslint: 8.57.0
eslint-plugin-react-core: 1.5.16(eslint@8.57.0)(typescript@5.4.2)
eslint-plugin-react-dom: 1.5.16(eslint@8.57.0)(typescript@5.4.2)
@@ -11388,9 +13230,9 @@ snapshots:
'@eslint-react/tools': 1.5.16
'@eslint-react/types': 1.5.16(eslint@8.57.0)(typescript@5.4.2)
'@eslint-react/var': 1.5.16(eslint@8.57.0)(typescript@5.4.2)
- '@typescript-eslint/scope-manager': 7.13.1
- '@typescript-eslint/types': 7.13.1
- '@typescript-eslint/utils': 7.13.1(eslint@8.57.0)(typescript@5.4.2)
+ '@typescript-eslint/scope-manager': 7.14.1
+ '@typescript-eslint/types': 7.14.1
+ '@typescript-eslint/utils': 7.14.1(eslint@8.57.0)(typescript@5.4.2)
micro-memoize: 4.1.2
ts-pattern: 5.2.0
transitivePeerDependencies:
@@ -11400,7 +13242,7 @@ snapshots:
'@eslint-react/shared@1.5.16(eslint@8.57.0)(typescript@5.4.2)':
dependencies:
- '@typescript-eslint/utils': 7.13.1(eslint@8.57.0)(typescript@5.4.2)
+ '@typescript-eslint/utils': 7.14.1(eslint@8.57.0)(typescript@5.4.2)
deepmerge-ts: 7.0.3
transitivePeerDependencies:
- eslint
@@ -11412,8 +13254,8 @@ snapshots:
'@eslint-react/types@1.5.16(eslint@8.57.0)(typescript@5.4.2)':
dependencies:
'@eslint-react/tools': 1.5.16
- '@typescript-eslint/types': 7.13.1
- '@typescript-eslint/utils': 7.13.1(eslint@8.57.0)(typescript@5.4.2)
+ '@typescript-eslint/types': 7.14.1
+ '@typescript-eslint/utils': 7.14.1(eslint@8.57.0)(typescript@5.4.2)
transitivePeerDependencies:
- eslint
- supports-color
@@ -11424,9 +13266,9 @@ snapshots:
'@eslint-react/ast': 1.5.16(eslint@8.57.0)(typescript@5.4.2)
'@eslint-react/tools': 1.5.16
'@eslint-react/types': 1.5.16(eslint@8.57.0)(typescript@5.4.2)
- '@typescript-eslint/scope-manager': 7.13.1
- '@typescript-eslint/types': 7.13.1
- '@typescript-eslint/utils': 7.13.1(eslint@8.57.0)(typescript@5.4.2)
+ '@typescript-eslint/scope-manager': 7.14.1
+ '@typescript-eslint/types': 7.14.1
+ '@typescript-eslint/utils': 7.14.1(eslint@8.57.0)(typescript@5.4.2)
string-ts: 2.1.1
valibot: 0.32.0
transitivePeerDependencies:
@@ -11437,7 +13279,7 @@ snapshots:
'@eslint/eslintrc@2.1.4':
dependencies:
ajv: 6.12.6
- debug: 4.3.4
+ debug: 4.3.5
espree: 9.6.1
globals: 13.21.0
ignore: 5.3.1
@@ -11506,7 +13348,7 @@ snapshots:
'@humanwhocodes/config-array@0.11.14':
dependencies:
'@humanwhocodes/object-schema': 2.0.3
- debug: 4.3.4
+ debug: 4.3.5
minimatch: 3.1.2
transitivePeerDependencies:
- supports-color
@@ -11592,6 +13434,8 @@ snapshots:
'@img/sharp-win32-x64@0.33.4':
optional: true
+ '@inquirer/figures@1.0.3': {}
+
'@ioredis/commands@1.2.0': {}
'@isaacs/cliui@8.0.2':
@@ -11641,6 +13485,22 @@ snapshots:
'@js-sdsl/ordered-map@4.4.2': {}
+ '@jsonjoy.com/base64@1.1.2(tslib@2.6.3)':
+ dependencies:
+ tslib: 2.6.3
+
+ '@jsonjoy.com/json-pack@1.0.4(tslib@2.6.3)':
+ dependencies:
+ '@jsonjoy.com/base64': 1.1.2(tslib@2.6.3)
+ '@jsonjoy.com/util': 1.2.0(tslib@2.6.3)
+ hyperdyperid: 1.2.0
+ thingies: 1.21.0(tslib@2.6.3)
+ tslib: 2.6.3
+
+ '@jsonjoy.com/util@1.2.0(tslib@2.6.3)':
+ dependencies:
+ tslib: 2.6.3
+
'@kwsites/file-exists@1.1.1':
dependencies:
debug: 4.3.5
@@ -11661,6 +13521,24 @@ snapshots:
dependencies:
call-bind: 1.0.7
+ '@lmdb/lmdb-darwin-arm64@3.0.8':
+ optional: true
+
+ '@lmdb/lmdb-darwin-x64@3.0.8':
+ optional: true
+
+ '@lmdb/lmdb-linux-arm64@3.0.8':
+ optional: true
+
+ '@lmdb/lmdb-linux-arm@3.0.8':
+ optional: true
+
+ '@lmdb/lmdb-linux-x64@3.0.8':
+ optional: true
+
+ '@lmdb/lmdb-win32-x64@3.0.8':
+ optional: true
+
'@mantine/core@7.3.2(@mantine/hooks@7.3.2(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@floating-ui/react': 0.24.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -11689,7 +13567,7 @@ snapshots:
npmlog: 5.0.1
rimraf: 3.0.2
semver: 7.6.2
- tar: 6.2.0
+ tar: 6.2.1
transitivePeerDependencies:
- encoding
- supports-color
@@ -11697,25 +13575,25 @@ snapshots:
'@material/web@1.3.0':
dependencies:
lit: 3.1.2
- tslib: 2.6.2
+ tslib: 2.6.3
- '@microsoft/api-extractor-model@7.28.13(@types/node@20.10.6)':
+ '@microsoft/api-extractor-model@7.28.13(@types/node@20.14.10)':
dependencies:
'@microsoft/tsdoc': 0.14.2
'@microsoft/tsdoc-config': 0.16.2
- '@rushstack/node-core-library': 4.0.2(@types/node@20.10.6)
+ '@rushstack/node-core-library': 4.0.2(@types/node@20.14.10)
transitivePeerDependencies:
- '@types/node'
- '@microsoft/api-extractor@7.43.0(@types/node@20.10.6)':
+ '@microsoft/api-extractor@7.43.0(@types/node@20.14.10)':
dependencies:
- '@microsoft/api-extractor-model': 7.28.13(@types/node@20.10.6)
+ '@microsoft/api-extractor-model': 7.28.13(@types/node@20.14.10)
'@microsoft/tsdoc': 0.14.2
'@microsoft/tsdoc-config': 0.16.2
- '@rushstack/node-core-library': 4.0.2(@types/node@20.10.6)
+ '@rushstack/node-core-library': 4.0.2(@types/node@20.14.10)
'@rushstack/rig-package': 0.5.2
- '@rushstack/terminal': 0.10.0(@types/node@20.10.6)
- '@rushstack/ts-command-line': 4.19.1(@types/node@20.10.6)
+ '@rushstack/terminal': 0.10.0(@types/node@20.14.10)
+ '@rushstack/ts-command-line': 4.19.1(@types/node@20.14.10)
lodash: 4.17.21
minimatch: 3.0.8
resolve: 1.22.8
@@ -11734,9 +13612,27 @@ snapshots:
'@microsoft/tsdoc@0.14.2': {}
+ '@msgpackr-extract/msgpackr-extract-darwin-arm64@3.0.3':
+ optional: true
+
+ '@msgpackr-extract/msgpackr-extract-darwin-x64@3.0.3':
+ optional: true
+
+ '@msgpackr-extract/msgpackr-extract-linux-arm64@3.0.3':
+ optional: true
+
+ '@msgpackr-extract/msgpackr-extract-linux-arm@3.0.3':
+ optional: true
+
+ '@msgpackr-extract/msgpackr-extract-linux-x64@3.0.3':
+ optional: true
+
+ '@msgpackr-extract/msgpackr-extract-win32-x64@3.0.3':
+ optional: true
+
'@mui/base@5.0.0-beta.29(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.0
+ '@babel/runtime': 7.24.7
'@floating-ui/react-dom': 2.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@mui/types': 7.2.12(@types/react@18.3.3)
'@mui/utils': 5.15.3(@types/react@18.3.3)(react@18.3.1)
@@ -11752,7 +13648,7 @@ snapshots:
'@mui/material@5.15.2(@emotion/react@11.11.3(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.11.0(@emotion/react@11.11.3(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.0
+ '@babel/runtime': 7.24.7
'@mui/base': 5.0.0-beta.29(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@mui/core-downloads-tracker': 5.15.3
'@mui/system': 5.15.3(@emotion/react@11.11.3(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.11.0(@emotion/react@11.11.3(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1)
@@ -11760,7 +13656,7 @@ snapshots:
'@mui/utils': 5.15.3(@types/react@18.3.3)(react@18.3.1)
'@types/react-transition-group': 4.4.10
clsx: 2.1.0
- csstype: 3.1.2
+ csstype: 3.1.3
prop-types: 15.8.1
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
@@ -11773,7 +13669,7 @@ snapshots:
'@mui/private-theming@5.15.3(@types/react@18.3.3)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.0
+ '@babel/runtime': 7.24.7
'@mui/utils': 5.15.3(@types/react@18.3.3)(react@18.3.1)
prop-types: 15.8.1
react: 18.3.1
@@ -11782,9 +13678,9 @@ snapshots:
'@mui/styled-engine@5.15.3(@emotion/react@11.11.3(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.11.0(@emotion/react@11.11.3(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.0
+ '@babel/runtime': 7.24.7
'@emotion/cache': 11.11.0
- csstype: 3.1.2
+ csstype: 3.1.3
prop-types: 15.8.1
react: 18.3.1
optionalDependencies:
@@ -11793,13 +13689,13 @@ snapshots:
'@mui/system@5.15.3(@emotion/react@11.11.3(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.11.0(@emotion/react@11.11.3(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.0
+ '@babel/runtime': 7.24.7
'@mui/private-theming': 5.15.3(@types/react@18.3.3)(react@18.3.1)
'@mui/styled-engine': 5.15.3(@emotion/react@11.11.3(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.11.0(@emotion/react@11.11.3(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1)
'@mui/types': 7.2.12(@types/react@18.3.3)
'@mui/utils': 5.15.3(@types/react@18.3.3)(react@18.3.1)
clsx: 2.1.0
- csstype: 3.1.2
+ csstype: 3.1.3
prop-types: 15.8.1
react: 18.3.1
optionalDependencies:
@@ -11813,7 +13709,7 @@ snapshots:
'@mui/utils@5.15.3(@types/react@18.3.3)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.0
+ '@babel/runtime': 7.24.7
'@types/prop-types': 15.7.11
prop-types: 15.8.1
react: 18.3.1
@@ -11876,7 +13772,13 @@ snapshots:
dependencies:
'@angular/compiler-cli': 17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2)
typescript: 5.4.2
- webpack: 5.90.3(@swc/core@1.4.6)(esbuild@0.20.2)
+ webpack: 5.90.3(@swc/core@1.4.6)(esbuild@0.23.0)
+
+ '@ngtools/webpack@18.0.7(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2))(typescript@5.4.2)(webpack@5.91.0(@swc/core@1.4.6)(esbuild@0.21.3))':
+ dependencies:
+ '@angular/compiler-cli': 17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2)
+ typescript: 5.4.2
+ webpack: 5.91.0(@swc/core@1.4.6)(esbuild@0.23.0)
'@nodelib/fs.scandir@2.1.5':
dependencies:
@@ -11907,19 +13809,19 @@ snapshots:
agent-base: 7.1.0
http-proxy-agent: 7.0.0
https-proxy-agent: 7.0.4
- lru-cache: 10.2.0
+ lru-cache: 10.3.1
socks-proxy-agent: 8.0.2
transitivePeerDependencies:
- supports-color
- '@npmcli/fs@3.1.0':
+ '@npmcli/fs@3.1.1':
dependencies:
semver: 7.6.2
'@npmcli/git@5.0.4':
dependencies:
'@npmcli/promise-spawn': 7.0.1
- lru-cache: 10.2.0
+ lru-cache: 10.3.1
npm-pick-manifest: 9.0.0
proc-log: 3.0.0
promise-inflight: 1.0.1
@@ -11939,7 +13841,7 @@ snapshots:
'@npmcli/package-json@5.0.0':
dependencies:
'@npmcli/git': 5.0.4
- glob: 10.3.10
+ glob: 10.4.3
hosted-git-info: 7.0.1
json-parse-even-better-errors: 3.0.1
normalize-package-data: 6.0.0
@@ -11966,7 +13868,7 @@ snapshots:
'@nrwl/tao@19.3.0(@swc/core@1.4.6)':
dependencies:
nx: 19.3.0(@swc/core@1.4.6)
- tslib: 2.6.2
+ tslib: 2.6.3
transitivePeerDependencies:
- '@swc-node/register'
- '@swc/core'
@@ -12190,12 +14092,12 @@ snapshots:
'@parcel/watcher-wasm@2.3.0':
dependencies:
is-glob: 4.0.3
- micromatch: 4.0.5
+ micromatch: 4.0.7
'@parcel/watcher-wasm@2.4.1':
dependencies:
is-glob: 4.0.3
- micromatch: 4.0.5
+ micromatch: 4.0.7
'@parcel/watcher-win32-arm64@2.4.1':
optional: true
@@ -12210,7 +14112,7 @@ snapshots:
dependencies:
detect-libc: 1.0.3
is-glob: 4.0.3
- micromatch: 4.0.5
+ micromatch: 4.0.7
node-addon-api: 7.1.0
optionalDependencies:
'@parcel/watcher-android-arm64': 2.4.1
@@ -12276,9 +14178,9 @@ snapshots:
'@protobufjs/utf8@1.1.0': {}
- '@remix-run/node@2.10.0(typescript@5.4.2)':
+ '@remix-run/node@2.10.0(typescript@5.5.3)':
dependencies:
- '@remix-run/server-runtime': 2.10.0(typescript@5.4.2)
+ '@remix-run/server-runtime': 2.10.0(typescript@5.5.3)
'@remix-run/web-fetch': 4.4.2
'@web3-storage/multipart-parser': 1.0.0
cookie-signature: 1.2.1
@@ -12286,11 +14188,11 @@ snapshots:
stream-slice: 0.1.2
undici: 6.19.2
optionalDependencies:
- typescript: 5.4.2
+ typescript: 5.5.3
'@remix-run/router@1.17.0': {}
- '@remix-run/server-runtime@2.10.0(typescript@5.4.2)':
+ '@remix-run/server-runtime@2.10.0(typescript@5.5.3)':
dependencies:
'@remix-run/router': 1.17.0
'@types/cookie': 0.6.0
@@ -12300,7 +14202,7 @@ snapshots:
source-map: 0.7.4
turbo-stream: 2.2.0
optionalDependencies:
- typescript: 5.4.2
+ typescript: 5.5.3
'@remix-run/web-blob@3.1.0':
dependencies:
@@ -12355,29 +14257,12 @@ snapshots:
optionalDependencies:
rollup: 4.18.0
- '@rollup/plugin-json@6.1.0(rollup@4.17.1)':
- dependencies:
- '@rollup/pluginutils': 5.1.0(rollup@4.17.1)
- optionalDependencies:
- rollup: 4.17.1
-
'@rollup/plugin-json@6.1.0(rollup@4.18.0)':
dependencies:
'@rollup/pluginutils': 5.1.0(rollup@4.18.0)
optionalDependencies:
rollup: 4.18.0
- '@rollup/plugin-node-resolve@15.2.3(rollup@4.17.1)':
- dependencies:
- '@rollup/pluginutils': 5.1.0(rollup@4.17.1)
- '@types/resolve': 1.20.2
- deepmerge: 4.3.1
- is-builtin-module: 3.2.1
- is-module: 1.0.0
- resolve: 1.22.8
- optionalDependencies:
- rollup: 4.17.1
-
'@rollup/plugin-node-resolve@15.2.3(rollup@4.18.0)':
dependencies:
'@rollup/pluginutils': 5.1.0(rollup@4.18.0)
@@ -12400,7 +14285,7 @@ snapshots:
dependencies:
serialize-javascript: 6.0.2
smob: 1.5.0
- terser: 5.29.1
+ terser: 5.31.1
optionalDependencies:
rollup: 4.18.0
@@ -12409,14 +14294,6 @@ snapshots:
estree-walker: 2.0.2
picomatch: 2.3.1
- '@rollup/pluginutils@5.1.0(rollup@4.17.1)':
- dependencies:
- '@types/estree': 1.0.5
- estree-walker: 2.0.2
- picomatch: 2.3.1
- optionalDependencies:
- rollup: 4.17.1
-
'@rollup/pluginutils@5.1.0(rollup@4.18.0)':
dependencies:
'@types/estree': 1.0.5
@@ -12425,109 +14302,61 @@ snapshots:
optionalDependencies:
rollup: 4.18.0
- '@rollup/rollup-android-arm-eabi@4.17.1':
- optional: true
-
'@rollup/rollup-android-arm-eabi@4.18.0':
optional: true
- '@rollup/rollup-android-arm64@4.17.1':
- optional: true
-
'@rollup/rollup-android-arm64@4.18.0':
optional: true
- '@rollup/rollup-darwin-arm64@4.17.1':
- optional: true
-
'@rollup/rollup-darwin-arm64@4.18.0':
optional: true
- '@rollup/rollup-darwin-x64@4.17.1':
- optional: true
-
'@rollup/rollup-darwin-x64@4.18.0':
optional: true
- '@rollup/rollup-linux-arm-gnueabihf@4.17.1':
- optional: true
-
'@rollup/rollup-linux-arm-gnueabihf@4.18.0':
optional: true
- '@rollup/rollup-linux-arm-musleabihf@4.17.1':
- optional: true
-
'@rollup/rollup-linux-arm-musleabihf@4.18.0':
optional: true
- '@rollup/rollup-linux-arm64-gnu@4.17.1':
- optional: true
-
'@rollup/rollup-linux-arm64-gnu@4.18.0':
optional: true
- '@rollup/rollup-linux-arm64-musl@4.17.1':
- optional: true
-
'@rollup/rollup-linux-arm64-musl@4.18.0':
optional: true
- '@rollup/rollup-linux-powerpc64le-gnu@4.17.1':
- optional: true
-
'@rollup/rollup-linux-powerpc64le-gnu@4.18.0':
optional: true
- '@rollup/rollup-linux-riscv64-gnu@4.17.1':
- optional: true
-
'@rollup/rollup-linux-riscv64-gnu@4.18.0':
optional: true
- '@rollup/rollup-linux-s390x-gnu@4.17.1':
- optional: true
-
'@rollup/rollup-linux-s390x-gnu@4.18.0':
optional: true
- '@rollup/rollup-linux-x64-gnu@4.17.1':
- optional: true
-
'@rollup/rollup-linux-x64-gnu@4.18.0':
optional: true
- '@rollup/rollup-linux-x64-musl@4.17.1':
- optional: true
-
'@rollup/rollup-linux-x64-musl@4.18.0':
optional: true
- '@rollup/rollup-win32-arm64-msvc@4.17.1':
- optional: true
-
'@rollup/rollup-win32-arm64-msvc@4.18.0':
optional: true
- '@rollup/rollup-win32-ia32-msvc@4.17.1':
- optional: true
-
'@rollup/rollup-win32-ia32-msvc@4.18.0':
optional: true
- '@rollup/rollup-win32-x64-msvc@4.17.1':
- optional: true
-
'@rollup/rollup-win32-x64-msvc@4.18.0':
optional: true
- '@rollup/wasm-node@4.13.0':
+ '@rollup/wasm-node@4.18.0':
dependencies:
'@types/estree': 1.0.5
optionalDependencies:
fsevents: 2.3.3
- '@rushstack/node-core-library@4.0.2(@types/node@20.10.6)':
+ '@rushstack/node-core-library@4.0.2(@types/node@20.14.10)':
dependencies:
fs-extra: 7.0.1
import-lazy: 4.0.0
@@ -12536,23 +14365,23 @@ snapshots:
semver: 7.5.4
z-schema: 5.0.5
optionalDependencies:
- '@types/node': 20.10.6
+ '@types/node': 20.14.10
'@rushstack/rig-package@0.5.2':
dependencies:
resolve: 1.22.8
strip-json-comments: 3.1.1
- '@rushstack/terminal@0.10.0(@types/node@20.10.6)':
+ '@rushstack/terminal@0.10.0(@types/node@20.14.10)':
dependencies:
- '@rushstack/node-core-library': 4.0.2(@types/node@20.10.6)
+ '@rushstack/node-core-library': 4.0.2(@types/node@20.14.10)
supports-color: 8.1.1
optionalDependencies:
- '@types/node': 20.10.6
+ '@types/node': 20.14.10
- '@rushstack/ts-command-line@4.19.1(@types/node@20.10.6)':
+ '@rushstack/ts-command-line@4.19.1(@types/node@20.14.10)':
dependencies:
- '@rushstack/terminal': 0.10.0(@types/node@20.10.6)
+ '@rushstack/terminal': 0.10.0(@types/node@20.14.10)
'@types/argparse': 1.0.38
argparse: 1.0.10
string-argv: 0.3.2
@@ -12607,13 +14436,13 @@ snapshots:
ignore: 5.3.1
p-map: 4.0.0
- '@solidjs/router@0.13.0(solid-js@1.7.12)':
+ '@solidjs/router@0.13.6(solid-js@1.7.12)':
dependencies:
solid-js: 1.7.12
- '@solidjs/testing-library@0.8.6(@solidjs/router@0.13.0(solid-js@1.7.12))(solid-js@1.7.12)':
+ '@solidjs/testing-library@0.8.6(@solidjs/router@0.13.6(solid-js@1.7.12))(solid-js@1.7.12)':
dependencies:
- '@solidjs/router': 0.13.0(solid-js@1.7.12)
+ '@solidjs/router': 0.13.6(solid-js@1.7.12)
'@testing-library/dom': 9.3.4
solid-js: 1.7.12
@@ -12649,8 +14478,8 @@ snapshots:
'@swc/core@1.4.6(@swc/helpers@0.5.11)':
dependencies:
- '@swc/counter': 0.1.2
- '@swc/types': 0.1.5
+ '@swc/counter': 0.1.3
+ '@swc/types': 0.1.9
optionalDependencies:
'@swc/core-darwin-arm64': 1.4.6
'@swc/core-darwin-x64': 1.4.6
@@ -12664,28 +14493,30 @@ snapshots:
'@swc/core-win32-x64-msvc': 1.4.6
'@swc/helpers': 0.5.11
- '@swc/counter@0.1.2': {}
+ '@swc/counter@0.1.3': {}
'@swc/helpers@0.5.11':
dependencies:
- tslib: 2.6.2
+ tslib: 2.6.3
- '@swc/types@0.1.5': {}
+ '@swc/types@0.1.9':
+ dependencies:
+ '@swc/counter': 0.1.3
'@tanstack/angular-store@0.5.1(@angular/common@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))':
dependencies:
'@angular/common': 17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1)
'@angular/core': 17.3.0(rxjs@7.8.1)(zone.js@0.14.4)
'@tanstack/store': 0.5.0
- tslib: 2.6.2
+ tslib: 2.6.3
- '@tanstack/config@0.9.0(@types/node@20.10.6)(esbuild@0.20.2)(eslint@8.57.0)(rollup@4.18.0)(typescript@5.4.2)(vite@5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1))':
+ '@tanstack/config@0.9.0(@types/node@20.14.10)(esbuild@0.23.0)(eslint@8.57.0)(rollup@4.18.0)(typescript@5.4.2)(vite@5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))':
dependencies:
'@commitlint/parse': 19.0.3
'@eslint/js': 8.57.0
commander: 12.1.0
current-git-branch: 1.1.0
- esbuild-register: 3.5.0(esbuild@0.20.2)
+ esbuild-register: 3.5.0(esbuild@0.23.0)
eslint-config-prettier: 9.1.0(eslint@8.57.0)
eslint-plugin-import-x: 0.5.1(eslint@8.57.0)(typescript@5.4.2)
eslint-plugin-unicorn: 54.0.0(eslint@8.57.0)
@@ -12699,9 +14530,9 @@ snapshots:
simple-git: 3.25.0
typescript-eslint: 7.14.1(eslint@8.57.0)(typescript@5.4.2)
v8flags: 4.0.1
- vite-plugin-dts: 3.9.1(@types/node@20.10.6)(rollup@4.18.0)(typescript@5.4.2)(vite@5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1))
- vite-plugin-externalize-deps: 0.8.0(vite@5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1))
- vite-tsconfig-paths: 4.3.2(typescript@5.4.2)(vite@5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1))
+ vite-plugin-dts: 3.9.1(@types/node@20.14.10)(rollup@4.18.0)(typescript@5.4.2)(vite@5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))
+ vite-plugin-externalize-deps: 0.8.0(vite@5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))
+ vite-tsconfig-paths: 4.3.2(typescript@5.4.2)(vite@5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))
transitivePeerDependencies:
- '@types/node'
- esbuild
@@ -12753,7 +14584,7 @@ snapshots:
prettier: 3.3.2
zod: 3.22.4
- '@tanstack/router-plugin@1.43.1(vite@5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1))':
+ '@tanstack/router-plugin@1.43.1(vite@5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))':
dependencies:
'@babel/core': 7.24.7
'@babel/generator': 7.24.7
@@ -12772,13 +14603,13 @@ snapshots:
unplugin: 1.10.2
zod: 3.22.4
optionalDependencies:
- vite: 5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1(postcss@8.4.32))(terser@5.29.1)
+ vite: 5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)
transitivePeerDependencies:
- supports-color
- '@tanstack/router-vite-plugin@1.43.1(vite@5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1))':
+ '@tanstack/router-vite-plugin@1.43.1(vite@5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))':
dependencies:
- '@tanstack/router-plugin': 1.43.1(vite@5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1))
+ '@tanstack/router-plugin': 1.43.1(vite@5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))
transitivePeerDependencies:
- '@rsbuild/core'
- supports-color
@@ -12805,26 +14636,82 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@tanstack/start@1.43.2(@opentelemetry/api@1.9.0)(@types/node@20.10.6)(encoding@0.1.13)(ioredis@5.4.1)(less@4.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1)(typescript@5.4.2)(vite@5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1))':
+ '@tanstack/start@1.43.2(@opentelemetry/api@1.9.0)(@types/node@20.14.10)(encoding@0.1.13)(ioredis@5.4.1)(less@4.2.0)(magicast@0.3.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)(typescript@5.4.2)(vite@5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))':
+ dependencies:
+ '@tanstack/react-cross-context': 1.41.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@tanstack/react-router': 1.43.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@tanstack/router-generator': 1.43.1
+ '@tanstack/router-plugin': 1.43.1(vite@5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))
+ '@tanstack/start-vite-plugin': 1.43.1
+ '@types/jsesc': 3.0.3
+ '@vinxi/react': 0.2.2
+ '@vinxi/react-server-dom': 0.0.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(vite@5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))
+ '@vinxi/server-components': 0.3.3(vinxi@0.3.11(@types/node@20.14.10)(ioredis@5.4.1)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))
+ '@vinxi/server-functions': 0.3.3(vinxi@0.3.11(@types/node@20.14.10)(ioredis@5.4.1)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))
+ import-meta-resolve: 4.0.0
+ isbot: 5.1.11
+ jsesc: 3.0.2
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ tiny-invariant: 1.3.3
+ vinxi: 0.3.11(@opentelemetry/api@1.9.0)(@types/node@20.14.10)(encoding@0.1.13)(ioredis@5.4.1)(less@4.2.0)(magicast@0.3.4)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)
+ vite-tsconfig-paths: 4.3.2(typescript@5.4.2)(vite@5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))
+ zod: 3.22.4
+ transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@libsql/client'
+ - '@netlify/blobs'
+ - '@opentelemetry/api'
+ - '@planetscale/database'
+ - '@rsbuild/core'
+ - '@types/node'
+ - '@upstash/redis'
+ - '@vercel/kv'
+ - better-sqlite3
+ - debug
+ - drizzle-orm
+ - encoding
+ - idb-keyval
+ - ioredis
+ - less
+ - lightningcss
+ - magicast
+ - sass
+ - stylus
+ - sugarss
+ - supports-color
+ - terser
+ - typescript
+ - uWebSockets.js
+ - vite
+ - xml2js
+
+ '@tanstack/start@1.43.2(@types/node@20.14.10)(ioredis@5.4.1)(less@4.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)(typescript@5.5.3)(vite@5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))':
dependencies:
'@tanstack/react-cross-context': 1.41.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@tanstack/react-router': 1.43.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@tanstack/router-generator': 1.43.1
- '@tanstack/router-plugin': 1.43.1(vite@5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1))
+ '@tanstack/router-plugin': 1.43.1(vite@5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))
'@tanstack/start-vite-plugin': 1.43.1
'@types/jsesc': 3.0.3
'@vinxi/react': 0.2.2
- '@vinxi/react-server-dom': 0.0.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(vite@5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1))
- '@vinxi/server-components': 0.3.3(vinxi@0.3.11(@types/node@20.10.6)(ioredis@5.4.1)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1))
- '@vinxi/server-functions': 0.3.3(vinxi@0.3.11(@types/node@20.10.6)(ioredis@5.4.1)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1))
+ '@vinxi/react-server-dom': 0.0.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(vite@5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))
+ '@vinxi/server-components': 0.3.3(vinxi@0.3.11(@types/node@20.14.10)(ioredis@5.4.1)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))
+ '@vinxi/server-functions': 0.3.3(vinxi@0.3.11(@types/node@20.14.10)(ioredis@5.4.1)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))
import-meta-resolve: 4.0.0
isbot: 5.1.11
jsesc: 3.0.2
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
tiny-invariant: 1.3.3
- vinxi: 0.3.11(@opentelemetry/api@1.9.0)(@types/node@20.10.6)(encoding@0.1.13)(ioredis@5.4.1)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1)
- vite-tsconfig-paths: 4.3.2(typescript@5.4.2)(vite@5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1))
+ vinxi: 0.3.11(@opentelemetry/api@1.9.0)(@types/node@20.14.10)(encoding@0.1.13)(ioredis@5.4.1)(less@4.2.0)(magicast@0.3.4)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)
+ vite-tsconfig-paths: 4.3.2(typescript@5.5.3)(vite@5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))
zod: 3.22.4
transitivePeerDependencies:
- '@azure/app-configuration'
@@ -12865,36 +14752,47 @@ snapshots:
'@tanstack/store@0.5.0': {}
- '@tanstack/vue-store@0.5.0(vue@3.3.4)':
+ '@tanstack/vue-store@0.5.0(vue@3.4.31(typescript@5.5.3))':
dependencies:
'@tanstack/store': 0.5.0
- vue: 3.3.4
- vue-demi: 0.14.6(vue@3.3.4)
+ vue: 3.4.31(typescript@5.5.3)
+ vue-demi: 0.14.6(vue@3.4.31(typescript@5.5.3))
- '@testing-library/angular@15.2.0(@angular/common@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(@angular/platform-browser@17.3.0(@angular/animations@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/router@17.3.0(@angular/common@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(@angular/platform-browser@17.3.0(@angular/animations@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(rxjs@7.8.1))':
+ '@testing-library/angular@15.2.0(@angular/common@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(@angular/platform-browser@17.3.0(@angular/animations@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/router@18.0.6(@angular/common@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(@angular/platform-browser@17.3.0(@angular/animations@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(rxjs@7.8.1))':
dependencies:
'@angular/common': 17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1)
'@angular/core': 17.3.0(rxjs@7.8.1)(zone.js@0.14.4)
'@angular/platform-browser': 17.3.0(@angular/animations@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))
- '@angular/router': 17.3.0(@angular/common@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(@angular/platform-browser@17.3.0(@angular/animations@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(rxjs@7.8.1)
+ '@angular/router': 18.0.6(@angular/common@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(@angular/platform-browser@17.3.0(@angular/animations@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(rxjs@7.8.1)
'@testing-library/dom': 9.3.4
- tslib: 2.6.2
+ tslib: 2.6.3
+
+ '@testing-library/dom@10.3.1':
+ dependencies:
+ '@babel/code-frame': 7.24.7
+ '@babel/runtime': 7.24.7
+ '@types/aria-query': 5.0.4
+ aria-query: 5.3.0
+ chalk: 4.1.2
+ dom-accessibility-api: 0.5.16
+ lz-string: 1.5.0
+ pretty-format: 27.5.1
'@testing-library/dom@9.3.4':
dependencies:
'@babel/code-frame': 7.24.7
- '@babel/runtime': 7.24.0
- '@types/aria-query': 5.0.1
+ '@babel/runtime': 7.24.7
+ '@types/aria-query': 5.0.4
aria-query: 5.1.3
chalk: 4.1.2
dom-accessibility-api: 0.5.16
lz-string: 1.5.0
pretty-format: 27.5.1
- '@testing-library/jest-dom@6.4.2(vitest@1.3.1(@types/node@20.10.6)(jsdom@24.0.0)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1))':
+ '@testing-library/jest-dom@6.4.6(vitest@1.6.0(@types/node@20.14.10)(jsdom@24.0.0)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))':
dependencies:
- '@adobe/css-tools': 4.3.2
- '@babel/runtime': 7.24.0
+ '@adobe/css-tools': 4.4.0
+ '@babel/runtime': 7.24.7
aria-query: 5.3.0
chalk: 3.0.0
css.escape: 1.5.1
@@ -12902,35 +14800,33 @@ snapshots:
lodash: 4.17.21
redent: 3.0.0
optionalDependencies:
- vitest: 1.3.1(@types/node@20.10.6)(jsdom@24.0.0)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1)
+ vitest: 1.6.0(@types/node@20.14.10)(jsdom@24.0.0)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)
'@testing-library/react@14.2.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.0
+ '@babel/runtime': 7.24.7
'@testing-library/dom': 9.3.4
'@types/react-dom': 18.3.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- '@testing-library/user-event@14.5.2(@testing-library/dom@9.3.4)':
+ '@testing-library/user-event@14.5.2(@testing-library/dom@10.3.1)':
dependencies:
- '@testing-library/dom': 9.3.4
+ '@testing-library/dom': 10.3.1
- '@testing-library/vue@8.0.2(@vue/compiler-sfc@3.3.4)(@vue/server-renderer@3.3.4(vue@3.3.4))(vue@3.3.4)':
+ '@testing-library/vue@8.1.0(@vue/compiler-sfc@3.4.31)(vue@3.4.31(typescript@5.4.2))':
dependencies:
- '@babel/runtime': 7.24.0
+ '@babel/runtime': 7.24.7
'@testing-library/dom': 9.3.4
- '@vue/test-utils': 2.4.1(@vue/server-renderer@3.3.4(vue@3.3.4))(vue@3.3.4)
- vue: 3.3.4
+ '@vue/test-utils': 2.4.6
+ vue: 3.4.31(typescript@5.4.2)
optionalDependencies:
- '@vue/compiler-sfc': 3.3.4
- transitivePeerDependencies:
- - '@vue/server-renderer'
+ '@vue/compiler-sfc': 3.4.31
'@ts-morph/common@0.22.0':
dependencies:
fast-glob: 3.3.2
- minimatch: 9.0.4
+ minimatch: 9.0.5
mkdirp: 3.0.1
path-browserify: 1.0.1
@@ -12939,42 +14835,29 @@ snapshots:
'@tufjs/models@2.0.0':
dependencies:
'@tufjs/canonical-json': 2.0.0
- minimatch: 9.0.4
+ minimatch: 9.0.5
'@types/argparse@1.0.38': {}
- '@types/aria-query@5.0.1': {}
+ '@types/aria-query@5.0.4': {}
'@types/babel__core@7.20.5':
dependencies:
'@babel/parser': 7.24.7
'@babel/types': 7.24.7
- '@types/babel__generator': 7.6.4
- '@types/babel__template': 7.4.1
- '@types/babel__traverse': 7.17.1
-
- '@types/babel__generator@7.6.4':
- dependencies:
- '@babel/types': 7.24.7
+ '@types/babel__generator': 7.6.8
+ '@types/babel__template': 7.4.4
+ '@types/babel__traverse': 7.20.6
'@types/babel__generator@7.6.8':
dependencies:
'@babel/types': 7.24.7
- '@types/babel__template@7.4.1':
- dependencies:
- '@babel/parser': 7.24.7
- '@babel/types': 7.24.7
-
'@types/babel__template@7.4.4':
dependencies:
'@babel/parser': 7.24.7
'@babel/types': 7.24.7
- '@types/babel__traverse@7.17.1':
- dependencies:
- '@babel/types': 7.24.7
-
'@types/babel__traverse@7.20.6':
dependencies:
'@babel/types': 7.24.7
@@ -12982,26 +14865,26 @@ snapshots:
'@types/body-parser@1.19.5':
dependencies:
'@types/connect': 3.4.38
- '@types/node': 20.10.6
+ '@types/node': 20.14.10
'@types/bonjour@3.5.13':
dependencies:
- '@types/node': 20.10.6
+ '@types/node': 20.14.10
'@types/braces@3.0.4': {}
'@types/connect-history-api-fallback@1.5.4':
dependencies:
'@types/express-serve-static-core': 4.17.43
- '@types/node': 20.10.6
+ '@types/node': 20.14.10
'@types/connect@3.4.38':
dependencies:
- '@types/node': 20.10.6
+ '@types/node': 20.14.10
'@types/conventional-commits-parser@5.0.0':
dependencies:
- '@types/node': 20.10.6
+ '@types/node': 20.14.10
'@types/cookie@0.6.0': {}
@@ -13019,7 +14902,7 @@ snapshots:
'@types/express-serve-static-core@4.17.43':
dependencies:
- '@types/node': 20.10.6
+ '@types/node': 20.14.10
'@types/qs': 6.9.12
'@types/range-parser': 1.2.7
'@types/send': 0.17.4
@@ -13029,13 +14912,13 @@ snapshots:
'@types/body-parser': 1.19.5
'@types/express-serve-static-core': 4.17.43
'@types/qs': 6.9.12
- '@types/serve-static': 1.15.5
+ '@types/serve-static': 1.15.7
'@types/http-errors@2.0.4': {}
'@types/http-proxy@1.17.14':
dependencies:
- '@types/node': 20.10.6
+ '@types/node': 20.14.10
'@types/jsesc@3.0.3': {}
@@ -13047,15 +14930,13 @@ snapshots:
'@types/mime@1.3.5': {}
- '@types/mime@3.0.4': {}
-
'@types/minimist@1.2.2': {}
'@types/node-forge@1.3.11':
dependencies:
- '@types/node': 20.10.6
+ '@types/node': 20.14.10
- '@types/node@20.10.6':
+ '@types/node@20.14.10':
dependencies:
undici-types: 5.26.5
@@ -13080,56 +14961,40 @@ snapshots:
'@types/react@18.3.3':
dependencies:
'@types/prop-types': 15.7.11
- csstype: 3.1.2
+ csstype: 3.1.3
'@types/resolve@1.20.2': {}
'@types/retry@0.12.0': {}
+ '@types/retry@0.12.2': {}
+
'@types/send@0.17.4':
dependencies:
'@types/mime': 1.3.5
- '@types/node': 20.10.6
+ '@types/node': 20.14.10
'@types/serve-index@1.9.4':
dependencies:
'@types/express': 4.17.21
- '@types/serve-static@1.15.5':
+ '@types/serve-static@1.15.7':
dependencies:
'@types/http-errors': 2.0.4
- '@types/mime': 3.0.4
- '@types/node': 20.10.6
+ '@types/node': 20.14.10
+ '@types/send': 0.17.4
'@types/shimmer@1.0.5': {}
'@types/sockjs@0.3.36':
dependencies:
- '@types/node': 20.10.6
+ '@types/node': 20.14.10
'@types/trusted-types@2.0.7': {}
'@types/ws@8.5.10':
dependencies:
- '@types/node': 20.10.6
-
- '@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@7.13.1(eslint@8.57.0)(typescript@5.4.2))(eslint@8.57.0)(typescript@5.4.2)':
- dependencies:
- '@eslint-community/regexpp': 4.10.1
- '@typescript-eslint/parser': 7.13.1(eslint@8.57.0)(typescript@5.4.2)
- '@typescript-eslint/scope-manager': 7.13.1
- '@typescript-eslint/type-utils': 7.13.1(eslint@8.57.0)(typescript@5.4.2)
- '@typescript-eslint/utils': 7.13.1(eslint@8.57.0)(typescript@5.4.2)
- '@typescript-eslint/visitor-keys': 7.13.1
- eslint: 8.57.0
- graphemer: 1.4.0
- ignore: 5.3.1
- natural-compare: 1.4.0
- ts-api-utils: 1.3.0(typescript@5.4.2)
- optionalDependencies:
- typescript: 5.4.2
- transitivePeerDependencies:
- - supports-color
+ '@types/node': 20.14.10
'@typescript-eslint/eslint-plugin@7.14.1(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.4.2))(eslint@8.57.0)(typescript@5.4.2)':
dependencies:
@@ -13149,54 +15014,24 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@7.13.1(eslint@8.57.0)(typescript@5.4.2)':
- dependencies:
- '@typescript-eslint/scope-manager': 7.13.1
- '@typescript-eslint/types': 7.13.1
- '@typescript-eslint/typescript-estree': 7.13.1(typescript@5.4.2)
- '@typescript-eslint/visitor-keys': 7.13.1
- debug: 4.3.4
- eslint: 8.57.0
- optionalDependencies:
- typescript: 5.4.2
- transitivePeerDependencies:
- - supports-color
-
'@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.4.2)':
dependencies:
'@typescript-eslint/scope-manager': 7.14.1
'@typescript-eslint/types': 7.14.1
'@typescript-eslint/typescript-estree': 7.14.1(typescript@5.4.2)
'@typescript-eslint/visitor-keys': 7.14.1
- debug: 4.3.5
- eslint: 8.57.0
- optionalDependencies:
- typescript: 5.4.2
- transitivePeerDependencies:
- - supports-color
-
- '@typescript-eslint/scope-manager@7.13.1':
- dependencies:
- '@typescript-eslint/types': 7.13.1
- '@typescript-eslint/visitor-keys': 7.13.1
-
- '@typescript-eslint/scope-manager@7.14.1':
- dependencies:
- '@typescript-eslint/types': 7.14.1
- '@typescript-eslint/visitor-keys': 7.14.1
-
- '@typescript-eslint/type-utils@7.13.1(eslint@8.57.0)(typescript@5.4.2)':
- dependencies:
- '@typescript-eslint/typescript-estree': 7.13.1(typescript@5.4.2)
- '@typescript-eslint/utils': 7.13.1(eslint@8.57.0)(typescript@5.4.2)
- debug: 4.3.4
+ debug: 4.3.5
eslint: 8.57.0
- ts-api-utils: 1.3.0(typescript@5.4.2)
optionalDependencies:
typescript: 5.4.2
transitivePeerDependencies:
- supports-color
+ '@typescript-eslint/scope-manager@7.14.1':
+ dependencies:
+ '@typescript-eslint/types': 7.14.1
+ '@typescript-eslint/visitor-keys': 7.14.1
+
'@typescript-eslint/type-utils@7.14.1(eslint@8.57.0)(typescript@5.4.2)':
dependencies:
'@typescript-eslint/typescript-estree': 7.14.1(typescript@5.4.2)
@@ -13209,25 +15044,8 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/types@7.13.1': {}
-
'@typescript-eslint/types@7.14.1': {}
- '@typescript-eslint/typescript-estree@7.13.1(typescript@5.4.2)':
- dependencies:
- '@typescript-eslint/types': 7.13.1
- '@typescript-eslint/visitor-keys': 7.13.1
- debug: 4.3.4
- globby: 11.1.0
- is-glob: 4.0.3
- minimatch: 9.0.4
- semver: 7.6.2
- ts-api-utils: 1.3.0(typescript@5.4.2)
- optionalDependencies:
- typescript: 5.4.2
- transitivePeerDependencies:
- - supports-color
-
'@typescript-eslint/typescript-estree@7.14.1(typescript@5.4.2)':
dependencies:
'@typescript-eslint/types': 7.14.1
@@ -13235,7 +15053,7 @@ snapshots:
debug: 4.3.5
globby: 11.1.0
is-glob: 4.0.3
- minimatch: 9.0.4
+ minimatch: 9.0.5
semver: 7.6.2
ts-api-utils: 1.3.0(typescript@5.4.2)
optionalDependencies:
@@ -13243,17 +15061,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@7.13.1(eslint@8.57.0)(typescript@5.4.2)':
- dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0)
- '@typescript-eslint/scope-manager': 7.13.1
- '@typescript-eslint/types': 7.13.1
- '@typescript-eslint/typescript-estree': 7.13.1(typescript@5.4.2)
- eslint: 8.57.0
- transitivePeerDependencies:
- - supports-color
- - typescript
-
'@typescript-eslint/utils@7.14.1(eslint@8.57.0)(typescript@5.4.2)':
dependencies:
'@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0)
@@ -13265,11 +15072,6 @@ snapshots:
- supports-color
- typescript
- '@typescript-eslint/visitor-keys@7.13.1':
- dependencies:
- '@typescript-eslint/types': 7.13.1
- eslint-visitor-keys: 3.4.3
-
'@typescript-eslint/visitor-keys@7.14.1':
dependencies:
'@typescript-eslint/types': 7.14.1
@@ -13281,14 +15083,14 @@ snapshots:
dependencies:
'@mapbox/node-pre-gyp': 1.0.11(encoding@0.1.13)
'@rollup/pluginutils': 4.2.1
- acorn: 8.12.0
- acorn-import-attributes: 1.9.5(acorn@8.12.0)
+ acorn: 8.12.1
+ acorn-import-attributes: 1.9.5(acorn@8.12.1)
async-sema: 3.1.1
bindings: 1.5.0
estree-walker: 2.0.2
glob: 7.2.3
graceful-fs: 4.2.11
- micromatch: 4.0.5
+ micromatch: 4.0.7
node-gyp-build: 4.8.0
resolve-from: 5.0.0
transitivePeerDependencies:
@@ -13304,9 +15106,9 @@ snapshots:
consola: 3.2.3
defu: 6.1.4
get-port-please: 3.1.2
- h3: 1.11.1
+ h3: 1.12.0
http-shutdown: 1.2.2
- jiti: 1.21.0
+ jiti: 1.21.6
mlly: 1.7.1
node-forge: 1.3.1
pathe: 1.1.2
@@ -13317,119 +15119,139 @@ snapshots:
transitivePeerDependencies:
- uWebSockets.js
- '@vinxi/plugin-directives@0.3.1(vinxi@0.3.11(@types/node@20.10.6)(ioredis@5.4.1)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1))':
+ '@vinxi/plugin-directives@0.3.1(vinxi@0.3.11(@types/node@20.14.10)(ioredis@5.4.1)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))':
dependencies:
'@babel/parser': 7.24.7
- acorn: 8.12.0
- acorn-jsx: 5.3.2(acorn@8.12.0)
+ acorn: 8.12.1
+ acorn-jsx: 5.3.2(acorn@8.12.1)
acorn-loose: 8.4.0
- acorn-typescript: 1.4.13(acorn@8.12.0)
+ acorn-typescript: 1.4.13(acorn@8.12.1)
astring: 1.8.6
magicast: 0.2.11
recast: 0.23.9
- tslib: 2.6.2
- vinxi: 0.3.11(@opentelemetry/api@1.9.0)(@types/node@20.10.6)(encoding@0.1.13)(ioredis@5.4.1)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1)
+ tslib: 2.6.3
+ vinxi: 0.3.11(@opentelemetry/api@1.9.0)(@types/node@20.14.10)(encoding@0.1.13)(ioredis@5.4.1)(less@4.2.0)(magicast@0.3.4)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)
- '@vinxi/react-server-dom@0.0.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(vite@5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1))':
+ '@vinxi/react-server-dom@0.0.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(vite@5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))':
dependencies:
acorn-loose: 8.4.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- vite: 5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1(postcss@8.4.32))(terser@5.29.1)
+ vite: 5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)
'@vinxi/react@0.2.2': {}
- '@vinxi/server-components@0.3.3(vinxi@0.3.11(@types/node@20.10.6)(ioredis@5.4.1)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1))':
+ '@vinxi/server-components@0.3.3(vinxi@0.3.11(@types/node@20.14.10)(ioredis@5.4.1)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))':
dependencies:
- '@vinxi/plugin-directives': 0.3.1(vinxi@0.3.11(@types/node@20.10.6)(ioredis@5.4.1)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1))
- acorn: 8.12.0
+ '@vinxi/plugin-directives': 0.3.1(vinxi@0.3.11(@types/node@20.14.10)(ioredis@5.4.1)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))
+ acorn: 8.12.1
acorn-loose: 8.4.0
- acorn-typescript: 1.4.13(acorn@8.12.0)
+ acorn-typescript: 1.4.13(acorn@8.12.1)
astring: 1.8.6
magicast: 0.2.11
recast: 0.23.9
- vinxi: 0.3.11(@opentelemetry/api@1.9.0)(@types/node@20.10.6)(encoding@0.1.13)(ioredis@5.4.1)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1)
+ vinxi: 0.3.11(@opentelemetry/api@1.9.0)(@types/node@20.14.10)(encoding@0.1.13)(ioredis@5.4.1)(less@4.2.0)(magicast@0.3.4)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)
- '@vinxi/server-functions@0.3.3(vinxi@0.3.11(@types/node@20.10.6)(ioredis@5.4.1)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1))':
+ '@vinxi/server-functions@0.3.3(vinxi@0.3.11(@types/node@20.14.10)(ioredis@5.4.1)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))':
dependencies:
- '@vinxi/plugin-directives': 0.3.1(vinxi@0.3.11(@types/node@20.10.6)(ioredis@5.4.1)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1))
- acorn: 8.12.0
+ '@vinxi/plugin-directives': 0.3.1(vinxi@0.3.11(@types/node@20.14.10)(ioredis@5.4.1)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))
+ acorn: 8.12.1
acorn-loose: 8.4.0
- acorn-typescript: 1.4.13(acorn@8.12.0)
+ acorn-typescript: 1.4.13(acorn@8.12.1)
astring: 1.8.6
magicast: 0.2.11
recast: 0.23.9
- vinxi: 0.3.11(@opentelemetry/api@1.9.0)(@types/node@20.10.6)(encoding@0.1.13)(ioredis@5.4.1)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1)
+ vinxi: 0.3.11(@opentelemetry/api@1.9.0)(@types/node@20.14.10)(encoding@0.1.13)(ioredis@5.4.1)(less@4.2.0)(magicast@0.3.4)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)
+
+ '@vitejs/plugin-basic-ssl@1.1.0(vite@5.1.5(@types/node@20.14.10)(less@4.2.0)(sass@1.71.1)(sugarss@4.0.1(postcss@8.4.35))(terser@5.29.1))':
+ dependencies:
+ vite: 5.1.5(@types/node@20.14.10)(less@4.2.0)(sass@1.71.1)(sugarss@4.0.1(postcss@8.4.35))(terser@5.29.1)
- '@vitejs/plugin-basic-ssl@1.1.0(vite@5.1.5(@types/node@20.10.6)(less@4.2.0)(sass@1.71.1)(sugarss@4.0.1(postcss@8.4.35))(terser@5.29.1))':
+ '@vitejs/plugin-basic-ssl@1.1.0(vite@5.1.5(@types/node@20.14.10)(less@4.2.0)(sass@1.71.1)(sugarss@4.0.1)(terser@5.29.1))':
dependencies:
- vite: 5.1.5(@types/node@20.10.6)(less@4.2.0)(sass@1.71.1)(sugarss@4.0.1(postcss@8.4.35))(terser@5.29.1)
+ vite: 5.1.5(@types/node@20.14.10)(less@4.2.0)(sass@1.71.1)(sugarss@4.0.1)(terser@5.29.1)
- '@vitejs/plugin-basic-ssl@1.1.0(vite@5.1.5(@types/node@20.10.6)(less@4.2.0)(sass@1.71.1)(sugarss@4.0.1)(terser@5.29.1))':
+ '@vitejs/plugin-basic-ssl@1.1.0(vite@5.2.11(@types/node@20.14.10)(less@4.2.0)(sass@1.77.2)(sugarss@4.0.1(postcss@8.4.38))(terser@5.29.2))':
dependencies:
- vite: 5.1.5(@types/node@20.10.6)(less@4.2.0)(sass@1.71.1)(sugarss@4.0.1)(terser@5.29.1)
+ vite: 5.2.11(@types/node@20.14.10)(less@4.2.0)(sass@1.77.2)(sugarss@4.0.1(postcss@8.4.38))(terser@5.29.2)
- '@vitejs/plugin-react-swc@3.6.0(@swc/helpers@0.5.11)(vite@5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1(postcss@8.4.32))(terser@5.29.1))':
+ '@vitejs/plugin-react-swc@3.6.0(@swc/helpers@0.5.11)(vite@5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1(postcss@8.4.32))(terser@5.31.1))':
dependencies:
'@swc/core': 1.4.6(@swc/helpers@0.5.11)
- vite: 5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1(postcss@8.4.32))(terser@5.29.1)
+ vite: 5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1(postcss@8.4.32))(terser@5.31.1)
transitivePeerDependencies:
- '@swc/helpers'
- '@vitejs/plugin-react@4.3.1(vite@5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1(postcss@8.4.32))(terser@5.29.1))':
+ '@vitejs/plugin-react@4.3.1(vite@5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1(postcss@8.4.32))(terser@5.31.1))':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/plugin-transform-react-jsx-self': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-react-jsx-source': 7.24.7(@babel/core@7.24.7)
+ '@types/babel__core': 7.20.5
+ react-refresh: 0.14.2
+ vite: 5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1(postcss@8.4.32))(terser@5.31.1)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@vitejs/plugin-react@4.3.1(vite@5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))':
dependencies:
'@babel/core': 7.24.7
'@babel/plugin-transform-react-jsx-self': 7.24.7(@babel/core@7.24.7)
'@babel/plugin-transform-react-jsx-source': 7.24.7(@babel/core@7.24.7)
'@types/babel__core': 7.20.5
react-refresh: 0.14.2
- vite: 5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1(postcss@8.4.32))(terser@5.29.1)
+ vite: 5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)
transitivePeerDependencies:
- supports-color
- '@vitejs/plugin-vue@5.0.4(vite@5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1))(vue@3.3.4)':
+ '@vitejs/plugin-vue@5.0.5(vite@5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))(vue@3.4.31(typescript@5.4.2))':
+ dependencies:
+ vite: 5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)
+ vue: 3.4.31(typescript@5.4.2)
+
+ '@vitejs/plugin-vue@5.0.5(vite@5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))(vue@3.4.31(typescript@5.5.3))':
dependencies:
- vite: 5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1(postcss@8.4.32))(terser@5.29.1)
- vue: 3.3.4
+ vite: 5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)
+ vue: 3.4.31(typescript@5.5.3)
- '@vitest/coverage-istanbul@1.3.1(vitest@1.3.1(@types/node@20.10.6)(jsdom@24.0.0)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1))':
+ '@vitest/coverage-istanbul@1.6.0(vitest@1.6.0(@types/node@20.14.10)(jsdom@24.0.0)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))':
dependencies:
- debug: 4.3.4
+ debug: 4.3.5
istanbul-lib-coverage: 3.2.2
- istanbul-lib-instrument: 6.0.1
+ istanbul-lib-instrument: 6.0.3
istanbul-lib-report: 3.0.1
- istanbul-lib-source-maps: 4.0.1
- istanbul-reports: 3.1.6
- magicast: 0.3.3
+ istanbul-lib-source-maps: 5.0.6
+ istanbul-reports: 3.1.7
+ magicast: 0.3.4
picocolors: 1.0.1
test-exclude: 6.0.0
- vitest: 1.3.1(@types/node@20.10.6)(jsdom@24.0.0)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1)
+ vitest: 1.6.0(@types/node@20.14.10)(jsdom@24.0.0)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)
transitivePeerDependencies:
- supports-color
- '@vitest/expect@1.3.1':
+ '@vitest/expect@1.6.0':
dependencies:
- '@vitest/spy': 1.3.1
- '@vitest/utils': 1.3.1
- chai: 4.3.10
+ '@vitest/spy': 1.6.0
+ '@vitest/utils': 1.6.0
+ chai: 4.4.1
- '@vitest/runner@1.3.1':
+ '@vitest/runner@1.6.0':
dependencies:
- '@vitest/utils': 1.3.1
+ '@vitest/utils': 1.6.0
p-limit: 5.0.0
- pathe: 1.1.1
+ pathe: 1.1.2
- '@vitest/snapshot@1.3.1':
+ '@vitest/snapshot@1.6.0':
dependencies:
- magic-string: 0.30.8
- pathe: 1.1.1
+ magic-string: 0.30.10
+ pathe: 1.1.2
pretty-format: 29.7.0
- '@vitest/spy@1.3.1':
+ '@vitest/spy@1.6.0':
dependencies:
- tinyspy: 2.2.0
+ tinyspy: 2.2.1
- '@vitest/utils@1.3.1':
+ '@vitest/utils@1.6.0':
dependencies:
diff-sequences: 29.6.3
estree-walker: 3.0.3
@@ -13440,137 +15262,118 @@ snapshots:
dependencies:
'@volar/source-map': 1.11.1
- '@volar/language-core@2.1.2':
+ '@volar/language-core@2.4.0-alpha.15':
dependencies:
- '@volar/source-map': 2.1.2
+ '@volar/source-map': 2.4.0-alpha.15
'@volar/source-map@1.11.1':
dependencies:
muggle-string: 0.3.1
- '@volar/source-map@2.1.2':
- dependencies:
- muggle-string: 0.4.1
+ '@volar/source-map@2.4.0-alpha.15': {}
'@volar/typescript@1.11.1':
dependencies:
'@volar/language-core': 1.11.1
path-browserify: 1.0.1
- '@volar/typescript@2.1.2':
+ '@volar/typescript@2.4.0-alpha.15':
dependencies:
- '@volar/language-core': 2.1.2
+ '@volar/language-core': 2.4.0-alpha.15
path-browserify: 1.0.1
+ vscode-uri: 3.0.8
- '@vue/compiler-core@3.3.4':
- dependencies:
- '@babel/parser': 7.24.7
- '@vue/shared': 3.3.4
- estree-walker: 2.0.2
- source-map-js: 1.2.0
-
- '@vue/compiler-core@3.4.21':
+ '@vue/compiler-core@3.4.31':
dependencies:
'@babel/parser': 7.24.7
- '@vue/shared': 3.4.21
+ '@vue/shared': 3.4.31
entities: 4.5.0
estree-walker: 2.0.2
source-map-js: 1.2.0
- '@vue/compiler-dom@3.3.4':
- dependencies:
- '@vue/compiler-core': 3.3.4
- '@vue/shared': 3.3.4
-
- '@vue/compiler-dom@3.4.21':
+ '@vue/compiler-dom@3.4.31':
dependencies:
- '@vue/compiler-core': 3.4.21
- '@vue/shared': 3.4.21
+ '@vue/compiler-core': 3.4.31
+ '@vue/shared': 3.4.31
- '@vue/compiler-sfc@3.3.4':
+ '@vue/compiler-sfc@3.4.31':
dependencies:
'@babel/parser': 7.24.7
- '@vue/compiler-core': 3.3.4
- '@vue/compiler-dom': 3.3.4
- '@vue/compiler-ssr': 3.3.4
- '@vue/reactivity-transform': 3.3.4
- '@vue/shared': 3.3.4
+ '@vue/compiler-core': 3.4.31
+ '@vue/compiler-dom': 3.4.31
+ '@vue/compiler-ssr': 3.4.31
+ '@vue/shared': 3.4.31
estree-walker: 2.0.2
- magic-string: 0.30.8
- postcss: 8.4.32
+ magic-string: 0.30.10
+ postcss: 8.4.39
source-map-js: 1.2.0
- '@vue/compiler-ssr@3.3.4':
+ '@vue/compiler-ssr@3.4.31':
dependencies:
- '@vue/compiler-dom': 3.3.4
- '@vue/shared': 3.3.4
+ '@vue/compiler-dom': 3.4.31
+ '@vue/shared': 3.4.31
'@vue/language-core@1.8.27(typescript@5.4.2)':
dependencies:
'@volar/language-core': 1.11.1
'@volar/source-map': 1.11.1
- '@vue/compiler-dom': 3.4.21
- '@vue/shared': 3.4.21
+ '@vue/compiler-dom': 3.4.31
+ '@vue/shared': 3.4.31
computeds: 0.0.1
- minimatch: 9.0.4
+ minimatch: 9.0.5
muggle-string: 0.3.1
path-browserify: 1.0.1
- vue-template-compiler: 2.7.14
+ vue-template-compiler: 2.7.16
optionalDependencies:
typescript: 5.4.2
- '@vue/language-core@2.0.6(typescript@5.4.2)':
+ '@vue/language-core@2.0.26(typescript@5.4.2)':
dependencies:
- '@volar/language-core': 2.1.2
- '@vue/compiler-dom': 3.4.21
- '@vue/shared': 3.4.21
+ '@volar/language-core': 2.4.0-alpha.15
+ '@vue/compiler-dom': 3.4.31
+ '@vue/shared': 3.4.31
computeds: 0.0.1
- minimatch: 9.0.4
+ minimatch: 9.0.5
+ muggle-string: 0.4.1
path-browserify: 1.0.1
- vue-template-compiler: 2.7.14
+ vue-template-compiler: 2.7.16
optionalDependencies:
typescript: 5.4.2
- '@vue/reactivity-transform@3.3.4':
+ '@vue/reactivity@3.4.31':
dependencies:
- '@babel/parser': 7.24.7
- '@vue/compiler-core': 3.3.4
- '@vue/shared': 3.3.4
- estree-walker: 2.0.2
- magic-string: 0.30.8
+ '@vue/shared': 3.4.31
- '@vue/reactivity@3.3.4':
+ '@vue/runtime-core@3.4.31':
dependencies:
- '@vue/shared': 3.3.4
+ '@vue/reactivity': 3.4.31
+ '@vue/shared': 3.4.31
- '@vue/runtime-core@3.3.4':
+ '@vue/runtime-dom@3.4.31':
dependencies:
- '@vue/reactivity': 3.3.4
- '@vue/shared': 3.3.4
+ '@vue/reactivity': 3.4.31
+ '@vue/runtime-core': 3.4.31
+ '@vue/shared': 3.4.31
+ csstype: 3.1.3
- '@vue/runtime-dom@3.3.4':
+ '@vue/server-renderer@3.4.31(vue@3.4.31(typescript@5.4.2))':
dependencies:
- '@vue/runtime-core': 3.3.4
- '@vue/shared': 3.3.4
- csstype: 3.1.2
+ '@vue/compiler-ssr': 3.4.31
+ '@vue/shared': 3.4.31
+ vue: 3.4.31(typescript@5.4.2)
- '@vue/server-renderer@3.3.4(vue@3.3.4)':
+ '@vue/server-renderer@3.4.31(vue@3.4.31(typescript@5.5.3))':
dependencies:
- '@vue/compiler-ssr': 3.3.4
- '@vue/shared': 3.3.4
- vue: 3.3.4
+ '@vue/compiler-ssr': 3.4.31
+ '@vue/shared': 3.4.31
+ vue: 3.4.31(typescript@5.5.3)
- '@vue/shared@3.3.4': {}
+ '@vue/shared@3.4.31': {}
- '@vue/shared@3.4.21': {}
-
- '@vue/test-utils@2.4.1(@vue/server-renderer@3.3.4(vue@3.3.4))(vue@3.3.4)':
+ '@vue/test-utils@2.4.6':
dependencies:
- js-beautify: 1.14.9
- vue: 3.3.4
- vue-component-type-helpers: 1.8.4
- optionalDependencies:
- '@vue/server-renderer': 3.3.4(vue@3.3.4)
+ js-beautify: 1.15.1
+ vue-component-type-helpers: 2.0.26
'@web3-storage/multipart-parser@1.0.0': {}
@@ -13659,7 +15462,7 @@ snapshots:
'@yarnpkg/parsers@3.0.0-rc.46':
dependencies:
js-yaml: 3.14.1
- tslib: 2.6.2
+ tslib: 2.6.3
'@yme/lay-postcss@0.1.0(postcss@8.4.32)':
dependencies:
@@ -13691,35 +15494,31 @@ snapshots:
mime-types: 2.1.35
negotiator: 0.6.3
- acorn-import-assertions@1.9.0(acorn@8.10.0):
- dependencies:
- acorn: 8.10.0
-
- acorn-import-attributes@1.9.5(acorn@8.12.0):
+ acorn-import-assertions@1.9.0(acorn@8.12.1):
dependencies:
- acorn: 8.12.0
+ acorn: 8.12.1
- acorn-jsx@5.3.2(acorn@8.10.0):
+ acorn-import-attributes@1.9.5(acorn@8.12.1):
dependencies:
- acorn: 8.10.0
+ acorn: 8.12.1
- acorn-jsx@5.3.2(acorn@8.12.0):
+ acorn-jsx@5.3.2(acorn@8.12.1):
dependencies:
- acorn: 8.12.0
+ acorn: 8.12.1
acorn-loose@8.4.0:
dependencies:
- acorn: 8.12.0
+ acorn: 8.12.1
- acorn-typescript@1.4.13(acorn@8.12.0):
+ acorn-typescript@1.4.13(acorn@8.12.1):
dependencies:
- acorn: 8.12.0
-
- acorn-walk@8.3.2: {}
+ acorn: 8.12.1
- acorn@8.10.0: {}
+ acorn-walk@8.3.3:
+ dependencies:
+ acorn: 8.12.1
- acorn@8.12.0: {}
+ acorn@8.12.1: {}
adjust-sourcemap-loader@4.0.0:
dependencies:
@@ -13734,7 +15533,7 @@ snapshots:
agent-base@7.1.0:
dependencies:
- debug: 4.3.4
+ debug: 4.3.5
transitivePeerDependencies:
- supports-color
@@ -13747,13 +15546,21 @@ snapshots:
optionalDependencies:
ajv: 8.12.0
+ ajv-formats@2.1.1(ajv@8.16.0):
+ optionalDependencies:
+ ajv: 8.16.0
+
+ ajv-formats@3.0.1(ajv@8.13.0):
+ optionalDependencies:
+ ajv: 8.13.0
+
ajv-keywords@3.5.2(ajv@6.12.6):
dependencies:
ajv: 6.12.6
- ajv-keywords@5.1.0(ajv@8.12.0):
+ ajv-keywords@5.1.0(ajv@8.16.0):
dependencies:
- ajv: 8.12.0
+ ajv: 8.16.0
fast-deep-equal: 3.1.3
ajv@6.12.6:
@@ -13770,6 +15577,20 @@ snapshots:
require-from-string: 2.0.2
uri-js: 4.4.1
+ ajv@8.13.0:
+ dependencies:
+ fast-deep-equal: 3.1.3
+ json-schema-traverse: 1.0.0
+ require-from-string: 2.0.2
+ uri-js: 4.4.1
+
+ ajv@8.16.0:
+ dependencies:
+ fast-deep-equal: 3.1.3
+ json-schema-traverse: 1.0.0
+ require-from-string: 2.0.2
+ uri-js: 4.4.1
+
ansi-align@3.0.1:
dependencies:
string-width: 4.2.3
@@ -13813,7 +15634,7 @@ snapshots:
archiver-utils@5.0.2:
dependencies:
- glob: 10.3.10
+ glob: 10.4.3
graceful-fs: 4.2.11
is-stream: 2.0.1
lazystream: 1.0.1
@@ -13844,7 +15665,7 @@ snapshots:
aria-hidden@1.2.3:
dependencies:
- tslib: 2.6.2
+ tslib: 2.6.3
aria-query@5.1.3:
dependencies:
@@ -13881,7 +15702,7 @@ snapshots:
ast-types@0.16.1:
dependencies:
- tslib: 2.6.2
+ tslib: 2.6.3
astring@1.8.6: {}
@@ -13898,21 +15719,31 @@ snapshots:
autoprefixer@10.4.18(postcss@8.4.35):
dependencies:
- browserslist: 4.23.0
- caniuse-lite: 1.0.30001599
+ browserslist: 4.23.1
+ caniuse-lite: 1.0.30001640
fraction.js: 4.3.7
normalize-range: 0.1.2
picocolors: 1.0.1
postcss: 8.4.35
postcss-value-parser: 4.2.0
+ autoprefixer@10.4.19(postcss@8.4.38):
+ dependencies:
+ browserslist: 4.23.1
+ caniuse-lite: 1.0.30001640
+ fraction.js: 4.3.7
+ normalize-range: 0.1.2
+ picocolors: 1.0.1
+ postcss: 8.4.38
+ postcss-value-parser: 4.2.0
+
available-typed-arrays@1.0.7:
dependencies:
possible-typed-array-names: 1.0.0
axios@1.6.3:
dependencies:
- follow-redirects: 1.15.2
+ follow-redirects: 1.15.2(debug@4.3.5)
form-data: 4.0.0
proxy-from-env: 1.1.0
transitivePeerDependencies:
@@ -13934,7 +15765,14 @@ snapshots:
'@babel/core': 7.24.0
find-cache-dir: 4.0.0
schema-utils: 4.2.0
- webpack: 5.90.3(@swc/core@1.4.6)(esbuild@0.20.2)
+ webpack: 5.90.3(@swc/core@1.4.6)(esbuild@0.23.0)
+
+ babel-loader@9.1.3(@babel/core@7.24.5)(webpack@5.91.0(@swc/core@1.4.6)(esbuild@0.21.3)):
+ dependencies:
+ '@babel/core': 7.24.5
+ find-cache-dir: 4.0.0
+ schema-utils: 4.2.0
+ webpack: 5.91.0(@swc/core@1.4.6)(esbuild@0.23.0)
babel-plugin-add-module-exports@0.2.1: {}
@@ -13952,31 +15790,48 @@ snapshots:
dependencies:
'@babel/core': 7.24.7
'@babel/helper-module-imports': 7.18.6
- '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.24.7)
+ '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.24.7)
'@babel/types': 7.24.7
html-entities: 2.3.3
validate-html-nesting: 1.2.2
babel-plugin-macros@3.1.0:
dependencies:
- '@babel/runtime': 7.24.0
+ '@babel/runtime': 7.24.7
cosmiconfig: 7.1.0
resolve: 1.22.8
- babel-plugin-polyfill-corejs2@0.4.10(@babel/core@7.24.0):
+ babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.24.0):
dependencies:
'@babel/compat-data': 7.24.7
'@babel/core': 7.24.0
- '@babel/helper-define-polyfill-provider': 0.6.1(@babel/core@7.24.0)
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.0)
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+
+ babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.24.5):
+ dependencies:
+ '@babel/compat-data': 7.24.7
+ '@babel/core': 7.24.5
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.5)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
+ babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.24.5):
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.5)
+ core-js-compat: 3.37.1
+ transitivePeerDependencies:
+ - supports-color
+
babel-plugin-polyfill-corejs3@0.9.0(@babel/core@7.24.0):
dependencies:
'@babel/core': 7.24.0
'@babel/helper-define-polyfill-provider': 0.5.0(@babel/core@7.24.0)
- core-js-compat: 3.36.0
+ core-js-compat: 3.37.1
transitivePeerDependencies:
- supports-color
@@ -13987,6 +15842,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.24.5):
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.5)
+ transitivePeerDependencies:
+ - supports-color
+
babel-preset-solid@1.8.6(@babel/core@7.24.7):
dependencies:
'@babel/core': 7.24.7
@@ -14061,16 +15923,16 @@ snapshots:
dependencies:
balanced-match: 1.0.2
- braces@3.0.2:
+ braces@3.0.3:
dependencies:
- fill-range: 7.0.1
+ fill-range: 7.1.1
- browserslist@4.23.0:
+ browserslist@4.23.1:
dependencies:
- caniuse-lite: 1.0.30001599
- electron-to-chromium: 1.4.708
+ caniuse-lite: 1.0.30001640
+ electron-to-chromium: 1.4.818
node-releases: 2.0.14
- update-browserslist-db: 1.0.13(browserslist@4.23.0)
+ update-browserslist-db: 1.1.0(browserslist@4.23.1)
buffer-crc32@1.0.0: {}
@@ -14092,6 +15954,10 @@ snapshots:
dependencies:
semver: 7.6.2
+ bundle-name@4.1.0:
+ dependencies:
+ run-applescript: 7.0.0
+
busboy@1.6.0:
dependencies:
streamsearch: 1.1.0
@@ -14100,7 +15966,7 @@ snapshots:
bytes@3.1.2: {}
- c12@1.11.1:
+ c12@1.11.1(magicast@0.3.4):
dependencies:
chokidar: 3.6.0
confbox: 0.1.7
@@ -14112,24 +15978,26 @@ snapshots:
ohash: 1.1.3
pathe: 1.1.2
perfect-debounce: 1.0.0
- pkg-types: 1.1.1
+ pkg-types: 1.1.3
rc9: 2.1.2
+ optionalDependencies:
+ magicast: 0.3.4
cac@6.7.14: {}
- cacache@18.0.2:
+ cacache@18.0.3:
dependencies:
- '@npmcli/fs': 3.1.0
+ '@npmcli/fs': 3.1.1
fs-minipass: 3.0.3
- glob: 10.3.10
- lru-cache: 10.2.0
- minipass: 7.0.3
+ glob: 10.4.3
+ lru-cache: 10.3.1
+ minipass: 7.1.2
minipass-collect: 2.0.1
minipass-flush: 1.0.5
minipass-pipeline: 1.2.4
p-map: 4.0.0
- ssri: 10.0.5
- tar: 6.2.0
+ ssri: 10.0.6
+ tar: 6.2.1
unique-filename: 3.0.0
call-bind@1.0.7:
@@ -14155,13 +16023,13 @@ snapshots:
camelcase@7.0.1: {}
- caniuse-lite@1.0.30001599: {}
+ caniuse-lite@1.0.30001640: {}
- chai@4.3.10:
+ chai@4.4.1:
dependencies:
assertion-error: 1.1.0
check-error: 1.0.3
- deep-eql: 4.1.3
+ deep-eql: 4.1.4
get-func-name: 2.0.2
loupe: 2.3.7
pathval: 1.1.1
@@ -14194,7 +16062,7 @@ snapshots:
chokidar@3.6.0:
dependencies:
anymatch: 3.1.3
- braces: 3.0.2
+ braces: 3.0.3
glob-parent: 5.1.2
is-binary-path: 2.1.0
is-glob: 4.0.3
@@ -14205,7 +16073,7 @@ snapshots:
chownr@2.0.0: {}
- chrome-trace-event@1.0.3: {}
+ chrome-trace-event@1.0.4: {}
ci-info@4.0.0: {}
@@ -14385,8 +16253,6 @@ snapshots:
cookie-signature@1.2.1: {}
- cookie@0.5.0: {}
-
cookie@0.6.0: {}
copy-anything@2.0.6:
@@ -14401,15 +16267,21 @@ snapshots:
normalize-path: 3.0.0
schema-utils: 4.2.0
serialize-javascript: 6.0.2
- webpack: 5.90.3(@swc/core@1.4.6)(esbuild@0.20.2)
+ webpack: 5.90.3(@swc/core@1.4.6)(esbuild@0.23.0)
- core-js-compat@3.36.0:
+ copy-webpack-plugin@11.0.0(webpack@5.91.0(@swc/core@1.4.6)(esbuild@0.21.3)):
dependencies:
- browserslist: 4.23.0
+ fast-glob: 3.3.2
+ glob-parent: 6.0.2
+ globby: 13.2.2
+ normalize-path: 3.0.0
+ schema-utils: 4.2.0
+ serialize-javascript: 6.0.2
+ webpack: 5.91.0(@swc/core@1.4.6)(esbuild@0.23.0)
core-js-compat@3.37.1:
dependencies:
- browserslist: 4.23.0
+ browserslist: 4.23.1
core-util-is@1.0.3: {}
@@ -14465,16 +16337,29 @@ snapshots:
css-loader@6.10.0(webpack@5.90.3(@swc/core@1.4.6)(esbuild@0.20.1)):
dependencies:
- icss-utils: 5.1.0(postcss@8.4.38)
- postcss: 8.4.38
- postcss-modules-extract-imports: 3.0.0(postcss@8.4.38)
- postcss-modules-local-by-default: 4.0.4(postcss@8.4.38)
- postcss-modules-scope: 3.1.1(postcss@8.4.38)
- postcss-modules-values: 4.0.0(postcss@8.4.38)
+ icss-utils: 5.1.0(postcss@8.4.39)
+ postcss: 8.4.39
+ postcss-modules-extract-imports: 3.1.0(postcss@8.4.39)
+ postcss-modules-local-by-default: 4.0.5(postcss@8.4.39)
+ postcss-modules-scope: 3.2.0(postcss@8.4.39)
+ postcss-modules-values: 4.0.0(postcss@8.4.39)
postcss-value-parser: 4.2.0
semver: 7.6.2
optionalDependencies:
- webpack: 5.90.3(@swc/core@1.4.6)(esbuild@0.20.2)
+ webpack: 5.90.3(@swc/core@1.4.6)(esbuild@0.23.0)
+
+ css-loader@7.1.1(webpack@5.91.0(@swc/core@1.4.6)(esbuild@0.21.3)):
+ dependencies:
+ icss-utils: 5.1.0(postcss@8.4.39)
+ postcss: 8.4.39
+ postcss-modules-extract-imports: 3.1.0(postcss@8.4.39)
+ postcss-modules-local-by-default: 4.0.5(postcss@8.4.39)
+ postcss-modules-scope: 3.2.0(postcss@8.4.39)
+ postcss-modules-values: 4.0.0(postcss@8.4.39)
+ postcss-value-parser: 4.2.0
+ semver: 7.6.2
+ optionalDependencies:
+ webpack: 5.91.0(@swc/core@1.4.6)(esbuild@0.23.0)
css-select@5.1.0:
dependencies:
@@ -14494,7 +16379,7 @@ snapshots:
dependencies:
rrweb-cssom: 0.6.0
- csstype@3.1.2: {}
+ csstype@3.1.3: {}
current-git-branch@1.1.0:
dependencies:
@@ -14526,10 +16411,6 @@ snapshots:
dependencies:
ms: 2.1.3
- debug@4.3.4:
- dependencies:
- ms: 2.1.2
-
debug@4.3.5:
dependencies:
ms: 2.1.2
@@ -14547,7 +16428,7 @@ snapshots:
decode-formdata@0.7.5: {}
- deep-eql@4.1.3:
+ deep-eql@4.1.4:
dependencies:
type-detect: 4.0.8
@@ -14578,6 +16459,13 @@ snapshots:
deepmerge@4.3.1: {}
+ default-browser-id@5.0.0: {}
+
+ default-browser@5.2.1:
+ dependencies:
+ bundle-name: 4.1.0
+ default-browser-id: 5.0.0
+
default-gateway@6.0.3:
dependencies:
execa: 5.1.1
@@ -14594,6 +16482,8 @@ snapshots:
define-lazy-prop@2.0.0: {}
+ define-lazy-prop@3.0.0: {}
+
define-properties@1.2.1:
dependencies:
define-data-property: 1.1.4
@@ -14652,8 +16542,8 @@ snapshots:
dom-helpers@5.2.1:
dependencies:
- '@babel/runtime': 7.24.0
- csstype: 3.1.2
+ '@babel/runtime': 7.24.7
+ csstype: 3.1.3
dom-serializer@2.0.0:
dependencies:
@@ -14706,7 +16596,7 @@ snapshots:
ee-first@1.1.1: {}
- electron-to-chromium@1.4.708: {}
+ electron-to-chromium@1.4.818: {}
emoji-regex@8.0.0: {}
@@ -14725,7 +16615,7 @@ snapshots:
dependencies:
once: 1.4.0
- enhanced-resolve@5.15.0:
+ enhanced-resolve@5.17.0:
dependencies:
graceful-fs: 4.2.11
tapable: 2.2.1
@@ -14767,12 +16657,12 @@ snapshots:
isarray: 2.0.5
stop-iteration-iterator: 1.0.0
- es-module-lexer@1.4.1: {}
+ es-module-lexer@1.5.4: {}
- esbuild-register@3.5.0(esbuild@0.20.2):
+ esbuild-register@3.5.0(esbuild@0.23.0):
dependencies:
debug: 4.3.5
- esbuild: 0.20.2
+ esbuild: 0.23.0
transitivePeerDependencies:
- supports-color
@@ -14780,6 +16670,8 @@ snapshots:
esbuild-wasm@0.20.2: {}
+ esbuild-wasm@0.21.3: {}
+
esbuild@0.18.20:
optionalDependencies:
'@esbuild/android-arm': 0.18.20
@@ -14884,7 +16776,86 @@ snapshots:
'@esbuild/win32-ia32': 0.20.2
'@esbuild/win32-x64': 0.20.2
- escalade@3.1.1: {}
+ esbuild@0.21.3:
+ optionalDependencies:
+ '@esbuild/aix-ppc64': 0.21.3
+ '@esbuild/android-arm': 0.21.3
+ '@esbuild/android-arm64': 0.21.3
+ '@esbuild/android-x64': 0.21.3
+ '@esbuild/darwin-arm64': 0.21.3
+ '@esbuild/darwin-x64': 0.21.3
+ '@esbuild/freebsd-arm64': 0.21.3
+ '@esbuild/freebsd-x64': 0.21.3
+ '@esbuild/linux-arm': 0.21.3
+ '@esbuild/linux-arm64': 0.21.3
+ '@esbuild/linux-ia32': 0.21.3
+ '@esbuild/linux-loong64': 0.21.3
+ '@esbuild/linux-mips64el': 0.21.3
+ '@esbuild/linux-ppc64': 0.21.3
+ '@esbuild/linux-riscv64': 0.21.3
+ '@esbuild/linux-s390x': 0.21.3
+ '@esbuild/linux-x64': 0.21.3
+ '@esbuild/netbsd-x64': 0.21.3
+ '@esbuild/openbsd-x64': 0.21.3
+ '@esbuild/sunos-x64': 0.21.3
+ '@esbuild/win32-arm64': 0.21.3
+ '@esbuild/win32-ia32': 0.21.3
+ '@esbuild/win32-x64': 0.21.3
+
+ esbuild@0.21.5:
+ optionalDependencies:
+ '@esbuild/aix-ppc64': 0.21.5
+ '@esbuild/android-arm': 0.21.5
+ '@esbuild/android-arm64': 0.21.5
+ '@esbuild/android-x64': 0.21.5
+ '@esbuild/darwin-arm64': 0.21.5
+ '@esbuild/darwin-x64': 0.21.5
+ '@esbuild/freebsd-arm64': 0.21.5
+ '@esbuild/freebsd-x64': 0.21.5
+ '@esbuild/linux-arm': 0.21.5
+ '@esbuild/linux-arm64': 0.21.5
+ '@esbuild/linux-ia32': 0.21.5
+ '@esbuild/linux-loong64': 0.21.5
+ '@esbuild/linux-mips64el': 0.21.5
+ '@esbuild/linux-ppc64': 0.21.5
+ '@esbuild/linux-riscv64': 0.21.5
+ '@esbuild/linux-s390x': 0.21.5
+ '@esbuild/linux-x64': 0.21.5
+ '@esbuild/netbsd-x64': 0.21.5
+ '@esbuild/openbsd-x64': 0.21.5
+ '@esbuild/sunos-x64': 0.21.5
+ '@esbuild/win32-arm64': 0.21.5
+ '@esbuild/win32-ia32': 0.21.5
+ '@esbuild/win32-x64': 0.21.5
+
+ esbuild@0.23.0:
+ optionalDependencies:
+ '@esbuild/aix-ppc64': 0.23.0
+ '@esbuild/android-arm': 0.23.0
+ '@esbuild/android-arm64': 0.23.0
+ '@esbuild/android-x64': 0.23.0
+ '@esbuild/darwin-arm64': 0.23.0
+ '@esbuild/darwin-x64': 0.23.0
+ '@esbuild/freebsd-arm64': 0.23.0
+ '@esbuild/freebsd-x64': 0.23.0
+ '@esbuild/linux-arm': 0.23.0
+ '@esbuild/linux-arm64': 0.23.0
+ '@esbuild/linux-ia32': 0.23.0
+ '@esbuild/linux-loong64': 0.23.0
+ '@esbuild/linux-mips64el': 0.23.0
+ '@esbuild/linux-ppc64': 0.23.0
+ '@esbuild/linux-riscv64': 0.23.0
+ '@esbuild/linux-s390x': 0.23.0
+ '@esbuild/linux-x64': 0.23.0
+ '@esbuild/netbsd-x64': 0.23.0
+ '@esbuild/openbsd-arm64': 0.23.0
+ '@esbuild/openbsd-x64': 0.23.0
+ '@esbuild/sunos-x64': 0.23.0
+ '@esbuild/win32-arm64': 0.23.0
+ '@esbuild/win32-ia32': 0.23.0
+ '@esbuild/win32-x64': 0.23.0
+
+ escalade@3.1.2: {}
escape-html@1.0.3: {}
@@ -14915,9 +16886,9 @@ snapshots:
eslint-import-resolver-node: 0.3.9
get-tsconfig: 4.7.5
is-glob: 4.0.3
- minimatch: 9.0.4
+ minimatch: 9.0.5
semver: 7.6.2
- tslib: 2.6.2
+ tslib: 2.6.3
transitivePeerDependencies:
- supports-color
- typescript
@@ -14931,10 +16902,10 @@ snapshots:
'@eslint-react/tools': 1.5.16
'@eslint-react/types': 1.5.16(eslint@8.57.0)(typescript@5.4.2)
'@eslint-react/var': 1.5.16(eslint@8.57.0)(typescript@5.4.2)
- '@typescript-eslint/scope-manager': 7.13.1
- '@typescript-eslint/type-utils': 7.13.1(eslint@8.57.0)(typescript@5.4.2)
- '@typescript-eslint/types': 7.13.1
- '@typescript-eslint/utils': 7.13.1(eslint@8.57.0)(typescript@5.4.2)
+ '@typescript-eslint/scope-manager': 7.14.1
+ '@typescript-eslint/type-utils': 7.14.1(eslint@8.57.0)(typescript@5.4.2)
+ '@typescript-eslint/types': 7.14.1
+ '@typescript-eslint/utils': 7.14.1(eslint@8.57.0)(typescript@5.4.2)
eslint: 8.57.0
string-ts: 2.1.1
ts-api-utils: 1.3.0(typescript@5.4.2)
@@ -14953,9 +16924,9 @@ snapshots:
'@eslint-react/tools': 1.5.16
'@eslint-react/types': 1.5.16(eslint@8.57.0)(typescript@5.4.2)
'@eslint-react/var': 1.5.16(eslint@8.57.0)(typescript@5.4.2)
- '@typescript-eslint/scope-manager': 7.13.1
- '@typescript-eslint/types': 7.13.1
- '@typescript-eslint/utils': 7.13.1(eslint@8.57.0)(typescript@5.4.2)
+ '@typescript-eslint/scope-manager': 7.14.1
+ '@typescript-eslint/types': 7.14.1
+ '@typescript-eslint/utils': 7.14.1(eslint@8.57.0)(typescript@5.4.2)
eslint: 8.57.0
string-ts: 2.1.1
valibot: 0.32.0
@@ -14973,10 +16944,10 @@ snapshots:
'@eslint-react/tools': 1.5.16
'@eslint-react/types': 1.5.16(eslint@8.57.0)(typescript@5.4.2)
'@eslint-react/var': 1.5.16(eslint@8.57.0)(typescript@5.4.2)
- '@typescript-eslint/scope-manager': 7.13.1
- '@typescript-eslint/type-utils': 7.13.1(eslint@8.57.0)(typescript@5.4.2)
- '@typescript-eslint/types': 7.13.1
- '@typescript-eslint/utils': 7.13.1(eslint@8.57.0)(typescript@5.4.2)
+ '@typescript-eslint/scope-manager': 7.14.1
+ '@typescript-eslint/type-utils': 7.14.1(eslint@8.57.0)(typescript@5.4.2)
+ '@typescript-eslint/types': 7.14.1
+ '@typescript-eslint/utils': 7.14.1(eslint@8.57.0)(typescript@5.4.2)
eslint: 8.57.0
string-ts: 2.1.1
valibot: 0.32.0
@@ -14997,10 +16968,10 @@ snapshots:
'@eslint-react/shared': 1.5.16(eslint@8.57.0)(typescript@5.4.2)
'@eslint-react/tools': 1.5.16
'@eslint-react/types': 1.5.16(eslint@8.57.0)(typescript@5.4.2)
- '@typescript-eslint/scope-manager': 7.13.1
- '@typescript-eslint/type-utils': 7.13.1(eslint@8.57.0)(typescript@5.4.2)
- '@typescript-eslint/types': 7.13.1
- '@typescript-eslint/utils': 7.13.1(eslint@8.57.0)(typescript@5.4.2)
+ '@typescript-eslint/scope-manager': 7.14.1
+ '@typescript-eslint/type-utils': 7.14.1(eslint@8.57.0)(typescript@5.4.2)
+ '@typescript-eslint/types': 7.14.1
+ '@typescript-eslint/utils': 7.14.1(eslint@8.57.0)(typescript@5.4.2)
eslint: 8.57.0
string-ts: 2.1.1
valibot: 0.32.0
@@ -15062,7 +17033,7 @@ snapshots:
ajv: 6.12.6
chalk: 4.1.2
cross-spawn: 7.0.3
- debug: 4.3.4
+ debug: 4.3.5
doctrine: 3.0.0
escape-string-regexp: 4.0.0
eslint-scope: 7.2.2
@@ -15094,14 +17065,14 @@ snapshots:
espree@10.1.0:
dependencies:
- acorn: 8.12.0
- acorn-jsx: 5.3.2(acorn@8.12.0)
+ acorn: 8.12.1
+ acorn-jsx: 5.3.2(acorn@8.12.1)
eslint-visitor-keys: 4.0.0
espree@9.6.1:
dependencies:
- acorn: 8.10.0
- acorn-jsx: 5.3.2(acorn@8.10.0)
+ acorn: 8.12.1
+ acorn-jsx: 5.3.2(acorn@8.12.1)
eslint-visitor-keys: 3.4.3
esprima@4.0.1: {}
@@ -15163,7 +17134,7 @@ snapshots:
human-signals: 5.0.0
is-stream: 3.0.0
merge-stream: 2.0.0
- npm-run-path: 5.2.0
+ npm-run-path: 5.3.0
onetime: 6.0.0
signal-exit: 4.1.0
strip-final-newline: 3.0.0
@@ -15174,14 +17145,14 @@ snapshots:
exponential-backoff@3.1.1: {}
- express@4.18.3:
+ express@4.19.2:
dependencies:
accepts: 1.3.8
array-flatten: 1.1.1
body-parser: 1.20.2
content-disposition: 0.5.4
content-type: 1.0.5
- cookie: 0.5.0
+ cookie: 0.6.0
cookie-signature: 1.0.6
debug: 2.6.9
depd: 2.0.0
@@ -15228,7 +17199,7 @@ snapshots:
'@nodelib/fs.walk': 1.2.8
glob-parent: 5.1.2
merge2: 1.4.1
- micromatch: 4.0.5
+ micromatch: 4.0.7
fast-ignore@1.1.1:
dependencies:
@@ -15256,7 +17227,7 @@ snapshots:
file-uri-to-path@1.0.0: {}
- fill-range@7.0.1:
+ fill-range@7.1.1:
dependencies:
to-regex-range: 5.0.1
@@ -15308,7 +17279,7 @@ snapshots:
dependencies:
detect-file: 1.0.0
is-glob: 4.0.3
- micromatch: 4.0.5
+ micromatch: 4.0.7
resolve-dir: 1.0.1
fined@2.0.0:
@@ -15331,7 +17302,9 @@ snapshots:
flatted@3.2.7: {}
- follow-redirects@1.15.2: {}
+ follow-redirects@1.15.2(debug@4.3.5):
+ optionalDependencies:
+ debug: 4.3.5
for-each@0.3.3:
dependencies:
@@ -15343,7 +17316,7 @@ snapshots:
dependencies:
for-in: 1.0.2
- foreground-child@3.1.1:
+ foreground-child@3.2.1:
dependencies:
cross-spawn: 7.0.3
signal-exit: 4.1.0
@@ -15366,12 +17339,6 @@ snapshots:
fs-constants@1.0.0: {}
- fs-extra@11.1.1:
- dependencies:
- graceful-fs: 4.2.11
- jsonfile: 6.1.0
- universalify: 2.0.0
-
fs-extra@11.2.0:
dependencies:
graceful-fs: 4.2.11
@@ -15390,7 +17357,7 @@ snapshots:
fs-minipass@3.0.3:
dependencies:
- minipass: 7.0.3
+ minipass: 7.1.2
fs-monkey@1.0.5: {}
@@ -15458,7 +17425,7 @@ snapshots:
nypm: 0.3.9
ohash: 1.1.3
pathe: 1.1.2
- tar: 6.2.0
+ tar: 6.2.1
glob-parent@5.1.2:
dependencies:
@@ -15470,13 +17437,14 @@ snapshots:
glob-to-regexp@0.4.1: {}
- glob@10.3.10:
+ glob@10.4.3:
dependencies:
- foreground-child: 3.1.1
- jackspeak: 2.3.6
- minimatch: 9.0.4
- minipass: 7.0.3
- path-scurry: 1.10.1
+ foreground-child: 3.2.1
+ jackspeak: 3.4.1
+ minimatch: 9.0.5
+ minipass: 7.1.2
+ package-json-from-dist: 1.0.0
+ path-scurry: 1.11.1
glob@7.2.3:
dependencies:
@@ -15645,7 +17613,7 @@ snapshots:
hosted-git-info@7.0.1:
dependencies:
- lru-cache: 10.2.0
+ lru-cache: 10.3.1
hpack.js@2.1.6:
dependencies:
@@ -15660,6 +17628,8 @@ snapshots:
html-entities@2.3.3: {}
+ html-entities@2.5.2: {}
+
html-escaper@2.0.2: {}
htmlparser2@8.0.2:
@@ -15693,26 +17663,37 @@ snapshots:
http-proxy-agent@7.0.0:
dependencies:
agent-base: 7.1.0
- debug: 4.3.4
+ debug: 4.3.5
transitivePeerDependencies:
- supports-color
http-proxy-middleware@2.0.6(@types/express@4.17.21):
dependencies:
'@types/http-proxy': 1.17.14
- http-proxy: 1.18.1
+ http-proxy: 1.18.1(debug@4.3.5)
is-glob: 4.0.3
is-plain-obj: 3.0.0
- micromatch: 4.0.5
+ micromatch: 4.0.7
optionalDependencies:
'@types/express': 4.17.21
transitivePeerDependencies:
- debug
- http-proxy@1.18.1:
+ http-proxy-middleware@3.0.0:
+ dependencies:
+ '@types/http-proxy': 1.17.14
+ debug: 4.3.5
+ http-proxy: 1.18.1(debug@4.3.5)
+ is-glob: 4.0.3
+ is-plain-obj: 3.0.0
+ micromatch: 4.0.7
+ transitivePeerDependencies:
+ - supports-color
+
+ http-proxy@1.18.1(debug@4.3.5):
dependencies:
eventemitter3: 4.0.7
- follow-redirects: 1.15.2
+ follow-redirects: 1.15.2(debug@4.3.5)
requires-port: 1.0.0
transitivePeerDependencies:
- debug
@@ -15729,7 +17710,7 @@ snapshots:
https-proxy-agent@7.0.4:
dependencies:
agent-base: 7.1.0
- debug: 4.3.4
+ debug: 4.3.5
transitivePeerDependencies:
- supports-color
@@ -15739,6 +17720,8 @@ snapshots:
human-signals@5.0.0: {}
+ hyperdyperid@1.2.0: {}
+
iconv-lite@0.4.24:
dependencies:
safer-buffer: 2.1.2
@@ -15747,9 +17730,9 @@ snapshots:
dependencies:
safer-buffer: 2.1.2
- icss-utils@5.1.0(postcss@8.4.38):
+ icss-utils@5.1.0(postcss@8.4.39):
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.39
identity-function@1.0.0: {}
@@ -15761,14 +17744,14 @@ snapshots:
ignore-walk@6.0.4:
dependencies:
- minimatch: 9.0.4
+ minimatch: 9.0.5
ignore@5.3.1: {}
image-size@0.5.5:
optional: true
- immutable@4.3.5: {}
+ immutable@4.3.6: {}
import-fresh@3.3.0:
dependencies:
@@ -15777,8 +17760,8 @@ snapshots:
import-in-the-middle@1.8.1:
dependencies:
- acorn: 8.12.0
- acorn-import-attributes: 1.9.5(acorn@8.12.0)
+ acorn: 8.12.1
+ acorn-import-attributes: 1.9.5(acorn@8.12.1)
cjs-module-lexer: 1.3.1
module-details-from-path: 1.0.3
@@ -15809,7 +17792,7 @@ snapshots:
injection-js@2.4.0:
dependencies:
- tslib: 2.6.2
+ tslib: 2.6.3
inquirer@9.2.15:
dependencies:
@@ -15829,6 +17812,24 @@ snapshots:
strip-ansi: 6.0.1
wrap-ansi: 6.2.0
+ inquirer@9.2.22:
+ dependencies:
+ '@inquirer/figures': 1.0.3
+ '@ljharb/through': 2.3.13
+ ansi-escapes: 4.3.2
+ chalk: 5.3.0
+ cli-cursor: 3.1.0
+ cli-width: 4.1.0
+ external-editor: 3.1.0
+ lodash: 4.17.21
+ mute-stream: 1.0.0
+ ora: 5.4.1
+ run-async: 3.0.0
+ rxjs: 7.8.1
+ string-width: 4.2.3
+ strip-ansi: 6.0.1
+ wrap-ansi: 6.2.0
+
internal-slot@1.0.7:
dependencies:
es-errors: 1.3.0
@@ -15864,7 +17865,7 @@ snapshots:
ipaddr.js@1.9.1: {}
- ipaddr.js@2.1.0: {}
+ ipaddr.js@2.2.0: {}
iron-webcrypto@1.2.1: {}
@@ -15950,6 +17951,8 @@ snapshots:
is-module@1.0.0: {}
+ is-network-error@1.1.0: {}
+
is-number-object@1.0.7:
dependencies:
has-tostringtag: 1.0.2
@@ -16070,7 +18073,17 @@ snapshots:
transitivePeerDependencies:
- supports-color
- istanbul-lib-instrument@6.0.1:
+ istanbul-lib-instrument@6.0.2:
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/parser': 7.24.7
+ '@istanbuljs/schema': 0.1.3
+ istanbul-lib-coverage: 3.2.2
+ semver: 7.6.2
+ transitivePeerDependencies:
+ - supports-color
+
+ istanbul-lib-instrument@6.0.3:
dependencies:
'@babel/core': 7.24.7
'@babel/parser': 7.24.7
@@ -16086,22 +18099,22 @@ snapshots:
make-dir: 4.0.0
supports-color: 7.2.0
- istanbul-lib-source-maps@4.0.1:
+ istanbul-lib-source-maps@5.0.6:
dependencies:
- debug: 4.3.4
+ '@jridgewell/trace-mapping': 0.3.25
+ debug: 4.3.5
istanbul-lib-coverage: 3.2.2
- source-map: 0.6.1
transitivePeerDependencies:
- supports-color
- istanbul-reports@3.1.6:
+ istanbul-reports@3.1.7:
dependencies:
html-escaper: 2.0.2
istanbul-lib-report: 3.0.1
iterable-lookahead@1.0.0: {}
- jackspeak@2.3.6:
+ jackspeak@3.4.1:
dependencies:
'@isaacs/cliui': 8.0.2
optionalDependencies:
@@ -16118,26 +18131,25 @@ snapshots:
jest-worker@27.5.1:
dependencies:
- '@types/node': 20.10.6
+ '@types/node': 20.14.10
merge-stream: 2.0.0
supports-color: 8.1.1
- jiti@1.21.0: {}
-
jiti@1.21.6: {}
jju@1.4.0: {}
- js-beautify@1.14.9:
+ js-beautify@1.15.1:
dependencies:
config-chain: 1.1.13
editorconfig: 1.0.4
- glob: 8.1.0
- nopt: 6.0.0
+ glob: 10.4.3
+ js-cookie: 3.0.5
+ nopt: 7.2.1
- js-tokens@4.0.0: {}
+ js-cookie@3.0.5: {}
- js-tokens@8.0.3: {}
+ js-tokens@4.0.0: {}
js-tokens@9.0.0: {}
@@ -16173,7 +18185,7 @@ snapshots:
whatwg-encoding: 3.1.1
whatwg-mimetype: 4.0.0
whatwg-url: 14.0.0
- ws: 8.16.0
+ ws: 8.18.0
xml-name-validator: 5.0.0
transitivePeerDependencies:
- bufferutil
@@ -16206,6 +18218,8 @@ snapshots:
jsonc-parser@3.2.1: {}
+ jsonc-parser@3.3.1: {}
+
jsonfile@4.0.0:
optionalDependencies:
graceful-fs: 4.2.11
@@ -16232,19 +18246,19 @@ snapshots:
klona@2.0.6: {}
- knip@5.22.0(@types/node@20.10.6)(typescript@5.4.2):
+ knip@5.22.0(@types/node@20.14.10)(typescript@5.4.2):
dependencies:
'@ericcornelissen/bash-parser': 0.5.3
'@nodelib/fs.walk': 2.0.0
'@snyk/github-codeowners': 1.1.0
- '@types/node': 20.10.6
+ '@types/node': 20.14.10
easy-table: 1.2.0
fast-glob: 3.3.2
- jiti: 1.21.0
+ jiti: 1.21.6
js-yaml: 4.1.0
minimist: 1.2.8
picocolors: 1.0.1
- picomatch: 4.0.1
+ picomatch: 4.0.2
pretty-ms: 9.0.0
resolve: 1.22.8
smol-toml: 1.1.4
@@ -16259,7 +18273,7 @@ snapshots:
kolorist@1.8.0: {}
- launch-editor@2.6.1:
+ launch-editor@2.8.0:
dependencies:
picocolors: 1.0.1
shell-quote: 1.8.1
@@ -16272,13 +18286,19 @@ snapshots:
dependencies:
klona: 2.0.6
less: 4.2.0
- webpack: 5.90.3(@swc/core@1.4.6)(esbuild@0.20.2)
+ webpack: 5.90.3(@swc/core@1.4.6)(esbuild@0.23.0)
+
+ less-loader@12.2.0(less@4.2.0)(webpack@5.91.0(@swc/core@1.4.6)(esbuild@0.21.3)):
+ dependencies:
+ less: 4.2.0
+ optionalDependencies:
+ webpack: 5.91.0(@swc/core@1.4.6)(esbuild@0.23.0)
less@4.2.0:
dependencies:
copy-anything: 2.0.6
parse-node-version: 1.0.1
- tslib: 2.6.2
+ tslib: 2.6.3
optionalDependencies:
errno: 0.1.8
graceful-fs: 4.2.11
@@ -16297,7 +18317,13 @@ snapshots:
dependencies:
webpack-sources: 3.2.3
optionalDependencies:
- webpack: 5.90.3(@swc/core@1.4.6)(esbuild@0.20.2)
+ webpack: 5.90.3(@swc/core@1.4.6)(esbuild@0.23.0)
+
+ license-webpack-plugin@4.0.2(webpack@5.91.0(@swc/core@1.4.6)(esbuild@0.21.3)):
+ dependencies:
+ webpack-sources: 3.2.3
+ optionalDependencies:
+ webpack: 5.91.0(@swc/core@1.4.6)(esbuild@0.23.0)
liftoff@5.0.0:
dependencies:
@@ -16352,6 +18378,21 @@ snapshots:
lit-element: 4.0.4
lit-html: 3.1.2
+ lmdb@3.0.8:
+ dependencies:
+ msgpackr: 1.10.2
+ node-addon-api: 6.1.0
+ node-gyp-build-optional-packages: 5.1.1
+ ordered-binary: 1.5.1
+ weak-lru-cache: 1.2.2
+ optionalDependencies:
+ '@lmdb/lmdb-darwin-arm64': 3.0.8
+ '@lmdb/lmdb-darwin-x64': 3.0.8
+ '@lmdb/lmdb-linux-arm': 3.0.8
+ '@lmdb/lmdb-linux-arm64': 3.0.8
+ '@lmdb/lmdb-linux-x64': 3.0.8
+ '@lmdb/lmdb-win32-x64': 3.0.8
+
loader-runner@4.3.0: {}
loader-utils@2.0.4:
@@ -16364,8 +18405,8 @@ snapshots:
local-pkg@0.5.0:
dependencies:
- mlly: 1.4.2
- pkg-types: 1.0.3
+ mlly: 1.7.1
+ pkg-types: 1.1.3
locate-path@5.0.0:
dependencies:
@@ -16412,7 +18453,7 @@ snapshots:
dependencies:
get-func-name: 2.0.2
- lru-cache@10.2.0: {}
+ lru-cache@10.3.1: {}
lru-cache@4.1.5:
dependencies:
@@ -16451,7 +18492,7 @@ snapshots:
'@babel/types': 7.24.7
recast: 0.23.9
- magicast@0.3.3:
+ magicast@0.3.4:
dependencies:
'@babel/parser': 7.24.7
'@babel/types': 7.24.7
@@ -16474,16 +18515,16 @@ snapshots:
make-fetch-happen@13.0.0:
dependencies:
'@npmcli/agent': 2.2.1
- cacache: 18.0.2
+ cacache: 18.0.3
http-cache-semantics: 4.1.1
is-lambda: 1.0.1
- minipass: 7.0.3
+ minipass: 7.1.2
minipass-fetch: 3.0.4
minipass-flush: 1.0.5
minipass-pipeline: 1.2.4
negotiator: 0.6.3
promise-retry: 2.0.1
- ssri: 10.0.5
+ ssri: 10.0.6
transitivePeerDependencies:
- supports-color
@@ -16501,6 +18542,13 @@ snapshots:
dependencies:
fs-monkey: 1.0.5
+ memfs@4.9.3:
+ dependencies:
+ '@jsonjoy.com/json-pack': 1.0.4(tslib@2.6.3)
+ '@jsonjoy.com/util': 1.2.0(tslib@2.6.3)
+ tree-dump: 1.0.2(tslib@2.6.3)
+ tslib: 2.6.3
+
meow@12.0.1:
dependencies:
'@types/minimist': 1.2.2
@@ -16530,9 +18578,9 @@ snapshots:
micro-memoize@4.1.2: {}
- micromatch@4.0.5:
+ micromatch@4.0.7:
dependencies:
- braces: 3.0.2
+ braces: 3.0.3
picomatch: 2.3.1
mime-db@1.52.0: {}
@@ -16557,7 +18605,13 @@ snapshots:
dependencies:
schema-utils: 4.2.0
tapable: 2.2.1
- webpack: 5.90.3(@swc/core@1.4.6)(esbuild@0.20.2)
+ webpack: 5.90.3(@swc/core@1.4.6)(esbuild@0.23.0)
+
+ mini-css-extract-plugin@2.9.0(webpack@5.91.0(@swc/core@1.4.6)(esbuild@0.21.3)):
+ dependencies:
+ schema-utils: 4.2.0
+ tapable: 2.2.1
+ webpack: 5.91.0(@swc/core@1.4.6)(esbuild@0.23.0)
minimalistic-assert@1.0.1: {}
@@ -16581,7 +18635,7 @@ snapshots:
dependencies:
brace-expansion: 2.0.1
- minimatch@9.0.4:
+ minimatch@9.0.5:
dependencies:
brace-expansion: 2.0.1
@@ -16595,11 +18649,11 @@ snapshots:
minipass-collect@2.0.1:
dependencies:
- minipass: 7.0.3
+ minipass: 7.1.2
minipass-fetch@3.0.4:
dependencies:
- minipass: 7.0.3
+ minipass: 7.1.2
minipass-sized: 1.0.3
minizlib: 2.1.2
optionalDependencies:
@@ -16628,7 +18682,7 @@ snapshots:
minipass@5.0.0: {}
- minipass@7.0.3: {}
+ minipass@7.1.2: {}
minizlib@2.1.2:
dependencies:
@@ -16639,18 +18693,11 @@ snapshots:
mkdirp@3.0.1: {}
- mlly@1.4.2:
- dependencies:
- acorn: 8.10.0
- pathe: 1.1.1
- pkg-types: 1.0.3
- ufo: 1.3.0
-
mlly@1.7.1:
dependencies:
- acorn: 8.12.0
+ acorn: 8.12.1
pathe: 1.1.2
- pkg-types: 1.1.1
+ pkg-types: 1.1.3
ufo: 1.5.3
module-details-from-path@1.0.3: {}
@@ -16667,6 +18714,22 @@ snapshots:
ms@2.1.3: {}
+ msgpackr-extract@3.0.3:
+ dependencies:
+ node-gyp-build-optional-packages: 5.2.2
+ optionalDependencies:
+ '@msgpackr-extract/msgpackr-extract-darwin-arm64': 3.0.3
+ '@msgpackr-extract/msgpackr-extract-darwin-x64': 3.0.3
+ '@msgpackr-extract/msgpackr-extract-linux-arm': 3.0.3
+ '@msgpackr-extract/msgpackr-extract-linux-arm64': 3.0.3
+ '@msgpackr-extract/msgpackr-extract-linux-x64': 3.0.3
+ '@msgpackr-extract/msgpackr-extract-win32-x64': 3.0.3
+ optional: true
+
+ msgpackr@1.10.2:
+ optionalDependencies:
+ msgpackr-extract: 3.0.3
+
muggle-string@0.3.1: {}
muggle-string@0.4.1: {}
@@ -16692,12 +18755,12 @@ snapshots:
neo-async@2.6.2: {}
- next@15.0.0-rc.0(@opentelemetry/api@1.9.0)(react-dom@19.0.0-rc-6d3110b4d9-20240531(react@19.0.0-rc-6d3110b4d9-20240531))(react@19.0.0-rc-6d3110b4d9-20240531)(sass@1.72.0):
+ next@15.0.0-rc.0(@opentelemetry/api@1.9.0)(react-dom@19.0.0-rc-6d3110b4d9-20240531(react@19.0.0-rc-6d3110b4d9-20240531))(react@19.0.0-rc-6d3110b4d9-20240531)(sass@1.77.6):
dependencies:
'@next/env': 15.0.0-rc.0
'@swc/helpers': 0.5.11
busboy: 1.6.0
- caniuse-lite: 1.0.30001599
+ caniuse-lite: 1.0.30001640
graceful-fs: 4.2.11
postcss: 8.4.31
react: 19.0.0-rc-6d3110b4d9-20240531
@@ -16714,22 +18777,22 @@ snapshots:
'@next/swc-win32-ia32-msvc': 15.0.0-rc.0
'@next/swc-win32-x64-msvc': 15.0.0-rc.0
'@opentelemetry/api': 1.9.0
- sass: 1.72.0
+ sass: 1.77.6
sharp: 0.33.4
transitivePeerDependencies:
- '@babel/core'
- babel-plugin-macros
- ng-packagr@17.3.0(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2))(tslib@2.6.2)(typescript@5.4.2):
+ ng-packagr@17.3.0(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2))(tslib@2.6.3)(typescript@5.4.2):
dependencies:
'@angular/compiler-cli': 17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.4.2)
- '@rollup/plugin-json': 6.1.0(rollup@4.17.1)
- '@rollup/plugin-node-resolve': 15.2.3(rollup@4.17.1)
- '@rollup/wasm-node': 4.13.0
- ajv: 8.12.0
+ '@rollup/plugin-json': 6.1.0(rollup@4.18.0)
+ '@rollup/plugin-node-resolve': 15.2.3(rollup@4.18.0)
+ '@rollup/wasm-node': 4.18.0
+ ajv: 8.16.0
ansi-colors: 4.1.3
- browserslist: 4.23.0
- cacache: 18.0.2
+ browserslist: 4.23.1
+ cacache: 18.0.3
chokidar: 3.6.0
commander: 12.1.0
convert-source-map: 2.0.0
@@ -16738,18 +18801,18 @@ snapshots:
fast-glob: 3.3.2
find-cache-dir: 3.3.2
injection-js: 2.4.0
- jsonc-parser: 3.2.1
+ jsonc-parser: 3.3.1
less: 4.2.0
ora: 5.4.1
- piscina: 4.4.0
+ piscina: 4.6.1
postcss: 8.4.32
rxjs: 7.8.1
- sass: 1.72.0
- tslib: 2.6.2
+ sass: 1.77.6
+ tslib: 2.6.3
typescript: 5.4.2
optionalDependencies:
esbuild: 0.20.2
- rollup: 4.17.1
+ rollup: 4.18.0
nice-napi@1.0.2:
dependencies:
@@ -16757,7 +18820,7 @@ snapshots:
node-gyp-build: 4.8.0
optional: true
- nitropack@2.9.7(@opentelemetry/api@1.9.0)(encoding@0.1.13):
+ nitropack@2.9.7(@opentelemetry/api@1.9.0)(encoding@0.1.13)(magicast@0.3.4):
dependencies:
'@cloudflare/kv-asset-handler': 0.3.4
'@netlify/functions': 2.8.0(@opentelemetry/api@1.9.0)
@@ -16772,7 +18835,7 @@ snapshots:
'@types/http-proxy': 1.17.14
'@vercel/nft': 0.26.5(encoding@0.1.13)
archiver: 7.0.1
- c12: 1.11.1
+ c12: 1.11.1(magicast@0.3.4)
chalk: 5.3.0
chokidar: 3.6.0
citty: 0.1.6
@@ -16808,7 +18871,7 @@ snapshots:
openapi-typescript: 6.7.6
pathe: 1.1.2
perfect-debounce: 1.0.0
- pkg-types: 1.1.1
+ pkg-types: 1.1.3
pretty-bytes: 6.1.1
radix3: 1.1.2
rollup: 4.18.0
@@ -16850,6 +18913,8 @@ snapshots:
node-addon-api@3.2.1:
optional: true
+ node-addon-api@6.1.0: {}
+
node-addon-api@7.1.0: {}
node-fetch-native@1.6.4: {}
@@ -16862,19 +18927,28 @@ snapshots:
node-forge@1.3.1: {}
+ node-gyp-build-optional-packages@5.1.1:
+ dependencies:
+ detect-libc: 2.0.3
+
+ node-gyp-build-optional-packages@5.2.2:
+ dependencies:
+ detect-libc: 2.0.3
+ optional: true
+
node-gyp-build@4.8.0: {}
node-gyp@10.0.1:
dependencies:
env-paths: 2.2.1
exponential-backoff: 3.1.1
- glob: 10.3.10
+ glob: 10.4.3
graceful-fs: 4.2.11
make-fetch-happen: 13.0.0
- nopt: 7.2.0
+ nopt: 7.2.1
proc-log: 3.0.0
semver: 7.6.2
- tar: 6.2.0
+ tar: 6.2.1
which: 4.0.0
transitivePeerDependencies:
- supports-color
@@ -16887,11 +18961,7 @@ snapshots:
dependencies:
abbrev: 1.1.1
- nopt@6.0.0:
- dependencies:
- abbrev: 1.1.1
-
- nopt@7.2.0:
+ nopt@7.2.1:
dependencies:
abbrev: 2.0.0
@@ -16971,7 +19041,7 @@ snapshots:
npm-registry-fetch@16.1.0:
dependencies:
make-fetch-happen: 13.0.0
- minipass: 7.0.3
+ minipass: 7.1.2
minipass-fetch: 3.0.4
minipass-json-stream: 1.0.1
minizlib: 2.1.2
@@ -16988,7 +19058,7 @@ snapshots:
dependencies:
path-key: 3.1.1
- npm-run-path@5.2.0:
+ npm-run-path@5.3.0:
dependencies:
path-key: 4.0.0
@@ -17022,7 +19092,7 @@ snapshots:
figures: 3.2.0
flat: 5.0.2
front-matter: 4.0.2
- fs-extra: 11.1.1
+ fs-extra: 11.2.0
ignore: 5.3.1
jest-diff: 29.7.0
jsonc-parser: 3.2.0
@@ -17038,7 +19108,7 @@ snapshots:
tar-stream: 2.2.0
tmp: 0.2.1
tsconfig-paths: 4.2.0
- tslib: 2.6.2
+ tslib: 2.6.3
yargs: 17.7.2
yargs-parser: 21.1.1
optionalDependencies:
@@ -17062,7 +19132,7 @@ snapshots:
consola: 3.2.3
execa: 8.0.1
pathe: 1.1.2
- pkg-types: 1.1.1
+ pkg-types: 1.1.3
ufo: 1.5.3
object-assign@4.1.1: {}
@@ -17126,6 +19196,13 @@ snapshots:
dependencies:
mimic-fn: 4.0.0
+ open@10.1.0:
+ dependencies:
+ default-browser: 5.2.1
+ define-lazy-prop: 3.0.0
+ is-inside-container: 1.0.0
+ is-wsl: 3.1.0
+
open@8.4.2:
dependencies:
define-lazy-prop: 2.0.0
@@ -17173,6 +19250,8 @@ snapshots:
strip-ansi: 6.0.1
wcwidth: 1.0.1
+ ordered-binary@1.5.1: {}
+
os-tmpdir@1.0.2: {}
p-finally@1.0.0: {}
@@ -17187,11 +19266,11 @@ snapshots:
p-limit@4.0.0:
dependencies:
- yocto-queue: 1.0.0
+ yocto-queue: 1.1.1
p-limit@5.0.0:
dependencies:
- yocto-queue: 1.0.0
+ yocto-queue: 1.1.1
p-locate@4.1.0:
dependencies:
@@ -17214,17 +19293,25 @@ snapshots:
'@types/retry': 0.12.0
retry: 0.13.1
+ p-retry@6.2.0:
+ dependencies:
+ '@types/retry': 0.12.2
+ is-network-error: 1.1.0
+ retry: 0.13.1
+
p-try@2.2.0: {}
+ package-json-from-dist@1.0.0: {}
+
pacote@17.0.6:
dependencies:
'@npmcli/git': 5.0.4
'@npmcli/installed-package-contents': 2.0.2
'@npmcli/promise-spawn': 7.0.1
'@npmcli/run-script': 7.0.4
- cacache: 18.0.2
+ cacache: 18.0.3
fs-minipass: 3.0.3
- minipass: 7.0.3
+ minipass: 7.1.2
npm-package-arg: 11.0.1
npm-packlist: 8.0.2
npm-pick-manifest: 9.0.0
@@ -17234,8 +19321,8 @@ snapshots:
read-package-json: 7.0.0
read-package-json-fast: 3.0.2
sigstore: 2.2.2
- ssri: 10.0.5
- tar: 6.2.0
+ ssri: 10.0.6
+ tar: 6.2.1
transitivePeerDependencies:
- bluebird
- supports-color
@@ -17301,10 +19388,10 @@ snapshots:
dependencies:
path-root-regex: 0.1.2
- path-scurry@1.10.1:
+ path-scurry@1.11.1:
dependencies:
- lru-cache: 10.2.0
- minipass: 7.0.3
+ lru-cache: 10.3.1
+ minipass: 7.1.2
path-to-regexp@0.1.7: {}
@@ -17314,8 +19401,6 @@ snapshots:
path-type@5.0.0: {}
- pathe@1.1.1: {}
-
pathe@1.1.2: {}
pathval@1.1.1: {}
@@ -17328,6 +19413,8 @@ snapshots:
picomatch@4.0.1: {}
+ picomatch@4.0.2: {}
+
pify@4.0.1:
optional: true
@@ -17340,6 +19427,14 @@ snapshots:
optionalDependencies:
nice-napi: 1.0.2
+ piscina@4.5.0:
+ optionalDependencies:
+ nice-napi: 1.0.2
+
+ piscina@4.6.1:
+ optionalDependencies:
+ nice-napi: 1.0.2
+
pkg-dir@4.2.0:
dependencies:
find-up: 4.1.0
@@ -17348,13 +19443,7 @@ snapshots:
dependencies:
find-up: 6.3.0
- pkg-types@1.0.3:
- dependencies:
- jsonc-parser: 3.2.1
- mlly: 1.4.2
- pathe: 1.1.1
-
- pkg-types@1.1.1:
+ pkg-types@1.1.3:
dependencies:
confbox: 0.1.7
mlly: 1.7.1
@@ -17372,11 +19461,22 @@ snapshots:
postcss-loader@8.1.1(postcss@8.4.35)(typescript@5.4.2)(webpack@5.90.3(@swc/core@1.4.6)(esbuild@0.20.1)):
dependencies:
cosmiconfig: 9.0.0(typescript@5.4.2)
- jiti: 1.21.0
+ jiti: 1.21.6
postcss: 8.4.35
semver: 7.6.2
optionalDependencies:
- webpack: 5.90.3(@swc/core@1.4.6)(esbuild@0.20.2)
+ webpack: 5.90.3(@swc/core@1.4.6)(esbuild@0.23.0)
+ transitivePeerDependencies:
+ - typescript
+
+ postcss-loader@8.1.1(postcss@8.4.38)(typescript@5.4.2)(webpack@5.91.0(@swc/core@1.4.6)(esbuild@0.21.3)):
+ dependencies:
+ cosmiconfig: 9.0.0(typescript@5.4.2)
+ jiti: 1.21.6
+ postcss: 8.4.38
+ semver: 7.6.2
+ optionalDependencies:
+ webpack: 5.91.0(@swc/core@1.4.6)(esbuild@0.23.0)
transitivePeerDependencies:
- typescript
@@ -17390,31 +19490,31 @@ snapshots:
postcss-simple-vars: 7.0.1(postcss@8.4.32)
sugarss: 4.0.1(postcss@8.4.32)
- postcss-modules-extract-imports@3.0.0(postcss@8.4.38):
+ postcss-modules-extract-imports@3.1.0(postcss@8.4.39):
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.39
- postcss-modules-local-by-default@4.0.4(postcss@8.4.38):
+ postcss-modules-local-by-default@4.0.5(postcss@8.4.39):
dependencies:
- icss-utils: 5.1.0(postcss@8.4.38)
- postcss: 8.4.38
- postcss-selector-parser: 6.0.15
+ icss-utils: 5.1.0(postcss@8.4.39)
+ postcss: 8.4.39
+ postcss-selector-parser: 6.1.0
postcss-value-parser: 4.2.0
- postcss-modules-scope@3.1.1(postcss@8.4.38):
+ postcss-modules-scope@3.2.0(postcss@8.4.39):
dependencies:
- postcss: 8.4.38
- postcss-selector-parser: 6.0.15
+ postcss: 8.4.39
+ postcss-selector-parser: 6.1.0
- postcss-modules-values@4.0.0(postcss@8.4.38):
+ postcss-modules-values@4.0.0(postcss@8.4.39):
dependencies:
- icss-utils: 5.1.0(postcss@8.4.38)
- postcss: 8.4.38
+ icss-utils: 5.1.0(postcss@8.4.39)
+ postcss: 8.4.39
postcss-nested@6.0.1(postcss@8.4.32):
dependencies:
postcss: 8.4.32
- postcss-selector-parser: 6.0.15
+ postcss-selector-parser: 6.1.0
postcss-preset-mantine@1.12.2(postcss@8.4.32):
dependencies:
@@ -17422,7 +19522,7 @@ snapshots:
postcss-mixins: 9.0.4(postcss@8.4.32)
postcss-nested: 6.0.1(postcss@8.4.32)
- postcss-selector-parser@6.0.15:
+ postcss-selector-parser@6.1.0:
dependencies:
cssesc: 3.0.0
util-deprecate: 1.0.2
@@ -17457,6 +19557,12 @@ snapshots:
picocolors: 1.0.1
source-map-js: 1.2.0
+ postcss@8.4.39:
+ dependencies:
+ nanoid: 3.3.7
+ picocolors: 1.0.1
+ source-map-js: 1.2.0
+
prelude-ls@1.2.1: {}
prettier@3.3.2: {}
@@ -17520,7 +19626,7 @@ snapshots:
'@protobufjs/path': 1.1.2
'@protobufjs/pool': 1.1.0
'@protobufjs/utf8': 1.1.0
- '@types/node': 20.10.6
+ '@types/node': 20.14.10
long: 5.2.3
proxy-addr@2.0.7:
@@ -17606,7 +19712,7 @@ snapshots:
dependencies:
react: 18.3.1
react-style-singleton: 2.2.1(@types/react@18.3.3)(react@18.3.1)
- tslib: 2.6.2
+ tslib: 2.6.3
optionalDependencies:
'@types/react': 18.3.3
@@ -17615,7 +19721,7 @@ snapshots:
react: 18.3.1
react-remove-scroll-bar: 2.3.4(@types/react@18.3.3)(react@18.3.1)
react-style-singleton: 2.2.1(@types/react@18.3.3)(react@18.3.1)
- tslib: 2.6.2
+ tslib: 2.6.3
use-callback-ref: 1.3.1(@types/react@18.3.3)(react@18.3.1)
use-sidecar: 1.1.2(@types/react@18.3.3)(react@18.3.1)
optionalDependencies:
@@ -17626,13 +19732,13 @@ snapshots:
get-nonce: 1.0.1
invariant: 2.2.4
react: 18.3.1
- tslib: 2.6.2
+ tslib: 2.6.3
optionalDependencies:
'@types/react': 18.3.3
react-textarea-autosize@8.5.3(@types/react@18.3.3)(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.0
+ '@babel/runtime': 7.24.7
react: 18.3.1
use-composed-ref: 1.3.0(react@18.3.1)
use-latest: 1.2.1(@types/react@18.3.3)(react@18.3.1)
@@ -17641,7 +19747,7 @@ snapshots:
react-transition-group@4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.0
+ '@babel/runtime': 7.24.7
dom-helpers: 5.2.1
loose-envify: 1.4.0
prop-types: 15.8.1
@@ -17661,7 +19767,7 @@ snapshots:
read-package-json@7.0.0:
dependencies:
- glob: 10.3.10
+ glob: 10.4.3
json-parse-even-better-errors: 3.0.1
normalize-package-data: 6.0.0
npm-normalize-package-bin: 3.0.1
@@ -17730,7 +19836,7 @@ snapshots:
esprima: 4.0.1
source-map: 0.6.1
tiny-invariant: 1.3.3
- tslib: 2.6.2
+ tslib: 2.6.3
rechoir@0.8.0:
dependencies:
@@ -17760,11 +19866,11 @@ snapshots:
regenerate@1.4.2: {}
- regenerator-runtime@0.14.0: {}
+ regenerator-runtime@0.14.1: {}
regenerator-transform@0.15.2:
dependencies:
- '@babel/runtime': 7.24.0
+ '@babel/runtime': 7.24.7
regex-parser@2.3.0: {}
@@ -17855,14 +19961,14 @@ snapshots:
dependencies:
glob: 7.2.3
- rimraf@5.0.5:
+ rimraf@5.0.8:
dependencies:
- glob: 10.3.10
+ glob: 10.4.3
rollup-plugin-preserve-directives@0.4.0(rollup@4.18.0):
dependencies:
'@rollup/pluginutils': 5.1.0(rollup@4.18.0)
- magic-string: 0.30.8
+ magic-string: 0.30.10
rollup: 4.18.0
rollup-plugin-visualizer@5.12.0(rollup@4.18.0):
@@ -17874,28 +19980,6 @@ snapshots:
optionalDependencies:
rollup: 4.18.0
- rollup@4.17.1:
- dependencies:
- '@types/estree': 1.0.5
- optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.17.1
- '@rollup/rollup-android-arm64': 4.17.1
- '@rollup/rollup-darwin-arm64': 4.17.1
- '@rollup/rollup-darwin-x64': 4.17.1
- '@rollup/rollup-linux-arm-gnueabihf': 4.17.1
- '@rollup/rollup-linux-arm-musleabihf': 4.17.1
- '@rollup/rollup-linux-arm64-gnu': 4.17.1
- '@rollup/rollup-linux-arm64-musl': 4.17.1
- '@rollup/rollup-linux-powerpc64le-gnu': 4.17.1
- '@rollup/rollup-linux-riscv64-gnu': 4.17.1
- '@rollup/rollup-linux-s390x-gnu': 4.17.1
- '@rollup/rollup-linux-x64-gnu': 4.17.1
- '@rollup/rollup-linux-x64-musl': 4.17.1
- '@rollup/rollup-win32-arm64-msvc': 4.17.1
- '@rollup/rollup-win32-ia32-msvc': 4.17.1
- '@rollup/rollup-win32-x64-msvc': 4.17.1
- fsevents: 2.3.3
-
rollup@4.18.0:
dependencies:
'@types/estree': 1.0.5
@@ -17920,6 +20004,8 @@ snapshots:
rrweb-cssom@0.6.0: {}
+ run-applescript@7.0.0: {}
+
run-async@3.0.0: {}
run-parallel@1.2.0:
@@ -17928,7 +20014,7 @@ snapshots:
rxjs@7.8.1:
dependencies:
- tslib: 2.6.2
+ tslib: 2.6.3
sade@1.8.1:
dependencies:
@@ -17945,18 +20031,31 @@ snapshots:
neo-async: 2.6.2
optionalDependencies:
sass: 1.71.1
- webpack: 5.90.3(@swc/core@1.4.6)(esbuild@0.20.2)
+ webpack: 5.90.3(@swc/core@1.4.6)(esbuild@0.23.0)
+
+ sass-loader@14.2.1(sass@1.77.2)(webpack@5.91.0(@swc/core@1.4.6)(esbuild@0.21.3)):
+ dependencies:
+ neo-async: 2.6.2
+ optionalDependencies:
+ sass: 1.77.2
+ webpack: 5.91.0(@swc/core@1.4.6)(esbuild@0.23.0)
sass@1.71.1:
dependencies:
chokidar: 3.6.0
- immutable: 4.3.5
+ immutable: 4.3.6
source-map-js: 1.2.0
- sass@1.72.0:
+ sass@1.77.2:
dependencies:
chokidar: 3.6.0
- immutable: 4.3.5
+ immutable: 4.3.6
+ source-map-js: 1.2.0
+
+ sass@1.77.6:
+ dependencies:
+ chokidar: 3.6.0
+ immutable: 4.3.6
source-map-js: 1.2.0
sax@1.3.0:
@@ -17981,9 +20080,9 @@ snapshots:
schema-utils@4.2.0:
dependencies:
'@types/json-schema': 7.0.12
- ajv: 8.12.0
- ajv-formats: 2.1.1(ajv@8.12.0)
- ajv-keywords: 5.1.0(ajv@8.12.0)
+ ajv: 8.16.0
+ ajv-formats: 2.1.1(ajv@8.16.0)
+ ajv-keywords: 5.1.0(ajv@8.16.0)
scule@1.3.0: {}
@@ -18158,7 +20257,7 @@ snapshots:
shiki@0.14.7:
dependencies:
ansi-sequence-parser: 1.1.1
- jsonc-parser: 3.2.1
+ jsonc-parser: 3.3.1
vscode-oniguruma: 1.7.0
vscode-textmate: 8.0.0
@@ -18224,7 +20323,7 @@ snapshots:
socks-proxy-agent@8.0.2:
dependencies:
agent-base: 7.1.0
- debug: 4.3.4
+ debug: 4.3.5
socks: 2.8.1
transitivePeerDependencies:
- supports-color
@@ -18236,7 +20335,7 @@ snapshots:
solid-js@1.7.12:
dependencies:
- csstype: 3.1.2
+ csstype: 3.1.3
seroval: 0.5.1
solid-refresh@0.6.3(solid-js@1.7.12):
@@ -18254,7 +20353,13 @@ snapshots:
dependencies:
iconv-lite: 0.6.3
source-map-js: 1.2.0
- webpack: 5.90.3(@swc/core@1.4.6)(esbuild@0.20.2)
+ webpack: 5.90.3(@swc/core@1.4.6)(esbuild@0.23.0)
+
+ source-map-loader@5.0.0(webpack@5.91.0(@swc/core@1.4.6)(esbuild@0.21.3)):
+ dependencies:
+ iconv-lite: 0.6.3
+ source-map-js: 1.2.0
+ webpack: 5.91.0(@swc/core@1.4.6)(esbuild@0.23.0)
source-map-support@0.5.21:
dependencies:
@@ -18283,7 +20388,7 @@ snapshots:
spdy-transport@3.0.0:
dependencies:
- debug: 4.3.4
+ debug: 4.3.5
detect-node: 2.1.0
hpack.js: 2.1.6
obuf: 1.1.2
@@ -18294,7 +20399,7 @@ snapshots:
spdy@4.0.2:
dependencies:
- debug: 4.3.4
+ debug: 4.3.5
handle-thing: 2.0.1
http-deceiver: 1.2.7
select-hose: 2.0.0
@@ -18315,9 +20420,9 @@ snapshots:
sprintf-js@1.1.3: {}
- ssri@10.0.5:
+ ssri@10.0.6:
dependencies:
- minipass: 7.0.3
+ minipass: 7.1.2
stackback@0.0.2: {}
@@ -18401,10 +20506,6 @@ snapshots:
strip-json-comments@5.0.1: {}
- strip-literal@2.0.0:
- dependencies:
- js-tokens: 8.0.3
-
strip-literal@2.1.0:
dependencies:
js-tokens: 9.0.0
@@ -18433,6 +20534,11 @@ snapshots:
postcss: 8.4.35
optional: true
+ sugarss@4.0.1(postcss@8.4.38):
+ dependencies:
+ postcss: 8.4.38
+ optional: true
+
summary@2.1.0: {}
supports-color@5.5.0:
@@ -18475,7 +20581,7 @@ snapshots:
fast-fifo: 1.3.2
streamx: 2.18.0
- tar@6.2.0:
+ tar@6.2.1:
dependencies:
chownr: 2.0.0
fs-minipass: 2.1.0
@@ -18484,22 +20590,48 @@ snapshots:
mkdirp: 1.0.4
yallist: 4.0.0
- terser-webpack-plugin@5.3.10(@swc/core@1.4.6)(esbuild@0.20.2)(webpack@5.90.3(@swc/core@1.4.6)(esbuild@0.20.1)):
+ terser-webpack-plugin@5.3.10(@swc/core@1.4.6)(esbuild@0.23.0)(webpack@5.90.3(@swc/core@1.4.6)(esbuild@0.20.1)):
dependencies:
'@jridgewell/trace-mapping': 0.3.25
jest-worker: 27.5.1
schema-utils: 3.3.0
serialize-javascript: 6.0.2
- terser: 5.29.1
- webpack: 5.90.3(@swc/core@1.4.6)(esbuild@0.20.2)
+ terser: 5.31.1
+ webpack: 5.90.3(@swc/core@1.4.6)(esbuild@0.23.0)
optionalDependencies:
'@swc/core': 1.4.6(@swc/helpers@0.5.11)
- esbuild: 0.20.2
+ esbuild: 0.23.0
+
+ terser-webpack-plugin@5.3.10(@swc/core@1.4.6)(esbuild@0.23.0)(webpack@5.91.0(@swc/core@1.4.6)(esbuild@0.21.3)):
+ dependencies:
+ '@jridgewell/trace-mapping': 0.3.25
+ jest-worker: 27.5.1
+ schema-utils: 3.3.0
+ serialize-javascript: 6.0.2
+ terser: 5.31.1
+ webpack: 5.91.0(@swc/core@1.4.6)(esbuild@0.23.0)
+ optionalDependencies:
+ '@swc/core': 1.4.6(@swc/helpers@0.5.11)
+ esbuild: 0.23.0
terser@5.29.1:
dependencies:
'@jridgewell/source-map': 0.3.6
- acorn: 8.10.0
+ acorn: 8.12.1
+ commander: 2.20.3
+ source-map-support: 0.5.21
+
+ terser@5.29.2:
+ dependencies:
+ '@jridgewell/source-map': 0.3.6
+ acorn: 8.12.1
+ commander: 2.20.3
+ source-map-support: 0.5.21
+
+ terser@5.31.1:
+ dependencies:
+ '@jridgewell/source-map': 0.3.6
+ acorn: 8.12.1
commander: 2.20.3
source-map-support: 0.5.21
@@ -18517,6 +20649,10 @@ snapshots:
text-table@0.2.0: {}
+ thingies@1.21.0(tslib@2.6.3):
+ dependencies:
+ tslib: 2.6.3
+
through@2.3.8: {}
thunky@1.1.0: {}
@@ -18579,11 +20715,11 @@ snapshots:
tiny-warning@1.0.3: {}
- tinybench@2.5.1: {}
+ tinybench@2.8.0: {}
- tinypool@0.8.2: {}
+ tinypool@0.8.4: {}
- tinyspy@2.2.0: {}
+ tinyspy@2.2.1: {}
tmp@0.0.33:
dependencies:
@@ -18626,6 +20762,10 @@ snapshots:
dependencies:
punycode: 2.3.1
+ tree-dump@1.0.2(tslib@2.6.3):
+ dependencies:
+ tslib: 2.6.3
+
tree-kill@1.2.2: {}
trim-newlines@5.0.0: {}
@@ -18645,6 +20785,10 @@ snapshots:
optionalDependencies:
typescript: 5.4.2
+ tsconfck@3.0.3(typescript@5.5.3):
+ optionalDependencies:
+ typescript: 5.5.3
+
tsconfig-paths@4.2.0:
dependencies:
json5: 2.2.3
@@ -18653,10 +20797,12 @@ snapshots:
tslib@2.6.2: {}
+ tslib@2.6.3: {}
+
tuf-js@2.2.0:
dependencies:
'@tufjs/models': 2.0.0
- debug: 4.3.4
+ debug: 4.3.5
make-fetch-happen: 13.0.0
transitivePeerDependencies:
- supports-color
@@ -18696,7 +20842,7 @@ snapshots:
dependencies:
lunr: 2.3.9
marked: 4.3.0
- minimatch: 9.0.4
+ minimatch: 9.0.5
shiki: 0.14.7
typescript: 5.4.2
@@ -18706,7 +20852,7 @@ snapshots:
types-react@19.0.0-rc.1:
dependencies:
- csstype: 3.1.2
+ csstype: 3.1.3
typescript-eslint@7.14.1(eslint@8.57.0)(typescript@5.4.2):
dependencies:
@@ -18731,7 +20877,8 @@ snapshots:
typescript@5.4.2: {}
- ufo@1.3.0: {}
+ typescript@5.5.3:
+ optional: true
ufo@1.5.3: {}
@@ -18741,9 +20888,9 @@ snapshots:
unctx@2.3.1:
dependencies:
- acorn: 8.12.0
+ acorn: 8.12.1
estree-walker: 3.0.3
- magic-string: 0.30.8
+ magic-string: 0.30.10
unplugin: 1.10.2
undici-types@5.26.5: {}
@@ -18752,6 +20899,8 @@ snapshots:
dependencies:
'@fastify/busboy': 2.1.1
+ undici@6.18.0: {}
+
undici@6.19.2: {}
undici@6.7.1: {}
@@ -18762,7 +20911,7 @@ snapshots:
defu: 6.1.4
mime: 3.0.0
node-fetch-native: 1.6.4
- pathe: 1.1.1
+ pathe: 1.1.2
unescape-js@1.1.4:
dependencies:
@@ -18784,7 +20933,7 @@ snapshots:
unimport@3.7.2(rollup@4.18.0):
dependencies:
'@rollup/pluginutils': 5.1.0(rollup@4.18.0)
- acorn: 8.12.0
+ acorn: 8.12.1
escape-string-regexp: 5.0.0
estree-walker: 3.0.3
fast-glob: 3.3.2
@@ -18792,7 +20941,7 @@ snapshots:
magic-string: 0.30.10
mlly: 1.7.1
pathe: 1.1.2
- pkg-types: 1.1.1
+ pkg-types: 1.1.3
scule: 1.3.0
strip-literal: 2.1.0
unplugin: 1.10.2
@@ -18817,7 +20966,7 @@ snapshots:
unplugin@1.10.2:
dependencies:
- acorn: 8.12.0
+ acorn: 8.12.1
chokidar: 3.6.0
webpack-sources: 3.2.3
webpack-virtual-modules: 0.6.2
@@ -18827,9 +20976,9 @@ snapshots:
anymatch: 3.1.3
chokidar: 3.6.0
destr: 2.0.3
- h3: 1.11.1
+ h3: 1.12.0
listhen: 1.7.2
- lru-cache: 10.2.0
+ lru-cache: 10.3.1
mri: 1.2.0
node-fetch-native: 1.6.4
ofetch: 1.3.4
@@ -18851,13 +21000,13 @@ snapshots:
magic-string: 0.30.10
mlly: 1.7.1
pathe: 1.1.2
- pkg-types: 1.1.1
+ pkg-types: 1.1.3
unplugin: 1.10.2
- update-browserslist-db@1.0.13(browserslist@4.23.0):
+ update-browserslist-db@1.1.0(browserslist@4.23.1):
dependencies:
- browserslist: 4.23.0
- escalade: 3.1.1
+ browserslist: 4.23.1
+ escalade: 3.1.2
picocolors: 1.0.1
uqr@0.1.2: {}
@@ -18876,7 +21025,7 @@ snapshots:
use-callback-ref@1.3.1(@types/react@18.3.3)(react@18.3.1):
dependencies:
react: 18.3.1
- tslib: 2.6.2
+ tslib: 2.6.3
optionalDependencies:
'@types/react': 18.3.3
@@ -18901,7 +21050,7 @@ snapshots:
dependencies:
detect-node-es: 1.1.0
react: 18.3.1
- tslib: 2.6.2
+ tslib: 2.6.3
optionalDependencies:
'@types/react': 18.3.3
@@ -18944,10 +21093,10 @@ snapshots:
vary@1.1.2: {}
- vinxi@0.3.11(@opentelemetry/api@1.9.0)(@types/node@20.10.6)(encoding@0.1.13)(ioredis@5.4.1)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1):
+ vinxi@0.3.11(@opentelemetry/api@1.9.0)(@types/node@20.14.10)(encoding@0.1.13)(ioredis@5.4.1)(less@4.2.0)(magicast@0.3.4)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1):
dependencies:
'@babel/core': 7.24.7
- '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.24.7)
+ '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.24.7)
'@babel/plugin-syntax-typescript': 7.24.7(@babel/core@7.24.7)
'@types/micromatch': 4.0.9
'@vinxi/listhen': 1.5.6
@@ -18958,27 +21107,27 @@ snapshots:
crossws: 0.2.4
dax-sh: 0.39.2
defu: 6.1.4
- es-module-lexer: 1.4.1
+ es-module-lexer: 1.5.4
esbuild: 0.18.20
fast-glob: 3.3.2
get-port-please: 3.1.2
h3: 1.11.1
hookable: 5.5.3
- http-proxy: 1.18.1
- micromatch: 4.0.5
- nitropack: 2.9.7(@opentelemetry/api@1.9.0)(encoding@0.1.13)
+ http-proxy: 1.18.1(debug@4.3.5)
+ micromatch: 4.0.7
+ nitropack: 2.9.7(@opentelemetry/api@1.9.0)(encoding@0.1.13)(magicast@0.3.4)
node-fetch-native: 1.6.4
path-to-regexp: 6.2.2
- pathe: 1.1.1
+ pathe: 1.1.2
radix3: 1.1.2
resolve: 1.22.8
serve-placeholder: 2.0.2
serve-static: 1.15.0
- ufo: 1.3.0
+ ufo: 1.5.3
unctx: 2.3.1
unenv: 1.9.0
unstorage: 1.10.2(ioredis@5.4.1)
- vite: 5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1(postcss@8.4.32))(terser@5.29.1)
+ vite: 5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)
zod: 3.22.4
transitivePeerDependencies:
- '@azure/app-configuration'
@@ -19012,10 +21161,10 @@ snapshots:
- uWebSockets.js
- xml2js
- vinxi@0.3.12(@opentelemetry/api@1.9.0)(@types/node@20.10.6)(encoding@0.1.13)(ioredis@5.4.1)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1):
+ vinxi@0.3.12(@opentelemetry/api@1.9.0)(@types/node@20.14.10)(encoding@0.1.13)(ioredis@5.4.1)(less@4.2.0)(magicast@0.3.4)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1):
dependencies:
'@babel/core': 7.24.7
- '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.24.7)
+ '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.24.7)
'@babel/plugin-syntax-typescript': 7.24.7(@babel/core@7.24.7)
'@types/micromatch': 4.0.9
'@vinxi/listhen': 1.5.6
@@ -19026,27 +21175,27 @@ snapshots:
crossws: 0.2.4
dax-sh: 0.39.2
defu: 6.1.4
- es-module-lexer: 1.4.1
+ es-module-lexer: 1.5.4
esbuild: 0.20.2
fast-glob: 3.3.2
get-port-please: 3.1.2
h3: 1.11.1
hookable: 5.5.3
- http-proxy: 1.18.1
- micromatch: 4.0.5
- nitropack: 2.9.7(@opentelemetry/api@1.9.0)(encoding@0.1.13)
+ http-proxy: 1.18.1(debug@4.3.5)
+ micromatch: 4.0.7
+ nitropack: 2.9.7(@opentelemetry/api@1.9.0)(encoding@0.1.13)(magicast@0.3.4)
node-fetch-native: 1.6.4
path-to-regexp: 6.2.2
- pathe: 1.1.1
+ pathe: 1.1.2
radix3: 1.1.2
resolve: 1.22.8
serve-placeholder: 2.0.2
serve-static: 1.15.0
- ufo: 1.3.0
+ ufo: 1.5.3
unctx: 2.3.1
unenv: 1.9.0
unstorage: 1.10.2(ioredis@5.4.1)
- vite: 5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1(postcss@8.4.32))(terser@5.29.1)
+ vite: 5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)
zod: 3.22.4
transitivePeerDependencies:
- '@azure/app-configuration'
@@ -19080,13 +21229,13 @@ snapshots:
- uWebSockets.js
- xml2js
- vite-node@1.3.1(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1):
+ vite-node@1.6.0(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1):
dependencies:
cac: 6.7.14
debug: 4.3.5
- pathe: 1.1.1
+ pathe: 1.1.2
picocolors: 1.0.1
- vite: 5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1(postcss@8.4.32))(terser@5.29.1)
+ vite: 5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)
transitivePeerDependencies:
- '@types/node'
- less
@@ -19097,28 +21246,28 @@ snapshots:
- supports-color
- terser
- vite-plugin-dts@3.9.1(@types/node@20.10.6)(rollup@4.18.0)(typescript@5.4.2)(vite@5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1)):
+ vite-plugin-dts@3.9.1(@types/node@20.14.10)(rollup@4.18.0)(typescript@5.4.2)(vite@5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)):
dependencies:
- '@microsoft/api-extractor': 7.43.0(@types/node@20.10.6)
+ '@microsoft/api-extractor': 7.43.0(@types/node@20.14.10)
'@rollup/pluginutils': 5.1.0(rollup@4.18.0)
'@vue/language-core': 1.8.27(typescript@5.4.2)
debug: 4.3.5
kolorist: 1.8.0
- magic-string: 0.30.8
+ magic-string: 0.30.10
typescript: 5.4.2
vue-tsc: 1.8.27(typescript@5.4.2)
optionalDependencies:
- vite: 5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1(postcss@8.4.32))(terser@5.29.1)
+ vite: 5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)
transitivePeerDependencies:
- '@types/node'
- rollup
- supports-color
- vite-plugin-externalize-deps@0.8.0(vite@5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1)):
+ vite-plugin-externalize-deps@0.8.0(vite@5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)):
dependencies:
- vite: 5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1(postcss@8.4.32))(terser@5.29.1)
+ vite: 5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)
- vite-plugin-solid@2.10.1(@testing-library/jest-dom@6.4.2(vitest@1.3.1(@types/node@20.10.6)(jsdom@24.0.0)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1)))(solid-js@1.7.12)(vite@5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1)):
+ vite-plugin-solid@2.10.1(@testing-library/jest-dom@6.4.6(vitest@1.6.0(@types/node@20.14.10)(jsdom@24.0.0)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)))(solid-js@1.7.12)(vite@5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)):
dependencies:
'@babel/core': 7.24.7
'@types/babel__core': 7.20.5
@@ -19126,91 +21275,128 @@ snapshots:
merge-anything: 5.1.7
solid-js: 1.7.12
solid-refresh: 0.6.3(solid-js@1.7.12)
- vite: 5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1(postcss@8.4.32))(terser@5.29.1)
- vitefu: 0.2.5(vite@5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1))
+ vite: 5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)
+ vitefu: 0.2.5(vite@5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))
optionalDependencies:
- '@testing-library/jest-dom': 6.4.2(vitest@1.3.1(@types/node@20.10.6)(jsdom@24.0.0)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1))
+ '@testing-library/jest-dom': 6.4.6(vitest@1.6.0(@types/node@20.14.10)(jsdom@24.0.0)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1))
transitivePeerDependencies:
- supports-color
- vite-tsconfig-paths@4.3.2(typescript@5.4.2)(vite@5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1)):
+ vite-tsconfig-paths@4.3.2(typescript@5.4.2)(vite@5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)):
dependencies:
debug: 4.3.5
globrex: 0.1.2
tsconfck: 3.0.3(typescript@5.4.2)
optionalDependencies:
- vite: 5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1(postcss@8.4.32))(terser@5.29.1)
+ vite: 5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+
+ vite-tsconfig-paths@4.3.2(typescript@5.5.3)(vite@5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)):
+ dependencies:
+ debug: 4.3.5
+ globrex: 0.1.2
+ tsconfck: 3.0.3(typescript@5.5.3)
+ optionalDependencies:
+ vite: 5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)
transitivePeerDependencies:
- supports-color
- typescript
- vite@5.1.5(@types/node@20.10.6)(less@4.2.0)(sass@1.71.1)(sugarss@4.0.1(postcss@8.4.35))(terser@5.29.1):
+ vite@5.1.5(@types/node@20.14.10)(less@4.2.0)(sass@1.71.1)(sugarss@4.0.1(postcss@8.4.35))(terser@5.29.1):
dependencies:
esbuild: 0.19.11
- postcss: 8.4.38
- rollup: 4.17.1
+ postcss: 8.4.39
+ rollup: 4.18.0
optionalDependencies:
- '@types/node': 20.10.6
+ '@types/node': 20.14.10
fsevents: 2.3.3
less: 4.2.0
sass: 1.71.1
sugarss: 4.0.1(postcss@8.4.35)
terser: 5.29.1
- vite@5.1.5(@types/node@20.10.6)(less@4.2.0)(sass@1.71.1)(sugarss@4.0.1)(terser@5.29.1):
+ vite@5.1.5(@types/node@20.14.10)(less@4.2.0)(sass@1.71.1)(sugarss@4.0.1)(terser@5.29.1):
dependencies:
esbuild: 0.19.11
- postcss: 8.4.38
- rollup: 4.17.1
+ postcss: 8.4.39
+ rollup: 4.18.0
optionalDependencies:
- '@types/node': 20.10.6
+ '@types/node': 20.14.10
fsevents: 2.3.3
less: 4.2.0
sass: 1.71.1
- sugarss: 4.0.1(postcss@8.4.32)
+ sugarss: 4.0.1(postcss@8.4.38)
terser: 5.29.1
- vite@5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1(postcss@8.4.32))(terser@5.29.1):
+ vite@5.2.11(@types/node@20.14.10)(less@4.2.0)(sass@1.77.2)(sugarss@4.0.1(postcss@8.4.38))(terser@5.29.2):
dependencies:
esbuild: 0.20.2
- postcss: 8.4.38
- rollup: 4.17.1
+ postcss: 8.4.39
+ rollup: 4.18.0
+ optionalDependencies:
+ '@types/node': 20.14.10
+ fsevents: 2.3.3
+ less: 4.2.0
+ sass: 1.77.2
+ sugarss: 4.0.1(postcss@8.4.38)
+ terser: 5.29.2
+
+ vite@5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1(postcss@8.4.32))(terser@5.31.1):
+ dependencies:
+ esbuild: 0.21.5
+ postcss: 8.4.39
+ rollup: 4.18.0
optionalDependencies:
- '@types/node': 20.10.6
+ '@types/node': 20.14.10
fsevents: 2.3.3
less: 4.2.0
- sass: 1.72.0
+ sass: 1.77.6
sugarss: 4.0.1(postcss@8.4.32)
- terser: 5.29.1
+ terser: 5.31.1
- vitefu@0.2.5(vite@5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1)):
+ vite@5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1):
+ dependencies:
+ esbuild: 0.21.5
+ postcss: 8.4.39
+ rollup: 4.18.0
+ optionalDependencies:
+ '@types/node': 20.14.10
+ fsevents: 2.3.3
+ less: 4.2.0
+ sass: 1.77.6
+ sugarss: 4.0.1(postcss@8.4.38)
+ terser: 5.31.1
+
+ vitefu@0.2.5(vite@5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)):
optionalDependencies:
- vite: 5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1(postcss@8.4.32))(terser@5.29.1)
-
- vitest@1.3.1(@types/node@20.10.6)(jsdom@24.0.0)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1):
- dependencies:
- '@vitest/expect': 1.3.1
- '@vitest/runner': 1.3.1
- '@vitest/snapshot': 1.3.1
- '@vitest/spy': 1.3.1
- '@vitest/utils': 1.3.1
- acorn-walk: 8.3.2
- chai: 4.3.10
- debug: 4.3.4
+ vite: 5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)
+
+ vitest@1.6.0(@types/node@20.14.10)(jsdom@24.0.0)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1):
+ dependencies:
+ '@vitest/expect': 1.6.0
+ '@vitest/runner': 1.6.0
+ '@vitest/snapshot': 1.6.0
+ '@vitest/spy': 1.6.0
+ '@vitest/utils': 1.6.0
+ acorn-walk: 8.3.3
+ chai: 4.4.1
+ debug: 4.3.5
execa: 8.0.1
local-pkg: 0.5.0
- magic-string: 0.30.8
- pathe: 1.1.1
+ magic-string: 0.30.10
+ pathe: 1.1.2
picocolors: 1.0.1
std-env: 3.7.0
- strip-literal: 2.0.0
- tinybench: 2.5.1
- tinypool: 0.8.2
- vite: 5.2.10(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1(postcss@8.4.32))(terser@5.29.1)
- vite-node: 1.3.1(@types/node@20.10.6)(less@4.2.0)(sass@1.72.0)(sugarss@4.0.1)(terser@5.29.1)
+ strip-literal: 2.1.0
+ tinybench: 2.8.0
+ tinypool: 0.8.4
+ vite: 5.3.3(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)
+ vite-node: 1.6.0(@types/node@20.14.10)(less@4.2.0)(sass@1.77.6)(sugarss@4.0.1)(terser@5.31.1)
why-is-node-running: 2.2.2
optionalDependencies:
- '@types/node': 20.10.6
+ '@types/node': 20.14.10
jsdom: 24.0.0
transitivePeerDependencies:
- less
@@ -19227,13 +21413,15 @@ snapshots:
vscode-textmate@8.0.0: {}
- vue-component-type-helpers@1.8.4: {}
+ vscode-uri@3.0.8: {}
+
+ vue-component-type-helpers@2.0.26: {}
- vue-demi@0.14.6(vue@3.3.4):
+ vue-demi@0.14.6(vue@3.4.31(typescript@5.5.3)):
dependencies:
- vue: 3.3.4
+ vue: 3.4.31(typescript@5.5.3)
- vue-template-compiler@2.7.14:
+ vue-template-compiler@2.7.16:
dependencies:
de-indent: 1.0.2
he: 1.2.0
@@ -19245,20 +21433,32 @@ snapshots:
semver: 7.6.2
typescript: 5.4.2
- vue-tsc@2.0.6(typescript@5.4.2):
+ vue-tsc@2.0.26(typescript@5.4.2):
dependencies:
- '@volar/typescript': 2.1.2
- '@vue/language-core': 2.0.6(typescript@5.4.2)
+ '@volar/typescript': 2.4.0-alpha.15
+ '@vue/language-core': 2.0.26(typescript@5.4.2)
semver: 7.6.2
typescript: 5.4.2
- vue@3.3.4:
+ vue@3.4.31(typescript@5.4.2):
+ dependencies:
+ '@vue/compiler-dom': 3.4.31
+ '@vue/compiler-sfc': 3.4.31
+ '@vue/runtime-dom': 3.4.31
+ '@vue/server-renderer': 3.4.31(vue@3.4.31(typescript@5.4.2))
+ '@vue/shared': 3.4.31
+ optionalDependencies:
+ typescript: 5.4.2
+
+ vue@3.4.31(typescript@5.5.3):
dependencies:
- '@vue/compiler-dom': 3.3.4
- '@vue/compiler-sfc': 3.3.4
- '@vue/runtime-dom': 3.3.4
- '@vue/server-renderer': 3.3.4(vue@3.3.4)
- '@vue/shared': 3.3.4
+ '@vue/compiler-dom': 3.4.31
+ '@vue/compiler-sfc': 3.4.31
+ '@vue/runtime-dom': 3.4.31
+ '@vue/server-renderer': 3.4.31(vue@3.4.31(typescript@5.5.3))
+ '@vue/shared': 3.4.31
+ optionalDependencies:
+ typescript: 5.5.3
w3c-xmlserializer@5.0.0:
dependencies:
@@ -19269,6 +21469,11 @@ snapshots:
glob-to-regexp: 0.4.1
graceful-fs: 4.2.11
+ watchpack@2.4.1:
+ dependencies:
+ glob-to-regexp: 0.4.1
+ graceful-fs: 4.2.11
+
wbuf@1.7.3:
dependencies:
minimalistic-assert: 1.0.1
@@ -19277,6 +21482,8 @@ snapshots:
dependencies:
defaults: 1.0.4
+ weak-lru-cache@1.2.2: {}
+
web-encoding@1.1.5:
dependencies:
util: 0.12.5
@@ -19296,7 +21503,7 @@ snapshots:
mime-types: 2.1.35
range-parser: 1.2.1
schema-utils: 4.2.0
- webpack: 5.90.3(@swc/core@1.4.6)(esbuild@0.20.2)
+ webpack: 5.90.3(@swc/core@1.4.6)(esbuild@0.23.0)
webpack-dev-middleware@6.1.1(webpack@5.90.3(@swc/core@1.4.6)(esbuild@0.20.1)):
dependencies:
@@ -19306,7 +21513,18 @@ snapshots:
range-parser: 1.2.1
schema-utils: 4.2.0
optionalDependencies:
- webpack: 5.90.3(@swc/core@1.4.6)(esbuild@0.20.2)
+ webpack: 5.90.3(@swc/core@1.4.6)(esbuild@0.23.0)
+
+ webpack-dev-middleware@7.2.1(webpack@5.91.0(@swc/core@1.4.6)(esbuild@0.21.3)):
+ dependencies:
+ colorette: 2.0.20
+ memfs: 4.9.3
+ mime-types: 2.1.35
+ on-finished: 2.4.1
+ range-parser: 1.2.1
+ schema-utils: 4.2.0
+ optionalDependencies:
+ webpack: 5.91.0(@swc/core@1.4.6)(esbuild@0.23.0)
webpack-dev-server@4.15.1(webpack@5.90.3(@swc/core@1.4.6)(esbuild@0.20.1)):
dependencies:
@@ -19314,7 +21532,7 @@ snapshots:
'@types/connect-history-api-fallback': 1.5.4
'@types/express': 4.17.21
'@types/serve-index': 1.9.4
- '@types/serve-static': 1.15.5
+ '@types/serve-static': 1.15.7
'@types/sockjs': 0.3.36
'@types/ws': 8.5.10
ansi-html-community: 0.0.8
@@ -19324,12 +21542,12 @@ snapshots:
compression: 1.7.4
connect-history-api-fallback: 2.0.0
default-gateway: 6.0.3
- express: 4.18.3
+ express: 4.19.2
graceful-fs: 4.2.11
- html-entities: 2.3.3
+ html-entities: 2.5.2
http-proxy-middleware: 2.0.6(@types/express@4.17.21)
- ipaddr.js: 2.1.0
- launch-editor: 2.6.1
+ ipaddr.js: 2.2.0
+ launch-editor: 2.8.0
open: 8.4.2
p-retry: 4.6.2
rimraf: 3.0.2
@@ -19339,9 +21557,49 @@ snapshots:
sockjs: 0.3.24
spdy: 4.0.2
webpack-dev-middleware: 5.3.3(webpack@5.90.3(@swc/core@1.4.6)(esbuild@0.20.1))
- ws: 8.16.0
+ ws: 8.18.0
+ optionalDependencies:
+ webpack: 5.90.3(@swc/core@1.4.6)(esbuild@0.23.0)
+ transitivePeerDependencies:
+ - bufferutil
+ - debug
+ - supports-color
+ - utf-8-validate
+
+ webpack-dev-server@5.0.4(webpack@5.91.0(@swc/core@1.4.6)(esbuild@0.21.3)):
+ dependencies:
+ '@types/bonjour': 3.5.13
+ '@types/connect-history-api-fallback': 1.5.4
+ '@types/express': 4.17.21
+ '@types/serve-index': 1.9.4
+ '@types/serve-static': 1.15.7
+ '@types/sockjs': 0.3.36
+ '@types/ws': 8.5.10
+ ansi-html-community: 0.0.8
+ bonjour-service: 1.2.1
+ chokidar: 3.6.0
+ colorette: 2.0.20
+ compression: 1.7.4
+ connect-history-api-fallback: 2.0.0
+ default-gateway: 6.0.3
+ express: 4.19.2
+ graceful-fs: 4.2.11
+ html-entities: 2.5.2
+ http-proxy-middleware: 2.0.6(@types/express@4.17.21)
+ ipaddr.js: 2.2.0
+ launch-editor: 2.8.0
+ open: 10.1.0
+ p-retry: 6.2.0
+ rimraf: 5.0.8
+ schema-utils: 4.2.0
+ selfsigned: 2.4.1
+ serve-index: 1.9.1
+ sockjs: 0.3.24
+ spdy: 4.0.2
+ webpack-dev-middleware: 7.2.1(webpack@5.91.0(@swc/core@1.4.6)(esbuild@0.21.3))
+ ws: 8.18.0
optionalDependencies:
- webpack: 5.90.3(@swc/core@1.4.6)(esbuild@0.20.2)
+ webpack: 5.91.0(@swc/core@1.4.6)(esbuild@0.23.0)
transitivePeerDependencies:
- bufferutil
- debug
@@ -19359,23 +21617,28 @@ snapshots:
webpack-subresource-integrity@5.1.0(webpack@5.90.3(@swc/core@1.4.6)(esbuild@0.20.1)):
dependencies:
typed-assert: 1.0.9
- webpack: 5.90.3(@swc/core@1.4.6)(esbuild@0.20.2)
+ webpack: 5.90.3(@swc/core@1.4.6)(esbuild@0.23.0)
+
+ webpack-subresource-integrity@5.1.0(webpack@5.91.0(@swc/core@1.4.6)(esbuild@0.21.3)):
+ dependencies:
+ typed-assert: 1.0.9
+ webpack: 5.91.0(@swc/core@1.4.6)(esbuild@0.23.0)
webpack-virtual-modules@0.6.2: {}
- webpack@5.90.3(@swc/core@1.4.6)(esbuild@0.20.2):
+ webpack@5.90.3(@swc/core@1.4.6)(esbuild@0.23.0):
dependencies:
'@types/eslint-scope': 3.7.7
'@types/estree': 1.0.5
'@webassemblyjs/ast': 1.12.1
'@webassemblyjs/wasm-edit': 1.12.1
'@webassemblyjs/wasm-parser': 1.12.1
- acorn: 8.10.0
- acorn-import-assertions: 1.9.0(acorn@8.10.0)
- browserslist: 4.23.0
- chrome-trace-event: 1.0.3
- enhanced-resolve: 5.15.0
- es-module-lexer: 1.4.1
+ acorn: 8.12.1
+ acorn-import-assertions: 1.9.0(acorn@8.12.1)
+ browserslist: 4.23.1
+ chrome-trace-event: 1.0.4
+ enhanced-resolve: 5.17.0
+ es-module-lexer: 1.5.4
eslint-scope: 5.1.1
events: 3.3.0
glob-to-regexp: 0.4.1
@@ -19386,8 +21649,39 @@ snapshots:
neo-async: 2.6.2
schema-utils: 3.3.0
tapable: 2.2.1
- terser-webpack-plugin: 5.3.10(@swc/core@1.4.6)(esbuild@0.20.2)(webpack@5.90.3(@swc/core@1.4.6)(esbuild@0.20.1))
- watchpack: 2.4.0
+ terser-webpack-plugin: 5.3.10(@swc/core@1.4.6)(esbuild@0.23.0)(webpack@5.90.3(@swc/core@1.4.6)(esbuild@0.20.1))
+ watchpack: 2.4.1
+ webpack-sources: 3.2.3
+ transitivePeerDependencies:
+ - '@swc/core'
+ - esbuild
+ - uglify-js
+
+ webpack@5.91.0(@swc/core@1.4.6)(esbuild@0.23.0):
+ dependencies:
+ '@types/eslint-scope': 3.7.7
+ '@types/estree': 1.0.5
+ '@webassemblyjs/ast': 1.12.1
+ '@webassemblyjs/wasm-edit': 1.12.1
+ '@webassemblyjs/wasm-parser': 1.12.1
+ acorn: 8.12.1
+ acorn-import-assertions: 1.9.0(acorn@8.12.1)
+ browserslist: 4.23.1
+ chrome-trace-event: 1.0.4
+ enhanced-resolve: 5.17.0
+ es-module-lexer: 1.5.4
+ eslint-scope: 5.1.1
+ events: 3.3.0
+ glob-to-regexp: 0.4.1
+ graceful-fs: 4.2.11
+ json-parse-even-better-errors: 2.3.1
+ loader-runner: 4.3.0
+ mime-types: 2.1.35
+ neo-async: 2.6.2
+ schema-utils: 3.3.0
+ tapable: 2.2.1
+ terser-webpack-plugin: 5.3.10(@swc/core@1.4.6)(esbuild@0.23.0)(webpack@5.91.0(@swc/core@1.4.6)(esbuild@0.21.3))
+ watchpack: 2.4.1
webpack-sources: 3.2.3
transitivePeerDependencies:
- '@swc/core'
@@ -19497,7 +21791,7 @@ snapshots:
wrappy@1.0.2: {}
- ws@8.16.0: {}
+ ws@8.18.0: {}
xml-name-validator@5.0.0: {}
@@ -19518,7 +21812,7 @@ snapshots:
yargs@17.7.2:
dependencies:
cliui: 8.0.1
- escalade: 3.1.1
+ escalade: 3.1.2
get-caller-file: 2.0.5
require-directory: 2.1.1
string-width: 4.2.3
@@ -19527,7 +21821,7 @@ snapshots:
yocto-queue@0.1.0: {}
- yocto-queue@1.0.0: {}
+ yocto-queue@1.1.1: {}
yup@1.3.2:
dependencies:
@@ -19562,4 +21856,4 @@ snapshots:
zone.js@0.14.4:
dependencies:
- tslib: 2.6.2
+ tslib: 2.6.3
]