diff --git a/.gitattributes b/.gitattributes
new file mode 100644
index 00000000..6313b56c
--- /dev/null
+++ b/.gitattributes
@@ -0,0 +1 @@
+* text=auto eol=lf
diff --git a/.github/workflows/actions/check-git-context/action.yml b/.github/workflows/actions/check-git-context/action.yml
new file mode 100644
index 00000000..f7907ac7
--- /dev/null
+++ b/.github/workflows/actions/check-git-context/action.yml
@@ -0,0 +1,11 @@
+name: 'Check Git Context'
+description: 'checks for a dirty git context, failing if the context is dirty'
+runs:
+ using: composite
+ steps:
+ - name: Git status check
+ # here we check that there are no changed / new files.
+ # we use `git status`, grep out the build zip used throughout CI,
+ # and check if there are more than 0 lines in the output.
+ run: if [[ $(git status --short | grep -c -v stencil-core-build.zip) -ne 0 ]]; then STATUS=$(git status --verbose); printf "%s" "$STATUS"; git diff | cat; exit 1; fi
+ shell: bash
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 4f5d0911..5101b13d 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -38,6 +38,9 @@ jobs:
- name: Test
run: pnpm test
+
+ - name: Check Git Context
+ uses: ./.github/workflows/actions/check-git-context
format:
name: Format
uses: ./.github/workflows/format.yml
diff --git a/example-project/component-library-angular/.prettierignore b/example-project/component-library-angular/.prettierignore
new file mode 100644
index 00000000..6c45c838
--- /dev/null
+++ b/example-project/component-library-angular/.prettierignore
@@ -0,0 +1,2 @@
+# autogenerated files from stencil
+src/directives/*.ts
diff --git a/example-project/component-library-angular/package.json b/example-project/component-library-angular/package.json
index d1086a3f..ea137d73 100644
--- a/example-project/component-library-angular/package.json
+++ b/example-project/component-library-angular/package.json
@@ -14,10 +14,11 @@
"build.ng": "pnpm run build.es2015 && pnpm run build.es5",
"build.es2015": "ngc -p tsconfig.json && rollup --config ./scripts/rollup.config.mjs",
"build.es5": "ngc -p tsconfig.legacy.json && rollup --config ./scripts/rollup.config.legacy.mjs",
+ "clean": "rimraf dist build src/directives",
"lint": "echo \"lint not configured\" && exit 0",
"prerelease": "pnpm run validate && np prerelease --yolo --any-branch --tag next",
"prettier": "pnpm run prettier.base --write",
- "prettier.base": "prettier \"./({scripts,src,__tests__}/**/*.{ts,tsx,js,jsx})|*.{ts,tsx,js,jsx}\"",
+ "prettier.base": "prettier \"./({scripts,src,__tests__,!src/directives}/**/*.{ts,tsx,js,jsx})|*.{ts,tsx,js,jsx}\" --ignore-path=\"./.prettierignore\"",
"prettier.dry-run": "pnpm run prettier.base --list-different",
"test": "jest",
"tsc": "tsc -p .",
diff --git a/example-project/component-library-angular/src/directives/boolean-value-accessor.ts b/example-project/component-library-angular/src/directives/boolean-value-accessor.ts
index 77beddbd..68f19ab2 100644
--- a/example-project/component-library-angular/src/directives/boolean-value-accessor.ts
+++ b/example-project/component-library-angular/src/directives/boolean-value-accessor.ts
@@ -7,15 +7,15 @@ import { ValueAccessor } from './value-accessor';
/* tslint:disable-next-line:directive-selector */
selector: 'my-checkbox',
host: {
- '(myChange)': 'handleChangeEvent($event.target.checked)',
+ '(myChange)': 'handleChangeEvent($event.target.checked)'
},
providers: [
{
provide: NG_VALUE_ACCESSOR,
useExisting: BooleanValueAccessor,
- multi: true,
- },
- ],
+ multi: true
+ }
+ ]
})
export class BooleanValueAccessor extends ValueAccessor {
constructor(el: ElementRef) {
diff --git a/example-project/component-library-angular/src/directives/index.ts b/example-project/component-library-angular/src/directives/index.ts
deleted file mode 100644
index 5ce45445..00000000
--- a/example-project/component-library-angular/src/directives/index.ts
+++ /dev/null
@@ -1,6 +0,0 @@
-export * from './boolean-value-accessor';
-export * from './number-value-accessor';
-export * from './radio-value-accessor';
-export * from './select-value-accessor';
-export * from './text-value-accessor';
-export * from './value-accessor';
diff --git a/example-project/component-library-angular/src/directives/number-value-accessor.ts b/example-project/component-library-angular/src/directives/number-value-accessor.ts
index f48462e5..8046e221 100644
--- a/example-project/component-library-angular/src/directives/number-value-accessor.ts
+++ b/example-project/component-library-angular/src/directives/number-value-accessor.ts
@@ -7,22 +7,22 @@ import { ValueAccessor } from './value-accessor';
/* tslint:disable-next-line:directive-selector */
selector: 'my-input[type=number]',
host: {
- '(myChange)': 'handleChangeEvent($event.target.value)',
+ '(myChange)': 'handleChangeEvent($event.target.value)'
},
providers: [
{
provide: NG_VALUE_ACCESSOR,
useExisting: NumericValueAccessor,
- multi: true,
- },
- ],
+ multi: true
+ }
+ ]
})
export class NumericValueAccessor extends ValueAccessor {
constructor(el: ElementRef) {
super(el);
}
override registerOnChange(fn: (_: number | null) => void) {
- super.registerOnChange((value) => {
+ super.registerOnChange(value => {
fn(value === '' ? null : parseFloat(value));
});
}
diff --git a/example-project/component-library-angular/src/directives/proxies.ts b/example-project/component-library-angular/src/directives/proxies.ts
index e4912c24..6c795aea 100644
--- a/example-project/component-library-angular/src/directives/proxies.ts
+++ b/example-project/component-library-angular/src/directives/proxies.ts
@@ -6,45 +6,16 @@ import { ProxyCmp, proxyOutputs } from './angular-component-lib/utils';
import { Components } from 'component-library';
+
@ProxyCmp({
- inputs: [
- 'buttonType',
- 'color',
- 'disabled',
- 'download',
- 'expand',
- 'fill',
- 'href',
- 'mode',
- 'rel',
- 'shape',
- 'size',
- 'strong',
- 'target',
- 'type',
- ],
+ inputs: ['buttonType', 'color', 'disabled', 'download', 'expand', 'fill', 'href', 'mode', 'rel', 'shape', 'size', 'strong', 'target', 'type']
})
@Component({
selector: 'my-button',
changeDetection: ChangeDetectionStrategy.OnPush,
template: '',
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
- inputs: [
- 'buttonType',
- 'color',
- 'disabled',
- 'download',
- 'expand',
- 'fill',
- 'href',
- 'mode',
- 'rel',
- 'shape',
- 'size',
- 'strong',
- 'target',
- 'type',
- ],
+ inputs: ['buttonType', 'color', 'disabled', 'download', 'expand', 'fill', 'href', 'mode', 'rel', 'shape', 'size', 'strong', 'target', 'type'],
})
export class MyButton {
protected el: HTMLElement;
@@ -55,6 +26,7 @@ export class MyButton {
}
}
+
export declare interface MyButton extends Components.MyButton {
/**
* Emitted when the button has focus.
@@ -66,8 +38,9 @@ export declare interface MyButton extends Components.MyButton {
myBlur: EventEmitter>;
}
+
@ProxyCmp({
- inputs: ['checked', 'color', 'disabled', 'indeterminate', 'mode', 'name', 'value'],
+ inputs: ['checked', 'color', 'disabled', 'indeterminate', 'mode', 'name', 'value']
})
@Component({
selector: 'my-checkbox',
@@ -85,6 +58,7 @@ export class MyCheckbox {
}
}
+
import type { CheckboxChangeEventDetail as IMyCheckboxCheckboxChangeEventDetail } from 'component-library';
export declare interface MyCheckbox extends Components.MyCheckbox {
@@ -102,8 +76,9 @@ export declare interface MyCheckbox extends Components.MyCheckbox {
myBlur: EventEmitter>;
}
+
@ProxyCmp({
- inputs: ['age', 'favoriteKidName', 'first', 'kidsNames', 'last', 'middle'],
+ inputs: ['age', 'favoriteKidName', 'first', 'kidsNames', 'last', 'middle']
})
@Component({
selector: 'my-component',
@@ -121,6 +96,7 @@ export class MyComponent {
}
}
+
export declare interface MyComponent extends Components.MyComponent {
/**
* Testing an event without value
@@ -128,72 +104,17 @@ export declare interface MyComponent extends Components.MyComponent {
myCustomEvent: EventEmitter>;
}
+
@ProxyCmp({
- inputs: [
- 'accept',
- 'autocapitalize',
- 'autocomplete',
- 'autocorrect',
- 'autofocus',
- 'clearInput',
- 'clearOnEdit',
- 'color',
- 'disabled',
- 'enterkeyhint',
- 'inputmode',
- 'max',
- 'maxlength',
- 'min',
- 'minlength',
- 'mode',
- 'multiple',
- 'name',
- 'pattern',
- 'placeholder',
- 'readonly',
- 'required',
- 'size',
- 'spellcheck',
- 'step',
- 'type',
- 'value',
- ],
- methods: ['setFocus', 'getInputElement'],
+ inputs: ['accept', 'autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'clearInput', 'clearOnEdit', 'color', 'disabled', 'enterkeyhint', 'inputmode', 'max', 'maxlength', 'min', 'minlength', 'mode', 'multiple', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'size', 'spellcheck', 'step', 'type', 'value'],
+ methods: ['setFocus', 'getInputElement']
})
@Component({
selector: 'my-input',
changeDetection: ChangeDetectionStrategy.OnPush,
template: '',
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
- inputs: [
- 'accept',
- 'autocapitalize',
- 'autocomplete',
- 'autocorrect',
- 'autofocus',
- 'clearInput',
- 'clearOnEdit',
- 'color',
- 'disabled',
- 'enterkeyhint',
- 'inputmode',
- 'max',
- 'maxlength',
- 'min',
- 'minlength',
- 'mode',
- 'multiple',
- 'name',
- 'pattern',
- 'placeholder',
- 'readonly',
- 'required',
- 'size',
- 'spellcheck',
- 'step',
- 'type',
- 'value',
- ],
+ inputs: ['accept', 'autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'clearInput', 'clearOnEdit', 'color', 'disabled', 'enterkeyhint', 'inputmode', 'max', 'maxlength', 'min', 'minlength', 'mode', 'multiple', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'size', 'spellcheck', 'step', 'type', 'value'],
})
export class MyInput {
protected el: HTMLElement;
@@ -204,6 +125,7 @@ export class MyInput {
}
}
+
import type { InputChangeEventDetail as IMyInputInputChangeEventDetail } from 'component-library';
export declare interface MyInput extends Components.MyInput {
@@ -225,53 +147,28 @@ export declare interface MyInput extends Components.MyInput {
myFocus: EventEmitter>;
}
+
@ProxyCmp({
- inputs: [
- 'animated',
- 'backdropDismiss',
- 'component',
- 'componentProps',
- 'cssClass',
- 'event',
- 'keyboardClose',
- 'mode',
- 'showBackdrop',
- 'translucent',
- ],
- methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss'],
+ inputs: ['animated', 'backdropDismiss', 'component', 'componentProps', 'cssClass', 'event', 'keyboardClose', 'mode', 'showBackdrop', 'translucent'],
+ methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss']
})
@Component({
selector: 'my-popover',
changeDetection: ChangeDetectionStrategy.OnPush,
template: '',
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
- inputs: [
- 'animated',
- 'backdropDismiss',
- 'component',
- 'componentProps',
- 'cssClass',
- 'event',
- 'keyboardClose',
- 'mode',
- 'showBackdrop',
- 'translucent',
- ],
+ inputs: ['animated', 'backdropDismiss', 'component', 'componentProps', 'cssClass', 'event', 'keyboardClose', 'mode', 'showBackdrop', 'translucent'],
})
export class MyPopover {
protected el: HTMLElement;
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
c.detach();
this.el = r.nativeElement;
- proxyOutputs(this, this.el, [
- 'myPopoverDidPresent',
- 'myPopoverWillPresent',
- 'myPopoverWillDismiss',
- 'myPopoverDidDismiss',
- ]);
+ proxyOutputs(this, this.el, ['myPopoverDidPresent', 'myPopoverWillPresent', 'myPopoverWillDismiss', 'myPopoverDidDismiss']);
}
}
+
import type { OverlayEventDetail as IMyPopoverOverlayEventDetail } from 'component-library';
export declare interface MyPopover extends Components.MyPopover {
@@ -293,8 +190,9 @@ export declare interface MyPopover extends Components.MyPopover {
myPopoverDidDismiss: EventEmitter>;
}
+
@ProxyCmp({
- inputs: ['color', 'disabled', 'mode', 'name', 'value'],
+ inputs: ['color', 'disabled', 'mode', 'name', 'value']
})
@Component({
selector: 'my-radio',
@@ -312,6 +210,7 @@ export class MyRadio {
}
}
+
export declare interface MyRadio extends Components.MyRadio {
/**
* Emitted when the radio button has focus.
@@ -327,8 +226,9 @@ export declare interface MyRadio extends Components.MyRadio {
mySelect: EventEmitter>;
}
+
@ProxyCmp({
- inputs: ['allowEmptySelection', 'name', 'value'],
+ inputs: ['allowEmptySelection', 'name', 'value']
})
@Component({
selector: 'my-radio-group',
@@ -346,6 +246,7 @@ export class MyRadioGroup {
}
}
+
import type { RadioGroupChangeEventDetail as IMyRadioGroupRadioGroupChangeEventDetail } from 'component-library';
export declare interface MyRadioGroup extends Components.MyRadioGroup {
@@ -355,43 +256,16 @@ export declare interface MyRadioGroup extends Components.MyRadioGroup {
myChange: EventEmitter>;
}
+
@ProxyCmp({
- inputs: [
- 'color',
- 'debounce',
- 'disabled',
- 'dualKnobs',
- 'max',
- 'min',
- 'mode',
- 'name',
- 'pin',
- 'snaps',
- 'step',
- 'ticks',
- 'value',
- ],
+ inputs: ['color', 'debounce', 'disabled', 'dualKnobs', 'max', 'min', 'mode', 'name', 'pin', 'snaps', 'step', 'ticks', 'value']
})
@Component({
selector: 'my-range',
changeDetection: ChangeDetectionStrategy.OnPush,
template: '',
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
- inputs: [
- 'color',
- 'debounce',
- 'disabled',
- 'dualKnobs',
- 'max',
- 'min',
- 'mode',
- 'name',
- 'pin',
- 'snaps',
- 'step',
- 'ticks',
- 'value',
- ],
+ inputs: ['color', 'debounce', 'disabled', 'dualKnobs', 'max', 'min', 'mode', 'name', 'pin', 'snaps', 'step', 'ticks', 'value'],
})
export class MyRange {
protected el: HTMLElement;
@@ -402,6 +276,7 @@ export class MyRange {
}
}
+
import type { RangeChangeEventDetail as IMyRangeRangeChangeEventDetail } from 'component-library';
export declare interface MyRange extends Components.MyRange {
@@ -418,3 +293,5 @@ export declare interface MyRange extends Components.MyRange {
*/
myBlur: EventEmitter>;
}
+
+
diff --git a/example-project/component-library-angular/src/directives/radio-value-accessor.ts b/example-project/component-library-angular/src/directives/radio-value-accessor.ts
index ed74ad18..ecc00ea9 100644
--- a/example-project/component-library-angular/src/directives/radio-value-accessor.ts
+++ b/example-project/component-library-angular/src/directives/radio-value-accessor.ts
@@ -7,15 +7,15 @@ import { ValueAccessor } from './value-accessor';
/* tslint:disable-next-line:directive-selector */
selector: 'my-radio',
host: {
- '(mySelect)': 'handleChangeEvent($event.target.checked)',
+ '(mySelect)': 'handleChangeEvent($event.target.checked)'
},
providers: [
{
provide: NG_VALUE_ACCESSOR,
useExisting: RadioValueAccessor,
- multi: true,
- },
- ],
+ multi: true
+ }
+ ]
})
export class RadioValueAccessor extends ValueAccessor {
constructor(el: ElementRef) {
diff --git a/example-project/component-library-angular/src/directives/select-value-accessor.ts b/example-project/component-library-angular/src/directives/select-value-accessor.ts
index 095853f0..30d5925c 100644
--- a/example-project/component-library-angular/src/directives/select-value-accessor.ts
+++ b/example-project/component-library-angular/src/directives/select-value-accessor.ts
@@ -7,15 +7,15 @@ import { ValueAccessor } from './value-accessor';
/* tslint:disable-next-line:directive-selector */
selector: 'my-range, my-radio-group',
host: {
- '(myChange)': 'handleChangeEvent($event.target.value)',
+ '(myChange)': 'handleChangeEvent($event.target.value)'
},
providers: [
{
provide: NG_VALUE_ACCESSOR,
useExisting: SelectValueAccessor,
- multi: true,
- },
- ],
+ multi: true
+ }
+ ]
})
export class SelectValueAccessor extends ValueAccessor {
constructor(el: ElementRef) {
diff --git a/example-project/component-library-angular/src/directives/text-value-accessor.ts b/example-project/component-library-angular/src/directives/text-value-accessor.ts
index 0bf5bd14..b6a71b70 100644
--- a/example-project/component-library-angular/src/directives/text-value-accessor.ts
+++ b/example-project/component-library-angular/src/directives/text-value-accessor.ts
@@ -7,15 +7,15 @@ import { ValueAccessor } from './value-accessor';
/* tslint:disable-next-line:directive-selector */
selector: 'my-input[type=text]',
host: {
- '(myChange)': 'handleChangeEvent($event.target.value)',
+ '(myChange)': 'handleChangeEvent($event.target.value)'
},
providers: [
{
provide: NG_VALUE_ACCESSOR,
useExisting: TextValueAccessor,
- multi: true,
- },
- ],
+ multi: true
+ }
+ ]
})
export class TextValueAccessor extends ValueAccessor {
constructor(el: ElementRef) {
diff --git a/example-project/component-library-angular/src/directives/value-accessor.ts b/example-project/component-library-angular/src/directives/value-accessor.ts
index f67457de..6bb76a6d 100644
--- a/example-project/component-library-angular/src/directives/value-accessor.ts
+++ b/example-project/component-library-angular/src/directives/value-accessor.ts
@@ -3,12 +3,9 @@ import { ControlValueAccessor } from '@angular/forms';
@Directive({})
export class ValueAccessor implements ControlValueAccessor {
- private onChange: (value: any) => void = () => {
- /**/
- };
- private onTouched: () => void = () => {
- /**/
- };
+
+ private onChange: (value: any) => void = () => {/**/};
+ private onTouched: () => void = () => {/**/};
protected lastValue: any;
constructor(protected el: ElementRef) {}
diff --git a/example-project/component-library-angular/src/index.ts b/example-project/component-library-angular/src/index.ts
index d4e5ef1b..44f501f6 100644
--- a/example-project/component-library-angular/src/index.ts
+++ b/example-project/component-library-angular/src/index.ts
@@ -1,7 +1,11 @@
// DIRECTIVES
export * from './directives/proxies';
-
-export * from './directives';
+export * from './directives/boolean-value-accessor';
+export * from './directives/number-value-accessor';
+export * from './directives/radio-value-accessor';
+export * from './directives/select-value-accessor';
+export * from './directives/text-value-accessor';
+export * from './directives/value-accessor';
// PACKAGE MODULE
export { ComponentLibraryModule } from './component-library-module';
diff --git a/example-project/component-library-react/.prettierignore b/example-project/component-library-react/.prettierignore
new file mode 100644
index 00000000..30646903
--- /dev/null
+++ b/example-project/component-library-react/.prettierignore
@@ -0,0 +1,2 @@
+# autogenerated files from stencil
+src/components.ts
diff --git a/example-project/component-library-react/src/components.ts b/example-project/component-library-react/src/components.ts
index 25acecd1..c0089ae6 100644
--- a/example-project/component-library-react/src/components.ts
+++ b/example-project/component-library-react/src/components.ts
@@ -9,208 +9,151 @@
import type { EventName, StencilReactComponent } from '@stencil/react-output-target/runtime';
import { createComponent } from '@stencil/react-output-target/runtime';
-import {
- type CheckboxChangeEventDetail,
- type InputChangeEventDetail,
- type MyCheckboxCustomEvent,
- type MyInputCustomEvent,
- type MyPopoverCustomEvent,
- type MyRadioGroupCustomEvent,
- type MyRangeCustomEvent,
- type OverlayEventDetail,
- type RadioGroupChangeEventDetail,
- type RangeChangeEventDetail,
-} from 'component-library';
-import {
- MyButton as MyButtonElement,
- defineCustomElement as defineMyButton,
-} from 'component-library/components/my-button.js';
-import {
- MyCheckbox as MyCheckboxElement,
- defineCustomElement as defineMyCheckbox,
-} from 'component-library/components/my-checkbox.js';
-import {
- MyComponent as MyComponentElement,
- defineCustomElement as defineMyComponent,
-} from 'component-library/components/my-component.js';
-import {
- MyInput as MyInputElement,
- defineCustomElement as defineMyInput,
-} from 'component-library/components/my-input.js';
-import {
- MyPopover as MyPopoverElement,
- defineCustomElement as defineMyPopover,
-} from 'component-library/components/my-popover.js';
-import {
- MyRadioGroup as MyRadioGroupElement,
- defineCustomElement as defineMyRadioGroup,
-} from 'component-library/components/my-radio-group.js';
-import {
- MyRadio as MyRadioElement,
- defineCustomElement as defineMyRadio,
-} from 'component-library/components/my-radio.js';
-import {
- MyRange as MyRangeElement,
- defineCustomElement as defineMyRange,
-} from 'component-library/components/my-range.js';
+import { type CheckboxChangeEventDetail, type InputChangeEventDetail, type MyCheckboxCustomEvent, type MyInputCustomEvent, type MyPopoverCustomEvent, type MyRadioGroupCustomEvent, type MyRangeCustomEvent, type OverlayEventDetail, type RadioGroupChangeEventDetail, type RangeChangeEventDetail } from "component-library";
+import { MyButton as MyButtonElement, defineCustomElement as defineMyButton } from "component-library/components/my-button.js";
+import { MyCheckbox as MyCheckboxElement, defineCustomElement as defineMyCheckbox } from "component-library/components/my-checkbox.js";
+import { MyComponent as MyComponentElement, defineCustomElement as defineMyComponent } from "component-library/components/my-component.js";
+import { MyInput as MyInputElement, defineCustomElement as defineMyInput } from "component-library/components/my-input.js";
+import { MyPopover as MyPopoverElement, defineCustomElement as defineMyPopover } from "component-library/components/my-popover.js";
+import { MyRadioGroup as MyRadioGroupElement, defineCustomElement as defineMyRadioGroup } from "component-library/components/my-radio-group.js";
+import { MyRadio as MyRadioElement, defineCustomElement as defineMyRadio } from "component-library/components/my-radio.js";
+import { MyRange as MyRangeElement, defineCustomElement as defineMyRange } from "component-library/components/my-range.js";
import React from 'react';
type MyButtonEvents = {
- onMyFocus: EventName>;
- onMyBlur: EventName>;
+ onMyFocus: EventName>,
+ onMyBlur: EventName>
};
-export const MyButton: StencilReactComponent = /*@__PURE__*/ createComponent<
- MyButtonElement,
- MyButtonEvents
->({
- tagName: 'my-button',
- elementClass: MyButtonElement,
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
- react: React,
- events: {
- onMyFocus: 'myFocus',
- onMyBlur: 'myBlur',
- } as MyButtonEvents,
- defineCustomElement: defineMyButton,
+export const MyButton: StencilReactComponent = /*@__PURE__*/ createComponent({
+ tagName: 'my-button',
+ elementClass: MyButtonElement,
+ // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
+ react: React,
+ events: {
+ onMyFocus: 'myFocus',
+ onMyBlur: 'myBlur'
+ } as MyButtonEvents,
+ defineCustomElement: defineMyButton
});
type MyCheckboxEvents = {
- onMyChange: EventName>;
- onMyFocus: EventName>;
- onMyBlur: EventName>;
+ onMyChange: EventName>,
+ onMyFocus: EventName>,
+ onMyBlur: EventName>
};
-export const MyCheckbox: StencilReactComponent = /*@__PURE__*/ createComponent<
- MyCheckboxElement,
- MyCheckboxEvents
->({
- tagName: 'my-checkbox',
- elementClass: MyCheckboxElement,
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
- react: React,
- events: {
- onMyChange: 'myChange',
- onMyFocus: 'myFocus',
- onMyBlur: 'myBlur',
- } as MyCheckboxEvents,
- defineCustomElement: defineMyCheckbox,
+export const MyCheckbox: StencilReactComponent = /*@__PURE__*/ createComponent({
+ tagName: 'my-checkbox',
+ elementClass: MyCheckboxElement,
+ // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
+ react: React,
+ events: {
+ onMyChange: 'myChange',
+ onMyFocus: 'myFocus',
+ onMyBlur: 'myBlur'
+ } as MyCheckboxEvents,
+ defineCustomElement: defineMyCheckbox
});
type MyComponentEvents = { onMyCustomEvent: EventName> };
-export const MyComponent: StencilReactComponent = /*@__PURE__*/ createComponent<
- MyComponentElement,
- MyComponentEvents
->({
- tagName: 'my-component',
- elementClass: MyComponentElement,
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
- react: React,
- events: { onMyCustomEvent: 'myCustomEvent' } as MyComponentEvents,
- defineCustomElement: defineMyComponent,
+export const MyComponent: StencilReactComponent = /*@__PURE__*/ createComponent({
+ tagName: 'my-component',
+ elementClass: MyComponentElement,
+ // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
+ react: React,
+ events: { onMyCustomEvent: 'myCustomEvent' } as MyComponentEvents,
+ defineCustomElement: defineMyComponent
});
type MyInputEvents = {
- onMyInput: EventName>;
- onMyChange: EventName>;
- onMyBlur: EventName>;
- onMyFocus: EventName>;
+ onMyInput: EventName>,
+ onMyChange: EventName>,
+ onMyBlur: EventName>,
+ onMyFocus: EventName>
};
-export const MyInput: StencilReactComponent = /*@__PURE__*/ createComponent<
- MyInputElement,
- MyInputEvents
->({
- tagName: 'my-input',
- elementClass: MyInputElement,
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
- react: React,
- events: {
- onMyInput: 'myInput',
- onMyChange: 'myChange',
- onMyBlur: 'myBlur',
- onMyFocus: 'myFocus',
- } as MyInputEvents,
- defineCustomElement: defineMyInput,
+export const MyInput: StencilReactComponent = /*@__PURE__*/ createComponent({
+ tagName: 'my-input',
+ elementClass: MyInputElement,
+ // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
+ react: React,
+ events: {
+ onMyInput: 'myInput',
+ onMyChange: 'myChange',
+ onMyBlur: 'myBlur',
+ onMyFocus: 'myFocus'
+ } as MyInputEvents,
+ defineCustomElement: defineMyInput
});
type MyPopoverEvents = {
- onMyPopoverDidPresent: EventName>;
- onMyPopoverWillPresent: EventName>;
- onMyPopoverWillDismiss: EventName>;
- onMyPopoverDidDismiss: EventName>;
+ onMyPopoverDidPresent: EventName>,
+ onMyPopoverWillPresent: EventName>,
+ onMyPopoverWillDismiss: EventName>,
+ onMyPopoverDidDismiss: EventName>
};
-export const MyPopover: StencilReactComponent = /*@__PURE__*/ createComponent<
- MyPopoverElement,
- MyPopoverEvents
->({
- tagName: 'my-popover',
- elementClass: MyPopoverElement,
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
- react: React,
- events: {
- onMyPopoverDidPresent: 'myPopoverDidPresent',
- onMyPopoverWillPresent: 'myPopoverWillPresent',
- onMyPopoverWillDismiss: 'myPopoverWillDismiss',
- onMyPopoverDidDismiss: 'myPopoverDidDismiss',
- } as MyPopoverEvents,
- defineCustomElement: defineMyPopover,
+export const MyPopover: StencilReactComponent = /*@__PURE__*/ createComponent({
+ tagName: 'my-popover',
+ elementClass: MyPopoverElement,
+ // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
+ react: React,
+ events: {
+ onMyPopoverDidPresent: 'myPopoverDidPresent',
+ onMyPopoverWillPresent: 'myPopoverWillPresent',
+ onMyPopoverWillDismiss: 'myPopoverWillDismiss',
+ onMyPopoverDidDismiss: 'myPopoverDidDismiss'
+ } as MyPopoverEvents,
+ defineCustomElement: defineMyPopover
});
type MyRadioEvents = {
- onMyFocus: EventName>;
- onMyBlur: EventName>;
- onMySelect: EventName>;
+ onMyFocus: EventName>,
+ onMyBlur: EventName>,
+ onMySelect: EventName>
};
-export const MyRadio: StencilReactComponent = /*@__PURE__*/ createComponent<
- MyRadioElement,
- MyRadioEvents
->({
- tagName: 'my-radio',
- elementClass: MyRadioElement,
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
- react: React,
- events: {
- onMyFocus: 'myFocus',
- onMyBlur: 'myBlur',
- onMySelect: 'mySelect',
- } as MyRadioEvents,
- defineCustomElement: defineMyRadio,
+export const MyRadio: StencilReactComponent = /*@__PURE__*/ createComponent({
+ tagName: 'my-radio',
+ elementClass: MyRadioElement,
+ // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
+ react: React,
+ events: {
+ onMyFocus: 'myFocus',
+ onMyBlur: 'myBlur',
+ onMySelect: 'mySelect'
+ } as MyRadioEvents,
+ defineCustomElement: defineMyRadio
});
type MyRadioGroupEvents = { onMyChange: EventName> };
-export const MyRadioGroup: StencilReactComponent =
- /*@__PURE__*/ createComponent({
+export const MyRadioGroup: StencilReactComponent = /*@__PURE__*/ createComponent({
tagName: 'my-radio-group',
elementClass: MyRadioGroupElement,
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
react: React,
events: { onMyChange: 'myChange' } as MyRadioGroupEvents,
- defineCustomElement: defineMyRadioGroup,
- });
+ defineCustomElement: defineMyRadioGroup
+});
type MyRangeEvents = {
- onMyChange: EventName>;
- onMyFocus: EventName>;
- onMyBlur: EventName>;
+ onMyChange: EventName>,
+ onMyFocus: EventName>,
+ onMyBlur: EventName>
};
-export const MyRange: StencilReactComponent = /*@__PURE__*/ createComponent<
- MyRangeElement,
- MyRangeEvents
->({
- tagName: 'my-range',
- elementClass: MyRangeElement,
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
- react: React,
- events: {
- onMyChange: 'myChange',
- onMyFocus: 'myFocus',
- onMyBlur: 'myBlur',
- } as MyRangeEvents,
- defineCustomElement: defineMyRange,
+export const MyRange: StencilReactComponent = /*@__PURE__*/ createComponent({
+ tagName: 'my-range',
+ elementClass: MyRangeElement,
+ // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
+ react: React,
+ events: {
+ onMyChange: 'myChange',
+ onMyFocus: 'myFocus',
+ onMyBlur: 'myBlur'
+ } as MyRangeEvents,
+ defineCustomElement: defineMyRange
});
diff --git a/example-project/component-library-vue/.prettierignore b/example-project/component-library-vue/.prettierignore
new file mode 100644
index 00000000..2b0c602a
--- /dev/null
+++ b/example-project/component-library-vue/.prettierignore
@@ -0,0 +1,2 @@
+# autogenerated files from stencil
+src/index.ts
diff --git a/example-project/component-library-vue/src/index.ts b/example-project/component-library-vue/src/index.ts
index 448ff59c..7c7112e8 100644
--- a/example-project/component-library-vue/src/index.ts
+++ b/example-project/component-library-vue/src/index.ts
@@ -14,290 +14,279 @@ import { defineCustomElement as defineMyRadio } from 'component-library/componen
import { defineCustomElement as defineMyRadioGroup } from 'component-library/components/my-radio-group.js';
import { defineCustomElement as defineMyRange } from 'component-library/components/my-range.js';
-export const MyButton = /*@__PURE__*/ globalThis.window
- ? defineContainer('my-button', defineMyButton, [
- 'color',
- 'buttonType',
- 'disabled',
- 'expand',
- 'fill',
- 'download',
- 'href',
- 'rel',
- 'shape',
- 'size',
- 'strong',
- 'target',
- 'type',
- 'myFocus',
- 'myBlur',
- ])
- : defineStencilSSRComponent({
- tagName: 'my-button',
- hydrateModule: import('component-library/hydrate'),
- props: {
- color: [String, 'color'],
- buttonType: [String, 'button-type'],
- disabled: [Boolean, 'disabled'],
- expand: [String, 'expand'],
- fill: [String, 'fill'],
- download: [String, 'download'],
- href: [String, 'href'],
- rel: [String, 'rel'],
- shape: [String, 'shape'],
- size: [String, 'size'],
- strong: [Boolean, 'strong'],
- target: [String, 'target'],
- type: [String, 'type'],
- onMyFocus: [Function],
- onMyBlur: [Function],
- },
- });
-export const MyCheckbox = /*@__PURE__*/ globalThis.window
- ? defineContainer(
- 'my-checkbox',
- defineMyCheckbox,
- ['color', 'name', 'checked', 'indeterminate', 'disabled', 'value', 'myChange', 'myFocus', 'myBlur', 'myStyle'],
- 'checked',
- 'myChange'
- )
- : defineStencilSSRComponent({
- tagName: 'my-checkbox',
- hydrateModule: import('component-library/hydrate'),
- props: {
- color: [String, 'color'],
- name: [String, 'name'],
- checked: [Boolean, 'checked'],
- indeterminate: [Boolean, 'indeterminate'],
- disabled: [Boolean, 'disabled'],
- value: [String, 'value'],
- onMyChange: [Function],
- onMyFocus: [Function],
- onMyBlur: [Function],
- onMyStyle: [Function],
- },
- });
+export const MyButton = /*@__PURE__*/ globalThis.window ? defineContainer('my-button', defineMyButton, [
+ 'color',
+ 'buttonType',
+ 'disabled',
+ 'expand',
+ 'fill',
+ 'download',
+ 'href',
+ 'rel',
+ 'shape',
+ 'size',
+ 'strong',
+ 'target',
+ 'type',
+ 'myFocus',
+ 'myBlur'
+]) : defineStencilSSRComponent({
+ tagName: 'my-button',
+ hydrateModule: import('component-library/hydrate'),
+ props: {
+ 'color': [String, "color"],
+ 'buttonType': [String, "button-type"],
+ 'disabled': [Boolean, "disabled"],
+ 'expand': [String, "expand"],
+ 'fill': [String, "fill"],
+ 'download': [String, "download"],
+ 'href': [String, "href"],
+ 'rel': [String, "rel"],
+ 'shape': [String, "shape"],
+ 'size': [String, "size"],
+ 'strong': [Boolean, "strong"],
+ 'target': [String, "target"],
+ 'type': [String, "type"],
+ 'onMyFocus': [Function],
+ 'onMyBlur': [Function]
+ }
+});
-export const MyComponent = /*@__PURE__*/ globalThis.window
- ? defineContainer('my-component', defineMyComponent, [
- 'first',
- 'middle',
- 'last',
- 'age',
- 'kidsNames',
- 'favoriteKidName',
- 'myCustomEvent',
- ])
- : defineStencilSSRComponent({
- tagName: 'my-component',
- hydrateModule: import('component-library/hydrate'),
- props: {
- first: [String, 'first'],
- middle: [String, 'middle'],
- last: [String, 'last'],
- age: [Number, 'age'],
- favoriteKidName: [String, 'favorite-kid-name'],
- onMyCustomEvent: [Function],
- },
- });
-export const MyInput = /*@__PURE__*/ globalThis.window
- ? defineContainer(
- 'my-input',
- defineMyInput,
- [
- 'color',
- 'accept',
- 'autocapitalize',
- 'autocomplete',
- 'autocorrect',
- 'autofocus',
- 'clearInput',
- 'clearOnEdit',
- 'disabled',
- 'enterkeyhint',
- 'inputmode',
- 'max',
- 'maxlength',
- 'min',
- 'minlength',
- 'multiple',
- 'name',
- 'pattern',
- 'placeholder',
- 'readonly',
- 'required',
- 'spellcheck',
- 'step',
- 'size',
- 'type',
- 'value',
- 'myInput',
- 'myChange',
- 'myBlur',
- 'myFocus',
- ],
- 'value',
- 'myChange'
- )
- : defineStencilSSRComponent({
- tagName: 'my-input',
- hydrateModule: import('component-library/hydrate'),
- props: {
- color: [String, 'color'],
- accept: [String, 'accept'],
- autocapitalize: [String, 'autocapitalize'],
- autocomplete: [String, 'autocomplete'],
- autocorrect: [String, 'autocorrect'],
- autofocus: [Boolean, 'autofocus'],
- clearInput: [Boolean, 'clear-input'],
- clearOnEdit: [Boolean, 'clear-on-edit'],
- disabled: [Boolean, 'disabled'],
- enterkeyhint: [String, 'enterkeyhint'],
- inputmode: [String, 'inputmode'],
- max: [String, 'max'],
- maxlength: [Number, 'maxlength'],
- min: [String, 'min'],
- minlength: [Number, 'minlength'],
- multiple: [Boolean, 'multiple'],
- name: [String, 'name'],
- pattern: [String, 'pattern'],
- placeholder: [String, 'placeholder'],
- readonly: [Boolean, 'readonly'],
- required: [Boolean, 'required'],
- spellcheck: [Boolean, 'spellcheck'],
- step: [String, 'step'],
- size: [Number, 'size'],
- type: [String, 'type'],
- onMyInput: [Function],
- onMyChange: [Function],
- onMyBlur: [Function],
- onMyFocus: [Function],
- },
- });
+export const MyCheckbox = /*@__PURE__*/ globalThis.window ? defineContainer('my-checkbox', defineMyCheckbox, [
+ 'color',
+ 'name',
+ 'checked',
+ 'indeterminate',
+ 'disabled',
+ 'value',
+ 'myChange',
+ 'myFocus',
+ 'myBlur',
+ 'myStyle'
+],
+'checked', 'myChange') : defineStencilSSRComponent({
+ tagName: 'my-checkbox',
+ hydrateModule: import('component-library/hydrate'),
+ props: {
+ 'color': [String, "color"],
+ 'name': [String, "name"],
+ 'checked': [Boolean, "checked"],
+ 'indeterminate': [Boolean, "indeterminate"],
+ 'disabled': [Boolean, "disabled"],
+ 'value': [String, "value"],
+ 'onMyChange': [Function],
+ 'onMyFocus': [Function],
+ 'onMyBlur': [Function],
+ 'onMyStyle': [Function]
+ }
+});
-export const MyPopover = /*@__PURE__*/ globalThis.window
- ? defineContainer('my-popover', defineMyPopover, [
- 'component',
- 'componentProps',
- 'keyboardClose',
- 'cssClass',
- 'backdropDismiss',
- 'event',
- 'showBackdrop',
- 'translucent',
- 'animated',
- 'myPopoverDidPresent',
- 'myPopoverWillPresent',
- 'myPopoverWillDismiss',
- 'myPopoverDidDismiss',
- ])
- : defineStencilSSRComponent({
- tagName: 'my-popover',
- hydrateModule: import('component-library/hydrate'),
- props: {
- component: [String, 'component'],
- keyboardClose: [Boolean, 'keyboard-close'],
- cssClass: [String, 'css-class'],
- backdropDismiss: [Boolean, 'backdrop-dismiss'],
- showBackdrop: [Boolean, 'show-backdrop'],
- translucent: [Boolean, 'translucent'],
- animated: [Boolean, 'animated'],
- onMyPopoverDidPresent: [Function],
- onMyPopoverWillPresent: [Function],
- onMyPopoverWillDismiss: [Function],
- onMyPopoverDidDismiss: [Function],
- },
- });
-export const MyRadio = /*@__PURE__*/ globalThis.window
- ? defineContainer('my-radio', defineMyRadio, [
- 'color',
- 'name',
- 'disabled',
- 'value',
- 'myStyle',
- 'myFocus',
- 'myBlur',
- 'mySelect',
- ])
- : defineStencilSSRComponent({
- tagName: 'my-radio',
- hydrateModule: import('component-library/hydrate'),
- props: {
- color: [String, 'color'],
- name: [String, 'name'],
- disabled: [Boolean, 'disabled'],
- onMyStyle: [Function],
- onMyFocus: [Function],
- onMyBlur: [Function],
- onMySelect: [Function],
- },
- });
+export const MyComponent = /*@__PURE__*/ globalThis.window ? defineContainer('my-component', defineMyComponent, [
+ 'first',
+ 'middle',
+ 'last',
+ 'age',
+ 'kidsNames',
+ 'favoriteKidName',
+ 'myCustomEvent'
+]) : defineStencilSSRComponent({
+ tagName: 'my-component',
+ hydrateModule: import('component-library/hydrate'),
+ props: {
+ 'first': [String, "first"],
+ 'middle': [String, "middle"],
+ 'last': [String, "last"],
+ 'age': [Number, "age"],
+ 'favoriteKidName': [String, "favorite-kid-name"],
+ 'onMyCustomEvent': [Function]
+ }
+});
-export const MyRadioGroup = /*@__PURE__*/ globalThis.window
- ? defineContainer(
- 'my-radio-group',
- defineMyRadioGroup,
- ['allowEmptySelection', 'name', 'value', 'myChange'],
- 'value',
- 'myChange'
- )
- : defineStencilSSRComponent({
- tagName: 'my-radio-group',
- hydrateModule: import('component-library/hydrate'),
- props: {
- allowEmptySelection: [Boolean, 'allow-empty-selection'],
- name: [String, 'name'],
- onMyChange: [Function],
- },
- });
-export const MyRange = /*@__PURE__*/ globalThis.window
- ? defineContainer(
- 'my-range',
- defineMyRange,
- [
- 'color',
- 'debounce',
- 'name',
- 'dualKnobs',
- 'min',
- 'max',
- 'pin',
- 'snaps',
- 'step',
- 'ticks',
- 'disabled',
- 'value',
- 'myChange',
- 'myStyle',
- 'myFocus',
- 'myBlur',
- ],
- 'value',
- 'myChange'
- )
- : defineStencilSSRComponent({
- tagName: 'my-range',
- hydrateModule: import('component-library/hydrate'),
- props: {
- color: [String, 'color'],
- debounce: [Number, 'debounce'],
- name: [String, 'name'],
- dualKnobs: [Boolean, 'dual-knobs'],
- min: [Number, 'min'],
- max: [Number, 'max'],
- pin: [Boolean, 'pin'],
- snaps: [Boolean, 'snaps'],
- step: [Number, 'step'],
- ticks: [Boolean, 'ticks'],
- disabled: [Boolean, 'disabled'],
- value: [Number, 'value'],
- onMyChange: [Function],
- onMyStyle: [Function],
- onMyFocus: [Function],
- onMyBlur: [Function],
- },
- });
+export const MyInput = /*@__PURE__*/ globalThis.window ? defineContainer('my-input', defineMyInput, [
+ 'color',
+ 'accept',
+ 'autocapitalize',
+ 'autocomplete',
+ 'autocorrect',
+ 'autofocus',
+ 'clearInput',
+ 'clearOnEdit',
+ 'disabled',
+ 'enterkeyhint',
+ 'inputmode',
+ 'max',
+ 'maxlength',
+ 'min',
+ 'minlength',
+ 'multiple',
+ 'name',
+ 'pattern',
+ 'placeholder',
+ 'readonly',
+ 'required',
+ 'spellcheck',
+ 'step',
+ 'size',
+ 'type',
+ 'value',
+ 'myInput',
+ 'myChange',
+ 'myBlur',
+ 'myFocus'
+],
+'value', 'myChange') : defineStencilSSRComponent({
+ tagName: 'my-input',
+ hydrateModule: import('component-library/hydrate'),
+ props: {
+ 'color': [String, "color"],
+ 'accept': [String, "accept"],
+ 'autocapitalize': [String, "autocapitalize"],
+ 'autocomplete': [String, "autocomplete"],
+ 'autocorrect': [String, "autocorrect"],
+ 'autofocus': [Boolean, "autofocus"],
+ 'clearInput': [Boolean, "clear-input"],
+ 'clearOnEdit': [Boolean, "clear-on-edit"],
+ 'disabled': [Boolean, "disabled"],
+ 'enterkeyhint': [String, "enterkeyhint"],
+ 'inputmode': [String, "inputmode"],
+ 'max': [String, "max"],
+ 'maxlength': [Number, "maxlength"],
+ 'min': [String, "min"],
+ 'minlength': [Number, "minlength"],
+ 'multiple': [Boolean, "multiple"],
+ 'name': [String, "name"],
+ 'pattern': [String, "pattern"],
+ 'placeholder': [String, "placeholder"],
+ 'readonly': [Boolean, "readonly"],
+ 'required': [Boolean, "required"],
+ 'spellcheck': [Boolean, "spellcheck"],
+ 'step': [String, "step"],
+ 'size': [Number, "size"],
+ 'type': [String, "type"],
+ 'onMyInput': [Function],
+ 'onMyChange': [Function],
+ 'onMyBlur': [Function],
+ 'onMyFocus': [Function]
+ }
+});
+
+
+export const MyPopover = /*@__PURE__*/ globalThis.window ? defineContainer('my-popover', defineMyPopover, [
+ 'component',
+ 'componentProps',
+ 'keyboardClose',
+ 'cssClass',
+ 'backdropDismiss',
+ 'event',
+ 'showBackdrop',
+ 'translucent',
+ 'animated',
+ 'myPopoverDidPresent',
+ 'myPopoverWillPresent',
+ 'myPopoverWillDismiss',
+ 'myPopoverDidDismiss'
+]) : defineStencilSSRComponent({
+ tagName: 'my-popover',
+ hydrateModule: import('component-library/hydrate'),
+ props: {
+ 'component': [String, "component"],
+ 'keyboardClose': [Boolean, "keyboard-close"],
+ 'cssClass': [String, "css-class"],
+ 'backdropDismiss': [Boolean, "backdrop-dismiss"],
+ 'showBackdrop': [Boolean, "show-backdrop"],
+ 'translucent': [Boolean, "translucent"],
+ 'animated': [Boolean, "animated"],
+ 'onMyPopoverDidPresent': [Function],
+ 'onMyPopoverWillPresent': [Function],
+ 'onMyPopoverWillDismiss': [Function],
+ 'onMyPopoverDidDismiss': [Function]
+ }
+});
+
+
+export const MyRadio = /*@__PURE__*/ globalThis.window ? defineContainer('my-radio', defineMyRadio, [
+ 'color',
+ 'name',
+ 'disabled',
+ 'value',
+ 'myStyle',
+ 'myFocus',
+ 'myBlur',
+ 'mySelect'
+]) : defineStencilSSRComponent({
+ tagName: 'my-radio',
+ hydrateModule: import('component-library/hydrate'),
+ props: {
+ 'color': [String, "color"],
+ 'name': [String, "name"],
+ 'disabled': [Boolean, "disabled"],
+ 'onMyStyle': [Function],
+ 'onMyFocus': [Function],
+ 'onMyBlur': [Function],
+ 'onMySelect': [Function]
+ }
+});
+
+
+export const MyRadioGroup = /*@__PURE__*/ globalThis.window ? defineContainer('my-radio-group', defineMyRadioGroup, [
+ 'allowEmptySelection',
+ 'name',
+ 'value',
+ 'myChange'
+],
+'value', 'myChange') : defineStencilSSRComponent({
+ tagName: 'my-radio-group',
+ hydrateModule: import('component-library/hydrate'),
+ props: {
+ 'allowEmptySelection': [Boolean, "allow-empty-selection"],
+ 'name': [String, "name"],
+ 'onMyChange': [Function]
+ }
+});
+
+
+export const MyRange = /*@__PURE__*/ globalThis.window ? defineContainer('my-range', defineMyRange, [
+ 'color',
+ 'debounce',
+ 'name',
+ 'dualKnobs',
+ 'min',
+ 'max',
+ 'pin',
+ 'snaps',
+ 'step',
+ 'ticks',
+ 'disabled',
+ 'value',
+ 'myChange',
+ 'myStyle',
+ 'myFocus',
+ 'myBlur'
+],
+'value', 'myChange') : defineStencilSSRComponent({
+ tagName: 'my-range',
+ hydrateModule: import('component-library/hydrate'),
+ props: {
+ 'color': [String, "color"],
+ 'debounce': [Number, "debounce"],
+ 'name': [String, "name"],
+ 'dualKnobs': [Boolean, "dual-knobs"],
+ 'min': [Number, "min"],
+ 'max': [Number, "max"],
+ 'pin': [Boolean, "pin"],
+ 'snaps': [Boolean, "snaps"],
+ 'step': [Number, "step"],
+ 'ticks': [Boolean, "ticks"],
+ 'disabled': [Boolean, "disabled"],
+ 'value': [Number, "value"],
+ 'onMyChange': [Function],
+ 'onMyStyle': [Function],
+ 'onMyFocus': [Function],
+ 'onMyBlur': [Function]
+ }
+});
+
diff --git a/example-project/component-library/stencil.config.ts b/example-project/component-library/stencil.config.ts
index bc461937..09b6a7f5 100644
--- a/example-project/component-library/stencil.config.ts
+++ b/example-project/component-library/stencil.config.ts
@@ -29,6 +29,12 @@ const angularValueAccessorBindings: ValueAccessorConfig[] = [
targetAttr: 'value',
type: 'select',
},
+ {
+ elementSelectors: ['my-radio'],
+ event: 'mySelect',
+ targetAttr: 'checked',
+ type: 'radio',
+ },
];
const vueComponentModels: ComponentModelConfig[] = [
diff --git a/package.json b/package.json
index bab71616..6ffd3322 100644
--- a/package.json
+++ b/package.json
@@ -6,14 +6,16 @@
"url": "git+https://github.com/ionic-team/stencil-ds-output-targets.git"
},
"scripts": {
- "build": "lerna run build",
+ "build": "lerna run clean && lerna run build",
"build.angular": "pnpm --filter @stencil/angular-output-target run build",
"build.react": "pnpm --filter @stencil/react-output-target run build",
"build.vue": "pnpm --filter @stencil/vue-output-target run build",
+ "build.example.angular": "pnpm --filter component-library-angular run build",
"build.example.core": "pnpm --filter component-library run build",
"build.example.react": "pnpm --filter component-library-react run build",
"build.example.vue": "pnpm --filter component-library-vue run build",
"changelog": "lerna-changelog",
+ "clean": "lerna run clean",
"dev": "run-p dev:*",
"dev.angular": "pnpm --filter @stencil/angular-output-target run dev",
"dev.react": "pnpm --filter @stencil/react-output-target run dev",
@@ -43,7 +45,8 @@
"lerna-changelog": "^2.0.0",
"np": "^10.0.2",
"npm-run-all2": "^6.2.4",
- "prettier": "2.8.8",
+ "prettier": "^3.3.3",
+ "rimraf": "^6.0.1",
"semver": "^5.5.0",
"ts-jest": "^26.2.0"
},
diff --git a/packages/angular/__tests__/generate-value-accessors.spec.ts b/packages/angular/__tests__/generate-value-accessors.spec.ts
deleted file mode 100644
index 0d997930..00000000
--- a/packages/angular/__tests__/generate-value-accessors.spec.ts
+++ /dev/null
@@ -1,85 +0,0 @@
-import { createValueAccessor, ValueAccessor } from '../src/generate-value-accessors';
-import { EOL } from 'os';
-import path from 'path';
-import fs from 'fs';
-
-describe('createValueAccessor', () => {
- it('should create a valid {type}-value-accessor.ts file when multiple value accessors of the same type are in the config', () => {
- const valueAccessor: ValueAccessor = {
- elementSelectors: ['my-input[type=text]', 'my-input[type=email]'],
- eventTargets: [
- ['myChange', 'value'],
- ['myEmailChange', 'value'],
- ],
- };
-
- const srcFilePath = path.join(__dirname, '../resources/control-value-accessors/text-value-accessor.ts');
- const srcFile = fs.readFileSync(srcFilePath, { encoding: 'utf-8' });
- const finalText = createValueAccessor(srcFile, valueAccessor, 'component');
- const expectedOutput = `import { Directive, ElementRef } from '@angular/core';
-import { NG_VALUE_ACCESSOR } from '@angular/forms';
-
-import { ValueAccessor } from './value-accessor';
-
-@Directive({
- /* tslint:disable-next-line:directive-selector */
- selector: 'my-input[type=text], my-input[type=email]',
- host: {
- '(myChange)': 'handleChangeEvent($event.target.value)',
- '(myEmailChange)': 'handleChangeEvent($event.target.value)'
- },
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: TextValueAccessor,
- multi: true
- }
- ]
-})
-export class TextValueAccessor extends ValueAccessor {
- constructor(el: ElementRef) {
- super(el);
- }
-}`;
- expect(finalText.trim()).toEqual(expectedOutput.trim().replace(/\n/g, EOL));
- });
- it('should create a valid {type}-value-accessor.ts file with the correct standalone option', () => {
- const valueAccessor: ValueAccessor = {
- elementSelectors: ['my-input[type=text]', 'my-input[type=email]'],
- eventTargets: [
- ['myChange', 'value'],
- ['myEmailChange', 'value'],
- ],
- };
-
- const srcFilePath = path.join(__dirname, '../resources/control-value-accessors/text-value-accessor.ts');
- const srcFile = fs.readFileSync(srcFilePath, { encoding: 'utf-8' });
- const finalText = createValueAccessor(srcFile, valueAccessor, 'standalone');
- const expectedOutput = `import { Directive, ElementRef } from '@angular/core';
-import { NG_VALUE_ACCESSOR } from '@angular/forms';
-
-import { ValueAccessor } from './value-accessor';
-
-@Directive({
- /* tslint:disable-next-line:directive-selector */
- selector: 'my-input[type=text], my-input[type=email]',
- host: {
- '(myChange)': 'handleChangeEvent($event.target.value)',
- '(myEmailChange)': 'handleChangeEvent($event.target.value)'
- },
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: TextValueAccessor,
- multi: true
- }
- ],standalone: true
-})
-export class TextValueAccessor extends ValueAccessor {
- constructor(el: ElementRef) {
- super(el);
- }
-}`;
- expect(finalText.trim()).toEqual(expectedOutput.trim().replace(/\n/g, EOL));
- });
-});
diff --git a/packages/angular/package.json b/packages/angular/package.json
index 027ff58b..6dd3f852 100644
--- a/packages/angular/package.json
+++ b/packages/angular/package.json
@@ -27,8 +27,8 @@
"prettier.base": "prettier \"./({angular-component-lib,src,test,__tests__}/**/*.{ts,tsx,js,jsx})|*.{ts,tsx,js,jsx}\"",
"prettier.dry-run": "pnpm run prettier.base --list-different",
"release": "np",
- "test": "jest --passWithNoTests",
- "test.watch": "jest --watch"
+ "test": "vitest --run",
+ "test.watch": "vitest"
},
"repository": {
"type": "git",
@@ -44,12 +44,11 @@
"@angular/core": "8.2.14",
"@angular/forms": "8.2.14",
"@types/node": "^18.0.0",
- "jest": "^27.0.0",
- "jest-environment-jsdom": "^27.0.0",
"npm-run-all2": "^6.2.4",
"rimraf": "^5.0.0",
"rollup": "^2.23.1",
- "typescript": "~5.6.0"
+ "typescript": "~5.6.0",
+ "vitest": "^2.1.4"
},
"peerDependencies": {
"@stencil/core": ">=2.0.0 || >=3 || >= 4.0.0-beta.0 || >= 4.0.0"
diff --git a/packages/angular/src/generate-value-accessors.ts b/packages/angular/src/generate-value-accessors.ts
index fe493cf2..28598b64 100644
--- a/packages/angular/src/generate-value-accessors.ts
+++ b/packages/angular/src/generate-value-accessors.ts
@@ -85,9 +85,10 @@ function copyResources(config: Config, resourcesFilesToCopy: string[], directory
throw new Error('stencil is not properly initialized at this step. Notify the developer');
}
const copyTasks = resourcesFilesToCopy.map((rf) => {
+ const dest = path.resolve(directory, rf);
return {
src: path.join(__dirname, '../resources/control-value-accessors/', rf),
- dest: path.join(directory, rf),
+ dest: path.extname(dest) ? path.dirname(dest) : dest,
keepDirStructure: false,
warn: false,
ignore: [],
diff --git a/packages/angular/__tests__/generate-angular-component.spec.ts b/packages/angular/tests/generate-angular-component.test.ts
similarity index 98%
rename from packages/angular/__tests__/generate-angular-component.spec.ts
rename to packages/angular/tests/generate-angular-component.test.ts
index b6f27d6e..d4d6d70a 100644
--- a/packages/angular/__tests__/generate-angular-component.spec.ts
+++ b/packages/angular/tests/generate-angular-component.test.ts
@@ -1,4 +1,5 @@
-import { ComponentCompilerProperty } from '@stencil/core/internal';
+import { describe, it, expect } from 'vitest';
+import type { ComponentCompilerProperty } from '@stencil/core/internal';
import { createComponentTypeDefinition, createAngularComponentDefinition } from '../src/generate-angular-component';
describe('createAngularComponentDefinition()', () => {
@@ -420,6 +421,7 @@ export declare interface MyComponent extends Components.MyComponent {
resolved: '{ side: Side; }',
references: {
Side: {
+ id: '',
location: 'import',
path: '../../interfaces',
},
diff --git a/packages/angular/__tests__/generate-angular-modules.spec.ts b/packages/angular/tests/generate-angular-modules.test.ts
similarity index 90%
rename from packages/angular/__tests__/generate-angular-modules.spec.ts
rename to packages/angular/tests/generate-angular-modules.test.ts
index df3aefb8..d560c1ae 100644
--- a/packages/angular/__tests__/generate-angular-modules.spec.ts
+++ b/packages/angular/tests/generate-angular-modules.test.ts
@@ -1,3 +1,4 @@
+import { describe, it, expect } from 'vitest';
import { generateAngularModuleForComponent } from '../src/generate-angular-modules';
describe('generateAngularModuleForComponent()', () => {
diff --git a/packages/angular/tests/generate-value-accessors.test.ts b/packages/angular/tests/generate-value-accessors.test.ts
new file mode 100644
index 00000000..dffa157a
--- /dev/null
+++ b/packages/angular/tests/generate-value-accessors.test.ts
@@ -0,0 +1,87 @@
+import { describe, it, expect } from 'vitest';
+import { createValueAccessor, ValueAccessor } from '../src/generate-value-accessors';
+import path from 'path';
+import fs from 'fs';
+
+describe('createValueAccessor', () => {
+ it('should create a valid {type}-value-accessor.ts file when multiple value accessors of the same type are in the config', () => {
+ const valueAccessor: ValueAccessor = {
+ elementSelectors: ['my-input[type=text]', 'my-input[type=email]'],
+ eventTargets: [
+ ['myChange', 'value'],
+ ['myEmailChange', 'value'],
+ ],
+ };
+
+ const srcFilePath = path.join(__dirname, '../resources/control-value-accessors/text-value-accessor.ts');
+ const srcFile = fs.readFileSync(srcFilePath, { encoding: 'utf-8' });
+ const finalText = createValueAccessor(srcFile, valueAccessor, 'component');
+ expect(finalText.trim()).toMatchInlineSnapshot(`
+ "import { Directive, ElementRef } from '@angular/core';
+ import { NG_VALUE_ACCESSOR } from '@angular/forms';
+
+ import { ValueAccessor } from './value-accessor';
+
+ @Directive({
+ /* tslint:disable-next-line:directive-selector */
+ selector: 'my-input[type=text], my-input[type=email]',
+ host: {
+ '(myChange)': 'handleChangeEvent($event.target.value)',
+ '(myEmailChange)': 'handleChangeEvent($event.target.value)'
+ },
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: TextValueAccessor,
+ multi: true
+ }
+ ]
+ })
+ export class TextValueAccessor extends ValueAccessor {
+ constructor(el: ElementRef) {
+ super(el);
+ }
+ }"
+ `);
+ });
+ it('should create a valid {type}-value-accessor.ts file with the correct standalone option', () => {
+ const valueAccessor: ValueAccessor = {
+ elementSelectors: ['my-input[type=text]', 'my-input[type=email]'],
+ eventTargets: [
+ ['myChange', 'value'],
+ ['myEmailChange', 'value'],
+ ],
+ };
+
+ const srcFilePath = path.join(__dirname, '../resources/control-value-accessors/text-value-accessor.ts');
+ const srcFile = fs.readFileSync(srcFilePath, { encoding: 'utf-8' });
+ const finalText = createValueAccessor(srcFile, valueAccessor, 'standalone');
+ expect(finalText.trim()).toMatchInlineSnapshot(`
+ "import { Directive, ElementRef } from '@angular/core';
+ import { NG_VALUE_ACCESSOR } from '@angular/forms';
+
+ import { ValueAccessor } from './value-accessor';
+
+ @Directive({
+ /* tslint:disable-next-line:directive-selector */
+ selector: 'my-input[type=text], my-input[type=email]',
+ host: {
+ '(myChange)': 'handleChangeEvent($event.target.value)',
+ '(myEmailChange)': 'handleChangeEvent($event.target.value)'
+ },
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: TextValueAccessor,
+ multi: true
+ }
+ ],standalone: true
+ })
+ export class TextValueAccessor extends ValueAccessor {
+ constructor(el: ElementRef) {
+ super(el);
+ }
+ }"
+ `);
+ });
+});
diff --git a/packages/angular/__tests__/output-angular.spec.ts b/packages/angular/tests/output-angular.test.ts
similarity index 96%
rename from packages/angular/__tests__/output-angular.spec.ts
rename to packages/angular/tests/output-angular.test.ts
index 4196214a..6315b70c 100644
--- a/packages/angular/__tests__/output-angular.spec.ts
+++ b/packages/angular/tests/output-angular.test.ts
@@ -1,3 +1,4 @@
+import { describe, it, expect } from 'vitest';
import { ComponentCompilerEventComplexType, ComponentCompilerMeta } from '@stencil/core/internal';
import { generateProxies } from '../src/output-angular';
import { PackageJSON, OutputTargetAngular } from '../src/types';
@@ -51,7 +52,7 @@ describe('generateProxies', () => {
complexType: {
original: '',
resolved: '',
- references: { fakeReference: { location: 'local' } },
+ references: { fakeReference: { location: 'local', id: '' } },
} as ComponentCompilerEventComplexType,
},
],
@@ -92,7 +93,7 @@ describe('generateProxies', () => {
complexType: {
original: '',
resolved: '',
- references: { fakeReference: { location: 'local' } },
+ references: { fakeReference: { location: 'local', id: '' } },
} as ComponentCompilerEventComplexType,
},
],
diff --git a/packages/angular/__tests__/plugin.spec.ts b/packages/angular/tests/plugin.test.ts
similarity index 97%
rename from packages/angular/__tests__/plugin.spec.ts
rename to packages/angular/tests/plugin.test.ts
index ed638d55..90eeec76 100644
--- a/packages/angular/__tests__/plugin.spec.ts
+++ b/packages/angular/tests/plugin.test.ts
@@ -1,3 +1,4 @@
+import { describe, it, expect } from 'vitest';
import { Config } from '@stencil/core/internal';
import { OutputTargetAngular } from '../src/types';
import { normalizeOutputTarget } from '../src/plugin';
diff --git a/packages/angular/__tests__/utils.spec.ts b/packages/angular/tests/utils.test.ts
similarity index 98%
rename from packages/angular/__tests__/utils.spec.ts
rename to packages/angular/tests/utils.test.ts
index 139f33bf..19219611 100644
--- a/packages/angular/__tests__/utils.spec.ts
+++ b/packages/angular/tests/utils.test.ts
@@ -1,3 +1,4 @@
+import { describe, it, expect } from 'vitest';
import {
createImportStatement,
createComponentEventTypeImports,
diff --git a/packages/vue/src/ssr.ts b/packages/vue/src/ssr.ts
index d5c4bfa3..98d25aad 100644
--- a/packages/vue/src/ssr.ts
+++ b/packages/vue/src/ssr.ts
@@ -65,8 +65,8 @@ export function defineStencilSSRComponent(options: StencilSSRComponentOptions) {
: undefined
: `"${value}"`
: Array.isArray(value) && value.every(isPrimitive)
- ? JSON.stringify(value)
- : undefined;
+ ? JSON.stringify(value)
+ : undefined;
if (!propName || !propValue) {
console.warn(
`${LOG_PREFIX} ignore component property "${key}" for ${options.tagName} ` +
@@ -106,10 +106,13 @@ export function defineStencilSSRComponent(options: StencilSSRComponentOptions) {
}
);
},
- props: Object.entries(options.props || {}).reduce((acc, [key, value]) => {
- acc[key] = value[0];
- return acc;
- }, {} as Record),
+ props: Object.entries(options.props || {}).reduce(
+ (acc, [key, value]) => {
+ acc[key] = value[0];
+ return acc;
+ },
+ {} as Record
+ ),
/**
* the template tags can be arbitrary as they will be replaced with above compiled template
*/
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 01adc4af..d1f33b65 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -10,28 +10,31 @@ importers:
devDependencies:
'@ionic/prettier-config':
specifier: ^2.0.0
- version: 2.1.2(prettier@2.8.8)
+ version: 2.1.2(prettier@3.3.3)
lerna:
specifier: ^8.0.0
- version: 8.1.9(@swc/core@1.7.26(@swc/helpers@0.5.5))(encoding@0.1.13)
+ version: 8.1.9(encoding@0.1.13)
lerna-changelog:
specifier: ^2.0.0
version: 2.2.0
np:
specifier: ^10.0.2
- version: 10.0.6(typescript@5.6.3)
+ version: 10.0.7(typescript@5.6.3)
npm-run-all2:
specifier: ^6.2.4
- version: 6.2.4
+ version: 6.2.6
prettier:
- specifier: 2.8.8
- version: 2.8.8
+ specifier: ^3.3.3
+ version: 3.3.3
+ rimraf:
+ specifier: ^6.0.1
+ version: 6.0.1
semver:
specifier: ^5.5.0
version: 5.7.2
ts-jest:
specifier: ^26.2.0
- version: 26.5.6(jest@29.7.0(@types/node@22.9.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.6.3)))(typescript@5.6.3)
+ version: 26.5.6(jest@29.7.0(@types/node@22.9.0)(node-notifier@8.0.2))(typescript@5.6.3)
example-project/component-library:
devDependencies:
@@ -40,7 +43,7 @@ importers:
version: link:../../packages/angular
'@stencil/core':
specifier: ^4.22.1
- version: 4.22.1
+ version: 4.22.2
'@stencil/react-output-target':
specifier: workspace:*
version: link:../../packages/react
@@ -52,7 +55,7 @@ importers:
version: 2.0.1
jest-cli:
specifier: 26.0.1
- version: 26.0.1(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.6.3))
+ version: 26.0.1
example-project/component-library-angular:
dependencies:
@@ -61,7 +64,7 @@ importers:
version: link:../component-library
tslib:
specifier: ^2.0.0
- version: 2.6.3
+ version: 2.8.1
devDependencies:
'@angular-devkit/core':
specifier: ^16.0.0
@@ -95,22 +98,22 @@ importers:
version: 16.2.12(@angular/common@16.2.12(@angular/core@16.2.12(rxjs@7.8.1)(zone.js@0.13.3))(rxjs@7.8.1))(@angular/core@16.2.12(rxjs@7.8.1)(zone.js@0.13.3))(@angular/platform-browser@16.2.12(@angular/common@16.2.12(@angular/core@16.2.12(rxjs@7.8.1)(zone.js@0.13.3))(rxjs@7.8.1))(@angular/core@16.2.12(rxjs@7.8.1)(zone.js@0.13.3)))(rxjs@7.8.1)
'@rollup/plugin-node-resolve':
specifier: ^15.2.3
- version: 15.3.0(rollup@4.24.2)
+ version: 15.3.0(rollup@4.24.4)
'@types/jest':
specifier: ^29.5.12
- version: 29.5.13
+ version: 29.5.14
jest:
specifier: ^29.0.0
- version: 29.7.0(@types/node@22.9.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.1.6))
+ version: 29.7.0(@types/node@20.17.6)(node-notifier@8.0.2)
jest-environment-jsdom:
specifier: ^29.0.0
version: 29.7.0
jest-preset-angular:
specifier: ^13.0.0
- version: 13.1.6(y5fmd6746vq2ysjsbi4rl2y7ym)
+ version: 13.1.6(6uarwrmwcllwqxrzfxqcfoap7y)
rollup:
specifier: ^4.14.3
- version: 4.24.2
+ version: 4.24.4
rxjs:
specifier: ^7.8.1
version: 7.8.1
@@ -141,28 +144,28 @@ importers:
version: 18.3.12
'@types/react-dom':
specifier: ^18
- version: 18.3.0
+ version: 18.3.1
'@typescript-eslint/eslint-plugin':
specifier: ^8.8.1
- version: 8.8.1(@typescript-eslint/parser@8.8.1(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3)
+ version: 8.13.0(@typescript-eslint/parser@8.13.0(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3)
'@typescript-eslint/parser':
specifier: ^8.8.1
- version: 8.8.1(eslint@8.57.1)(typescript@5.6.3)
+ version: 8.13.0(eslint@8.57.1)(typescript@5.6.3)
'@vitejs/plugin-react':
specifier: ^4.3.2
- version: 4.3.2(vite@5.4.8(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.29.1))
+ version: 4.3.3(vite@5.4.10(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.36.0))
'@wdio/cli':
specifier: ^9.1.5
- version: 9.1.5
+ version: 9.2.10
'@wdio/globals':
specifier: ^9.1.5
- version: 9.1.5(@wdio/logger@9.1.3)
+ version: 9.2.8(@wdio/logger@9.1.3)
'@wdio/mocha-framework':
specifier: ^9.1.3
- version: 9.1.3
+ version: 9.2.8
'@wdio/spec-reporter':
specifier: ^9.1.3
- version: 9.1.3
+ version: 9.2.8
eslint:
specifier: ^8.57.0
version: 8.57.1
@@ -171,28 +174,28 @@ importers:
version: 4.6.2(eslint@8.57.1)
eslint-plugin-react-refresh:
specifier: ^0.4.12
- version: 0.4.12(eslint@8.57.1)
+ version: 0.4.14(eslint@8.57.1)
expect-webdriverio:
specifier: ^5.0.3
- version: 5.0.3(@wdio/globals@9.1.5(@wdio/logger@9.1.3))(@wdio/logger@9.1.3)(webdriverio@9.1.5)
+ version: 5.0.3(@wdio/globals@9.2.8(@wdio/logger@9.1.3))(@wdio/logger@9.1.3)(webdriverio@9.2.8)
react:
specifier: ^18.3.1
version: 18.3.1
tsx:
specifier: ^4.19.1
- version: 4.19.1
+ version: 4.19.2
typescript:
specifier: ^5.6.3
version: 5.6.3
vite:
specifier: ^5.4.8
- version: 5.4.8(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.29.1)
+ version: 5.4.10(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.36.0)
wdio-vite-service:
specifier: ^1.0.9
- version: 1.0.9(@types/node@22.9.0)(@wdio/types@9.1.3)(less@4.2.0)(sass@1.71.1)(terser@5.29.1)(webdriverio@9.1.5)
+ version: 1.0.9(@types/node@22.9.0)(@wdio/types@9.2.2)(less@4.2.0)(sass@1.71.1)(terser@5.36.0)(webdriverio@9.2.8)
webdriverio:
specifier: ^9.1.5
- version: 9.1.5
+ version: 9.2.8
example-project/component-library-vue:
dependencies:
@@ -205,13 +208,13 @@ importers:
devDependencies:
npm-run-all2:
specifier: ^6.2.3
- version: 6.2.3
+ version: 6.2.6
rimraf:
specifier: ^6.0.1
version: 6.0.1
typescript:
specifier: ^5.6.2
- version: 5.6.2
+ version: 5.6.3
example-project/next-app:
dependencies:
@@ -220,7 +223,7 @@ importers:
version: 5.1.18(@types/react@18.3.12)(react@18.3.1)
next:
specifier: 14.2.15
- version: 14.2.15(@babel/core@7.25.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.71.1)
+ version: 14.2.15(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.71.1)
react:
specifier: ^18
version: 18.3.1
@@ -239,25 +242,25 @@ importers:
version: 18.3.12
'@types/react-dom':
specifier: ^18
- version: 18.3.0
+ version: 18.3.1
'@wdio/cli':
specifier: ^9.1.5
- version: 9.1.5
+ version: 9.2.10
'@wdio/globals':
specifier: ^9.1.5
- version: 9.1.5(@wdio/logger@9.1.3)
+ version: 9.2.8(@wdio/logger@9.1.3)
'@wdio/local-runner':
specifier: ^9.1.5
- version: 9.1.5
+ version: 9.2.8
'@wdio/mocha-framework':
specifier: ^9.1.3
- version: 9.1.3
+ version: 9.2.8
'@wdio/spec-reporter':
specifier: ^9.1.3
- version: 9.1.3
+ version: 9.2.8
'@wdio/types':
specifier: ^9.1.3
- version: 9.1.3
+ version: 9.2.2
autoprefixer:
specifier: ^10.4.20
version: 10.4.20(postcss@8.4.47)
@@ -272,25 +275,25 @@ importers:
version: 8.57.1
eslint-config-next:
specifier: 14.2.15
- version: 14.2.15(eslint@8.57.1)(typescript@5.6.2)
+ version: 14.2.15(eslint@8.57.1)(typescript@5.6.3)
postcss:
specifier: ^8
version: 8.4.47
tailwindcss:
specifier: ^3.4.13
- version: 3.4.13(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@20.17.6)(typescript@5.6.2))
+ version: 3.4.14
tsx:
specifier: ^4.19.1
- version: 4.19.1
+ version: 4.19.2
typescript:
specifier: ^5
- version: 5.6.2
+ version: 5.6.3
wdio-next-service:
specifier: ^0.1.0
- version: 0.1.0(@wdio/types@9.1.3)(next@14.2.15(@babel/core@7.25.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.71.1))(webdriverio@9.1.5)
+ version: 0.1.0(@wdio/types@9.2.2)(next@14.2.15(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.71.1))(webdriverio@9.2.8)
webdriverio:
specifier: ^9.1.5
- version: 9.1.5
+ version: 9.2.8
example-project/nuxt-app:
dependencies:
@@ -299,32 +302,32 @@ importers:
version: link:../component-library-vue
nuxt:
specifier: ^3.12.4
- version: 3.13.2(@parcel/watcher@2.4.1)(@types/node@22.9.0)(encoding@0.1.13)(eslint@8.57.1)(ioredis@5.4.1)(less@4.2.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.2)(sass@1.71.1)(terser@5.29.1)(typescript@5.6.3)(vite@5.4.8(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.29.1))(vue-tsc@2.1.6(typescript@5.6.3))(webpack-sources@3.2.3)
+ version: 3.14.159(@parcel/watcher@2.5.0)(@types/node@22.9.0)(encoding@0.1.13)(eslint@8.57.1)(ioredis@5.4.1)(less@4.2.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.4)(sass@1.71.1)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.10(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.36.0))(vue-tsc@2.1.10(typescript@5.6.3))(webpack-sources@3.2.3)
vue:
specifier: ^3.4.38
- version: 3.5.10(typescript@5.6.3)
+ version: 3.5.12(typescript@5.6.3)
devDependencies:
'@wdio/cli':
specifier: ^9.1.3
- version: 9.1.4
+ version: 9.2.10
'@wdio/globals':
specifier: ^9.1.3
- version: 9.1.4(@wdio/logger@9.1.3)
+ version: 9.2.8(@wdio/logger@9.1.3)
'@wdio/local-runner':
specifier: ^9.1.3
- version: 9.1.4
+ version: 9.2.8
'@wdio/mocha-framework':
specifier: ^9.1.3
- version: 9.1.3
+ version: 9.2.8
'@wdio/spec-reporter':
specifier: ^9.1.3
- version: 9.1.3
+ version: 9.2.8
tsx:
specifier: ^4.19.1
- version: 4.19.1
+ version: 4.19.2
wdio-nuxt-service:
specifier: ^0.2.0
- version: 0.2.0(@wdio/types@8.40.6)(magicast@0.3.5)(rollup@4.24.2)(webdriverio@9.1.4)(webpack-sources@3.2.3)
+ version: 0.2.0(magicast@0.3.5)(rollup@4.24.4)(webdriverio@9.2.8)(webpack-sources@3.2.3)
example-project/vue-app:
dependencies:
@@ -333,50 +336,50 @@ importers:
version: link:../component-library-vue
vue:
specifier: ^3.5.10
- version: 3.5.10(typescript@5.6.3)
+ version: 3.5.12(typescript@5.6.3)
devDependencies:
'@vitejs/plugin-vue':
specifier: ^5.1.4
- version: 5.1.4(vite@5.4.8(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.29.1))(vue@3.5.10(typescript@5.6.3))
+ version: 5.1.4(vite@5.4.10(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))
'@wdio/cli':
specifier: ^9.2.1
- version: 9.2.1
+ version: 9.2.10
'@wdio/globals':
specifier: ^9.2.1
- version: 9.2.1(@wdio/logger@9.1.3)
+ version: 9.2.8(@wdio/logger@9.1.3)
'@wdio/mocha-framework':
specifier: ^9.1.3
- version: 9.1.3
+ version: 9.2.8
'@wdio/spec-reporter':
specifier: ^9.1.3
- version: 9.1.3
+ version: 9.2.8
expect-webdriverio:
specifier: ^5.0.3
- version: 5.0.3(@wdio/globals@9.2.1(@wdio/logger@9.1.3))(@wdio/logger@9.1.3)(webdriverio@9.1.5)
+ version: 5.0.3(@wdio/globals@9.2.8(@wdio/logger@9.1.3))(@wdio/logger@9.1.3)(webdriverio@9.2.8)
tsx:
specifier: ^4.19.1
- version: 4.19.1
+ version: 4.19.2
typescript:
specifier: ^5.5.3
version: 5.6.3
vite:
specifier: ^5.4.8
- version: 5.4.8(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.29.1)
+ version: 5.4.10(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.36.0)
vue-tsc:
specifier: ^2.1.6
- version: 2.1.6(typescript@5.6.3)
+ version: 2.1.10(typescript@5.6.3)
wdio-vite-service:
specifier: ^1.0.9
- version: 1.0.9(@types/node@22.9.0)(@wdio/types@9.1.3)(less@4.2.0)(sass@1.71.1)(terser@5.29.1)(webdriverio@9.1.5)
+ version: 1.0.9(@types/node@22.9.0)(@wdio/types@9.2.2)(less@4.2.0)(sass@1.71.1)(terser@5.36.0)(webdriverio@9.2.8)
webdriverio:
specifier: ^9.1.5
- version: 9.1.5
+ version: 9.2.8
packages/angular:
dependencies:
'@stencil/core':
specifier: '>=2.0.0 || >=3 || >= 4.0.0-beta.0 || >= 4.0.0'
- version: 4.22.1
+ version: 4.22.2
devDependencies:
'@angular/core':
specifier: 8.2.14
@@ -386,16 +389,10 @@ importers:
version: 8.2.14(@angular/common@16.2.12(@angular/core@8.2.14(rxjs@7.8.1)(zone.js@0.13.3))(rxjs@7.8.1))(@angular/core@8.2.14(rxjs@7.8.1)(zone.js@0.13.3))(@angular/platform-browser@16.2.12(@angular/common@16.2.12(@angular/core@8.2.14(rxjs@7.8.1)(zone.js@0.13.3))(rxjs@7.8.1))(@angular/core@8.2.14(rxjs@7.8.1)(zone.js@0.13.3)))(rxjs@7.8.1)
'@types/node':
specifier: ^18.0.0
- version: 20.17.6
- jest:
- specifier: ^27.0.0
- version: 27.5.1(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@20.17.6)(typescript@5.6.3))
- jest-environment-jsdom:
- specifier: ^27.0.0
- version: 27.5.1
+ version: 18.19.64
npm-run-all2:
specifier: ^6.2.4
- version: 6.2.4
+ version: 6.2.6
rimraf:
specifier: ^5.0.0
version: 5.0.10
@@ -405,18 +402,21 @@ importers:
typescript:
specifier: ~5.6.0
version: 5.6.3
+ vitest:
+ specifier: ^2.1.4
+ version: 2.1.4(@types/node@18.19.64)(jsdom@20.0.3)(less@4.2.0)(sass@1.71.1)(terser@5.36.0)
packages/react:
dependencies:
'@lit/react':
specifier: ^1.0.4
- version: 1.0.5(@types/react@18.3.12)
+ version: 1.0.6(@types/react@18.3.12)
'@stencil/core':
specifier: '>=3 || >= 4.0.0-beta.0 || >= 4.0.0'
- version: 4.22.1
+ version: 4.22.2
html-react-parser:
specifier: ^5.1.10
- version: 5.1.12(@types/react@18.3.12)(react@18.3.1)
+ version: 5.1.18(@types/react@18.3.12)(react@18.3.1)
react-dom:
specifier: ^18.3.1
version: 18.3.1(react@18.3.1)
@@ -435,10 +435,10 @@ importers:
version: 18.3.12
'@types/react-dom':
specifier: ^18
- version: 18.3.0
+ version: 18.3.1
npm-run-all2:
specifier: ^6.2.4
- version: 6.2.4
+ version: 6.2.6
react:
specifier: ^18.3.1
version: 18.3.1
@@ -447,32 +447,32 @@ importers:
version: 2.2.0
typescript:
specifier: ^5.4.4
- version: 5.6.2
+ version: 5.6.3
vite:
specifier: ^5.0.0
- version: 5.4.2(@types/node@20.17.6)(less@4.2.0)(sass@1.71.1)(terser@5.29.1)
+ version: 5.4.10(@types/node@20.17.6)(less@4.2.0)(sass@1.71.1)(terser@5.36.0)
vite-plugin-dts:
specifier: ^3.8.1
- version: 3.9.1(@types/node@20.17.6)(rollup@4.24.4)(typescript@5.6.2)(vite@5.4.2(@types/node@20.17.6)(less@4.2.0)(sass@1.71.1)(terser@5.29.1))
+ version: 3.9.1(@types/node@20.17.6)(rollup@4.24.4)(typescript@5.6.3)(vite@5.4.10(@types/node@20.17.6)(less@4.2.0)(sass@1.71.1)(terser@5.36.0))
vitest:
specifier: ^2.1.3
- version: 2.1.3(@types/node@20.17.6)(jsdom@20.0.3)(less@4.2.0)(sass@1.71.1)(terser@5.29.1)
+ version: 2.1.4(@types/node@20.17.6)(jsdom@20.0.3)(less@4.2.0)(sass@1.71.1)(terser@5.36.0)
packages/vue:
dependencies:
'@stencil/core':
specifier: '>=2.0.0 || >=3 || >= 4.0.0-beta.0 || >= 4.0.0'
- version: 4.22.1
+ version: 4.22.2
vue:
specifier: ^3.4.38
- version: 3.5.10(typescript@5.6.3)
+ version: 3.5.12(typescript@5.6.3)
devDependencies:
'@rollup/plugin-typescript':
specifier: ^12.1.0
- version: 12.1.1(rollup@4.24.2)(tslib@2.8.1)(typescript@5.6.3)
+ version: 12.1.1(rollup@4.24.4)(tslib@2.8.1)(typescript@5.6.3)
'@types/node':
specifier: ^18.0.0
- version: 20.17.6
+ version: 18.19.64
'@vue/shared':
specifier: ^3.5.12
version: 3.5.12
@@ -481,13 +481,13 @@ importers:
version: 5.0.10
rollup:
specifier: ^4.14.3
- version: 4.24.2
+ version: 4.24.4
typescript:
specifier: ~5.6.0
version: 5.6.3
vitest:
specifier: ^2.0.5
- version: 2.1.3(@types/node@20.17.6)(jsdom@20.0.3)(less@4.2.0)(sass@1.71.1)(terser@5.29.1)
+ version: 2.1.4(@types/node@18.19.64)(jsdom@20.0.3)(less@4.2.0)(sass@1.71.1)(terser@5.36.0)
packages:
@@ -499,12 +499,12 @@ packages:
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
- '@angular-devkit/architect@0.1703.10':
- resolution: {integrity: sha512-wmjx5GspSPprdUGryK5+9vNawbEO7p8h9dxgX3uoeFwPAECcHC+/KK3qPhX2NiGcM6MDsyt25SrbSktJp6PRsA==}
+ '@angular-devkit/architect@0.1703.11':
+ resolution: {integrity: sha512-YNasVZk4rYdcM6M+KRH8PUBhVyJfqzUYLpO98GgRokW+taIDgifckSlmfDZzQRbw45qiwei1IKCLqcpC8nM5Tw==}
engines: {node: ^18.13.0 || >=20.9.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
- '@angular-devkit/build-angular@17.3.10':
- resolution: {integrity: sha512-syz7xgzmp8/0tPJWwQIKZt7KNJfp9U7hkqNacXz4XTYz6YM0oyBXlqk2claSxywWBEkc0eJVSMD9e2ArusZBuA==}
+ '@angular-devkit/build-angular@17.3.11':
+ resolution: {integrity: sha512-lHX5V2dSts328yvo/9E2u9QMGcvJhbEKKDDp9dBecwvIG9s+4lTOJgi9DPUE7W+AtmPcmbbhwC2JRQ/SLQhAoA==}
engines: {node: ^18.13.0 || >=20.9.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
peerDependencies:
'@angular/compiler-cli': ^17.0.0
@@ -544,8 +544,8 @@ packages:
tailwindcss:
optional: true
- '@angular-devkit/build-webpack@0.1703.10':
- resolution: {integrity: sha512-m6dDgzKLW+c3z9/TUxYmbJEtEhrdYNQ4ogdtAgEYA/FRrKueDU0WztLNr+dVbvwNP99Skovtr8sAQfN6twproQ==}
+ '@angular-devkit/build-webpack@0.1703.11':
+ resolution: {integrity: sha512-qbCiiHuoVkD7CtLyWoRi/Vzz6nrEztpF5XIyWUcQu67An1VlxbMTE4yoSQiURjCQMnB/JvS1GPVed7wOq3SJ/w==}
engines: {node: ^18.13.0 || >=20.9.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
peerDependencies:
webpack: ^5.30.0
@@ -560,8 +560,8 @@ packages:
chokidar:
optional: true
- '@angular-devkit/core@17.3.10':
- resolution: {integrity: sha512-czdl54yxU5DOAGy/uUPNjJruoBDTgwi/V+eOgLNybYhgrc+TsY0f7uJ11yEk/pz5sCov7xIiS7RdRv96waS7vg==}
+ '@angular-devkit/core@17.3.11':
+ resolution: {integrity: sha512-vTNDYNsLIWpYk2I969LMQFH29GTsLzxNk/0cLw5q56ARF0v5sIWfHYwGTS88jdDqIpuuettcSczbxeA7EuAmqQ==}
engines: {node: ^18.13.0 || >=20.9.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
peerDependencies:
chokidar: ^3.5.2
@@ -659,26 +659,10 @@ packages:
'@antfu/utils@0.7.10':
resolution: {integrity: sha512-+562v9k4aI80m1+VuMHehNJWLOFjBnXn3tdOitzD0il5b7smkSBal4+a3oKiQTbrwMmN/TBUMDvbdoWDehgOww==}
- '@babel/code-frame@7.24.7':
- resolution: {integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==}
- engines: {node: '>=6.9.0'}
-
- '@babel/code-frame@7.25.7':
- resolution: {integrity: sha512-0xZJFNE5XMpENsgfHYTw8FbX4kv53mFLn2i3XPoq69LyhYSCBJtitaHx9QnsVTrsogI4Z3+HtEfZ2/GFPOtf5g==}
- engines: {node: '>=6.9.0'}
-
'@babel/code-frame@7.26.2':
resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
engines: {node: '>=6.9.0'}
- '@babel/compat-data@7.24.7':
- resolution: {integrity: sha512-qJzAIcv03PyaWqxRgO4mSU3lihncDT296vnyuE2O8uA4w3UHWI4S3hgeZd1L8W1Bft40w9JxJ2b412iDUFFRhw==}
- engines: {node: '>=6.9.0'}
-
- '@babel/compat-data@7.25.7':
- resolution: {integrity: sha512-9ickoLz+hcXCeh7jrcin+/SLWm+GkxE2kTvoYyp38p4WkdFXfQJxDFGWp/YHjiKLPx06z2A7W8XKuqbReXDzsw==}
- engines: {node: '>=6.9.0'}
-
'@babel/compat-data@7.26.2':
resolution: {integrity: sha512-Z0WgzSEa+aUcdiJuCIqgujCshpMWgUpgOxXotrYPSA53hA3qopNaqcJpyr0hVb1FeWdnqFA35/fUtXgBK8srQg==}
engines: {node: '>=6.9.0'}
@@ -691,26 +675,14 @@ packages:
resolution: {integrity: sha512-fQfkg0Gjkza3nf0c7/w6Xf34BW4YvzNfACRLmmb7XRLa6XHdR+K9AlJlxneFfWYf6uhOzuzZVTjF/8KfndZANw==}
engines: {node: '>=6.9.0'}
- '@babel/core@7.24.7':
- resolution: {integrity: sha512-nykK+LEK86ahTkX/3TgauT0ikKoNCfKHEaZYTUVupJdTLzGNvrblu4u6fa7DhZONAltdf8e662t/abY8idrd/g==}
- engines: {node: '>=6.9.0'}
-
- '@babel/core@7.25.7':
- resolution: {integrity: sha512-yJ474Zv3cwiSOO9nXJuqzvwEeM+chDuQ8GJirw+pZ91sCGCyOZ3dJkVE09fTV0VEVzXyLWhh3G/AolYTPX7Mow==}
+ '@babel/core@7.26.0':
+ resolution: {integrity: sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==}
engines: {node: '>=6.9.0'}
'@babel/generator@7.23.6':
resolution: {integrity: sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==}
engines: {node: '>=6.9.0'}
- '@babel/generator@7.25.5':
- resolution: {integrity: sha512-abd43wyLfbWoxC6ahM8xTkqLpGB2iWBVyuKC9/srhFunCd1SDNrV1s72bBpK4hLj8KLzHBBcOblvLQZBNw9r3w==}
- engines: {node: '>=6.9.0'}
-
- '@babel/generator@7.25.7':
- resolution: {integrity: sha512-5Dqpl5fyV9pIAD62yK9P7fcA768uVPUyrQmqpqstHWgMma4feF1x/oFysBCVZLY5wJ2GkMUCdsNDnGZrPoR6rA==}
- engines: {node: '>=6.9.0'}
-
'@babel/generator@7.26.2':
resolution: {integrity: sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw==}
engines: {node: '>=6.9.0'}
@@ -719,10 +691,6 @@ packages:
resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-annotate-as-pure@7.25.7':
- resolution: {integrity: sha512-4xwU8StnqnlIhhioZf1tqnVWeQ9pvH/ujS8hRfw/WOza+/a+1qv69BWNy+oY231maTCWgKWhfBU7kDpsds6zAA==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-annotate-as-pure@7.25.9':
resolution: {integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==}
engines: {node: '>=6.9.0'}
@@ -731,24 +699,10 @@ packages:
resolution: {integrity: sha512-C47lC7LIDCnz0h4vai/tpNOI95tCd5ZT3iBt/DBH5lXKHZsyNQv18yf1wIIg2ntiQNgmAvA+DgZ82iW8Qdym8g==}
engines: {node: '>=6.9.0'}
- '@babel/helper-compilation-targets@7.24.7':
- resolution: {integrity: sha512-ctSdRHBi20qWOfy27RUb4Fhp07KSJ3sXcuSvTrXrc4aG8NSYDo1ici3Vhg9bg69y5bj0Mr1lh0aeEgTvc12rMg==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-compilation-targets@7.25.7':
- resolution: {integrity: sha512-DniTEax0sv6isaw6qSQSfV4gVRNtw2rte8HHM45t9ZR0xILaufBRNkpMifCRiAPyvL4ACD6v0gfCwCmtOQaV4A==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-compilation-targets@7.25.9':
resolution: {integrity: sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-create-class-features-plugin@7.25.7':
- resolution: {integrity: sha512-bD4WQhbkx80mAyj/WCm4ZHcF4rDxkoLFO6ph8/5/mQ3z4vAzltQXAmbc7GvVJx5H+lk5Mi5EmbTeox5nMGCsbw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
'@babel/helper-create-class-features-plugin@7.25.9':
resolution: {integrity: sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==}
engines: {node: '>=6.9.0'}
@@ -775,60 +729,24 @@ packages:
resolution: {integrity: sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-member-expression-to-functions@7.25.7':
- resolution: {integrity: sha512-O31Ssjd5K6lPbTX9AAYpSKrZmLeagt9uwschJd+Ixo6QiRyfpvgtVQp8qrDR9UNFjZ8+DO34ZkdrN+BnPXemeA==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-member-expression-to-functions@7.25.9':
resolution: {integrity: sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-module-imports@7.24.7':
- resolution: {integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-module-imports@7.25.7':
- resolution: {integrity: sha512-o0xCgpNmRohmnoWKQ0Ij8IdddjyBFE4T2kagL/x6M3+4zUgc+4qTOUBoNe4XxDskt1HPKO007ZPiMgLDq2s7Kw==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-module-imports@7.25.9':
resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-module-transforms@7.24.7':
- resolution: {integrity: sha512-1fuJEwIrp+97rM4RWdO+qrRsZlAeL1lQJoPqtCYWv0NL115XM93hIH4CSRln2w52SqvmY5hqdtauB6QFCDiZNQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
- '@babel/helper-module-transforms@7.25.7':
- resolution: {integrity: sha512-k/6f8dKG3yDz/qCwSM+RKovjMix563SLxQFo0UhRNo239SP6n9u5/eLtKD6EAjwta2JHJ49CsD8pms2HdNiMMQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
'@babel/helper-module-transforms@7.26.0':
resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-optimise-call-expression@7.25.7':
- resolution: {integrity: sha512-VAwcwuYhv/AT+Vfr28c9y6SHzTan1ryqrydSTFGjU0uDJHw3uZ+PduI8plCLkRsDnqK2DMEDmwrOQRsK/Ykjng==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-optimise-call-expression@7.25.9':
resolution: {integrity: sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-plugin-utils@7.24.8':
- resolution: {integrity: sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-plugin-utils@7.25.7':
- resolution: {integrity: sha512-eaPZai0PiqCi09pPs3pAFfl/zYgGaE6IdXtYvmf0qlcDTd3WCtO7JWCcRd64e0EQrcYgiHibEZnOGsSY4QSgaw==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-plugin-utils@7.25.9':
resolution: {integrity: sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==}
engines: {node: '>=6.9.0'}
@@ -839,34 +757,16 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-replace-supers@7.25.7':
- resolution: {integrity: sha512-iy8JhqlUW9PtZkd4pHM96v6BdJ66Ba9yWSE4z0W4TvSZwLBPkyDsiIU3ENe4SmrzRBs76F7rQXTy1lYC49n6Lw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
'@babel/helper-replace-supers@7.25.9':
resolution: {integrity: sha512-IiDqTOTBQy0sWyeXyGSC5TBJpGFXBkRynjBeXsvbhQFKj2viwJC76Epz35YLU1fpe/Am6Vppb7W7zM4fPQzLsQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-simple-access@7.24.7':
- resolution: {integrity: sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-simple-access@7.25.7':
- resolution: {integrity: sha512-FPGAkJmyoChQeM+ruBGIDyrT2tKfZJO8NcxdC+CWNJi7N8/rZpSxK7yvBJ5O/nF1gfu5KzN7VKG3YVSLFfRSxQ==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-simple-access@7.25.9':
resolution: {integrity: sha512-c6WHXuiaRsJTyHYLJV75t9IqsmTbItYfdj99PnzYGQZkYKvan5/2jKJ7gu31J3/BJ/A18grImSPModuyG/Eo0Q==}
engines: {node: '>=6.9.0'}
- '@babel/helper-skip-transparent-expression-wrappers@7.25.7':
- resolution: {integrity: sha512-pPbNbchZBkPMD50K0p3JGcFMNLVUCuU/ABybm/PGNj4JiHrpmNyqqCphBk4i19xXtNV0JhldQJJtbSW5aUvbyA==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-skip-transparent-expression-wrappers@7.25.9':
resolution: {integrity: sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==}
engines: {node: '>=6.9.0'}
@@ -875,42 +775,14 @@ packages:
resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==}
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'}
-
- '@babel/helper-string-parser@7.24.8':
- resolution: {integrity: sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-string-parser@7.25.7':
- resolution: {integrity: sha512-CbkjYdsJNHFk8uqpEkpCvRs3YRp9tY6FmFY7wLMSYuGYkrdUi7r2lc4/wqsvlHoMznX3WJ9IP8giGPq68T/Y6g==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-string-parser@7.25.9':
resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-identifier@7.24.7':
- resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-validator-identifier@7.25.7':
- resolution: {integrity: sha512-AM6TzwYqGChO45oiuPqwL2t20/HdMC1rTPAesnBCgPCSF1x3oN9MVUwQV2iyz4xqWrctwK5RNC8LV22kaQCNYg==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-validator-identifier@7.25.9':
resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-option@7.24.7':
- resolution: {integrity: sha512-yy1/KvjhV/ZCL+SM7hBrvnZJ3ZuT9OuZgIJAGpPEToANvc3iM6iDvBnRjtElWibHU6n8/LPR/EjX9EtIEYO3pw==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-validator-option@7.25.7':
- resolution: {integrity: sha512-ytbPLsm+GjArDYXJ8Ydr1c/KJuutjF2besPNbIZnZ6MKUxi/uTA22t2ymmA4WFjZFpjiAMO0xuuJPqK2nvDVfQ==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-validator-option@7.25.9':
resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==}
engines: {node: '>=6.9.0'}
@@ -919,36 +791,10 @@ packages:
resolution: {integrity: sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g==}
engines: {node: '>=6.9.0'}
- '@babel/helpers@7.24.7':
- resolution: {integrity: sha512-NlmJJtvcw72yRJRcnCmGvSi+3jDEg8qFu3z0AFoymmzLx5ERVWyzd9kVXr7Th9/8yIJi2Zc6av4Tqz3wFs8QWg==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helpers@7.25.7':
- resolution: {integrity: sha512-Sv6pASx7Esm38KQpF/U/OXLwPPrdGHNKoeblRxgZRLXnAtnkEe4ptJPDtAZM7fBLadbc1Q07kQpSiGQ0Jg6tRA==}
- engines: {node: '>=6.9.0'}
-
'@babel/helpers@7.26.0':
resolution: {integrity: sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==}
engines: {node: '>=6.9.0'}
- '@babel/highlight@7.24.7':
- resolution: {integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==}
- engines: {node: '>=6.9.0'}
-
- '@babel/highlight@7.25.7':
- resolution: {integrity: sha512-iYyACpW3iW8Fw+ZybQK+drQre+ns/tKpXbNESfrhNnPLIklLbXr7MYJ6gPEd0iETGLOK+SxMjVvKb/ffmk+FEw==}
- engines: {node: '>=6.9.0'}
-
- '@babel/parser@7.25.4':
- resolution: {integrity: sha512-nq+eWrOgdtu3jG5Os4TQP3x3cLA8hR8TvJNjD8vnPa20WGycimcparWnLK4jJhElTK6SDyuJo1weMKO/5LpmLA==}
- engines: {node: '>=6.0.0'}
- hasBin: true
-
- '@babel/parser@7.25.7':
- resolution: {integrity: sha512-aZn7ETtQsjjGG5HruveUK06cU3Hljuhd9Iojm4M8WWv3wLE6OkE5PWbDUkItmMgegmccaITudyuW5RPYrYlgWw==}
- engines: {node: '>=6.0.0'}
- hasBin: true
-
'@babel/parser@7.26.2':
resolution: {integrity: sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==}
engines: {node: '>=6.0.0'}
@@ -972,8 +818,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-proposal-decorators@7.25.7':
- resolution: {integrity: sha512-q1mqqqH0e1lhmsEQHV5U8OmdueBC2y0RFr2oUzZoFRtN3MvPmt2fsFRcNQAoGLTSNdHBFUYGnlgcRFhkBbKjPw==}
+ '@babel/plugin-proposal-decorators@7.25.9':
+ resolution: {integrity: sha512-smkNLL/O1ezy9Nhy4CNosc4Va+1wo5w4gzSZeLe6y6dM4mmHfYOCPolXQPHQxonZCF+ZyebxN9vqOolkYrSn5g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1005,8 +851,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-decorators@7.25.7':
- resolution: {integrity: sha512-oXduHo642ZhstLVYTe2z2GSJIruU0c/W3/Ghr6A5yGMsVrvdnxO1z+3pbTcT7f3/Clnt+1z8D/w1r1f1SHaCHw==}
+ '@babel/plugin-syntax-decorators@7.25.9':
+ resolution: {integrity: sha512-ryzI0McXUPJnRCvMo4lumIKZUzhYUO/ScI+Mz4YVaTLt04DHNSjEUjKVvbzQjZFLuod/cYEc07mJWhzl6v4DPg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1027,12 +873,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-import-attributes@7.25.7':
- resolution: {integrity: sha512-AqVo+dguCgmpi/3mYBdu9lkngOBlQ2w2vnNpa6gfiCxQZLzV4ZbhsXitJ2Yblkoe1VQwtHSaNmIaGll/26YWRw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-syntax-import-attributes@7.26.0':
resolution: {integrity: sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==}
engines: {node: '>=6.9.0'}
@@ -1049,8 +889,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-jsx@7.24.7':
- resolution: {integrity: sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==}
+ '@babel/plugin-syntax-jsx@7.25.9':
+ resolution: {integrity: sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1097,14 +937,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-typescript@7.24.7':
- resolution: {integrity: sha512-c/+fVeJBB0FeKsFvwytYiUD+LBvhHjGSI0g446PRGdSVGZLRNArBUno2PETbAly3tpiNAQR5XaZ+JslxkotsbA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-syntax-typescript@7.25.7':
- resolution: {integrity: sha512-rR+5FDjpCHqqZN2bzZm18bVYGaejGq5ZkpVCJLXor/+zlSrSoc4KWcHI0URVWjl/68Dyr1uwZUz/1njycEAv9g==}
+ '@babel/plugin-syntax-typescript@7.25.9':
+ resolution: {integrity: sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1337,14 +1171,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-jsx-self@7.25.7':
- resolution: {integrity: sha512-JD9MUnLbPL0WdVK8AWC7F7tTG2OS6u/AKKnsK+NdRhUiVdnzyR1S3kKQCaRLOiaULvUiqK6Z4JQE635VgtCFeg==}
+ '@babel/plugin-transform-react-jsx-self@7.25.9':
+ resolution: {integrity: sha512-y8quW6p0WHkEhmErnfe58r7x0A70uKphQm8Sp8cV7tjNQwK56sNVK0M73LK3WuYmsuyrftut4xAkjjgU0twaMg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-jsx-source@7.25.7':
- resolution: {integrity: sha512-S/JXG/KrbIY06iyJPKfxr0qRxnhNOdkNXYBl/rmwgDd72cQLH9tEGkDm/yJPGvcSIUoikzfjMios9i+xT/uv9w==}
+ '@babel/plugin-transform-react-jsx-source@7.25.9':
+ resolution: {integrity: sha512-+iqjT8xmXhhYv4/uiYd8FNQsraMFZIfxVSqxxVSZP0WbbSAWvBXAul0m/zu+7Vv4O/3WtApy9pmaTMiumEZgfg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1397,8 +1231,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-typescript@7.25.7':
- resolution: {integrity: sha512-VKlgy2vBzj8AmEzunocMun2fF06bsSWV+FvVXohtL6FGve/+L217qhHxRTVGHEDO/YR8IANcjzgJsd04J8ge5Q==}
+ '@babel/plugin-transform-typescript@7.25.9':
+ resolution: {integrity: sha512-7PbZQZP50tzv2KGGnhh82GSyMB01yKY9scIjf1a+GfZCtInOWqUH5+1EBU4t9fyR5Oykkkc9vFTs4OHrhHXljQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1442,42 +1276,18 @@ packages:
resolution: {integrity: sha512-Chk32uHMg6TnQdvw2e9IlqPpFX/6NLuK0Ys2PqLb7/gL5uFn9mXvK715FGLlOLQrcO4qIkNHkvPGktzzXexsFw==}
engines: {node: '>=6.9.0'}
- '@babel/standalone@7.25.7':
- resolution: {integrity: sha512-7H+mK18Ew4C/pIIiZwF1eiVjUEh2Ju/BpwRZwcPeXltF/rIjHjFL0gol7PtGrHocmIq6P6ubJrylmmWQ3lGJPA==}
- engines: {node: '>=6.9.0'}
-
- '@babel/template@7.25.0':
- resolution: {integrity: sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==}
- engines: {node: '>=6.9.0'}
-
- '@babel/template@7.25.7':
- resolution: {integrity: sha512-wRwtAgI3bAS+JGU2upWNL9lSlDcRCqD05BZ1n3X2ONLH1WilFP6O1otQjeMK/1g0pvYcXC7b/qVUB1keofjtZA==}
+ '@babel/standalone@7.26.2':
+ resolution: {integrity: sha512-i2VbegsRfwa9yq3xmfDX3tG2yh9K0cCqwpSyVG2nPxifh0EOnucAZUeO/g4lW2Zfg03aPJNtPfxQbDHzXc7H+w==}
engines: {node: '>=6.9.0'}
'@babel/template@7.25.9':
resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==}
engines: {node: '>=6.9.0'}
- '@babel/traverse@7.25.4':
- resolution: {integrity: sha512-VJ4XsrD+nOvlXyLzmLzUs/0qjFS4sK30te5yEFlvbbUNEgKaVb2BHZUpAL+ttLPQAHNrsI3zZisbfha5Cvr8vg==}
- engines: {node: '>=6.9.0'}
-
- '@babel/traverse@7.25.7':
- resolution: {integrity: sha512-jatJPT1Zjqvh/1FyJs6qAHL+Dzb7sTb+xr7Q+gM1b+1oBsMsQQ4FkVKb6dFlJvLlVssqkRzV05Jzervt9yhnzg==}
- engines: {node: '>=6.9.0'}
-
'@babel/traverse@7.25.9':
resolution: {integrity: sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==}
engines: {node: '>=6.9.0'}
- '@babel/types@7.25.4':
- resolution: {integrity: sha512-zQ1ijeeCXVEh+aNL0RlmkPkG8HUiDcU2pzQQFjtbntgAczRASFzj4H+6+bV+dy1ntKR14I/DypeuRG1uma98iQ==}
- engines: {node: '>=6.9.0'}
-
- '@babel/types@7.25.7':
- resolution: {integrity: sha512-vwIVdXG+j+FOpkwqHRcBgHLYNL7XMkufrlaFvL9o6Ai9sJn9+PdyIL5qa0XzTZw084c+u9LOls53eoZWP/W5WQ==}
- engines: {node: '>=6.9.0'}
-
'@babel/types@7.26.0':
resolution: {integrity: sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==}
engines: {node: '>=6.9.0'}
@@ -1494,10 +1304,6 @@ packages:
engines: {node: '>=0.1.95'}
hasBin: true
- '@cspotcode/source-map-support@0.8.1':
- resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==}
- engines: {node: '>=12'}
-
'@discoveryjs/json-ext@0.5.7':
resolution: {integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==}
engines: {node: '>=10.0.0'}
@@ -1523,12 +1329,6 @@ packages:
cpu: [ppc64]
os: [aix]
- '@esbuild/aix-ppc64@0.20.2':
- resolution: {integrity: sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==}
- engines: {node: '>=12'}
- cpu: [ppc64]
- os: [aix]
-
'@esbuild/aix-ppc64@0.21.5':
resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==}
engines: {node: '>=12'}
@@ -1541,6 +1341,12 @@ packages:
cpu: [ppc64]
os: [aix]
+ '@esbuild/aix-ppc64@0.24.0':
+ resolution: {integrity: sha512-WtKdFM7ls47zkKHFVzMz8opM7LkcsIp9amDUBIAWirg70RM71WRSjdILPsY5Uv1D42ZpUfaPILDlfactHgsRkw==}
+ engines: {node: '>=18'}
+ cpu: [ppc64]
+ os: [aix]
+
'@esbuild/android-arm64@0.19.12':
resolution: {integrity: sha512-P0UVNGIienjZv3f5zq0DP3Nt2IE/3plFzuaS96vihvD0Hd6H/q4WXUGpCxD/E8YrSXfNyRPbpTq+T8ZQioSuPA==}
engines: {node: '>=12'}
@@ -1553,12 +1359,6 @@ packages:
cpu: [arm64]
os: [android]
- '@esbuild/android-arm64@0.20.2':
- resolution: {integrity: sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==}
- 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'}
@@ -1571,6 +1371,12 @@ packages:
cpu: [arm64]
os: [android]
+ '@esbuild/android-arm64@0.24.0':
+ resolution: {integrity: sha512-Vsm497xFM7tTIPYK9bNTYJyF/lsP590Qc1WxJdlB6ljCbdZKU9SY8i7+Iin4kyhV/KV5J2rOKsBQbB77Ab7L/w==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [android]
+
'@esbuild/android-arm@0.19.12':
resolution: {integrity: sha512-qg/Lj1mu3CdQlDEEiWrlC4eaPZ1KztwGJ9B6J+/6G+/4ewxJg7gqj8eVYWvao1bXrqGiW2rsBZFSX3q2lcW05w==}
engines: {node: '>=12'}
@@ -1583,12 +1389,6 @@ packages:
cpu: [arm]
os: [android]
- '@esbuild/android-arm@0.20.2':
- resolution: {integrity: sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==}
- engines: {node: '>=12'}
- cpu: [arm]
- os: [android]
-
'@esbuild/android-arm@0.21.5':
resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==}
engines: {node: '>=12'}
@@ -1601,6 +1401,12 @@ packages:
cpu: [arm]
os: [android]
+ '@esbuild/android-arm@0.24.0':
+ resolution: {integrity: sha512-arAtTPo76fJ/ICkXWetLCc9EwEHKaeya4vMrReVlEIUCAUncH7M4bhMQ+M9Vf+FFOZJdTNMXNBrWwW+OXWpSew==}
+ engines: {node: '>=18'}
+ cpu: [arm]
+ os: [android]
+
'@esbuild/android-x64@0.19.12':
resolution: {integrity: sha512-3k7ZoUW6Q6YqhdhIaq/WZ7HwBpnFBlW905Fa4s4qWJyiNOgT1dOqDiVAQFwBH7gBRZr17gLrlFCRzF6jFh7Kew==}
engines: {node: '>=12'}
@@ -1613,12 +1419,6 @@ packages:
cpu: [x64]
os: [android]
- '@esbuild/android-x64@0.20.2':
- resolution: {integrity: sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [android]
-
'@esbuild/android-x64@0.21.5':
resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==}
engines: {node: '>=12'}
@@ -1631,6 +1431,12 @@ packages:
cpu: [x64]
os: [android]
+ '@esbuild/android-x64@0.24.0':
+ resolution: {integrity: sha512-t8GrvnFkiIY7pa7mMgJd7p8p8qqYIz1NYiAoKc75Zyv73L3DZW++oYMSHPRarcotTKuSs6m3hTOa5CKHaS02TQ==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [android]
+
'@esbuild/darwin-arm64@0.19.12':
resolution: {integrity: sha512-B6IeSgZgtEzGC42jsI+YYu9Z3HKRxp8ZT3cqhvliEHovq8HSX2YX8lNocDn79gCKJXOSaEot9MVYky7AKjCs8g==}
engines: {node: '>=12'}
@@ -1643,12 +1449,6 @@ packages:
cpu: [arm64]
os: [darwin]
- '@esbuild/darwin-arm64@0.20.2':
- resolution: {integrity: sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [darwin]
-
'@esbuild/darwin-arm64@0.21.5':
resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==}
engines: {node: '>=12'}
@@ -1661,6 +1461,12 @@ packages:
cpu: [arm64]
os: [darwin]
+ '@esbuild/darwin-arm64@0.24.0':
+ resolution: {integrity: sha512-CKyDpRbK1hXwv79soeTJNHb5EiG6ct3efd/FTPdzOWdbZZfGhpbcqIpiD0+vwmpu0wTIL97ZRPZu8vUt46nBSw==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [darwin]
+
'@esbuild/darwin-x64@0.19.12':
resolution: {integrity: sha512-hKoVkKzFiToTgn+41qGhsUJXFlIjxI/jSYeZf3ugemDYZldIXIxhvwN6erJGlX4t5h417iFuheZ7l+YVn05N3A==}
engines: {node: '>=12'}
@@ -1673,12 +1479,6 @@ packages:
cpu: [x64]
os: [darwin]
- '@esbuild/darwin-x64@0.20.2':
- resolution: {integrity: sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [darwin]
-
'@esbuild/darwin-x64@0.21.5':
resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==}
engines: {node: '>=12'}
@@ -1691,6 +1491,12 @@ packages:
cpu: [x64]
os: [darwin]
+ '@esbuild/darwin-x64@0.24.0':
+ resolution: {integrity: sha512-rgtz6flkVkh58od4PwTRqxbKH9cOjaXCMZgWD905JOzjFKW+7EiUObfd/Kav+A6Gyud6WZk9w+xu6QLytdi2OA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [darwin]
+
'@esbuild/freebsd-arm64@0.19.12':
resolution: {integrity: sha512-4aRvFIXmwAcDBw9AueDQ2YnGmz5L6obe5kmPT8Vd+/+x/JMVKCgdcRwH6APrbpNXsPz+K653Qg8HB/oXvXVukA==}
engines: {node: '>=12'}
@@ -1703,12 +1509,6 @@ packages:
cpu: [arm64]
os: [freebsd]
- '@esbuild/freebsd-arm64@0.20.2':
- resolution: {integrity: sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [freebsd]
-
'@esbuild/freebsd-arm64@0.21.5':
resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==}
engines: {node: '>=12'}
@@ -1721,6 +1521,12 @@ packages:
cpu: [arm64]
os: [freebsd]
+ '@esbuild/freebsd-arm64@0.24.0':
+ resolution: {integrity: sha512-6Mtdq5nHggwfDNLAHkPlyLBpE5L6hwsuXZX8XNmHno9JuL2+bg2BX5tRkwjyfn6sKbxZTq68suOjgWqCicvPXA==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [freebsd]
+
'@esbuild/freebsd-x64@0.19.12':
resolution: {integrity: sha512-EYoXZ4d8xtBoVN7CEwWY2IN4ho76xjYXqSXMNccFSx2lgqOG/1TBPW0yPx1bJZk94qu3tX0fycJeeQsKovA8gg==}
engines: {node: '>=12'}
@@ -1733,12 +1539,6 @@ packages:
cpu: [x64]
os: [freebsd]
- '@esbuild/freebsd-x64@0.20.2':
- resolution: {integrity: sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==}
- 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'}
@@ -1751,6 +1551,12 @@ packages:
cpu: [x64]
os: [freebsd]
+ '@esbuild/freebsd-x64@0.24.0':
+ resolution: {integrity: sha512-D3H+xh3/zphoX8ck4S2RxKR6gHlHDXXzOf6f/9dbFt/NRBDIE33+cVa49Kil4WUjxMGW0ZIYBYtaGCa2+OsQwQ==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [freebsd]
+
'@esbuild/linux-arm64@0.19.12':
resolution: {integrity: sha512-EoTjyYyLuVPfdPLsGVVVC8a0p1BFFvtpQDB/YLEhaXyf/5bczaGeN15QkR+O4S5LeJ92Tqotve7i1jn35qwvdA==}
engines: {node: '>=12'}
@@ -1763,12 +1569,6 @@ packages:
cpu: [arm64]
os: [linux]
- '@esbuild/linux-arm64@0.20.2':
- resolution: {integrity: sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [linux]
-
'@esbuild/linux-arm64@0.21.5':
resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==}
engines: {node: '>=12'}
@@ -1781,6 +1581,12 @@ packages:
cpu: [arm64]
os: [linux]
+ '@esbuild/linux-arm64@0.24.0':
+ resolution: {integrity: sha512-TDijPXTOeE3eaMkRYpcy3LarIg13dS9wWHRdwYRnzlwlA370rNdZqbcp0WTyyV/k2zSxfko52+C7jU5F9Tfj1g==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [linux]
+
'@esbuild/linux-arm@0.19.12':
resolution: {integrity: sha512-J5jPms//KhSNv+LO1S1TX1UWp1ucM6N6XuL6ITdKWElCu8wXP72l9MM0zDTzzeikVyqFE6U8YAV9/tFyj0ti+w==}
engines: {node: '>=12'}
@@ -1793,12 +1599,6 @@ packages:
cpu: [arm]
os: [linux]
- '@esbuild/linux-arm@0.20.2':
- resolution: {integrity: sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==}
- engines: {node: '>=12'}
- cpu: [arm]
- os: [linux]
-
'@esbuild/linux-arm@0.21.5':
resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==}
engines: {node: '>=12'}
@@ -1811,6 +1611,12 @@ packages:
cpu: [arm]
os: [linux]
+ '@esbuild/linux-arm@0.24.0':
+ resolution: {integrity: sha512-gJKIi2IjRo5G6Glxb8d3DzYXlxdEj2NlkixPsqePSZMhLudqPhtZ4BUrpIuTjJYXxvF9njql+vRjB2oaC9XpBw==}
+ engines: {node: '>=18'}
+ cpu: [arm]
+ os: [linux]
+
'@esbuild/linux-ia32@0.19.12':
resolution: {integrity: sha512-Thsa42rrP1+UIGaWz47uydHSBOgTUnwBwNq59khgIwktK6x60Hivfbux9iNR0eHCHzOLjLMLfUMLCypBkZXMHA==}
engines: {node: '>=12'}
@@ -1823,12 +1629,6 @@ packages:
cpu: [ia32]
os: [linux]
- '@esbuild/linux-ia32@0.20.2':
- resolution: {integrity: sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [linux]
-
'@esbuild/linux-ia32@0.21.5':
resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==}
engines: {node: '>=12'}
@@ -1841,6 +1641,12 @@ packages:
cpu: [ia32]
os: [linux]
+ '@esbuild/linux-ia32@0.24.0':
+ resolution: {integrity: sha512-K40ip1LAcA0byL05TbCQ4yJ4swvnbzHscRmUilrmP9Am7//0UjPreh4lpYzvThT2Quw66MhjG//20mrufm40mA==}
+ engines: {node: '>=18'}
+ cpu: [ia32]
+ os: [linux]
+
'@esbuild/linux-loong64@0.19.12':
resolution: {integrity: sha512-LiXdXA0s3IqRRjm6rV6XaWATScKAXjI4R4LoDlvO7+yQqFdlr1Bax62sRwkVvRIrwXxvtYEHHI4dm50jAXkuAA==}
engines: {node: '>=12'}
@@ -1853,12 +1659,6 @@ packages:
cpu: [loong64]
os: [linux]
- '@esbuild/linux-loong64@0.20.2':
- resolution: {integrity: sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==}
- engines: {node: '>=12'}
- cpu: [loong64]
- os: [linux]
-
'@esbuild/linux-loong64@0.21.5':
resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==}
engines: {node: '>=12'}
@@ -1871,6 +1671,12 @@ packages:
cpu: [loong64]
os: [linux]
+ '@esbuild/linux-loong64@0.24.0':
+ resolution: {integrity: sha512-0mswrYP/9ai+CU0BzBfPMZ8RVm3RGAN/lmOMgW4aFUSOQBjA31UP8Mr6DDhWSuMwj7jaWOT0p0WoZ6jeHhrD7g==}
+ engines: {node: '>=18'}
+ cpu: [loong64]
+ os: [linux]
+
'@esbuild/linux-mips64el@0.19.12':
resolution: {integrity: sha512-fEnAuj5VGTanfJ07ff0gOA6IPsvrVHLVb6Lyd1g2/ed67oU1eFzL0r9WL7ZzscD+/N6i3dWumGE1Un4f7Amf+w==}
engines: {node: '>=12'}
@@ -1883,12 +1689,6 @@ packages:
cpu: [mips64el]
os: [linux]
- '@esbuild/linux-mips64el@0.20.2':
- resolution: {integrity: sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==}
- engines: {node: '>=12'}
- cpu: [mips64el]
- os: [linux]
-
'@esbuild/linux-mips64el@0.21.5':
resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==}
engines: {node: '>=12'}
@@ -1901,6 +1701,12 @@ packages:
cpu: [mips64el]
os: [linux]
+ '@esbuild/linux-mips64el@0.24.0':
+ resolution: {integrity: sha512-hIKvXm0/3w/5+RDtCJeXqMZGkI2s4oMUGj3/jM0QzhgIASWrGO5/RlzAzm5nNh/awHE0A19h/CvHQe6FaBNrRA==}
+ engines: {node: '>=18'}
+ cpu: [mips64el]
+ os: [linux]
+
'@esbuild/linux-ppc64@0.19.12':
resolution: {integrity: sha512-nYJA2/QPimDQOh1rKWedNOe3Gfc8PabU7HT3iXWtNUbRzXS9+vgB0Fjaqr//XNbd82mCxHzik2qotuI89cfixg==}
engines: {node: '>=12'}
@@ -1913,12 +1719,6 @@ packages:
cpu: [ppc64]
os: [linux]
- '@esbuild/linux-ppc64@0.20.2':
- resolution: {integrity: sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==}
- 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'}
@@ -1931,6 +1731,12 @@ packages:
cpu: [ppc64]
os: [linux]
+ '@esbuild/linux-ppc64@0.24.0':
+ resolution: {integrity: sha512-HcZh5BNq0aC52UoocJxaKORfFODWXZxtBaaZNuN3PUX3MoDsChsZqopzi5UupRhPHSEHotoiptqikjN/B77mYQ==}
+ engines: {node: '>=18'}
+ cpu: [ppc64]
+ os: [linux]
+
'@esbuild/linux-riscv64@0.19.12':
resolution: {integrity: sha512-2MueBrlPQCw5dVJJpQdUYgeqIzDQgw3QtiAHUC4RBz9FXPrskyyU3VI1hw7C0BSKB9OduwSJ79FTCqtGMWqJHg==}
engines: {node: '>=12'}
@@ -1943,12 +1749,6 @@ packages:
cpu: [riscv64]
os: [linux]
- '@esbuild/linux-riscv64@0.20.2':
- resolution: {integrity: sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==}
- engines: {node: '>=12'}
- cpu: [riscv64]
- os: [linux]
-
'@esbuild/linux-riscv64@0.21.5':
resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==}
engines: {node: '>=12'}
@@ -1961,6 +1761,12 @@ packages:
cpu: [riscv64]
os: [linux]
+ '@esbuild/linux-riscv64@0.24.0':
+ resolution: {integrity: sha512-bEh7dMn/h3QxeR2KTy1DUszQjUrIHPZKyO6aN1X4BCnhfYhuQqedHaa5MxSQA/06j3GpiIlFGSsy1c7Gf9padw==}
+ engines: {node: '>=18'}
+ cpu: [riscv64]
+ os: [linux]
+
'@esbuild/linux-s390x@0.19.12':
resolution: {integrity: sha512-+Pil1Nv3Umes4m3AZKqA2anfhJiVmNCYkPchwFJNEJN5QxmTs1uzyy4TvmDrCRNT2ApwSari7ZIgrPeUx4UZDg==}
engines: {node: '>=12'}
@@ -1973,12 +1779,6 @@ packages:
cpu: [s390x]
os: [linux]
- '@esbuild/linux-s390x@0.20.2':
- resolution: {integrity: sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==}
- engines: {node: '>=12'}
- cpu: [s390x]
- os: [linux]
-
'@esbuild/linux-s390x@0.21.5':
resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==}
engines: {node: '>=12'}
@@ -1991,6 +1791,12 @@ packages:
cpu: [s390x]
os: [linux]
+ '@esbuild/linux-s390x@0.24.0':
+ resolution: {integrity: sha512-ZcQ6+qRkw1UcZGPyrCiHHkmBaj9SiCD8Oqd556HldP+QlpUIe2Wgn3ehQGVoPOvZvtHm8HPx+bH20c9pvbkX3g==}
+ engines: {node: '>=18'}
+ cpu: [s390x]
+ os: [linux]
+
'@esbuild/linux-x64@0.19.12':
resolution: {integrity: sha512-B71g1QpxfwBvNrfyJdVDexenDIt1CiDN1TIXLbhOw0KhJzE78KIFGX6OJ9MrtC0oOqMWf+0xop4qEU8JrJTwCg==}
engines: {node: '>=12'}
@@ -2003,12 +1809,6 @@ packages:
cpu: [x64]
os: [linux]
- '@esbuild/linux-x64@0.20.2':
- resolution: {integrity: sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [linux]
-
'@esbuild/linux-x64@0.21.5':
resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==}
engines: {node: '>=12'}
@@ -2021,6 +1821,12 @@ packages:
cpu: [x64]
os: [linux]
+ '@esbuild/linux-x64@0.24.0':
+ resolution: {integrity: sha512-vbutsFqQ+foy3wSSbmjBXXIJ6PL3scghJoM8zCL142cGaZKAdCZHyf+Bpu/MmX9zT9Q0zFBVKb36Ma5Fzfa8xA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [linux]
+
'@esbuild/netbsd-x64@0.19.12':
resolution: {integrity: sha512-3ltjQ7n1owJgFbuC61Oj++XhtzmymoCihNFgT84UAmJnxJfm4sYCiSLTXZtE00VWYpPMYc+ZQmB6xbSdVh0JWA==}
engines: {node: '>=12'}
@@ -2033,12 +1839,6 @@ packages:
cpu: [x64]
os: [netbsd]
- '@esbuild/netbsd-x64@0.20.2':
- resolution: {integrity: sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [netbsd]
-
'@esbuild/netbsd-x64@0.21.5':
resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==}
engines: {node: '>=12'}
@@ -2051,12 +1851,24 @@ packages:
cpu: [x64]
os: [netbsd]
+ '@esbuild/netbsd-x64@0.24.0':
+ resolution: {integrity: sha512-hjQ0R/ulkO8fCYFsG0FZoH+pWgTTDreqpqY7UnQntnaKv95uP5iW3+dChxnx7C3trQQU40S+OgWhUVwCjVFLvg==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [netbsd]
+
'@esbuild/openbsd-arm64@0.23.1':
resolution: {integrity: sha512-3x37szhLexNA4bXhLrCC/LImN/YtWis6WXr1VESlfVtVeoFJBRINPJ3f0a/6LV8zpikqoUg4hyXw0sFBt5Cr+Q==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openbsd]
+ '@esbuild/openbsd-arm64@0.24.0':
+ resolution: {integrity: sha512-MD9uzzkPQbYehwcN583yx3Tu5M8EIoTD+tUgKF982WYL9Pf5rKy9ltgD0eUgs8pvKnmizxjXZyLt0z6DC3rRXg==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [openbsd]
+
'@esbuild/openbsd-x64@0.19.12':
resolution: {integrity: sha512-RbrfTB9SWsr0kWmb9srfF+L933uMDdu9BIzdA7os2t0TXhCRjrQyCeOt6wVxr79CKD4c+p+YhCj31HBkYcXebw==}
engines: {node: '>=12'}
@@ -2069,12 +1881,6 @@ packages:
cpu: [x64]
os: [openbsd]
- '@esbuild/openbsd-x64@0.20.2':
- resolution: {integrity: sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [openbsd]
-
'@esbuild/openbsd-x64@0.21.5':
resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==}
engines: {node: '>=12'}
@@ -2087,6 +1893,12 @@ packages:
cpu: [x64]
os: [openbsd]
+ '@esbuild/openbsd-x64@0.24.0':
+ resolution: {integrity: sha512-4ir0aY1NGUhIC1hdoCzr1+5b43mw99uNwVzhIq1OY3QcEwPDO3B7WNXBzaKY5Nsf1+N11i1eOfFcq+D/gOS15Q==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [openbsd]
+
'@esbuild/sunos-x64@0.19.12':
resolution: {integrity: sha512-HKjJwRrW8uWtCQnQOz9qcU3mUZhTUQvi56Q8DPTLLB+DawoiQdjsYq+j+D3s9I8VFtDr+F9CjgXKKC4ss89IeA==}
engines: {node: '>=12'}
@@ -2099,12 +1911,6 @@ packages:
cpu: [x64]
os: [sunos]
- '@esbuild/sunos-x64@0.20.2':
- resolution: {integrity: sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [sunos]
-
'@esbuild/sunos-x64@0.21.5':
resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==}
engines: {node: '>=12'}
@@ -2117,6 +1923,12 @@ packages:
cpu: [x64]
os: [sunos]
+ '@esbuild/sunos-x64@0.24.0':
+ resolution: {integrity: sha512-jVzdzsbM5xrotH+W5f1s+JtUy1UWgjU0Cf4wMvffTB8m6wP5/kx0KiaLHlbJO+dMgtxKV8RQ/JvtlFcdZ1zCPA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [sunos]
+
'@esbuild/win32-arm64@0.19.12':
resolution: {integrity: sha512-URgtR1dJnmGvX864pn1B2YUYNzjmXkuJOIqG2HdU62MVS4EHpU2946OZoTMnRUHklGtJdJZ33QfzdjGACXhn1A==}
engines: {node: '>=12'}
@@ -2129,12 +1941,6 @@ packages:
cpu: [arm64]
os: [win32]
- '@esbuild/win32-arm64@0.20.2':
- resolution: {integrity: sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [win32]
-
'@esbuild/win32-arm64@0.21.5':
resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==}
engines: {node: '>=12'}
@@ -2147,6 +1953,12 @@ packages:
cpu: [arm64]
os: [win32]
+ '@esbuild/win32-arm64@0.24.0':
+ resolution: {integrity: sha512-iKc8GAslzRpBytO2/aN3d2yb2z8XTVfNV0PjGlCxKo5SgWmNXx82I/Q3aG1tFfS+A2igVCY97TJ8tnYwpUWLCA==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [win32]
+
'@esbuild/win32-ia32@0.19.12':
resolution: {integrity: sha512-+ZOE6pUkMOJfmxmBZElNOx72NKpIa/HFOMGzu8fqzQJ5kgf6aTGrcJaFsNiVMH4JKpMipyK+7k0n2UXN7a8YKQ==}
engines: {node: '>=12'}
@@ -2159,12 +1971,6 @@ packages:
cpu: [ia32]
os: [win32]
- '@esbuild/win32-ia32@0.20.2':
- resolution: {integrity: sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [win32]
-
'@esbuild/win32-ia32@0.21.5':
resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==}
engines: {node: '>=12'}
@@ -2177,6 +1983,12 @@ packages:
cpu: [ia32]
os: [win32]
+ '@esbuild/win32-ia32@0.24.0':
+ resolution: {integrity: sha512-vQW36KZolfIudCcTnaTpmLQ24Ha1RjygBo39/aLkM2kmjkWmZGEJ5Gn9l5/7tzXA42QGIoWbICfg6KLLkIw6yw==}
+ engines: {node: '>=18'}
+ cpu: [ia32]
+ os: [win32]
+
'@esbuild/win32-x64@0.19.12':
resolution: {integrity: sha512-T1QyPSDCyMXaO3pzBkF96E8xMkiRYbUEZADd29SyPGabqxMViNoii+NcK7eWJAEoU6RZyEm5lVSIjTmcdoB9HA==}
engines: {node: '>=12'}
@@ -2189,12 +2001,6 @@ packages:
cpu: [x64]
os: [win32]
- '@esbuild/win32-x64@0.20.2':
- resolution: {integrity: sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [win32]
-
'@esbuild/win32-x64@0.21.5':
resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==}
engines: {node: '>=12'}
@@ -2207,14 +2013,20 @@ packages:
cpu: [x64]
os: [win32]
- '@eslint-community/eslint-utils@4.4.0':
- resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
+ '@esbuild/win32-x64@0.24.0':
+ resolution: {integrity: sha512-7IAFPrjSQIJrGsK6flwg7NFmwBoSTyF3rl7If0hNUFQU4ilTsEPL6GuMuU9BfIWVVGuRnuIidkSMC+c0Otu8IA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [win32]
+
+ '@eslint-community/eslint-utils@4.4.1':
+ resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
- '@eslint-community/regexpp@4.11.1':
- resolution: {integrity: sha512-m4DVN9ZqskZoLU5GlWZadwDnYo3vAEydiUayB9widCl9ffWx2IvPnp6n3on5rJmziJSw9Bv+Z3ChDVdMwXCY8Q==}
+ '@eslint-community/regexpp@4.12.1':
+ resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
'@eslint/eslintrc@2.1.4':
@@ -2225,10 +2037,6 @@ packages:
resolution: {integrity: sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- '@fastify/busboy@2.1.1':
- resolution: {integrity: sha512-vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA==}
- engines: {node: '>=14'}
-
'@gar/promisify@1.1.3':
resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==}
@@ -2269,10 +2077,6 @@ packages:
resolution: {integrity: sha512-ToG8d6RIbnVpbdPdiN7BCxZGiHOTomOX94C2FaT5KOHupV40tKEDozp12res6cMIfRKrXLJyexAZhWVHgbALSQ==}
engines: {node: '>=18'}
- '@inquirer/figures@1.0.3':
- resolution: {integrity: sha512-ErXXzENMH5pJt5/ssXV0DfWUZqly8nGzf0UcBV9xTnP+KyffE2mqyxIMBrZ8ijQck2nU0TQm40EQB53YreyWHw==}
- engines: {node: '>=18'}
-
'@inquirer/figures@1.0.7':
resolution: {integrity: sha512-m+Trk77mp54Zma6xLkLuY+mvanPxlE4A7yNKs2HBiyZ4UkVs28Mv5c/pgWrHeInx+USHeX/WEPzjrWrcJiQgjw==}
engines: {node: '>=18'}
@@ -2336,10 +2140,6 @@ packages:
resolution: {integrity: sha512-IY1R2i2aLsLr7Id3S6p2BA82GNWryt4oSvEXLAKc+L2zdi89dSkE8xC1C+0kpATG4JhBJREnQOH7/zmccM2B0g==}
engines: {node: '>= 10.14.2'}
- '@jest/console@27.5.1':
- resolution: {integrity: sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
-
'@jest/console@29.7.0':
resolution: {integrity: sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -2348,15 +2148,6 @@ packages:
resolution: {integrity: sha512-xvV1kKbhfUqFVuZ8Cyo+JPpipAHHAV3kcDBftiduK8EICXmTFddryy3P7NfZt8Pv37rA9nEJBKCCkglCPt/Xjw==}
engines: {node: '>= 10.14.2'}
- '@jest/core@27.5.1':
- resolution: {integrity: sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
- peerDependencies:
- node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
- peerDependenciesMeta:
- node-notifier:
- optional: true
-
'@jest/core@29.7.0':
resolution: {integrity: sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -2370,10 +2161,6 @@ packages:
resolution: {integrity: sha512-nFy+fHl28zUrRsCeMB61VDThV1pVTtlEokBRgqPrcT1JNq4yRNIyTHfyht6PqtUvY9IsuLGTrbG8kPXjSZIZwA==}
engines: {node: '>= 10.14.2'}
- '@jest/environment@27.5.1':
- resolution: {integrity: sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
-
'@jest/environment@29.7.0':
resolution: {integrity: sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -2390,10 +2177,6 @@ packages:
resolution: {integrity: sha512-14Uleatt7jdzefLPYM3KLcnUl1ZNikaKq34enpb5XG9i81JpppDb5muZvonvKyrl7ftEHkKS5L5/eB/kxJ+bvA==}
engines: {node: '>= 10.14.2'}
- '@jest/fake-timers@27.5.1':
- resolution: {integrity: sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
-
'@jest/fake-timers@29.7.0':
resolution: {integrity: sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -2402,10 +2185,6 @@ packages:
resolution: {integrity: sha512-85Ltnm7HlB/KesBUuALwQ68YTU72w9H2xW9FjZ1eL1U3lhtefjjl5c2MiUbpXt/i6LaPRvoOFJ22yCBSfQ0JIA==}
engines: {node: '>= 10.14.2'}
- '@jest/globals@27.5.1':
- resolution: {integrity: sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
-
'@jest/globals@29.7.0':
resolution: {integrity: sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -2414,15 +2193,6 @@ packages:
resolution: {integrity: sha512-h2bW53APG4HvkOnVMo8q3QXa6pcaNt1HkwVsOPMBV6LD/q9oSpxNSYZQYkAnjdMjrJ86UuYeLo+aEZClV6opnw==}
engines: {node: '>= 10.14.2'}
- '@jest/reporters@27.5.1':
- resolution: {integrity: sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
- peerDependencies:
- node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
- peerDependenciesMeta:
- node-notifier:
- optional: true
-
'@jest/reporters@29.7.0':
resolution: {integrity: sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -2440,10 +2210,6 @@ packages:
resolution: {integrity: sha512-YwYcCwAnNmOVsZ8mr3GfnzdXDAl4LaenZP5z+G0c8bzC9/dugL8zRmxZzdoTl4IaS3CryS1uWnROLPFmb6lVvA==}
engines: {node: '>= 10.14.2'}
- '@jest/source-map@27.5.1':
- resolution: {integrity: sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
-
'@jest/source-map@29.6.3':
resolution: {integrity: sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -2452,10 +2218,6 @@ packages:
resolution: {integrity: sha512-5O7H5c/7YlojphYNrK02LlDIV2GNPYisKwHm2QTKjNZeEzezCbwYs9swJySv2UfPMyZ0VdsmMv7jIlD/IKYQpQ==}
engines: {node: '>= 10.14.2'}
- '@jest/test-result@27.5.1':
- resolution: {integrity: sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
-
'@jest/test-result@29.7.0':
resolution: {integrity: sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -2464,10 +2226,6 @@ packages:
resolution: {integrity: sha512-YHlVIjP5nfEyjlrSr8t/YdNfU/1XEt7c5b4OxcXCjyRhjzLYu/rO69/WHPuYcbCWkz8kAeZVZp2N2+IOLLEPGw==}
engines: {node: '>= 10.14.2'}
- '@jest/test-sequencer@27.5.1':
- resolution: {integrity: sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
-
'@jest/test-sequencer@29.7.0':
resolution: {integrity: sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -2476,10 +2234,6 @@ packages:
resolution: {integrity: sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==}
engines: {node: '>= 10.14.2'}
- '@jest/transform@27.5.1':
- resolution: {integrity: sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
-
'@jest/transform@29.7.0':
resolution: {integrity: sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -2488,10 +2242,6 @@ packages:
resolution: {integrity: sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==}
engines: {node: '>= 10.14.2'}
- '@jest/types@27.5.1':
- resolution: {integrity: sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
-
'@jest/types@29.6.3':
resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -2517,9 +2267,6 @@ packages:
'@jridgewell/trace-mapping@0.3.25':
resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
- '@jridgewell/trace-mapping@0.3.9':
- resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==}
-
'@kwsites/file-exists@1.1.1':
resolution: {integrity: sha512-m9/5YGR18lIwxSFDwfE3oA7bWuq9kdau6ugN4H2rJeyhFQZcG9AgSHkQtSD15a8WvTgfz9aikZMrKPHvbpqFiw==}
@@ -2533,8 +2280,8 @@ packages:
resolution: {integrity: sha512-DPnl5lPX4v49eVxEbJnAizrpMdMTBz1qykZrAbBul9rfgk531v8oAt+Pm6O/rpAleRombNM7FJb5rYGzBJatOQ==}
engines: {node: '>=18.0.0'}
- '@lit/react@1.0.5':
- resolution: {integrity: sha512-RSHhrcuSMa4vzhqiTenzXvtQ6QDq3hSPsnHHO3jaPmmvVFeoNNm4DHoQ0zLdKAUvY3wP3tTENSUf7xpyVfrDEA==}
+ '@lit/react@1.0.6':
+ resolution: {integrity: sha512-QIss8MPh6qUoFJmuaF4dSHts3qCsA36S3HcOLiNPShxhgYPr4XJRnCBKPipk85sR9xr6TQrOcDMfexwbNdJHYA==}
peerDependencies:
'@types/react': 17 || 18
@@ -2634,8 +2381,8 @@ packages:
cpu: [x64]
os: [win32]
- '@ngtools/webpack@17.3.10':
- resolution: {integrity: sha512-yPKmdbTJzxROAl2NS8P8eHB2mU0BqV2I0ZiKmX6oTetY2Ea4i2WzlTK39pPpG7atmdF2NPWYLXdJWAup+JxSyw==}
+ '@ngtools/webpack@17.3.11':
+ resolution: {integrity: sha512-SfTCbplt4y6ak5cf2IfqdoVOsnoNdh/j6Vu+wb8WWABKwZ5yfr2S/Gk6ithSKcdIZhAF8DNBOoyk1EJuf8Xkfg==}
engines: {node: ^18.13.0 || >=20.9.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
peerDependencies:
'@angular/compiler-cli': ^17.0.0
@@ -2727,100 +2474,100 @@ packages:
'@nuxt/devalue@2.0.2':
resolution: {integrity: sha512-GBzP8zOc7CGWyFQS6dv1lQz8VVpz5C2yRszbXufwG/9zhStTIH50EtD87NmWbTMwXDvZLNg8GIpb1UFdH93JCA==}
- '@nuxt/devtools-kit@1.5.2':
- resolution: {integrity: sha512-IMbwflL/JLuK1JcM5yWKa+T5JGjwnCACZJw218/8bUTt/uTVgtkMueE+1/p9rhCWxvGQiT3xnCIXKhEg7xP58Q==}
+ '@nuxt/devtools-kit@1.6.0':
+ resolution: {integrity: sha512-kJ8mVKwTSN3tdEVNy7mxKCiQk9wsG5t3oOrRMWk6IEbTSov+5sOULqQSM/+OWxWsEDmDfA7QlS5sM3Ti9uMRqQ==}
peerDependencies:
vite: '*'
- '@nuxt/devtools-wizard@1.5.2':
- resolution: {integrity: sha512-wZhouI3drb7HL7KYezYb9ksK0EeSVbHDPPKdLQePVrr+7SphThqiHoWmovBB3e/D4jtO3VC07+ILZcXUnat6HQ==}
+ '@nuxt/devtools-wizard@1.6.0':
+ resolution: {integrity: sha512-n+mzz5NwnKZim0tq1oBi+x1nNXb21fp7QeBl7bYKyDT1eJ0XCxFkVTr/kB/ddkkLYZ+o8TykpeNPa74cN+xAyQ==}
hasBin: true
- '@nuxt/devtools@1.5.2':
- resolution: {integrity: sha512-E0bqGjAEpzVu7K8soiiDOqjAQ1FaRZPqSSU0OidmRL0HNM9kIaBNr78R494OLSop0Hh0d2Uha7Yt9IEADHtgyw==}
+ '@nuxt/devtools@1.6.0':
+ resolution: {integrity: sha512-xNorMapzpM8HaW7NnAsEEO38OrmrYBzGvkkqfBU5nNh5XEymmIfCbQc7IA/GIOH9pXOV4gRutCjHCWXHYbOl3A==}
hasBin: true
peerDependencies:
vite: '*'
- '@nuxt/kit@3.13.2':
- resolution: {integrity: sha512-KvRw21zU//wdz25IeE1E5m/aFSzhJloBRAQtv+evcFeZvuroIxpIQuUqhbzuwznaUwpiWbmwlcsp5uOWmi4vwA==}
+ '@nuxt/kit@3.14.159':
+ resolution: {integrity: sha512-ZqxsCI1NKV/gjfEUUZjMcr82sg0MKYZOuyB6bu9QY5Zr7NGpfIZY/z5Z822AKTmFxKGChnuz9M0UaS4ze6p42g==}
engines: {node: ^14.18.0 || >=16.10.0}
- '@nuxt/schema@3.13.2':
- resolution: {integrity: sha512-CCZgpm+MkqtOMDEgF9SWgGPBXlQ01hV/6+2reDEpJuqFPGzV8HYKPBcIFvn7/z5ahtgutHLzjP71Na+hYcqSpw==}
+ '@nuxt/schema@3.14.159':
+ resolution: {integrity: sha512-ggXA3F2f9udQoEy5WwrY6bTMvpDaErUYRLSEzdMqqCqjOQ5manfFgfuScGj3ooZiXLIX2TGLVTzcll4nnpDlnQ==}
engines: {node: ^14.18.0 || >=16.10.0}
'@nuxt/telemetry@2.6.0':
resolution: {integrity: sha512-h4YJ1d32cU7tDKjjhjtIIEck4WF/w3DTQBT348E9Pz85YLttnLqktLM0Ez9Xc2LzCeUgBDQv1el7Ob/zT3KUqg==}
hasBin: true
- '@nuxt/vite-builder@3.13.2':
- resolution: {integrity: sha512-3dzc3YH3UeTmzGtCevW1jTq0Q8/cm+yXqo/VS/EFM3aIO/tuNPS88is8ZF2YeBButFnLFllq/QenziPbq0YD6Q==}
+ '@nuxt/vite-builder@3.14.159':
+ resolution: {integrity: sha512-V3FJnDNR3tCAYeYmxxPsAWuMq6z5mZi8KPWO+lrO/Z8LqfD3+uYpluzUtzj0S1IIhCERmHe4rUNzr67RqSTL2Q==}
engines: {node: ^14.18.0 || >=16.10.0}
peerDependencies:
vue: ^3.3.4
- '@nx/devkit@20.0.8':
- resolution: {integrity: sha512-MRUGgWSMzYtdwtolvWL5EZlX+7xYgu7JIXf1+3rmZU5adMmlqWKrIbyvDf53XocQlT8oxx/xXTEFHhIymGTQCg==}
+ '@nx/devkit@20.0.10':
+ resolution: {integrity: sha512-GcIAQ11JrcONZpn3tIU5mtLzx9j8UMdpjns0r6yMiW7k0z6SwK5+hxIkNQJ86mndjSqiY1EdUK629tz0UscacQ==}
peerDependencies:
nx: '>= 19 <= 21'
- '@nx/nx-darwin-arm64@20.0.8':
- resolution: {integrity: sha512-tDoafq5YUyOwxR1Y796WXA6j49OLJRO7TA/Fym52SSuD3AULbgo3/X5XeY6oL2PWM044CuUVrp3V4cIDUtyJpA==}
+ '@nx/nx-darwin-arm64@20.0.10':
+ resolution: {integrity: sha512-fa2coWtz4wUwsB5Zpi47FEgdiKn5Bn4jVYsN37BE+wci1GpoxqhQOGgl0Hgv3KTjQfw9mEmvPT701QZcZBsetA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
- '@nx/nx-darwin-x64@20.0.8':
- resolution: {integrity: sha512-bvfZ6VhSvOpPV00veaJDO1a4X+f0dn8S1A73/2ThbGZrZLAQIFrA8v+ysax+bfCGRHNdtlAL+f7TG2buh/4BRg==}
+ '@nx/nx-darwin-x64@20.0.10':
+ resolution: {integrity: sha512-LIsFeOEt1PKybhIpSJuMoBXe7ID5pBJa2w4SfiGeD9+mv3dAp/COJ9+XYeWA1HpTMgY0nOabfi1bMqzezFt/fg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
- '@nx/nx-freebsd-x64@20.0.8':
- resolution: {integrity: sha512-AdOme0o/pTFy+TutIOAamuGTqbh6nOLrkNEX8f4ogfDRH+k/WvjRQ4z4ne58wf/2EVXua4jKTIEipIZAP/Ad1w==}
+ '@nx/nx-freebsd-x64@20.0.10':
+ resolution: {integrity: sha512-q1LTJlazM35PGjJIBLIXOFLjuR8y0R7BIEu1LTJPIsQEshJSlEUzQUocT2k51HB54OdFQG7Xhu0aMDzfCqU3ag==}
engines: {node: '>= 10'}
cpu: [x64]
os: [freebsd]
- '@nx/nx-linux-arm-gnueabihf@20.0.8':
- resolution: {integrity: sha512-PYf7Z30A1TCZq9HVUP6JjT3ghTLYkaBpR6vDwiGWUV/exuNmhUgfYW6TiTpiSArXwnAgSIbaoGe537iEvYzA7A==}
+ '@nx/nx-linux-arm-gnueabihf@20.0.10':
+ resolution: {integrity: sha512-fVphTD459f7ogzcADDGLR3Ot7v7ApWTLeL9vw0j95Kza3sBWHE1hYIlzHwOANLkdzy5lxtSo44XIvNuTRkingg==}
engines: {node: '>= 10'}
cpu: [arm]
os: [linux]
- '@nx/nx-linux-arm64-gnu@20.0.8':
- resolution: {integrity: sha512-3VpvhjmNR78HVxGzpWiwqZsG5sNvLUv2Qfohtxyc3561o8VU41R9Onf/LJmbbZvmdDaPvvXQp3rs0OXT4i7T1g==}
+ '@nx/nx-linux-arm64-gnu@20.0.10':
+ resolution: {integrity: sha512-BPAA5vzoEuKjPDXMqocOXS2SuvxfqpL/YCbMNtFt/PK1lzYijxaFY6L+00fIauKFv+99dG8e/IPf0Y3ze5pw4g==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
- '@nx/nx-linux-arm64-musl@20.0.8':
- resolution: {integrity: sha512-3Z7fTJGG8h4VCHhD8Ix0zr6eFMfa1y3YDlzm8Clxu4Enzz0pEsUrT+ph6qrsArnIyUgiCowSi8+xgHFg7V/F1Q==}
+ '@nx/nx-linux-arm64-musl@20.0.10':
+ resolution: {integrity: sha512-9tUBJk45kMAbW3v3q42WtufYd2OwlrlH/MBemEEve78eRr/SYnpFKsdQC2snJOy8bzE4JoG91vMBoSw9a0X/ng==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
- '@nx/nx-linux-x64-gnu@20.0.8':
- resolution: {integrity: sha512-Uttl1RHzWpjZgdzowCUNjC6/b3YhZR31wyXWgVF4PDWpDVgy4EigGc19tdrvv8pUVKQFuj0uaSTPUklguN7c3A==}
+ '@nx/nx-linux-x64-gnu@20.0.10':
+ resolution: {integrity: sha512-7D10+bJvAbqDp/r3hIaZFbq8kPIgnpPiJ37I2E8EHNSGsmRUAkM33zkF2FfTHpiLIlsKvqr+UNADwV2fLBYzAw==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
- '@nx/nx-linux-x64-musl@20.0.8':
- resolution: {integrity: sha512-llc6ywSPaOWQzEzD73USyAXd/y3Slu+GHS02IsQqZeA23EIOEzhvEeeeKgs4F8LKuFW/TpV6T5IhvSHw9/mvBg==}
+ '@nx/nx-linux-x64-musl@20.0.10':
+ resolution: {integrity: sha512-cI6wNpWPFgEnzdMGpUd459bas+hJYT+vjdcwcQ9piCNwBroKgZK67SZFxf+7sL6yhUFRydDyFCalyubGE/hlrQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
- '@nx/nx-win32-arm64-msvc@20.0.8':
- resolution: {integrity: sha512-GhPVVNrL0QcQ3B6r0P0Dta3TIesJz7uso7iI5rCZ/oOGa02UsT4NkQBpIhxYQZ4TnHYNy84g4rHtYHrSlpDlEw==}
+ '@nx/nx-win32-arm64-msvc@20.0.10':
+ resolution: {integrity: sha512-/N2somgmYfwrGNRJpu7c6S+98xqvBImXKF5iZt0aA9wyYnjJ18gA3AiI/nyGbayAstzSSg7hwMMnEZfw9pifdg==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
- '@nx/nx-win32-x64-msvc@20.0.8':
- resolution: {integrity: sha512-yLlcgM0zFdmsExdLv8O2g5FWQ6d2vyN5OynKV+F5BrWHC4LvrqyYJ99y++5bLFoEi19RYIK6sLnzGIRSF6dHGg==}
+ '@nx/nx-win32-x64-msvc@20.0.10':
+ resolution: {integrity: sha512-38NGZjq53W0hF6YDXRB+FTrzbF+3XZoeea2nU/C5HBw9MeiSgLsAjpMsL7YlcmFyvwY/BTIWQITCrwVUhPF/BA==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
@@ -2885,86 +2632,92 @@ packages:
'@octokit/types@9.3.2':
resolution: {integrity: sha512-D4iHGTdAnEEVsB8fl95m1hiz7D5YiRdQ9b/OEb3BYRVwbLsGHcRVPz+u+BgRLNk0Q0/4iZCBqDN96j2XNxfXrA==}
- '@parcel/watcher-android-arm64@2.4.1':
- resolution: {integrity: sha512-LOi/WTbbh3aTn2RYddrO8pnapixAziFl6SMxHM69r3tvdSm94JtCenaKgk1GRg5FJ5wpMCpHeW+7yqPlvZv7kg==}
+ '@parcel/watcher-android-arm64@2.5.0':
+ resolution: {integrity: sha512-qlX4eS28bUcQCdribHkg/herLe+0A9RyYC+mm2PXpncit8z5b3nSqGVzMNR3CmtAOgRutiZ02eIJJgP/b1iEFQ==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [android]
- '@parcel/watcher-darwin-arm64@2.4.1':
- resolution: {integrity: sha512-ln41eihm5YXIY043vBrrHfn94SIBlqOWmoROhsMVTSXGh0QahKGy77tfEywQ7v3NywyxBBkGIfrWRHm0hsKtzA==}
+ '@parcel/watcher-darwin-arm64@2.5.0':
+ resolution: {integrity: sha512-hyZ3TANnzGfLpRA2s/4U1kbw2ZI4qGxaRJbBH2DCSREFfubMswheh8TeiC1sGZ3z2jUf3s37P0BBlrD3sjVTUw==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [darwin]
- '@parcel/watcher-darwin-x64@2.4.1':
- resolution: {integrity: sha512-yrw81BRLjjtHyDu7J61oPuSoeYWR3lDElcPGJyOvIXmor6DEo7/G2u1o7I38cwlcoBHQFULqF6nesIX3tsEXMg==}
+ '@parcel/watcher-darwin-x64@2.5.0':
+ resolution: {integrity: sha512-9rhlwd78saKf18fT869/poydQK8YqlU26TMiNg7AIu7eBp9adqbJZqmdFOsbZ5cnLp5XvRo9wcFmNHgHdWaGYA==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [darwin]
- '@parcel/watcher-freebsd-x64@2.4.1':
- resolution: {integrity: sha512-TJa3Pex/gX3CWIx/Co8k+ykNdDCLx+TuZj3f3h7eOjgpdKM+Mnix37RYsYU4LHhiYJz3DK5nFCCra81p6g050w==}
+ '@parcel/watcher-freebsd-x64@2.5.0':
+ resolution: {integrity: sha512-syvfhZzyM8kErg3VF0xpV8dixJ+RzbUaaGaeb7uDuz0D3FK97/mZ5AJQ3XNnDsXX7KkFNtyQyFrXZzQIcN49Tw==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [freebsd]
- '@parcel/watcher-linux-arm-glibc@2.4.1':
- resolution: {integrity: sha512-4rVYDlsMEYfa537BRXxJ5UF4ddNwnr2/1O4MHM5PjI9cvV2qymvhwZSFgXqbS8YoTk5i/JR0L0JDs69BUn45YA==}
+ '@parcel/watcher-linux-arm-glibc@2.5.0':
+ resolution: {integrity: sha512-0VQY1K35DQET3dVYWpOaPFecqOT9dbuCfzjxoQyif1Wc574t3kOSkKevULddcR9znz1TcklCE7Ht6NIxjvTqLA==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [arm]
+ os: [linux]
+
+ '@parcel/watcher-linux-arm-musl@2.5.0':
+ resolution: {integrity: sha512-6uHywSIzz8+vi2lAzFeltnYbdHsDm3iIB57d4g5oaB9vKwjb6N6dRIgZMujw4nm5r6v9/BQH0noq6DzHrqr2pA==}
engines: {node: '>= 10.0.0'}
cpu: [arm]
os: [linux]
- '@parcel/watcher-linux-arm64-glibc@2.4.1':
- resolution: {integrity: sha512-BJ7mH985OADVLpbrzCLgrJ3TOpiZggE9FMblfO65PlOCdG++xJpKUJ0Aol74ZUIYfb8WsRlUdgrZxKkz3zXWYA==}
+ '@parcel/watcher-linux-arm64-glibc@2.5.0':
+ resolution: {integrity: sha512-BfNjXwZKxBy4WibDb/LDCriWSKLz+jJRL3cM/DllnHH5QUyoiUNEp3GmL80ZqxeumoADfCCP19+qiYiC8gUBjA==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [linux]
- '@parcel/watcher-linux-arm64-musl@2.4.1':
- resolution: {integrity: sha512-p4Xb7JGq3MLgAfYhslU2SjoV9G0kI0Xry0kuxeG/41UfpjHGOhv7UoUDAz/jb1u2elbhazy4rRBL8PegPJFBhA==}
+ '@parcel/watcher-linux-arm64-musl@2.5.0':
+ resolution: {integrity: sha512-S1qARKOphxfiBEkwLUbHjCY9BWPdWnW9j7f7Hb2jPplu8UZ3nes7zpPOW9bkLbHRvWM0WDTsjdOTUgW0xLBN1Q==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [linux]
- '@parcel/watcher-linux-x64-glibc@2.4.1':
- resolution: {integrity: sha512-s9O3fByZ/2pyYDPoLM6zt92yu6P4E39a03zvO0qCHOTjxmt3GHRMLuRZEWhWLASTMSrrnVNWdVI/+pUElJBBBg==}
+ '@parcel/watcher-linux-x64-glibc@2.5.0':
+ resolution: {integrity: sha512-d9AOkusyXARkFD66S6zlGXyzx5RvY+chTP9Jp0ypSTC9d4lzyRs9ovGf/80VCxjKddcUvnsGwCHWuF2EoPgWjw==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [linux]
- '@parcel/watcher-linux-x64-musl@2.4.1':
- resolution: {integrity: sha512-L2nZTYR1myLNST0O632g0Dx9LyMNHrn6TOt76sYxWLdff3cB22/GZX2UPtJnaqQPdCRoszoY5rcOj4oMTtp5fQ==}
+ '@parcel/watcher-linux-x64-musl@2.5.0':
+ resolution: {integrity: sha512-iqOC+GoTDoFyk/VYSFHwjHhYrk8bljW6zOhPuhi5t9ulqiYq1togGJB5e3PwYVFFfeVgc6pbz3JdQyDoBszVaA==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [linux]
- '@parcel/watcher-wasm@2.4.1':
- resolution: {integrity: sha512-/ZR0RxqxU/xxDGzbzosMjh4W6NdYFMqq2nvo2b8SLi7rsl/4jkL8S5stIikorNkdR50oVDvqb/3JT05WM+CRRA==}
+ '@parcel/watcher-wasm@2.5.0':
+ resolution: {integrity: sha512-Z4ouuR8Pfggk1EYYbTaIoxc+Yv4o7cGQnH0Xy8+pQ+HbiW+ZnwhcD2LPf/prfq1nIWpAxjOkQ8uSMFWMtBLiVQ==}
engines: {node: '>= 10.0.0'}
bundledDependencies:
- napi-wasm
- '@parcel/watcher-win32-arm64@2.4.1':
- resolution: {integrity: sha512-Uq2BPp5GWhrq/lcuItCHoqxjULU1QYEcyjSO5jqqOK8RNFDBQnenMMx4gAl3v8GiWa59E9+uDM7yZ6LxwUIfRg==}
+ '@parcel/watcher-win32-arm64@2.5.0':
+ resolution: {integrity: sha512-twtft1d+JRNkM5YbmexfcH/N4znDtjgysFaV9zvZmmJezQsKpkfLYJ+JFV3uygugK6AtIM2oADPkB2AdhBrNig==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [win32]
- '@parcel/watcher-win32-ia32@2.4.1':
- resolution: {integrity: sha512-maNRit5QQV2kgHFSYwftmPBxiuK5u4DXjbXx7q6eKjq5dsLXZ4FJiVvlcw35QXzk0KrUecJmuVFbj4uV9oYrcw==}
+ '@parcel/watcher-win32-ia32@2.5.0':
+ resolution: {integrity: sha512-+rgpsNRKwo8A53elqbbHXdOMtY/tAtTzManTWShB5Kk54N8Q9mzNWV7tV+IbGueCbcj826MfWGU3mprWtuf1TA==}
engines: {node: '>= 10.0.0'}
cpu: [ia32]
os: [win32]
- '@parcel/watcher-win32-x64@2.4.1':
- resolution: {integrity: sha512-+DvS92F9ezicfswqrvIRM2njcYJbd5mb9CUgtrHCHmvn7pPPa+nMDRu1o1bYYz/l5IB2NVGNJWiH7h1E58IF2A==}
+ '@parcel/watcher-win32-x64@2.5.0':
+ resolution: {integrity: sha512-lPrxve92zEHdgeff3aiu4gDOIt4u7sJYha6wbdEZDCDUhtjTsOMiaJzG5lMY4GkWH8p0fMmO2Ppq5G5XXG+DQw==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [win32]
- '@parcel/watcher@2.4.1':
- resolution: {integrity: sha512-HNjmfLQEVRZmHRET336f20H/8kOozUGwk7yajvsonjNxbj2wBTK1WsQuHkD5yYh9RxFGL2EyDHryOihOwUoKDA==}
+ '@parcel/watcher@2.5.0':
+ resolution: {integrity: sha512-i0GV1yJnm2n3Yq1qw6QrUrd/LI9bE8WEBOTtOkpCXHHdyN3TAGgqAK/DAT05z4fq2x04cARXt2pDmjWjL92iTQ==}
engines: {node: '>= 10.0.0'}
'@pkgjs/parseargs@0.11.0':
@@ -2979,21 +2732,31 @@ packages:
resolution: {integrity: sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA==}
engines: {node: '>=12.22.0'}
- '@pnpm/npm-conf@2.2.2':
- resolution: {integrity: sha512-UA91GwWPhFExt3IizW6bOeY/pQ0BkuNwKjk9iQW9KqxluGCrg4VenZ0/L+2Y0+ZOtme72EVvg6v0zo3AMQRCeA==}
+ '@pnpm/npm-conf@2.3.1':
+ resolution: {integrity: sha512-c83qWb22rNRuB0UaVCI0uRPNRr8Z0FWnEIvT47jiHAmOIUHbBOg5XvV7pM5x+rKn9HRpjxquDbXYSXr3fAKFcw==}
engines: {node: '>=12'}
'@polka/url@1.0.0-next.28':
resolution: {integrity: sha512-8LduaNlMZGwdZ6qWrKlfa+2M4gahzFkprZiAt2TF8uS0qQgBizKXpXURqvTJ4WtmupWxaLqjRb2UCTe72mu+Aw==}
- '@promptbook/utils@0.70.0-1':
- resolution: {integrity: sha512-qd2lLRRN+sE6UuNMi2tEeUUeb4zmXnxY5EMdfHVXNE+bqBDpUC7/aEfXgA3jnUXEr+xFjQ8PTFQgWvBMaKvw0g==}
+ '@promptbook/utils@0.69.5':
+ resolution: {integrity: sha512-xm5Ti/Hp3o4xHrsK9Yy3MS6KbDxYbq485hDsFvxqaNA7equHLPdo8H8faTitTeb14QCDfLW4iwCxdVYu5sn6YQ==}
- '@puppeteer/browsers@2.4.0':
- resolution: {integrity: sha512-x8J1csfIygOwf6D6qUAZ0ASk3z63zPb7wkNeHRerCMh82qWKUrOgkuP005AJC8lDL6/evtXETGEJVcwykKT4/g==}
+ '@puppeteer/browsers@2.4.1':
+ resolution: {integrity: sha512-0kdAbmic3J09I6dT8e9vE2JOCSt13wHCW5x/ly8TSt2bDtuIWe2TgLZZDHdcziw9AVCzflMAXCrVyRIhIs44Ng==}
engines: {node: '>=18'}
hasBin: true
+ '@redocly/ajv@8.11.2':
+ resolution: {integrity: sha512-io1JpnwtIcvojV7QKDUSIuMN/ikdOUd1ReEnUnMKGfDVridQZ31J0MmIuqwuRjWDZfmvr+Q0MqCcfHM2gTivOg==}
+
+ '@redocly/config@0.16.0':
+ resolution: {integrity: sha512-t9jnODbUcuANRSl/K4L9nb12V+U5acIHnVSl26NWrtSdDZVtoqUXk2yGFPZzohYf62cCfEQUT8ouJ3bhPfpnJg==}
+
+ '@redocly/openapi-core@1.25.11':
+ resolution: {integrity: sha512-bH+a8izQz4fnKROKoX3bEU8sQ9rjvEIZOqU6qTmxlhOJ0NsKa5e+LmU18SV0oFeg5YhWQhhEDihXkvKJ1wMMNQ==}
+ engines: {node: '>=14.19.0', npm: '>=7.0.0'}
+
'@rollup/plugin-alias@5.1.1':
resolution: {integrity: sha512-PR9zDb+rOzkRb2VD+EuKB7UC41vU5DIwZ5qqCpk0KJudcWAyi8rvYOhS7+L5aZCspw1stTViLgN5v6FF1p5cgQ==}
engines: {node: '>=14.0.0'}
@@ -3003,9 +2766,9 @@ packages:
rollup:
optional: true
- '@rollup/plugin-commonjs@25.0.8':
- resolution: {integrity: sha512-ZEZWTK5n6Qde0to4vS9Mr5x/0UZoqCxPVR9KRUjU4kA2sO7GEUn1fop0DAwpO6z0Nw/kJON9bDmSxdWxO/TT1A==}
- engines: {node: '>=14.0.0'}
+ '@rollup/plugin-commonjs@28.0.1':
+ resolution: {integrity: sha512-+tNWdlWKbpB3WgBN7ijjYkq9X5uhjmcvyjEght4NmH5fAU++zfQzAJ6wumLS+dNcvwEZhKx2Z+skY8m7v0wGSA==}
+ engines: {node: '>=16.0.0 || 14 >= 14.17'}
peerDependencies:
rollup: ^2.68.0||^3.0.0||^4.0.0
peerDependenciesMeta:
@@ -3039,8 +2802,8 @@ packages:
rollup:
optional: true
- '@rollup/plugin-replace@5.0.7':
- resolution: {integrity: sha512-PqxSfuorkHz/SPpyngLyg5GCEkOcee9M1bkxiVDr41Pd61mqP1PLOoDPbpl44SB2mQGKwV/In74gqQmGITOhEQ==}
+ '@rollup/plugin-replace@6.0.1':
+ resolution: {integrity: sha512-2sPh9b73dj5IxuMmDAsQWVFT7mR+yoHweBaXG2W/R8vQ+IWZlnaI7BR7J6EguVQUp1hd8Z7XuozpDjEKQAAC2Q==}
engines: {node: '>=14.0.0'}
peerDependencies:
rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
@@ -3074,15 +2837,6 @@ packages:
resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==}
engines: {node: '>= 8.0.0'}
- '@rollup/pluginutils@5.1.0':
- resolution: {integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==}
- engines: {node: '>=14.0.0'}
- peerDependencies:
- rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
- peerDependenciesMeta:
- rollup:
- optional: true
-
'@rollup/pluginutils@5.1.3':
resolution: {integrity: sha512-Pnsb6f32CD2W3uCaLZIzDmeFyQ2b8UWMFI7xtwUezpcGBDVDW6y9XgAWIlARiGAo6eNF5FK5aQTr0LFyNyqq5A==}
engines: {node: '>=14.0.0'}
@@ -3092,181 +2846,91 @@ packages:
rollup:
optional: true
- '@rollup/rollup-android-arm-eabi@4.24.2':
- resolution: {integrity: sha512-ufoveNTKDg9t/b7nqI3lwbCG/9IJMhADBNjjz/Jn6LxIZxD7T5L8l2uO/wD99945F1Oo8FvgbbZJRguyk/BdzA==}
- cpu: [arm]
- os: [android]
-
'@rollup/rollup-android-arm-eabi@4.24.4':
resolution: {integrity: sha512-jfUJrFct/hTA0XDM5p/htWKoNNTbDLY0KRwEt6pyOA6k2fmk0WVwl65PdUdJZgzGEHWx+49LilkcSaumQRyNQw==}
cpu: [arm]
os: [android]
- '@rollup/rollup-android-arm64@4.24.2':
- resolution: {integrity: sha512-iZoYCiJz3Uek4NI0J06/ZxUgwAfNzqltK0MptPDO4OR0a88R4h0DSELMsflS6ibMCJ4PnLvq8f7O1d7WexUvIA==}
- cpu: [arm64]
- os: [android]
-
'@rollup/rollup-android-arm64@4.24.4':
resolution: {integrity: sha512-j4nrEO6nHU1nZUuCfRKoCcvh7PIywQPUCBa2UsootTHvTHIoIu2BzueInGJhhvQO/2FTRdNYpf63xsgEqH9IhA==}
cpu: [arm64]
os: [android]
- '@rollup/rollup-darwin-arm64@4.24.2':
- resolution: {integrity: sha512-/UhrIxobHYCBfhi5paTkUDQ0w+jckjRZDZ1kcBL132WeHZQ6+S5v9jQPVGLVrLbNUebdIRpIt00lQ+4Z7ys4Rg==}
- cpu: [arm64]
- os: [darwin]
-
'@rollup/rollup-darwin-arm64@4.24.4':
resolution: {integrity: sha512-GmU/QgGtBTeraKyldC7cDVVvAJEOr3dFLKneez/n7BvX57UdhOqDsVwzU7UOnYA7AAOt+Xb26lk79PldDHgMIQ==}
cpu: [arm64]
os: [darwin]
- '@rollup/rollup-darwin-x64@4.24.2':
- resolution: {integrity: sha512-1F/jrfhxJtWILusgx63WeTvGTwE4vmsT9+e/z7cZLKU8sBMddwqw3UV5ERfOV+H1FuRK3YREZ46J4Gy0aP3qDA==}
- cpu: [x64]
- os: [darwin]
-
'@rollup/rollup-darwin-x64@4.24.4':
resolution: {integrity: sha512-N6oDBiZCBKlwYcsEPXGDE4g9RoxZLK6vT98M8111cW7VsVJFpNEqvJeIPfsCzbf0XEakPslh72X0gnlMi4Ddgg==}
cpu: [x64]
os: [darwin]
- '@rollup/rollup-freebsd-arm64@4.24.2':
- resolution: {integrity: sha512-1YWOpFcGuC6iGAS4EI+o3BV2/6S0H+m9kFOIlyFtp4xIX5rjSnL3AwbTBxROX0c8yWtiWM7ZI6mEPTI7VkSpZw==}
- cpu: [arm64]
- os: [freebsd]
-
'@rollup/rollup-freebsd-arm64@4.24.4':
resolution: {integrity: sha512-py5oNShCCjCyjWXCZNrRGRpjWsF0ic8f4ieBNra5buQz0O/U6mMXCpC1LvrHuhJsNPgRt36tSYMidGzZiJF6mw==}
cpu: [arm64]
os: [freebsd]
- '@rollup/rollup-freebsd-x64@4.24.2':
- resolution: {integrity: sha512-3qAqTewYrCdnOD9Gl9yvPoAoFAVmPJsBvleabvx4bnu1Kt6DrB2OALeRVag7BdWGWLhP1yooeMLEi6r2nYSOjg==}
- cpu: [x64]
- os: [freebsd]
-
'@rollup/rollup-freebsd-x64@4.24.4':
resolution: {integrity: sha512-L7VVVW9FCnTTp4i7KrmHeDsDvjB4++KOBENYtNYAiYl96jeBThFfhP6HVxL74v4SiZEVDH/1ILscR5U9S4ms4g==}
cpu: [x64]
os: [freebsd]
- '@rollup/rollup-linux-arm-gnueabihf@4.24.2':
- resolution: {integrity: sha512-ArdGtPHjLqWkqQuoVQ6a5UC5ebdX8INPuJuJNWRe0RGa/YNhVvxeWmCTFQ7LdmNCSUzVZzxAvUznKaYx645Rig==}
- cpu: [arm]
- os: [linux]
-
'@rollup/rollup-linux-arm-gnueabihf@4.24.4':
resolution: {integrity: sha512-10ICosOwYChROdQoQo589N5idQIisxjaFE/PAnX2i0Zr84mY0k9zul1ArH0rnJ/fpgiqfu13TFZR5A5YJLOYZA==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm-musleabihf@4.24.2':
- resolution: {integrity: sha512-B6UHHeNnnih8xH6wRKB0mOcJGvjZTww1FV59HqJoTJ5da9LCG6R4SEBt6uPqzlawv1LoEXSS0d4fBlHNWl6iYw==}
- cpu: [arm]
- os: [linux]
-
'@rollup/rollup-linux-arm-musleabihf@4.24.4':
resolution: {integrity: sha512-ySAfWs69LYC7QhRDZNKqNhz2UKN8LDfbKSMAEtoEI0jitwfAG2iZwVqGACJT+kfYvvz3/JgsLlcBP+WWoKCLcw==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm64-gnu@4.24.2':
- resolution: {integrity: sha512-kr3gqzczJjSAncwOS6i7fpb4dlqcvLidqrX5hpGBIM1wtt0QEVtf4wFaAwVv8QygFU8iWUMYEoJZWuWxyua4GQ==}
- cpu: [arm64]
- os: [linux]
-
'@rollup/rollup-linux-arm64-gnu@4.24.4':
resolution: {integrity: sha512-uHYJ0HNOI6pGEeZ/5mgm5arNVTI0nLlmrbdph+pGXpC9tFHFDQmDMOEqkmUObRfosJqpU8RliYoGz06qSdtcjg==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-arm64-musl@4.24.2':
- resolution: {integrity: sha512-TDdHLKCWgPuq9vQcmyLrhg/bgbOvIQ8rtWQK7MRxJ9nvaxKx38NvY7/Lo6cYuEnNHqf6rMqnivOIPIQt6H2AoA==}
- cpu: [arm64]
- os: [linux]
-
'@rollup/rollup-linux-arm64-musl@4.24.4':
resolution: {integrity: sha512-38yiWLemQf7aLHDgTg85fh3hW9stJ0Muk7+s6tIkSUOMmi4Xbv5pH/5Bofnsb6spIwD5FJiR+jg71f0CH5OzoA==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-powerpc64le-gnu@4.24.2':
- resolution: {integrity: sha512-xv9vS648T3X4AxFFZGWeB5Dou8ilsv4VVqJ0+loOIgDO20zIhYfDLkk5xoQiej2RiSQkld9ijF/fhLeonrz2mw==}
- cpu: [ppc64]
- os: [linux]
-
'@rollup/rollup-linux-powerpc64le-gnu@4.24.4':
resolution: {integrity: sha512-q73XUPnkwt9ZNF2xRS4fvneSuaHw2BXuV5rI4cw0fWYVIWIBeDZX7c7FWhFQPNTnE24172K30I+dViWRVD9TwA==}
cpu: [ppc64]
os: [linux]
- '@rollup/rollup-linux-riscv64-gnu@4.24.2':
- resolution: {integrity: sha512-tbtXwnofRoTt223WUZYiUnbxhGAOVul/3StZ947U4A5NNjnQJV5irKMm76G0LGItWs6y+SCjUn/Q0WaMLkEskg==}
- cpu: [riscv64]
- os: [linux]
-
'@rollup/rollup-linux-riscv64-gnu@4.24.4':
resolution: {integrity: sha512-Aie/TbmQi6UXokJqDZdmTJuZBCU3QBDA8oTKRGtd4ABi/nHgXICulfg1KI6n9/koDsiDbvHAiQO3YAUNa/7BCw==}
cpu: [riscv64]
os: [linux]
- '@rollup/rollup-linux-s390x-gnu@4.24.2':
- resolution: {integrity: sha512-gc97UebApwdsSNT3q79glOSPdfwgwj5ELuiyuiMY3pEWMxeVqLGKfpDFoum4ujivzxn6veUPzkGuSYoh5deQ2Q==}
- cpu: [s390x]
- os: [linux]
-
'@rollup/rollup-linux-s390x-gnu@4.24.4':
resolution: {integrity: sha512-P8MPErVO/y8ohWSP9JY7lLQ8+YMHfTI4bAdtCi3pC2hTeqFJco2jYspzOzTUB8hwUWIIu1xwOrJE11nP+0JFAQ==}
cpu: [s390x]
os: [linux]
- '@rollup/rollup-linux-x64-gnu@4.24.2':
- resolution: {integrity: sha512-jOG/0nXb3z+EM6SioY8RofqqmZ+9NKYvJ6QQaa9Mvd3RQxlH68/jcB/lpyVt4lCiqr04IyaC34NzhUqcXbB5FQ==}
- cpu: [x64]
- os: [linux]
-
'@rollup/rollup-linux-x64-gnu@4.24.4':
resolution: {integrity: sha512-K03TljaaoPK5FOyNMZAAEmhlyO49LaE4qCsr0lYHUKyb6QacTNF9pnfPpXnFlFD3TXuFbFbz7tJ51FujUXkXYA==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-linux-x64-musl@4.24.2':
- resolution: {integrity: sha512-XAo7cJec80NWx9LlZFEJQxqKOMz/lX3geWs2iNT5CHIERLFfd90f3RYLLjiCBm1IMaQ4VOX/lTC9lWfzzQm14Q==}
- cpu: [x64]
- os: [linux]
-
'@rollup/rollup-linux-x64-musl@4.24.4':
resolution: {integrity: sha512-VJYl4xSl/wqG2D5xTYncVWW+26ICV4wubwN9Gs5NrqhJtayikwCXzPL8GDsLnaLU3WwhQ8W02IinYSFJfyo34Q==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-win32-arm64-msvc@4.24.2':
- resolution: {integrity: sha512-A+JAs4+EhsTjnPQvo9XY/DC0ztaws3vfqzrMNMKlwQXuniBKOIIvAAI8M0fBYiTCxQnElYu7mLk7JrhlQ+HeOw==}
- cpu: [arm64]
- os: [win32]
-
'@rollup/rollup-win32-arm64-msvc@4.24.4':
resolution: {integrity: sha512-ku2GvtPwQfCqoPFIJCqZ8o7bJcj+Y54cZSr43hHca6jLwAiCbZdBUOrqE6y29QFajNAzzpIOwsckaTFmN6/8TA==}
cpu: [arm64]
os: [win32]
- '@rollup/rollup-win32-ia32-msvc@4.24.2':
- resolution: {integrity: sha512-ZhcrakbqA1SCiJRMKSU64AZcYzlZ/9M5LaYil9QWxx9vLnkQ9Vnkve17Qn4SjlipqIIBFKjBES6Zxhnvh0EAEw==}
- cpu: [ia32]
- os: [win32]
-
'@rollup/rollup-win32-ia32-msvc@4.24.4':
resolution: {integrity: sha512-V3nCe+eTt/W6UYNr/wGvO1fLpHUrnlirlypZfKCT1fG6hWfqhPgQV/K/mRBXBpxc0eKLIF18pIOFVPh0mqHjlg==}
cpu: [ia32]
os: [win32]
- '@rollup/rollup-win32-x64-msvc@4.24.2':
- resolution: {integrity: sha512-2mLH46K1u3r6uwc95hU+OR9q/ggYMpnS7pSp83Ece1HUQgF9Nh/QwTK5rcgbFnV9j+08yBrU5sA/P0RK2MSBNA==}
- cpu: [x64]
- os: [win32]
-
'@rollup/rollup-win32-x64-msvc@4.24.4':
resolution: {integrity: sha512-LTw1Dfd0mBIEqUVCxbvTE/LLo+9ZxVC9k99v1v4ahg9Aak6FpqOfNu5kRkeTAn0wphoC4JU7No1/rL+bBCEwhg==}
cpu: [x64]
@@ -3342,10 +3006,6 @@ packages:
'@sinclair/typebox@0.27.8':
resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==}
- '@sindresorhus/is@5.6.0':
- resolution: {integrity: sha512-TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g==}
- engines: {node: '>=14.16'}
-
'@sindresorhus/merge-streams@2.3.0':
resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==}
engines: {node: '>=18'}
@@ -3366,96 +3026,17 @@ packages:
'@sinonjs/fake-timers@6.0.1':
resolution: {integrity: sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA==}
- '@sinonjs/fake-timers@8.1.0':
- resolution: {integrity: sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==}
-
- '@stencil/core@4.22.1':
- resolution: {integrity: sha512-/vaKFIK/BWpGVDTj3u6TE7Nc2SCqG1PmXPtg3mEpiJw1aJZFar/jrZzbvyBOVQ7TGpDdO1ne3esXAQndj73UTQ==}
+ '@stencil/core@4.22.2':
+ resolution: {integrity: sha512-eq2pYrrnzcLyBRANk0X/VVOfCtD0nCxWnEZ0AVdscuqfDkOjxa6SSZOfEhR9FAvrmESHp8y5jRCVPnf4n5CC4A==}
engines: {node: '>=16.0.0', npm: '>=7.10.0'}
hasBin: true
- '@swc/core-darwin-arm64@1.7.26':
- resolution: {integrity: sha512-FF3CRYTg6a7ZVW4yT9mesxoVVZTrcSWtmZhxKCYJX9brH4CS/7PRPjAKNk6kzWgWuRoglP7hkjQcd6EpMcZEAw==}
- engines: {node: '>=10'}
- cpu: [arm64]
- os: [darwin]
-
- '@swc/core-darwin-x64@1.7.26':
- resolution: {integrity: sha512-az3cibZdsay2HNKmc4bjf62QVukuiMRh5sfM5kHR/JMTrLyS6vSw7Ihs3UTkZjUxkLTT8ro54LI6sV6sUQUbLQ==}
- engines: {node: '>=10'}
- cpu: [x64]
- os: [darwin]
-
- '@swc/core-linux-arm-gnueabihf@1.7.26':
- resolution: {integrity: sha512-VYPFVJDO5zT5U3RpCdHE5v1gz4mmR8BfHecUZTmD2v1JeFY6fv9KArJUpjrHEEsjK/ucXkQFmJ0jaiWXmpOV9Q==}
- engines: {node: '>=10'}
- cpu: [arm]
- os: [linux]
-
- '@swc/core-linux-arm64-gnu@1.7.26':
- resolution: {integrity: sha512-YKevOV7abpjcAzXrhsl+W48Z9mZvgoVs2eP5nY+uoMAdP2b3GxC0Df1Co0I90o2lkzO4jYBpTMcZlmUXLdXn+Q==}
- engines: {node: '>=10'}
- cpu: [arm64]
- os: [linux]
-
- '@swc/core-linux-arm64-musl@1.7.26':
- resolution: {integrity: sha512-3w8iZICMkQQON0uIcvz7+Q1MPOW6hJ4O5ETjA0LSP/tuKqx30hIniCGOgPDnv3UTMruLUnQbtBwVCZTBKR3Rkg==}
- engines: {node: '>=10'}
- cpu: [arm64]
- os: [linux]
-
- '@swc/core-linux-x64-gnu@1.7.26':
- resolution: {integrity: sha512-c+pp9Zkk2lqb06bNGkR2Looxrs7FtGDMA4/aHjZcCqATgp348hOKH5WPvNLBl+yPrISuWjbKDVn3NgAvfvpH4w==}
- engines: {node: '>=10'}
- cpu: [x64]
- os: [linux]
-
- '@swc/core-linux-x64-musl@1.7.26':
- resolution: {integrity: sha512-PgtyfHBF6xG87dUSSdTJHwZ3/8vWZfNIXQV2GlwEpslrOkGqy+WaiiyE7Of7z9AvDILfBBBcJvJ/r8u980wAfQ==}
- engines: {node: '>=10'}
- cpu: [x64]
- os: [linux]
-
- '@swc/core-win32-arm64-msvc@1.7.26':
- resolution: {integrity: sha512-9TNXPIJqFynlAOrRD6tUQjMq7KApSklK3R/tXgIxc7Qx+lWu8hlDQ/kVPLpU7PWvMMwC/3hKBW+p5f+Tms1hmA==}
- engines: {node: '>=10'}
- cpu: [arm64]
- os: [win32]
-
- '@swc/core-win32-ia32-msvc@1.7.26':
- resolution: {integrity: sha512-9YngxNcG3177GYdsTum4V98Re+TlCeJEP4kEwEg9EagT5s3YejYdKwVAkAsJszzkXuyRDdnHUpYbTrPG6FiXrQ==}
- engines: {node: '>=10'}
- cpu: [ia32]
- os: [win32]
-
- '@swc/core-win32-x64-msvc@1.7.26':
- resolution: {integrity: sha512-VR+hzg9XqucgLjXxA13MtV5O3C0bK0ywtLIBw/+a+O+Oc6mxFWHtdUeXDbIi5AiPbn0fjgVJMqYnyjGyyX8u0w==}
- engines: {node: '>=10'}
- cpu: [x64]
- os: [win32]
-
- '@swc/core@1.7.26':
- resolution: {integrity: sha512-f5uYFf+TmMQyYIoxkn/evWhNGuUzC730dFwAKGwBVHHVoPyak1/GvJUm6i1SKl+2Hrj9oN0i3WSoWWZ4pgI8lw==}
- engines: {node: '>=10'}
- peerDependencies:
- '@swc/helpers': '*'
- peerDependenciesMeta:
- '@swc/helpers':
- optional: true
-
'@swc/counter@0.1.3':
resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==}
'@swc/helpers@0.5.5':
resolution: {integrity: sha512-KGYxvIOXcceOAbEk4bi/dVLEK9z8sZ0uBB3Il5b1rhfClSpcX0yfRO0KmTkqR2cnQDymwLB+25ZyMzICg/cm/A==}
- '@swc/types@0.1.12':
- resolution: {integrity: sha512-wBJA+SdtkbFhHjTMYH+dEH1y4VpfGdAc2Kw/LK09i9bXd/K6j6PkDcFCEzb6iVfZMkPRrl/q0e3toqTAJdkIVA==}
-
- '@szmarczak/http-timer@5.0.1':
- resolution: {integrity: sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==}
- engines: {node: '>=14.16'}
-
'@tootallnate/once@1.1.2':
resolution: {integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==}
engines: {node: '>= 6'}
@@ -3474,18 +3055,6 @@ packages:
'@ts-morph/common@0.23.0':
resolution: {integrity: sha512-m7Lllj9n/S6sOkCkRftpM7L24uvmfXQFedlW/4hENcuJH1HHm9u5EgxZb9uVjQSCGrbBWBkOGgcTxNg36r6ywA==}
- '@tsconfig/node10@1.0.11':
- resolution: {integrity: sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==}
-
- '@tsconfig/node12@1.0.11':
- resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==}
-
- '@tsconfig/node14@1.0.3':
- resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==}
-
- '@tsconfig/node16@1.0.4':
- resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==}
-
'@tufjs/canonical-json@2.0.0':
resolution: {integrity: sha512-yVtV8zsdo8qFHe+/3kw81dSLyF7D576A5cCFCi4X7B39tWT7SekaEFUnvnWJHz+9qO7qJTah1JbrDjWKqFtdWA==}
engines: {node: ^16.14.0 || >=18.0.0}
@@ -3524,9 +3093,6 @@ packages:
'@types/connect@3.4.38':
resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==}
- '@types/estree@1.0.5':
- resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
-
'@types/estree@1.0.6':
resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
@@ -3542,9 +3108,6 @@ packages:
'@types/graceful-fs@4.1.9':
resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==}
- '@types/http-cache-semantics@4.0.4':
- resolution: {integrity: sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==}
-
'@types/http-errors@2.0.4':
resolution: {integrity: sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==}
@@ -3560,8 +3123,8 @@ packages:
'@types/istanbul-reports@3.0.4':
resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==}
- '@types/jest@29.5.13':
- resolution: {integrity: sha512-wd+MVEZCHt23V0/L642O5APvspWply/rGY5BcW4SUETo2UzPU3Z26qr8jC2qxpimI2jjx9h7+2cj2FwIr01bXg==}
+ '@types/jest@29.5.14':
+ resolution: {integrity: sha512-ZN+4sdnLUbo8EVvVc2ao0GFW6oVrQRPn4K2lglySj7APvSrgzxHiNNK99us4WDMi57xxA2yggblIAMNhXOotLQ==}
'@types/jsdom@20.0.1':
resolution: {integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==}
@@ -3590,8 +3153,8 @@ packages:
'@types/node-forge@1.3.11':
resolution: {integrity: sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==}
- '@types/node@20.14.12':
- resolution: {integrity: sha512-r7wNXakLeSsGT0H1AU863vS2wa5wBOK4bWMjZz2wj+8nBx+m5PeIn0k8AloSLpRuiwdRQZwarZqHE4FNArPuJQ==}
+ '@types/node@18.19.64':
+ resolution: {integrity: sha512-955mDqvO2vFf/oL7V3WiUtiz+BugyX8uVbaT2H8oj3+8dRyH2FLiNdowe7eNqRM7IOIZvzDH76EoAT+gwm6aIQ==}
'@types/node@20.17.6':
resolution: {integrity: sha512-VEI7OdvK2wP7XHnsuXbAJnEpEkF6NjSN45QJlL4VGqZSXsnicpesdTWsg9RISeSdYd3yeRj/y3k5KGjUXYnFwQ==}
@@ -3617,8 +3180,8 @@ packages:
'@types/range-parser@1.2.7':
resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==}
- '@types/react-dom@18.3.0':
- resolution: {integrity: sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==}
+ '@types/react-dom@18.3.1':
+ resolution: {integrity: sha512-qW1Mfv8taImTthu4KoXgDfLuk4bydU6Q/TkADnDWWHwi4NX4BR+LWfTp2sVmTqRrsHvyDDTelgelxJ+SsejKKQ==}
'@types/react@18.3.12':
resolution: {integrity: sha512-D2wOSq/d6Agt28q7rSI3jhU7G6aiuzljDGZ2hTZHIkrTLUI+AF3WMeKkEZ9nN2fkBAlcktT6vcZjDFiIhMYEQw==}
@@ -3656,9 +3219,6 @@ packages:
'@types/wrap-ansi@3.0.0':
resolution: {integrity: sha512-ltIpx+kM7g/MLRZfkbL7EsCEjfzCcScLpkg37eXEtx5kmrAKBkTJwd1GIAjDSL8wTpM6Hzn5YO4pSb91BEwu1g==}
- '@types/ws@8.5.12':
- resolution: {integrity: sha512-3tPRkv1EtkDpzlgyKyI8pGsGZAGPEaXeu0DOj5DI25Ja91bdAYddYHbADRYVrZMRbfW+1l5YwXVDKohDJNQxkQ==}
-
'@types/ws@8.5.13':
resolution: {integrity: sha512-osM/gWBTPKgHV8XkTunnegTRIsvF6owmf5w+JtAfOw472dptdm0dlGv4xCt6GwQRcC2XVOvvRE/0bAoQcL2QkA==}
@@ -3668,17 +3228,14 @@ packages:
'@types/yargs@15.0.19':
resolution: {integrity: sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA==}
- '@types/yargs@16.0.9':
- resolution: {integrity: sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==}
-
- '@types/yargs@17.0.32':
- resolution: {integrity: sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==}
+ '@types/yargs@17.0.33':
+ resolution: {integrity: sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==}
'@types/yauzl@2.10.3':
resolution: {integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==}
- '@typescript-eslint/eslint-plugin@8.8.1':
- resolution: {integrity: sha512-xfvdgA8AP/vxHgtgU310+WBnLB4uJQ9XdyP17RebG26rLtDrQJV3ZYrcopX91GrHmMoH8bdSwMRh2a//TiJ1jQ==}
+ '@typescript-eslint/eslint-plugin@8.13.0':
+ resolution: {integrity: sha512-nQtBLiZYMUPkclSeC3id+x4uVd1SGtHuElTxL++SfP47jR0zfkZBJHc+gL4qPsgTuypz0k8Y2GheaDYn6Gy3rg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
'@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
@@ -3688,8 +3245,8 @@ packages:
typescript:
optional: true
- '@typescript-eslint/parser@8.8.1':
- resolution: {integrity: sha512-hQUVn2Lij2NAxVFEdvIGxT9gP1tq2yM83m+by3whWFsWC+1y8pxxxHUFE1UqDu2VsGi2i6RLcv4QvouM84U+ow==}
+ '@typescript-eslint/parser@8.13.0':
+ resolution: {integrity: sha512-w0xp+xGg8u/nONcGw1UXAr6cjCPU1w0XVyBs6Zqaj5eLmxkKQAByTdV/uGgNN5tVvN/kKpoQlP2cL7R+ajZZIQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
@@ -3698,12 +3255,12 @@ packages:
typescript:
optional: true
- '@typescript-eslint/scope-manager@8.8.1':
- resolution: {integrity: sha512-X4JdU+66Mazev/J0gfXlcC/dV6JI37h+93W9BRYXrSn0hrE64IoWgVkO9MSJgEzoWkxONgaQpICWg8vAN74wlA==}
+ '@typescript-eslint/scope-manager@8.13.0':
+ resolution: {integrity: sha512-XsGWww0odcUT0gJoBZ1DeulY1+jkaHUciUq4jKNv4cpInbvvrtDoyBH9rE/n2V29wQJPk8iCH1wipra9BhmiMA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/type-utils@8.8.1':
- resolution: {integrity: sha512-qSVnpcbLP8CALORf0za+vjLYj1Wp8HSoiI8zYU5tHxRVj30702Z1Yw4cLwfNKhTPWp5+P+k1pjmD5Zd1nhxiZA==}
+ '@typescript-eslint/type-utils@8.13.0':
+ resolution: {integrity: sha512-Rqnn6xXTR316fP4D2pohZenJnp+NwQ1mo7/JM+J1LWZENSLkJI8ID8QNtlvFeb0HnFSK94D6q0cnMX6SbE5/vA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '*'
@@ -3711,12 +3268,12 @@ packages:
typescript:
optional: true
- '@typescript-eslint/types@8.8.1':
- resolution: {integrity: sha512-WCcTP4SDXzMd23N27u66zTKMuEevH4uzU8C9jf0RO4E04yVHgQgW+r+TeVTNnO1KIfrL8ebgVVYYMMO3+jC55Q==}
+ '@typescript-eslint/types@8.13.0':
+ resolution: {integrity: sha512-4cyFErJetFLckcThRUFdReWJjVsPCqyBlJTi6IDEpc1GWCIIZRFxVppjWLIMcQhNGhdWJJRYFHpHoDWvMlDzng==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/typescript-estree@8.8.1':
- resolution: {integrity: sha512-A5d1R9p+X+1js4JogdNilDuuq+EHZdsH9MjTVxXOdVFfTJXunKJR/v+fNNyO4TnoOn5HqobzfRlc70NC6HTcdg==}
+ '@typescript-eslint/typescript-estree@8.13.0':
+ resolution: {integrity: sha512-v7SCIGmVsRK2Cy/LTLGN22uea6SaUIlpBcO/gnMGT/7zPtxp90bphcGf4fyrCQl3ZtiBKqVTG32hb668oIYy1g==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '*'
@@ -3724,38 +3281,38 @@ packages:
typescript:
optional: true
- '@typescript-eslint/utils@8.8.1':
- resolution: {integrity: sha512-/QkNJDbV0bdL7H7d0/y0qBbV2HTtf0TIyjSDTvvmQEzeVx8jEImEbLuOA4EsvE8gIgqMitns0ifb5uQhMj8d9w==}
+ '@typescript-eslint/utils@8.13.0':
+ resolution: {integrity: sha512-A1EeYOND6Uv250nybnLZapeXpYMl8tkzYUxqmoKAWnI4sei3ihf2XdZVd+vVOmHGcp3t+P7yRrNsyyiXTvShFQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
- '@typescript-eslint/visitor-keys@8.8.1':
- resolution: {integrity: sha512-0/TdC3aeRAsW7MDvYRwEc1Uwm0TIBfzjPFgg60UU2Haj5qsCs9cc3zNgY71edqE3LbWfF/WoZQd3lJoDXFQpag==}
+ '@typescript-eslint/visitor-keys@8.13.0':
+ resolution: {integrity: sha512-7N/+lztJqH4Mrf0lb10R/CbI1EaAMMGyF5y0oJvFoAhafwgiRA7TXyd8TFn8FC8k5y2dTsYogg238qavRGNnlw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@ungap/structured-clone@1.2.0':
resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==}
- '@unhead/dom@1.11.7':
- resolution: {integrity: sha512-Nj2ulnbY5lvIcxqXwdO5YfdvLm8EYLjcaOje2b2aQnfyPAyOIVeR8iB79DDKk/uZZAPEwkdhSnUdEh9Ny0b3lw==}
+ '@unhead/dom@1.11.11':
+ resolution: {integrity: sha512-4YwziCH5CmjvUzSGdZ4Klj6BqhLSTNZooA9kt47yDxj4Qw9uHqVnXwWWupYsVdIYPNsw1tR2AkHveg82y1Fn3A==}
- '@unhead/schema@1.11.7':
- resolution: {integrity: sha512-j9uN7T63aUXrZ6yx2CfjVT7xZHjn0PZO7TPMaWqMFjneIH/NONKvDVCMEqDlXeqdSIERIYtk/xTHgCUMer5eyw==}
+ '@unhead/schema@1.11.11':
+ resolution: {integrity: sha512-xSGsWHPBYcMV/ckQeImbrVu6ddeRnrdDCgXUKv3xIjGBY+ob/96V80lGX8FKWh8GwdFSwhblISObKlDAt5K9ZQ==}
- '@unhead/shared@1.11.7':
- resolution: {integrity: sha512-5v3PmV1LMyikGyQi/URYS5ilH8dg1Iomtja7iFWke990O8RBDEzAdagJqcsUE/fw+o7cXRSOamyx5wCf5Q1TrA==}
+ '@unhead/shared@1.11.11':
+ resolution: {integrity: sha512-RfdvUskPn90ipO+PmR98jKZ8Lsx1uuzscOenO5xcrMrtWGhlLWaEBIrbvFOvX5PZ/u8/VNMJChTXGDUjEtHmlg==}
- '@unhead/ssr@1.11.7':
- resolution: {integrity: sha512-qI1zNFY8fU5S9EhroxlXSA5Q/XKbWAKXrVVNG+6bIh/IRrMOMJrPk4d1GmphF4gmNri3ARqly+OWx4VVaj0scA==}
+ '@unhead/ssr@1.11.11':
+ resolution: {integrity: sha512-NQC8y+4ldwkMr3x8WFwv3+OR6g+Sj7dwL6J/3ST25KnvlwDSub2KGbnm2hF1x8vTpTmXTVxMA3GDRL9MRfLvMg==}
- '@unhead/vue@1.11.7':
- resolution: {integrity: sha512-SLr0eQfznVp63iKi47L4s5Yz+oiQjDA82VBP4jlXi7dM9fSIn1ul1aKvBqle/ZxI2cqY8zVGz60EjhjWeu754A==}
+ '@unhead/vue@1.11.11':
+ resolution: {integrity: sha512-AxsHHauZ+w0m2irwDHqkc3GdNChMLBtolk8CN3IAZM6vTwH0EbPXlFCFcIk4WwkH0opG+R2GlKTThr5H0HLm7g==}
peerDependencies:
vue: '>=2.7 || >=3'
- '@vercel/nft@0.26.5':
- resolution: {integrity: sha512-NHxohEqad6Ra/r4lGknO52uc/GrWILXAMs1BB4401GTqww0fw1bAqzpG1XHuDO+dprg4GvsD9ZLLSsdo78p9hQ==}
+ '@vercel/nft@0.27.6':
+ resolution: {integrity: sha512-mwuyUxskdcV8dd7N7JnxBgvFEz1D9UOePI/WyLLzktv6HSCwgPNQGit/UJ2IykAWGlypKw4pBQjOKWvIbXITSg==}
engines: {node: '>=16'}
hasBin: true
@@ -3765,8 +3322,8 @@ packages:
peerDependencies:
vite: ^3.0.0 || ^4.0.0 || ^5.0.0
- '@vitejs/plugin-react@4.3.2':
- resolution: {integrity: sha512-hieu+o05v4glEBucTcKMK3dlES0OeJlD9YVOAPraVMOInBCwzumaIFiUjr4bHK7NPgnAHgiskUoceKercrN8vg==}
+ '@vitejs/plugin-react@4.3.3':
+ resolution: {integrity: sha512-NooDe9GpHGqNns1i8XDERg0Vsg5SSYRhRxxyTGogUdkdNt47jal+fbuYi+Yfq6pzRCKXyoPcWisfxE6RIM3GKA==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
vite: ^4.2.0 || ^5.0.0
@@ -3785,14 +3342,13 @@ packages:
vite: ^5.0.0
vue: ^3.2.25
- '@vitest/expect@2.1.3':
- resolution: {integrity: sha512-SNBoPubeCJhZ48agjXruCI57DvxcsivVDdWz+SSsmjTT4QN/DfHk3zB/xKsJqMs26bLZ/pNRLnCf0j679i0uWQ==}
+ '@vitest/expect@2.1.4':
+ resolution: {integrity: sha512-DOETT0Oh1avie/D/o2sgMHGrzYUFFo3zqESB2Hn70z6QB1HrS2IQ9z5DfyTqU8sg4Bpu13zZe9V4+UTNQlUeQA==}
- '@vitest/mocker@2.1.3':
- resolution: {integrity: sha512-eSpdY/eJDuOvuTA3ASzCjdithHa+GIF1L4PqtEELl6Qa3XafdMLBpBlZCIUCX2J+Q6sNmjmxtosAG62fK4BlqQ==}
+ '@vitest/mocker@2.1.4':
+ resolution: {integrity: sha512-Ky/O1Lc0QBbutJdW0rqLeFNbuLEyS+mIPiNdlVlp2/yhJ0SbyYqObS5IHdhferJud8MbbwMnexg4jordE5cCoQ==}
peerDependencies:
- '@vitest/spy': 2.1.3
- msw: ^2.3.5
+ msw: ^2.4.9
vite: ^5.0.0
peerDependenciesMeta:
msw:
@@ -3800,50 +3356,41 @@ packages:
vite:
optional: true
- '@vitest/pretty-format@2.1.2':
- resolution: {integrity: sha512-FIoglbHrSUlOJPDGIrh2bjX1sNars5HbxlcsFKCtKzu4+5lpsRhOCVcuzp0fEhAGHkPZRIXVNzPcpSlkoZ3LuA==}
-
- '@vitest/pretty-format@2.1.3':
- resolution: {integrity: sha512-XH1XdtoLZCpqV59KRbPrIhFCOO0hErxrQCMcvnQete3Vibb9UeIOX02uFPfVn3Z9ZXsq78etlfyhnkmIZSzIwQ==}
-
'@vitest/pretty-format@2.1.4':
resolution: {integrity: sha512-L95zIAkEuTDbUX1IsjRl+vyBSLh3PwLLgKpghl37aCK9Jvw0iP+wKwIFhfjdUtA2myLgjrG6VU6JCFLv8q/3Ww==}
- '@vitest/runner@2.1.3':
- resolution: {integrity: sha512-JGzpWqmFJ4fq5ZKHtVO3Xuy1iF2rHGV4d/pdzgkYHm1+gOzNZtqjvyiaDGJytRyMU54qkxpNzCx+PErzJ1/JqQ==}
-
- '@vitest/snapshot@2.1.2':
- resolution: {integrity: sha512-xtAeNsZ++aRIYIUsek7VHzry/9AcxeULlegBvsdLncLmNCR6tR8SRjn8BbDP4naxtccvzTqZ+L1ltZlRCfBZFA==}
+ '@vitest/runner@2.1.4':
+ resolution: {integrity: sha512-sKRautINI9XICAMl2bjxQM8VfCMTB0EbsBc/EDFA57V6UQevEKY/TOPOF5nzcvCALltiLfXWbq4MaAwWx/YxIA==}
- '@vitest/snapshot@2.1.3':
- resolution: {integrity: sha512-qWC2mWc7VAXmjAkEKxrScWHWFyCQx/cmiZtuGqMi+WwqQJ2iURsVY4ZfAK6dVo6K2smKRU6l3BPwqEBvhnpQGg==}
+ '@vitest/snapshot@2.1.4':
+ resolution: {integrity: sha512-3Kab14fn/5QZRog5BPj6Rs8dc4B+mim27XaKWFWHWA87R56AKjHTGcBFKpvZKDzC4u5Wd0w/qKsUIio3KzWW4Q==}
- '@vitest/spy@2.1.3':
- resolution: {integrity: sha512-Nb2UzbcUswzeSP7JksMDaqsI43Sj5+Kry6ry6jQJT4b5gAK+NS9NED6mDb8FlMRCX8m5guaHCDZmqYMMWRy5nQ==}
+ '@vitest/spy@2.1.4':
+ resolution: {integrity: sha512-4JOxa+UAizJgpZfaCPKK2smq9d8mmjZVPMt2kOsg/R8QkoRzydHH1qHxIYNvr1zlEaFj4SXiaaJWxq/LPLKaLg==}
- '@vitest/utils@2.1.3':
- resolution: {integrity: sha512-xpiVfDSg1RrYT0tX6czgerkpcKFmFOF/gCr30+Mve5V2kewCy4Prn1/NDMSRwaSmT7PRaOF83wu+bEtsY1wrvA==}
+ '@vitest/utils@2.1.4':
+ resolution: {integrity: sha512-MXDnZn0Awl2S86PSNIim5PWXgIAx8CIkzu35mBdSApUip6RFOGXBCf3YFyeEu8n1IHk4bWD46DeYFu9mQlFIRg==}
'@volar/language-core@1.11.1':
resolution: {integrity: sha512-dOcNn3i9GgZAcJt43wuaEykSluAuOkQgzni1cuxLxTV0nJKanQztp7FxyswdRILaKH+P2XZMPRp2S4MV/pElCw==}
- '@volar/language-core@2.4.6':
- resolution: {integrity: sha512-FxUfxaB8sCqvY46YjyAAV6c3mMIq/NWQMVvJ+uS4yxr1KzOvyg61gAuOnNvgCvO4TZ7HcLExBEsWcDu4+K4E8A==}
+ '@volar/language-core@2.4.9':
+ resolution: {integrity: sha512-t++GIrUeQnKCieZdY9e+Uar2VmTqOE4Z9KcEcdSHKmKZPuqpbbWow1YKe1i3HpU2s1JqLRVM8y/n87WKXyxJAg==}
'@volar/source-map@1.11.1':
resolution: {integrity: sha512-hJnOnwZ4+WT5iupLRnuzbULZ42L7BWWPMmruzwtLhJfpDVoZLjNBxHDi2sY2bgZXCKlpU5XcsMFoYrsQmPhfZg==}
- '@volar/source-map@2.4.6':
- resolution: {integrity: sha512-Nsh7UW2ruK+uURIPzjJgF0YRGP5CX9nQHypA2OMqdM2FKy7rh+uv3XgPnWPw30JADbKvZ5HuBzG4gSbVDYVtiw==}
+ '@volar/source-map@2.4.9':
+ resolution: {integrity: sha512-UGE+WgJwk64OcfBwBOBKIzmF+uNx4dC5GzOvaVsHbTBp/IVqeTVsGiO5CwBAt6l3vVXYbMuddG2DU8FEnBRxTg==}
'@volar/typescript@1.11.1':
resolution: {integrity: sha512-iU+t2mas/4lYierSnoFOeRFQUhAEMgsFuQxoxvwn5EdQopw43j+J27a4lt9LMInx1gLJBC6qL14WYGlgymaSMQ==}
- '@volar/typescript@2.4.6':
- resolution: {integrity: sha512-NMIrA7y5OOqddL9VtngPWYmdQU03htNKFtAYidbYfWA0TOhyGVd9tfcP4TsLWQ+RBWDZCbBqsr8xzU0ZOxYTCQ==}
+ '@volar/typescript@2.4.9':
+ resolution: {integrity: sha512-Zmh3Bq8CFD6OANKYsi4vs/l7togwfjFH0kgrT12uAsDff2AJQjbEUKTVUnxmHbnbH2B9ja7Lb6Mu/Wj9wBuJlg==}
- '@vue-macros/common@1.14.0':
- resolution: {integrity: sha512-xwQhDoEXRNXobNQmdqOD20yUGdVLVLZe4zhDlT9q/E+z+mvT3wukaAoJG80XRnv/BcgOOCVpxqpkQZ3sNTgjWA==}
+ '@vue-macros/common@1.15.0':
+ resolution: {integrity: sha512-yg5VqW7+HRfJGimdKvFYzx8zorHUYo0hzPwuraoC1DWa7HHazbTMoVsHDvk3JHa1SGfSL87fRnzmlvgjEHhszA==}
engines: {node: '>=16.14.0'}
peerDependencies:
vue: ^2.7.0 || ^3.2.25
@@ -3867,17 +3414,17 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@vue/compiler-core@3.5.10':
- resolution: {integrity: sha512-iXWlk+Cg/ag7gLvY0SfVucU8Kh2CjysYZjhhP70w9qI4MvSox4frrP+vDGvtQuzIcgD8+sxM6lZvCtdxGunTAA==}
+ '@vue/compiler-core@3.5.12':
+ resolution: {integrity: sha512-ISyBTRMmMYagUxhcpyEH0hpXRd/KqDU4ymofPgl2XAkY9ZhQ+h0ovEZJIiPop13UmR/54oA2cgMDjgroRelaEw==}
- '@vue/compiler-dom@3.5.10':
- resolution: {integrity: sha512-DyxHC6qPcktwYGKOIy3XqnHRrrXyWR2u91AjP+nLkADko380srsC2DC3s7Y1Rk6YfOlxOlvEQKa9XXmLI+W4ZA==}
+ '@vue/compiler-dom@3.5.12':
+ resolution: {integrity: sha512-9G6PbJ03uwxLHKQ3P42cMTi85lDRvGLB2rSGOiQqtXELat6uI4n8cNz9yjfVHRPIu+MsK6TE418Giruvgptckg==}
- '@vue/compiler-sfc@3.5.10':
- resolution: {integrity: sha512-to8E1BgpakV7224ZCm8gz1ZRSyjNCAWEplwFMWKlzCdP9DkMKhRRwt0WkCjY7jkzi/Vz3xgbpeig5Pnbly4Tow==}
+ '@vue/compiler-sfc@3.5.12':
+ resolution: {integrity: sha512-2k973OGo2JuAa5+ZlekuQJtitI5CgLMOwgl94BzMCsKZCX/xiqzJYzapl4opFogKHqwJk34vfsaKpfEhd1k5nw==}
- '@vue/compiler-ssr@3.5.10':
- resolution: {integrity: sha512-hxP4Y3KImqdtyUKXDRSxKSRkSm1H9fCvhojEYrnaoWhE4w/y8vwWhnosJoPPe2AXm5sU7CSbYYAgkt2ZPhDz+A==}
+ '@vue/compiler-ssr@3.5.12':
+ resolution: {integrity: sha512-eLwc7v6bfGBSM7wZOGPmRavSWzNFF6+PdRhE+VFJhNCgHiF8AM7ccoqcv5kBXA2eWUfigD7byekvf/JsOfKvPA==}
'@vue/compiler-vue2@2.7.16':
resolution: {integrity: sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==}
@@ -3893,8 +3440,8 @@ packages:
'@vue/devtools-kit@7.4.4':
resolution: {integrity: sha512-awK/4NfsUG0nQ7qnTM37m7ZkEUMREyPh8taFCX+uQYps/MTFEum0AD05VeGDRMXwWvMmGIcWX9xp8ZiBddY0jw==}
- '@vue/devtools-shared@7.4.6':
- resolution: {integrity: sha512-rPeSBzElnHYMB05Cc056BQiJpgocQjY8XVulgni+O9a9Gr9tNXgPteSzFFD+fT/iWMxNuUgGKs9CuW5DZewfIg==}
+ '@vue/devtools-shared@7.6.3':
+ resolution: {integrity: sha512-wJW5QF27i16+sNQIaes8QoEZg1eqEgF83GkiPUlEQe9k7ZoHXHV7PRrnrxOKem42sIHPU813J2V/ZK1uqTJe6g==}
'@vue/language-core@1.8.27':
resolution: {integrity: sha512-L8Kc27VdQserNaCUNiSFdDl9LWT24ly8Hpwf1ECy3aFb9m6bDhBGQYOujDm21N7EW3moKIOKEanQwe1q5BK+mA==}
@@ -3904,71 +3451,46 @@ packages:
typescript:
optional: true
- '@vue/language-core@2.1.6':
- resolution: {integrity: sha512-MW569cSky9R/ooKMh6xa2g1D0AtRKbL56k83dzus/bx//RDJk24RHWkMzbAlXjMdDNyxAaagKPRquBIxkxlCkg==}
+ '@vue/language-core@2.1.10':
+ resolution: {integrity: sha512-DAI289d0K3AB5TUG3xDp9OuQ71CnrujQwJrQnfuZDwo6eGNf0UoRlPuaVNO+Zrn65PC3j0oB2i7mNmVPggeGeQ==}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
- '@vue/reactivity@3.5.10':
- resolution: {integrity: sha512-kW08v06F6xPSHhid9DJ9YjOGmwNDOsJJQk0ax21wKaUYzzuJGEuoKNU2Ujux8FLMrP7CFJJKsHhXN9l2WOVi2g==}
+ '@vue/reactivity@3.5.12':
+ resolution: {integrity: sha512-UzaN3Da7xnJXdz4Okb/BGbAaomRHc3RdoWqTzlvd9+WBR5m3J39J1fGcHes7U3za0ruYn/iYy/a1euhMEHvTAg==}
- '@vue/runtime-core@3.5.10':
- resolution: {integrity: sha512-9Q86I5Qq3swSkFfzrZ+iqEy7Vla325M7S7xc1NwKnRm/qoi1Dauz0rT6mTMmscqx4qz0EDJ1wjB+A36k7rl8mA==}
+ '@vue/runtime-core@3.5.12':
+ resolution: {integrity: sha512-hrMUYV6tpocr3TL3Ad8DqxOdpDe4zuQY4HPY3X/VRh+L2myQO8MFXPAMarIOSGNu0bFAjh1yBkMPXZBqCk62Uw==}
- '@vue/runtime-dom@3.5.10':
- resolution: {integrity: sha512-t3x7ht5qF8ZRi1H4fZqFzyY2j+GTMTDxRheT+i8M9Ph0oepUxoadmbwlFwMoW7RYCpNQLpP2Yx3feKs+fyBdpA==}
+ '@vue/runtime-dom@3.5.12':
+ resolution: {integrity: sha512-q8VFxR9A2MRfBr6/55Q3umyoN7ya836FzRXajPB6/Vvuv0zOPL+qltd9rIMzG/DbRLAIlREmnLsplEF/kotXKA==}
- '@vue/server-renderer@3.5.10':
- resolution: {integrity: sha512-IVE97tt2kGKwHNq9yVO0xdh1IvYfZCShvDSy46JIh5OQxP1/EXSpoDqetVmyIzL7CYOWnnmMkVqd7YK2QSWkdw==}
+ '@vue/server-renderer@3.5.12':
+ resolution: {integrity: sha512-I3QoeDDeEPZm8yR28JtY+rk880Oqmj43hreIBVTicisFTx/Dl7JpG72g/X7YF8hnQD3IFhkky5i2bPonwrTVPg==}
peerDependencies:
- vue: 3.5.10
-
- '@vue/shared@3.5.10':
- resolution: {integrity: sha512-VkkBhU97Ki+XJ0xvl4C9YJsIZ2uIlQ7HqPpZOS3m9VCvmROPaChZU6DexdMJqvz9tbgG+4EtFVrSuailUq5KGQ==}
+ vue: 3.5.12
'@vue/shared@3.5.12':
resolution: {integrity: sha512-L2RPSAwUFbgZH20etwrXyVyCBu9OxRSi8T/38QsvnkJyvq2LufW2lDCOzm7t/U9C1mkhJGWYfCuFBCmIuNivrg==}
- '@wdio/cli@9.1.4':
- resolution: {integrity: sha512-bn8ghKajg+Df1hapcSraXHOUVCO9gFuSIofEALtq8LnLgLrA+81B+e/WqShPpml4sGLhx91Z9aFDSzMG7cHcNg==}
- engines: {node: '>=18.20.0'}
- hasBin: true
-
- '@wdio/cli@9.1.5':
- resolution: {integrity: sha512-AcOg5YIK5egz/JrXQpTySQTvPJUFc1Z2Aii+awmhB5PaTv0vlNO871F4PSUwAdCJ6Q1nab31oBytelCo+NsFUA==}
+ '@wdio/cli@9.2.10':
+ resolution: {integrity: sha512-5xk2J8qS9Kl1B1kHTMyylXoawz4hw9NdSSl57JSlAwDHrPoLb/1KoT1ndSPungGezEjjd0v5k9U4Lbl+jic/+w==}
engines: {node: '>=18.20.0'}
hasBin: true
- '@wdio/cli@9.2.1':
- resolution: {integrity: sha512-lGz/JBkSQh4qH9sDFbNrPHfQNxrDtbm2tb3NgzMNXk88G2dq9AzoYriRgfXO7rKETc+nFreuEdULV+MMhRHk/A==}
- engines: {node: '>=18.20.0'}
- hasBin: true
-
- '@wdio/config@9.1.3':
- resolution: {integrity: sha512-fozjb5Jl26QqQoZ2lJc8uZwzK2iKKmIfNIdNvx5JmQt78ybShiPuWWgu/EcHYDvAiZwH76K59R1Gp4lNmmEDew==}
- engines: {node: '>=18.20.0'}
-
- '@wdio/globals@9.1.4':
- resolution: {integrity: sha512-OJNTI4iJLB4fZBtuLwVtSl5ZVo+xF+jyy3E2pmgkQu4filMWFQVTfyRiI0+xlME6vLb98Kkdi/hXf52KO2r2lQ==}
- engines: {node: '>=18.20.0'}
-
- '@wdio/globals@9.1.5':
- resolution: {integrity: sha512-A53AHRw+JYMp9+2tP0yFY4lG4yXhDKRUqRUO8rpnLpFLIfQjDXHMb3l+1NFAUftxRigCB7bMnjNAzUfVPAHDZg==}
- engines: {node: '>=18.20.0'}
-
- '@wdio/globals@9.2.1':
- resolution: {integrity: sha512-svPSPbV9ZxunmkJVmcCw5A7vzGBYpO1kPmBK9LLZFfVhXiwps0EOl+j6KtqwbQ0cTvC6PEHzm/bwmX4DEzBAzA==}
+ '@wdio/config@9.2.8':
+ resolution: {integrity: sha512-EGMmBPGJbz6RmgMjebRWkWu3fGyeTIRcusF4UA4f2tiUEKY8nbzUO/ZyDjVQNR+YVB40q0jcqAqpszYRrIzzeg==}
engines: {node: '>=18.20.0'}
- '@wdio/local-runner@9.1.4':
- resolution: {integrity: sha512-Wion2KMWY4YbUeKVWhySklUe+vx4NnbKGuhMivh22NkYxpOx8rX8uQQjHnKwU7koiun5kSitw8+qHBLJ9ipJkg==}
+ '@wdio/globals@9.2.8':
+ resolution: {integrity: sha512-FBklmM2mOgMPenu5SrTA++RJCjvyUFlDxpDcVA0drh5pRfvD+DFAE40yi4+w6ji42tdTHsiB2KFkM4wJL0fXIA==}
engines: {node: '>=18.20.0'}
- '@wdio/local-runner@9.1.5':
- resolution: {integrity: sha512-+sJwWxf26IBvrMo10UIiJ8jSTi5MPr8rIVw95hT5AFTDCZxrU5CS7Z6YbTYkNkii0sfTvDPYdpb5HYlGoqSJwg==}
+ '@wdio/local-runner@9.2.8':
+ resolution: {integrity: sha512-klRfNMtJz+KZKBOzklnNr2nOOVkhdITzaIcIB/JNSkp8EUVI/9gRusc8okhXvjfrcZRusSz4P3a37r03qk6h2A==}
engines: {node: '>=18.20.0'}
'@wdio/logger@8.38.0':
@@ -3979,92 +3501,81 @@ packages:
resolution: {integrity: sha512-cumRMK/gE1uedBUw3WmWXOQ7HtB6DR8EyKQioUz2P0IJtRRpglMBdZV7Svr3b++WWawOuzZHMfbTkJQmaVt8Gw==}
engines: {node: '>=18.20.0'}
- '@wdio/mocha-framework@9.1.3':
- resolution: {integrity: sha512-MhYTwqZdpqu28vUFnU0swbv9Y/cKRGFdaJtBImpT0HlnbBHG3NouEcQnInSiGst5JMdDBRrkxHYZyTz6y3Uxpw==}
+ '@wdio/mocha-framework@9.2.8':
+ resolution: {integrity: sha512-lCek1D+Cdnb8sF/E/PkdKX1PLrq677YVKHV6hFlZeRHWKcJyopCTvhwnJerZNFgmcTuZ6zeiGLcNNlPdQzF4oQ==}
engines: {node: '>=18.20.0'}
- '@wdio/protocols@9.0.8':
- resolution: {integrity: sha512-xRH54byFf623/w/KW62xkf/C2mGyigSfMm+UT3tNEAd5ZA9X2VAWQWQBPzdcrsck7Fxk4zlQX8Kb34RSs7Cy4Q==}
-
- '@wdio/protocols@9.2.0':
- resolution: {integrity: sha512-lSdKCwLtqMxSIW+cl8au21GlNkvmLNGgyuGYdV/lFdWflmMYH1zusruM6Km6Kpv2VUlWySjjGknYhe7XVTOeMw==}
+ '@wdio/protocols@9.2.2':
+ resolution: {integrity: sha512-0GMUSHCbYm+J+rnRU6XPtaUgVCRICsiH6W5zCXpePm3wLlbmg/mvZ+4OnNErssbpIOulZuAmC2jNmut2AEfWSw==}
'@wdio/repl@9.0.8':
resolution: {integrity: sha512-3iubjl4JX5zD21aFxZwQghqC3lgu+mSs8c3NaiYYNCC+IT5cI/8QuKlgh9s59bu+N3gG988jqMJeCYlKuUv/iw==}
engines: {node: '>=18.20.0'}
- '@wdio/reporter@9.1.3':
- resolution: {integrity: sha512-j8i2Rs2JkcLdvdP6eysMNKgUnApi/ESwRYtscQvQIOYvzy2xOEJRe6VOeoUjLgKNN4VGo165H04bbxMR0oacUw==}
- engines: {node: '>=18.20.0'}
-
- '@wdio/runner@9.1.4':
- resolution: {integrity: sha512-XvXXXNlTbzx4ccV+mHqgYYcJkzNbW7rNywVfg1WhEnjPJ4P9r/8XZW0SXaOfX8EbeUBvslGfb2UuZhT1JH8a3Q==}
+ '@wdio/reporter@9.2.2':
+ resolution: {integrity: sha512-3FxIMol0lTQ8S0gSlgvBpjTg9w/GRCFH+juHVIwjmdeqgKwID0IoKGxLo2enLjR7T3wsWUzN6JaqL/fa4nAK4A==}
engines: {node: '>=18.20.0'}
- '@wdio/runner@9.1.5':
- resolution: {integrity: sha512-oe7tVs94UKWB6yNGlLgoAo6UFoX0bC9CoPz9TnPPddKY/jq216XSR6bOrRdksrq+be3EyK4NUR75CLmW+lUbBw==}
+ '@wdio/runner@9.2.8':
+ resolution: {integrity: sha512-W2aD/218cC7wALxEYWm8Hl9UP79noqCeJIyx8P9jlCHrxhlM9mfTY+4WJAlQIPh0CHIDZzgJ6/TeXHucjoEA5w==}
engines: {node: '>=18.20.0'}
- '@wdio/spec-reporter@9.1.3':
- resolution: {integrity: sha512-N5GsZpDcjfJ9otmxD8q1Kc7PK5/P4Y3B+Aj51FyvYseMPbsOzUuwsKUQJSQu/IhgrDU3UjZQydr8UBU/Gg6a9w==}
+ '@wdio/spec-reporter@9.2.8':
+ resolution: {integrity: sha512-68BH6TconFWDFQebqgRsKnQtbbmBoj56fSSlUq5+HSn8yoItTdaG6bYQ+rDpXD9RD9K46C2h622PtSV4ozIR1A==}
engines: {node: '>=18.20.0'}
- '@wdio/types@8.40.6':
- resolution: {integrity: sha512-ALftLri1BdsRuPrQkuW3evBNdOA5n4IkuoegOw6UE2z+R0f1YI5fHGSHNRWLnhtbOECbGyHXXqzbSxCEb+o+MA==}
- engines: {node: ^16.13 || >=18}
-
- '@wdio/types@9.1.3':
- resolution: {integrity: sha512-oQrzLQBqn/+HXSJJo01NEfeKhzwuDdic7L8PDNxv5ySKezvmLDYVboQfoSDRtpAdfAZCcxuU9L4Jw7iTf6WV3g==}
+ '@wdio/types@9.2.2':
+ resolution: {integrity: sha512-nHZ9Ne9iRQFJ1TOYKUn4Fza69IshTTzk6RYmSZ51ImGs9uMZu0+S0Jm9REdly+VLN3FzxG6g2QSe0/F3uNVPdw==}
engines: {node: '>=18.20.0'}
- '@wdio/utils@9.1.3':
- resolution: {integrity: sha512-dYeOzq9MTh8jYRZhzo/DYyn+cKrhw7h0/5hgyXkbyk/wHwF/uLjhATPmfaCr9+MARSEdiF7wwU8iRy/V0jfsLg==}
+ '@wdio/utils@9.2.8':
+ resolution: {integrity: sha512-rKm5FXkpsCyeqh8tdirtRUHvgNytWNMiaVKdctsvKOJvqnDVPAAQcz9Wmgo7bSwoLwtSHcDaRoxY7olV7J4QnA==}
engines: {node: '>=18.20.0'}
- '@webassemblyjs/ast@1.12.1':
- resolution: {integrity: sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==}
+ '@webassemblyjs/ast@1.14.1':
+ resolution: {integrity: sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==}
- '@webassemblyjs/floating-point-hex-parser@1.11.6':
- resolution: {integrity: sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==}
+ '@webassemblyjs/floating-point-hex-parser@1.13.2':
+ resolution: {integrity: sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==}
- '@webassemblyjs/helper-api-error@1.11.6':
- resolution: {integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==}
+ '@webassemblyjs/helper-api-error@1.13.2':
+ resolution: {integrity: sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==}
- '@webassemblyjs/helper-buffer@1.12.1':
- resolution: {integrity: sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==}
+ '@webassemblyjs/helper-buffer@1.14.1':
+ resolution: {integrity: sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==}
- '@webassemblyjs/helper-numbers@1.11.6':
- resolution: {integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==}
+ '@webassemblyjs/helper-numbers@1.13.2':
+ resolution: {integrity: sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==}
- '@webassemblyjs/helper-wasm-bytecode@1.11.6':
- resolution: {integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==}
+ '@webassemblyjs/helper-wasm-bytecode@1.13.2':
+ resolution: {integrity: sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==}
- '@webassemblyjs/helper-wasm-section@1.12.1':
- resolution: {integrity: sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==}
+ '@webassemblyjs/helper-wasm-section@1.14.1':
+ resolution: {integrity: sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==}
- '@webassemblyjs/ieee754@1.11.6':
- resolution: {integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==}
+ '@webassemblyjs/ieee754@1.13.2':
+ resolution: {integrity: sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==}
- '@webassemblyjs/leb128@1.11.6':
- resolution: {integrity: sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==}
+ '@webassemblyjs/leb128@1.13.2':
+ resolution: {integrity: sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==}
- '@webassemblyjs/utf8@1.11.6':
- resolution: {integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==}
+ '@webassemblyjs/utf8@1.13.2':
+ resolution: {integrity: sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==}
- '@webassemblyjs/wasm-edit@1.12.1':
- resolution: {integrity: sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==}
+ '@webassemblyjs/wasm-edit@1.14.1':
+ resolution: {integrity: sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==}
- '@webassemblyjs/wasm-gen@1.12.1':
- resolution: {integrity: sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==}
+ '@webassemblyjs/wasm-gen@1.14.1':
+ resolution: {integrity: sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==}
- '@webassemblyjs/wasm-opt@1.12.1':
- resolution: {integrity: sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==}
+ '@webassemblyjs/wasm-opt@1.14.1':
+ resolution: {integrity: sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==}
- '@webassemblyjs/wasm-parser@1.12.1':
- resolution: {integrity: sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==}
+ '@webassemblyjs/wasm-parser@1.14.1':
+ resolution: {integrity: sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==}
- '@webassemblyjs/wast-printer@1.12.1':
- resolution: {integrity: sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==}
+ '@webassemblyjs/wast-printer@1.14.1':
+ resolution: {integrity: sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==}
'@xtuc/ieee754@1.2.0':
resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==}
@@ -4075,12 +3586,12 @@ packages:
'@yarnpkg/lockfile@1.1.0':
resolution: {integrity: sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==}
- '@yarnpkg/parsers@3.0.0-rc.46':
- resolution: {integrity: sha512-aiATs7pSutzda/rq8fnuPwTglyVwjM22bNnK2ZgjrpAjQHSSl3lztd2f9evst1W/qnC58DRz7T7QndUDumAR4Q==}
- engines: {node: '>=14.15.0'}
+ '@yarnpkg/parsers@3.0.2':
+ resolution: {integrity: sha512-/HcYgtUSiJiot/XWGLOlGxPYUG65+/31V8oqk17vZLW1xlCoR4PampyePljOxY2n8/3jz9+tIFzICsyGujJZoA==}
+ engines: {node: '>=18.12.0'}
- '@zip.js/zip.js@2.7.52':
- resolution: {integrity: sha512-+5g7FQswvrCHwYKNMd/KFxZSObctLSsQOgqBSi0LzwHo3li9Eh1w5cF5ndjQw9Zbr3ajVnd2+XyiX85gAetx1Q==}
+ '@zip.js/zip.js@2.7.53':
+ resolution: {integrity: sha512-G6Bl5wN9EXXVaTUIox71vIX5Z454zEBe+akKpV4m1tUboIctT5h7ID3QXCJd/Lfy2rSvmkTmZIucf1jGRR4f5A==}
engines: {bun: '>=0.7.0', deno: '>=1.0.0', node: '>=16.5.0'}
'@zkochan/js-yaml@0.0.7':
@@ -4130,10 +3641,6 @@ packages:
resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==}
engines: {node: '>=0.4.0'}
- acorn-walk@8.3.3:
- resolution: {integrity: sha512-MxXdReSRhGO7VlFe1bRG/oI7/mdLV9B9JJT0N8vZOhF7gFRR5l3M8W9G8JxmKV+JC5mGqJ0QvqfSOLsCPa4nUw==}
- engines: {node: '>=0.4.0'}
-
acorn-walk@8.3.4:
resolution: {integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==}
engines: {node: '>=0.4.0'}
@@ -4143,11 +3650,6 @@ packages:
engines: {node: '>=0.4.0'}
hasBin: true
- acorn@8.12.1:
- resolution: {integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==}
- engines: {node: '>=0.4.0'}
- hasBin: true
-
acorn@8.14.0:
resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==}
engines: {node: '>=0.4.0'}
@@ -4207,6 +3709,9 @@ packages:
ajv@8.17.1:
resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==}
+ alien-signals@0.2.0:
+ resolution: {integrity: sha512-StlonZhBBrsPPwrDjiPAiVTf/rolxffLxVPT60Qv/t88BZ81BvUVzHgGqEFvJ1ii8HXtm1+zU2Icr59tfWEcag==}
+
ansi-align@3.0.1:
resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==}
@@ -4247,8 +3752,8 @@ packages:
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
engines: {node: '>=8'}
- ansi-regex@6.0.1:
- resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==}
+ ansi-regex@6.1.0:
+ resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==}
engines: {node: '>=12'}
ansi-styles@2.2.1:
@@ -4309,9 +3814,6 @@ packages:
engines: {node: '>=10'}
deprecated: This package is no longer supported.
- arg@4.1.3:
- resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==}
-
arg@5.0.2:
resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
@@ -4321,9 +3823,6 @@ packages:
argparse@2.0.1:
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
- aria-query@5.1.3:
- resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==}
-
aria-query@5.3.2:
resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==}
engines: {node: '>= 0.4'}
@@ -4406,8 +3905,8 @@ packages:
resolution: {integrity: sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==}
engines: {node: '>=0.10.0'}
- ast-kit@1.2.1:
- resolution: {integrity: sha512-h31wotR7rkFLrlmGPn0kGqOZ/n5EQFvp7dBs400chpHDhHc8BK3gpvyHDluRujuGgeoTAv3dSIMz9BI3JxAWyQ==}
+ ast-kit@1.3.0:
+ resolution: {integrity: sha512-ORycPY6qYSrAGMnSk1tlqy/Y0rFGk/WIYP/H6io0A+jXK2Jp3Il7h8vjfwaLvZUwanjiLwBeE5h3A9M+eQqeNw==}
engines: {node: '>=16.14.0'}
ast-types-flow@0.0.8:
@@ -4428,8 +3927,8 @@ packages:
async-sema@3.1.1:
resolution: {integrity: sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==}
- async@3.2.5:
- resolution: {integrity: sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==}
+ async@3.2.6:
+ resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==}
asynckit@0.4.0:
resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
@@ -4439,6 +3938,9 @@ packages:
engines: {node: '>= 4.5.0'}
hasBin: true
+ atomically@2.0.3:
+ resolution: {integrity: sha512-kU6FmrwZ3Lx7/7y3hPS5QnbJfaohcIul5fGqf7ok+4KklIEk9tJ0C2IQPdacSbVUWv6zVHXEBWoWd6NrVMT7Cw==}
+
autoprefixer@10.4.18:
resolution: {integrity: sha512-1DKbDfsr6KUElM6wg+0zRNkB/Q7WcKYAaK+pzXn+Xqmszm/5Xa9coeNdtP88Vi+dPzZnMjhge8GIV49ZQkDa+g==}
engines: {node: ^10 || ^12 || >=14}
@@ -4457,8 +3959,8 @@ packages:
resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==}
engines: {node: '>= 0.4'}
- axe-core@4.10.0:
- resolution: {integrity: sha512-Mr2ZakwQ7XUAjp7pAwQWRhhK8mQQ6JAaNWSjmjxil0R8BPioMtQsTLOolGYkji1rcL++3dCqZA3zWqpT+9Ew6g==}
+ axe-core@4.10.2:
+ resolution: {integrity: sha512-RE3mdQ7P3FRSe7eqCWoeQ/Z9QXrtniSjp1wUjt5nRC3WIpz5rSCve6o3fsZ2aCpJtrZjSZgjwXAoTO5k4tEI0w==}
engines: {node: '>=4'}
axios@1.7.7:
@@ -4477,12 +3979,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- babel-jest@27.5.1:
- resolution: {integrity: sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
- peerDependencies:
- '@babel/core': ^7.8.0
-
babel-jest@29.7.0:
resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -4504,10 +4000,6 @@ packages:
resolution: {integrity: sha512-PO9t0697lNTmcEHH69mdtYiOIkkOlj9fySqfO3K1eCcdISevLAE0xY59VLLUj0SoiPiTX/JU2CYFpILydUa5Lw==}
engines: {node: '>= 10.14.2'}
- babel-plugin-jest-hoist@27.5.1:
- resolution: {integrity: sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
-
babel-plugin-jest-hoist@29.6.3:
resolution: {integrity: sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -4527,8 +4019,8 @@ packages:
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- babel-preset-current-node-syntax@1.0.1:
- resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==}
+ babel-preset-current-node-syntax@1.1.0:
+ resolution: {integrity: sha512-ldYss8SbBlWva1bs28q78Ju5Zq1F+8BrqBZZ0VFhLBvhh6lCpC2o3gDJi/5DRLs9FgYZCnmPYIVFU4lRXCkyUw==}
peerDependencies:
'@babel/core': ^7.0.0
@@ -4538,12 +4030,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- babel-preset-jest@27.5.1:
- resolution: {integrity: sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
- peerDependencies:
- '@babel/core': ^7.0.0
-
babel-preset-jest@29.6.3:
resolution: {integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -4565,8 +4051,8 @@ packages:
bare-path@2.1.3:
resolution: {integrity: sha512-lh/eITfU8hrj9Ru5quUp0Io1kJWIk1bTjzo7JH1P5dWmQ2EL4hFUlfI8FonAhSlgIfhn63p84CDY/x+PisgcXA==}
- bare-stream@2.3.0:
- resolution: {integrity: sha512-pVRWciewGUeCyKEuRxwv06M079r+fRjAQjBEK2P6OYGrO43O+Z0LrPZZEjlc4mB6C2RpZ9AxJ1s7NLEtOHO6eA==}
+ bare-stream@2.3.2:
+ resolution: {integrity: sha512-EFZHSIBkDgSHIwj2l2QZfP4U5OcD4xFAOwhSb/vlr9PIqyGJGvB/nfClJbcnh3EY4jtPE4zsb5ztae96bVF79A==}
base64-js@1.5.1:
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
@@ -4615,9 +4101,9 @@ packages:
boolbase@1.0.0:
resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
- boxen@7.1.1:
- resolution: {integrity: sha512-2hCgjEmP8YLWQ130n2FerGv7rYpfBmnmp9Uy2Le1vge6X3gZIfSmEzP5QTDElFxcvVcXlEn8Aq6MU/PZygIOog==}
- engines: {node: '>=14.16'}
+ boxen@8.0.1:
+ resolution: {integrity: sha512-F3PH5k5juxom4xktynS7MoFY+NUWH5LC4CnH11YB8NPew+HLpmBLCybSAEyb2F+4pRXhuhWqFesoQd6DAyc2hw==}
+ engines: {node: '>=18'}
brace-expansion@1.1.11:
resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
@@ -4639,11 +4125,6 @@ packages:
browser-stdout@1.3.1:
resolution: {integrity: sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==}
- browserslist@4.24.0:
- resolution: {integrity: sha512-Rmb62sR1Zpjql25eSanFGEhAxcFwfA1K0GuQcLoaJBAcENegrQut3hYdhXFF1obQfiDyqIW/cLM5HSJ/9k884A==}
- engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
- hasBin: true
-
browserslist@4.24.2:
resolution: {integrity: sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
@@ -4696,6 +4177,14 @@ packages:
magicast:
optional: true
+ c12@2.0.1:
+ resolution: {integrity: sha512-Z4JgsKXHG37C6PYUtIxCfLJZvo6FyhHJoClwwb9ftUkLpPSkuYqn6Tr+vnaN8hymm0kIbcg6Ey3kv/Q71k5w/A==}
+ peerDependencies:
+ magicast: ^0.3.5
+ peerDependenciesMeta:
+ magicast:
+ optional: true
+
cac@6.7.14:
resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
engines: {node: '>=8'}
@@ -4712,14 +4201,6 @@ packages:
resolution: {integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==}
engines: {node: '>=0.10.0'}
- cacheable-lookup@7.0.0:
- resolution: {integrity: sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w==}
- engines: {node: '>=14.16'}
-
- cacheable-request@10.2.14:
- resolution: {integrity: sha512-zkDT5WAF4hSSoUgyfg5tFIxz8XQK+25W/TLVojJTMKBaxevLBBtLxgqguAuVQB8PVW79FVjHcU+GJ9tVbDZ9mQ==}
- engines: {node: '>=14.16'}
-
call-bind@1.0.7:
resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==}
engines: {node: '>= 0.4'}
@@ -4744,16 +4225,13 @@ packages:
resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
engines: {node: '>=10'}
- camelcase@7.0.1:
- resolution: {integrity: sha512-xlx1yCK2Oc1APsPXDL2LdlNP6+uu8OCDdhOBSVT279M/S+y75O30C2VuD8T2ogdePBBl7PfPF4504tnLgX3zfw==}
- engines: {node: '>=14.16'}
+ camelcase@8.0.0:
+ resolution: {integrity: sha512-8WB3Jcas3swSvjIeA2yvCJ+Miyz5l1ZmB6HFb9R1317dt9LCQoswg/BGrmAmkWVEszSrrg4RwmO46qIm2OEnSA==}
+ engines: {node: '>=16'}
caniuse-api@3.0.0:
resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
- caniuse-lite@1.0.30001667:
- resolution: {integrity: sha512-7LTwJjcRkzKFmtqGsibMeuXmvFDfZq/nzIjnmgCGzKKRVzjD72selLDK1oPF/Oxzmt4fNcPvTDvGqSDG4tCALw==}
-
caniuse-lite@1.0.30001677:
resolution: {integrity: sha512-fmfjsOlJUpMWu+mAAtZZZHz7UEwsUxIIvu1TJfO1HqFQvB/B+ii0xr9B5HpbZY/mC4XZ8SvjHJqtAY6pDPQEog==}
@@ -4789,6 +4267,9 @@ packages:
resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==}
engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
+ change-case@5.4.4:
+ resolution: {integrity: sha512-HRQyTk2/YPEkt9TnUPbOpr64Uw3KOicFWPVBb+xiHvd6eBx/qPr9xqfBFDT8P2vWsvvz4jbEkfDe71W3VyNu2w==}
+
char-regex@1.0.2:
resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==}
engines: {node: '>=10'}
@@ -4840,8 +4321,8 @@ packages:
cjs-module-lexer@0.6.0:
resolution: {integrity: sha512-uc2Vix1frTfnuzxxu1Hp4ktSvM3QaI4oXl4ZUqL1wjTu/BGki9TrCWoqLTg/drR1KwAEarXuRFCG2Svr1GxPFw==}
- cjs-module-lexer@1.3.1:
- resolution: {integrity: sha512-a3KdPAANPbNE4ZUv9h6LckSl9zLsYOP4MBmhIPkRaeyybt+r4UghLvq+xw/YwUcC1gqylCkL4rdVs3Lwupjm4Q==}
+ cjs-module-lexer@1.4.1:
+ resolution: {integrity: sha512-cuSVIHi9/9E/+821Qjdvngor+xpnlwnuwIyZOaLmHBVdXL+gP+I6QQB9VkO7RI77YIcTV+S1W9AreJ5eN63JBA==}
class-utils@0.3.6:
resolution: {integrity: sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==}
@@ -4939,8 +4420,8 @@ packages:
resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==}
engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'}
- code-block-writer@13.0.1:
- resolution: {integrity: sha512-c5or4P6erEA69TxaxTNcHUNcIn+oyxSRTOWV+pSYF+z4epXqNvwvJ70XPGjPNgue83oAFAPBRQYwpAJ/Hpe/Sg==}
+ code-block-writer@13.0.3:
+ resolution: {integrity: sha512-Oofo0pq3IKnsFtuHqSF7TqBfr71aeyZDVJ0HpmqB7FBM2qEigL0iPONSCZSO9pE9dZTAxANe5XHG9Uy0YMv8cg==}
code-point-at@1.1.0:
resolution: {integrity: sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==}
@@ -4973,6 +4454,9 @@ packages:
colord@2.9.3:
resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==}
+ colorette@1.4.0:
+ resolution: {integrity: sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==}
+
colorette@2.0.20:
resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==}
@@ -5043,15 +4527,15 @@ packages:
resolution: {integrity: sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==}
engines: {'0': node >= 6.0}
- confbox@0.1.7:
- resolution: {integrity: sha512-uJcB/FKZtBMCJpK8MQji6bJHgu1tixKPxRLeGkNzBoOZzpnZUJm0jm2/sBDWcuBx1dYgxV4JU+g5hmNxCyAmdA==}
+ confbox@0.1.8:
+ resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==}
config-chain@1.1.13:
resolution: {integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==}
- configstore@6.0.0:
- resolution: {integrity: sha512-cD31W1v3GqUlQvbBCGcXmd2Nj9SvLDOP1oQ0YFuLETufzSPaKp11rYBsSOm7rCsW3OnIRAFM3OxRhceaXNYHkA==}
- engines: {node: '>=12'}
+ configstore@7.0.0:
+ resolution: {integrity: sha512-yk7/5PN5im4qwz0WFZW3PXnzHgPu9mX29Y8uZ3aefe2lBPC1FYttWZRcaW9fKkT0pBCJyuQ2HfbmPVaODi9jcQ==}
+ engines: {node: '>=18'}
connect-history-api-fallback@2.0.0:
resolution: {integrity: sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==}
@@ -5180,12 +4664,12 @@ packages:
critters@0.0.22:
resolution: {integrity: sha512-NU7DEcQZM2Dy8XTKFHxtdnIM/drE312j2T4PCVaSUcS0oBeyT/NImpRw/Ap0zOr/1SE7SgPK9tGPg1WK/sVakw==}
- croner@8.1.2:
- resolution: {integrity: sha512-ypfPFcAXHuAZRCzo3vJL6ltENzniTjwe/qsLleH1V2/7SRDjgvRQyrLmumFTLmjFax4IuSxfGXEn79fozXcJog==}
+ croner@9.0.0:
+ resolution: {integrity: sha512-onMB0OkDjkXunhdW9htFjEhqrD54+M94i6ackoUkjHKbRnXdyEyKRelp4nJ1kAz32+s27jP1FsebpJCVl0BsvA==}
engines: {node: '>=18.0'}
- cronstrue@2.50.0:
- resolution: {integrity: sha512-ULYhWIonJzlScCCQrPUG5uMXzXxSixty4djud9SS37DoNxDdkeRocxzHuAo4ImRBUK+mAuU5X9TSwEDccnnuPg==}
+ cronstrue@2.51.0:
+ resolution: {integrity: sha512-7EG9VaZZ5SRbZ7m25dmP6xaS0qe9ay6wywMskFOU/lMDKa+3gZr2oeT5OUfXwRP/Bcj8wxdYJ65AHU70CI3tsw==}
hasBin: true
cross-spawn@6.0.5:
@@ -5196,21 +4680,9 @@ packages:
resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
engines: {node: '>= 8'}
- crossws@0.2.4:
- resolution: {integrity: sha512-DAxroI2uSOgUKLz00NX6A8U/8EE3SZHmIND+10jkVSaypvyt57J5JEOxAQOL6lQxyzi/wZbTIwssU1uy69h5Vg==}
- peerDependencies:
- uWebSockets.js: '*'
- peerDependenciesMeta:
- uWebSockets.js:
- optional: true
-
crossws@0.3.1:
resolution: {integrity: sha512-HsZgeVYaG+b5zA+9PbIPGq4+J/CJynJuearykPsXx4V/eMhyQ5EDVg3Ak2FBZtVXCiOLu/U7IiwDHTr9MA+IKw==}
- crypto-random-string@4.0.0:
- resolution: {integrity: sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==}
- engines: {node: '>=12'}
-
css-declaration-sorter@7.2.0:
resolution: {integrity: sha512-h70rUM+3PNFuaBDTLe8wF/cdWu+dOZmb7pJt8Z2sedYbAcQVQV/tEchueg3GWxwqS0cxtbxmaHEdkNACqcvsow==}
engines: {node: ^14 || ^16 || >=18}
@@ -5334,19 +4806,25 @@ packages:
dateformat@3.0.3:
resolution: {integrity: sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==}
- db0@0.1.4:
- resolution: {integrity: sha512-Ft6eCwONYxlwLjBXSJxw0t0RYtA5gW9mq8JfBXn9TtC0nDPlqePAhpv9v4g9aONBi6JI1OXHTKKkUYGd+BOrCA==}
+ db0@0.2.1:
+ resolution: {integrity: sha512-BWSFmLaCkfyqbSEZBQINMVNjCVfrogi7GQ2RSy1tmtfK9OXlsup6lUMwLsqSD7FbAjD04eWFdXowSHHUp6SE/Q==}
peerDependencies:
- '@libsql/client': ^0.5.2
- better-sqlite3: ^9.4.3
- drizzle-orm: ^0.29.4
+ '@electric-sql/pglite': '*'
+ '@libsql/client': '*'
+ better-sqlite3: '*'
+ drizzle-orm: '*'
+ mysql2: '*'
peerDependenciesMeta:
+ '@electric-sql/pglite':
+ optional: true
'@libsql/client':
optional: true
better-sqlite3:
optional: true
drizzle-orm:
optional: true
+ mysql2:
+ optional: true
de-indent@1.0.2:
resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==}
@@ -5367,15 +4845,6 @@ packages:
supports-color:
optional: true
- debug@4.3.6:
- resolution: {integrity: sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==}
- engines: {node: '>=6.0'}
- peerDependencies:
- supports-color: '*'
- peerDependenciesMeta:
- supports-color:
- optional: true
-
debug@4.3.7:
resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==}
engines: {node: '>=6.0'}
@@ -5408,13 +4877,6 @@ packages:
resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==}
engines: {node: '>=0.10'}
- decompress-response@6.0.0:
- resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==}
- engines: {node: '>=10'}
-
- dedent@0.7.0:
- resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==}
-
dedent@1.5.3:
resolution: {integrity: sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==}
peerDependencies:
@@ -5427,10 +4889,6 @@ packages:
resolution: {integrity: sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==}
engines: {node: '>=6'}
- deep-equal@2.2.3:
- resolution: {integrity: sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==}
- engines: {node: '>= 0.4'}
-
deep-extend@0.6.0:
resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==}
engines: {node: '>=4.0.0'}
@@ -5461,10 +4919,6 @@ packages:
defaults@1.0.4:
resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==}
- defer-to-connect@2.0.1:
- resolution: {integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==}
- engines: {node: '>=10'}
-
define-data-property@1.1.4:
resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==}
engines: {node: '>= 0.4'}
@@ -5563,18 +5017,10 @@ packages:
resolution: {integrity: sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==}
engines: {node: '>= 10.14.2'}
- diff-sequences@27.5.1:
- resolution: {integrity: sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
-
diff-sequences@29.6.3:
resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- diff@4.0.2:
- resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==}
- engines: {node: '>=0.3.1'}
-
diff@5.2.0:
resolution: {integrity: sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==}
engines: {node: '>=0.3.1'}
@@ -5629,13 +5075,9 @@ packages:
resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==}
engines: {node: '>=8'}
- dot-prop@6.0.1:
- resolution: {integrity: sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA==}
- engines: {node: '>=10'}
-
- dot-prop@8.0.2:
- resolution: {integrity: sha512-xaBe6ZT4DHPkg0k4Ytbvn5xoxgpG0jOS1dYxSOwAHPuNLjP3/OzN0gH55SrLqpx8cBfSaVt91lXYkApjb+nYdQ==}
- engines: {node: '>=16'}
+ dot-prop@9.0.0:
+ resolution: {integrity: sha512-1gxPBJpI/pcjQhKgIU91II6Wkay+dLcN3M6rf2uwP8hRur3HtQXjVrdAK3sjC0piaEuxzMwjXChcETiJl47lAQ==}
+ engines: {node: '>=18'}
dotenv-expand@11.0.6:
resolution: {integrity: sha512-8NHi73otpWsZGBSZwwknTXS5pqMOrk9+Ssrna8xCaxkzEpU9OTf9R5ArQGVw03//Zmk9MOwLPng9WwndvpAJ5g==}
@@ -5670,9 +5112,6 @@ packages:
engines: {node: '>=0.10.0'}
hasBin: true
- electron-to-chromium@1.5.35:
- resolution: {integrity: sha512-hOSRInrIDm0Brzp4IHW2F/VM+638qOL2CzE0DgpnGzKW27C95IqqeqgKz/hxHGnvPxvQGpHUGD5qRVC9EZY2+A==}
-
electron-to-chromium@1.5.52:
resolution: {integrity: sha512-xtoijJTZ+qeucLBDNztDOuQBE1ksqjvNjvqFoST3nGC7fSpqJ+X6BdTBaY5BHG+IhWWmpc6b/KfpeuEDupEPOQ==}
@@ -5688,9 +5127,8 @@ packages:
resolution: {integrity: sha512-A8OG5SR/ij3SsJdWDJdkkSYUjQdCUx6APQXem0SaEePBSRg4eymGYwBkKo1Y6DU+af/Jn2dBQqDBvjnr9Vi8nQ==}
engines: {node: '>=10'}
- emittery@0.8.1:
- resolution: {integrity: sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==}
- engines: {node: '>=10'}
+ emoji-regex@10.4.0:
+ resolution: {integrity: sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==}
emoji-regex@8.0.0:
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
@@ -5768,11 +5206,8 @@ packages:
resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
engines: {node: '>= 0.4'}
- es-get-iterator@1.1.3:
- resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==}
-
- es-iterator-helpers@1.1.0:
- resolution: {integrity: sha512-/SurEfycdyssORP/E+bj4sEu1CWw4EmLDsHynHwSXQ7utgbrMRWW195pTrCjFgFCddf/UkYm3oqKPRq5i8bJbw==}
+ es-iterator-helpers@1.2.0:
+ resolution: {integrity: sha512-tpxqxncxnpw3c93u8n3VOzACmRFoVmWJqbWXvX/JfKbkhBw1oslgPrUfeSt2psuqyEJFD6N/9lg5i7bsKpoq+Q==}
engines: {node: '>= 0.4'}
es-module-lexer@1.5.4:
@@ -5813,11 +5248,6 @@ packages:
engines: {node: '>=12'}
hasBin: true
- esbuild@0.20.2:
- resolution: {integrity: sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==}
- engines: {node: '>=12'}
- hasBin: true
-
esbuild@0.21.5:
resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==}
engines: {node: '>=12'}
@@ -5828,9 +5258,10 @@ packages:
engines: {node: '>=18'}
hasBin: true
- escalade@3.1.2:
- resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==}
- engines: {node: '>=6'}
+ esbuild@0.24.0:
+ resolution: {integrity: sha512-FuLPevChGDshgSicjisSooU0cemp/sGXR841D5LHMB7mTVOmsEHcAxaH3irL53+8YDIeVNQEySh4DaYU/iuPqQ==}
+ engines: {node: '>=18'}
+ hasBin: true
escalade@3.2.0:
resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
@@ -5920,8 +5351,8 @@ packages:
'@typescript-eslint/parser':
optional: true
- eslint-plugin-jsx-a11y@6.10.0:
- resolution: {integrity: sha512-ySOHvXX8eSN6zz8Bywacm7CvGNhUtdjvqfQDVe6020TUK34Cywkw7m0KsCCk1Qtm9G1FayfTN1/7mMYnYO2Bhg==}
+ eslint-plugin-jsx-a11y@6.10.2:
+ resolution: {integrity: sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q==}
engines: {node: '>=4.0'}
peerDependencies:
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9
@@ -5932,13 +5363,13 @@ packages:
peerDependencies:
eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
- eslint-plugin-react-refresh@0.4.12:
- resolution: {integrity: sha512-9neVjoGv20FwYtCP6CB1dzR1vr57ZDNOXst21wd2xJ/cTlM2xLq0GWVlSNTdMn/4BtP6cHYBMCSp1wFBJ9jBsg==}
+ eslint-plugin-react-refresh@0.4.14:
+ resolution: {integrity: sha512-aXvzCTK7ZBv1e7fahFuR3Z/fyQQSIQ711yPgYRj+Oj64tyTgO4iQIDmYXDBqvSWQ/FA4OSCsXOStlF+noU0/NA==}
peerDependencies:
eslint: '>=7'
- eslint-plugin-react@7.37.1:
- resolution: {integrity: sha512-xwTnwDqzbDRA8uJ7BMxPs/EXRB3i8ZfnOIp8BsxEQkT0nHPp+WWceqGgo6rKb9ctNi8GJLDT4Go5HAWELa/WMg==}
+ eslint-plugin-react@7.37.2:
+ resolution: {integrity: sha512-EsTAnj9fLVr/GZleBLFbj/sSuXeWmp1eXIN60ceYnZveqEaUCyW4X+Vh4WTdUhCkW4xutXYqTXCUSyqD4rB75w==}
engines: {node: '>=4'}
peerDependencies:
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7
@@ -6038,8 +5469,8 @@ packages:
resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==}
engines: {node: '>=16.17'}
- execa@9.4.0:
- resolution: {integrity: sha512-yKHlle2YGxZE842MERVIplWwNH5VYmqqcPFgtnlU//K8gxuFFXu0pwd/CrfXTumFpeEiufsP7+opT/bPJa1yVw==}
+ execa@9.5.1:
+ resolution: {integrity: sha512-QY5PPtSonnGwhhHDNI7+3RvY285c7iuJFFB+lU+oEzMY/gEGJ808owqJsrr8Otd1E/x07po1LkUBmdAc5duPAg==}
engines: {node: ^18.19.0 || >=20.5.0}
exit-hook@4.0.0:
@@ -6054,6 +5485,10 @@ packages:
resolution: {integrity: sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==}
engines: {node: '>=0.10.0'}
+ expect-type@1.1.0:
+ resolution: {integrity: sha512-bFi65yM+xZgk+u/KRIpekdSYkTB5W1pEf0Lt8Q8Msh7b+eQ7LXVtIB1Bkm4fvclDEL1b2CZkMhv2mOeF8tMdkA==}
+ engines: {node: '>=12.0.0'}
+
expect-webdriverio@5.0.3:
resolution: {integrity: sha512-0RHsFZX1856qCWZsXcvacFZpdZc7UAVD9wAglzf3KMWO1AoXt5EorjsNp1H9StGysxhJuVXJxRWKeXnD4LKtjQ==}
engines: {node: '>=18 || >=20 || >=22'}
@@ -6066,10 +5501,6 @@ packages:
resolution: {integrity: sha512-9/hlOBkQl2l/PLHJx6JjoDF6xPKcJEsUlWKb23rKE7KzeDqUZKXKNMW27KIue5JMdBV9HgmoJPcc8HtO85t9IA==}
engines: {node: '>= 10.14.2'}
- expect@27.5.1:
- resolution: {integrity: sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
-
expect@29.7.0:
resolution: {integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -6147,8 +5578,8 @@ packages:
fd-slicer@1.1.0:
resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==}
- fdir@6.4.0:
- resolution: {integrity: sha512-3oB133prH1o4j/L5lLW7uOCF1PlD+/It2L0eL/iAqWMB91RBbqTewABqxhj0ibBd90EEmWZq7ntIWzVaWcXTGQ==}
+ fdir@6.4.2:
+ resolution: {integrity: sha512-KnhMXsKSPZlAhp7+IjUkRZKPb4fUyccpDrdFXbi4QL1qkmFh9kVY09Yox+n4MaOb3lHZ1Tv829C3oaaXoMYPDQ==}
peerDependencies:
picomatch: ^3 || ^4
peerDependenciesMeta:
@@ -6248,24 +5679,12 @@ packages:
resolution: {integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==}
engines: {node: '>=0.10.0'}
- foreground-child@3.2.1:
- resolution: {integrity: sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA==}
- engines: {node: '>=14'}
-
foreground-child@3.3.0:
resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==}
engines: {node: '>=14'}
- form-data-encoder@2.1.4:
- resolution: {integrity: sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw==}
- engines: {node: '>= 14.17'}
-
- form-data@3.0.1:
- resolution: {integrity: sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==}
- engines: {node: '>= 6'}
-
- form-data@4.0.0:
- resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==}
+ form-data@3.0.2:
+ resolution: {integrity: sha512-sJe+TQb2vIaIyO783qN6BlMYWMw3WBOHA1Ay2qxsnjuafEOQFJ2JakedOQirT6D5XPRxDvS7AHYyem9fTpb4LQ==}
engines: {node: '>= 6'}
form-data@4.0.1:
@@ -6339,10 +5758,6 @@ packages:
engines: {node: '>=10'}
deprecated: This package is no longer supported.
- gaze@1.1.3:
- resolution: {integrity: sha512-BRdNm8hbWzFzWHERTrejLqwHDfS4GibPoq5wjTPIoJHoBtKGPg3xAFfxmM+9ztbXelxcf2hwQcaz1PtmFeue8g==}
- engines: {node: '>= 4.0.0'}
-
geckodriver@4.5.1:
resolution: {integrity: sha512-lGCRqPMuzbRNDWJOQcUqhNqPvNsIFu6yzXF8J/6K3WCYFd2r5ckbeF7h1cxsnjA7YLSEiWzERCt6/gjZ3tW0ug==}
engines: {node: ^16.13 || >=18 || >=20}
@@ -6356,6 +5771,10 @@ packages:
resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
engines: {node: 6.* || 8.* || >= 10.*}
+ get-east-asian-width@1.3.0:
+ resolution: {integrity: sha512-vpeMIQKxczTD/0s2CdEWHcb0eeJe6TFjxb+J5xgX7hScxqrGuyjmv4c1D4A/gelKfyox0gJJwIHF+fLjeaM8kQ==}
+ engines: {node: '>=18'}
+
get-intrinsic@1.2.4:
resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==}
engines: {node: '>= 0.4'}
@@ -6472,11 +5891,6 @@ packages:
engines: {node: '>=16 || 14 >=14.17'}
hasBin: true
- glob@10.4.2:
- resolution: {integrity: sha512-GwMlUF6PkPo3Gk21UxkCohOv0PLcIXVtKyLlpEI28R/cO/4eNOdmLk3CMW1wROV/WR/EsZOWAfBbBOqYvs88/w==}
- engines: {node: '>=16 || 14 >=14.18'}
- hasBin: true
-
glob@10.4.5:
resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==}
hasBin: true
@@ -6486,10 +5900,6 @@ packages:
engines: {node: 20 || >=22}
hasBin: true
- glob@7.1.7:
- resolution: {integrity: sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==}
- deprecated: Glob versions prior to v9 are no longer supported
-
glob@7.2.3:
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
deprecated: Glob versions prior to v9 are no longer supported
@@ -6507,10 +5917,6 @@ packages:
resolution: {integrity: sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q==}
engines: {node: '>=18'}
- global-dirs@3.0.1:
- resolution: {integrity: sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==}
- engines: {node: '>=10'}
-
globals@11.12.0:
resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
engines: {node: '>=4'}
@@ -6535,17 +5941,9 @@ packages:
resolution: {integrity: sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==}
engines: {node: '>=18'}
- globule@1.3.4:
- resolution: {integrity: sha512-OPTIfhMBh7JbBYDpa5b+Q5ptmMWKwcNcFSR/0c6t8V4f3ZAVBEsKNY37QdVqmLRYSMhOUGYrY0QhSoEpzGr/Eg==}
- engines: {node: '>= 0.10'}
-
gopd@1.0.1:
resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
- got@12.6.1:
- resolution: {integrity: sha512-mThBblvlAF1d4O5oqyvN+ZxLAYwIJK7bpMxgYqPD9okW0C3qm5FFn7k811QrcuEBwaogR3ngOFoCfs6mRv7teQ==}
- engines: {node: '>=14.16'}
-
graceful-fs@4.2.10:
resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==}
@@ -6663,9 +6061,6 @@ packages:
html-dom-parser@5.0.10:
resolution: {integrity: sha512-GwArYL3V3V8yU/mLKoFF7HlLBv80BZ2Ey1BzfVNRpAci0cEKhFHI/Qh8o8oyt3qlAMLlK250wsxLdYX4viedvg==}
- html-dom-parser@5.0.9:
- resolution: {integrity: sha512-QGeoFYwgQ582EDvrBx0+ejIz76/LuQcwwkmSR4ueKncjl2yWbciA45Kfz/LrHvWR3CgtKnxKFkr4Mpq2Sh1QNg==}
-
html-encoding-sniffer@2.0.1:
resolution: {integrity: sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==}
engines: {node: '>=10'}
@@ -6680,15 +6075,6 @@ packages:
html-escaper@2.0.2:
resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==}
- html-react-parser@5.1.12:
- resolution: {integrity: sha512-OPv8fsIvxxv/+pLj9mYvyNu8PE5dPMowTRdd5VHpcoZpXlstp8eYCxQ5rzqAE5Tb75rhdiWUXnPltfb62zCVjg==}
- peerDependencies:
- '@types/react': 0.14 || 15 || 16 || 17 || 18
- react: 0.14 || 15 || 16 || 17 || 18
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
html-react-parser@5.1.18:
resolution: {integrity: sha512-65BwC0zzrdeW96jB2FRr5f1ovBhRMpLPJNvwkY5kA8Ay5xdL9t/RH2/uUTM7p+cl5iM88i6dDk4LXtfMnRmaJQ==}
peerDependencies:
@@ -6740,8 +6126,8 @@ packages:
resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==}
engines: {node: '>= 14'}
- http-proxy-middleware@2.0.6:
- resolution: {integrity: sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==}
+ http-proxy-middleware@2.0.7:
+ resolution: {integrity: sha512-fgVY8AV7qU7z/MmXJ/rxwbrtQH4jBQ9m7kp3llF0liB7glmFeVZFBepQb32T3y8n8k2+AEYuMPCpinYW+/CuRA==}
engines: {node: '>=12.0.0'}
peerDependencies:
'@types/express': ^4.17.13
@@ -6757,10 +6143,6 @@ packages:
resolution: {integrity: sha512-S9wWkJ/VSY9/k4qcjG318bqJNruzE4HySUhFYknwmu6LBP97KLLfwNf+n4V1BHurvFNkSKLFnK/RsuUnRTf9Vw==}
engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'}
- http2-wrapper@2.2.1:
- resolution: {integrity: sha512-V5nVw1PAOgfI3Lmeaj2Exmeg7fenjhRUgz1lPSezy1CuhPYbgQtbQj4jZfEAEMlaL+vupsvhjqCyjzob0yxsmQ==}
- engines: {node: '>=10.19.0'}
-
https-proxy-agent@5.0.1:
resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==}
engines: {node: '>= 6'}
@@ -6820,14 +6202,14 @@ packages:
resolution: {integrity: sha512-VuuG0wCnjhnylG1ABXT3dAuIpTNDs/G8jlpmwXY03fXoXy/8ZK8/T+hMzt8L4WnrLCJgdybqgPagnF/f97cg3A==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- ignore@5.3.1:
- resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==}
- engines: {node: '>= 4'}
-
ignore@5.3.2:
resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
engines: {node: '>= 4'}
+ ignore@6.0.2:
+ resolution: {integrity: sha512-InwqeHHN2XpumIkMvpl/DCJVrAHgCsG5+cn1XlnLWGwtZBm8QJfSusItfrwx81CTp5agNZqpKU2J/ccC5nGT4A==}
+ engines: {node: '>= 4'}
+
image-meta@0.2.1:
resolution: {integrity: sha512-K6acvFaelNxx8wc2VjbIzXKDVB0Khs0QT35U6NkGfTdCmjLNcO2945m7RFNR9/RPVFm48hq7QPzK8uGH18HCGw==}
@@ -6855,11 +6237,16 @@ packages:
engines: {node: '>=8'}
hasBin: true
+ import-local@3.2.0:
+ resolution: {integrity: sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==}
+ engines: {node: '>=8'}
+ hasBin: true
+
import-meta-resolve@4.1.0:
resolution: {integrity: sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==}
- impound@0.1.0:
- resolution: {integrity: sha512-F9nJgOsDc3tysjN74edE0vGPEQrU7DAje6g5nNAL5Jc9Tv4JW3mH7XMGne+EaadTniDXLeUrVR21opkNfWO1zQ==}
+ impound@0.2.0:
+ resolution: {integrity: sha512-gXgeSyp9Hf7qG2/PLKmywHXyQf2xFrw+mJGpoj9DsAB9L7/MIKn+DeEx98UryWXdmbv8wUUPdcQof6qXnZoCGg==}
imurmurhash@0.1.4:
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
@@ -6897,10 +6284,6 @@ packages:
ini@1.3.8:
resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
- ini@2.0.0:
- resolution: {integrity: sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==}
- engines: {node: '>=10'}
-
ini@4.1.1:
resolution: {integrity: sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
@@ -6913,9 +6296,6 @@ packages:
resolution: {integrity: sha512-Zfeb5ol+H+eqJWHTaGca9BovufyGeIfr4zaaBorPmJBMrJ+KBnN+kQx2ZtXdsotUTgldHmHQV44xvUWOUA7E2w==}
engines: {node: ^16.14.0 || >=18.0.0}
- inline-style-parser@0.2.3:
- resolution: {integrity: sha512-qlD8YNDqyTKTyuITrDOffsl6Tdhv+UC4hcdAVuQsK4IMQ99nSgd1MIA/Q+jQYoh9r3hVUXhYh7urSRmXPkW04g==}
-
inline-style-parser@0.2.4:
resolution: {integrity: sha512-0aO8FkhNZlj/ZIbNi7Lxxr12obT7cL1moPfE4tg1LkX7LlLfC6DeX4l2ZEud1ukP9jNQyNnfzQVqwbwmAATY4Q==}
@@ -6942,8 +6322,8 @@ packages:
resolution: {integrity: sha512-vI2w4zl/mDluHt9YEQ/543VTCwPKWiHzKtm9dM2V0NdFcqEexDAjUHzO1oA60HRNaVifGXXM1tRRNluLVHa0Kg==}
engines: {node: '>=18'}
- inquirer@9.3.1:
- resolution: {integrity: sha512-A5IdVr1I04XqPlwrGgTJMKmzRg5ropqNpSeqo0vj1ZmluSCNSFaPZz4eazdPrhVcZfej7fCEYvD2NYa1KjkTJA==}
+ inquirer@9.3.7:
+ resolution: {integrity: sha512-LJKFHCSeIRq9hanN14IlOtPSTe3lNES7TYDTE2xxdAy1LS5rYphajK1qtwvj3YmQXvvk0U2Vbmcni8P9EIQW9w==}
engines: {node: '>=18'}
internal-slot@1.0.7:
@@ -6973,10 +6353,6 @@ packages:
resolution: {integrity: sha512-YBUanLI8Yoihw923YeFUS5fs0fF2f5TSFTNiYAAzhhDscDa3lEqYuz1pDOEP5KvX94I9ey3vsqjJcLVFVU+3QA==}
engines: {node: '>= 0.10'}
- is-arguments@1.1.1:
- resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==}
- engines: {node: '>= 0.4'}
-
is-array-buffer@3.0.4:
resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==}
engines: {node: '>= 0.4'}
@@ -7017,10 +6393,6 @@ packages:
resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==}
hasBin: true
- is-core-module@2.14.0:
- resolution: {integrity: sha512-a5dFJih5ZLYlRtDc0dZWP7RiKr6xIKzmn/oAYCDvdLThadVgyJwlaoQPmRtMSpz+rk0OGAgIu+TcM9HUF0fk1A==}
- engines: {node: '>= 0.4'}
-
is-core-module@2.15.1:
resolution: {integrity: sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==}
engines: {node: '>= 0.4'}
@@ -7094,8 +6466,8 @@ packages:
resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
engines: {node: '>=0.10.0'}
- is-in-ci@0.1.0:
- resolution: {integrity: sha512-d9PXLEY0v1iJ64xLiQMJ51J128EYHAaOR4yZqQi8aHGfw6KgifM3/Viw1oZZ1GCVmb3gBuyhLyHj0HgR2DhSXQ==}
+ is-in-ci@1.0.0:
+ resolution: {integrity: sha512-eUuAjybVTHMYWm/U+vBO1sY/JOCgoPCXRxzdju0K+K0BiGW0SChEL1MLC0PoCIR1OlPo5YAp8HuQoUlsWEICwg==}
engines: {node: '>=18'}
hasBin: true
@@ -7104,10 +6476,6 @@ packages:
engines: {node: '>=14.16'}
hasBin: true
- is-installed-globally@0.4.0:
- resolution: {integrity: sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==}
- engines: {node: '>=10'}
-
is-installed-globally@1.0.0:
resolution: {integrity: sha512-K55T22lfpQ63N4KEN57jZUAaAYqYHEe8veb/TycJRk9DdSCLLcovXz/mL6mOnhQaZsQGwPhuFopdQIlqGSEjiQ==}
engines: {node: '>=18'}
@@ -7332,8 +6700,8 @@ packages:
resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==}
engines: {node: '>=0.10.0'}
- issue-regex@4.1.0:
- resolution: {integrity: sha512-X3HBmm7+Th+l4/kMtqwcHHgELD0Lfl0Ina6S3+grr+mKmTxsrM84NAO1UuRPIxIbGLIl3TCEu45S1kdu21HYbQ==}
+ issue-regex@4.3.0:
+ resolution: {integrity: sha512-7731a/t2llyrk8Hdwl1x3LkhIFGzxHQGpJA7Ur9cIRViakQF2y25Lwhx8Ziy1B068+kBYUmYPBzw5uo3DdWrdQ==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
istanbul-lib-coverage@3.2.2:
@@ -7348,8 +6716,8 @@ packages:
resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==}
engines: {node: '>=8'}
- istanbul-lib-instrument@6.0.2:
- resolution: {integrity: sha512-1WUsZ9R1lA0HtBSohTkm39WTPlNKSJ5iFk7UwqXkBLoHQT+hfqPsfsTDVuZdKGaBwn7din9bS7SsnoAr943hvw==}
+ 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:
@@ -7372,10 +6740,6 @@ packages:
resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==}
engines: {node: '>=14'}
- jackspeak@3.4.0:
- resolution: {integrity: sha512-JVYhQnN59LVPFCEcVa2C3CrEKYacvjRfqIQl+h8oi91aLYQVWRYbxjPcv1bUiUy/kLmQaANrYfNMCO3kuEDHfw==}
- engines: {node: '>=14'}
-
jackspeak@3.4.3:
resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==}
@@ -7383,8 +6747,8 @@ packages:
resolution: {integrity: sha512-bZsjR/iRjl1Nk1UkjGpAzLNfQtzuijhn2g+pbZb98HQ1Gk8vM9hfbxeMBP+M2/UUdwj0RqGG3mlvk2MsAqwvEw==}
engines: {node: 20 || >=22}
- jake@10.9.1:
- resolution: {integrity: sha512-61btcOHNnLnsOdtLgA5efqQWjnSi/vow5HbI7HMdKKWqvrKR1bLK3BPlJn9gcSaP2ewuamUSMB5XEy76KUIS2w==}
+ jake@10.9.2:
+ resolution: {integrity: sha512-2P4SQ0HrLQ+fw6llpLnOaGAvN2Zu6778SJMrCUwns4fOoG9ayrTiZk3VV8sCPkVZF8ab0zksVpS8FDY5pRCNBA==}
engines: {node: '>=10'}
hasBin: true
@@ -7392,18 +6756,10 @@ packages:
resolution: {integrity: sha512-fDS7szLcY9sCtIip8Fjry9oGf3I2ht/QT21bAHm5Dmf0mD4X3ReNUf17y+bO6fR8WgbIZTlbyG1ak/53cbRzKQ==}
engines: {node: '>= 10.14.2'}
- jest-changed-files@27.5.1:
- resolution: {integrity: sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
-
jest-changed-files@29.7.0:
resolution: {integrity: sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- jest-circus@27.5.1:
- resolution: {integrity: sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
-
jest-circus@29.7.0:
resolution: {integrity: sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -7413,16 +6769,6 @@ packages:
engines: {node: '>= 10.14.2'}
hasBin: true
- jest-cli@27.5.1:
- resolution: {integrity: sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
- hasBin: true
- peerDependencies:
- node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
- peerDependenciesMeta:
- node-notifier:
- optional: true
-
jest-cli@29.7.0:
resolution: {integrity: sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -7442,15 +6788,6 @@ packages:
ts-node:
optional: true
- jest-config@27.5.1:
- resolution: {integrity: sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
- peerDependencies:
- ts-node: '>=9.0.0'
- peerDependenciesMeta:
- ts-node:
- optional: true
-
jest-config@29.7.0:
resolution: {integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -7467,10 +6804,6 @@ packages:
resolution: {integrity: sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==}
engines: {node: '>= 10.14.2'}
- jest-diff@27.5.1:
- resolution: {integrity: sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
-
jest-diff@29.7.0:
resolution: {integrity: sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -7479,10 +6812,6 @@ packages:
resolution: {integrity: sha512-RDZ4Iz3QbtRWycd8bUEPxQsTlYazfYn/h5R65Fc6gOfwozFhoImx+affzky/FFBuqISPTqjXomoIGJVKBWoo0w==}
engines: {node: '>= 10.14.2'}
- jest-docblock@27.5.1:
- resolution: {integrity: sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
-
jest-docblock@29.7.0:
resolution: {integrity: sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -7491,10 +6820,6 @@ packages:
resolution: {integrity: sha512-Mer/f0KaATbjl8MCJ+0GEpNdqmnVmDYqCTJYTvoo7rqmRiDllmp2AYN+06F93nXcY3ur9ShIjS+CO/uD+BbH4A==}
engines: {node: '>= 10.14.2'}
- jest-each@27.5.1:
- resolution: {integrity: sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
-
jest-each@29.7.0:
resolution: {integrity: sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -7503,10 +6828,6 @@ packages:
resolution: {integrity: sha512-jgPqCruTlt3Kwqg5/WVFyHIOJHsiAvhcp2qiR2QQstuG9yWox5+iHpU3ZrcBxW14T4fe5Z68jAfLRh7joCSP2Q==}
engines: {node: '>= 10.14.2'}
- jest-environment-jsdom@27.5.1:
- resolution: {integrity: sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
-
jest-environment-jsdom@29.7.0:
resolution: {integrity: sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -7520,10 +6841,6 @@ packages:
resolution: {integrity: sha512-zhtMio3Exty18dy8ee8eJ9kjnRyZC1N4C1Nt/VShN1apyXc8rWGtJ9lI7vqiWcyyXS4BVSEn9lxAM2D+07/Tag==}
engines: {node: '>= 10.14.2'}
- jest-environment-node@27.5.1:
- resolution: {integrity: sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
-
jest-environment-node@29.7.0:
resolution: {integrity: sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -7532,10 +6849,6 @@ packages:
resolution: {integrity: sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==}
engines: {node: '>= 10.14.2'}
- jest-get-type@27.5.1:
- resolution: {integrity: sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
-
jest-get-type@29.6.3:
resolution: {integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -7544,10 +6857,6 @@ packages:
resolution: {integrity: sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w==}
engines: {node: '>= 10.14.2'}
- jest-haste-map@27.5.1:
- resolution: {integrity: sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
-
jest-haste-map@29.7.0:
resolution: {integrity: sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -7556,18 +6865,10 @@ packages:
resolution: {integrity: sha512-kPKUrQtc8aYwBV7CqBg5pu+tmYXlvFlSFYn18ev4gPFtrRzB15N2gW/Roew3187q2w2eHuu0MU9TJz6w0/nPEg==}
engines: {node: '>= 10.14.2'}
- jest-jasmine2@27.5.1:
- resolution: {integrity: sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
-
jest-leak-detector@26.6.2:
resolution: {integrity: sha512-i4xlXpsVSMeKvg2cEKdfhh0H39qlJlP5Ex1yQxwF9ubahboQYMgTtz5oML35AVA3B4Eu+YsmwaiKVev9KCvLxg==}
engines: {node: '>= 10.14.2'}
- jest-leak-detector@27.5.1:
- resolution: {integrity: sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
-
jest-leak-detector@29.7.0:
resolution: {integrity: sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -7576,10 +6877,6 @@ packages:
resolution: {integrity: sha512-llnc8vQgYcNqDrqRDXWwMr9i7rS5XFiCwvh6DTP7Jqa2mqpcCBBlpCbn+trkG0KNhPu/h8rzyBkriOtBstvWhw==}
engines: {node: '>= 10.14.2'}
- jest-matcher-utils@27.5.1:
- resolution: {integrity: sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
-
jest-matcher-utils@29.7.0:
resolution: {integrity: sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -7588,10 +6885,6 @@ packages:
resolution: {integrity: sha512-rGiLePzQ3AzwUshu2+Rn+UMFk0pHN58sOG+IaJbk5Jxuqo3NYO1U2/MIR4S1sKgsoYSXSzdtSa0TgrmtUwEbmA==}
engines: {node: '>= 10.14.2'}
- jest-message-util@27.5.1:
- resolution: {integrity: sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
-
jest-message-util@29.7.0:
resolution: {integrity: sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -7600,10 +6893,6 @@ packages:
resolution: {integrity: sha512-YyFjePHHp1LzpzYcmgqkJ0nm0gg/lJx2aZFzFy1S6eUqNjXsOqTK10zNRff2dNfssgokjkG65OlWNcIlgd3zew==}
engines: {node: '>= 10.14.2'}
- jest-mock@27.5.1:
- resolution: {integrity: sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
-
jest-mock@29.7.0:
resolution: {integrity: sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -7632,10 +6921,6 @@ packages:
resolution: {integrity: sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A==}
engines: {node: '>= 10.14.2'}
- jest-regex-util@27.5.1:
- resolution: {integrity: sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
-
jest-regex-util@29.6.3:
resolution: {integrity: sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -7644,10 +6929,6 @@ packages:
resolution: {integrity: sha512-pVwUjJkxbhe4RY8QEWzN3vns2kqyuldKpxlxJlzEYfKSvY6/bMvxoFrYYzUO1Gx28yKWN37qyV7rIoIp2h8fTg==}
engines: {node: '>= 10.14.2'}
- jest-resolve-dependencies@27.5.1:
- resolution: {integrity: sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
-
jest-resolve-dependencies@29.7.0:
resolution: {integrity: sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -7656,10 +6937,6 @@ packages:
resolution: {integrity: sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==}
engines: {node: '>= 10.14.2'}
- jest-resolve@27.5.1:
- resolution: {integrity: sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
-
jest-resolve@29.7.0:
resolution: {integrity: sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -7668,10 +6945,6 @@ packages:
resolution: {integrity: sha512-atgKpRHnaA2OvByG/HpGA4g6CSPS/1LK0jK3gATJAoptC1ojltpmVlYC3TYgdmGp+GLuhzpH30Gvs36szSL2JQ==}
engines: {node: '>= 10.14.2'}
- jest-runner@27.5.1:
- resolution: {integrity: sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
-
jest-runner@29.7.0:
resolution: {integrity: sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -7681,10 +6954,6 @@ packages:
engines: {node: '>= 10.14.2'}
hasBin: true
- jest-runtime@27.5.1:
- resolution: {integrity: sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
-
jest-runtime@29.7.0:
resolution: {integrity: sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -7693,18 +6962,10 @@ packages:
resolution: {integrity: sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==}
engines: {node: '>= 10.14.2'}
- jest-serializer@27.5.1:
- resolution: {integrity: sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
-
jest-snapshot@26.6.2:
resolution: {integrity: sha512-OLhxz05EzUtsAmOMzuupt1lHYXCNib0ECyuZ/PZOx9TrZcC8vL0x+DUG3TL+GLX3yHG45e6YGjIm0XwDc3q3og==}
engines: {node: '>= 10.14.2'}
- jest-snapshot@27.5.1:
- resolution: {integrity: sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
-
jest-snapshot@29.7.0:
resolution: {integrity: sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -7713,10 +6974,6 @@ packages:
resolution: {integrity: sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==}
engines: {node: '>= 10.14.2'}
- jest-util@27.5.1:
- resolution: {integrity: sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
-
jest-util@29.7.0:
resolution: {integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -7725,10 +6982,6 @@ packages:
resolution: {integrity: sha512-NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ==}
engines: {node: '>= 10.14.2'}
- jest-validate@27.5.1:
- resolution: {integrity: sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
-
jest-validate@29.7.0:
resolution: {integrity: sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -7737,10 +6990,6 @@ packages:
resolution: {integrity: sha512-WKJob0P/Em2csiVthsI68p6aGKTIcsfjH9Gsx1f0A3Italz43e3ho0geSAVsmj09RWOELP1AZ/DXyJgOgDKxXQ==}
engines: {node: '>= 10.14.2'}
- jest-watcher@27.5.1:
- resolution: {integrity: sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
-
jest-watcher@29.7.0:
resolution: {integrity: sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -7757,16 +7006,6 @@ packages:
resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- jest@27.5.1:
- resolution: {integrity: sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
- hasBin: true
- peerDependencies:
- node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
- peerDependenciesMeta:
- node-notifier:
- optional: true
-
jest@29.7.0:
resolution: {integrity: sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -7781,13 +7020,17 @@ packages:
resolution: {integrity: sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==}
hasBin: true
- jiti@2.3.3:
- resolution: {integrity: sha512-EX4oNDwcXSivPrw2qKH2LB5PoFxEvgtv2JgwW0bU858HoLQ+kutSvjLMUqBd0PeJYEinLWhoI9Ol0eYMqj/wNQ==}
+ jiti@2.4.0:
+ resolution: {integrity: sha512-H5UpaUI+aHOqZXlYOaFP/8AzKsg+guWu+Pr3Y8i7+Y3zr1aXAvCvTAQ1RxSc6oVD8R8c7brgNtTVP91E7upH/g==}
hasBin: true
jju@1.4.0:
resolution: {integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==}
+ js-levenshtein@1.1.6:
+ resolution: {integrity: sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g==}
+ engines: {node: '>=0.10.0'}
+
js-tokens@4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
@@ -7931,8 +7174,8 @@ packages:
kolorist@1.8.0:
resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==}
- ky@1.4.0:
- resolution: {integrity: sha512-tPhhoGUiEiU/WXR4rt8klIoLdnTtyu+9jVKHd/wauEjYud32jyn63mzKWQweaQrHWxBQtYoVtdcEnYX1LosnFQ==}
+ ky@1.7.2:
+ resolution: {integrity: sha512-OzIvbHKKDpi60TnF9t7UUVAF1B4mcqc02z5PIvrm08Wyb+yOcz63GRvEuVxNT18a9E1SrNouhB4W2NNLeD7Ykg==}
engines: {node: '>=18'}
language-subtag-registry@0.3.23:
@@ -7942,9 +7185,9 @@ packages:
resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==}
engines: {node: '>=0.10'}
- latest-version@7.0.0:
- resolution: {integrity: sha512-KvNT4XqAMzdcL6ka6Tl3i2lYeFDgXNCuIX+xNx6ZMVR1dFq+idXd9FLKNMOIx0t9mJ9/HudyX4oZWXZQ0UJHeg==}
- engines: {node: '>=14.16'}
+ latest-version@9.0.0:
+ resolution: {integrity: sha512-7W0vV3rqv5tokqkBAFV1LbR7HPOWzXQDpDgEuib/aJ1jsZZx6x3c2mBI+TJhJzOhkGeaLbCKEHXEXLfirtG2JA==}
+ engines: {node: '>=18'}
launch-editor@2.9.1:
resolution: {integrity: sha512-Gcnl4Bd+hRO9P9icCP/RVVT2o8SFlPXofuCxvA2SaZuH45whSvf5p8x5oih5ftLiVhEI4sp5xDY+R+b3zJBh5w==}
@@ -8071,8 +7314,8 @@ packages:
resolution: {integrity: sha512-ok6z3qlYyCDS4ZEU27HaU6x/xZa9Whf8jD4ptH5UZTQYZVYeb9bnZ3ojVhiJNLiXK1Hfc0GNbLXcmZ5plLDDBg==}
engines: {node: '>=14'}
- locate-app@2.4.43:
- resolution: {integrity: sha512-BX6NEdECUGcDQw8aqqg02qLyF9rF8V+dAfyAnBzL2AofIlIvf4Q6EGXnzVWpWot9uBE+x/o8CjXHo7Zlegu91Q==}
+ locate-app@2.5.0:
+ resolution: {integrity: sha512-xIqbzPMBYArJRmPGUZD9CzV9wOqmVtQnaAn3wrj3s6WYW0bQvPI7x+sPYUGmDTYMHefVK//zc6HEYZ1qnxIK+Q==}
locate-path@2.0.0:
resolution: {integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==}
@@ -8165,19 +7408,11 @@ packages:
loupe@3.1.2:
resolution: {integrity: sha512-23I4pFZHmAemUnz8WZXbYRSKYj801VDaNv9ETuMh7IrMc7VuVVSo+Z9iLE3ni30+U48iDWfi30d3twAXBYmnCg==}
- lowercase-keys@3.0.0:
- resolution: {integrity: sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
-
- lru-cache@10.2.2:
- resolution: {integrity: sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==}
- engines: {node: 14 || >=16.14}
-
lru-cache@10.4.3:
resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
- lru-cache@11.0.1:
- resolution: {integrity: sha512-CgeuL5uom6j/ZVrg7G/+1IXqRY8JXX4Hghfy5YE0EhoYQWvndP1kufu58cmZLNIDKnRhZrXfdS9urVWx98AipQ==}
+ lru-cache@11.0.2:
+ resolution: {integrity: sha512-123qHRfJBmo2jXDbo/a5YOQrJoHF/GNQTLzQ5+IdK5pWpceK17yRc6ozlWd25FxvGKQbIUs91fDFkXmDHTKcyA==}
engines: {node: 20 || >=22}
lru-cache@5.1.1:
@@ -8199,9 +7434,6 @@ packages:
resolution: {integrity: sha512-mbVKXPmS0z0G4XqFDCTllmDQ6coZzn94aMlb0o/A4HEHJCKcanlDZwYJgwnkmgD3jyWhUgj9VsPrfd972yPffA==}
engines: {node: '>=12'}
- magic-string@0.30.11:
- resolution: {integrity: sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==}
-
magic-string@0.30.12:
resolution: {integrity: sha512-Ea8I3sQMVXr8JhN4z+H/d8zwo+tYDgHE9+5G4Wnrwhs0gaK9fXTKx0Tw5Xwsd/bCPTTZNRAdpyzvoeORe9LYpw==}
@@ -8298,10 +7530,6 @@ packages:
resolution: {integrity: sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==}
engines: {node: '>=0.10.0'}
- micromatch@4.0.7:
- resolution: {integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==}
- engines: {node: '>=8.6'}
-
micromatch@4.0.8:
resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
engines: {node: '>=8.6'}
@@ -8349,14 +7577,6 @@ packages:
resolution: {integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==}
engines: {node: '>=18'}
- mimic-response@3.1.0:
- resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==}
- engines: {node: '>=10'}
-
- mimic-response@4.0.0:
- resolution: {integrity: sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
-
min-indent@1.0.1:
resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==}
engines: {node: '>=4'}
@@ -8471,11 +7691,11 @@ packages:
engines: {node: '>=10'}
hasBin: true
- mlly@1.7.1:
- resolution: {integrity: sha512-rrVRZRELyQzrIUAVMHxP97kv+G786pHmOKzuFII8zDYahFBS7qnHh2AlYSl1GAHhaMPCz6/oHjVMcfFYgFYHgA==}
+ mlly@1.7.2:
+ resolution: {integrity: sha512-tN3dvVHYVz4DhSXinXIk7u9syPYaJvio118uomkovAtWBT+RdbP6Lfh/5Lvo519YMmwBafwlh20IPTXIStscpA==}
- mocha@10.7.3:
- resolution: {integrity: sha512-uQWxAu44wwiACGqjbPYmjo7Lg8sFrS3dQe7PP2FQI+woptP4vZXSMcfMyFL/e1yFEeEpV4RtyTpZROOKmxis+A==}
+ mocha@10.8.2:
+ resolution: {integrity: sha512-VZlYo/WE8t1tstuRmqgeyBgCbJc/lEdopaa+axcKzTBJ+UIdlAB9XnmvTCAH4pwR4ElNInaedhEBmZD8iCSVEg==}
engines: {node: '>= 14.0.0'}
hasBin: true
@@ -8494,9 +7714,6 @@ packages:
ms@2.0.0:
resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
- ms@2.1.2:
- resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
-
ms@2.1.3:
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
@@ -8532,8 +7749,8 @@ packages:
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
- nanoid@5.0.7:
- resolution: {integrity: sha512-oLxFY2gd2IqnjcYyOXD8XGCftpGtZP2AbHbOkthDkvRywH5ayNtPVy9YlOPcHckXzbLTCHpkb7FB+yuxKV13pQ==}
+ nanoid@5.0.8:
+ resolution: {integrity: sha512-TcJPw+9RV9dibz1hHUzlLVy8N4X9TnwirAjrU08Juo6BNKggzVfP2ZJ/3ZUSq15Xl5i85i+Z89XBO90pB2PghQ==}
engines: {node: ^18 || >=20}
hasBin: true
@@ -8596,8 +7813,8 @@ packages:
nice-try@1.0.5:
resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==}
- nitropack@2.9.7:
- resolution: {integrity: sha512-aKXvtNrWkOCMsQbsk4A0qQdBjrJ1ZcvwlTQevI/LAgLWLYc5L7Q/YiYxGLal4ITyNSlzir1Cm1D2ZxnYhmpMEw==}
+ nitropack@2.10.3:
+ resolution: {integrity: sha512-7n+ITF7RbCMwZZzyacxJ9eMCnWuE60omGJEyLM5PQRKS4Vu5w6OOCvf4C6E3UC0UryFuUIwGbJ3M+tIP9Az9OQ==}
engines: {node: ^16.11.0 || >=17.0.0}
hasBin: true
peerDependencies:
@@ -8699,12 +7916,8 @@ packages:
resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==}
engines: {node: '>=0.10.0'}
- normalize-url@8.0.1:
- resolution: {integrity: sha512-IO9QvjUMWxPQQhs60oOu10CRkWCiZzSUkzbXGGV9pviYl1fXYcvkzQ5jV9z8Y6un8ARoVRl4EtC6v6jNqbaJ/w==}
- engines: {node: '>=14.16'}
-
- np@10.0.6:
- resolution: {integrity: sha512-173uUvFDmHtme1ra3JDMjYzqa94XHJAHoNae6lCA4mJWMIz073x9FE2O8SHMMjKXlHetRdOXufLUjdimRxXR3A==}
+ np@10.0.7:
+ resolution: {integrity: sha512-vIPKQwOYKpQU40PU5x/vLfN2haj8ObxMvR1QGt7EZnBPWdm4WEbHdumYAnMV7AeR9kACsMqcqAP37sAo5cW5jA==}
engines: {git: '>=2.11.0', node: '>=18', npm: '>=9', pnpm: '>=8', yarn: '>=1.7.0'}
hasBin: true
@@ -8740,13 +7953,8 @@ packages:
resolution: {integrity: sha512-5+bKQRH0J1xG1uZ1zMNvxW0VEyoNWgJpY9UDuluPFLKDfJ9u2JmmjmTJV1srBGQOROfdBMiVvnH2Zvpbm+xkVA==}
engines: {node: ^16.14.0 || >=18.0.0}
- npm-run-all2@6.2.3:
- resolution: {integrity: sha512-5RsxC7jEc/RjxOYBVdEfrJf5FsJ0pHA7jr2/OxrThXknajETCTYjigOCG3iaGjdYIKEQlDuCG0ir0T1HTva8pg==}
- engines: {node: ^14.18.0 || ^16.13.0 || >=18.0.0, npm: '>= 8'}
- hasBin: true
-
- npm-run-all2@6.2.4:
- resolution: {integrity: sha512-h/v0JWs0P12iR076jL0iTi4JzZVaJPnwse2+s4XzaIxwjtybQbQM2kg/Wd7Lxi0iEOXy3ZX2tLPNbm3MqzIFqw==}
+ npm-run-all2@6.2.6:
+ resolution: {integrity: sha512-tkyb4pc0Zb0oOswCb5tORPk9MvVL6gcDq1cMItQHmsbVk1skk7YF6cH+UU2GxeNLHMuk6wFEOSmEmJ2cnAK1jg==}
engines: {node: ^14.18.0 || ^16.13.0 || >=18.0.0, npm: '>= 8'}
hasBin: true
@@ -8777,13 +7985,13 @@ packages:
resolution: {integrity: sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==}
engines: {node: '>=0.10.0'}
- nuxi@3.14.0:
- resolution: {integrity: sha512-MhG4QR6D95jQxhnwKfdKXulZ8Yqy1nbpwbotbxY5IcabOzpEeTB8hYn2BFkmYdMUB0no81qpv2ldZmVCT9UsnQ==}
+ nuxi@3.15.0:
+ resolution: {integrity: sha512-ZVu45nuDrdb7nzKW2kLGY/N1vvFYLLbUVX6gUYw4BApKGGu4+GktTR5o48dGVgMYX9A8chaugl7TL9ZYmwC9Mg==}
engines: {node: ^16.10.0 || >=18.0.0}
hasBin: true
- nuxt@3.13.2:
- resolution: {integrity: sha512-Bjc2qRsipfBhjXsBEJCN+EUAukhdgFv/KoIR5HFB2hZOYRSqXBod3oWQs78k3ja1nlIhAEdBG533898KJxUtJw==}
+ nuxt@3.14.159:
+ resolution: {integrity: sha512-1xz6AfFkun+byUIkBNX3/CTOTShPRFJe0y9HqWZX2aV9xdoz5ByeaHZfktokhOOSbvabjDyzkTbbHh3V673qHw==}
engines: {node: ^14.18.0 || >=16.10.0}
hasBin: true
peerDependencies:
@@ -8795,11 +8003,11 @@ packages:
'@types/node':
optional: true
- nwsapi@2.2.10:
- resolution: {integrity: sha512-QK0sRs7MKv0tKe1+5uZIQk/C8XGza4DAnztJG8iD+TpJIORARrCxczA738awHrZoHeTjSSoHqao2teO0dC/gFQ==}
+ nwsapi@2.2.13:
+ resolution: {integrity: sha512-cTGB9ptp9dY9A5VbMSe7fQBcl/tt22Vcqdq8+eN93rblOuE0aCFu4aZ2vMwct/2t+lFnosm8RkQW1I0Omb1UtQ==}
- nx@20.0.8:
- resolution: {integrity: sha512-cMtb+u5Eji7Xm9xMHZkRXMcO8GH6FFqS2+nMgtLUZ/+ZmquEgoV8mbsKVw1u1sJ6osOpWAu9OwXcilwtvSOoBw==}
+ nx@20.0.10:
+ resolution: {integrity: sha512-QcPWtyfA8B0AevLLmWLmOwRXAeelpSx3osEBqpLJgsNnpd1XOq/dLUQwSOOFFTLaWVkukU3qRanE5ReTllj+2Q==}
hasBin: true
peerDependencies:
'@swc-node/register': ^1.8.0
@@ -8831,10 +8039,6 @@ packages:
resolution: {integrity: sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==}
engines: {node: '>= 0.4'}
- object-is@1.1.6:
- resolution: {integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==}
- engines: {node: '>= 0.4'}
-
object-keys@1.1.1:
resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
engines: {node: '>= 0.4'}
@@ -8911,9 +8115,11 @@ packages:
resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==}
engines: {node: '>=12'}
- openapi-typescript@6.7.6:
- resolution: {integrity: sha512-c/hfooPx+RBIOPM09GSxABOZhYPblDoyaGhqBkD/59vtpN21jEuWKDlM0KYTvqJVlSYjKs0tBcIdeXKChlSPtw==}
+ openapi-typescript@7.4.2:
+ resolution: {integrity: sha512-SvhmSTItcEAdDUcz+wzrcg6OENpMRkHqqY2hZB01FT+NOfgLcZ1B1ML6vcQrnipONHtG9AQELiKHgGTjpNGjiQ==}
hasBin: true
+ peerDependencies:
+ typescript: ^5.x
optionator@0.9.4:
resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
@@ -8935,10 +8141,6 @@ packages:
resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==}
engines: {node: '>=0.10.0'}
- p-cancelable@3.0.0:
- resolution: {integrity: sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==}
- engines: {node: '>=12.20'}
-
p-each-series@2.2.0:
resolution: {integrity: sha512-ycIL2+1V32th+8scbpTvyHNaHe02z0sjgh91XXjAk+ZeXoPN4Z46DVUnzdso0aX4KckKw0FNNFHdjZ2UsZvxiA==}
engines: {node: '>=8'}
@@ -9027,8 +8229,8 @@ packages:
resolution: {integrity: sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==}
engines: {node: '>=8'}
- p-timeout@6.1.2:
- resolution: {integrity: sha512-UbD77BuZ9Bc9aABo74gfXhNvzC9Tx7SxtHSh1fxvx3jTLLYvmVhiQZZrJzqqU0jKbN32kb5VOKiLEQI/3bIjgQ==}
+ p-timeout@6.1.3:
+ resolution: {integrity: sha512-UJUyfKbwvr/uZSV6btANfb+0t/mOhKV/KXcCUTp8FcQI+v/0d+wXqH4htrW0E4rR6WiEO/EPvUFiV9D5OI4vlw==}
engines: {node: '>=14.16'}
p-try@1.0.0:
@@ -9054,9 +8256,9 @@ packages:
package-json-from-dist@1.0.1:
resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==}
- package-json@8.1.1:
- resolution: {integrity: sha512-cbH9IAIJHNj9uXi196JVsRlt7cHKak6u/e6AkL/bkRelZ7rlL3X1YKxsZwa36xipOEKAsdtmaG6aAJoM1fx2zA==}
- engines: {node: '>=14.16'}
+ package-json@10.0.1:
+ resolution: {integrity: sha512-ua1L4OgXSBdsu1FPb7F3tYH0F48a6kxvod4pLUlGY9COeJAJQNX/sNH2IiEmsxw7lqYiAwrdHMjz1FctOsyDQg==}
+ engines: {node: '>=18'}
package-manager-detector@0.2.2:
resolution: {integrity: sha512-VgXbyrSNsml4eHWIvxxG/nTL4wgybMTXCV2Un/+yEc3aDKKU6nQBZjbeP3Pl3qm9Qg92X/1ng4ffvCeD/zwHgg==}
@@ -9117,8 +8319,8 @@ packages:
parse5-htmlparser2-tree-adapter@6.0.1:
resolution: {integrity: sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==}
- parse5-htmlparser2-tree-adapter@7.0.0:
- resolution: {integrity: sha512-B77tOZrqqfUfnVcOrUvfdLbz4pu4RopLD/4vmu3HUPswwTA8OH0EMW9BlWR2B0RCoiZRAHEUu7IxeP1Pd1UU+g==}
+ parse5-htmlparser2-tree-adapter@7.1.0:
+ resolution: {integrity: sha512-ruw5xyKs6lrpo9x9rCZqZZnIUntICjQAd0Wsmp396Ul9lN/h+ifgVV1x1gZHi8euej6wTfpqX8j+BFQxF0NS/g==}
parse5-parser-stream@7.1.2:
resolution: {integrity: sha512-JyeQc9iwFLn5TbvvqACIF/VXG6abODeB3Fwmv/TGdLk2LfbWkaySGY72at4+Ty7EkPZj854u4CrICqNk2qIbow==}
@@ -9132,9 +8334,6 @@ packages:
parse5@6.0.1:
resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==}
- parse5@7.1.2:
- resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==}
-
parse5@7.2.1:
resolution: {integrity: sha512-BuBYQYlv1ckiPdQi/ohiivi9Sagc9JG+Ozs0r7b/0iK3sKmrb0b9FdWdBbOdx6hBCM/F9Ir82ofnBhtZOjCRPQ==}
@@ -9216,9 +8415,6 @@ packages:
perfect-debounce@1.0.0:
resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==}
- picocolors@1.1.0:
- resolution: {integrity: sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==}
-
picocolors@1.1.1:
resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
@@ -9274,8 +8470,12 @@ packages:
resolution: {integrity: sha512-4peoBq4Wks0riS0z8741NVv+/8IiTvqnZAr8QGgtdifrtpdXbNw/FxRS1l6NFqm4EMzuS0EDqNNx4XGaz8cuyQ==}
engines: {node: '>=18'}
- pkg-types@1.2.0:
- resolution: {integrity: sha512-+ifYuSSqOQ8CqP4MbZA5hDpb97n3E8SVWdJe+Wms9kj745lmd3b7EZJiqvmLwAlmRfjrI7Hi5z3kdBJ93lFNPA==}
+ pkg-types@1.2.1:
+ resolution: {integrity: sha512-sQoqa8alT3nHjGuTjuKgOnvjo4cljkufdtLMnO2LBP/wRwuDlo1tkaEdMxCRhyGRPacv/ztlZgDPm2b7FAmEvw==}
+
+ pluralize@8.0.0:
+ resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==}
+ engines: {node: '>=4'}
posix-character-classes@0.1.1:
resolution: {integrity: sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==}
@@ -9540,9 +8740,9 @@ packages:
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
engines: {node: '>= 0.8.0'}
- prettier@2.8.8:
- resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==}
- engines: {node: '>=10.13.0'}
+ prettier@3.3.3:
+ resolution: {integrity: sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==}
+ engines: {node: '>=14'}
hasBin: true
pretty-bytes@6.1.1:
@@ -9553,10 +8753,6 @@ packages:
resolution: {integrity: sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==}
engines: {node: '>= 10'}
- pretty-format@27.5.1:
- resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
-
pretty-format@29.7.0:
resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -9670,10 +8866,6 @@ packages:
resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==}
engines: {node: '>=8'}
- quick-lru@5.1.1:
- resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==}
- engines: {node: '>=10'}
-
radix3@1.1.2:
resolution: {integrity: sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==}
@@ -9880,9 +9072,6 @@ packages:
requires-port@1.0.0:
resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==}
- resolve-alpn@1.2.1:
- resolution: {integrity: sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==}
-
resolve-cwd@3.0.0:
resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==}
engines: {node: '>=8'}
@@ -9906,10 +9095,6 @@ packages:
resolution: {integrity: sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==}
deprecated: https://github.com/lydell/resolve-url#deprecated
- resolve.exports@1.1.1:
- resolution: {integrity: sha512-/NtpHNDN7jWhAaQ9BvBUYZ6YTXsRBgfqWFWP7BZBaoMJO/I3G5OFzvTuWNlZC3aPjins1F+TNrLKsGbH4rfsRQ==}
- engines: {node: '>=10'}
-
resolve.exports@2.0.2:
resolution: {integrity: sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==}
engines: {node: '>=10'}
@@ -9925,10 +9110,6 @@ packages:
resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==}
hasBin: true
- responselike@3.0.0:
- resolution: {integrity: sha512-40yHxbNcl2+rzXvZuVkrYohathsSJlMTXKryG5y8uciHv1+xDLHQpgjG64JUO9nrEq2jGLH6IZ8BcZyw3wrweg==}
- engines: {node: '>=14.16'}
-
resq@1.11.0:
resolution: {integrity: sha512-G10EBz+zAAy3zUd/CDoBbXRL6ia9kOo3xRHrMDsHljI0GDkhYlyjwoCx5+3eCC4swi1uCoZQhskuJkj7Gp57Bw==}
@@ -9996,11 +9177,6 @@ packages:
engines: {node: '>=10.0.0'}
hasBin: true
- rollup@4.24.2:
- resolution: {integrity: sha512-do/DFGq5g6rdDhdpPq5qb2ecoczeK6y+2UAjdJ5trjQJj5f1AiVdLRWRc9A9/fFukfvJRgM0UXzxBIYMovm5ww==}
- engines: {node: '>=18.0.0', npm: '>=8.0.0'}
- hasBin: true
-
rollup@4.24.4:
resolution: {integrity: sha512-vGorVWIsWfX3xbcyAS+I047kFKapHYivmkaT63Smj77XwvLSJos6M1xGqZnBPFQFBRZDOcG1QnYEIxAvTr/HjA==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
@@ -10123,10 +9299,6 @@ packages:
resolution: {integrity: sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==}
engines: {node: '>=10'}
- semver-diff@4.0.0:
- resolution: {integrity: sha512-0Ju4+6A8iOnpL/Thra7dZsSlOHYAHIeMxfhWQRI1/VLcT3WDBZKKtQt/QkBOsiIN9ZpuvHE6cGZ0x4glCMmfiA==}
- engines: {node: '>=12'}
-
semver@5.7.2:
resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==}
hasBin: true
@@ -10145,11 +9317,6 @@ packages:
engines: {node: '>=10'}
hasBin: true
- semver@7.6.2:
- resolution: {integrity: sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==}
- engines: {node: '>=10'}
- hasBin: true
-
semver@7.6.3:
resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==}
engines: {node: '>=10'}
@@ -10345,8 +9512,8 @@ packages:
resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==}
engines: {node: '>= 8'}
- spacetrim@0.11.39:
- resolution: {integrity: sha512-S/baW29azJ7py5ausQRE2S6uEDQnlxgMHOEEq4V770ooBDD1/9kZnxRcco/tjZYuDuqYXblCk/r3N13ZmvHZ2g==}
+ spacetrim@0.11.59:
+ resolution: {integrity: sha512-lLYsktklSRKprreOm7NXReW8YiX2VBjbgmXYEziOoGf/qsJqAEACaDvoTtUOycwjpaSh+bT8eu0KrJn7UNxiCg==}
spdx-correct@3.2.0:
resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==}
@@ -10424,10 +9591,6 @@ packages:
std-env@3.7.0:
resolution: {integrity: sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==}
- stop-iteration-iterator@1.0.0:
- resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==}
- engines: {node: '>= 0.4'}
-
stream-buffers@3.0.3:
resolution: {integrity: sha512-pqMqwQCso0PBJt2PQmDO0cFj0lyqmiwOMiMSkVtRokl7e+ZTRYgDHKnuZNbqjiJXgsg4nuqtD/zxuo9KqTp0Yw==}
engines: {node: '>= 0.10.0'}
@@ -10463,8 +9626,13 @@ packages:
resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
engines: {node: '>=12'}
- string.prototype.includes@2.0.0:
- resolution: {integrity: sha512-E34CkBgyeqNDcrbU76cDjL5JLcVrtSdYq0MEh/B10r17pRP4ciHLwTgnuLV8Ay6cgEMLkcBkFCKyFZ43YldYzg==}
+ string-width@7.2.0:
+ resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==}
+ engines: {node: '>=18'}
+
+ string.prototype.includes@2.0.1:
+ resolution: {integrity: sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==}
+ engines: {node: '>= 0.4'}
string.prototype.matchall@4.0.11:
resolution: {integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==}
@@ -10557,18 +9725,15 @@ packages:
engines: {node: '>=4'}
hasBin: true
+ stubborn-fs@1.2.5:
+ resolution: {integrity: sha512-H2N9c26eXjzL/S/K+i/RHHcFanE74dptvvjM8iwzwbVcWY/zjBbgRqF3K0DY4+OD+uTTASTBvDoxPDaPN02D7g==}
+
style-object-to-css-string@1.1.3:
resolution: {integrity: sha512-bISQoUsir/qGfo7vY8rw00ia9nnyE1jvYt3zZ2jhdkcXZ6dAEi74inMzQ6On57vFI+I4Fck6wOv5UI9BEwJDgw==}
- style-to-js@1.1.12:
- resolution: {integrity: sha512-tv+/FkgNYHI2fvCoBMsqPHh5xovwiw+C3X0Gfnss/Syau0Nr3IqGOJ9XiOYXoPnToHVbllKFf5qCNFJGwFg5mg==}
-
style-to-js@1.1.16:
resolution: {integrity: sha512-/Q6ld50hKYPH3d/r6nr117TZkHR0w0kGGIVfpG9N6D8NymRPM9RqCUv4pRpJ62E5DqOYx2AFpbZMyCPnjQCnOw==}
- style-to-object@1.0.6:
- resolution: {integrity: sha512-khxq+Qm3xEyZfKd/y9L3oIWQimxuc4STrQKtQn8aSDRHb8mFgpukgX1hdzfrMEW6JCjyJ8p89x+IUMVnCBI1PA==}
-
style-to-object@1.0.8:
resolution: {integrity: sha512-xT47I/Eo0rwJmaXC4oilDGDWLohVhR6o/xAQcPQN8q6QBuZVL8qMYL85kLmST5cPjAorwvqIA4qXTRQoYHaL6g==}
@@ -10651,8 +9816,8 @@ packages:
resolution: {integrity: sha512-ulAk51I9UVUyJgxlv9M6lFot2WP3e7t8Kz9+IS6D4rVba1tR9kON+Ey69f+1R4Q8cd45Lod6a4IcJIxnzGc/zA==}
engines: {node: '>=18'}
- tailwindcss@3.4.13:
- resolution: {integrity: sha512-KqjHOJKogOUt5Bs752ykCeiwvi0fKVkr5oqsFNt/8px/tA8scFPIlkygsf6jXrfCqGHz7VflA6+yytWuM+XhFw==}
+ tailwindcss@3.4.14:
+ resolution: {integrity: sha512-IcSvOcTRcUtQQ7ILQL5quRDg7Xs93PdJEk1ZLbhhvJc7uj/OAhYOnruEiwnGgBvUtaUAJ8/mhSw1o8L2jCiENA==}
engines: {node: '>=14.0.0'}
hasBin: true
@@ -10707,12 +9872,17 @@ packages:
engines: {node: '>=10'}
hasBin: true
+ terser@5.36.0:
+ resolution: {integrity: sha512-IYV9eNMuFAV4THUspIRXkLakHnV6XO7FEdtKjf/mDyrnqUg9LnlOn6/RwRvM9SZjR4GUq8Nk8zj67FzVARr74w==}
+ engines: {node: '>=10'}
+ hasBin: true
+
test-exclude@6.0.0:
resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==}
engines: {node: '>=8'}
- text-decoder@1.2.0:
- resolution: {integrity: sha512-n1yg1mOj9DNpk3NeZOx7T6jchTbyJS3i3cucbNN6FcdPriMZx7NsgrGpWWdWZZGxD7ES1XB+3uoqHMgOKaN+fg==}
+ text-decoder@1.2.1:
+ resolution: {integrity: sha512-x9v3H/lTKIJKQQe7RPQkLfKAnc9lUTkWDypIQgTzPJAq+5/GCDHonmshfvlsNSj58yyshbIJJDLmU15qNERrXQ==}
text-extensions@1.9.0:
resolution: {integrity: sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==}
@@ -10731,9 +9901,6 @@ packages:
throat@5.0.0:
resolution: {integrity: sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==}
- throat@6.0.2:
- resolution: {integrity: sha512-WKexMoJj3vEuK0yFEapj8y64V0A6xcuPuK9Gt1d0R+dzCSJc0lHqQytAbSB4cDAK0dWh4T0E2ETkoLE2WZ41OQ==}
-
through2@2.0.5:
resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==}
@@ -10752,8 +9919,8 @@ packages:
tinyexec@0.3.1:
resolution: {integrity: sha512-WiCJLEECkO18gwqIp6+hJg0//p23HXp4S+gGtAKu3mI2F2/sXC4FvHvXvB0zJVVaTPhx1/tOwdbRsa1sOBIKqQ==}
- tinyglobby@0.2.6:
- resolution: {integrity: sha512-NbBoFBpqfcgd1tCiO8Lkfdk+xrA7mlLR9zgvZcZWQQwU63XAfUePyd6wZBaU93Hqw347lHnwFzttAkemHzzz4g==}
+ tinyglobby@0.2.10:
+ resolution: {integrity: sha512-Zc+8eJlFMvgatPZTl6A9L/yht8QqdmUNtURHaKZLmKBE12hNPSrqNkUp2cs3M/UKmNVVAMFQYSjYIVHDjW5zew==}
engines: {node: '>=12.0.0'}
tinypool@1.0.1:
@@ -10779,10 +9946,6 @@ packages:
tmpl@1.0.5:
resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==}
- to-fast-properties@2.0.0:
- resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
- engines: {node: '>=4'}
-
to-object-path@0.3.0:
resolution: {integrity: sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==}
engines: {node: '>=0.10.0'}
@@ -10834,8 +9997,8 @@ packages:
resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==}
engines: {node: '>=8'}
- ts-api-utils@1.3.0:
- resolution: {integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==}
+ ts-api-utils@1.4.0:
+ resolution: {integrity: sha512-032cPxaEKwM+GT3vA5JXNzIaizx388rhsSW79vGRNGXfRRAdEAn2mvk36PvK5HnOchyWZ7afLEXqYCvPCrzuzQ==}
engines: {node: '>=16'}
peerDependencies:
typescript: '>=4.2.0'
@@ -10882,20 +10045,6 @@ packages:
ts-morph@22.0.0:
resolution: {integrity: sha512-M9MqFGZREyeb5fTl6gNHKZLqBQA0TjA1lea+CR48R8EBTDuWrNqW6ccC5QvjNR4s6wDumD3LTCjOFSp9iwlzaw==}
- ts-node@10.9.2:
- resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==}
- hasBin: true
- peerDependencies:
- '@swc/core': '>=1.2.50'
- '@swc/wasm': '>=1.2.50'
- '@types/node': '*'
- typescript: '>=2.7'
- peerDependenciesMeta:
- '@swc/core':
- optional: true
- '@swc/wasm':
- optional: true
-
tsconfig-paths@3.15.0:
resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==}
@@ -10909,14 +10058,11 @@ packages:
tslib@2.6.2:
resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
- tslib@2.6.3:
- resolution: {integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==}
-
tslib@2.8.1:
resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
- tsx@4.19.1:
- resolution: {integrity: sha512-0flMz1lh74BR4wOvBjuh9olbnwqCPc35OOlfyzHba0Dc+QNUeWX/Gq2YTbnwcWPO3BMd8fkzRVrHcsR+a7z7rA==}
+ tsx@4.19.2:
+ resolution: {integrity: sha512-pOUl6Vo2LUq/bSa8S5q7b91cgNSjctn9ugq/+Mvow99qW6x/UZYwzxy/3NmqoT66eHYfCVvFvACC58UBPFf28g==}
engines: {node: '>=18.0.0'}
hasBin: true
@@ -10960,10 +10106,6 @@ packages:
resolution: {integrity: sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==}
engines: {node: '>=10'}
- type-fest@2.13.0:
- resolution: {integrity: sha512-lPfAm42MxE4/456+QyIaaVBAwgpJb6xZ8PRu09utnhPdWwcyj9vgy6Sq0Z5yNbJ21EdxB5dRU/Qg8bsyAMtlcw==}
- engines: {node: '>=12.20'}
-
type-fest@2.19.0:
resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==}
engines: {node: '>=12.20'}
@@ -10972,8 +10114,12 @@ packages:
resolution: {integrity: sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==}
engines: {node: '>=14.16'}
- type-fest@4.20.1:
- resolution: {integrity: sha512-R6wDsVsoS9xYOpy8vgeBlqpdOyzJ12HNfQhC/aAKWM3YoCV9TtunJzh/QpkMgeDhkoynDcw5f1y+qF9yc/HHyg==}
+ type-fest@4.26.0:
+ resolution: {integrity: sha512-OduNjVJsFbifKb57UqZ2EMP1i4u64Xwow3NYXUtBbD4vIwJdQd4+xl8YDou1dlm4DVrtwT/7Ky8z8WyCULVfxw==}
+ engines: {node: '>=16'}
+
+ type-fest@4.26.1:
+ resolution: {integrity: sha512-yOGpmOAL7CkKe/91I5O3gPICmJNLJ1G4zFYVAsRHg7M64biSnPtRj0WNQt++bRkjYOqjWXrhnUw1utzmVErAdg==}
engines: {node: '>=16'}
type-is@1.6.18:
@@ -11015,11 +10161,6 @@ packages:
engines: {node: '>=14.17'}
hasBin: true
- typescript@5.6.2:
- resolution: {integrity: sha512-NW8ByodCSNCwZeghjN3o+JX5OFH0Ojg6sadjEKY4huZ52TqbJTJnDo5+Tw98lSy63NZvi4n+ez5m2u5d4PkZyw==}
- engines: {node: '>=14.17'}
- hasBin: true
-
typescript@5.6.3:
resolution: {integrity: sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==}
engines: {node: '>=14.17'}
@@ -11054,23 +10195,19 @@ packages:
undici-types@6.19.8:
resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==}
- undici@5.28.4:
- resolution: {integrity: sha512-72RFADWFqKmUb2hmmvNODKL3p9hcB6Gt2DOQMis1SEBaV6a4MH8soBvzg+95CYhCKPFedut2JY9bMfrDl9D23g==}
- engines: {node: '>=14.0'}
-
undici@6.11.1:
resolution: {integrity: sha512-KyhzaLJnV1qa3BSHdj4AZ2ndqI0QWPxYzaIOio0WzcEJB9gvuysprJSLtpvc2D9mhR9jPDUk7xlJlZbH2KR5iw==}
engines: {node: '>=18.0'}
- undici@6.20.0:
- resolution: {integrity: sha512-AITZfPuxubm31Sx0vr8bteSalEbs9wQb/BOBi9FPlD9Qpd6HxZ4Q0+hI742jBhkPb4RT2v5MQzaW5VhRVyj+9A==}
+ undici@6.20.1:
+ resolution: {integrity: sha512-AjQF1QsmqfJys+LXfGTNum+qw4S88CojRInG/6t31W/1fk6G59s92bnAvGz5Cmur+kQv2SURXEvvudLmbrE8QA==}
engines: {node: '>=18.17'}
unenv@1.10.0:
resolution: {integrity: sha512-wY5bskBQFL9n3Eca5XnhH6KbUo/tfvkwm9OpcdCvLaeA7piBNbavbOKJySEwQ1V0RH6HvNlSAFRTpvTqgKRQXQ==}
- unhead@1.11.7:
- resolution: {integrity: sha512-aA0+JBRryLhDKUq6L2JhMDLZEG/ElyyDASyC9wiwDl6nvvsj9hD26LgPWgmAsSd+9HtMGM2N1gU27CWEMo16CQ==}
+ unhead@1.11.11:
+ resolution: {integrity: sha512-98tM2R8OWJhvS6uqTewkfIrsPqFU/VwnKpU2tVZ+jPXSWgWSLmM3K2Y2v5AEM4bZjmC/XH8pLVGzbqB7xzFI/Q==}
unicode-canonical-property-names-ecmascript@2.0.1:
resolution: {integrity: sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==}
@@ -11117,10 +10254,6 @@ packages:
resolution: {integrity: sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- unique-string@3.0.0:
- resolution: {integrity: sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==}
- engines: {node: '>=12'}
-
universal-user-agent@6.0.1:
resolution: {integrity: sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==}
@@ -11148,8 +10281,8 @@ packages:
vue-router:
optional: true
- unplugin@1.14.1:
- resolution: {integrity: sha512-lBlHbfSFPToDYp9pjXlUEFVxYLaue9f9T1HC+4OHlmj+HnMDdz9oZY+erXfoCe/5V/7gKUSY2jpXPb9S7f0f/w==}
+ unplugin@1.15.0:
+ resolution: {integrity: sha512-jTPIs63W+DUEDW207ztbaoO7cQ4p5aVaB823LSlxpsFEU3Mykwxf3ZGC/wzxFJeZlASZYgVrWeo7LgOrqJZ8RA==}
engines: {node: '>=14.0.0'}
peerDependencies:
webpack-sources: ^3
@@ -11161,19 +10294,19 @@ packages:
resolution: {integrity: sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==}
engines: {node: '>=0.10.0'}
- unstorage@1.12.0:
- resolution: {integrity: sha512-ARZYTXiC+e8z3lRM7/qY9oyaOkaozCeNd2xoz7sYK9fv7OLGhVsf+BZbmASqiK/HTZ7T6eAlnVq9JynZppyk3w==}
+ unstorage@1.13.1:
+ resolution: {integrity: sha512-ELexQHUrG05QVIM/iUeQNdl9FXDZhqLJ4yP59fnmn2jGUh0TEulwOgov1ubOb3Gt2ZGK/VMchJwPDNVEGWQpRg==}
peerDependencies:
'@azure/app-configuration': ^1.7.0
'@azure/cosmos': ^4.1.1
'@azure/data-tables': ^13.2.2
- '@azure/identity': ^4.4.1
- '@azure/keyvault-secrets': ^4.8.0
- '@azure/storage-blob': ^12.24.0
+ '@azure/identity': ^4.5.0
+ '@azure/keyvault-secrets': ^4.9.0
+ '@azure/storage-blob': ^12.25.0
'@capacitor/preferences': ^6.0.2
- '@netlify/blobs': ^6.5.0 || ^7.0.0
+ '@netlify/blobs': ^6.5.0 || ^7.0.0 || ^8.1.0
'@planetscale/database': ^1.19.0
- '@upstash/redis': ^1.34.0
+ '@upstash/redis': ^1.34.3
'@vercel/kv': ^1.0.1
idb-keyval: ^6.2.1
ioredis: ^5.4.1
@@ -11220,25 +10353,22 @@ packages:
resolution: {integrity: sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==}
engines: {node: '>=4'}
- update-browserslist-db@1.1.0:
- resolution: {integrity: sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==}
- hasBin: true
- peerDependencies:
- browserslist: '>= 4.21.0'
-
update-browserslist-db@1.1.1:
resolution: {integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==}
hasBin: true
peerDependencies:
browserslist: '>= 4.21.0'
- update-notifier@7.0.0:
- resolution: {integrity: sha512-Hv25Bh+eAbOLlsjJreVPOs4vd51rrtCrmhyOJtbpAojro34jS4KQaEp4/EvlHJX7jSO42VvEFpkastVyXyIsdQ==}
+ update-notifier@7.3.1:
+ resolution: {integrity: sha512-+dwUY4L35XFYEzE+OAL3sarJdUioVovq+8f7lcIJ7wnmnYQV5UD1Y/lcwaMSyaQ6Bj3JMj1XSTjZbNLHn/19yA==}
engines: {node: '>=18'}
uqr@0.1.2:
resolution: {integrity: sha512-MJu7ypHq6QasgF5YRTjqscSzQp/W11zoUk6kvmlH+fmWEs63Y0Eib13hYFwAzagRJcVY8WVnlV+eBDUGMJ5IbA==}
+ uri-js-replace@1.0.1:
+ resolution: {integrity: sha512-W+C9NWNLFOoBI2QWDp4UT9pv65r2w5Cx+3sTYFvtMdDBxkKt1syCqsUdSFAChbEe1uK5TfS04wt/nGwmaeIQ0g==}
+
uri-js@4.4.1:
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
@@ -11259,8 +10389,8 @@ packages:
resolution: {integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==}
engines: {node: '>=0.10.0'}
- userhome@1.0.0:
- resolution: {integrity: sha512-ayFKY3H+Pwfy4W98yPdtH1VqH4psDeyW8lYYFzfecR9d6hqLpqhecktvYR3SEEXt7vG0S1JEpciI3g94pMErig==}
+ userhome@1.0.1:
+ resolution: {integrity: sha512-5cnLm4gseXjAclKowC4IjByaGsjtAoV6PrOQOljplNB54ReUYJP8HdAFq2muHinSDAh09PPX/uXDPfdxRHvuSA==}
engines: {node: '>= 0.8.0'}
util-deprecate@1.0.2:
@@ -11278,17 +10408,10 @@ packages:
resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==}
hasBin: true
- v8-compile-cache-lib@3.0.1:
- resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==}
-
v8-to-istanbul@7.1.2:
resolution: {integrity: sha512-TxNb7YEUwkLXCQYeudi6lgQ/SZrzNO4kMdlqVxaZPUIUjCv6iSSypUQX70kNBSERpQ8fk48+d61FXk+tgqcWow==}
engines: {node: '>=10.10.0'}
- v8-to-istanbul@8.1.1:
- resolution: {integrity: sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==}
- engines: {node: '>=10.12.0'}
-
v8-to-istanbul@9.3.0:
resolution: {integrity: sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==}
engines: {node: '>=10.12.0'}
@@ -11313,13 +10436,8 @@ packages:
peerDependencies:
vite: ^2.6.0 || ^3.0.0 || ^4.0.0 || ^5.0.0-0
- vite-node@2.1.2:
- resolution: {integrity: sha512-HPcGNN5g/7I2OtPjLqgOtCRu/qhVvBxTUD3qzitmL0SrG1cWFzxzhMDWussxSbrRYWqnKf8P2jiNhPMSN+ymsQ==}
- engines: {node: ^18.0.0 || >=20.0.0}
- hasBin: true
-
- vite-node@2.1.3:
- resolution: {integrity: sha512-I1JadzO+xYX887S39Do+paRePCKoiDrWRRjp9kkG5he0t7RXNvPAJPCQSJqbGN4uCrFFeS3Kj3sLqY8NMYBEdA==}
+ vite-node@2.1.4:
+ resolution: {integrity: sha512-kqa9v+oi4HwkG6g8ufRnb5AeplcRw8jUF6/7/Qz1qRQOXHImG8YnLbB+LLszENwFnoBl9xIf9nVdCFzNd7GQEg==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
@@ -11410,8 +10528,8 @@ packages:
terser:
optional: true
- vite@5.4.2:
- resolution: {integrity: sha512-dDrQTRHp5C1fTFzcSaMxjk6vdpKvT+2/mIdE07Gw2ykehT49O0z/VHS3zZ8iV/Gh8BJJKHWOe5RjaNrW5xf/GA==}
+ vite@5.4.10:
+ resolution: {integrity: sha512-1hvaPshuPUtxeQ0hsVH3Mud0ZanOLwVTneA1EgbAM5LhaZEqyPWGRQ7BtaMvUrTDeEaC8pxtj6a6jku3x4z6SQ==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
@@ -11441,60 +10559,29 @@ packages:
terser:
optional: true
- vite@5.4.8:
- resolution: {integrity: sha512-FqrItQ4DT1NC4zCUqMB4c4AZORMKIa0m8/URVCZ77OZ/QSNeJ54bU1vrFADbDsuwfIPcgknRkmqakQcgnL4GiQ==}
+ vitest@2.1.4:
+ resolution: {integrity: sha512-eDjxbVAJw1UJJCHr5xr/xM86Zx+YxIEXGAR+bmnEID7z9qWfoxpHw0zdobz+TQAFOLT+nEXz3+gx6nUJ7RgmlQ==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
+ '@edge-runtime/vm': '*'
'@types/node': ^18.0.0 || >=20.0.0
- less: '*'
- lightningcss: ^1.21.0
- sass: '*'
- sass-embedded: '*'
- stylus: '*'
- sugarss: '*'
- terser: ^5.4.0
+ '@vitest/browser': 2.1.4
+ '@vitest/ui': 2.1.4
+ happy-dom: '*'
+ jsdom: '*'
peerDependenciesMeta:
- '@types/node':
- optional: true
- less:
+ '@edge-runtime/vm':
optional: true
- lightningcss:
+ '@types/node':
optional: true
- sass:
+ '@vitest/browser':
optional: true
- sass-embedded:
+ '@vitest/ui':
optional: true
- stylus:
+ happy-dom:
optional: true
- sugarss:
- optional: true
- terser:
- optional: true
-
- vitest@2.1.3:
- resolution: {integrity: sha512-Zrxbg/WiIvUP2uEzelDNTXmEMJXuzJ1kCpbDvaKByFA9MNeO95V+7r/3ti0qzJzrxdyuUw5VduN7k+D3VmVOSA==}
- engines: {node: ^18.0.0 || >=20.0.0}
- hasBin: true
- peerDependencies:
- '@edge-runtime/vm': '*'
- '@types/node': ^18.0.0 || >=20.0.0
- '@vitest/browser': 2.1.3
- '@vitest/ui': 2.1.3
- 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
- jsdom:
+ jsdom:
optional: true
vscode-jsonrpc@6.0.0:
@@ -11541,14 +10628,14 @@ packages:
peerDependencies:
typescript: '*'
- vue-tsc@2.1.6:
- resolution: {integrity: sha512-f98dyZp5FOukcYmbFpuSCJ4Z0vHSOSmxGttZJCsFeX0M4w/Rsq0s4uKXjcSRsZqsRgQa6z7SfuO+y0HVICE57Q==}
+ vue-tsc@2.1.10:
+ resolution: {integrity: sha512-RBNSfaaRHcN5uqVqJSZh++Gy/YUzryuv9u1aFWhsammDJXNtUiJMNoJ747lZcQ68wUQFx6E73y4FY3D8E7FGMA==}
hasBin: true
peerDependencies:
typescript: '>=5.0.0'
- vue@3.5.10:
- resolution: {integrity: sha512-Vy2kmJwHPlouC/tSnIgXVg03SG+9wSqT1xu1Vehc+ChsXsRd7jLkKgMltVEFOzUdBr3uFwBCG+41LJtfAcBRng==}
+ vue@3.5.12:
+ resolution: {integrity: sha512-CLVZtXtn2ItBIi/zHZ0Sg1Xkb7+PU32bJJ8Bmy7ts3jxXTcbfsEfBivFYYWz1Hur+lalqGAh65Coin0r+HRUfg==}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
@@ -11627,38 +10714,12 @@ packages:
resolution: {integrity: sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==}
engines: {node: '>= 8'}
- webdriver@9.1.3:
- resolution: {integrity: sha512-DXt9az2BdWZmqxRZOfzW9fdpVGTdU7pEgkf9a/hpllF4DmCINvLmnZxOoqn2apIec+irRXCSlLUcf8XFSlmYlw==}
- engines: {node: '>=18.20.0'}
-
- webdriver@9.1.5:
- resolution: {integrity: sha512-0W1CsGtAPVEiINkL4r/HSSkVvPwEQmQho0YMAFGiubFPPmMQGM60KgtHErpNjOJggDyN2TKvdoCGQpW1YQ4Jlg==}
- engines: {node: '>=18.20.0'}
-
- webdriver@9.2.0:
- resolution: {integrity: sha512-UrhuHSLq4m3OgncvX75vShfl5w3gmjAy8LvLb6/L6V+a+xcqMRelFx/DQ72Mr84F4m8Li6wjtebrOH1t9V/uOQ==}
- engines: {node: '>=18.20.0'}
-
- webdriverio@9.1.4:
- resolution: {integrity: sha512-uW6nj/+zSaTAhbEP88tHHOzcYOYRe+vfSpR7F1O0HXvWI+PfcQUDA8GE48TXpjDawRcKdOYMmZIzNNjn09ttSw==}
- engines: {node: '>=18.20.0'}
- peerDependencies:
- puppeteer-core: ^22.3.0
- peerDependenciesMeta:
- puppeteer-core:
- optional: true
-
- webdriverio@9.1.5:
- resolution: {integrity: sha512-X2l6bT3/oxDeBlsjra985BnHFmqRnYNFB+qpGrCd/vXKPOexagsFVB3430BCE+PXQTS7TLuB6r/iuP3QR8jI0g==}
+ webdriver@9.2.8:
+ resolution: {integrity: sha512-40NtUC1zME9tPHNfZv6ETSE3+aE75qZuKjbVAA0gj02AkO1Nl3yJmf5RLdaLLfIQ2WlrbRP1g8KXlkiiVCmakg==}
engines: {node: '>=18.20.0'}
- peerDependencies:
- puppeteer-core: ^22.3.0
- peerDependenciesMeta:
- puppeteer-core:
- optional: true
- webdriverio@9.2.1:
- resolution: {integrity: sha512-AI7xzqTmFiU7oAx4fpEF1U1MA7smhCPVDeM0gxPqG5qWepzib3WDX2SsRtcmhdVW+vLJ3m4bf8rAXxZ2M1msWA==}
+ webdriverio@9.2.8:
+ resolution: {integrity: sha512-LQa7DlwatyWc0WmBqdklrSzi43SLdva5q5CUFOIXtzhdngsjsqv9w2TxZnlyo2BTf/f/BbQ1L4FgiWADuTAZ/w==}
engines: {node: '>=18.20.0'}
peerDependencies:
puppeteer-core: ^22.3.0
@@ -11781,6 +10842,9 @@ packages:
resolution: {integrity: sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==}
engines: {node: '>=10'}
+ when-exit@2.1.3:
+ resolution: {integrity: sha512-uVieSTccFIr/SFQdFWN/fFaQYmV37OKtuaGphMAzi4DmmUlrvRBJW5WSLkHyjNQY/ePJMz3LoiX9R3yy1Su6Hw==}
+
which-boxed-primitive@1.0.2:
resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==}
@@ -11826,9 +10890,9 @@ packages:
wide-align@1.1.5:
resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==}
- widest-line@4.0.1:
- resolution: {integrity: sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig==}
- engines: {node: '>=12'}
+ widest-line@5.0.0:
+ resolution: {integrity: sha512-c9bZp7b5YtRj2wOe6dlj32MK+Bx/M/d+9VB2SHM1OtsUHR0aV0tdP6DWh/iMt0kWi1t5g1Iudu6hQRNd1A4PVA==}
+ engines: {node: '>=18'}
wildcard@2.0.1:
resolution: {integrity: sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==}
@@ -11859,6 +10923,10 @@ packages:
resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
engines: {node: '>=12'}
+ wrap-ansi@9.0.0:
+ resolution: {integrity: sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==}
+ engines: {node: '>=18'}
+
wrappy@1.0.2:
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
@@ -11939,8 +11007,11 @@ packages:
yallist@4.0.0:
resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
- yaml@2.5.1:
- resolution: {integrity: sha512-bLQOjaX/ADgQ20isPJRvF0iRUHIxVhYvr53Of7wGcWlO2jvtUlH5m87DsmulFVxRpNLOnI4tB6p/oh8D7kpn9Q==}
+ yaml-ast-parser@0.0.43:
+ resolution: {integrity: sha512-2PTINUwsRqSd+s8XxKaJWQlUuEMHJQyEuh2edBbW8KNJz0SJPwUSD2zRWqezFEdN7IzAgeuYHFUCF7o8zRdZ0A==}
+
+ yaml@2.6.0:
+ resolution: {integrity: sha512-a6ae//JvKDEra2kdi1qzCyrJW/WZCgFi8ydDV+eXExl95t+5R+ijnqHJbz9tmMh8FUjx3iv2fCQ4dclAQlO2UQ==}
engines: {node: '>= 14'}
hasBin: true
@@ -11975,16 +11046,12 @@ packages:
yauzl@2.10.0:
resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==}
- yn@3.1.1:
- resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==}
- engines: {node: '>=6'}
-
yocto-queue@0.1.0:
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'}
yoctocolors-cjs@2.1.2:
@@ -12019,19 +11086,19 @@ snapshots:
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
- '@angular-devkit/architect@0.1703.10(chokidar@3.6.0)':
+ '@angular-devkit/architect@0.1703.11(chokidar@3.6.0)':
dependencies:
- '@angular-devkit/core': 17.3.10(chokidar@3.6.0)
+ '@angular-devkit/core': 17.3.11(chokidar@3.6.0)
rxjs: 7.8.1
transitivePeerDependencies:
- chokidar
- '@angular-devkit/build-angular@17.3.10(@angular/compiler-cli@16.2.12(@angular/compiler@16.2.12(@angular/core@16.2.12(rxjs@7.8.1)(zone.js@0.13.3)))(typescript@5.1.6))(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/express@4.17.21)(@types/node@22.9.0)(chokidar@3.6.0)(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@22.9.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.1.6)))(tailwindcss@3.4.13(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.1.6)))(typescript@5.1.6)':
+ '@angular-devkit/build-angular@17.3.11(@angular/compiler-cli@16.2.12(@angular/compiler@16.2.12(@angular/core@16.2.12(rxjs@7.8.1)(zone.js@0.13.3)))(typescript@5.1.6))(@types/express@4.17.21)(@types/node@20.17.6)(chokidar@3.6.0)(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@20.17.6)(node-notifier@8.0.2))(tailwindcss@3.4.14)(typescript@5.1.6)':
dependencies:
'@ampproject/remapping': 2.3.0
- '@angular-devkit/architect': 0.1703.10(chokidar@3.6.0)
- '@angular-devkit/build-webpack': 0.1703.10(chokidar@3.6.0)(webpack-dev-server@4.15.1(webpack@5.94.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.20.1)))(webpack@5.94.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.20.1))
- '@angular-devkit/core': 17.3.10(chokidar@3.6.0)
+ '@angular-devkit/architect': 0.1703.11(chokidar@3.6.0)
+ '@angular-devkit/build-webpack': 0.1703.11(chokidar@3.6.0)(webpack-dev-server@4.15.1(webpack@5.94.0(esbuild@0.20.1)))(webpack@5.94.0(esbuild@0.20.1))
+ '@angular-devkit/core': 17.3.11(chokidar@3.6.0)
'@angular/compiler-cli': 16.2.12(@angular/compiler@16.2.12(@angular/core@16.2.12(rxjs@7.8.1)(zone.js@0.13.3)))(typescript@5.1.6)
'@babel/core': 7.24.0
'@babel/generator': 7.23.6
@@ -12043,29 +11110,29 @@ snapshots:
'@babel/preset-env': 7.24.0(@babel/core@7.24.0)
'@babel/runtime': 7.24.0
'@discoveryjs/json-ext': 0.5.7
- '@ngtools/webpack': 17.3.10(@angular/compiler-cli@16.2.12(@angular/compiler@16.2.12(@angular/core@16.2.12(rxjs@7.8.1)(zone.js@0.13.3)))(typescript@5.1.6))(typescript@5.1.6)(webpack@5.94.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.20.1))
- '@vitejs/plugin-basic-ssl': 1.1.0(vite@5.1.8(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.29.1))
+ '@ngtools/webpack': 17.3.11(@angular/compiler-cli@16.2.12(@angular/compiler@16.2.12(@angular/core@16.2.12(rxjs@7.8.1)(zone.js@0.13.3)))(typescript@5.1.6))(typescript@5.1.6)(webpack@5.94.0(esbuild@0.20.1))
+ '@vitejs/plugin-basic-ssl': 1.1.0(vite@5.1.8(@types/node@20.17.6)(less@4.2.0)(sass@1.71.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.94.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.20.1))
+ babel-loader: 9.1.3(@babel/core@7.24.0)(webpack@5.94.0(esbuild@0.20.1))
babel-plugin-istanbul: 6.1.1
browserslist: 4.24.2
- copy-webpack-plugin: 11.0.0(webpack@5.94.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.20.1))
+ copy-webpack-plugin: 11.0.0(webpack@5.94.0(esbuild@0.20.1))
critters: 0.0.22
- css-loader: 6.10.0(webpack@5.94.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.20.1))
+ css-loader: 6.10.0(webpack@5.94.0(esbuild@0.20.1))
esbuild-wasm: 0.20.1
fast-glob: 3.3.2
- http-proxy-middleware: 2.0.6(@types/express@4.17.21)
+ http-proxy-middleware: 2.0.7(@types/express@4.17.21)
https-proxy-agent: 7.0.4
inquirer: 9.2.15
jsonc-parser: 3.2.1
karma-source-map-support: 1.4.0
less: 4.2.0
- less-loader: 11.1.0(less@4.2.0)(webpack@5.94.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.20.1))
- license-webpack-plugin: 4.0.2(webpack@5.94.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.20.1))
+ less-loader: 11.1.0(less@4.2.0)(webpack@5.94.0(esbuild@0.20.1))
+ license-webpack-plugin: 4.0.2(webpack@5.94.0(esbuild@0.20.1))
loader-utils: 3.2.1
magic-string: 0.30.8
- mini-css-extract-plugin: 2.8.1(webpack@5.94.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.20.1))
+ mini-css-extract-plugin: 2.8.1(webpack@5.94.0(esbuild@0.20.1))
mrmime: 2.0.0
open: 8.4.2
ora: 5.4.1
@@ -12073,31 +11140,31 @@ snapshots:
picomatch: 4.0.1
piscina: 4.4.0
postcss: 8.4.35
- postcss-loader: 8.1.1(postcss@8.4.35)(typescript@5.1.6)(webpack@5.94.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.20.1))
+ postcss-loader: 8.1.1(postcss@8.4.35)(typescript@5.1.6)(webpack@5.94.0(esbuild@0.20.1))
resolve-url-loader: 5.0.0
rxjs: 7.8.1
sass: 1.71.1
- sass-loader: 14.1.1(sass@1.71.1)(webpack@5.94.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.20.1))
+ sass-loader: 14.1.1(sass@1.71.1)(webpack@5.94.0(esbuild@0.20.1))
semver: 7.6.0
- source-map-loader: 5.0.0(webpack@5.94.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.20.1))
+ source-map-loader: 5.0.0(webpack@5.94.0(esbuild@0.20.1))
source-map-support: 0.5.21
terser: 5.29.1
tree-kill: 1.2.2
tslib: 2.6.2
typescript: 5.1.6
undici: 6.11.1
- vite: 5.1.8(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.29.1)
+ vite: 5.1.8(@types/node@20.17.6)(less@4.2.0)(sass@1.71.1)(terser@5.29.1)
watchpack: 2.4.0
- webpack: 5.94.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.20.1)
- webpack-dev-middleware: 6.1.2(webpack@5.94.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.20.1))
- webpack-dev-server: 4.15.1(webpack@5.94.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.20.1))
+ webpack: 5.94.0(esbuild@0.20.1)
+ webpack-dev-middleware: 6.1.2(webpack@5.94.0(esbuild@0.20.1))
+ webpack-dev-server: 4.15.1(webpack@5.94.0(esbuild@0.20.1))
webpack-merge: 5.10.0
- webpack-subresource-integrity: 5.1.0(webpack@5.94.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.20.1))
+ webpack-subresource-integrity: 5.1.0(webpack@5.94.0(esbuild@0.20.1))
optionalDependencies:
esbuild: 0.20.1
- jest: 29.7.0(@types/node@22.9.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.1.6))
+ jest: 29.7.0(@types/node@20.17.6)(node-notifier@8.0.2)
jest-environment-jsdom: 29.7.0
- tailwindcss: 3.4.13(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.1.6))
+ tailwindcss: 3.4.14
transitivePeerDependencies:
- '@rspack/core'
- '@swc/core'
@@ -12117,12 +11184,12 @@ snapshots:
- utf-8-validate
- webpack-cli
- '@angular-devkit/build-webpack@0.1703.10(chokidar@3.6.0)(webpack-dev-server@4.15.1(webpack@5.94.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.20.1)))(webpack@5.94.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.20.1))':
+ '@angular-devkit/build-webpack@0.1703.11(chokidar@3.6.0)(webpack-dev-server@4.15.1(webpack@5.94.0(esbuild@0.20.1)))(webpack@5.94.0(esbuild@0.20.1))':
dependencies:
- '@angular-devkit/architect': 0.1703.10(chokidar@3.6.0)
+ '@angular-devkit/architect': 0.1703.11(chokidar@3.6.0)
rxjs: 7.8.1
- webpack: 5.94.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.20.1)
- webpack-dev-server: 4.15.1(webpack@5.94.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.20.1))
+ webpack: 5.94.0(esbuild@0.20.1)
+ webpack-dev-server: 4.15.1(webpack@5.94.0(esbuild@0.20.1))
transitivePeerDependencies:
- chokidar
@@ -12137,7 +11204,7 @@ snapshots:
optionalDependencies:
chokidar: 3.6.0
- '@angular-devkit/core@17.3.10(chokidar@3.6.0)':
+ '@angular-devkit/core@17.3.11(chokidar@3.6.0)':
dependencies:
ajv: 8.12.0
ajv-formats: 2.1.1(ajv@8.12.0)
@@ -12162,13 +11229,13 @@ snapshots:
dependencies:
'@angular/core': 16.2.12(rxjs@7.8.1)(zone.js@0.13.3)
rxjs: 7.8.1
- tslib: 2.6.3
+ tslib: 2.8.1
'@angular/common@16.2.12(@angular/core@8.2.14(rxjs@7.8.1)(zone.js@0.13.3))(rxjs@7.8.1)':
dependencies:
'@angular/core': 8.2.14(rxjs@7.8.1)(zone.js@0.13.3)
rxjs: 7.8.1
- tslib: 2.6.3
+ tslib: 2.8.1
'@angular/compiler-cli@16.2.12(@angular/compiler@16.2.12(@angular/core@16.2.12(rxjs@7.8.1)(zone.js@0.13.3)))(typescript@5.1.6)':
dependencies:
@@ -12179,7 +11246,7 @@ snapshots:
convert-source-map: 1.9.0
reflect-metadata: 0.1.14
semver: 7.6.3
- tslib: 2.6.3
+ tslib: 2.8.1
typescript: 5.1.6
yargs: 17.7.2
transitivePeerDependencies:
@@ -12187,14 +11254,14 @@ snapshots:
'@angular/compiler@16.2.12(@angular/core@16.2.12(rxjs@7.8.1)(zone.js@0.13.3))':
dependencies:
- tslib: 2.6.3
+ tslib: 2.8.1
optionalDependencies:
'@angular/core': 16.2.12(rxjs@7.8.1)(zone.js@0.13.3)
'@angular/core@16.2.12(rxjs@7.8.1)(zone.js@0.13.3)':
dependencies:
rxjs: 7.8.1
- tslib: 2.6.3
+ tslib: 2.8.1
zone.js: 0.13.3
'@angular/core@8.2.14(rxjs@7.8.1)(zone.js@0.13.3)':
@@ -12209,7 +11276,7 @@ snapshots:
'@angular/core': 16.2.12(rxjs@7.8.1)(zone.js@0.13.3)
'@angular/platform-browser': 16.2.12(@angular/common@16.2.12(@angular/core@16.2.12(rxjs@7.8.1)(zone.js@0.13.3))(rxjs@7.8.1))(@angular/core@16.2.12(rxjs@7.8.1)(zone.js@0.13.3))
rxjs: 7.8.1
- tslib: 2.6.3
+ tslib: 2.8.1
'@angular/forms@8.2.14(@angular/common@16.2.12(@angular/core@8.2.14(rxjs@7.8.1)(zone.js@0.13.3))(rxjs@7.8.1))(@angular/core@8.2.14(rxjs@7.8.1)(zone.js@0.13.3))(@angular/platform-browser@16.2.12(@angular/common@16.2.12(@angular/core@8.2.14(rxjs@7.8.1)(zone.js@0.13.3))(rxjs@7.8.1))(@angular/core@8.2.14(rxjs@7.8.1)(zone.js@0.13.3)))(rxjs@7.8.1)':
dependencies:
@@ -12225,19 +11292,19 @@ snapshots:
'@angular/compiler': 16.2.12(@angular/core@16.2.12(rxjs@7.8.1)(zone.js@0.13.3))
'@angular/core': 16.2.12(rxjs@7.8.1)(zone.js@0.13.3)
'@angular/platform-browser': 16.2.12(@angular/common@16.2.12(@angular/core@16.2.12(rxjs@7.8.1)(zone.js@0.13.3))(rxjs@7.8.1))(@angular/core@16.2.12(rxjs@7.8.1)(zone.js@0.13.3))
- tslib: 2.6.3
+ tslib: 2.8.1
'@angular/platform-browser@16.2.12(@angular/common@16.2.12(@angular/core@16.2.12(rxjs@7.8.1)(zone.js@0.13.3))(rxjs@7.8.1))(@angular/core@16.2.12(rxjs@7.8.1)(zone.js@0.13.3))':
dependencies:
'@angular/common': 16.2.12(@angular/core@16.2.12(rxjs@7.8.1)(zone.js@0.13.3))(rxjs@7.8.1)
'@angular/core': 16.2.12(rxjs@7.8.1)(zone.js@0.13.3)
- tslib: 2.6.3
+ tslib: 2.8.1
'@angular/platform-browser@16.2.12(@angular/common@16.2.12(@angular/core@8.2.14(rxjs@7.8.1)(zone.js@0.13.3))(rxjs@7.8.1))(@angular/core@8.2.14(rxjs@7.8.1)(zone.js@0.13.3))':
dependencies:
'@angular/common': 16.2.12(@angular/core@8.2.14(rxjs@7.8.1)(zone.js@0.13.3))(rxjs@7.8.1)
'@angular/core': 8.2.14(rxjs@7.8.1)(zone.js@0.13.3)
- tslib: 2.6.3
+ tslib: 2.8.1
'@angular/router@16.2.12(@angular/common@16.2.12(@angular/core@16.2.12(rxjs@7.8.1)(zone.js@0.13.3))(rxjs@7.8.1))(@angular/core@16.2.12(rxjs@7.8.1)(zone.js@0.13.3))(@angular/platform-browser@16.2.12(@angular/common@16.2.12(@angular/core@16.2.12(rxjs@7.8.1)(zone.js@0.13.3))(rxjs@7.8.1))(@angular/core@16.2.12(rxjs@7.8.1)(zone.js@0.13.3)))(rxjs@7.8.1)':
dependencies:
@@ -12245,46 +11312,32 @@ snapshots:
'@angular/core': 16.2.12(rxjs@7.8.1)(zone.js@0.13.3)
'@angular/platform-browser': 16.2.12(@angular/common@16.2.12(@angular/core@16.2.12(rxjs@7.8.1)(zone.js@0.13.3))(rxjs@7.8.1))(@angular/core@16.2.12(rxjs@7.8.1)(zone.js@0.13.3))
rxjs: 7.8.1
- tslib: 2.6.3
+ tslib: 2.8.1
'@antfu/utils@0.7.10': {}
- '@babel/code-frame@7.24.7':
- dependencies:
- '@babel/highlight': 7.24.7
- picocolors: 1.1.0
-
- '@babel/code-frame@7.25.7':
- dependencies:
- '@babel/highlight': 7.25.7
- picocolors: 1.1.0
-
'@babel/code-frame@7.26.2':
dependencies:
'@babel/helper-validator-identifier': 7.25.9
js-tokens: 4.0.0
picocolors: 1.1.1
- '@babel/compat-data@7.24.7': {}
-
- '@babel/compat-data@7.25.7': {}
-
'@babel/compat-data@7.26.2': {}
'@babel/core@7.23.2':
dependencies:
'@ampproject/remapping': 2.3.0
- '@babel/code-frame': 7.24.7
- '@babel/generator': 7.25.5
- '@babel/helper-compilation-targets': 7.24.7
- '@babel/helper-module-transforms': 7.24.7(@babel/core@7.23.2)
- '@babel/helpers': 7.24.7
- '@babel/parser': 7.25.4
- '@babel/template': 7.25.0
- '@babel/traverse': 7.25.4
- '@babel/types': 7.25.4
+ '@babel/code-frame': 7.26.2
+ '@babel/generator': 7.26.2
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.23.2)
+ '@babel/helpers': 7.26.0
+ '@babel/parser': 7.26.2
+ '@babel/template': 7.25.9
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
convert-source-map: 2.0.0
- debug: 4.3.6(supports-color@8.1.1)
+ debug: 4.3.7(supports-color@9.4.0)
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
@@ -12295,7 +11348,7 @@ snapshots:
dependencies:
'@ampproject/remapping': 2.3.0
'@babel/code-frame': 7.26.2
- '@babel/generator': 7.23.6
+ '@babel/generator': 7.26.2
'@babel/helper-compilation-targets': 7.25.9
'@babel/helper-module-transforms': 7.26.0(@babel/core@7.24.0)
'@babel/helpers': 7.26.0
@@ -12304,47 +11357,27 @@ snapshots:
'@babel/traverse': 7.25.9
'@babel/types': 7.26.0
convert-source-map: 2.0.0
- debug: 4.3.7
- gensync: 1.0.0-beta.2
- json5: 2.2.3
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
-
- '@babel/core@7.24.7':
- dependencies:
- '@ampproject/remapping': 2.3.0
- '@babel/code-frame': 7.24.7
- '@babel/generator': 7.25.5
- '@babel/helper-compilation-targets': 7.24.7
- '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7)
- '@babel/helpers': 7.24.7
- '@babel/parser': 7.25.4
- '@babel/template': 7.25.0
- '@babel/traverse': 7.25.4
- '@babel/types': 7.25.4
- convert-source-map: 2.0.0
- debug: 4.3.7
+ debug: 4.3.7(supports-color@9.4.0)
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/core@7.25.7':
+ '@babel/core@7.26.0':
dependencies:
'@ampproject/remapping': 2.3.0
- '@babel/code-frame': 7.25.7
- '@babel/generator': 7.25.7
- '@babel/helper-compilation-targets': 7.25.7
- '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.7)
- '@babel/helpers': 7.25.7
- '@babel/parser': 7.25.7
- '@babel/template': 7.25.7
- '@babel/traverse': 7.25.7
- '@babel/types': 7.25.7
+ '@babel/code-frame': 7.26.2
+ '@babel/generator': 7.26.2
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
+ '@babel/helpers': 7.26.0
+ '@babel/parser': 7.26.2
+ '@babel/template': 7.25.9
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
convert-source-map: 2.0.0
- debug: 4.3.6(supports-color@8.1.1)
+ debug: 4.3.7(supports-color@9.4.0)
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
@@ -12358,20 +11391,6 @@ snapshots:
'@jridgewell/trace-mapping': 0.3.25
jsesc: 2.5.2
- '@babel/generator@7.25.5':
- dependencies:
- '@babel/types': 7.25.4
- '@jridgewell/gen-mapping': 0.3.5
- '@jridgewell/trace-mapping': 0.3.25
- jsesc: 2.5.2
-
- '@babel/generator@7.25.7':
- dependencies:
- '@babel/types': 7.25.7
- '@jridgewell/gen-mapping': 0.3.5
- '@jridgewell/trace-mapping': 0.3.25
- jsesc: 3.0.2
-
'@babel/generator@7.26.2':
dependencies:
'@babel/parser': 7.26.2
@@ -12384,10 +11403,6 @@ snapshots:
dependencies:
'@babel/types': 7.26.0
- '@babel/helper-annotate-as-pure@7.25.7':
- dependencies:
- '@babel/types': 7.25.7
-
'@babel/helper-annotate-as-pure@7.25.9':
dependencies:
'@babel/types': 7.26.0
@@ -12399,22 +11414,6 @@ snapshots:
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.24.0
- lru-cache: 5.1.1
- semver: 6.3.1
-
- '@babel/helper-compilation-targets@7.25.7':
- dependencies:
- '@babel/compat-data': 7.25.7
- '@babel/helper-validator-option': 7.25.7
- browserslist: 4.24.0
- lru-cache: 5.1.1
- semver: 6.3.1
-
'@babel/helper-compilation-targets@7.25.9':
dependencies:
'@babel/compat-data': 7.26.2
@@ -12423,26 +11422,26 @@ snapshots:
lru-cache: 5.1.1
semver: 6.3.1
- '@babel/helper-create-class-features-plugin@7.25.7(@babel/core@7.24.7)':
+ '@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.24.0)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-annotate-as-pure': 7.25.7
- '@babel/helper-member-expression-to-functions': 7.25.7
- '@babel/helper-optimise-call-expression': 7.25.7
- '@babel/helper-replace-supers': 7.25.7(@babel/core@7.24.7)
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.7
- '@babel/traverse': 7.25.7
+ '@babel/core': 7.24.0
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-member-expression-to-functions': 7.25.9
+ '@babel/helper-optimise-call-expression': 7.25.9
+ '@babel/helper-replace-supers': 7.25.9(@babel/core@7.24.0)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ '@babel/traverse': 7.25.9
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.24.0)':
+ '@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.26.0
'@babel/helper-annotate-as-pure': 7.25.9
'@babel/helper-member-expression-to-functions': 7.25.9
'@babel/helper-optimise-call-expression': 7.25.9
- '@babel/helper-replace-supers': 7.25.9(@babel/core@7.24.0)
+ '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0)
'@babel/helper-skip-transparent-expression-wrappers': 7.25.9
'@babel/traverse': 7.25.9
semver: 6.3.1
@@ -12461,7 +11460,7 @@ snapshots:
'@babel/core': 7.24.0
'@babel/helper-compilation-targets': 7.25.9
'@babel/helper-plugin-utils': 7.25.9
- debug: 4.3.7
+ debug: 4.3.7(supports-color@9.4.0)
lodash.debounce: 4.0.8
resolve: 1.22.8
transitivePeerDependencies:
@@ -12472,7 +11471,7 @@ snapshots:
'@babel/core': 7.24.0
'@babel/helper-compilation-targets': 7.25.9
'@babel/helper-plugin-utils': 7.25.9
- debug: 4.3.7
+ debug: 4.3.7(supports-color@9.4.0)
lodash.debounce: 4.0.8
resolve: 1.22.8
transitivePeerDependencies:
@@ -12480,14 +11479,7 @@ snapshots:
'@babel/helper-environment-visitor@7.24.7':
dependencies:
- '@babel/types': 7.25.4
-
- '@babel/helper-member-expression-to-functions@7.25.7':
- dependencies:
- '@babel/traverse': 7.25.7
- '@babel/types': 7.25.7
- transitivePeerDependencies:
- - supports-color
+ '@babel/types': 7.26.0
'@babel/helper-member-expression-to-functions@7.25.9':
dependencies:
@@ -12496,20 +11488,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-imports@7.24.7':
- dependencies:
- '@babel/traverse': 7.25.4
- '@babel/types': 7.25.4
- transitivePeerDependencies:
- - supports-color
-
- '@babel/helper-module-imports@7.25.7':
- dependencies:
- '@babel/traverse': 7.25.7
- '@babel/types': 7.25.7
- transitivePeerDependencies:
- - supports-color
-
'@babel/helper-module-imports@7.25.9':
dependencies:
'@babel/traverse': 7.25.9
@@ -12517,35 +11495,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.24.7(@babel/core@7.23.2)':
+ '@babel/helper-module-transforms@7.26.0(@babel/core@7.23.2)':
dependencies:
'@babel/core': 7.23.2
- '@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
- '@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.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-module-imports': 7.25.7
- '@babel/helper-simple-access': 7.25.7
- '@babel/helper-validator-identifier': 7.25.7
- '@babel/traverse': 7.25.7
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/helper-validator-identifier': 7.25.9
+ '@babel/traverse': 7.25.9
transitivePeerDependencies:
- supports-color
@@ -12558,18 +11513,19 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-optimise-call-expression@7.25.7':
+ '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.0)':
dependencies:
- '@babel/types': 7.25.7
+ '@babel/core': 7.26.0
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/helper-validator-identifier': 7.25.9
+ '@babel/traverse': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
'@babel/helper-optimise-call-expression@7.25.9':
dependencies:
'@babel/types': 7.26.0
- '@babel/helper-plugin-utils@7.24.8': {}
-
- '@babel/helper-plugin-utils@7.25.7': {}
-
'@babel/helper-plugin-utils@7.25.9': {}
'@babel/helper-remap-async-to-generator@7.25.9(@babel/core@7.24.0)':
@@ -12581,15 +11537,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-replace-supers@7.25.7(@babel/core@7.24.7)':
- dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-member-expression-to-functions': 7.25.7
- '@babel/helper-optimise-call-expression': 7.25.7
- '@babel/traverse': 7.25.7
- transitivePeerDependencies:
- - supports-color
-
'@babel/helper-replace-supers@7.25.9(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
@@ -12599,17 +11546,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-simple-access@7.24.7':
+ '@babel/helper-replace-supers@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/traverse': 7.25.4
- '@babel/types': 7.25.4
- transitivePeerDependencies:
- - supports-color
-
- '@babel/helper-simple-access@7.25.7':
- dependencies:
- '@babel/traverse': 7.25.7
- '@babel/types': 7.25.7
+ '@babel/core': 7.26.0
+ '@babel/helper-member-expression-to-functions': 7.25.9
+ '@babel/helper-optimise-call-expression': 7.25.9
+ '@babel/traverse': 7.25.9
transitivePeerDependencies:
- supports-color
@@ -12620,13 +11562,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-skip-transparent-expression-wrappers@7.25.7':
- dependencies:
- '@babel/traverse': 7.25.7
- '@babel/types': 7.25.7
- transitivePeerDependencies:
- - supports-color
-
'@babel/helper-skip-transparent-expression-wrappers@7.25.9':
dependencies:
'@babel/traverse': 7.25.9
@@ -12638,26 +11573,10 @@ snapshots:
dependencies:
'@babel/types': 7.26.0
- '@babel/helper-split-export-declaration@7.24.7':
- dependencies:
- '@babel/types': 7.25.4
-
- '@babel/helper-string-parser@7.24.8': {}
-
- '@babel/helper-string-parser@7.25.7': {}
-
'@babel/helper-string-parser@7.25.9': {}
- '@babel/helper-validator-identifier@7.24.7': {}
-
- '@babel/helper-validator-identifier@7.25.7': {}
-
'@babel/helper-validator-identifier@7.25.9': {}
- '@babel/helper-validator-option@7.24.7': {}
-
- '@babel/helper-validator-option@7.25.7': {}
-
'@babel/helper-validator-option@7.25.9': {}
'@babel/helper-wrap-function@7.25.9':
@@ -12668,43 +11587,11 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helpers@7.24.7':
- dependencies:
- '@babel/template': 7.25.0
- '@babel/types': 7.25.4
-
- '@babel/helpers@7.25.7':
- dependencies:
- '@babel/template': 7.25.7
- '@babel/types': 7.25.7
-
'@babel/helpers@7.26.0':
dependencies:
'@babel/template': 7.25.9
'@babel/types': 7.26.0
- '@babel/highlight@7.24.7':
- dependencies:
- '@babel/helper-validator-identifier': 7.24.7
- chalk: 2.4.2
- js-tokens: 4.0.0
- picocolors: 1.1.0
-
- '@babel/highlight@7.25.7':
- dependencies:
- '@babel/helper-validator-identifier': 7.25.7
- chalk: 2.4.2
- js-tokens: 4.0.0
- picocolors: 1.1.0
-
- '@babel/parser@7.25.4':
- dependencies:
- '@babel/types': 7.25.4
-
- '@babel/parser@7.25.7':
- dependencies:
- '@babel/types': 7.25.7
-
'@babel/parser@7.26.2':
dependencies:
'@babel/types': 7.26.0
@@ -12731,12 +11618,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-proposal-decorators@7.25.7(@babel/core@7.24.7)':
+ '@babel/plugin-proposal-decorators@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-decorators': 7.25.7(@babel/core@7.24.7)
+ '@babel/core': 7.26.0
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-decorators': 7.25.9(@babel/core@7.26.0)
transitivePeerDependencies:
- supports-color
@@ -12747,37 +11634,42 @@ snapshots:
'@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.8
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.7)':
+ '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.24.7)':
+ '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
'@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.8
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.7)':
+ '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
'@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.25.9
- '@babel/plugin-syntax-decorators@7.25.7(@babel/core@7.24.7)':
+ '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-syntax-decorators@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.0)':
dependencies:
@@ -12794,125 +11686,125 @@ snapshots:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-import-attributes@7.25.7(@babel/core@7.24.7)':
- dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.25.7
-
'@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
'@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.8
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.7)':
+ '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
'@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.8
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.7)':
+ '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.7)':
+ '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
'@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.8
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.7)':
+ '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
'@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.8
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.7)':
+ '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
'@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.8
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.7)':
+ '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
'@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.8
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.7)':
+ '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
'@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.8
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.7)':
+ '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
'@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.25.9
- '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.0)':
+ '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.7)':
+ '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.0)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.24.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-typescript@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-typescript@7.25.7(@babel/core@7.24.7)':
+ '@babel/plugin-syntax-typescript@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.0)':
dependencies:
@@ -13170,15 +12062,15 @@ snapshots:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-react-jsx-self@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-transform-react-jsx-self@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-react-jsx-source@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-transform-react-jsx-source@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-transform-regenerator@7.25.9(@babel/core@7.24.0)':
dependencies:
@@ -13231,14 +12123,14 @@ snapshots:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-typescript@7.25.7(@babel/core@7.24.7)':
+ '@babel/plugin-transform-typescript@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-annotate-as-pure': 7.25.7
- '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.7
- '@babel/plugin-syntax-typescript': 7.25.7(@babel/core@7.24.7)
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.0)
transitivePeerDependencies:
- supports-color
@@ -13362,19 +12254,7 @@ snapshots:
dependencies:
regenerator-runtime: 0.14.1
- '@babel/standalone@7.25.7': {}
-
- '@babel/template@7.25.0':
- dependencies:
- '@babel/code-frame': 7.24.7
- '@babel/parser': 7.25.4
- '@babel/types': 7.25.4
-
- '@babel/template@7.25.7':
- dependencies:
- '@babel/code-frame': 7.25.7
- '@babel/parser': 7.25.7
- '@babel/types': 7.25.7
+ '@babel/standalone@7.26.2': {}
'@babel/template@7.25.9':
dependencies:
@@ -13382,30 +12262,6 @@ snapshots:
'@babel/parser': 7.26.2
'@babel/types': 7.26.0
- '@babel/traverse@7.25.4':
- dependencies:
- '@babel/code-frame': 7.24.7
- '@babel/generator': 7.25.5
- '@babel/parser': 7.25.4
- '@babel/template': 7.25.0
- '@babel/types': 7.25.4
- debug: 4.3.7
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
-
- '@babel/traverse@7.25.7':
- dependencies:
- '@babel/code-frame': 7.25.7
- '@babel/generator': 7.25.7
- '@babel/parser': 7.25.7
- '@babel/template': 7.25.7
- '@babel/types': 7.25.7
- debug: 4.3.7
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
-
'@babel/traverse@7.25.9':
dependencies:
'@babel/code-frame': 7.26.2
@@ -13413,24 +12269,12 @@ snapshots:
'@babel/parser': 7.26.2
'@babel/template': 7.25.9
'@babel/types': 7.26.0
- debug: 4.3.7
+ debug: 4.3.7(supports-color@9.4.0)
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- '@babel/types@7.25.4':
- dependencies:
- '@babel/helper-string-parser': 7.24.8
- '@babel/helper-validator-identifier': 7.24.7
- to-fast-properties: 2.0.0
-
- '@babel/types@7.25.7':
- dependencies:
- '@babel/helper-string-parser': 7.25.7
- '@babel/helper-validator-identifier': 7.25.7
- to-fast-properties: 2.0.0
-
- '@babel/types@7.26.0':
+ '@babel/types@7.26.0':
dependencies:
'@babel/helper-string-parser': 7.25.9
'@babel/helper-validator-identifier': 7.25.9
@@ -13446,11 +12290,6 @@ snapshots:
exec-sh: 0.3.6
minimist: 1.2.8
- '@cspotcode/source-map-support@0.8.1':
- dependencies:
- '@jridgewell/trace-mapping': 0.3.9
- optional: true
-
'@discoveryjs/json-ext@0.5.7': {}
'@emnapi/core@1.3.1':
@@ -13472,22 +12311,19 @@ snapshots:
'@esbuild/aix-ppc64@0.20.1':
optional: true
- '@esbuild/aix-ppc64@0.20.2':
- optional: true
-
'@esbuild/aix-ppc64@0.21.5':
optional: true
'@esbuild/aix-ppc64@0.23.1':
optional: true
- '@esbuild/android-arm64@0.19.12':
+ '@esbuild/aix-ppc64@0.24.0':
optional: true
- '@esbuild/android-arm64@0.20.1':
+ '@esbuild/android-arm64@0.19.12':
optional: true
- '@esbuild/android-arm64@0.20.2':
+ '@esbuild/android-arm64@0.20.1':
optional: true
'@esbuild/android-arm64@0.21.5':
@@ -13496,13 +12332,13 @@ snapshots:
'@esbuild/android-arm64@0.23.1':
optional: true
- '@esbuild/android-arm@0.19.12':
+ '@esbuild/android-arm64@0.24.0':
optional: true
- '@esbuild/android-arm@0.20.1':
+ '@esbuild/android-arm@0.19.12':
optional: true
- '@esbuild/android-arm@0.20.2':
+ '@esbuild/android-arm@0.20.1':
optional: true
'@esbuild/android-arm@0.21.5':
@@ -13511,13 +12347,13 @@ snapshots:
'@esbuild/android-arm@0.23.1':
optional: true
- '@esbuild/android-x64@0.19.12':
+ '@esbuild/android-arm@0.24.0':
optional: true
- '@esbuild/android-x64@0.20.1':
+ '@esbuild/android-x64@0.19.12':
optional: true
- '@esbuild/android-x64@0.20.2':
+ '@esbuild/android-x64@0.20.1':
optional: true
'@esbuild/android-x64@0.21.5':
@@ -13526,13 +12362,13 @@ snapshots:
'@esbuild/android-x64@0.23.1':
optional: true
- '@esbuild/darwin-arm64@0.19.12':
+ '@esbuild/android-x64@0.24.0':
optional: true
- '@esbuild/darwin-arm64@0.20.1':
+ '@esbuild/darwin-arm64@0.19.12':
optional: true
- '@esbuild/darwin-arm64@0.20.2':
+ '@esbuild/darwin-arm64@0.20.1':
optional: true
'@esbuild/darwin-arm64@0.21.5':
@@ -13541,13 +12377,13 @@ snapshots:
'@esbuild/darwin-arm64@0.23.1':
optional: true
- '@esbuild/darwin-x64@0.19.12':
+ '@esbuild/darwin-arm64@0.24.0':
optional: true
- '@esbuild/darwin-x64@0.20.1':
+ '@esbuild/darwin-x64@0.19.12':
optional: true
- '@esbuild/darwin-x64@0.20.2':
+ '@esbuild/darwin-x64@0.20.1':
optional: true
'@esbuild/darwin-x64@0.21.5':
@@ -13556,13 +12392,13 @@ snapshots:
'@esbuild/darwin-x64@0.23.1':
optional: true
- '@esbuild/freebsd-arm64@0.19.12':
+ '@esbuild/darwin-x64@0.24.0':
optional: true
- '@esbuild/freebsd-arm64@0.20.1':
+ '@esbuild/freebsd-arm64@0.19.12':
optional: true
- '@esbuild/freebsd-arm64@0.20.2':
+ '@esbuild/freebsd-arm64@0.20.1':
optional: true
'@esbuild/freebsd-arm64@0.21.5':
@@ -13571,13 +12407,13 @@ snapshots:
'@esbuild/freebsd-arm64@0.23.1':
optional: true
- '@esbuild/freebsd-x64@0.19.12':
+ '@esbuild/freebsd-arm64@0.24.0':
optional: true
- '@esbuild/freebsd-x64@0.20.1':
+ '@esbuild/freebsd-x64@0.19.12':
optional: true
- '@esbuild/freebsd-x64@0.20.2':
+ '@esbuild/freebsd-x64@0.20.1':
optional: true
'@esbuild/freebsd-x64@0.21.5':
@@ -13586,13 +12422,13 @@ snapshots:
'@esbuild/freebsd-x64@0.23.1':
optional: true
- '@esbuild/linux-arm64@0.19.12':
+ '@esbuild/freebsd-x64@0.24.0':
optional: true
- '@esbuild/linux-arm64@0.20.1':
+ '@esbuild/linux-arm64@0.19.12':
optional: true
- '@esbuild/linux-arm64@0.20.2':
+ '@esbuild/linux-arm64@0.20.1':
optional: true
'@esbuild/linux-arm64@0.21.5':
@@ -13601,13 +12437,13 @@ snapshots:
'@esbuild/linux-arm64@0.23.1':
optional: true
- '@esbuild/linux-arm@0.19.12':
+ '@esbuild/linux-arm64@0.24.0':
optional: true
- '@esbuild/linux-arm@0.20.1':
+ '@esbuild/linux-arm@0.19.12':
optional: true
- '@esbuild/linux-arm@0.20.2':
+ '@esbuild/linux-arm@0.20.1':
optional: true
'@esbuild/linux-arm@0.21.5':
@@ -13616,13 +12452,13 @@ snapshots:
'@esbuild/linux-arm@0.23.1':
optional: true
- '@esbuild/linux-ia32@0.19.12':
+ '@esbuild/linux-arm@0.24.0':
optional: true
- '@esbuild/linux-ia32@0.20.1':
+ '@esbuild/linux-ia32@0.19.12':
optional: true
- '@esbuild/linux-ia32@0.20.2':
+ '@esbuild/linux-ia32@0.20.1':
optional: true
'@esbuild/linux-ia32@0.21.5':
@@ -13631,13 +12467,13 @@ snapshots:
'@esbuild/linux-ia32@0.23.1':
optional: true
- '@esbuild/linux-loong64@0.19.12':
+ '@esbuild/linux-ia32@0.24.0':
optional: true
- '@esbuild/linux-loong64@0.20.1':
+ '@esbuild/linux-loong64@0.19.12':
optional: true
- '@esbuild/linux-loong64@0.20.2':
+ '@esbuild/linux-loong64@0.20.1':
optional: true
'@esbuild/linux-loong64@0.21.5':
@@ -13646,13 +12482,13 @@ snapshots:
'@esbuild/linux-loong64@0.23.1':
optional: true
- '@esbuild/linux-mips64el@0.19.12':
+ '@esbuild/linux-loong64@0.24.0':
optional: true
- '@esbuild/linux-mips64el@0.20.1':
+ '@esbuild/linux-mips64el@0.19.12':
optional: true
- '@esbuild/linux-mips64el@0.20.2':
+ '@esbuild/linux-mips64el@0.20.1':
optional: true
'@esbuild/linux-mips64el@0.21.5':
@@ -13661,13 +12497,13 @@ snapshots:
'@esbuild/linux-mips64el@0.23.1':
optional: true
- '@esbuild/linux-ppc64@0.19.12':
+ '@esbuild/linux-mips64el@0.24.0':
optional: true
- '@esbuild/linux-ppc64@0.20.1':
+ '@esbuild/linux-ppc64@0.19.12':
optional: true
- '@esbuild/linux-ppc64@0.20.2':
+ '@esbuild/linux-ppc64@0.20.1':
optional: true
'@esbuild/linux-ppc64@0.21.5':
@@ -13676,13 +12512,13 @@ snapshots:
'@esbuild/linux-ppc64@0.23.1':
optional: true
- '@esbuild/linux-riscv64@0.19.12':
+ '@esbuild/linux-ppc64@0.24.0':
optional: true
- '@esbuild/linux-riscv64@0.20.1':
+ '@esbuild/linux-riscv64@0.19.12':
optional: true
- '@esbuild/linux-riscv64@0.20.2':
+ '@esbuild/linux-riscv64@0.20.1':
optional: true
'@esbuild/linux-riscv64@0.21.5':
@@ -13691,13 +12527,13 @@ snapshots:
'@esbuild/linux-riscv64@0.23.1':
optional: true
- '@esbuild/linux-s390x@0.19.12':
+ '@esbuild/linux-riscv64@0.24.0':
optional: true
- '@esbuild/linux-s390x@0.20.1':
+ '@esbuild/linux-s390x@0.19.12':
optional: true
- '@esbuild/linux-s390x@0.20.2':
+ '@esbuild/linux-s390x@0.20.1':
optional: true
'@esbuild/linux-s390x@0.21.5':
@@ -13706,13 +12542,13 @@ snapshots:
'@esbuild/linux-s390x@0.23.1':
optional: true
- '@esbuild/linux-x64@0.19.12':
+ '@esbuild/linux-s390x@0.24.0':
optional: true
- '@esbuild/linux-x64@0.20.1':
+ '@esbuild/linux-x64@0.19.12':
optional: true
- '@esbuild/linux-x64@0.20.2':
+ '@esbuild/linux-x64@0.20.1':
optional: true
'@esbuild/linux-x64@0.21.5':
@@ -13721,13 +12557,13 @@ snapshots:
'@esbuild/linux-x64@0.23.1':
optional: true
- '@esbuild/netbsd-x64@0.19.12':
+ '@esbuild/linux-x64@0.24.0':
optional: true
- '@esbuild/netbsd-x64@0.20.1':
+ '@esbuild/netbsd-x64@0.19.12':
optional: true
- '@esbuild/netbsd-x64@0.20.2':
+ '@esbuild/netbsd-x64@0.20.1':
optional: true
'@esbuild/netbsd-x64@0.21.5':
@@ -13736,16 +12572,19 @@ snapshots:
'@esbuild/netbsd-x64@0.23.1':
optional: true
+ '@esbuild/netbsd-x64@0.24.0':
+ optional: true
+
'@esbuild/openbsd-arm64@0.23.1':
optional: true
- '@esbuild/openbsd-x64@0.19.12':
+ '@esbuild/openbsd-arm64@0.24.0':
optional: true
- '@esbuild/openbsd-x64@0.20.1':
+ '@esbuild/openbsd-x64@0.19.12':
optional: true
- '@esbuild/openbsd-x64@0.20.2':
+ '@esbuild/openbsd-x64@0.20.1':
optional: true
'@esbuild/openbsd-x64@0.21.5':
@@ -13754,13 +12593,13 @@ snapshots:
'@esbuild/openbsd-x64@0.23.1':
optional: true
- '@esbuild/sunos-x64@0.19.12':
+ '@esbuild/openbsd-x64@0.24.0':
optional: true
- '@esbuild/sunos-x64@0.20.1':
+ '@esbuild/sunos-x64@0.19.12':
optional: true
- '@esbuild/sunos-x64@0.20.2':
+ '@esbuild/sunos-x64@0.20.1':
optional: true
'@esbuild/sunos-x64@0.21.5':
@@ -13769,13 +12608,13 @@ snapshots:
'@esbuild/sunos-x64@0.23.1':
optional: true
- '@esbuild/win32-arm64@0.19.12':
+ '@esbuild/sunos-x64@0.24.0':
optional: true
- '@esbuild/win32-arm64@0.20.1':
+ '@esbuild/win32-arm64@0.19.12':
optional: true
- '@esbuild/win32-arm64@0.20.2':
+ '@esbuild/win32-arm64@0.20.1':
optional: true
'@esbuild/win32-arm64@0.21.5':
@@ -13784,13 +12623,13 @@ snapshots:
'@esbuild/win32-arm64@0.23.1':
optional: true
- '@esbuild/win32-ia32@0.19.12':
+ '@esbuild/win32-arm64@0.24.0':
optional: true
- '@esbuild/win32-ia32@0.20.1':
+ '@esbuild/win32-ia32@0.19.12':
optional: true
- '@esbuild/win32-ia32@0.20.2':
+ '@esbuild/win32-ia32@0.20.1':
optional: true
'@esbuild/win32-ia32@0.21.5':
@@ -13799,13 +12638,13 @@ snapshots:
'@esbuild/win32-ia32@0.23.1':
optional: true
- '@esbuild/win32-x64@0.19.12':
+ '@esbuild/win32-ia32@0.24.0':
optional: true
- '@esbuild/win32-x64@0.20.1':
+ '@esbuild/win32-x64@0.19.12':
optional: true
- '@esbuild/win32-x64@0.20.2':
+ '@esbuild/win32-x64@0.20.1':
optional: true
'@esbuild/win32-x64@0.21.5':
@@ -13814,20 +12653,23 @@ snapshots:
'@esbuild/win32-x64@0.23.1':
optional: true
- '@eslint-community/eslint-utils@4.4.0(eslint@8.57.1)':
+ '@esbuild/win32-x64@0.24.0':
+ optional: true
+
+ '@eslint-community/eslint-utils@4.4.1(eslint@8.57.1)':
dependencies:
eslint: 8.57.1
eslint-visitor-keys: 3.4.3
- '@eslint-community/regexpp@4.11.1': {}
+ '@eslint-community/regexpp@4.12.1': {}
'@eslint/eslintrc@2.1.4':
dependencies:
ajv: 6.12.6
- debug: 4.3.6(supports-color@8.1.1)
+ debug: 4.3.7(supports-color@9.4.0)
espree: 9.6.1
globals: 13.24.0
- ignore: 5.3.1
+ ignore: 5.3.2
import-fresh: 3.3.0
js-yaml: 4.1.0
minimatch: 3.1.2
@@ -13837,14 +12679,12 @@ snapshots:
'@eslint/js@8.57.1': {}
- '@fastify/busboy@2.1.1': {}
-
'@gar/promisify@1.1.3': {}
'@humanwhocodes/config-array@0.13.0':
dependencies:
'@humanwhocodes/object-schema': 2.0.3
- debug: 4.3.6(supports-color@8.1.1)
+ debug: 4.3.7(supports-color@9.4.0)
minimatch: 3.1.2
transitivePeerDependencies:
- supports-color
@@ -13895,8 +12735,6 @@ snapshots:
'@inquirer/type': 2.0.0
yoctocolors-cjs: 2.1.2
- '@inquirer/figures@1.0.3': {}
-
'@inquirer/figures@1.0.7': {}
'@inquirer/input@3.0.1':
@@ -13953,9 +12791,9 @@ snapshots:
dependencies:
mute-stream: 1.0.0
- '@ionic/prettier-config@2.1.2(prettier@2.8.8)':
+ '@ionic/prettier-config@2.1.2(prettier@3.3.3)':
dependencies:
- prettier: 2.8.8
+ prettier: 3.3.3
'@ioredis/commands@1.2.0': {}
@@ -13983,56 +12821,47 @@ snapshots:
'@jest/console@26.6.2':
dependencies:
'@jest/types': 26.6.2
- '@types/node': 22.9.0
+ '@types/node': 20.17.6
chalk: 4.1.2
jest-message-util: 26.6.2
jest-util: 26.6.2
slash: 3.0.0
- '@jest/console@27.5.1':
- dependencies:
- '@jest/types': 27.5.1
- '@types/node': 20.17.6
- chalk: 4.1.2
- jest-message-util: 27.5.1
- jest-util: 27.5.1
- slash: 3.0.0
-
'@jest/console@29.7.0':
dependencies:
'@jest/types': 29.6.3
- '@types/node': 22.9.0
+ '@types/node': 20.17.6
chalk: 4.1.2
jest-message-util: 29.7.0
jest-util: 29.7.0
slash: 3.0.0
- '@jest/core@26.6.3(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.6.3))':
+ '@jest/core@26.6.3':
dependencies:
'@jest/console': 26.6.2
'@jest/reporters': 26.6.2
'@jest/test-result': 26.6.2
'@jest/transform': 26.6.2
'@jest/types': 26.6.2
- '@types/node': 22.9.0
+ '@types/node': 20.17.6
ansi-escapes: 4.3.2
chalk: 4.1.2
exit: 0.1.2
graceful-fs: 4.2.11
jest-changed-files: 26.6.2
- jest-config: 26.6.3(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.6.3))
+ jest-config: 26.6.3
jest-haste-map: 26.6.2
jest-message-util: 26.6.2
jest-regex-util: 26.0.0
jest-resolve: 26.6.2
jest-resolve-dependencies: 26.6.3
- jest-runner: 26.6.3(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.6.3))
- jest-runtime: 26.6.3(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.6.3))
+ jest-runner: 26.6.3
+ jest-runtime: 26.6.3
jest-snapshot: 26.6.2
jest-util: 26.6.2
jest-validate: 26.6.2
jest-watcher: 26.6.2
- micromatch: 4.0.7
+ micromatch: 4.0.8
p-each-series: 2.2.0
rimraf: 3.0.2
slash: 3.0.0
@@ -14044,97 +12873,21 @@ snapshots:
- ts-node
- utf-8-validate
- '@jest/core@27.5.1(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@20.17.6)(typescript@5.6.3))':
- dependencies:
- '@jest/console': 27.5.1
- '@jest/reporters': 27.5.1(node-notifier@8.0.2)
- '@jest/test-result': 27.5.1
- '@jest/transform': 27.5.1
- '@jest/types': 27.5.1
- '@types/node': 20.17.6
- ansi-escapes: 4.3.2
- chalk: 4.1.2
- emittery: 0.8.1
- exit: 0.1.2
- graceful-fs: 4.2.11
- jest-changed-files: 27.5.1
- jest-config: 27.5.1(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@20.17.6)(typescript@5.6.3))
- jest-haste-map: 27.5.1
- jest-message-util: 27.5.1
- jest-regex-util: 27.5.1
- jest-resolve: 27.5.1
- jest-resolve-dependencies: 27.5.1
- jest-runner: 27.5.1
- jest-runtime: 27.5.1
- jest-snapshot: 27.5.1
- jest-util: 27.5.1
- jest-validate: 27.5.1
- jest-watcher: 27.5.1
- micromatch: 4.0.7
- rimraf: 3.0.2
- slash: 3.0.0
- strip-ansi: 6.0.1
- optionalDependencies:
- node-notifier: 8.0.2
- transitivePeerDependencies:
- - bufferutil
- - canvas
- - supports-color
- - ts-node
- - utf-8-validate
-
- '@jest/core@29.7.0(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.1.6))':
- dependencies:
- '@jest/console': 29.7.0
- '@jest/reporters': 29.7.0(node-notifier@8.0.2)
- '@jest/test-result': 29.7.0
- '@jest/transform': 29.7.0
- '@jest/types': 29.6.3
- '@types/node': 22.9.0
- ansi-escapes: 4.3.2
- chalk: 4.1.2
- ci-info: 3.9.0
- exit: 0.1.2
- graceful-fs: 4.2.11
- jest-changed-files: 29.7.0
- jest-config: 29.7.0(@types/node@22.9.0)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.1.6))
- jest-haste-map: 29.7.0
- jest-message-util: 29.7.0
- jest-regex-util: 29.6.3
- jest-resolve: 29.7.0
- jest-resolve-dependencies: 29.7.0
- jest-runner: 29.7.0
- jest-runtime: 29.7.0
- jest-snapshot: 29.7.0
- jest-util: 29.7.0
- jest-validate: 29.7.0
- jest-watcher: 29.7.0
- micromatch: 4.0.7
- pretty-format: 29.7.0
- slash: 3.0.0
- strip-ansi: 6.0.1
- optionalDependencies:
- node-notifier: 8.0.2
- transitivePeerDependencies:
- - babel-plugin-macros
- - supports-color
- - ts-node
-
- '@jest/core@29.7.0(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.6.3))':
+ '@jest/core@29.7.0(node-notifier@8.0.2)':
dependencies:
'@jest/console': 29.7.0
'@jest/reporters': 29.7.0(node-notifier@8.0.2)
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 22.9.0
+ '@types/node': 20.17.6
ansi-escapes: 4.3.2
chalk: 4.1.2
ci-info: 3.9.0
exit: 0.1.2
graceful-fs: 4.2.11
jest-changed-files: 29.7.0
- jest-config: 29.7.0(@types/node@22.9.0)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.6.3))
+ jest-config: 29.7.0(@types/node@20.17.6)
jest-haste-map: 29.7.0
jest-message-util: 29.7.0
jest-regex-util: 29.6.3
@@ -14146,7 +12899,7 @@ snapshots:
jest-util: 29.7.0
jest-validate: 29.7.0
jest-watcher: 29.7.0
- micromatch: 4.0.7
+ micromatch: 4.0.8
pretty-format: 29.7.0
slash: 3.0.0
strip-ansi: 6.0.1
@@ -14161,21 +12914,14 @@ snapshots:
dependencies:
'@jest/fake-timers': 26.6.2
'@jest/types': 26.6.2
- '@types/node': 22.9.0
- jest-mock: 26.6.2
-
- '@jest/environment@27.5.1':
- dependencies:
- '@jest/fake-timers': 27.5.1
- '@jest/types': 27.5.1
'@types/node': 20.17.6
- jest-mock: 27.5.1
+ jest-mock: 26.6.2
'@jest/environment@29.7.0':
dependencies:
'@jest/fake-timers': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.14.12
+ '@types/node': 20.17.6
jest-mock: 29.7.0
'@jest/expect-utils@29.7.0':
@@ -14193,25 +12939,16 @@ snapshots:
dependencies:
'@jest/types': 26.6.2
'@sinonjs/fake-timers': 6.0.1
- '@types/node': 22.9.0
+ '@types/node': 20.17.6
jest-message-util: 26.6.2
jest-mock: 26.6.2
jest-util: 26.6.2
- '@jest/fake-timers@27.5.1':
- dependencies:
- '@jest/types': 27.5.1
- '@sinonjs/fake-timers': 8.1.0
- '@types/node': 20.17.6
- jest-message-util: 27.5.1
- jest-mock: 27.5.1
- jest-util: 27.5.1
-
'@jest/fake-timers@29.7.0':
dependencies:
'@jest/types': 29.6.3
'@sinonjs/fake-timers': 10.3.0
- '@types/node': 20.14.12
+ '@types/node': 20.17.6
jest-message-util: 29.7.0
jest-mock: 29.7.0
jest-util: 29.7.0
@@ -14222,12 +12959,6 @@ snapshots:
'@jest/types': 26.6.2
expect: 26.6.2
- '@jest/globals@27.5.1':
- dependencies:
- '@jest/environment': 27.5.1
- '@jest/types': 27.5.1
- expect: 27.5.1
-
'@jest/globals@29.7.0':
dependencies:
'@jest/environment': 29.7.0
@@ -14268,38 +12999,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@jest/reporters@27.5.1(node-notifier@8.0.2)':
- dependencies:
- '@bcoe/v8-coverage': 0.2.3
- '@jest/console': 27.5.1
- '@jest/test-result': 27.5.1
- '@jest/transform': 27.5.1
- '@jest/types': 27.5.1
- '@types/node': 20.17.6
- chalk: 4.1.2
- collect-v8-coverage: 1.0.2
- exit: 0.1.2
- glob: 7.2.3
- graceful-fs: 4.2.11
- istanbul-lib-coverage: 3.2.2
- istanbul-lib-instrument: 5.2.1
- istanbul-lib-report: 3.0.1
- istanbul-lib-source-maps: 4.0.1
- istanbul-reports: 3.1.7
- jest-haste-map: 27.5.1
- jest-resolve: 27.5.1
- jest-util: 27.5.1
- jest-worker: 27.5.1
- slash: 3.0.0
- source-map: 0.6.1
- string-length: 4.0.2
- terminal-link: 2.1.1
- v8-to-istanbul: 8.1.1
- optionalDependencies:
- node-notifier: 8.0.2
- transitivePeerDependencies:
- - supports-color
-
'@jest/reporters@29.7.0(node-notifier@8.0.2)':
dependencies:
'@bcoe/v8-coverage': 0.2.3
@@ -14308,14 +13007,14 @@ snapshots:
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
'@jridgewell/trace-mapping': 0.3.25
- '@types/node': 22.9.0
+ '@types/node': 20.17.6
chalk: 4.1.2
collect-v8-coverage: 1.0.2
exit: 0.1.2
glob: 7.2.3
graceful-fs: 4.2.11
istanbul-lib-coverage: 3.2.2
- istanbul-lib-instrument: 6.0.2
+ istanbul-lib-instrument: 6.0.3
istanbul-lib-report: 3.0.1
istanbul-lib-source-maps: 4.0.1
istanbul-reports: 3.1.7
@@ -14341,12 +13040,6 @@ snapshots:
graceful-fs: 4.2.11
source-map: 0.6.1
- '@jest/source-map@27.5.1':
- dependencies:
- callsites: 3.1.0
- graceful-fs: 4.2.11
- source-map: 0.6.1
-
'@jest/source-map@29.6.3':
dependencies:
'@jridgewell/trace-mapping': 0.3.25
@@ -14360,13 +13053,6 @@ snapshots:
'@types/istanbul-lib-coverage': 2.0.6
collect-v8-coverage: 1.0.2
- '@jest/test-result@27.5.1':
- dependencies:
- '@jest/console': 27.5.1
- '@jest/types': 27.5.1
- '@types/istanbul-lib-coverage': 2.0.6
- collect-v8-coverage: 1.0.2
-
'@jest/test-result@29.7.0':
dependencies:
'@jest/console': 29.7.0
@@ -14374,13 +13060,13 @@ snapshots:
'@types/istanbul-lib-coverage': 2.0.6
collect-v8-coverage: 1.0.2
- '@jest/test-sequencer@26.6.3(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.6.3))':
+ '@jest/test-sequencer@26.6.3':
dependencies:
'@jest/test-result': 26.6.2
graceful-fs: 4.2.11
jest-haste-map: 26.6.2
- jest-runner: 26.6.3(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.6.3))
- jest-runtime: 26.6.3(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.6.3))
+ jest-runner: 26.6.3
+ jest-runtime: 26.6.3
transitivePeerDependencies:
- bufferutil
- canvas
@@ -14388,15 +13074,6 @@ snapshots:
- ts-node
- utf-8-validate
- '@jest/test-sequencer@27.5.1':
- dependencies:
- '@jest/test-result': 27.5.1
- graceful-fs: 4.2.11
- jest-haste-map: 27.5.1
- jest-runtime: 27.5.1
- transitivePeerDependencies:
- - supports-color
-
'@jest/test-sequencer@29.7.0':
dependencies:
'@jest/test-result': 29.7.0
@@ -14406,7 +13083,7 @@ snapshots:
'@jest/transform@26.6.2':
dependencies:
- '@babel/core': 7.24.7
+ '@babel/core': 7.26.0
'@jest/types': 26.6.2
babel-plugin-istanbul: 6.1.1
chalk: 4.1.2
@@ -14416,27 +13093,7 @@ snapshots:
jest-haste-map: 26.6.2
jest-regex-util: 26.0.0
jest-util: 26.6.2
- micromatch: 4.0.7
- pirates: 4.0.6
- slash: 3.0.0
- source-map: 0.6.1
- write-file-atomic: 3.0.3
- transitivePeerDependencies:
- - supports-color
-
- '@jest/transform@27.5.1':
- dependencies:
- '@babel/core': 7.24.7
- '@jest/types': 27.5.1
- babel-plugin-istanbul: 6.1.1
- chalk: 4.1.2
- convert-source-map: 1.9.0
- fast-json-stable-stringify: 2.1.0
- graceful-fs: 4.2.11
- jest-haste-map: 27.5.1
- jest-regex-util: 27.5.1
- jest-util: 27.5.1
- micromatch: 4.0.7
+ micromatch: 4.0.8
pirates: 4.0.6
slash: 3.0.0
source-map: 0.6.1
@@ -14446,7 +13103,7 @@ snapshots:
'@jest/transform@29.7.0':
dependencies:
- '@babel/core': 7.24.7
+ '@babel/core': 7.26.0
'@jest/types': 29.6.3
'@jridgewell/trace-mapping': 0.3.25
babel-plugin-istanbul: 6.1.1
@@ -14457,7 +13114,7 @@ snapshots:
jest-haste-map: 29.7.0
jest-regex-util: 29.6.3
jest-util: 29.7.0
- micromatch: 4.0.7
+ micromatch: 4.0.8
pirates: 4.0.6
slash: 3.0.0
write-file-atomic: 4.0.2
@@ -14465,19 +13122,11 @@ snapshots:
- supports-color
'@jest/types@26.6.2':
- dependencies:
- '@types/istanbul-lib-coverage': 2.0.6
- '@types/istanbul-reports': 3.0.4
- '@types/node': 22.9.0
- '@types/yargs': 15.0.19
- chalk: 4.1.2
-
- '@jest/types@27.5.1':
dependencies:
'@types/istanbul-lib-coverage': 2.0.6
'@types/istanbul-reports': 3.0.4
'@types/node': 20.17.6
- '@types/yargs': 16.0.9
+ '@types/yargs': 15.0.19
chalk: 4.1.2
'@jest/types@29.6.3':
@@ -14485,8 +13134,8 @@ snapshots:
'@jest/schemas': 29.6.3
'@types/istanbul-lib-coverage': 2.0.6
'@types/istanbul-reports': 3.0.4
- '@types/node': 22.9.0
- '@types/yargs': 17.0.32
+ '@types/node': 20.17.6
+ '@types/yargs': 17.0.33
chalk: 4.1.2
'@jridgewell/gen-mapping@0.3.5':
@@ -14511,15 +13160,9 @@ snapshots:
'@jridgewell/resolve-uri': 3.1.2
'@jridgewell/sourcemap-codec': 1.5.0
- '@jridgewell/trace-mapping@0.3.9':
- dependencies:
- '@jridgewell/resolve-uri': 3.1.2
- '@jridgewell/sourcemap-codec': 1.5.0
- optional: true
-
'@kwsites/file-exists@1.1.1':
dependencies:
- debug: 4.3.7
+ debug: 4.3.7(supports-color@9.4.0)
transitivePeerDependencies:
- supports-color
@@ -14527,12 +13170,12 @@ snapshots:
'@leichtgewicht/ip-codec@2.0.5': {}
- '@lerna/create@8.1.9(@swc/core@1.7.26(@swc/helpers@0.5.5))(encoding@0.1.13)(typescript@5.6.3)':
+ '@lerna/create@8.1.9(encoding@0.1.13)(typescript@5.6.3)':
dependencies:
'@npmcli/arborist': 7.5.4
'@npmcli/package-json': 5.2.0
'@npmcli/run-script': 8.1.0
- '@nx/devkit': 20.0.8(nx@20.0.8(@swc/core@1.7.26(@swc/helpers@0.5.5)))
+ '@nx/devkit': 20.0.10(nx@20.0.10)
'@octokit/plugin-enterprise-rest': 6.0.1
'@octokit/rest': 19.0.11(encoding@0.1.13)
aproba: 2.0.0
@@ -14571,7 +13214,7 @@ snapshots:
npm-package-arg: 11.0.2
npm-packlist: 8.0.2
npm-registry-fetch: 17.1.0
- nx: 20.0.8(@swc/core@1.7.26(@swc/helpers@0.5.5))
+ nx: 20.0.10
p-map: 4.0.0
p-map-series: 2.1.0
p-queue: 6.6.2
@@ -14610,7 +13253,7 @@ snapshots:
- supports-color
- typescript
- '@lit/react@1.0.5(@types/react@18.3.12)':
+ '@lit/react@1.0.6(@types/react@18.3.12)':
dependencies:
'@types/react': 18.3.12
@@ -14718,11 +13361,11 @@ snapshots:
'@next/swc-win32-x64-msvc@14.2.15':
optional: true
- '@ngtools/webpack@17.3.10(@angular/compiler-cli@16.2.12(@angular/compiler@16.2.12(@angular/core@16.2.12(rxjs@7.8.1)(zone.js@0.13.3)))(typescript@5.1.6))(typescript@5.1.6)(webpack@5.94.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.20.1))':
+ '@ngtools/webpack@17.3.11(@angular/compiler-cli@16.2.12(@angular/compiler@16.2.12(@angular/core@16.2.12(rxjs@7.8.1)(zone.js@0.13.3)))(typescript@5.1.6))(typescript@5.1.6)(webpack@5.94.0(esbuild@0.20.1))':
dependencies:
'@angular/compiler-cli': 16.2.12(@angular/compiler@16.2.12(@angular/core@16.2.12(rxjs@7.8.1)(zone.js@0.13.3)))(typescript@5.1.6)
typescript: 5.1.6
- webpack: 5.94.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.20.1)
+ webpack: 5.94.0(esbuild@0.20.1)
'@nodelib/fs.scandir@2.1.5':
dependencies:
@@ -14740,9 +13383,9 @@ snapshots:
'@npmcli/agent@2.2.2':
dependencies:
- agent-base: 7.1.1
+ agent-base: 7.1.1(supports-color@9.4.0)
http-proxy-agent: 7.0.2
- https-proxy-agent: 7.0.5
+ https-proxy-agent: 7.0.5(supports-color@9.4.0)
lru-cache: 10.4.3
socks-proxy-agent: 8.0.4
transitivePeerDependencies:
@@ -14880,19 +13523,19 @@ snapshots:
'@nuxt/devalue@2.0.2': {}
- '@nuxt/devtools-kit@1.5.2(magicast@0.3.5)(rollup@4.24.2)(vite@5.4.8(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.29.1))(webpack-sources@3.2.3)':
+ '@nuxt/devtools-kit@1.6.0(magicast@0.3.5)(rollup@4.24.4)(vite@5.4.10(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.36.0))(webpack-sources@3.2.3)':
dependencies:
- '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.2)(webpack-sources@3.2.3)
- '@nuxt/schema': 3.13.2(rollup@4.24.2)(webpack-sources@3.2.3)
+ '@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3)
+ '@nuxt/schema': 3.14.159(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3)
execa: 7.2.0
- vite: 5.4.8(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.29.1)
+ vite: 5.4.10(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.36.0)
transitivePeerDependencies:
- magicast
- rollup
- supports-color
- webpack-sources
- '@nuxt/devtools-wizard@1.5.2':
+ '@nuxt/devtools-wizard@1.6.0':
dependencies:
consola: 3.2.3
diff: 7.0.0
@@ -14900,22 +13543,22 @@ snapshots:
global-directory: 4.0.1
magicast: 0.3.5
pathe: 1.1.2
- pkg-types: 1.2.0
+ pkg-types: 1.2.1
prompts: 2.4.2
rc9: 2.1.2
semver: 7.6.3
- '@nuxt/devtools@1.5.2(rollup@4.24.2)(vite@5.4.8(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.29.1))(vue@3.5.10(typescript@5.6.3))(webpack-sources@3.2.3)':
+ '@nuxt/devtools@1.6.0(rollup@4.24.4)(vite@5.4.10(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)':
dependencies:
'@antfu/utils': 0.7.10
- '@nuxt/devtools-kit': 1.5.2(magicast@0.3.5)(rollup@4.24.2)(vite@5.4.8(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.29.1))(webpack-sources@3.2.3)
- '@nuxt/devtools-wizard': 1.5.2
- '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.2)(webpack-sources@3.2.3)
- '@vue/devtools-core': 7.4.4(vite@5.4.8(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.29.1))(vue@3.5.10(typescript@5.6.3))
+ '@nuxt/devtools-kit': 1.6.0(magicast@0.3.5)(rollup@4.24.4)(vite@5.4.10(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.36.0))(webpack-sources@3.2.3)
+ '@nuxt/devtools-wizard': 1.6.0
+ '@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3)
+ '@vue/devtools-core': 7.4.4(vite@5.4.10(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))
'@vue/devtools-kit': 7.4.4
birpc: 0.2.19
consola: 3.2.3
- cronstrue: 2.50.0
+ cronstrue: 2.51.0
destr: 2.0.3
error-stack-parser-es: 0.1.5
execa: 7.2.0
@@ -14932,17 +13575,17 @@ snapshots:
ohash: 1.1.4
pathe: 1.1.2
perfect-debounce: 1.0.0
- pkg-types: 1.2.0
+ pkg-types: 1.2.1
rc9: 2.1.2
scule: 1.3.0
semver: 7.6.3
simple-git: 3.27.0
sirv: 2.0.4
- tinyglobby: 0.2.6
- unimport: 3.13.1(rollup@4.24.2)(webpack-sources@3.2.3)
- vite: 5.4.8(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.29.1)
- vite-plugin-inspect: 0.8.7(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.24.2)(webpack-sources@3.2.3))(rollup@4.24.2)(vite@5.4.8(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.29.1))
- vite-plugin-vue-inspector: 5.1.3(vite@5.4.8(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.29.1))
+ tinyglobby: 0.2.10
+ unimport: 3.13.1(rollup@4.24.4)(webpack-sources@3.2.3)
+ vite: 5.4.10(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.36.0)
+ vite-plugin-inspect: 0.8.7(@nuxt/kit@3.14.159(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3))(rollup@4.24.4)(vite@5.4.10(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.36.0))
+ vite-plugin-vue-inspector: 5.1.3(vite@5.4.10(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.36.0))
which: 3.0.1
ws: 8.18.0
transitivePeerDependencies:
@@ -14953,27 +13596,27 @@ snapshots:
- vue
- webpack-sources
- '@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.24.2)(webpack-sources@3.2.3)':
+ '@nuxt/kit@3.14.159(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3)':
dependencies:
- '@nuxt/schema': 3.13.2(rollup@4.24.2)(webpack-sources@3.2.3)
- c12: 1.11.2(magicast@0.3.5)
+ '@nuxt/schema': 3.14.159(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3)
+ c12: 2.0.1(magicast@0.3.5)
consola: 3.2.3
defu: 6.1.4
destr: 2.0.3
globby: 14.0.2
hash-sum: 2.0.0
- ignore: 5.3.2
- jiti: 1.21.6
+ ignore: 6.0.2
+ jiti: 2.4.0
klona: 2.0.6
knitwork: 1.1.0
- mlly: 1.7.1
+ mlly: 1.7.2
pathe: 1.1.2
- pkg-types: 1.2.0
+ pkg-types: 1.2.1
scule: 1.3.0
semver: 7.6.3
ufo: 1.5.4
unctx: 2.3.1(webpack-sources@3.2.3)
- unimport: 3.13.1(rollup@4.24.2)(webpack-sources@3.2.3)
+ unimport: 3.13.1(rollup@4.24.4)(webpack-sources@3.2.3)
untyped: 1.5.1
transitivePeerDependencies:
- magicast
@@ -14981,28 +13624,30 @@ snapshots:
- supports-color
- webpack-sources
- '@nuxt/schema@3.13.2(rollup@4.24.2)(webpack-sources@3.2.3)':
+ '@nuxt/schema@3.14.159(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3)':
dependencies:
+ c12: 2.0.1(magicast@0.3.5)
compatx: 0.1.8
consola: 3.2.3
defu: 6.1.4
hookable: 5.5.3
pathe: 1.1.2
- pkg-types: 1.2.0
+ pkg-types: 1.2.1
scule: 1.3.0
std-env: 3.7.0
ufo: 1.5.4
uncrypto: 0.1.3
- unimport: 3.13.1(rollup@4.24.2)(webpack-sources@3.2.3)
+ unimport: 3.13.1(rollup@4.24.4)(webpack-sources@3.2.3)
untyped: 1.5.1
transitivePeerDependencies:
+ - magicast
- rollup
- supports-color
- webpack-sources
- '@nuxt/telemetry@2.6.0(magicast@0.3.5)(rollup@4.24.2)(webpack-sources@3.2.3)':
+ '@nuxt/telemetry@2.6.0(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3)':
dependencies:
- '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.2)(webpack-sources@3.2.3)
+ '@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3)
ci-info: 4.0.0
consola: 3.2.3
create-require: 1.1.1
@@ -15013,7 +13658,7 @@ snapshots:
is-docker: 3.0.0
jiti: 1.21.6
mri: 1.2.0
- nanoid: 5.0.7
+ nanoid: 5.0.8
ofetch: 1.4.1
package-manager-detector: 0.2.2
parse-git-config: 3.0.0
@@ -15026,41 +13671,42 @@ snapshots:
- supports-color
- webpack-sources
- '@nuxt/vite-builder@3.13.2(@types/node@22.9.0)(eslint@8.57.1)(less@4.2.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.2)(sass@1.71.1)(terser@5.29.1)(typescript@5.6.3)(vue-tsc@2.1.6(typescript@5.6.3))(vue@3.5.10(typescript@5.6.3))(webpack-sources@3.2.3)':
+ '@nuxt/vite-builder@3.14.159(@types/node@22.9.0)(eslint@8.57.1)(less@4.2.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.4)(sass@1.71.1)(terser@5.36.0)(typescript@5.6.3)(vue-tsc@2.1.10(typescript@5.6.3))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)':
dependencies:
- '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.2)(webpack-sources@3.2.3)
- '@rollup/plugin-replace': 5.0.7(rollup@4.24.2)
- '@vitejs/plugin-vue': 5.1.4(vite@5.4.8(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.29.1))(vue@3.5.10(typescript@5.6.3))
- '@vitejs/plugin-vue-jsx': 4.0.1(vite@5.4.8(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.29.1))(vue@3.5.10(typescript@5.6.3))
+ '@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3)
+ '@rollup/plugin-replace': 6.0.1(rollup@4.24.4)
+ '@vitejs/plugin-vue': 5.1.4(vite@5.4.10(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))
+ '@vitejs/plugin-vue-jsx': 4.0.1(vite@5.4.10(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))
autoprefixer: 10.4.20(postcss@8.4.47)
clear: 0.1.0
consola: 3.2.3
cssnano: 7.0.6(postcss@8.4.47)
defu: 6.1.4
- esbuild: 0.23.1
+ esbuild: 0.24.0
escape-string-regexp: 5.0.0
estree-walker: 3.0.3
externality: 1.0.2
get-port-please: 3.1.2
h3: 1.13.0
+ jiti: 2.4.0
knitwork: 1.1.0
- magic-string: 0.30.11
- mlly: 1.7.1
+ magic-string: 0.30.12
+ mlly: 1.7.2
ohash: 1.1.4
pathe: 1.1.2
perfect-debounce: 1.0.0
- pkg-types: 1.2.0
+ pkg-types: 1.2.1
postcss: 8.4.47
- rollup-plugin-visualizer: 5.12.0(rollup@4.24.2)
+ rollup-plugin-visualizer: 5.12.0(rollup@4.24.4)
std-env: 3.7.0
strip-literal: 2.1.0
ufo: 1.5.4
unenv: 1.10.0
- unplugin: 1.14.1(webpack-sources@3.2.3)
- vite: 5.4.8(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.29.1)
- vite-node: 2.1.2(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.29.1)
- vite-plugin-checker: 0.8.0(eslint@8.57.1)(optionator@0.9.4)(typescript@5.6.3)(vite@5.4.8(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.29.1))(vue-tsc@2.1.6(typescript@5.6.3))
- vue: 3.5.10(typescript@5.6.3)
+ unplugin: 1.15.0(webpack-sources@3.2.3)
+ vite: 5.4.10(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.36.0)
+ vite-node: 2.1.4(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.36.0)
+ vite-plugin-checker: 0.8.0(eslint@8.57.1)(optionator@0.9.4)(typescript@5.6.3)(vite@5.4.10(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.36.0))(vue-tsc@2.1.10(typescript@5.6.3))
+ vue: 3.5.12(typescript@5.6.3)
vue-bundle-renderer: 2.1.1
transitivePeerDependencies:
- '@biomejs/biome'
@@ -15085,46 +13731,46 @@ snapshots:
- vue-tsc
- webpack-sources
- '@nx/devkit@20.0.8(nx@20.0.8(@swc/core@1.7.26(@swc/helpers@0.5.5)))':
+ '@nx/devkit@20.0.10(nx@20.0.10)':
dependencies:
ejs: 3.1.10
enquirer: 2.3.6
ignore: 5.3.2
minimatch: 9.0.3
- nx: 20.0.8(@swc/core@1.7.26(@swc/helpers@0.5.5))
+ nx: 20.0.10
semver: 7.6.3
tmp: 0.2.3
tslib: 2.8.1
yargs-parser: 21.1.1
- '@nx/nx-darwin-arm64@20.0.8':
+ '@nx/nx-darwin-arm64@20.0.10':
optional: true
- '@nx/nx-darwin-x64@20.0.8':
+ '@nx/nx-darwin-x64@20.0.10':
optional: true
- '@nx/nx-freebsd-x64@20.0.8':
+ '@nx/nx-freebsd-x64@20.0.10':
optional: true
- '@nx/nx-linux-arm-gnueabihf@20.0.8':
+ '@nx/nx-linux-arm-gnueabihf@20.0.10':
optional: true
- '@nx/nx-linux-arm64-gnu@20.0.8':
+ '@nx/nx-linux-arm64-gnu@20.0.10':
optional: true
- '@nx/nx-linux-arm64-musl@20.0.8':
+ '@nx/nx-linux-arm64-musl@20.0.10':
optional: true
- '@nx/nx-linux-x64-gnu@20.0.8':
+ '@nx/nx-linux-x64-gnu@20.0.10':
optional: true
- '@nx/nx-linux-x64-musl@20.0.8':
+ '@nx/nx-linux-x64-musl@20.0.10':
optional: true
- '@nx/nx-win32-arm64-msvc@20.0.8':
+ '@nx/nx-win32-arm64-msvc@20.0.10':
optional: true
- '@nx/nx-win32-x64-msvc@20.0.8':
+ '@nx/nx-win32-x64-msvc@20.0.10':
optional: true
'@octokit/auth-token@3.0.4': {}
@@ -15210,66 +13856,70 @@ snapshots:
dependencies:
'@octokit/openapi-types': 18.1.1
- '@parcel/watcher-android-arm64@2.4.1':
+ '@parcel/watcher-android-arm64@2.5.0':
+ optional: true
+
+ '@parcel/watcher-darwin-arm64@2.5.0':
optional: true
- '@parcel/watcher-darwin-arm64@2.4.1':
+ '@parcel/watcher-darwin-x64@2.5.0':
optional: true
- '@parcel/watcher-darwin-x64@2.4.1':
+ '@parcel/watcher-freebsd-x64@2.5.0':
optional: true
- '@parcel/watcher-freebsd-x64@2.4.1':
+ '@parcel/watcher-linux-arm-glibc@2.5.0':
optional: true
- '@parcel/watcher-linux-arm-glibc@2.4.1':
+ '@parcel/watcher-linux-arm-musl@2.5.0':
optional: true
- '@parcel/watcher-linux-arm64-glibc@2.4.1':
+ '@parcel/watcher-linux-arm64-glibc@2.5.0':
optional: true
- '@parcel/watcher-linux-arm64-musl@2.4.1':
+ '@parcel/watcher-linux-arm64-musl@2.5.0':
optional: true
- '@parcel/watcher-linux-x64-glibc@2.4.1':
+ '@parcel/watcher-linux-x64-glibc@2.5.0':
optional: true
- '@parcel/watcher-linux-x64-musl@2.4.1':
+ '@parcel/watcher-linux-x64-musl@2.5.0':
optional: true
- '@parcel/watcher-wasm@2.4.1':
+ '@parcel/watcher-wasm@2.5.0':
dependencies:
is-glob: 4.0.3
- micromatch: 4.0.7
+ micromatch: 4.0.8
- '@parcel/watcher-win32-arm64@2.4.1':
+ '@parcel/watcher-win32-arm64@2.5.0':
optional: true
- '@parcel/watcher-win32-ia32@2.4.1':
+ '@parcel/watcher-win32-ia32@2.5.0':
optional: true
- '@parcel/watcher-win32-x64@2.4.1':
+ '@parcel/watcher-win32-x64@2.5.0':
optional: true
- '@parcel/watcher@2.4.1':
+ '@parcel/watcher@2.5.0':
dependencies:
detect-libc: 1.0.3
is-glob: 4.0.3
- micromatch: 4.0.7
+ micromatch: 4.0.8
node-addon-api: 7.1.1
optionalDependencies:
- '@parcel/watcher-android-arm64': 2.4.1
- '@parcel/watcher-darwin-arm64': 2.4.1
- '@parcel/watcher-darwin-x64': 2.4.1
- '@parcel/watcher-freebsd-x64': 2.4.1
- '@parcel/watcher-linux-arm-glibc': 2.4.1
- '@parcel/watcher-linux-arm64-glibc': 2.4.1
- '@parcel/watcher-linux-arm64-musl': 2.4.1
- '@parcel/watcher-linux-x64-glibc': 2.4.1
- '@parcel/watcher-linux-x64-musl': 2.4.1
- '@parcel/watcher-win32-arm64': 2.4.1
- '@parcel/watcher-win32-ia32': 2.4.1
- '@parcel/watcher-win32-x64': 2.4.1
+ '@parcel/watcher-android-arm64': 2.5.0
+ '@parcel/watcher-darwin-arm64': 2.5.0
+ '@parcel/watcher-darwin-x64': 2.5.0
+ '@parcel/watcher-freebsd-x64': 2.5.0
+ '@parcel/watcher-linux-arm-glibc': 2.5.0
+ '@parcel/watcher-linux-arm-musl': 2.5.0
+ '@parcel/watcher-linux-arm64-glibc': 2.5.0
+ '@parcel/watcher-linux-arm64-musl': 2.5.0
+ '@parcel/watcher-linux-x64-glibc': 2.5.0
+ '@parcel/watcher-linux-x64-musl': 2.5.0
+ '@parcel/watcher-win32-arm64': 2.5.0
+ '@parcel/watcher-win32-ia32': 2.5.0
+ '@parcel/watcher-win32-x64': 2.5.0
'@pkgjs/parseargs@0.11.0':
optional: true
@@ -15280,7 +13930,7 @@ snapshots:
dependencies:
graceful-fs: 4.2.10
- '@pnpm/npm-conf@2.2.2':
+ '@pnpm/npm-conf@2.3.1':
dependencies:
'@pnpm/config.env-replace': 1.1.0
'@pnpm/network.ca-file': 1.0.2
@@ -15288,13 +13938,13 @@ snapshots:
'@polka/url@1.0.0-next.28': {}
- '@promptbook/utils@0.70.0-1':
+ '@promptbook/utils@0.69.5':
dependencies:
- spacetrim: 0.11.39
+ spacetrim: 0.11.59
- '@puppeteer/browsers@2.4.0':
+ '@puppeteer/browsers@2.4.1':
dependencies:
- debug: 4.3.7
+ debug: 4.3.7(supports-color@9.4.0)
extract-zip: 2.0.1
progress: 2.0.3
proxy-agent: 6.4.0
@@ -15305,67 +13955,94 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@rollup/plugin-alias@5.1.1(rollup@4.24.2)':
+ '@redocly/ajv@8.11.2':
+ dependencies:
+ fast-deep-equal: 3.1.3
+ json-schema-traverse: 1.0.0
+ require-from-string: 2.0.2
+ uri-js-replace: 1.0.1
+
+ '@redocly/config@0.16.0': {}
+
+ '@redocly/openapi-core@1.25.11(encoding@0.1.13)(supports-color@9.4.0)':
+ dependencies:
+ '@redocly/ajv': 8.11.2
+ '@redocly/config': 0.16.0
+ colorette: 1.4.0
+ https-proxy-agent: 7.0.5(supports-color@9.4.0)
+ js-levenshtein: 1.1.6
+ js-yaml: 4.1.0
+ lodash.isequal: 4.5.0
+ minimatch: 5.1.6
+ node-fetch: 2.7.0(encoding@0.1.13)
+ pluralize: 8.0.0
+ yaml-ast-parser: 0.0.43
+ transitivePeerDependencies:
+ - encoding
+ - supports-color
+
+ '@rollup/plugin-alias@5.1.1(rollup@4.24.4)':
optionalDependencies:
- rollup: 4.24.2
+ rollup: 4.24.4
- '@rollup/plugin-commonjs@25.0.8(rollup@4.24.2)':
+ '@rollup/plugin-commonjs@28.0.1(rollup@4.24.4)':
dependencies:
- '@rollup/pluginutils': 5.1.3(rollup@4.24.2)
+ '@rollup/pluginutils': 5.1.3(rollup@4.24.4)
commondir: 1.0.1
estree-walker: 2.0.2
- glob: 8.1.0
+ fdir: 6.4.2(picomatch@4.0.2)
is-reference: 1.2.1
magic-string: 0.30.12
+ picomatch: 4.0.2
optionalDependencies:
- rollup: 4.24.2
+ rollup: 4.24.4
- '@rollup/plugin-inject@5.0.5(rollup@4.24.2)':
+ '@rollup/plugin-inject@5.0.5(rollup@4.24.4)':
dependencies:
- '@rollup/pluginutils': 5.1.3(rollup@4.24.2)
+ '@rollup/pluginutils': 5.1.3(rollup@4.24.4)
estree-walker: 2.0.2
magic-string: 0.30.12
optionalDependencies:
- rollup: 4.24.2
+ rollup: 4.24.4
- '@rollup/plugin-json@6.1.0(rollup@4.24.2)':
+ '@rollup/plugin-json@6.1.0(rollup@4.24.4)':
dependencies:
- '@rollup/pluginutils': 5.1.3(rollup@4.24.2)
+ '@rollup/pluginutils': 5.1.3(rollup@4.24.4)
optionalDependencies:
- rollup: 4.24.2
+ rollup: 4.24.4
- '@rollup/plugin-node-resolve@15.3.0(rollup@4.24.2)':
+ '@rollup/plugin-node-resolve@15.3.0(rollup@4.24.4)':
dependencies:
- '@rollup/pluginutils': 5.1.0(rollup@4.24.2)
+ '@rollup/pluginutils': 5.1.3(rollup@4.24.4)
'@types/resolve': 1.20.2
deepmerge: 4.3.1
is-module: 1.0.0
resolve: 1.22.8
optionalDependencies:
- rollup: 4.24.2
+ rollup: 4.24.4
- '@rollup/plugin-replace@5.0.7(rollup@4.24.2)':
+ '@rollup/plugin-replace@6.0.1(rollup@4.24.4)':
dependencies:
- '@rollup/pluginutils': 5.1.3(rollup@4.24.2)
+ '@rollup/pluginutils': 5.1.3(rollup@4.24.4)
magic-string: 0.30.12
optionalDependencies:
- rollup: 4.24.2
+ rollup: 4.24.4
- '@rollup/plugin-terser@0.4.4(rollup@4.24.2)':
+ '@rollup/plugin-terser@0.4.4(rollup@4.24.4)':
dependencies:
serialize-javascript: 6.0.2
smob: 1.5.0
- terser: 5.29.1
+ terser: 5.36.0
optionalDependencies:
- rollup: 4.24.2
+ rollup: 4.24.4
- '@rollup/plugin-typescript@12.1.1(rollup@4.24.2)(tslib@2.8.1)(typescript@5.6.3)':
+ '@rollup/plugin-typescript@12.1.1(rollup@4.24.4)(tslib@2.8.1)(typescript@5.6.3)':
dependencies:
- '@rollup/pluginutils': 5.1.3(rollup@4.24.2)
+ '@rollup/pluginutils': 5.1.3(rollup@4.24.4)
resolve: 1.22.8
typescript: 5.6.3
optionalDependencies:
- rollup: 4.24.2
+ rollup: 4.24.4
tslib: 2.8.1
'@rollup/pluginutils@4.2.1':
@@ -15373,135 +14050,65 @@ snapshots:
estree-walker: 2.0.2
picomatch: 2.3.1
- '@rollup/pluginutils@5.1.0(rollup@4.24.2)':
- dependencies:
- '@types/estree': 1.0.5
- estree-walker: 2.0.2
- picomatch: 2.3.1
- optionalDependencies:
- rollup: 4.24.2
-
- '@rollup/pluginutils@5.1.0(rollup@4.24.4)':
- dependencies:
- '@types/estree': 1.0.5
- estree-walker: 2.0.2
- picomatch: 2.3.1
- optionalDependencies:
- rollup: 4.24.4
-
- '@rollup/pluginutils@5.1.3(rollup@4.24.2)':
+ '@rollup/pluginutils@5.1.3(rollup@4.24.4)':
dependencies:
'@types/estree': 1.0.6
estree-walker: 2.0.2
picomatch: 4.0.2
optionalDependencies:
- rollup: 4.24.2
-
- '@rollup/rollup-android-arm-eabi@4.24.2':
- optional: true
+ rollup: 4.24.4
'@rollup/rollup-android-arm-eabi@4.24.4':
optional: true
- '@rollup/rollup-android-arm64@4.24.2':
- optional: true
-
'@rollup/rollup-android-arm64@4.24.4':
optional: true
- '@rollup/rollup-darwin-arm64@4.24.2':
- optional: true
-
'@rollup/rollup-darwin-arm64@4.24.4':
optional: true
- '@rollup/rollup-darwin-x64@4.24.2':
- optional: true
-
'@rollup/rollup-darwin-x64@4.24.4':
optional: true
- '@rollup/rollup-freebsd-arm64@4.24.2':
- optional: true
-
'@rollup/rollup-freebsd-arm64@4.24.4':
optional: true
- '@rollup/rollup-freebsd-x64@4.24.2':
- optional: true
-
'@rollup/rollup-freebsd-x64@4.24.4':
optional: true
- '@rollup/rollup-linux-arm-gnueabihf@4.24.2':
- optional: true
-
'@rollup/rollup-linux-arm-gnueabihf@4.24.4':
optional: true
- '@rollup/rollup-linux-arm-musleabihf@4.24.2':
- optional: true
-
'@rollup/rollup-linux-arm-musleabihf@4.24.4':
optional: true
- '@rollup/rollup-linux-arm64-gnu@4.24.2':
- optional: true
-
'@rollup/rollup-linux-arm64-gnu@4.24.4':
optional: true
- '@rollup/rollup-linux-arm64-musl@4.24.2':
- optional: true
-
'@rollup/rollup-linux-arm64-musl@4.24.4':
optional: true
- '@rollup/rollup-linux-powerpc64le-gnu@4.24.2':
- optional: true
-
'@rollup/rollup-linux-powerpc64le-gnu@4.24.4':
optional: true
- '@rollup/rollup-linux-riscv64-gnu@4.24.2':
- optional: true
-
'@rollup/rollup-linux-riscv64-gnu@4.24.4':
optional: true
- '@rollup/rollup-linux-s390x-gnu@4.24.2':
- optional: true
-
'@rollup/rollup-linux-s390x-gnu@4.24.4':
optional: true
- '@rollup/rollup-linux-x64-gnu@4.24.2':
- optional: true
-
'@rollup/rollup-linux-x64-gnu@4.24.4':
optional: true
- '@rollup/rollup-linux-x64-musl@4.24.2':
- optional: true
-
'@rollup/rollup-linux-x64-musl@4.24.4':
optional: true
- '@rollup/rollup-win32-arm64-msvc@4.24.2':
- optional: true
-
'@rollup/rollup-win32-arm64-msvc@4.24.4':
optional: true
- '@rollup/rollup-win32-ia32-msvc@4.24.2':
- optional: true
-
'@rollup/rollup-win32-ia32-msvc@4.24.4':
optional: true
- '@rollup/rollup-win32-x64-msvc@4.24.2':
- optional: true
-
'@rollup/rollup-win32-x64-msvc@4.24.4':
optional: true
@@ -15585,8 +14192,6 @@ snapshots:
'@sinclair/typebox@0.27.8': {}
- '@sindresorhus/is@5.6.0': {}
-
'@sindresorhus/merge-streams@2.3.0': {}
'@sindresorhus/merge-streams@4.0.0': {}
@@ -15607,75 +14212,14 @@ snapshots:
dependencies:
'@sinonjs/commons': 1.8.6
- '@sinonjs/fake-timers@8.1.0':
- dependencies:
- '@sinonjs/commons': 1.8.6
-
- '@stencil/core@4.22.1': {}
-
- '@swc/core-darwin-arm64@1.7.26':
- optional: true
-
- '@swc/core-darwin-x64@1.7.26':
- optional: true
-
- '@swc/core-linux-arm-gnueabihf@1.7.26':
- optional: true
-
- '@swc/core-linux-arm64-gnu@1.7.26':
- optional: true
-
- '@swc/core-linux-arm64-musl@1.7.26':
- optional: true
-
- '@swc/core-linux-x64-gnu@1.7.26':
- optional: true
-
- '@swc/core-linux-x64-musl@1.7.26':
- optional: true
-
- '@swc/core-win32-arm64-msvc@1.7.26':
- optional: true
-
- '@swc/core-win32-ia32-msvc@1.7.26':
- optional: true
-
- '@swc/core-win32-x64-msvc@1.7.26':
- optional: true
-
- '@swc/core@1.7.26(@swc/helpers@0.5.5)':
- dependencies:
- '@swc/counter': 0.1.3
- '@swc/types': 0.1.12
- optionalDependencies:
- '@swc/core-darwin-arm64': 1.7.26
- '@swc/core-darwin-x64': 1.7.26
- '@swc/core-linux-arm-gnueabihf': 1.7.26
- '@swc/core-linux-arm64-gnu': 1.7.26
- '@swc/core-linux-arm64-musl': 1.7.26
- '@swc/core-linux-x64-gnu': 1.7.26
- '@swc/core-linux-x64-musl': 1.7.26
- '@swc/core-win32-arm64-msvc': 1.7.26
- '@swc/core-win32-ia32-msvc': 1.7.26
- '@swc/core-win32-x64-msvc': 1.7.26
- '@swc/helpers': 0.5.5
- optional: true
+ '@stencil/core@4.22.2': {}
'@swc/counter@0.1.3': {}
'@swc/helpers@0.5.5':
dependencies:
'@swc/counter': 0.1.3
- tslib: 2.6.3
-
- '@swc/types@0.1.12':
- dependencies:
- '@swc/counter': 0.1.3
- optional: true
-
- '@szmarczak/http-timer@5.0.1':
- dependencies:
- defer-to-connect: 2.0.1
+ tslib: 2.8.1
'@tootallnate/once@1.1.2': {}
@@ -15692,18 +14236,6 @@ snapshots:
mkdirp: 3.0.1
path-browserify: 1.0.1
- '@tsconfig/node10@1.0.11':
- optional: true
-
- '@tsconfig/node12@1.0.11':
- optional: true
-
- '@tsconfig/node14@1.0.3':
- optional: true
-
- '@tsconfig/node16@1.0.4':
- optional: true
-
'@tufjs/canonical-json@2.0.0': {}
'@tufjs/models@2.0.1':
@@ -15719,57 +14251,55 @@ snapshots:
'@types/babel__core@7.20.5':
dependencies:
- '@babel/parser': 7.25.7
- '@babel/types': 7.25.7
+ '@babel/parser': 7.26.2
+ '@babel/types': 7.26.0
'@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.25.7
+ '@babel/types': 7.26.0
'@types/babel__template@7.4.4':
dependencies:
- '@babel/parser': 7.25.7
- '@babel/types': 7.25.7
+ '@babel/parser': 7.26.2
+ '@babel/types': 7.26.0
'@types/babel__traverse@7.20.6':
dependencies:
- '@babel/types': 7.25.4
+ '@babel/types': 7.26.0
'@types/body-parser@1.19.5':
dependencies:
'@types/connect': 3.4.38
- '@types/node': 22.9.0
+ '@types/node': 20.17.6
'@types/bonjour@3.5.13':
dependencies:
- '@types/node': 22.9.0
+ '@types/node': 20.17.6
'@types/connect-history-api-fallback@1.5.4':
dependencies:
'@types/express-serve-static-core': 5.0.1
- '@types/node': 22.9.0
+ '@types/node': 20.17.6
'@types/connect@3.4.38':
dependencies:
- '@types/node': 22.9.0
-
- '@types/estree@1.0.5': {}
+ '@types/node': 20.17.6
'@types/estree@1.0.6': {}
'@types/express-serve-static-core@4.19.6':
dependencies:
- '@types/node': 22.9.0
+ '@types/node': 20.17.6
'@types/qs': 6.9.17
'@types/range-parser': 1.2.7
'@types/send': 0.17.4
'@types/express-serve-static-core@5.0.1':
dependencies:
- '@types/node': 22.9.0
+ '@types/node': 20.17.6
'@types/qs': 6.9.17
'@types/range-parser': 1.2.7
'@types/send': 0.17.4
@@ -15783,15 +14313,13 @@ snapshots:
'@types/graceful-fs@4.1.9':
dependencies:
- '@types/node': 22.9.0
-
- '@types/http-cache-semantics@4.0.4': {}
+ '@types/node': 20.17.6
'@types/http-errors@2.0.4': {}
'@types/http-proxy@1.17.15':
dependencies:
- '@types/node': 22.9.0
+ '@types/node': 20.17.6
'@types/istanbul-lib-coverage@2.0.6': {}
@@ -15803,16 +14331,16 @@ snapshots:
dependencies:
'@types/istanbul-lib-report': 3.0.3
- '@types/jest@29.5.13':
+ '@types/jest@29.5.14':
dependencies:
expect: 29.7.0
pretty-format: 29.7.0
'@types/jsdom@20.0.1':
dependencies:
- '@types/node': 20.14.12
+ '@types/node': 20.17.6
'@types/tough-cookie': 4.0.5
- parse5: 7.1.2
+ parse5: 7.2.1
'@types/json-schema@7.0.15': {}
@@ -15828,13 +14356,13 @@ snapshots:
'@types/mute-stream@0.0.4':
dependencies:
- '@types/node': 20.14.12
+ '@types/node': 20.17.6
'@types/node-forge@1.3.11':
dependencies:
- '@types/node': 22.9.0
+ '@types/node': 20.17.6
- '@types/node@20.14.12':
+ '@types/node@18.19.64':
dependencies:
undici-types: 5.26.5
@@ -15854,13 +14382,13 @@ snapshots:
'@types/puppeteer@2.0.1':
dependencies:
- '@types/node': 20.14.12
+ '@types/node': 20.17.6
'@types/qs@6.9.17': {}
'@types/range-parser@1.2.7': {}
- '@types/react-dom@18.3.0':
+ '@types/react-dom@18.3.1':
dependencies:
'@types/react': 18.3.12
@@ -15876,7 +14404,7 @@ snapshots:
'@types/send@0.17.4':
dependencies:
'@types/mime': 1.3.5
- '@types/node': 22.9.0
+ '@types/node': 20.17.6
'@types/serve-index@1.9.4':
dependencies:
@@ -15885,14 +14413,14 @@ snapshots:
'@types/serve-static@1.15.7':
dependencies:
'@types/http-errors': 2.0.4
- '@types/node': 22.9.0
+ '@types/node': 20.17.6
'@types/send': 0.17.4
'@types/sinonjs__fake-timers@8.1.5': {}
'@types/sockjs@0.3.36':
dependencies:
- '@types/node': 22.9.0
+ '@types/node': 20.17.6
'@types/stack-utils@2.0.3': {}
@@ -15902,13 +14430,9 @@ snapshots:
'@types/wrap-ansi@3.0.0': {}
- '@types/ws@8.5.12':
- dependencies:
- '@types/node': 20.14.12
-
'@types/ws@8.5.13':
dependencies:
- '@types/node': 22.9.0
+ '@types/node': 20.17.6
'@types/yargs-parser@21.0.3': {}
@@ -15916,298 +14440,219 @@ snapshots:
dependencies:
'@types/yargs-parser': 21.0.3
- '@types/yargs@16.0.9':
- dependencies:
- '@types/yargs-parser': 21.0.3
-
- '@types/yargs@17.0.32':
+ '@types/yargs@17.0.33':
dependencies:
'@types/yargs-parser': 21.0.3
'@types/yauzl@2.10.3':
dependencies:
- '@types/node': 20.14.12
+ '@types/node': 20.17.6
optional: true
- '@typescript-eslint/eslint-plugin@8.8.1(@typescript-eslint/parser@8.8.1(eslint@8.57.1)(typescript@5.6.2))(eslint@8.57.1)(typescript@5.6.2)':
+ '@typescript-eslint/eslint-plugin@8.13.0(@typescript-eslint/parser@8.13.0(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3)':
dependencies:
- '@eslint-community/regexpp': 4.11.1
- '@typescript-eslint/parser': 8.8.1(eslint@8.57.1)(typescript@5.6.2)
- '@typescript-eslint/scope-manager': 8.8.1
- '@typescript-eslint/type-utils': 8.8.1(eslint@8.57.1)(typescript@5.6.2)
- '@typescript-eslint/utils': 8.8.1(eslint@8.57.1)(typescript@5.6.2)
- '@typescript-eslint/visitor-keys': 8.8.1
+ '@eslint-community/regexpp': 4.12.1
+ '@typescript-eslint/parser': 8.13.0(eslint@8.57.1)(typescript@5.6.3)
+ '@typescript-eslint/scope-manager': 8.13.0
+ '@typescript-eslint/type-utils': 8.13.0(eslint@8.57.1)(typescript@5.6.3)
+ '@typescript-eslint/utils': 8.13.0(eslint@8.57.1)(typescript@5.6.3)
+ '@typescript-eslint/visitor-keys': 8.13.0
eslint: 8.57.1
graphemer: 1.4.0
ignore: 5.3.2
natural-compare: 1.4.0
- ts-api-utils: 1.3.0(typescript@5.6.2)
- optionalDependencies:
- typescript: 5.6.2
- transitivePeerDependencies:
- - supports-color
-
- '@typescript-eslint/eslint-plugin@8.8.1(@typescript-eslint/parser@8.8.1(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3)':
- dependencies:
- '@eslint-community/regexpp': 4.11.1
- '@typescript-eslint/parser': 8.8.1(eslint@8.57.1)(typescript@5.6.3)
- '@typescript-eslint/scope-manager': 8.8.1
- '@typescript-eslint/type-utils': 8.8.1(eslint@8.57.1)(typescript@5.6.3)
- '@typescript-eslint/utils': 8.8.1(eslint@8.57.1)(typescript@5.6.3)
- '@typescript-eslint/visitor-keys': 8.8.1
- eslint: 8.57.1
- graphemer: 1.4.0
- ignore: 5.3.2
- natural-compare: 1.4.0
- ts-api-utils: 1.3.0(typescript@5.6.3)
+ ts-api-utils: 1.4.0(typescript@5.6.3)
optionalDependencies:
typescript: 5.6.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@8.8.1(eslint@8.57.1)(typescript@5.6.2)':
- dependencies:
- '@typescript-eslint/scope-manager': 8.8.1
- '@typescript-eslint/types': 8.8.1
- '@typescript-eslint/typescript-estree': 8.8.1(typescript@5.6.2)
- '@typescript-eslint/visitor-keys': 8.8.1
- debug: 4.3.6(supports-color@8.1.1)
- eslint: 8.57.1
- optionalDependencies:
- typescript: 5.6.2
- transitivePeerDependencies:
- - supports-color
-
- '@typescript-eslint/parser@8.8.1(eslint@8.57.1)(typescript@5.6.3)':
+ '@typescript-eslint/parser@8.13.0(eslint@8.57.1)(typescript@5.6.3)':
dependencies:
- '@typescript-eslint/scope-manager': 8.8.1
- '@typescript-eslint/types': 8.8.1
- '@typescript-eslint/typescript-estree': 8.8.1(typescript@5.6.3)
- '@typescript-eslint/visitor-keys': 8.8.1
- debug: 4.3.6(supports-color@8.1.1)
+ '@typescript-eslint/scope-manager': 8.13.0
+ '@typescript-eslint/types': 8.13.0
+ '@typescript-eslint/typescript-estree': 8.13.0(typescript@5.6.3)
+ '@typescript-eslint/visitor-keys': 8.13.0
+ debug: 4.3.7(supports-color@9.4.0)
eslint: 8.57.1
optionalDependencies:
typescript: 5.6.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/scope-manager@8.8.1':
- dependencies:
- '@typescript-eslint/types': 8.8.1
- '@typescript-eslint/visitor-keys': 8.8.1
-
- '@typescript-eslint/type-utils@8.8.1(eslint@8.57.1)(typescript@5.6.2)':
+ '@typescript-eslint/scope-manager@8.13.0':
dependencies:
- '@typescript-eslint/typescript-estree': 8.8.1(typescript@5.6.2)
- '@typescript-eslint/utils': 8.8.1(eslint@8.57.1)(typescript@5.6.2)
- debug: 4.3.6(supports-color@8.1.1)
- ts-api-utils: 1.3.0(typescript@5.6.2)
- optionalDependencies:
- typescript: 5.6.2
- transitivePeerDependencies:
- - eslint
- - supports-color
+ '@typescript-eslint/types': 8.13.0
+ '@typescript-eslint/visitor-keys': 8.13.0
- '@typescript-eslint/type-utils@8.8.1(eslint@8.57.1)(typescript@5.6.3)':
+ '@typescript-eslint/type-utils@8.13.0(eslint@8.57.1)(typescript@5.6.3)':
dependencies:
- '@typescript-eslint/typescript-estree': 8.8.1(typescript@5.6.3)
- '@typescript-eslint/utils': 8.8.1(eslint@8.57.1)(typescript@5.6.3)
- debug: 4.3.6(supports-color@8.1.1)
- ts-api-utils: 1.3.0(typescript@5.6.3)
+ '@typescript-eslint/typescript-estree': 8.13.0(typescript@5.6.3)
+ '@typescript-eslint/utils': 8.13.0(eslint@8.57.1)(typescript@5.6.3)
+ debug: 4.3.7(supports-color@9.4.0)
+ ts-api-utils: 1.4.0(typescript@5.6.3)
optionalDependencies:
typescript: 5.6.3
transitivePeerDependencies:
- eslint
- supports-color
- '@typescript-eslint/types@8.8.1': {}
-
- '@typescript-eslint/typescript-estree@8.8.1(typescript@5.6.2)':
- dependencies:
- '@typescript-eslint/types': 8.8.1
- '@typescript-eslint/visitor-keys': 8.8.1
- debug: 4.3.6(supports-color@8.1.1)
- fast-glob: 3.3.2
- is-glob: 4.0.3
- minimatch: 9.0.5
- semver: 7.6.3
- ts-api-utils: 1.3.0(typescript@5.6.2)
- optionalDependencies:
- typescript: 5.6.2
- transitivePeerDependencies:
- - supports-color
-
- '@typescript-eslint/typescript-estree@8.8.1(typescript@5.6.3)':
+ '@typescript-eslint/types@8.13.0': {}
+
+ '@typescript-eslint/typescript-estree@8.13.0(typescript@5.6.3)':
dependencies:
- '@typescript-eslint/types': 8.8.1
- '@typescript-eslint/visitor-keys': 8.8.1
- debug: 4.3.6(supports-color@8.1.1)
+ '@typescript-eslint/types': 8.13.0
+ '@typescript-eslint/visitor-keys': 8.13.0
+ debug: 4.3.7(supports-color@9.4.0)
fast-glob: 3.3.2
is-glob: 4.0.3
minimatch: 9.0.5
semver: 7.6.3
- ts-api-utils: 1.3.0(typescript@5.6.3)
+ ts-api-utils: 1.4.0(typescript@5.6.3)
optionalDependencies:
typescript: 5.6.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@8.8.1(eslint@8.57.1)(typescript@5.6.2)':
- dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.1)
- '@typescript-eslint/scope-manager': 8.8.1
- '@typescript-eslint/types': 8.8.1
- '@typescript-eslint/typescript-estree': 8.8.1(typescript@5.6.2)
- eslint: 8.57.1
- transitivePeerDependencies:
- - supports-color
- - typescript
-
- '@typescript-eslint/utils@8.8.1(eslint@8.57.1)(typescript@5.6.3)':
+ '@typescript-eslint/utils@8.13.0(eslint@8.57.1)(typescript@5.6.3)':
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.1)
- '@typescript-eslint/scope-manager': 8.8.1
- '@typescript-eslint/types': 8.8.1
- '@typescript-eslint/typescript-estree': 8.8.1(typescript@5.6.3)
+ '@eslint-community/eslint-utils': 4.4.1(eslint@8.57.1)
+ '@typescript-eslint/scope-manager': 8.13.0
+ '@typescript-eslint/types': 8.13.0
+ '@typescript-eslint/typescript-estree': 8.13.0(typescript@5.6.3)
eslint: 8.57.1
transitivePeerDependencies:
- supports-color
- typescript
- '@typescript-eslint/visitor-keys@8.8.1':
+ '@typescript-eslint/visitor-keys@8.13.0':
dependencies:
- '@typescript-eslint/types': 8.8.1
+ '@typescript-eslint/types': 8.13.0
eslint-visitor-keys: 3.4.3
'@ungap/structured-clone@1.2.0': {}
- '@unhead/dom@1.11.7':
+ '@unhead/dom@1.11.11':
dependencies:
- '@unhead/schema': 1.11.7
- '@unhead/shared': 1.11.7
+ '@unhead/schema': 1.11.11
+ '@unhead/shared': 1.11.11
- '@unhead/schema@1.11.7':
+ '@unhead/schema@1.11.11':
dependencies:
hookable: 5.5.3
zhead: 2.2.4
- '@unhead/shared@1.11.7':
+ '@unhead/shared@1.11.11':
dependencies:
- '@unhead/schema': 1.11.7
+ '@unhead/schema': 1.11.11
- '@unhead/ssr@1.11.7':
+ '@unhead/ssr@1.11.11':
dependencies:
- '@unhead/schema': 1.11.7
- '@unhead/shared': 1.11.7
+ '@unhead/schema': 1.11.11
+ '@unhead/shared': 1.11.11
- '@unhead/vue@1.11.7(vue@3.5.10(typescript@5.6.3))':
+ '@unhead/vue@1.11.11(vue@3.5.12(typescript@5.6.3))':
dependencies:
- '@unhead/schema': 1.11.7
- '@unhead/shared': 1.11.7
+ '@unhead/schema': 1.11.11
+ '@unhead/shared': 1.11.11
defu: 6.1.4
hookable: 5.5.3
- unhead: 1.11.7
- vue: 3.5.10(typescript@5.6.3)
+ unhead: 1.11.11
+ vue: 3.5.12(typescript@5.6.3)
- '@vercel/nft@0.26.5(encoding@0.1.13)':
+ '@vercel/nft@0.27.6(encoding@0.1.13)':
dependencies:
'@mapbox/node-pre-gyp': 1.0.11(encoding@0.1.13)
'@rollup/pluginutils': 4.2.1
- acorn: 8.12.1
- acorn-import-attributes: 1.9.5(acorn@8.12.1)
+ acorn: 8.14.0
+ acorn-import-attributes: 1.9.5(acorn@8.14.0)
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.7
+ micromatch: 4.0.8
node-gyp-build: 4.8.2
resolve-from: 5.0.0
transitivePeerDependencies:
- encoding
- supports-color
- '@vitejs/plugin-basic-ssl@1.1.0(vite@5.1.8(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.29.1))':
+ '@vitejs/plugin-basic-ssl@1.1.0(vite@5.1.8(@types/node@20.17.6)(less@4.2.0)(sass@1.71.1)(terser@5.29.1))':
dependencies:
- vite: 5.1.8(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.29.1)
+ vite: 5.1.8(@types/node@20.17.6)(less@4.2.0)(sass@1.71.1)(terser@5.29.1)
- '@vitejs/plugin-react@4.3.2(vite@5.4.8(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.29.1))':
+ '@vitejs/plugin-react@4.3.3(vite@5.4.10(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.36.0))':
dependencies:
- '@babel/core': 7.25.7
- '@babel/plugin-transform-react-jsx-self': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-react-jsx-source': 7.25.7(@babel/core@7.25.7)
+ '@babel/core': 7.26.0
+ '@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.0)
'@types/babel__core': 7.20.5
react-refresh: 0.14.2
- vite: 5.4.8(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.29.1)
+ vite: 5.4.10(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.36.0)
transitivePeerDependencies:
- supports-color
- '@vitejs/plugin-vue-jsx@4.0.1(vite@5.4.8(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.29.1))(vue@3.5.10(typescript@5.6.3))':
+ '@vitejs/plugin-vue-jsx@4.0.1(vite@5.4.10(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))':
dependencies:
- '@babel/core': 7.24.7
- '@babel/plugin-transform-typescript': 7.25.7(@babel/core@7.24.7)
- '@vue/babel-plugin-jsx': 1.2.5(@babel/core@7.24.7)
- vite: 5.4.8(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.29.1)
- vue: 3.5.10(typescript@5.6.3)
+ '@babel/core': 7.26.0
+ '@babel/plugin-transform-typescript': 7.25.9(@babel/core@7.26.0)
+ '@vue/babel-plugin-jsx': 1.2.5(@babel/core@7.26.0)
+ vite: 5.4.10(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.36.0)
+ vue: 3.5.12(typescript@5.6.3)
transitivePeerDependencies:
- supports-color
- '@vitejs/plugin-vue@5.1.4(vite@5.4.8(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.29.1))(vue@3.5.10(typescript@5.6.3))':
+ '@vitejs/plugin-vue@5.1.4(vite@5.4.10(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))':
dependencies:
- vite: 5.4.8(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.29.1)
- vue: 3.5.10(typescript@5.6.3)
+ vite: 5.4.10(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.36.0)
+ vue: 3.5.12(typescript@5.6.3)
- '@vitest/expect@2.1.3':
+ '@vitest/expect@2.1.4':
dependencies:
- '@vitest/spy': 2.1.3
- '@vitest/utils': 2.1.3
+ '@vitest/spy': 2.1.4
+ '@vitest/utils': 2.1.4
chai: 5.1.2
tinyrainbow: 1.2.0
- '@vitest/mocker@2.1.3(@vitest/spy@2.1.3)(vite@5.4.8(@types/node@20.17.6)(less@4.2.0)(sass@1.71.1)(terser@5.29.1))':
+ '@vitest/mocker@2.1.4(vite@5.4.10(@types/node@18.19.64)(less@4.2.0)(sass@1.71.1)(terser@5.36.0))':
dependencies:
- '@vitest/spy': 2.1.3
+ '@vitest/spy': 2.1.4
estree-walker: 3.0.3
magic-string: 0.30.12
optionalDependencies:
- vite: 5.4.8(@types/node@20.17.6)(less@4.2.0)(sass@1.71.1)(terser@5.29.1)
-
- '@vitest/pretty-format@2.1.2':
- dependencies:
- tinyrainbow: 1.2.0
+ vite: 5.4.10(@types/node@18.19.64)(less@4.2.0)(sass@1.71.1)(terser@5.36.0)
- '@vitest/pretty-format@2.1.3':
+ '@vitest/mocker@2.1.4(vite@5.4.10(@types/node@20.17.6)(less@4.2.0)(sass@1.71.1)(terser@5.36.0))':
dependencies:
- tinyrainbow: 1.2.0
+ '@vitest/spy': 2.1.4
+ estree-walker: 3.0.3
+ magic-string: 0.30.12
+ optionalDependencies:
+ vite: 5.4.10(@types/node@20.17.6)(less@4.2.0)(sass@1.71.1)(terser@5.36.0)
'@vitest/pretty-format@2.1.4':
dependencies:
tinyrainbow: 1.2.0
- '@vitest/runner@2.1.3':
- dependencies:
- '@vitest/utils': 2.1.3
- pathe: 1.1.2
-
- '@vitest/snapshot@2.1.2':
+ '@vitest/runner@2.1.4':
dependencies:
- '@vitest/pretty-format': 2.1.2
- magic-string: 0.30.11
+ '@vitest/utils': 2.1.4
pathe: 1.1.2
- '@vitest/snapshot@2.1.3':
+ '@vitest/snapshot@2.1.4':
dependencies:
- '@vitest/pretty-format': 2.1.3
+ '@vitest/pretty-format': 2.1.4
magic-string: 0.30.12
pathe: 1.1.2
- '@vitest/spy@2.1.3':
+ '@vitest/spy@2.1.4':
dependencies:
tinyspy: 3.0.2
- '@vitest/utils@2.1.3':
+ '@vitest/utils@2.1.4':
dependencies:
- '@vitest/pretty-format': 2.1.3
+ '@vitest/pretty-format': 2.1.4
loupe: 3.1.2
tinyrainbow: 1.2.0
@@ -16215,99 +14660,99 @@ snapshots:
dependencies:
'@volar/source-map': 1.11.1
- '@volar/language-core@2.4.6':
+ '@volar/language-core@2.4.9':
dependencies:
- '@volar/source-map': 2.4.6
+ '@volar/source-map': 2.4.9
'@volar/source-map@1.11.1':
dependencies:
muggle-string: 0.3.1
- '@volar/source-map@2.4.6': {}
+ '@volar/source-map@2.4.9': {}
'@volar/typescript@1.11.1':
dependencies:
'@volar/language-core': 1.11.1
path-browserify: 1.0.1
- '@volar/typescript@2.4.6':
+ '@volar/typescript@2.4.9':
dependencies:
- '@volar/language-core': 2.4.6
+ '@volar/language-core': 2.4.9
path-browserify: 1.0.1
vscode-uri: 3.0.8
- '@vue-macros/common@1.14.0(rollup@4.24.2)(vue@3.5.10(typescript@5.6.3))':
+ '@vue-macros/common@1.15.0(rollup@4.24.4)(vue@3.5.12(typescript@5.6.3))':
dependencies:
- '@babel/types': 7.25.7
- '@rollup/pluginutils': 5.1.3(rollup@4.24.2)
- '@vue/compiler-sfc': 3.5.10
- ast-kit: 1.2.1
+ '@babel/types': 7.26.0
+ '@rollup/pluginutils': 5.1.3(rollup@4.24.4)
+ '@vue/compiler-sfc': 3.5.12
+ ast-kit: 1.3.0
local-pkg: 0.5.0
magic-string-ast: 0.6.2
optionalDependencies:
- vue: 3.5.10(typescript@5.6.3)
+ vue: 3.5.12(typescript@5.6.3)
transitivePeerDependencies:
- rollup
'@vue/babel-helper-vue-transform-on@1.2.5': {}
- '@vue/babel-plugin-jsx@1.2.5(@babel/core@7.24.7)':
+ '@vue/babel-plugin-jsx@1.2.5(@babel/core@7.26.0)':
dependencies:
- '@babel/helper-module-imports': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.24.7)
- '@babel/template': 7.25.0
- '@babel/traverse': 7.25.7
- '@babel/types': 7.25.7
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0)
+ '@babel/template': 7.25.9
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
'@vue/babel-helper-vue-transform-on': 1.2.5
- '@vue/babel-plugin-resolve-type': 1.2.5(@babel/core@7.24.7)
+ '@vue/babel-plugin-resolve-type': 1.2.5(@babel/core@7.26.0)
html-tags: 3.3.1
svg-tags: 1.0.0
optionalDependencies:
- '@babel/core': 7.24.7
+ '@babel/core': 7.26.0
transitivePeerDependencies:
- supports-color
- '@vue/babel-plugin-resolve-type@1.2.5(@babel/core@7.24.7)':
+ '@vue/babel-plugin-resolve-type@1.2.5(@babel/core@7.26.0)':
dependencies:
- '@babel/code-frame': 7.24.7
- '@babel/core': 7.24.7
- '@babel/helper-module-imports': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/parser': 7.25.7
- '@vue/compiler-sfc': 3.5.10
+ '@babel/code-frame': 7.26.2
+ '@babel/core': 7.26.0
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/parser': 7.26.2
+ '@vue/compiler-sfc': 3.5.12
transitivePeerDependencies:
- supports-color
- '@vue/compiler-core@3.5.10':
+ '@vue/compiler-core@3.5.12':
dependencies:
- '@babel/parser': 7.25.4
- '@vue/shared': 3.5.10
+ '@babel/parser': 7.26.2
+ '@vue/shared': 3.5.12
entities: 4.5.0
estree-walker: 2.0.2
source-map-js: 1.2.1
- '@vue/compiler-dom@3.5.10':
+ '@vue/compiler-dom@3.5.12':
dependencies:
- '@vue/compiler-core': 3.5.10
- '@vue/shared': 3.5.10
+ '@vue/compiler-core': 3.5.12
+ '@vue/shared': 3.5.12
- '@vue/compiler-sfc@3.5.10':
+ '@vue/compiler-sfc@3.5.12':
dependencies:
- '@babel/parser': 7.25.4
- '@vue/compiler-core': 3.5.10
- '@vue/compiler-dom': 3.5.10
- '@vue/compiler-ssr': 3.5.10
- '@vue/shared': 3.5.10
+ '@babel/parser': 7.26.2
+ '@vue/compiler-core': 3.5.12
+ '@vue/compiler-dom': 3.5.12
+ '@vue/compiler-ssr': 3.5.12
+ '@vue/shared': 3.5.12
estree-walker: 2.0.2
- magic-string: 0.30.11
+ magic-string: 0.30.12
postcss: 8.4.47
source-map-js: 1.2.1
- '@vue/compiler-ssr@3.5.10':
+ '@vue/compiler-ssr@3.5.12':
dependencies:
- '@vue/compiler-dom': 3.5.10
- '@vue/shared': 3.5.10
+ '@vue/compiler-dom': 3.5.12
+ '@vue/shared': 3.5.12
'@vue/compiler-vue2@2.7.16':
dependencies:
@@ -16316,21 +14761,21 @@ snapshots:
'@vue/devtools-api@6.6.4': {}
- '@vue/devtools-core@7.4.4(vite@5.4.8(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.29.1))(vue@3.5.10(typescript@5.6.3))':
+ '@vue/devtools-core@7.4.4(vite@5.4.10(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))':
dependencies:
'@vue/devtools-kit': 7.4.4
- '@vue/devtools-shared': 7.4.6
+ '@vue/devtools-shared': 7.6.3
mitt: 3.0.1
nanoid: 3.3.7
pathe: 1.1.2
- vite-hot-client: 0.2.3(vite@5.4.8(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.29.1))
- vue: 3.5.10(typescript@5.6.3)
+ vite-hot-client: 0.2.3(vite@5.4.10(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.36.0))
+ vue: 3.5.12(typescript@5.6.3)
transitivePeerDependencies:
- vite
'@vue/devtools-kit@7.4.4':
dependencies:
- '@vue/devtools-shared': 7.4.6
+ '@vue/devtools-shared': 7.6.3
birpc: 0.2.19
hookable: 5.5.3
mitt: 3.0.1
@@ -16338,15 +14783,15 @@ snapshots:
speakingurl: 14.0.1
superjson: 2.2.1
- '@vue/devtools-shared@7.4.6':
+ '@vue/devtools-shared@7.6.3':
dependencies:
rfdc: 1.4.1
- '@vue/language-core@1.8.27(typescript@5.6.2)':
+ '@vue/language-core@1.8.27(typescript@5.6.3)':
dependencies:
'@volar/language-core': 1.11.1
'@volar/source-map': 1.11.1
- '@vue/compiler-dom': 3.5.10
+ '@vue/compiler-dom': 3.5.12
'@vue/shared': 3.5.12
computeds: 0.0.1
minimatch: 9.0.5
@@ -16354,130 +14799,62 @@ snapshots:
path-browserify: 1.0.1
vue-template-compiler: 2.7.16
optionalDependencies:
- typescript: 5.6.2
+ typescript: 5.6.3
- '@vue/language-core@2.1.6(typescript@5.6.3)':
+ '@vue/language-core@2.1.10(typescript@5.6.3)':
dependencies:
- '@volar/language-core': 2.4.6
- '@vue/compiler-dom': 3.5.10
+ '@volar/language-core': 2.4.9
+ '@vue/compiler-dom': 3.5.12
'@vue/compiler-vue2': 2.7.16
'@vue/shared': 3.5.12
- computeds: 0.0.1
+ alien-signals: 0.2.0
minimatch: 9.0.5
muggle-string: 0.4.1
path-browserify: 1.0.1
optionalDependencies:
typescript: 5.6.3
- '@vue/reactivity@3.5.10':
+ '@vue/reactivity@3.5.12':
dependencies:
- '@vue/shared': 3.5.10
+ '@vue/shared': 3.5.12
- '@vue/runtime-core@3.5.10':
+ '@vue/runtime-core@3.5.12':
dependencies:
- '@vue/reactivity': 3.5.10
- '@vue/shared': 3.5.10
+ '@vue/reactivity': 3.5.12
+ '@vue/shared': 3.5.12
- '@vue/runtime-dom@3.5.10':
+ '@vue/runtime-dom@3.5.12':
dependencies:
- '@vue/reactivity': 3.5.10
- '@vue/runtime-core': 3.5.10
- '@vue/shared': 3.5.10
+ '@vue/reactivity': 3.5.12
+ '@vue/runtime-core': 3.5.12
+ '@vue/shared': 3.5.12
csstype: 3.1.3
- '@vue/server-renderer@3.5.10(vue@3.5.10(typescript@5.6.3))':
+ '@vue/server-renderer@3.5.12(vue@3.5.12(typescript@5.6.3))':
dependencies:
- '@vue/compiler-ssr': 3.5.10
- '@vue/shared': 3.5.10
- vue: 3.5.10(typescript@5.6.3)
-
- '@vue/shared@3.5.10': {}
+ '@vue/compiler-ssr': 3.5.12
+ '@vue/shared': 3.5.12
+ vue: 3.5.12(typescript@5.6.3)
'@vue/shared@3.5.12': {}
- '@wdio/cli@9.1.4':
- dependencies:
- '@types/node': 20.17.6
- '@vitest/snapshot': 2.1.2
- '@wdio/config': 9.1.3
- '@wdio/globals': 9.1.4(@wdio/logger@9.1.3)
- '@wdio/logger': 9.1.3
- '@wdio/protocols': 9.0.8
- '@wdio/types': 9.1.3
- '@wdio/utils': 9.1.3
- async-exit-hook: 2.0.1
- chalk: 5.3.0
- chokidar: 4.0.1
- cli-spinners: 3.2.0
- dotenv: 16.4.5
- ejs: 3.1.10
- execa: 9.4.0
- import-meta-resolve: 4.1.0
- inquirer: 11.1.0
- lodash.flattendeep: 4.4.0
- lodash.pickby: 4.6.0
- lodash.union: 4.6.0
- read-pkg-up: 10.1.0
- recursive-readdir: 2.2.3
- tsx: 4.19.1
- webdriverio: 9.1.4
- yargs: 17.7.2
- transitivePeerDependencies:
- - bufferutil
- - puppeteer-core
- - supports-color
- - utf-8-validate
-
- '@wdio/cli@9.1.5':
- dependencies:
- '@types/node': 20.14.12
- '@vitest/snapshot': 2.1.2
- '@wdio/config': 9.1.3
- '@wdio/globals': 9.1.5(@wdio/logger@9.1.3)
- '@wdio/logger': 9.1.3
- '@wdio/protocols': 9.0.8
- '@wdio/types': 9.1.3
- '@wdio/utils': 9.1.3
- async-exit-hook: 2.0.1
- chalk: 5.3.0
- chokidar: 4.0.1
- cli-spinners: 3.2.0
- dotenv: 16.4.5
- ejs: 3.1.10
- execa: 9.4.0
- import-meta-resolve: 4.1.0
- inquirer: 11.1.0
- lodash.flattendeep: 4.4.0
- lodash.pickby: 4.6.0
- lodash.union: 4.6.0
- read-pkg-up: 10.1.0
- recursive-readdir: 2.2.3
- tsx: 4.19.1
- webdriverio: 9.1.5
- yargs: 17.7.2
- transitivePeerDependencies:
- - bufferutil
- - puppeteer-core
- - supports-color
- - utf-8-validate
-
- '@wdio/cli@9.2.1':
+ '@wdio/cli@9.2.10':
dependencies:
'@types/node': 20.17.6
- '@vitest/snapshot': 2.1.2
- '@wdio/config': 9.1.3
- '@wdio/globals': 9.2.1(@wdio/logger@9.1.3)
+ '@vitest/snapshot': 2.1.4
+ '@wdio/config': 9.2.8
+ '@wdio/globals': 9.2.8(@wdio/logger@9.1.3)
'@wdio/logger': 9.1.3
- '@wdio/protocols': 9.2.0
- '@wdio/types': 9.1.3
- '@wdio/utils': 9.1.3
+ '@wdio/protocols': 9.2.2
+ '@wdio/types': 9.2.2
+ '@wdio/utils': 9.2.8
async-exit-hook: 2.0.1
chalk: 5.3.0
chokidar: 4.0.1
cli-spinners: 3.2.0
dotenv: 16.4.5
ejs: 3.1.10
- execa: 9.4.0
+ execa: 9.5.1
import-meta-resolve: 4.1.0
inquirer: 11.1.0
lodash.flattendeep: 4.4.0
@@ -16485,8 +14862,8 @@ snapshots:
lodash.union: 4.6.0
read-pkg-up: 10.1.0
recursive-readdir: 2.2.3
- tsx: 4.19.1
- webdriverio: 9.2.1
+ tsx: 4.19.2
+ webdriverio: 9.2.8
yargs: 17.7.2
transitivePeerDependencies:
- bufferutil
@@ -16494,44 +14871,22 @@ snapshots:
- supports-color
- utf-8-validate
- '@wdio/config@9.1.3':
+ '@wdio/config@9.2.8':
dependencies:
'@wdio/logger': 9.1.3
- '@wdio/types': 9.1.3
- '@wdio/utils': 9.1.3
+ '@wdio/types': 9.2.2
+ '@wdio/utils': 9.2.8
decamelize: 6.0.0
deepmerge-ts: 7.1.3
- glob: 10.4.2
+ glob: 10.4.5
import-meta-resolve: 4.1.0
transitivePeerDependencies:
- supports-color
- '@wdio/globals@9.1.4(@wdio/logger@9.1.3)':
- optionalDependencies:
- expect-webdriverio: 5.0.3(@wdio/globals@9.1.4(@wdio/logger@9.1.3))(@wdio/logger@9.1.3)(webdriverio@9.1.4)
- webdriverio: 9.1.4
- transitivePeerDependencies:
- - '@wdio/logger'
- - bufferutil
- - puppeteer-core
- - supports-color
- - utf-8-validate
-
- '@wdio/globals@9.1.5(@wdio/logger@9.1.3)':
- optionalDependencies:
- expect-webdriverio: 5.0.3(@wdio/globals@9.1.5(@wdio/logger@9.1.3))(@wdio/logger@9.1.3)(webdriverio@9.1.5)
- webdriverio: 9.1.5
- transitivePeerDependencies:
- - '@wdio/logger'
- - bufferutil
- - puppeteer-core
- - supports-color
- - utf-8-validate
-
- '@wdio/globals@9.2.1(@wdio/logger@9.1.3)':
+ '@wdio/globals@9.2.8(@wdio/logger@9.1.3)':
optionalDependencies:
- expect-webdriverio: 5.0.3(@wdio/globals@9.2.1(@wdio/logger@9.1.3))(@wdio/logger@9.1.3)(webdriverio@9.2.1)
- webdriverio: 9.2.1
+ expect-webdriverio: 5.0.3(@wdio/globals@9.2.8(@wdio/logger@9.1.3))(@wdio/logger@9.1.3)(webdriverio@9.2.8)
+ webdriverio: 9.2.8
transitivePeerDependencies:
- '@wdio/logger'
- bufferutil
@@ -16539,29 +14894,13 @@ snapshots:
- supports-color
- utf-8-validate
- '@wdio/local-runner@9.1.4':
- dependencies:
- '@types/node': 20.17.6
- '@wdio/logger': 9.1.3
- '@wdio/repl': 9.0.8
- '@wdio/runner': 9.1.4
- '@wdio/types': 9.1.3
- async-exit-hook: 2.0.1
- split2: 4.2.0
- stream-buffers: 3.0.3
- transitivePeerDependencies:
- - bufferutil
- - puppeteer-core
- - supports-color
- - utf-8-validate
-
- '@wdio/local-runner@9.1.5':
+ '@wdio/local-runner@9.2.8':
dependencies:
'@types/node': 20.17.6
'@wdio/logger': 9.1.3
'@wdio/repl': 9.0.8
- '@wdio/runner': 9.1.5
- '@wdio/types': 9.1.3
+ '@wdio/runner': 9.2.8
+ '@wdio/types': 9.2.2
async-exit-hook: 2.0.1
split2: 4.2.0
stream-buffers: 3.0.3
@@ -16585,180 +14924,153 @@ snapshots:
loglevel-plugin-prefix: 0.8.4
strip-ansi: 7.1.0
- '@wdio/mocha-framework@9.1.3':
+ '@wdio/mocha-framework@9.2.8':
dependencies:
'@types/mocha': 10.0.9
- '@types/node': 20.14.12
+ '@types/node': 20.17.6
'@wdio/logger': 9.1.3
- '@wdio/types': 9.1.3
- '@wdio/utils': 9.1.3
- mocha: 10.7.3
+ '@wdio/types': 9.2.2
+ '@wdio/utils': 9.2.8
+ mocha: 10.8.2
transitivePeerDependencies:
- supports-color
- '@wdio/protocols@9.0.8': {}
-
- '@wdio/protocols@9.2.0': {}
+ '@wdio/protocols@9.2.2': {}
'@wdio/repl@9.0.8':
dependencies:
- '@types/node': 20.14.12
+ '@types/node': 20.17.6
- '@wdio/reporter@9.1.3':
+ '@wdio/reporter@9.2.2':
dependencies:
'@types/node': 20.17.6
'@wdio/logger': 9.1.3
- '@wdio/types': 9.1.3
+ '@wdio/types': 9.2.2
diff: 7.0.0
object-inspect: 1.13.2
- '@wdio/runner@9.1.4':
- dependencies:
- '@types/node': 20.17.6
- '@wdio/config': 9.1.3
- '@wdio/globals': 9.1.4(@wdio/logger@9.1.3)
- '@wdio/logger': 9.1.3
- '@wdio/types': 9.1.3
- '@wdio/utils': 9.1.3
- deepmerge-ts: 7.1.3
- expect-webdriverio: 5.0.3(@wdio/globals@9.1.4(@wdio/logger@9.1.3))(@wdio/logger@9.1.3)(webdriverio@9.1.4)
- gaze: 1.1.3
- webdriver: 9.1.3
- webdriverio: 9.1.4
- transitivePeerDependencies:
- - bufferutil
- - puppeteer-core
- - supports-color
- - utf-8-validate
-
- '@wdio/runner@9.1.5':
+ '@wdio/runner@9.2.8':
dependencies:
'@types/node': 20.17.6
- '@wdio/config': 9.1.3
- '@wdio/globals': 9.1.5(@wdio/logger@9.1.3)
+ '@wdio/config': 9.2.8
+ '@wdio/globals': 9.2.8(@wdio/logger@9.1.3)
'@wdio/logger': 9.1.3
- '@wdio/types': 9.1.3
- '@wdio/utils': 9.1.3
+ '@wdio/types': 9.2.2
+ '@wdio/utils': 9.2.8
deepmerge-ts: 7.1.3
- expect-webdriverio: 5.0.3(@wdio/globals@9.1.5(@wdio/logger@9.1.3))(@wdio/logger@9.1.3)(webdriverio@9.1.5)
- gaze: 1.1.3
- webdriver: 9.1.5
- webdriverio: 9.1.5
+ expect-webdriverio: 5.0.3(@wdio/globals@9.2.8(@wdio/logger@9.1.3))(@wdio/logger@9.1.3)(webdriverio@9.2.8)
+ webdriver: 9.2.8
+ webdriverio: 9.2.8
transitivePeerDependencies:
- bufferutil
- puppeteer-core
- supports-color
- utf-8-validate
- '@wdio/spec-reporter@9.1.3':
+ '@wdio/spec-reporter@9.2.8':
dependencies:
- '@wdio/reporter': 9.1.3
- '@wdio/types': 9.1.3
+ '@wdio/reporter': 9.2.2
+ '@wdio/types': 9.2.2
chalk: 5.3.0
easy-table: 1.2.0
pretty-ms: 9.1.0
- '@wdio/types@8.40.6':
- dependencies:
- '@types/node': 22.9.0
- optional: true
-
- '@wdio/types@9.1.3':
+ '@wdio/types@9.2.2':
dependencies:
'@types/node': 20.17.6
- '@wdio/utils@9.1.3':
+ '@wdio/utils@9.2.8':
dependencies:
- '@puppeteer/browsers': 2.4.0
+ '@puppeteer/browsers': 2.4.1
'@wdio/logger': 9.1.3
- '@wdio/types': 9.1.3
+ '@wdio/types': 9.2.2
decamelize: 6.0.0
deepmerge-ts: 7.1.3
edgedriver: 5.6.1
geckodriver: 4.5.1
get-port: 7.1.0
import-meta-resolve: 4.1.0
- locate-app: 2.4.43
+ locate-app: 2.5.0
safaridriver: 0.1.2
split2: 4.2.0
wait-port: 1.1.0
transitivePeerDependencies:
- supports-color
- '@webassemblyjs/ast@1.12.1':
+ '@webassemblyjs/ast@1.14.1':
dependencies:
- '@webassemblyjs/helper-numbers': 1.11.6
- '@webassemblyjs/helper-wasm-bytecode': 1.11.6
+ '@webassemblyjs/helper-numbers': 1.13.2
+ '@webassemblyjs/helper-wasm-bytecode': 1.13.2
- '@webassemblyjs/floating-point-hex-parser@1.11.6': {}
+ '@webassemblyjs/floating-point-hex-parser@1.13.2': {}
- '@webassemblyjs/helper-api-error@1.11.6': {}
+ '@webassemblyjs/helper-api-error@1.13.2': {}
- '@webassemblyjs/helper-buffer@1.12.1': {}
+ '@webassemblyjs/helper-buffer@1.14.1': {}
- '@webassemblyjs/helper-numbers@1.11.6':
+ '@webassemblyjs/helper-numbers@1.13.2':
dependencies:
- '@webassemblyjs/floating-point-hex-parser': 1.11.6
- '@webassemblyjs/helper-api-error': 1.11.6
+ '@webassemblyjs/floating-point-hex-parser': 1.13.2
+ '@webassemblyjs/helper-api-error': 1.13.2
'@xtuc/long': 4.2.2
- '@webassemblyjs/helper-wasm-bytecode@1.11.6': {}
+ '@webassemblyjs/helper-wasm-bytecode@1.13.2': {}
- '@webassemblyjs/helper-wasm-section@1.12.1':
+ '@webassemblyjs/helper-wasm-section@1.14.1':
dependencies:
- '@webassemblyjs/ast': 1.12.1
- '@webassemblyjs/helper-buffer': 1.12.1
- '@webassemblyjs/helper-wasm-bytecode': 1.11.6
- '@webassemblyjs/wasm-gen': 1.12.1
+ '@webassemblyjs/ast': 1.14.1
+ '@webassemblyjs/helper-buffer': 1.14.1
+ '@webassemblyjs/helper-wasm-bytecode': 1.13.2
+ '@webassemblyjs/wasm-gen': 1.14.1
- '@webassemblyjs/ieee754@1.11.6':
+ '@webassemblyjs/ieee754@1.13.2':
dependencies:
'@xtuc/ieee754': 1.2.0
- '@webassemblyjs/leb128@1.11.6':
+ '@webassemblyjs/leb128@1.13.2':
dependencies:
'@xtuc/long': 4.2.2
- '@webassemblyjs/utf8@1.11.6': {}
+ '@webassemblyjs/utf8@1.13.2': {}
- '@webassemblyjs/wasm-edit@1.12.1':
+ '@webassemblyjs/wasm-edit@1.14.1':
dependencies:
- '@webassemblyjs/ast': 1.12.1
- '@webassemblyjs/helper-buffer': 1.12.1
- '@webassemblyjs/helper-wasm-bytecode': 1.11.6
- '@webassemblyjs/helper-wasm-section': 1.12.1
- '@webassemblyjs/wasm-gen': 1.12.1
- '@webassemblyjs/wasm-opt': 1.12.1
- '@webassemblyjs/wasm-parser': 1.12.1
- '@webassemblyjs/wast-printer': 1.12.1
+ '@webassemblyjs/ast': 1.14.1
+ '@webassemblyjs/helper-buffer': 1.14.1
+ '@webassemblyjs/helper-wasm-bytecode': 1.13.2
+ '@webassemblyjs/helper-wasm-section': 1.14.1
+ '@webassemblyjs/wasm-gen': 1.14.1
+ '@webassemblyjs/wasm-opt': 1.14.1
+ '@webassemblyjs/wasm-parser': 1.14.1
+ '@webassemblyjs/wast-printer': 1.14.1
- '@webassemblyjs/wasm-gen@1.12.1':
+ '@webassemblyjs/wasm-gen@1.14.1':
dependencies:
- '@webassemblyjs/ast': 1.12.1
- '@webassemblyjs/helper-wasm-bytecode': 1.11.6
- '@webassemblyjs/ieee754': 1.11.6
- '@webassemblyjs/leb128': 1.11.6
- '@webassemblyjs/utf8': 1.11.6
+ '@webassemblyjs/ast': 1.14.1
+ '@webassemblyjs/helper-wasm-bytecode': 1.13.2
+ '@webassemblyjs/ieee754': 1.13.2
+ '@webassemblyjs/leb128': 1.13.2
+ '@webassemblyjs/utf8': 1.13.2
- '@webassemblyjs/wasm-opt@1.12.1':
+ '@webassemblyjs/wasm-opt@1.14.1':
dependencies:
- '@webassemblyjs/ast': 1.12.1
- '@webassemblyjs/helper-buffer': 1.12.1
- '@webassemblyjs/wasm-gen': 1.12.1
- '@webassemblyjs/wasm-parser': 1.12.1
+ '@webassemblyjs/ast': 1.14.1
+ '@webassemblyjs/helper-buffer': 1.14.1
+ '@webassemblyjs/wasm-gen': 1.14.1
+ '@webassemblyjs/wasm-parser': 1.14.1
- '@webassemblyjs/wasm-parser@1.12.1':
+ '@webassemblyjs/wasm-parser@1.14.1':
dependencies:
- '@webassemblyjs/ast': 1.12.1
- '@webassemblyjs/helper-api-error': 1.11.6
- '@webassemblyjs/helper-wasm-bytecode': 1.11.6
- '@webassemblyjs/ieee754': 1.11.6
- '@webassemblyjs/leb128': 1.11.6
- '@webassemblyjs/utf8': 1.11.6
+ '@webassemblyjs/ast': 1.14.1
+ '@webassemblyjs/helper-api-error': 1.13.2
+ '@webassemblyjs/helper-wasm-bytecode': 1.13.2
+ '@webassemblyjs/ieee754': 1.13.2
+ '@webassemblyjs/leb128': 1.13.2
+ '@webassemblyjs/utf8': 1.13.2
- '@webassemblyjs/wast-printer@1.12.1':
+ '@webassemblyjs/wast-printer@1.14.1':
dependencies:
- '@webassemblyjs/ast': 1.12.1
+ '@webassemblyjs/ast': 1.14.1
'@xtuc/long': 4.2.2
'@xtuc/ieee754@1.2.0': {}
@@ -16767,12 +15079,12 @@ snapshots:
'@yarnpkg/lockfile@1.1.0': {}
- '@yarnpkg/parsers@3.0.0-rc.46':
+ '@yarnpkg/parsers@3.0.2':
dependencies:
js-yaml: 3.14.1
tslib: 2.8.1
- '@zip.js/zip.js@2.7.52': {}
+ '@zip.js/zip.js@2.7.53': {}
'@zkochan/js-yaml@0.0.7':
dependencies:
@@ -16805,36 +15117,25 @@ snapshots:
acorn-globals@7.0.1:
dependencies:
- acorn: 8.12.1
- acorn-walk: 8.3.3
-
- acorn-import-attributes@1.9.5(acorn@8.12.1):
- dependencies:
- acorn: 8.12.1
+ acorn: 8.14.0
+ acorn-walk: 8.3.4
acorn-import-attributes@1.9.5(acorn@8.14.0):
dependencies:
acorn: 8.14.0
- acorn-jsx@5.3.2(acorn@8.12.1):
+ acorn-jsx@5.3.2(acorn@8.14.0):
dependencies:
- acorn: 8.12.1
+ acorn: 8.14.0
acorn-walk@7.2.0: {}
- acorn-walk@8.3.3:
- dependencies:
- acorn: 8.12.1
-
acorn-walk@8.3.4:
dependencies:
acorn: 8.14.0
- optional: true
acorn@7.4.1: {}
- acorn@8.12.1: {}
-
acorn@8.14.0: {}
add-stream@1.0.0: {}
@@ -16846,13 +15147,13 @@ snapshots:
agent-base@6.0.2:
dependencies:
- debug: 4.3.7
+ debug: 4.3.7(supports-color@9.4.0)
transitivePeerDependencies:
- supports-color
- agent-base@7.1.1:
+ agent-base@7.1.1(supports-color@9.4.0):
dependencies:
- debug: 4.3.7
+ debug: 4.3.7(supports-color@9.4.0)
transitivePeerDependencies:
- supports-color
@@ -16908,6 +15209,8 @@ snapshots:
json-schema-traverse: 1.0.0
require-from-string: 2.0.2
+ alien-signals@0.2.0: {}
+
ansi-align@3.0.1:
dependencies:
string-width: 4.2.3
@@ -16934,7 +15237,7 @@ snapshots:
ansi-regex@5.0.1: {}
- ansi-regex@6.0.1: {}
+ ansi-regex@6.1.0: {}
ansi-styles@2.2.1: {}
@@ -16983,7 +15286,7 @@ snapshots:
archiver@7.0.1:
dependencies:
archiver-utils: 5.0.2
- async: 3.2.5
+ async: 3.2.6
buffer-crc32: 1.0.0
readable-stream: 4.5.2
readdir-glob: 1.1.3
@@ -16995,9 +15298,6 @@ snapshots:
delegates: 1.0.0
readable-stream: 3.6.2
- arg@4.1.3:
- optional: true
-
arg@5.0.2: {}
argparse@1.0.10:
@@ -17006,10 +15306,6 @@ snapshots:
argparse@2.0.1: {}
- aria-query@5.1.3:
- dependencies:
- deep-equal: 2.2.3
-
aria-query@5.3.2: {}
arr-diff@4.0.0: {}
@@ -17101,9 +15397,9 @@ snapshots:
assign-symbols@1.0.0: {}
- ast-kit@1.2.1:
+ ast-kit@1.3.0:
dependencies:
- '@babel/parser': 7.25.7
+ '@babel/parser': 7.26.2
pathe: 1.1.2
ast-types-flow@0.0.8: {}
@@ -17114,19 +15410,24 @@ snapshots:
ast-walker-scope@0.6.2:
dependencies:
- '@babel/parser': 7.25.4
- ast-kit: 1.2.1
+ '@babel/parser': 7.26.2
+ ast-kit: 1.3.0
async-exit-hook@2.0.1: {}
async-sema@3.1.1: {}
- async@3.2.5: {}
+ async@3.2.6: {}
asynckit@0.4.0: {}
atob@2.1.2: {}
+ atomically@2.0.3:
+ dependencies:
+ stubborn-fs: 1.2.5
+ when-exit: 2.1.3
+
autoprefixer@10.4.18(postcss@8.4.35):
dependencies:
browserslist: 4.24.2
@@ -17139,11 +15440,11 @@ snapshots:
autoprefixer@10.4.20(postcss@8.4.47):
dependencies:
- browserslist: 4.24.0
- caniuse-lite: 1.0.30001667
+ browserslist: 4.24.2
+ caniuse-lite: 1.0.30001677
fraction.js: 4.3.7
normalize-range: 0.1.2
- picocolors: 1.1.0
+ picocolors: 1.1.1
postcss: 8.4.47
postcss-value-parser: 4.2.0
@@ -17151,7 +15452,7 @@ snapshots:
dependencies:
possible-typed-array-names: 1.0.0
- axe-core@4.10.0: {}
+ axe-core@4.10.2: {}
axios@1.7.7:
dependencies:
@@ -17165,57 +15466,43 @@ snapshots:
b4a@1.6.7: {}
- babel-jest@26.6.3(@babel/core@7.24.7):
+ babel-jest@26.6.3(@babel/core@7.26.0):
dependencies:
- '@babel/core': 7.24.7
+ '@babel/core': 7.26.0
'@jest/transform': 26.6.2
'@jest/types': 26.6.2
'@types/babel__core': 7.20.5
babel-plugin-istanbul: 6.1.1
- babel-preset-jest: 26.6.2(@babel/core@7.24.7)
+ babel-preset-jest: 26.6.2(@babel/core@7.26.0)
chalk: 4.1.2
graceful-fs: 4.2.11
slash: 3.0.0
transitivePeerDependencies:
- supports-color
- babel-jest@27.5.1(@babel/core@7.24.7):
+ babel-jest@29.7.0(@babel/core@7.26.0):
dependencies:
- '@babel/core': 7.24.7
- '@jest/transform': 27.5.1
- '@jest/types': 27.5.1
- '@types/babel__core': 7.20.5
- babel-plugin-istanbul: 6.1.1
- babel-preset-jest: 27.5.1(@babel/core@7.24.7)
- chalk: 4.1.2
- graceful-fs: 4.2.11
- slash: 3.0.0
- transitivePeerDependencies:
- - supports-color
-
- babel-jest@29.7.0(@babel/core@7.24.7):
- dependencies:
- '@babel/core': 7.24.7
+ '@babel/core': 7.26.0
'@jest/transform': 29.7.0
'@types/babel__core': 7.20.5
babel-plugin-istanbul: 6.1.1
- babel-preset-jest: 29.6.3(@babel/core@7.24.7)
+ babel-preset-jest: 29.6.3(@babel/core@7.26.0)
chalk: 4.1.2
graceful-fs: 4.2.11
slash: 3.0.0
transitivePeerDependencies:
- supports-color
- babel-loader@9.1.3(@babel/core@7.24.0)(webpack@5.94.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.20.1)):
+ babel-loader@9.1.3(@babel/core@7.24.0)(webpack@5.94.0(esbuild@0.20.1)):
dependencies:
'@babel/core': 7.24.0
find-cache-dir: 4.0.0
schema-utils: 4.2.0
- webpack: 5.94.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.20.1)
+ webpack: 5.94.0(esbuild@0.20.1)
babel-plugin-istanbul@6.1.1:
dependencies:
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.9
'@istanbuljs/load-nyc-config': 1.1.0
'@istanbuljs/schema': 0.1.3
istanbul-lib-instrument: 5.2.1
@@ -17225,22 +15512,15 @@ snapshots:
babel-plugin-jest-hoist@26.6.2:
dependencies:
- '@babel/template': 7.25.0
- '@babel/types': 7.25.4
- '@types/babel__core': 7.20.5
- '@types/babel__traverse': 7.20.6
-
- babel-plugin-jest-hoist@27.5.1:
- dependencies:
- '@babel/template': 7.25.0
- '@babel/types': 7.25.4
+ '@babel/template': 7.25.9
+ '@babel/types': 7.26.0
'@types/babel__core': 7.20.5
'@types/babel__traverse': 7.20.6
babel-plugin-jest-hoist@29.6.3:
dependencies:
- '@babel/template': 7.25.0
- '@babel/types': 7.25.4
+ '@babel/template': 7.25.9
+ '@babel/types': 7.26.0
'@types/babel__core': 7.20.5
'@types/babel__traverse': 7.20.6
@@ -17268,39 +15548,36 @@ snapshots:
transitivePeerDependencies:
- supports-color
- babel-preset-current-node-syntax@1.0.1(@babel/core@7.24.7):
- dependencies:
- '@babel/core': 7.24.7
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.7)
- '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.24.7)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.7)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.7)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.7)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.7)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.7)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.7)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.7)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.7)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.7)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.7)
-
- babel-preset-jest@26.6.2(@babel/core@7.24.7):
- dependencies:
- '@babel/core': 7.24.7
+ babel-preset-current-node-syntax@1.1.0(@babel/core@7.26.0):
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.26.0)
+ '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.26.0)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.26.0)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.26.0)
+ '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.0)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.26.0)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.26.0)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.26.0)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.0)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.26.0)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.26.0)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.26.0)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.0)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.26.0)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.26.0)
+
+ babel-preset-jest@26.6.2(@babel/core@7.26.0):
+ dependencies:
+ '@babel/core': 7.26.0
babel-plugin-jest-hoist: 26.6.2
- babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.7)
-
- babel-preset-jest@27.5.1(@babel/core@7.24.7):
- dependencies:
- '@babel/core': 7.24.7
- babel-plugin-jest-hoist: 27.5.1
- babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.7)
+ babel-preset-current-node-syntax: 1.1.0(@babel/core@7.26.0)
- babel-preset-jest@29.6.3(@babel/core@7.24.7):
+ babel-preset-jest@29.6.3(@babel/core@7.26.0):
dependencies:
- '@babel/core': 7.24.7
+ '@babel/core': 7.26.0
babel-plugin-jest-hoist: 29.6.3
- babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.7)
+ babel-preset-current-node-syntax: 1.1.0(@babel/core@7.26.0)
balanced-match@1.0.2: {}
@@ -17311,7 +15588,7 @@ snapshots:
dependencies:
bare-events: 2.5.0
bare-path: 2.1.3
- bare-stream: 2.3.0
+ bare-stream: 2.3.2
optional: true
bare-os@2.4.4:
@@ -17322,9 +15599,8 @@ snapshots:
bare-os: 2.4.4
optional: true
- bare-stream@2.3.0:
+ bare-stream@2.3.2:
dependencies:
- b4a: 1.6.7
streamx: 2.20.1
optional: true
@@ -17393,16 +15669,16 @@ snapshots:
boolbase@1.0.0: {}
- boxen@7.1.1:
+ boxen@8.0.1:
dependencies:
ansi-align: 3.0.1
- camelcase: 7.0.1
+ camelcase: 8.0.0
chalk: 5.3.0
cli-boxes: 3.0.0
- string-width: 5.1.2
- type-fest: 2.19.0
- widest-line: 4.0.1
- wrap-ansi: 8.1.0
+ string-width: 7.2.0
+ type-fest: 4.26.1
+ widest-line: 5.0.0
+ wrap-ansi: 9.0.0
brace-expansion@1.1.11:
dependencies:
@@ -17436,13 +15712,6 @@ snapshots:
browser-stdout@1.3.1: {}
- browserslist@4.24.0:
- dependencies:
- caniuse-lite: 1.0.30001667
- electron-to-chromium: 1.5.35
- node-releases: 2.0.18
- update-browserslist-db: 1.1.0(browserslist@4.24.0)
-
browserslist@4.24.2:
dependencies:
caniuse-lite: 1.0.30001677
@@ -17489,16 +15758,33 @@ snapshots:
c12@1.11.2(magicast@0.3.5):
dependencies:
chokidar: 3.6.0
- confbox: 0.1.7
+ confbox: 0.1.8
defu: 6.1.4
dotenv: 16.4.5
giget: 1.2.3
jiti: 1.21.6
- mlly: 1.7.1
+ mlly: 1.7.2
+ ohash: 1.1.4
+ pathe: 1.1.2
+ perfect-debounce: 1.0.0
+ pkg-types: 1.2.1
+ rc9: 2.1.2
+ optionalDependencies:
+ magicast: 0.3.5
+
+ c12@2.0.1(magicast@0.3.5):
+ dependencies:
+ chokidar: 4.0.1
+ confbox: 0.1.8
+ defu: 6.1.4
+ dotenv: 16.4.5
+ giget: 1.2.3
+ jiti: 2.4.0
+ mlly: 1.7.2
ohash: 1.1.4
pathe: 1.1.2
perfect-debounce: 1.0.0
- pkg-types: 1.2.0
+ pkg-types: 1.2.1
rc9: 2.1.2
optionalDependencies:
magicast: 0.3.5
@@ -17555,18 +15841,6 @@ snapshots:
union-value: 1.0.1
unset-value: 1.0.0
- cacheable-lookup@7.0.0: {}
-
- cacheable-request@10.2.14:
- dependencies:
- '@types/http-cache-semantics': 4.0.4
- get-stream: 6.0.1
- http-cache-semantics: 4.1.1
- keyv: 4.5.4
- mimic-response: 4.0.0
- normalize-url: 8.0.1
- responselike: 3.0.0
-
call-bind@1.0.7:
dependencies:
es-define-property: 1.0.0
@@ -17589,17 +15863,15 @@ snapshots:
camelcase@6.3.0: {}
- camelcase@7.0.1: {}
+ camelcase@8.0.0: {}
caniuse-api@3.0.0:
dependencies:
- browserslist: 4.24.0
- caniuse-lite: 1.0.30001667
+ browserslist: 4.24.2
+ caniuse-lite: 1.0.30001677
lodash.memoize: 4.1.2
lodash.uniq: 4.5.0
- caniuse-lite@1.0.30001667: {}
-
caniuse-lite@1.0.30001677: {}
capture-exit@2.0.0:
@@ -17644,6 +15916,8 @@ snapshots:
chalk@5.3.0: {}
+ change-case@5.4.4: {}
+
char-regex@1.0.2: {}
chardet@0.7.0: {}
@@ -17667,10 +15941,10 @@ snapshots:
domutils: 3.1.0
encoding-sniffer: 0.2.0
htmlparser2: 9.1.0
- parse5: 7.1.2
- parse5-htmlparser2-tree-adapter: 7.0.0
+ parse5: 7.2.1
+ parse5-htmlparser2-tree-adapter: 7.1.0
parse5-parser-stream: 7.1.2
- undici: 6.20.0
+ undici: 6.20.1
whatwg-mimetype: 4.0.0
chokidar@3.6.0:
@@ -17705,7 +15979,7 @@ snapshots:
cjs-module-lexer@0.6.0: {}
- cjs-module-lexer@1.3.1: {}
+ cjs-module-lexer@1.4.1: {}
class-utils@0.3.6:
dependencies:
@@ -17798,7 +16072,7 @@ snapshots:
co@4.6.0: {}
- code-block-writer@13.0.1: {}
+ code-block-writer@13.0.3: {}
code-point-at@1.1.0: {}
@@ -17825,6 +16099,8 @@ snapshots:
colord@2.9.3: {}
+ colorette@1.4.0: {}
+
colorette@2.0.20: {}
columnify@1.6.0:
@@ -17896,19 +16172,18 @@ snapshots:
readable-stream: 3.6.2
typedarray: 0.0.6
- confbox@0.1.7: {}
+ confbox@0.1.8: {}
config-chain@1.1.13:
dependencies:
ini: 1.3.8
proto-list: 1.2.4
- configstore@6.0.0:
+ configstore@7.0.0:
dependencies:
- dot-prop: 6.0.1
+ atomically: 2.0.3
+ dot-prop: 9.0.0
graceful-fs: 4.2.11
- unique-string: 3.0.0
- write-file-atomic: 3.0.3
xdg-basedir: 5.1.0
connect-history-api-fallback@2.0.0: {}
@@ -17995,7 +16270,7 @@ snapshots:
copy-descriptor@0.1.1: {}
- copy-webpack-plugin@11.0.0(webpack@5.94.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.20.1)):
+ copy-webpack-plugin@11.0.0(webpack@5.94.0(esbuild@0.20.1)):
dependencies:
fast-glob: 3.3.2
glob-parent: 6.0.2
@@ -18003,7 +16278,7 @@ snapshots:
normalize-path: 3.0.0
schema-utils: 4.2.0
serialize-javascript: 6.0.2
- webpack: 5.94.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.20.1)
+ webpack: 5.94.0(esbuild@0.20.1)
core-js-compat@3.39.0:
dependencies:
@@ -18045,13 +16320,13 @@ snapshots:
crc-32: 1.2.2
readable-stream: 4.5.2
- create-jest@29.7.0(@types/node@22.9.0)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.1.6)):
+ create-jest@29.7.0(@types/node@20.17.6):
dependencies:
'@jest/types': 29.6.3
chalk: 4.1.2
exit: 0.1.2
graceful-fs: 4.2.11
- jest-config: 29.7.0(@types/node@22.9.0)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.1.6))
+ jest-config: 29.7.0(@types/node@20.17.6)
jest-util: 29.7.0
prompts: 2.4.2
transitivePeerDependencies:
@@ -18060,13 +16335,13 @@ snapshots:
- supports-color
- ts-node
- create-jest@29.7.0(@types/node@22.9.0)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.6.3)):
+ create-jest@29.7.0(@types/node@22.9.0):
dependencies:
'@jest/types': 29.6.3
chalk: 4.1.2
exit: 0.1.2
graceful-fs: 4.2.11
- jest-config: 29.7.0(@types/node@22.9.0)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.6.3))
+ jest-config: 29.7.0(@types/node@22.9.0)
jest-util: 29.7.0
prompts: 2.4.2
transitivePeerDependencies:
@@ -18084,12 +16359,12 @@ snapshots:
dom-serializer: 2.0.0
domhandler: 5.0.3
htmlparser2: 8.0.2
- postcss: 8.4.35
+ postcss: 8.4.47
postcss-media-query-parser: 0.2.3
- croner@8.1.2: {}
+ croner@9.0.0: {}
- cronstrue@2.50.0: {}
+ cronstrue@2.51.0: {}
cross-spawn@6.0.5:
dependencies:
@@ -18105,32 +16380,26 @@ snapshots:
shebang-command: 2.0.0
which: 2.0.2
- crossws@0.2.4: {}
-
crossws@0.3.1:
dependencies:
uncrypto: 0.1.3
- crypto-random-string@4.0.0:
- dependencies:
- type-fest: 1.4.0
-
css-declaration-sorter@7.2.0(postcss@8.4.47):
dependencies:
postcss: 8.4.47
- css-loader@6.10.0(webpack@5.94.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.20.1)):
+ css-loader@6.10.0(webpack@5.94.0(esbuild@0.20.1)):
dependencies:
- icss-utils: 5.1.0(postcss@8.4.35)
- postcss: 8.4.35
- postcss-modules-extract-imports: 3.1.0(postcss@8.4.35)
- postcss-modules-local-by-default: 4.0.5(postcss@8.4.35)
- postcss-modules-scope: 3.2.0(postcss@8.4.35)
- postcss-modules-values: 4.0.0(postcss@8.4.35)
+ icss-utils: 5.1.0(postcss@8.4.47)
+ postcss: 8.4.47
+ postcss-modules-extract-imports: 3.1.0(postcss@8.4.47)
+ postcss-modules-local-by-default: 4.0.5(postcss@8.4.47)
+ postcss-modules-scope: 3.2.0(postcss@8.4.47)
+ postcss-modules-values: 4.0.0(postcss@8.4.47)
postcss-value-parser: 4.2.0
- semver: 7.6.0
+ semver: 7.6.3
optionalDependencies:
- webpack: 5.94.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.20.1)
+ webpack: 5.94.0(esbuild@0.20.1)
css-select@5.1.0:
dependencies:
@@ -18160,7 +16429,7 @@ snapshots:
cssnano-preset-default@7.0.6(postcss@8.4.47):
dependencies:
- browserslist: 4.24.0
+ browserslist: 4.24.2
css-declaration-sorter: 7.2.0(postcss@8.4.47)
cssnano-utils: 5.0.0(postcss@8.4.47)
postcss: 8.4.47
@@ -18260,7 +16529,7 @@ snapshots:
dateformat@3.0.3: {}
- db0@0.1.4: {}
+ db0@0.2.1: {}
de-indent@1.0.2: {}
@@ -18272,15 +16541,17 @@ snapshots:
dependencies:
ms: 2.1.3
- debug@4.3.6(supports-color@8.1.1):
+ debug@4.3.7(supports-color@8.1.1):
dependencies:
- ms: 2.1.2
+ ms: 2.1.3
optionalDependencies:
supports-color: 8.1.1
- debug@4.3.7:
+ debug@4.3.7(supports-color@9.4.0):
dependencies:
ms: 2.1.3
+ optionalDependencies:
+ supports-color: 9.4.0
decamelize-keys@1.1.1:
dependencies:
@@ -18297,37 +16568,10 @@ snapshots:
decode-uri-component@0.2.2: {}
- decompress-response@6.0.0:
- dependencies:
- mimic-response: 3.1.0
-
- dedent@0.7.0: {}
-
dedent@1.5.3: {}
deep-eql@5.0.2: {}
- deep-equal@2.2.3:
- dependencies:
- array-buffer-byte-length: 1.0.1
- call-bind: 1.0.7
- es-get-iterator: 1.1.3
- get-intrinsic: 1.2.4
- is-arguments: 1.1.1
- is-array-buffer: 3.0.4
- is-date-object: 1.0.5
- is-regex: 1.1.4
- is-shared-array-buffer: 1.0.3
- isarray: 2.0.5
- object-is: 1.1.6
- object-keys: 1.1.1
- object.assign: 4.1.5
- regexp.prototype.flags: 1.5.3
- side-channel: 1.0.6
- which-boxed-primitive: 1.0.2
- which-collection: 1.0.2
- which-typed-array: 1.1.15
-
deep-extend@0.6.0: {}
deep-is@0.1.4: {}
@@ -18351,8 +16595,6 @@ snapshots:
dependencies:
clone: 1.0.4
- defer-to-connect@2.0.1: {}
-
define-data-property@1.1.4:
dependencies:
es-define-property: 1.0.0
@@ -18433,13 +16675,8 @@ snapshots:
diff-sequences@26.6.2: {}
- diff-sequences@27.5.1: {}
-
diff-sequences@29.6.3: {}
- diff@4.0.2:
- optional: true
-
diff@5.2.0: {}
diff@7.0.0: {}
@@ -18486,19 +16723,15 @@ snapshots:
dependencies:
dom-serializer: 2.0.0
domelementtype: 2.3.0
- domhandler: 5.0.3
-
- dot-prop@5.3.0:
- dependencies:
- is-obj: 2.0.0
+ domhandler: 5.0.3
- dot-prop@6.0.1:
+ dot-prop@5.3.0:
dependencies:
is-obj: 2.0.0
- dot-prop@8.0.2:
+ dot-prop@9.0.0:
dependencies:
- type-fest: 3.13.1
+ type-fest: 4.26.1
dotenv-expand@11.0.6:
dependencies:
@@ -18524,7 +16757,7 @@ snapshots:
edgedriver@5.6.1:
dependencies:
'@wdio/logger': 8.38.0
- '@zip.js/zip.js': 2.7.52
+ '@zip.js/zip.js': 2.7.53
decamelize: 6.0.0
edge-paths: 3.0.5
fast-xml-parser: 4.5.0
@@ -18535,9 +16768,7 @@ snapshots:
ejs@3.1.10:
dependencies:
- jake: 10.9.1
-
- electron-to-chromium@1.5.35: {}
+ jake: 10.9.2
electron-to-chromium@1.5.52: {}
@@ -18547,7 +16778,7 @@ snapshots:
emittery@0.7.2: {}
- emittery@0.8.1: {}
+ emoji-regex@10.4.0: {}
emoji-regex@8.0.0: {}
@@ -18658,19 +16889,7 @@ snapshots:
es-errors@1.3.0: {}
- es-get-iterator@1.1.3:
- dependencies:
- call-bind: 1.0.7
- get-intrinsic: 1.2.4
- has-symbols: 1.0.3
- is-arguments: 1.1.1
- is-map: 2.0.3
- is-set: 2.0.3
- is-string: 1.0.7
- isarray: 2.0.5
- stop-iteration-iterator: 1.0.0
-
- es-iterator-helpers@1.1.0:
+ es-iterator-helpers@1.2.0:
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
@@ -18680,6 +16899,7 @@ snapshots:
function-bind: 1.1.2
get-intrinsic: 1.2.4
globalthis: 1.0.4
+ gopd: 1.0.1
has-property-descriptors: 1.0.2
has-proto: 1.0.3
has-symbols: 1.0.3
@@ -18766,32 +16986,6 @@ snapshots:
'@esbuild/win32-x64': 0.20.1
optional: true
- esbuild@0.20.2:
- optionalDependencies:
- '@esbuild/aix-ppc64': 0.20.2
- '@esbuild/android-arm': 0.20.2
- '@esbuild/android-arm64': 0.20.2
- '@esbuild/android-x64': 0.20.2
- '@esbuild/darwin-arm64': 0.20.2
- '@esbuild/darwin-x64': 0.20.2
- '@esbuild/freebsd-arm64': 0.20.2
- '@esbuild/freebsd-x64': 0.20.2
- '@esbuild/linux-arm': 0.20.2
- '@esbuild/linux-arm64': 0.20.2
- '@esbuild/linux-ia32': 0.20.2
- '@esbuild/linux-loong64': 0.20.2
- '@esbuild/linux-mips64el': 0.20.2
- '@esbuild/linux-ppc64': 0.20.2
- '@esbuild/linux-riscv64': 0.20.2
- '@esbuild/linux-s390x': 0.20.2
- '@esbuild/linux-x64': 0.20.2
- '@esbuild/netbsd-x64': 0.20.2
- '@esbuild/openbsd-x64': 0.20.2
- '@esbuild/sunos-x64': 0.20.2
- '@esbuild/win32-arm64': 0.20.2
- '@esbuild/win32-ia32': 0.20.2
- '@esbuild/win32-x64': 0.20.2
-
esbuild@0.21.5:
optionalDependencies:
'@esbuild/aix-ppc64': 0.21.5
@@ -18845,7 +17039,32 @@ snapshots:
'@esbuild/win32-ia32': 0.23.1
'@esbuild/win32-x64': 0.23.1
- escalade@3.1.2: {}
+ esbuild@0.24.0:
+ optionalDependencies:
+ '@esbuild/aix-ppc64': 0.24.0
+ '@esbuild/android-arm': 0.24.0
+ '@esbuild/android-arm64': 0.24.0
+ '@esbuild/android-x64': 0.24.0
+ '@esbuild/darwin-arm64': 0.24.0
+ '@esbuild/darwin-x64': 0.24.0
+ '@esbuild/freebsd-arm64': 0.24.0
+ '@esbuild/freebsd-x64': 0.24.0
+ '@esbuild/linux-arm': 0.24.0
+ '@esbuild/linux-arm64': 0.24.0
+ '@esbuild/linux-ia32': 0.24.0
+ '@esbuild/linux-loong64': 0.24.0
+ '@esbuild/linux-mips64el': 0.24.0
+ '@esbuild/linux-ppc64': 0.24.0
+ '@esbuild/linux-riscv64': 0.24.0
+ '@esbuild/linux-s390x': 0.24.0
+ '@esbuild/linux-x64': 0.24.0
+ '@esbuild/netbsd-x64': 0.24.0
+ '@esbuild/openbsd-arm64': 0.24.0
+ '@esbuild/openbsd-x64': 0.24.0
+ '@esbuild/sunos-x64': 0.24.0
+ '@esbuild/win32-arm64': 0.24.0
+ '@esbuild/win32-ia32': 0.24.0
+ '@esbuild/win32-x64': 0.24.0
escalade@3.2.0: {}
@@ -18869,21 +17088,21 @@ snapshots:
optionalDependencies:
source-map: 0.6.1
- eslint-config-next@14.2.15(eslint@8.57.1)(typescript@5.6.2):
+ eslint-config-next@14.2.15(eslint@8.57.1)(typescript@5.6.3):
dependencies:
'@next/eslint-plugin-next': 14.2.15
'@rushstack/eslint-patch': 1.10.4
- '@typescript-eslint/eslint-plugin': 8.8.1(@typescript-eslint/parser@8.8.1(eslint@8.57.1)(typescript@5.6.2))(eslint@8.57.1)(typescript@5.6.2)
- '@typescript-eslint/parser': 8.8.1(eslint@8.57.1)(typescript@5.6.2)
+ '@typescript-eslint/eslint-plugin': 8.13.0(@typescript-eslint/parser@8.13.0(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3)
+ '@typescript-eslint/parser': 8.13.0(eslint@8.57.1)(typescript@5.6.3)
eslint: 8.57.1
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.8.1(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.8.1(eslint@8.57.1)(typescript@5.6.2))(eslint@8.57.1))(eslint@8.57.1)
- eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.8.1(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1)
- eslint-plugin-jsx-a11y: 6.10.0(eslint@8.57.1)
- eslint-plugin-react: 7.37.1(eslint@8.57.1)
+ eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.13.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.13.0(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1))(eslint@8.57.1)
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.13.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.13.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.13.0(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1))(eslint@8.57.1))(eslint@8.57.1)
+ eslint-plugin-jsx-a11y: 6.10.2(eslint@8.57.1)
+ eslint-plugin-react: 7.37.2(eslint@8.57.1)
eslint-plugin-react-hooks: 4.6.2(eslint@8.57.1)
optionalDependencies:
- typescript: 5.6.2
+ typescript: 5.6.3
transitivePeerDependencies:
- eslint-import-resolver-webpack
- eslint-plugin-import-x
@@ -18897,37 +17116,37 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.8.1(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.8.1(eslint@8.57.1)(typescript@5.6.2))(eslint@8.57.1))(eslint@8.57.1):
+ eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.13.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.13.0(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1))(eslint@8.57.1):
dependencies:
'@nolyfill/is-core-module': 1.0.39
- debug: 4.3.6(supports-color@8.1.1)
+ debug: 4.3.7(supports-color@9.4.0)
enhanced-resolve: 5.17.1
eslint: 8.57.1
- eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.8.1(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.8.1(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.8.1(eslint@8.57.1)(typescript@5.6.2))(eslint@8.57.1))(eslint@8.57.1))(eslint@8.57.1)
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.13.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.13.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.13.0(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1))(eslint@8.57.1))(eslint@8.57.1)
fast-glob: 3.3.2
get-tsconfig: 4.8.1
is-bun-module: 1.2.1
is-glob: 4.0.3
optionalDependencies:
- eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.8.1(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1)
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.13.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.13.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.13.0(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1))(eslint@8.57.1))(eslint@8.57.1)
transitivePeerDependencies:
- '@typescript-eslint/parser'
- eslint-import-resolver-node
- eslint-import-resolver-webpack
- supports-color
- eslint-module-utils@2.12.0(@typescript-eslint/parser@8.8.1(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.8.1(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.8.1(eslint@8.57.1)(typescript@5.6.2))(eslint@8.57.1))(eslint@8.57.1))(eslint@8.57.1):
+ eslint-module-utils@2.12.0(@typescript-eslint/parser@8.13.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.13.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.13.0(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1))(eslint@8.57.1))(eslint@8.57.1):
dependencies:
debug: 3.2.7
optionalDependencies:
- '@typescript-eslint/parser': 8.8.1(eslint@8.57.1)(typescript@5.6.2)
+ '@typescript-eslint/parser': 8.13.0(eslint@8.57.1)(typescript@5.6.3)
eslint: 8.57.1
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.8.1(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.8.1(eslint@8.57.1)(typescript@5.6.2))(eslint@8.57.1))(eslint@8.57.1)
+ eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.13.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.13.0(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1))(eslint@8.57.1)
transitivePeerDependencies:
- supports-color
- eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.8.1(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1):
+ eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.13.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.13.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.13.0(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1))(eslint@8.57.1))(eslint@8.57.1):
dependencies:
'@rtsao/scc': 1.1.0
array-includes: 3.1.8
@@ -18938,7 +17157,7 @@ snapshots:
doctrine: 2.1.0
eslint: 8.57.1
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.8.1(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.8.1(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.8.1(eslint@8.57.1)(typescript@5.6.2))(eslint@8.57.1))(eslint@8.57.1))(eslint@8.57.1)
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.13.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.13.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.13.0(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1))(eslint@8.57.1))(eslint@8.57.1)
hasown: 2.0.2
is-core-module: 2.15.1
is-glob: 4.0.3
@@ -18950,23 +17169,22 @@ snapshots:
string.prototype.trimend: 1.0.8
tsconfig-paths: 3.15.0
optionalDependencies:
- '@typescript-eslint/parser': 8.8.1(eslint@8.57.1)(typescript@5.6.2)
+ '@typescript-eslint/parser': 8.13.0(eslint@8.57.1)(typescript@5.6.3)
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- supports-color
- eslint-plugin-jsx-a11y@6.10.0(eslint@8.57.1):
+ eslint-plugin-jsx-a11y@6.10.2(eslint@8.57.1):
dependencies:
- aria-query: 5.1.3
+ aria-query: 5.3.2
array-includes: 3.1.8
array.prototype.flatmap: 1.3.2
ast-types-flow: 0.0.8
- axe-core: 4.10.0
+ axe-core: 4.10.2
axobject-query: 4.1.0
damerau-levenshtein: 1.0.8
emoji-regex: 9.2.2
- es-iterator-helpers: 1.1.0
eslint: 8.57.1
hasown: 2.0.2
jsx-ast-utils: 3.3.5
@@ -18974,24 +17192,24 @@ snapshots:
minimatch: 3.1.2
object.fromentries: 2.0.8
safe-regex-test: 1.0.3
- string.prototype.includes: 2.0.0
+ string.prototype.includes: 2.0.1
eslint-plugin-react-hooks@4.6.2(eslint@8.57.1):
dependencies:
eslint: 8.57.1
- eslint-plugin-react-refresh@0.4.12(eslint@8.57.1):
+ eslint-plugin-react-refresh@0.4.14(eslint@8.57.1):
dependencies:
eslint: 8.57.1
- eslint-plugin-react@7.37.1(eslint@8.57.1):
+ eslint-plugin-react@7.37.2(eslint@8.57.1):
dependencies:
array-includes: 3.1.8
array.prototype.findlast: 1.2.5
array.prototype.flatmap: 1.3.2
array.prototype.tosorted: 1.1.4
doctrine: 2.1.0
- es-iterator-helpers: 1.1.0
+ es-iterator-helpers: 1.2.0
eslint: 8.57.1
estraverse: 5.3.0
hasown: 2.0.2
@@ -19020,8 +17238,8 @@ snapshots:
eslint@8.57.1:
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.1)
- '@eslint-community/regexpp': 4.11.1
+ '@eslint-community/eslint-utils': 4.4.1(eslint@8.57.1)
+ '@eslint-community/regexpp': 4.12.1
'@eslint/eslintrc': 2.1.4
'@eslint/js': 8.57.1
'@humanwhocodes/config-array': 0.13.0
@@ -19031,7 +17249,7 @@ snapshots:
ajv: 6.12.6
chalk: 4.1.2
cross-spawn: 7.0.3
- debug: 4.3.6(supports-color@8.1.1)
+ debug: 4.3.7(supports-color@9.4.0)
doctrine: 3.0.0
escape-string-regexp: 4.0.0
eslint-scope: 7.2.2
@@ -19045,7 +17263,7 @@ snapshots:
glob-parent: 6.0.2
globals: 13.24.0
graphemer: 1.4.0
- ignore: 5.3.1
+ ignore: 5.3.2
imurmurhash: 0.1.4
is-glob: 4.0.3
is-path-inside: 3.0.3
@@ -19063,8 +17281,8 @@ snapshots:
espree@9.6.1:
dependencies:
- acorn: 8.12.1
- acorn-jsx: 5.3.2(acorn@8.12.1)
+ acorn: 8.14.0
+ acorn-jsx: 5.3.2(acorn@8.14.0)
eslint-visitor-keys: 3.4.3
esprima@4.0.1: {}
@@ -19169,7 +17387,7 @@ snapshots:
signal-exit: 4.1.0
strip-final-newline: 3.0.0
- execa@9.4.0:
+ execa@9.5.1:
dependencies:
'@sindresorhus/merge-streams': 4.0.0
cross-spawn: 7.0.3
@@ -19200,46 +17418,17 @@ snapshots:
transitivePeerDependencies:
- supports-color
- expect-webdriverio@5.0.3(@wdio/globals@9.1.4(@wdio/logger@9.1.3))(@wdio/logger@9.1.3)(webdriverio@9.1.4):
- dependencies:
- '@vitest/snapshot': 2.1.2
- '@wdio/globals': 9.1.4(@wdio/logger@9.1.3)
- '@wdio/logger': 9.1.3
- expect: 29.7.0
- jest-matcher-utils: 29.7.0
- lodash.isequal: 4.5.0
- webdriverio: 9.1.4
-
- expect-webdriverio@5.0.3(@wdio/globals@9.1.5(@wdio/logger@9.1.3))(@wdio/logger@9.1.3)(webdriverio@9.1.5):
- dependencies:
- '@vitest/snapshot': 2.1.2
- '@wdio/globals': 9.1.5(@wdio/logger@9.1.3)
- '@wdio/logger': 9.1.3
- expect: 29.7.0
- jest-matcher-utils: 29.7.0
- lodash.isequal: 4.5.0
- webdriverio: 9.1.5
-
- expect-webdriverio@5.0.3(@wdio/globals@9.2.1(@wdio/logger@9.1.3))(@wdio/logger@9.1.3)(webdriverio@9.1.5):
- dependencies:
- '@vitest/snapshot': 2.1.2
- '@wdio/globals': 9.2.1(@wdio/logger@9.1.3)
- '@wdio/logger': 9.1.3
- expect: 29.7.0
- jest-matcher-utils: 29.7.0
- lodash.isequal: 4.5.0
- webdriverio: 9.1.5
+ expect-type@1.1.0: {}
- expect-webdriverio@5.0.3(@wdio/globals@9.2.1(@wdio/logger@9.1.3))(@wdio/logger@9.1.3)(webdriverio@9.2.1):
+ expect-webdriverio@5.0.3(@wdio/globals@9.2.8(@wdio/logger@9.1.3))(@wdio/logger@9.1.3)(webdriverio@9.2.8):
dependencies:
- '@vitest/snapshot': 2.1.2
- '@wdio/globals': 9.2.1(@wdio/logger@9.1.3)
+ '@vitest/snapshot': 2.1.4
+ '@wdio/globals': 9.2.8(@wdio/logger@9.1.3)
'@wdio/logger': 9.1.3
expect: 29.7.0
jest-matcher-utils: 29.7.0
lodash.isequal: 4.5.0
- webdriverio: 9.2.1
- optional: true
+ webdriverio: 9.2.8
expect@26.6.2:
dependencies:
@@ -19250,13 +17439,6 @@ snapshots:
jest-message-util: 26.6.2
jest-regex-util: 26.0.0
- expect@27.5.1:
- dependencies:
- '@jest/types': 27.5.1
- jest-get-type: 27.5.1
- jest-matcher-utils: 27.5.1
- jest-message-util: 27.5.1
-
expect@29.7.0:
dependencies:
'@jest/expect-utils': 29.7.0
@@ -19321,7 +17503,7 @@ snapshots:
externality@1.0.2:
dependencies:
enhanced-resolve: 5.17.1
- mlly: 1.7.1
+ mlly: 1.7.2
pathe: 1.1.2
ufo: 1.5.4
@@ -19340,7 +17522,7 @@ snapshots:
extract-zip@2.0.1:
dependencies:
- debug: 4.3.7
+ debug: 4.3.7(supports-color@9.4.0)
get-stream: 5.2.0
yauzl: 2.10.0
optionalDependencies:
@@ -19360,7 +17542,7 @@ snapshots:
'@nodelib/fs.walk': 1.2.8
glob-parent: 5.1.2
merge2: 1.4.1
- micromatch: 4.0.7
+ micromatch: 4.0.8
fast-json-stable-stringify@2.1.0: {}
@@ -19390,7 +17572,7 @@ snapshots:
dependencies:
pend: 1.2.0
- fdir@6.4.0(picomatch@4.0.2):
+ fdir@6.4.2(picomatch@4.0.2):
optionalDependencies:
picomatch: 4.0.2
@@ -19493,25 +17675,12 @@ snapshots:
for-in@1.0.2: {}
- foreground-child@3.2.1:
- dependencies:
- cross-spawn: 7.0.3
- signal-exit: 4.1.0
-
foreground-child@3.3.0:
dependencies:
cross-spawn: 7.0.3
signal-exit: 4.1.0
- form-data-encoder@2.1.4: {}
-
- form-data@3.0.1:
- dependencies:
- asynckit: 0.4.0
- combined-stream: 1.0.8
- mime-types: 2.1.35
-
- form-data@4.0.0:
+ form-data@3.0.2:
dependencies:
asynckit: 0.4.0
combined-stream: 1.0.8
@@ -19593,17 +17762,13 @@ snapshots:
strip-ansi: 6.0.1
wide-align: 1.1.5
- gaze@1.1.3:
- dependencies:
- globule: 1.3.4
-
geckodriver@4.5.1:
dependencies:
'@wdio/logger': 9.1.3
- '@zip.js/zip.js': 2.7.52
+ '@zip.js/zip.js': 2.7.53
decamelize: 6.0.0
http-proxy-agent: 7.0.2
- https-proxy-agent: 7.0.5
+ https-proxy-agent: 7.0.5(supports-color@9.4.0)
node-fetch: 3.3.2
tar-fs: 3.0.6
which: 4.0.0
@@ -19614,6 +17779,8 @@ snapshots:
get-caller-file@2.0.5: {}
+ get-east-asian-width@1.3.0: {}
+
get-intrinsic@1.2.4:
dependencies:
es-errors: 1.3.0
@@ -19670,7 +17837,7 @@ snapshots:
dependencies:
basic-ftp: 5.0.5
data-uri-to-buffer: 6.0.2
- debug: 4.3.7
+ debug: 4.3.7(supports-color@9.4.0)
fs-extra: 11.2.0
transitivePeerDependencies:
- supports-color
@@ -19743,15 +17910,6 @@ snapshots:
minipass: 7.1.2
path-scurry: 1.11.1
- glob@10.4.2:
- dependencies:
- foreground-child: 3.2.1
- jackspeak: 3.4.0
- minimatch: 9.0.5
- minipass: 7.1.2
- package-json-from-dist: 1.0.1
- path-scurry: 1.11.1
-
glob@10.4.5:
dependencies:
foreground-child: 3.3.0
@@ -19770,15 +17928,6 @@ snapshots:
package-json-from-dist: 1.0.1
path-scurry: 2.0.0
- glob@7.1.7:
- dependencies:
- fs.realpath: 1.0.0
- inflight: 1.0.6
- inherits: 2.0.4
- minimatch: 3.0.8
- once: 1.4.0
- path-is-absolute: 1.0.1
-
glob@7.2.3:
dependencies:
fs.realpath: 1.0.0
@@ -19807,10 +17956,6 @@ snapshots:
dependencies:
ini: 4.1.1
- global-dirs@3.0.1:
- dependencies:
- ini: 2.0.0
-
globals@11.12.0: {}
globals@13.24.0:
@@ -19835,7 +17980,7 @@ snapshots:
dependencies:
dir-glob: 3.0.1
fast-glob: 3.3.2
- ignore: 5.3.1
+ ignore: 5.3.2
merge2: 1.4.1
slash: 4.0.0
@@ -19848,30 +17993,10 @@ snapshots:
slash: 5.1.0
unicorn-magic: 0.1.0
- globule@1.3.4:
- dependencies:
- glob: 7.1.7
- lodash: 4.17.21
- minimatch: 3.0.8
-
gopd@1.0.1:
dependencies:
get-intrinsic: 1.2.4
- got@12.6.1:
- dependencies:
- '@sindresorhus/is': 5.6.0
- '@szmarczak/http-timer': 5.0.1
- cacheable-lookup: 7.0.0
- cacheable-request: 10.2.14
- decompress-response: 6.0.0
- form-data-encoder: 2.1.4
- get-stream: 6.0.1
- http2-wrapper: 2.2.1
- lowercase-keys: 3.0.0
- p-cancelable: 3.0.0
- responselike: 3.0.0
-
graceful-fs@4.2.10: {}
graceful-fs@4.2.11: {}
@@ -19976,7 +18101,7 @@ snapshots:
hosted-git-info@7.0.2:
dependencies:
- lru-cache: 10.2.2
+ lru-cache: 10.4.3
hpack.js@2.1.6:
dependencies:
@@ -19990,11 +18115,6 @@ snapshots:
domhandler: 5.0.3
htmlparser2: 9.1.0
- html-dom-parser@5.0.9:
- dependencies:
- domhandler: 5.0.3
- htmlparser2: 9.1.0
-
html-encoding-sniffer@2.0.1:
dependencies:
whatwg-encoding: 1.0.5
@@ -20007,16 +18127,6 @@ snapshots:
html-escaper@2.0.2: {}
- html-react-parser@5.1.12(@types/react@18.3.12)(react@18.3.1):
- dependencies:
- domhandler: 5.0.3
- html-dom-parser: 5.0.9
- react: 18.3.1
- react-property: 2.0.2
- style-to-js: 1.1.12
- optionalDependencies:
- '@types/react': 18.3.12
-
html-react-parser@5.1.18(@types/react@18.3.12)(react@18.3.1):
dependencies:
domhandler: 5.0.3
@@ -20070,7 +18180,7 @@ snapshots:
dependencies:
'@tootallnate/once': 1.1.2
agent-base: 6.0.2
- debug: 4.3.7
+ debug: 4.3.7(supports-color@9.4.0)
transitivePeerDependencies:
- supports-color
@@ -20078,18 +18188,18 @@ snapshots:
dependencies:
'@tootallnate/once': 2.0.0
agent-base: 6.0.2
- debug: 4.3.7
+ debug: 4.3.7(supports-color@9.4.0)
transitivePeerDependencies:
- supports-color
http-proxy-agent@7.0.2:
dependencies:
- agent-base: 7.1.1
- debug: 4.3.7
+ agent-base: 7.1.1(supports-color@9.4.0)
+ debug: 4.3.7(supports-color@9.4.0)
transitivePeerDependencies:
- supports-color
- http-proxy-middleware@2.0.6(@types/express@4.17.21):
+ http-proxy-middleware@2.0.7(@types/express@4.17.21):
dependencies:
'@types/http-proxy': 1.17.15
http-proxy: 1.18.1
@@ -20111,29 +18221,24 @@ snapshots:
http-shutdown@1.2.2: {}
- http2-wrapper@2.2.1:
- dependencies:
- quick-lru: 5.1.1
- resolve-alpn: 1.2.1
-
https-proxy-agent@5.0.1:
dependencies:
agent-base: 6.0.2
- debug: 4.3.7
+ debug: 4.3.7(supports-color@9.4.0)
transitivePeerDependencies:
- supports-color
https-proxy-agent@7.0.4:
dependencies:
- agent-base: 7.1.1
- debug: 4.3.7
+ agent-base: 7.1.1(supports-color@9.4.0)
+ debug: 4.3.7(supports-color@9.4.0)
transitivePeerDependencies:
- supports-color
- https-proxy-agent@7.0.5:
+ https-proxy-agent@7.0.5(supports-color@9.4.0):
dependencies:
- agent-base: 7.1.1
- debug: 4.3.7
+ agent-base: 7.1.1(supports-color@9.4.0)
+ debug: 4.3.7(supports-color@9.4.0)
transitivePeerDependencies:
- supports-color
@@ -20161,9 +18266,9 @@ snapshots:
dependencies:
safer-buffer: 2.1.2
- icss-utils@5.1.0(postcss@8.4.35):
+ icss-utils@5.1.0(postcss@8.4.47):
dependencies:
- postcss: 8.4.35
+ postcss: 8.4.47
ieee754@1.2.1: {}
@@ -20171,10 +18276,10 @@ snapshots:
dependencies:
minimatch: 9.0.5
- ignore@5.3.1: {}
-
ignore@5.3.2: {}
+ ignore@6.0.2: {}
+
image-meta@0.2.1: {}
image-size@0.5.5:
@@ -20196,15 +18301,20 @@ snapshots:
pkg-dir: 4.2.0
resolve-cwd: 3.0.0
+ import-local@3.2.0:
+ dependencies:
+ pkg-dir: 4.2.0
+ resolve-cwd: 3.0.0
+
import-meta-resolve@4.1.0: {}
- impound@0.1.0(rollup@4.24.2)(webpack-sources@3.2.3):
+ impound@0.2.0(rollup@4.24.4)(webpack-sources@3.2.3):
dependencies:
- '@rollup/pluginutils': 5.1.3(rollup@4.24.2)
- mlly: 1.7.1
+ '@rollup/pluginutils': 5.1.3(rollup@4.24.4)
+ mlly: 1.7.2
pathe: 1.1.2
unenv: 1.10.0
- unplugin: 1.14.1(webpack-sources@3.2.3)
+ unplugin: 1.15.0(webpack-sources@3.2.3)
transitivePeerDependencies:
- rollup
- webpack-sources
@@ -20232,8 +18342,6 @@ snapshots:
ini@1.3.8: {}
- ini@2.0.0: {}
-
ini@4.1.1: {}
ini@4.1.3: {}
@@ -20250,8 +18358,6 @@ snapshots:
transitivePeerDependencies:
- bluebird
- inline-style-parser@0.2.3: {}
-
inline-style-parser@0.2.4: {}
inquirer-autosubmit-prompt@0.2.0:
@@ -20339,20 +18445,20 @@ snapshots:
strip-ansi: 6.0.1
wrap-ansi: 6.2.0
- inquirer@9.3.1:
+ inquirer@9.3.7:
dependencies:
- '@inquirer/figures': 1.0.3
+ '@inquirer/figures': 1.0.7
ansi-escapes: 4.3.2
cli-width: 4.1.0
external-editor: 3.1.0
mute-stream: 1.0.0
ora: 5.4.1
- picocolors: 1.1.0
run-async: 3.0.0
rxjs: 7.8.1
string-width: 4.2.3
strip-ansi: 6.0.1
wrap-ansi: 6.2.0
+ yoctocolors-cjs: 2.1.2
internal-slot@1.0.7:
dependencies:
@@ -20364,7 +18470,7 @@ snapshots:
dependencies:
'@ioredis/commands': 1.2.0
cluster-key-slot: 1.1.2
- debug: 4.3.7
+ debug: 4.3.7(supports-color@9.4.0)
denque: 2.1.0
lodash.defaults: 4.2.0
lodash.isarguments: 3.1.0
@@ -20389,11 +18495,6 @@ snapshots:
dependencies:
hasown: 2.0.2
- is-arguments@1.1.1:
- dependencies:
- call-bind: 1.0.7
- has-tostringtag: 1.0.2
-
is-array-buffer@3.0.4:
dependencies:
call-bind: 1.0.7
@@ -20434,10 +18535,6 @@ snapshots:
dependencies:
ci-info: 3.9.0
- is-core-module@2.14.0:
- dependencies:
- hasown: 2.0.2
-
is-core-module@2.15.1:
dependencies:
hasown: 2.0.2
@@ -20498,17 +18595,12 @@ snapshots:
dependencies:
is-extglob: 2.1.1
- is-in-ci@0.1.0: {}
+ is-in-ci@1.0.0: {}
is-inside-container@1.0.0:
dependencies:
is-docker: 3.0.0
- is-installed-globally@0.4.0:
- dependencies:
- global-dirs: 3.0.1
- is-path-inside: 3.0.3
-
is-installed-globally@1.0.0:
dependencies:
global-directory: 4.0.1
@@ -20670,13 +18762,13 @@ snapshots:
isobject@3.0.1: {}
- issue-regex@4.1.0: {}
+ issue-regex@4.3.0: {}
istanbul-lib-coverage@3.2.2: {}
istanbul-lib-instrument@4.0.3:
dependencies:
- '@babel/core': 7.24.7
+ '@babel/core': 7.26.0
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
semver: 6.3.1
@@ -20685,18 +18777,18 @@ snapshots:
istanbul-lib-instrument@5.2.1:
dependencies:
- '@babel/core': 7.24.7
- '@babel/parser': 7.25.4
+ '@babel/core': 7.26.0
+ '@babel/parser': 7.26.2
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- istanbul-lib-instrument@6.0.2:
+ istanbul-lib-instrument@6.0.3:
dependencies:
- '@babel/core': 7.24.7
- '@babel/parser': 7.25.4
+ '@babel/core': 7.26.0
+ '@babel/parser': 7.26.2
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
semver: 7.6.3
@@ -20711,7 +18803,7 @@ snapshots:
istanbul-lib-source-maps@4.0.1:
dependencies:
- debug: 4.3.7
+ debug: 4.3.7(supports-color@9.4.0)
istanbul-lib-coverage: 3.2.2
source-map: 0.6.1
transitivePeerDependencies:
@@ -20736,12 +18828,6 @@ snapshots:
optionalDependencies:
'@pkgjs/parseargs': 0.11.0
- jackspeak@3.4.0:
- dependencies:
- '@isaacs/cliui': 8.0.2
- optionalDependencies:
- '@pkgjs/parseargs': 0.11.0
-
jackspeak@3.4.3:
dependencies:
'@isaacs/cliui': 8.0.2
@@ -20752,9 +18838,9 @@ snapshots:
dependencies:
'@isaacs/cliui': 8.0.2
- jake@10.9.1:
+ jake@10.9.2:
dependencies:
- async: 3.2.5
+ async: 3.2.6
chalk: 4.1.2
filelist: 1.0.4
minimatch: 3.1.2
@@ -20765,49 +18851,19 @@ snapshots:
execa: 4.1.0
throat: 5.0.0
- jest-changed-files@27.5.1:
- dependencies:
- '@jest/types': 27.5.1
- execa: 5.1.1
- throat: 6.0.2
-
jest-changed-files@29.7.0:
dependencies:
execa: 5.1.1
jest-util: 29.7.0
p-limit: 3.1.0
- jest-circus@27.5.1:
- dependencies:
- '@jest/environment': 27.5.1
- '@jest/test-result': 27.5.1
- '@jest/types': 27.5.1
- '@types/node': 20.17.6
- chalk: 4.1.2
- co: 4.6.0
- dedent: 0.7.0
- expect: 27.5.1
- is-generator-fn: 2.1.0
- jest-each: 27.5.1
- jest-matcher-utils: 27.5.1
- jest-message-util: 27.5.1
- jest-runtime: 27.5.1
- jest-snapshot: 27.5.1
- jest-util: 27.5.1
- pretty-format: 27.5.1
- slash: 3.0.0
- stack-utils: 2.0.6
- throat: 6.0.2
- transitivePeerDependencies:
- - supports-color
-
jest-circus@29.7.0:
dependencies:
'@jest/environment': 29.7.0
'@jest/expect': 29.7.0
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 22.9.0
+ '@types/node': 20.17.6
chalk: 4.1.2
co: 4.6.0
dedent: 1.5.3
@@ -20827,17 +18883,17 @@ snapshots:
- babel-plugin-macros
- supports-color
- jest-cli@26.0.1(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.6.3)):
+ jest-cli@26.0.1:
dependencies:
- '@jest/core': 26.6.3(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.6.3))
+ '@jest/core': 26.6.3
'@jest/test-result': 26.6.2
'@jest/types': 26.6.2
chalk: 4.1.2
exit: 0.1.2
graceful-fs: 4.2.11
- import-local: 3.1.0
+ import-local: 3.2.0
is-ci: 2.0.0
- jest-config: 26.6.3(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.6.3))
+ jest-config: 26.6.3
jest-util: 26.6.2
jest-validate: 26.6.2
prompts: 2.4.2
@@ -20849,39 +18905,16 @@ snapshots:
- ts-node
- utf-8-validate
- jest-cli@27.5.1(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@20.17.6)(typescript@5.6.3)):
- dependencies:
- '@jest/core': 27.5.1(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@20.17.6)(typescript@5.6.3))
- '@jest/test-result': 27.5.1
- '@jest/types': 27.5.1
- chalk: 4.1.2
- exit: 0.1.2
- graceful-fs: 4.2.11
- import-local: 3.1.0
- jest-config: 27.5.1(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@20.17.6)(typescript@5.6.3))
- jest-util: 27.5.1
- jest-validate: 27.5.1
- prompts: 2.4.2
- yargs: 16.2.0
- optionalDependencies:
- node-notifier: 8.0.2
- transitivePeerDependencies:
- - bufferutil
- - canvas
- - supports-color
- - ts-node
- - utf-8-validate
-
- jest-cli@29.7.0(@types/node@22.9.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.1.6)):
+ jest-cli@29.7.0(@types/node@20.17.6)(node-notifier@8.0.2):
dependencies:
- '@jest/core': 29.7.0(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.1.6))
+ '@jest/core': 29.7.0(node-notifier@8.0.2)
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
chalk: 4.1.2
- create-jest: 29.7.0(@types/node@22.9.0)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.1.6))
+ create-jest: 29.7.0(@types/node@20.17.6)
exit: 0.1.2
- import-local: 3.1.0
- jest-config: 29.7.0(@types/node@22.9.0)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.1.6))
+ import-local: 3.2.0
+ jest-config: 29.7.0(@types/node@20.17.6)
jest-util: 29.7.0
jest-validate: 29.7.0
yargs: 17.7.2
@@ -20893,16 +18926,16 @@ snapshots:
- supports-color
- ts-node
- jest-cli@29.7.0(@types/node@22.9.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.6.3)):
+ jest-cli@29.7.0(@types/node@22.9.0)(node-notifier@8.0.2):
dependencies:
- '@jest/core': 29.7.0(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.6.3))
+ '@jest/core': 29.7.0(node-notifier@8.0.2)
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
chalk: 4.1.2
- create-jest: 29.7.0(@types/node@22.9.0)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.6.3))
+ create-jest: 29.7.0(@types/node@22.9.0)
exit: 0.1.2
- import-local: 3.1.0
- jest-config: 29.7.0(@types/node@22.9.0)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.6.3))
+ import-local: 3.2.0
+ jest-config: 29.7.0(@types/node@22.9.0)
jest-util: 29.7.0
jest-validate: 29.7.0
yargs: 17.7.2
@@ -20914,12 +18947,12 @@ snapshots:
- supports-color
- ts-node
- jest-config@26.6.3(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.6.3)):
+ jest-config@26.6.3:
dependencies:
- '@babel/core': 7.24.7
- '@jest/test-sequencer': 26.6.3(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.6.3))
+ '@babel/core': 7.26.0
+ '@jest/test-sequencer': 26.6.3
'@jest/types': 26.6.2
- babel-jest: 26.6.3(@babel/core@7.24.7)
+ babel-jest: 26.6.3(@babel/core@7.26.0)
chalk: 4.1.2
deepmerge: 4.3.1
glob: 7.2.3
@@ -20932,56 +18965,20 @@ snapshots:
jest-resolve: 26.6.2
jest-util: 26.6.2
jest-validate: 26.6.2
- micromatch: 4.0.7
+ micromatch: 4.0.8
pretty-format: 26.6.2
- optionalDependencies:
- ts-node: 10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.6.3)
- transitivePeerDependencies:
- - bufferutil
- - canvas
- - supports-color
- - utf-8-validate
-
- jest-config@27.5.1(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@20.17.6)(typescript@5.6.3)):
- dependencies:
- '@babel/core': 7.24.7
- '@jest/test-sequencer': 27.5.1
- '@jest/types': 27.5.1
- babel-jest: 27.5.1(@babel/core@7.24.7)
- chalk: 4.1.2
- ci-info: 3.9.0
- deepmerge: 4.3.1
- glob: 7.2.3
- graceful-fs: 4.2.11
- jest-circus: 27.5.1
- jest-environment-jsdom: 27.5.1
- jest-environment-node: 27.5.1
- jest-get-type: 27.5.1
- jest-jasmine2: 27.5.1
- jest-regex-util: 27.5.1
- jest-resolve: 27.5.1
- jest-runner: 27.5.1
- jest-util: 27.5.1
- jest-validate: 27.5.1
- micromatch: 4.0.7
- parse-json: 5.2.0
- pretty-format: 27.5.1
- slash: 3.0.0
- strip-json-comments: 3.1.1
- optionalDependencies:
- ts-node: 10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@20.17.6)(typescript@5.6.3)
transitivePeerDependencies:
- bufferutil
- canvas
- supports-color
- utf-8-validate
- jest-config@29.7.0(@types/node@22.9.0)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.1.6)):
+ jest-config@29.7.0(@types/node@20.17.6):
dependencies:
- '@babel/core': 7.24.7
+ '@babel/core': 7.26.0
'@jest/test-sequencer': 29.7.0
'@jest/types': 29.6.3
- babel-jest: 29.7.0(@babel/core@7.24.7)
+ babel-jest: 29.7.0(@babel/core@7.26.0)
chalk: 4.1.2
ci-info: 3.9.0
deepmerge: 4.3.1
@@ -20995,24 +18992,23 @@ snapshots:
jest-runner: 29.7.0
jest-util: 29.7.0
jest-validate: 29.7.0
- micromatch: 4.0.7
+ micromatch: 4.0.8
parse-json: 5.2.0
pretty-format: 29.7.0
slash: 3.0.0
strip-json-comments: 3.1.1
optionalDependencies:
- '@types/node': 22.9.0
- ts-node: 10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.1.6)
+ '@types/node': 20.17.6
transitivePeerDependencies:
- babel-plugin-macros
- supports-color
- jest-config@29.7.0(@types/node@22.9.0)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.6.3)):
+ jest-config@29.7.0(@types/node@22.9.0):
dependencies:
- '@babel/core': 7.24.7
+ '@babel/core': 7.26.0
'@jest/test-sequencer': 29.7.0
'@jest/types': 29.6.3
- babel-jest: 29.7.0(@babel/core@7.24.7)
+ babel-jest: 29.7.0(@babel/core@7.26.0)
chalk: 4.1.2
ci-info: 3.9.0
deepmerge: 4.3.1
@@ -21026,14 +19022,13 @@ snapshots:
jest-runner: 29.7.0
jest-util: 29.7.0
jest-validate: 29.7.0
- micromatch: 4.0.7
+ micromatch: 4.0.8
parse-json: 5.2.0
pretty-format: 29.7.0
slash: 3.0.0
strip-json-comments: 3.1.1
optionalDependencies:
'@types/node': 22.9.0
- ts-node: 10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.6.3)
transitivePeerDependencies:
- babel-plugin-macros
- supports-color
@@ -21045,13 +19040,6 @@ snapshots:
jest-get-type: 26.3.0
pretty-format: 26.6.2
- jest-diff@27.5.1:
- dependencies:
- chalk: 4.1.2
- diff-sequences: 27.5.1
- jest-get-type: 27.5.1
- pretty-format: 27.5.1
-
jest-diff@29.7.0:
dependencies:
chalk: 4.1.0
@@ -21063,10 +19051,6 @@ snapshots:
dependencies:
detect-newline: 3.1.0
- jest-docblock@27.5.1:
- dependencies:
- detect-newline: 3.1.0
-
jest-docblock@29.7.0:
dependencies:
detect-newline: 3.1.0
@@ -21079,14 +19063,6 @@ snapshots:
jest-util: 26.6.2
pretty-format: 26.6.2
- jest-each@27.5.1:
- dependencies:
- '@jest/types': 27.5.1
- chalk: 4.1.2
- jest-get-type: 27.5.1
- jest-util: 27.5.1
- pretty-format: 27.5.1
-
jest-each@29.7.0:
dependencies:
'@jest/types': 29.6.3
@@ -21100,7 +19076,7 @@ snapshots:
'@jest/environment': 26.6.2
'@jest/fake-timers': 26.6.2
'@jest/types': 26.6.2
- '@types/node': 22.9.0
+ '@types/node': 20.17.6
jest-mock: 26.6.2
jest-util: 26.6.2
jsdom: 16.7.0
@@ -21110,28 +19086,13 @@ snapshots:
- supports-color
- utf-8-validate
- jest-environment-jsdom@27.5.1:
- dependencies:
- '@jest/environment': 27.5.1
- '@jest/fake-timers': 27.5.1
- '@jest/types': 27.5.1
- '@types/node': 20.17.6
- jest-mock: 27.5.1
- jest-util: 27.5.1
- jsdom: 16.7.0
- transitivePeerDependencies:
- - bufferutil
- - canvas
- - supports-color
- - utf-8-validate
-
jest-environment-jsdom@29.7.0:
dependencies:
'@jest/environment': 29.7.0
'@jest/fake-timers': 29.7.0
'@jest/types': 29.6.3
'@types/jsdom': 20.0.1
- '@types/node': 20.14.12
+ '@types/node': 20.17.6
jest-mock: 29.7.0
jest-util: 29.7.0
jsdom: 20.0.3
@@ -21145,39 +19106,28 @@ snapshots:
'@jest/environment': 26.6.2
'@jest/fake-timers': 26.6.2
'@jest/types': 26.6.2
- '@types/node': 22.9.0
+ '@types/node': 20.17.6
jest-mock: 26.6.2
jest-util: 26.6.2
- jest-environment-node@27.5.1:
- dependencies:
- '@jest/environment': 27.5.1
- '@jest/fake-timers': 27.5.1
- '@jest/types': 27.5.1
- '@types/node': 20.17.6
- jest-mock: 27.5.1
- jest-util: 27.5.1
-
jest-environment-node@29.7.0:
dependencies:
'@jest/environment': 29.7.0
'@jest/fake-timers': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 22.9.0
+ '@types/node': 20.17.6
jest-mock: 29.7.0
jest-util: 29.7.0
jest-get-type@26.3.0: {}
- jest-get-type@27.5.1: {}
-
jest-get-type@29.6.3: {}
jest-haste-map@26.6.2:
dependencies:
'@jest/types': 26.6.2
'@types/graceful-fs': 4.1.9
- '@types/node': 22.9.0
+ '@types/node': 20.17.6
anymatch: 3.1.3
fb-watchman: 2.0.2
graceful-fs: 4.2.11
@@ -21185,7 +19135,7 @@ snapshots:
jest-serializer: 26.6.2
jest-util: 26.6.2
jest-worker: 26.6.2
- micromatch: 4.0.7
+ micromatch: 4.0.8
sane: 4.1.0
walker: 1.0.8
optionalDependencies:
@@ -21193,47 +19143,30 @@ snapshots:
transitivePeerDependencies:
- supports-color
- jest-haste-map@27.5.1:
- dependencies:
- '@jest/types': 27.5.1
- '@types/graceful-fs': 4.1.9
- '@types/node': 20.17.6
- anymatch: 3.1.3
- fb-watchman: 2.0.2
- graceful-fs: 4.2.11
- jest-regex-util: 27.5.1
- jest-serializer: 27.5.1
- jest-util: 27.5.1
- jest-worker: 27.5.1
- micromatch: 4.0.7
- walker: 1.0.8
- optionalDependencies:
- fsevents: 2.3.3
-
jest-haste-map@29.7.0:
dependencies:
'@jest/types': 29.6.3
'@types/graceful-fs': 4.1.9
- '@types/node': 22.9.0
+ '@types/node': 20.17.6
anymatch: 3.1.3
fb-watchman: 2.0.2
graceful-fs: 4.2.11
jest-regex-util: 29.6.3
jest-util: 29.7.0
jest-worker: 29.7.0
- micromatch: 4.0.7
+ micromatch: 4.0.8
walker: 1.0.8
optionalDependencies:
fsevents: 2.3.3
jest-jasmine2@26.6.3:
dependencies:
- '@babel/traverse': 7.25.4
+ '@babel/traverse': 7.25.9
'@jest/environment': 26.6.2
'@jest/source-map': 26.6.2
'@jest/test-result': 26.6.2
'@jest/types': 26.6.2
- '@types/node': 22.9.0
+ '@types/node': 20.17.6
chalk: 4.1.2
co: 4.6.0
expect: 26.6.2
@@ -21241,46 +19174,23 @@ snapshots:
jest-each: 26.6.2
jest-matcher-utils: 26.6.2
jest-message-util: 26.6.2
- jest-runtime: 26.6.3(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.6.3))
+ jest-runtime: 26.6.3
jest-snapshot: 26.6.2
jest-util: 26.6.2
pretty-format: 26.6.2
throat: 5.0.0
transitivePeerDependencies:
+ - bufferutil
+ - canvas
- supports-color
-
- jest-jasmine2@27.5.1:
- dependencies:
- '@jest/environment': 27.5.1
- '@jest/source-map': 27.5.1
- '@jest/test-result': 27.5.1
- '@jest/types': 27.5.1
- '@types/node': 20.17.6
- chalk: 4.1.2
- co: 4.6.0
- expect: 27.5.1
- is-generator-fn: 2.1.0
- jest-each: 27.5.1
- jest-matcher-utils: 27.5.1
- jest-message-util: 27.5.1
- jest-runtime: 27.5.1
- jest-snapshot: 27.5.1
- jest-util: 27.5.1
- pretty-format: 27.5.1
- throat: 6.0.2
- transitivePeerDependencies:
- - supports-color
+ - ts-node
+ - utf-8-validate
jest-leak-detector@26.6.2:
dependencies:
jest-get-type: 26.3.0
pretty-format: 26.6.2
- jest-leak-detector@27.5.1:
- dependencies:
- jest-get-type: 27.5.1
- pretty-format: 27.5.1
-
jest-leak-detector@29.7.0:
dependencies:
jest-get-type: 29.6.3
@@ -21293,13 +19203,6 @@ snapshots:
jest-get-type: 26.3.0
pretty-format: 26.6.2
- jest-matcher-utils@27.5.1:
- dependencies:
- chalk: 4.1.2
- jest-diff: 27.5.1
- jest-get-type: 27.5.1
- pretty-format: 27.5.1
-
jest-matcher-utils@29.7.0:
dependencies:
chalk: 4.1.2
@@ -21309,36 +19212,24 @@ snapshots:
jest-message-util@26.6.2:
dependencies:
- '@babel/code-frame': 7.24.7
+ '@babel/code-frame': 7.26.2
'@jest/types': 26.6.2
'@types/stack-utils': 2.0.3
chalk: 4.1.2
graceful-fs: 4.2.11
- micromatch: 4.0.7
- pretty-format: 26.6.2
- slash: 3.0.0
- stack-utils: 2.0.6
-
- jest-message-util@27.5.1:
- dependencies:
- '@babel/code-frame': 7.24.7
- '@jest/types': 27.5.1
- '@types/stack-utils': 2.0.3
- chalk: 4.1.2
- graceful-fs: 4.2.11
- micromatch: 4.0.7
- pretty-format: 27.5.1
+ micromatch: 4.0.8
+ pretty-format: 26.6.2
slash: 3.0.0
stack-utils: 2.0.6
jest-message-util@29.7.0:
dependencies:
- '@babel/code-frame': 7.24.7
+ '@babel/code-frame': 7.26.2
'@jest/types': 29.6.3
'@types/stack-utils': 2.0.3
chalk: 4.1.2
graceful-fs: 4.2.11
- micromatch: 4.0.7
+ micromatch: 4.0.8
pretty-format: 29.7.0
slash: 3.0.0
stack-utils: 2.0.6
@@ -21346,47 +19237,38 @@ snapshots:
jest-mock@26.6.2:
dependencies:
'@jest/types': 26.6.2
- '@types/node': 22.9.0
-
- jest-mock@27.5.1:
- dependencies:
- '@jest/types': 27.5.1
'@types/node': 20.17.6
jest-mock@29.7.0:
dependencies:
'@jest/types': 29.6.3
- '@types/node': 20.14.12
+ '@types/node': 20.17.6
jest-util: 29.7.0
jest-pnp-resolver@1.2.3(jest-resolve@26.6.2):
optionalDependencies:
jest-resolve: 26.6.2
- jest-pnp-resolver@1.2.3(jest-resolve@27.5.1):
- optionalDependencies:
- jest-resolve: 27.5.1
-
jest-pnp-resolver@1.2.3(jest-resolve@29.7.0):
optionalDependencies:
jest-resolve: 29.7.0
- jest-preset-angular@13.1.6(y5fmd6746vq2ysjsbi4rl2y7ym):
+ jest-preset-angular@13.1.6(6uarwrmwcllwqxrzfxqcfoap7y):
dependencies:
- '@angular-devkit/build-angular': 17.3.10(@angular/compiler-cli@16.2.12(@angular/compiler@16.2.12(@angular/core@16.2.12(rxjs@7.8.1)(zone.js@0.13.3)))(typescript@5.1.6))(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/express@4.17.21)(@types/node@22.9.0)(chokidar@3.6.0)(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@22.9.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.1.6)))(tailwindcss@3.4.13(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.1.6)))(typescript@5.1.6)
+ '@angular-devkit/build-angular': 17.3.11(@angular/compiler-cli@16.2.12(@angular/compiler@16.2.12(@angular/core@16.2.12(rxjs@7.8.1)(zone.js@0.13.3)))(typescript@5.1.6))(@types/express@4.17.21)(@types/node@20.17.6)(chokidar@3.6.0)(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@20.17.6)(node-notifier@8.0.2))(tailwindcss@3.4.14)(typescript@5.1.6)
'@angular/compiler-cli': 16.2.12(@angular/compiler@16.2.12(@angular/core@16.2.12(rxjs@7.8.1)(zone.js@0.13.3)))(typescript@5.1.6)
'@angular/core': 16.2.12(rxjs@7.8.1)(zone.js@0.13.3)
'@angular/platform-browser-dynamic': 16.2.12(@angular/common@16.2.12(@angular/core@16.2.12(rxjs@7.8.1)(zone.js@0.13.3))(rxjs@7.8.1))(@angular/compiler@16.2.12(@angular/core@16.2.12(rxjs@7.8.1)(zone.js@0.13.3)))(@angular/core@16.2.12(rxjs@7.8.1)(zone.js@0.13.3))(@angular/platform-browser@16.2.12(@angular/common@16.2.12(@angular/core@16.2.12(rxjs@7.8.1)(zone.js@0.13.3))(rxjs@7.8.1))(@angular/core@16.2.12(rxjs@7.8.1)(zone.js@0.13.3)))
bs-logger: 0.2.6
esbuild-wasm: 0.24.0
- jest: 29.7.0(@types/node@22.9.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.1.6))
+ jest: 29.7.0(@types/node@20.17.6)(node-notifier@8.0.2)
jest-environment-jsdom: 29.7.0
jest-util: 29.7.0
pretty-format: 29.7.0
- ts-jest: 29.2.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.7))(esbuild@0.21.5)(jest@29.7.0(@types/node@22.9.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.1.6)))(typescript@5.1.6)
+ ts-jest: 29.2.5(@babel/core@7.26.0)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.0))(esbuild@0.24.0)(jest@29.7.0(@types/node@20.17.6)(node-notifier@8.0.2))(typescript@5.1.6)
typescript: 5.1.6
optionalDependencies:
- esbuild: 0.21.5
+ esbuild: 0.24.0
transitivePeerDependencies:
- '@babel/core'
- '@jest/transform'
@@ -21399,8 +19281,6 @@ snapshots:
jest-regex-util@26.0.0: {}
- jest-regex-util@27.5.1: {}
-
jest-regex-util@29.6.3: {}
jest-resolve-dependencies@26.6.3:
@@ -21411,14 +19291,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- jest-resolve-dependencies@27.5.1:
- dependencies:
- '@jest/types': 27.5.1
- jest-regex-util: 27.5.1
- jest-snapshot: 27.5.1
- transitivePeerDependencies:
- - supports-color
-
jest-resolve-dependencies@29.7.0:
dependencies:
jest-regex-util: 29.6.3
@@ -21437,19 +19309,6 @@ snapshots:
resolve: 1.22.8
slash: 3.0.0
- jest-resolve@27.5.1:
- dependencies:
- '@jest/types': 27.5.1
- chalk: 4.1.2
- graceful-fs: 4.2.11
- jest-haste-map: 27.5.1
- jest-pnp-resolver: 1.2.3(jest-resolve@27.5.1)
- jest-util: 27.5.1
- jest-validate: 27.5.1
- resolve: 1.22.8
- resolve.exports: 1.1.1
- slash: 3.0.0
-
jest-resolve@29.7.0:
dependencies:
chalk: 4.1.2
@@ -21462,24 +19321,24 @@ snapshots:
resolve.exports: 2.0.2
slash: 3.0.0
- jest-runner@26.6.3(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.6.3)):
+ jest-runner@26.6.3:
dependencies:
'@jest/console': 26.6.2
'@jest/environment': 26.6.2
'@jest/test-result': 26.6.2
'@jest/types': 26.6.2
- '@types/node': 22.9.0
+ '@types/node': 20.17.6
chalk: 4.1.2
emittery: 0.7.2
exit: 0.1.2
graceful-fs: 4.2.11
- jest-config: 26.6.3(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.6.3))
+ jest-config: 26.6.3
jest-docblock: 26.0.0
jest-haste-map: 26.6.2
jest-leak-detector: 26.6.2
jest-message-util: 26.6.2
jest-resolve: 26.6.2
- jest-runtime: 26.6.3(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.6.3))
+ jest-runtime: 26.6.3
jest-util: 26.6.2
jest-worker: 26.6.2
source-map-support: 0.5.21
@@ -21491,35 +19350,6 @@ snapshots:
- ts-node
- utf-8-validate
- jest-runner@27.5.1:
- dependencies:
- '@jest/console': 27.5.1
- '@jest/environment': 27.5.1
- '@jest/test-result': 27.5.1
- '@jest/transform': 27.5.1
- '@jest/types': 27.5.1
- '@types/node': 20.17.6
- chalk: 4.1.2
- emittery: 0.8.1
- graceful-fs: 4.2.11
- jest-docblock: 27.5.1
- jest-environment-jsdom: 27.5.1
- jest-environment-node: 27.5.1
- jest-haste-map: 27.5.1
- jest-leak-detector: 27.5.1
- jest-message-util: 27.5.1
- jest-resolve: 27.5.1
- jest-runtime: 27.5.1
- jest-util: 27.5.1
- jest-worker: 27.5.1
- source-map-support: 0.5.21
- throat: 6.0.2
- transitivePeerDependencies:
- - bufferutil
- - canvas
- - supports-color
- - utf-8-validate
-
jest-runner@29.7.0:
dependencies:
'@jest/console': 29.7.0
@@ -21527,7 +19357,7 @@ snapshots:
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 22.9.0
+ '@types/node': 20.17.6
chalk: 4.1.2
emittery: 0.13.1
graceful-fs: 4.2.11
@@ -21546,7 +19376,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- jest-runtime@26.6.3(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.6.3)):
+ jest-runtime@26.6.3:
dependencies:
'@jest/console': 26.6.2
'@jest/environment': 26.6.2
@@ -21563,7 +19393,7 @@ snapshots:
exit: 0.1.2
glob: 7.2.3
graceful-fs: 4.2.11
- jest-config: 26.6.3(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.6.3))
+ jest-config: 26.6.3
jest-haste-map: 26.6.2
jest-message-util: 26.6.2
jest-mock: 26.6.2
@@ -21582,33 +19412,6 @@ snapshots:
- ts-node
- utf-8-validate
- jest-runtime@27.5.1:
- dependencies:
- '@jest/environment': 27.5.1
- '@jest/fake-timers': 27.5.1
- '@jest/globals': 27.5.1
- '@jest/source-map': 27.5.1
- '@jest/test-result': 27.5.1
- '@jest/transform': 27.5.1
- '@jest/types': 27.5.1
- chalk: 4.1.2
- cjs-module-lexer: 1.3.1
- collect-v8-coverage: 1.0.2
- execa: 5.1.1
- glob: 7.2.3
- graceful-fs: 4.2.11
- jest-haste-map: 27.5.1
- jest-message-util: 27.5.1
- jest-mock: 27.5.1
- jest-regex-util: 27.5.1
- jest-resolve: 27.5.1
- jest-snapshot: 27.5.1
- jest-util: 27.5.1
- slash: 3.0.0
- strip-bom: 4.0.0
- transitivePeerDependencies:
- - supports-color
-
jest-runtime@29.7.0:
dependencies:
'@jest/environment': 29.7.0
@@ -21618,9 +19421,9 @@ snapshots:
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 22.9.0
+ '@types/node': 20.17.6
chalk: 4.1.2
- cjs-module-lexer: 1.3.1
+ cjs-module-lexer: 1.4.1
collect-v8-coverage: 1.0.2
glob: 7.2.3
graceful-fs: 4.2.11
@@ -21637,18 +19440,13 @@ snapshots:
- supports-color
jest-serializer@26.6.2:
- dependencies:
- '@types/node': 22.9.0
- graceful-fs: 4.2.11
-
- jest-serializer@27.5.1:
dependencies:
'@types/node': 20.17.6
graceful-fs: 4.2.11
jest-snapshot@26.6.2:
dependencies:
- '@babel/types': 7.25.4
+ '@babel/types': 7.26.0
'@jest/types': 26.6.2
'@types/babel__traverse': 7.20.6
'@types/prettier': 2.7.3
@@ -21667,44 +19465,17 @@ snapshots:
transitivePeerDependencies:
- supports-color
- jest-snapshot@27.5.1:
- dependencies:
- '@babel/core': 7.24.7
- '@babel/generator': 7.25.5
- '@babel/plugin-syntax-typescript': 7.24.7(@babel/core@7.24.7)
- '@babel/traverse': 7.25.4
- '@babel/types': 7.25.4
- '@jest/transform': 27.5.1
- '@jest/types': 27.5.1
- '@types/babel__traverse': 7.20.6
- '@types/prettier': 2.7.3
- babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.7)
- chalk: 4.1.2
- expect: 27.5.1
- graceful-fs: 4.2.11
- jest-diff: 27.5.1
- jest-get-type: 27.5.1
- jest-haste-map: 27.5.1
- jest-matcher-utils: 27.5.1
- jest-message-util: 27.5.1
- jest-util: 27.5.1
- natural-compare: 1.4.0
- pretty-format: 27.5.1
- semver: 7.6.3
- transitivePeerDependencies:
- - supports-color
-
jest-snapshot@29.7.0:
dependencies:
- '@babel/core': 7.24.7
- '@babel/generator': 7.25.5
- '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-syntax-typescript': 7.24.7(@babel/core@7.24.7)
- '@babel/types': 7.25.4
+ '@babel/core': 7.26.0
+ '@babel/generator': 7.26.2
+ '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.0)
+ '@babel/types': 7.26.0
'@jest/expect-utils': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.7)
+ babel-preset-current-node-syntax: 1.1.0(@babel/core@7.26.0)
chalk: 4.1.2
expect: 29.7.0
graceful-fs: 4.2.11
@@ -21722,25 +19493,16 @@ snapshots:
jest-util@26.6.2:
dependencies:
'@jest/types': 26.6.2
- '@types/node': 22.9.0
- chalk: 4.1.2
- graceful-fs: 4.2.11
- is-ci: 2.0.0
- micromatch: 4.0.7
-
- jest-util@27.5.1:
- dependencies:
- '@jest/types': 27.5.1
'@types/node': 20.17.6
chalk: 4.1.2
- ci-info: 3.9.0
graceful-fs: 4.2.11
- picomatch: 2.3.1
+ is-ci: 2.0.0
+ micromatch: 4.0.8
jest-util@29.7.0:
dependencies:
'@jest/types': 29.6.3
- '@types/node': 20.14.12
+ '@types/node': 20.17.6
chalk: 4.1.2
ci-info: 3.9.0
graceful-fs: 4.2.11
@@ -21755,15 +19517,6 @@ snapshots:
leven: 3.1.0
pretty-format: 26.6.2
- jest-validate@27.5.1:
- dependencies:
- '@jest/types': 27.5.1
- camelcase: 6.3.0
- chalk: 4.1.2
- jest-get-type: 27.5.1
- leven: 3.1.0
- pretty-format: 27.5.1
-
jest-validate@29.7.0:
dependencies:
'@jest/types': 29.6.3
@@ -21777,27 +19530,17 @@ snapshots:
dependencies:
'@jest/test-result': 26.6.2
'@jest/types': 26.6.2
- '@types/node': 22.9.0
- ansi-escapes: 4.3.2
- chalk: 4.1.2
- jest-util: 26.6.2
- string-length: 4.0.2
-
- jest-watcher@27.5.1:
- dependencies:
- '@jest/test-result': 27.5.1
- '@jest/types': 27.5.1
'@types/node': 20.17.6
ansi-escapes: 4.3.2
chalk: 4.1.2
- jest-util: 27.5.1
+ jest-util: 26.6.2
string-length: 4.0.2
jest-watcher@29.7.0:
dependencies:
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 22.9.0
+ '@types/node': 20.17.6
ansi-escapes: 4.3.2
chalk: 4.1.2
emittery: 0.13.1
@@ -21806,7 +19549,7 @@ snapshots:
jest-worker@26.6.2:
dependencies:
- '@types/node': 22.9.0
+ '@types/node': 20.17.6
merge-stream: 2.0.0
supports-color: 7.2.0
@@ -21818,31 +19561,17 @@ snapshots:
jest-worker@29.7.0:
dependencies:
- '@types/node': 22.9.0
+ '@types/node': 20.17.6
jest-util: 29.7.0
merge-stream: 2.0.0
supports-color: 8.1.1
- jest@27.5.1(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@20.17.6)(typescript@5.6.3)):
- dependencies:
- '@jest/core': 27.5.1(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@20.17.6)(typescript@5.6.3))
- import-local: 3.1.0
- jest-cli: 27.5.1(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@20.17.6)(typescript@5.6.3))
- optionalDependencies:
- node-notifier: 8.0.2
- transitivePeerDependencies:
- - bufferutil
- - canvas
- - supports-color
- - ts-node
- - utf-8-validate
-
- jest@29.7.0(@types/node@22.9.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.1.6)):
+ jest@29.7.0(@types/node@20.17.6)(node-notifier@8.0.2):
dependencies:
- '@jest/core': 29.7.0(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.1.6))
+ '@jest/core': 29.7.0(node-notifier@8.0.2)
'@jest/types': 29.6.3
- import-local: 3.1.0
- jest-cli: 29.7.0(@types/node@22.9.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.1.6))
+ import-local: 3.2.0
+ jest-cli: 29.7.0(@types/node@20.17.6)(node-notifier@8.0.2)
optionalDependencies:
node-notifier: 8.0.2
transitivePeerDependencies:
@@ -21851,12 +19580,12 @@ snapshots:
- supports-color
- ts-node
- jest@29.7.0(@types/node@22.9.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.6.3)):
+ jest@29.7.0(@types/node@22.9.0)(node-notifier@8.0.2):
dependencies:
- '@jest/core': 29.7.0(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.6.3))
+ '@jest/core': 29.7.0(node-notifier@8.0.2)
'@jest/types': 29.6.3
- import-local: 3.1.0
- jest-cli: 29.7.0(@types/node@22.9.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.6.3))
+ import-local: 3.2.0
+ jest-cli: 29.7.0(@types/node@22.9.0)(node-notifier@8.0.2)
optionalDependencies:
node-notifier: 8.0.2
transitivePeerDependencies:
@@ -21867,10 +19596,12 @@ snapshots:
jiti@1.21.6: {}
- jiti@2.3.3: {}
+ jiti@2.4.0: {}
jju@1.4.0: {}
+ js-levenshtein@1.1.6: {}
+
js-tokens@4.0.0: {}
js-tokens@9.0.0: {}
@@ -21889,7 +19620,7 @@ snapshots:
jsdom@16.7.0:
dependencies:
abab: 2.0.6
- acorn: 8.12.1
+ acorn: 8.14.0
acorn-globals: 6.0.0
cssom: 0.4.4
cssstyle: 2.3.0
@@ -21897,12 +19628,12 @@ snapshots:
decimal.js: 10.4.3
domexception: 2.0.1
escodegen: 2.1.0
- form-data: 3.0.1
+ form-data: 3.0.2
html-encoding-sniffer: 2.0.1
http-proxy-agent: 4.0.1
https-proxy-agent: 5.0.1
is-potential-custom-element-name: 1.0.1
- nwsapi: 2.2.10
+ nwsapi: 2.2.13
parse5: 6.0.1
saxes: 5.0.1
symbol-tree: 3.2.4
@@ -21923,7 +19654,7 @@ snapshots:
jsdom@20.0.3:
dependencies:
abab: 2.0.6
- acorn: 8.12.1
+ acorn: 8.14.0
acorn-globals: 7.0.1
cssom: 0.5.0
cssstyle: 2.3.0
@@ -21931,13 +19662,13 @@ snapshots:
decimal.js: 10.4.3
domexception: 4.0.0
escodegen: 2.1.0
- form-data: 4.0.0
+ form-data: 4.0.1
html-encoding-sniffer: 3.0.0
http-proxy-agent: 5.0.0
https-proxy-agent: 5.0.1
is-potential-custom-element-name: 1.0.1
- nwsapi: 2.2.10
- parse5: 7.1.2
+ nwsapi: 2.2.13
+ parse5: 7.2.1
saxes: 6.0.0
symbol-tree: 3.2.4
tough-cookie: 4.1.4
@@ -22041,7 +19772,7 @@ snapshots:
kolorist@1.8.0: {}
- ky@1.4.0: {}
+ ky@1.7.2: {}
language-subtag-registry@0.3.23: {}
@@ -22049,13 +19780,13 @@ snapshots:
dependencies:
language-subtag-registry: 0.3.23
- latest-version@7.0.0:
+ latest-version@9.0.0:
dependencies:
- package-json: 8.1.1
+ package-json: 10.0.1
launch-editor@2.9.1:
dependencies:
- picocolors: 1.1.0
+ picocolors: 1.1.1
shell-quote: 1.8.1
lazystream@1.0.1:
@@ -22076,13 +19807,13 @@ snapshots:
- bluebird
- supports-color
- lerna@8.1.9(@swc/core@1.7.26(@swc/helpers@0.5.5))(encoding@0.1.13):
+ lerna@8.1.9(encoding@0.1.13):
dependencies:
- '@lerna/create': 8.1.9(@swc/core@1.7.26(@swc/helpers@0.5.5))(encoding@0.1.13)(typescript@5.6.3)
+ '@lerna/create': 8.1.9(encoding@0.1.13)(typescript@5.6.3)
'@npmcli/arborist': 7.5.4
'@npmcli/package-json': 5.2.0
'@npmcli/run-script': 8.1.0
- '@nx/devkit': 20.0.8(nx@20.0.8(@swc/core@1.7.26(@swc/helpers@0.5.5)))
+ '@nx/devkit': 20.0.10(nx@20.0.10)
'@octokit/plugin-enterprise-rest': 6.0.1
'@octokit/rest': 19.0.11(encoding@0.1.13)
aproba: 2.0.0
@@ -22127,7 +19858,7 @@ snapshots:
npm-package-arg: 11.0.2
npm-packlist: 8.0.2
npm-registry-fetch: 17.1.0
- nx: 20.0.8(@swc/core@1.7.26(@swc/helpers@0.5.5))
+ nx: 20.0.10
p-map: 4.0.0
p-map-series: 2.1.0
p-pipe: 3.1.0
@@ -22168,17 +19899,17 @@ snapshots:
- encoding
- supports-color
- less-loader@11.1.0(less@4.2.0)(webpack@5.94.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.20.1)):
+ less-loader@11.1.0(less@4.2.0)(webpack@5.94.0(esbuild@0.20.1)):
dependencies:
klona: 2.0.6
less: 4.2.0
- webpack: 5.94.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.20.1)
+ webpack: 5.94.0(esbuild@0.20.1)
less@4.2.0:
dependencies:
copy-anything: 2.0.6
parse-node-version: 1.0.1
- tslib: 2.6.2
+ tslib: 2.8.1
optionalDependencies:
errno: 0.1.8
graceful-fs: 4.2.11
@@ -22215,11 +19946,11 @@ snapshots:
transitivePeerDependencies:
- supports-color
- license-webpack-plugin@4.0.2(webpack@5.94.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.20.1)):
+ license-webpack-plugin@4.0.2(webpack@5.94.0(esbuild@0.20.1)):
dependencies:
webpack-sources: 3.2.3
optionalDependencies:
- webpack: 5.94.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.20.1)
+ webpack: 5.94.0(esbuild@0.20.1)
lie@3.3.0:
dependencies:
@@ -22237,8 +19968,8 @@ snapshots:
listhen@1.9.0:
dependencies:
- '@parcel/watcher': 2.4.1
- '@parcel/watcher-wasm': 2.4.1
+ '@parcel/watcher': 2.5.0
+ '@parcel/watcher-wasm': 2.5.0
citty: 0.1.6
clipboardy: 4.0.0
consola: 3.2.3
@@ -22247,8 +19978,8 @@ snapshots:
get-port-please: 3.1.2
h3: 1.13.0
http-shutdown: 1.2.2
- jiti: 2.3.3
- mlly: 1.7.1
+ jiti: 2.4.0
+ mlly: 1.7.2
node-forge: 1.3.1
pathe: 1.1.2
std-env: 3.7.0
@@ -22325,14 +20056,14 @@ snapshots:
local-pkg@0.5.0:
dependencies:
- mlly: 1.7.1
- pkg-types: 1.2.0
+ mlly: 1.7.2
+ pkg-types: 1.2.1
- locate-app@2.4.43:
+ locate-app@2.5.0:
dependencies:
- '@promptbook/utils': 0.70.0-1
- type-fest: 2.13.0
- userhome: 1.0.0
+ '@promptbook/utils': 0.69.5
+ type-fest: 4.26.0
+ userhome: 1.0.1
locate-path@2.0.0:
dependencies:
@@ -22411,13 +20142,9 @@ snapshots:
loupe@3.1.2: {}
- lowercase-keys@3.0.0: {}
-
- lru-cache@10.2.2: {}
-
lru-cache@10.4.3: {}
- lru-cache@11.0.1: {}
+ lru-cache@11.0.2: {}
lru-cache@5.1.1:
dependencies:
@@ -22437,10 +20164,6 @@ snapshots:
dependencies:
'@jridgewell/sourcemap-codec': 1.5.0
- magic-string@0.30.11:
- dependencies:
- '@jridgewell/sourcemap-codec': 1.5.0
-
magic-string@0.30.12:
dependencies:
'@jridgewell/sourcemap-codec': 1.5.0
@@ -22451,8 +20174,8 @@ snapshots:
magicast@0.3.5:
dependencies:
- '@babel/parser': 7.25.4
- '@babel/types': 7.25.4
+ '@babel/parser': 7.26.2
+ '@babel/types': 7.26.0
source-map-js: 1.2.1
make-dir@2.1.0:
@@ -22501,7 +20224,7 @@ snapshots:
minipass-fetch: 1.4.1
minipass-flush: 1.0.5
minipass-pipeline: 1.2.4
- negotiator: 0.6.3
+ negotiator: 0.6.4
promise-retry: 2.0.1
socks-proxy-agent: 6.2.1
ssri: 8.0.1
@@ -22577,11 +20300,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- micromatch@4.0.7:
- dependencies:
- braces: 3.0.3
- picomatch: 2.3.1
-
micromatch@4.0.8:
dependencies:
braces: 3.0.3
@@ -22609,17 +20327,13 @@ snapshots:
mimic-function@5.0.1: {}
- mimic-response@3.1.0: {}
-
- mimic-response@4.0.0: {}
-
min-indent@1.0.1: {}
- mini-css-extract-plugin@2.8.1(webpack@5.94.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.20.1)):
+ mini-css-extract-plugin@2.8.1(webpack@5.94.0(esbuild@0.20.1)):
dependencies:
schema-utils: 4.2.0
tapable: 2.2.1
- webpack: 5.94.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.20.1)
+ webpack: 5.94.0(esbuild@0.20.1)
minimalistic-assert@1.0.1: {}
@@ -22725,19 +20439,19 @@ snapshots:
mkdirp@3.0.1: {}
- mlly@1.7.1:
+ mlly@1.7.2:
dependencies:
- acorn: 8.12.1
+ acorn: 8.14.0
pathe: 1.1.2
- pkg-types: 1.2.0
+ pkg-types: 1.2.1
ufo: 1.5.4
- mocha@10.7.3:
+ mocha@10.8.2:
dependencies:
ansi-colors: 4.1.3
browser-stdout: 1.3.1
chokidar: 3.6.0
- debug: 4.3.6(supports-color@8.1.1)
+ debug: 4.3.7(supports-color@8.1.1)
diff: 5.2.0
escape-string-regexp: 4.0.0
find-up: 5.0.0
@@ -22763,8 +20477,6 @@ snapshots:
ms@2.0.0: {}
- ms@2.1.2: {}
-
ms@2.1.3: {}
muggle-string@0.3.1: {}
@@ -22798,7 +20510,7 @@ snapshots:
nanoid@3.3.7: {}
- nanoid@5.0.7: {}
+ nanoid@5.0.8: {}
nanomatch@1.2.13:
dependencies:
@@ -22838,17 +20550,17 @@ snapshots:
dependencies:
type-fest: 2.19.0
- next@14.2.15(@babel/core@7.25.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.71.1):
+ next@14.2.15(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.71.1):
dependencies:
'@next/env': 14.2.15
'@swc/helpers': 0.5.5
busboy: 1.6.0
- caniuse-lite: 1.0.30001667
+ caniuse-lite: 1.0.30001677
graceful-fs: 4.2.11
postcss: 8.4.31
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- styled-jsx: 5.1.1(@babel/core@7.25.7)(react@18.3.1)
+ styled-jsx: 5.1.1(react@18.3.1)
optionalDependencies:
'@next/swc-darwin-arm64': 14.2.15
'@next/swc-darwin-x64': 14.2.15
@@ -22872,34 +20584,35 @@ snapshots:
nice-try@1.0.5: {}
- nitropack@2.9.7(encoding@0.1.13)(magicast@0.3.5)(webpack-sources@3.2.3):
+ nitropack@2.10.3(encoding@0.1.13)(typescript@5.6.3)(webpack-sources@3.2.3):
dependencies:
'@cloudflare/kv-asset-handler': 0.3.4
'@netlify/functions': 2.8.2
- '@rollup/plugin-alias': 5.1.1(rollup@4.24.2)
- '@rollup/plugin-commonjs': 25.0.8(rollup@4.24.2)
- '@rollup/plugin-inject': 5.0.5(rollup@4.24.2)
- '@rollup/plugin-json': 6.1.0(rollup@4.24.2)
- '@rollup/plugin-node-resolve': 15.3.0(rollup@4.24.2)
- '@rollup/plugin-replace': 5.0.7(rollup@4.24.2)
- '@rollup/plugin-terser': 0.4.4(rollup@4.24.2)
- '@rollup/pluginutils': 5.1.3(rollup@4.24.2)
+ '@rollup/plugin-alias': 5.1.1(rollup@4.24.4)
+ '@rollup/plugin-commonjs': 28.0.1(rollup@4.24.4)
+ '@rollup/plugin-inject': 5.0.5(rollup@4.24.4)
+ '@rollup/plugin-json': 6.1.0(rollup@4.24.4)
+ '@rollup/plugin-node-resolve': 15.3.0(rollup@4.24.4)
+ '@rollup/plugin-replace': 6.0.1(rollup@4.24.4)
+ '@rollup/plugin-terser': 0.4.4(rollup@4.24.4)
+ '@rollup/pluginutils': 5.1.3(rollup@4.24.4)
'@types/http-proxy': 1.17.15
- '@vercel/nft': 0.26.5(encoding@0.1.13)
+ '@vercel/nft': 0.27.6(encoding@0.1.13)
archiver: 7.0.1
- c12: 1.11.2(magicast@0.3.5)
- chalk: 5.3.0
+ c12: 2.0.1(magicast@0.3.5)
chokidar: 3.6.0
citty: 0.1.6
+ compatx: 0.1.8
+ confbox: 0.1.8
consola: 3.2.3
cookie-es: 1.2.2
- croner: 8.1.2
- crossws: 0.2.4
- db0: 0.1.4
+ croner: 9.0.0
+ crossws: 0.3.1
+ db0: 0.2.1
defu: 6.1.4
destr: 2.0.3
- dot-prop: 8.0.2
- esbuild: 0.20.2
+ dot-prop: 9.0.0
+ esbuild: 0.24.0
escape-string-regexp: 5.0.0
etag: 1.8.1
fs-extra: 11.2.0
@@ -22909,25 +20622,25 @@ snapshots:
hookable: 5.5.3
httpxy: 0.1.5
ioredis: 5.4.1
- jiti: 1.21.6
+ jiti: 2.4.0
klona: 2.0.6
knitwork: 1.1.0
listhen: 1.9.0
- magic-string: 0.30.11
+ magic-string: 0.30.12
+ magicast: 0.3.5
mime: 4.0.4
- mlly: 1.7.1
- mri: 1.2.0
+ mlly: 1.7.2
node-fetch-native: 1.6.4
ofetch: 1.4.1
ohash: 1.1.4
- openapi-typescript: 6.7.6
+ openapi-typescript: 7.4.2(encoding@0.1.13)(typescript@5.6.3)
pathe: 1.1.2
perfect-debounce: 1.0.0
- pkg-types: 1.2.0
+ pkg-types: 1.2.1
pretty-bytes: 6.1.1
radix3: 1.1.2
- rollup: 4.24.2
- rollup-plugin-visualizer: 5.12.0(rollup@4.24.2)
+ rollup: 4.24.4
+ rollup-plugin-visualizer: 5.12.0(rollup@4.24.4)
scule: 1.3.0
semver: 7.6.3
serve-placeholder: 2.0.2
@@ -22937,8 +20650,9 @@ snapshots:
uncrypto: 0.1.3
unctx: 2.3.1(webpack-sources@3.2.3)
unenv: 1.10.0
- unimport: 3.13.1(rollup@4.24.2)(webpack-sources@3.2.3)
- unstorage: 1.12.0(ioredis@5.4.1)
+ unimport: 3.13.1(rollup@4.24.4)(webpack-sources@3.2.3)
+ unstorage: 1.13.1(ioredis@5.4.1)
+ untyped: 1.5.1
unwasm: 0.3.9(webpack-sources@3.2.3)
transitivePeerDependencies:
- '@azure/app-configuration'
@@ -22948,6 +20662,7 @@ snapshots:
- '@azure/keyvault-secrets'
- '@azure/storage-blob'
- '@capacitor/preferences'
+ - '@electric-sql/pglite'
- '@libsql/client'
- '@netlify/blobs'
- '@planetscale/database'
@@ -22957,9 +20672,9 @@ snapshots:
- drizzle-orm
- encoding
- idb-keyval
- - magicast
+ - mysql2
- supports-color
- - uWebSockets.js
+ - typescript
- webpack-sources
node-addon-api@3.2.1:
@@ -23049,7 +20764,7 @@ snapshots:
normalize-package-data@6.0.2:
dependencies:
hosted-git-info: 7.0.2
- semver: 7.6.2
+ semver: 7.6.3
validate-npm-package-license: 3.0.4
normalize-path@2.1.1:
@@ -23060,9 +20775,7 @@ snapshots:
normalize-range@0.1.2: {}
- normalize-url@8.0.1: {}
-
- np@10.0.6(typescript@5.6.3):
+ np@10.0.7(typescript@5.6.3):
dependencies:
chalk: 5.3.0
chalk-template: 1.1.0
@@ -23075,12 +20788,12 @@ snapshots:
github-url-from-git: 1.5.0
hosted-git-info: 7.0.2
ignore-walk: 6.0.5
- import-local: 3.1.0
- inquirer: 9.3.1
+ import-local: 3.2.0
+ inquirer: 9.3.7
is-installed-globally: 1.0.0
is-interactive: 2.0.0
is-scoped: 3.0.0
- issue-regex: 4.1.0
+ issue-regex: 4.3.0
listr: 0.14.3
listr-input: 0.2.1
log-symbols: 6.0.0
@@ -23090,16 +20803,16 @@ snapshots:
onetime: 7.0.0
open: 10.1.0
p-memoize: 7.1.1
- p-timeout: 6.1.2
+ p-timeout: 6.1.3
path-exists: 5.0.0
pkg-dir: 8.0.0
read-package-up: 11.0.0
read-pkg: 9.0.1
rxjs: 7.8.1
- semver: 7.6.2
+ semver: 7.6.3
symbol-observable: 4.0.0
terminal-link: 3.0.0
- update-notifier: 7.0.0
+ update-notifier: 7.3.1
transitivePeerDependencies:
- typescript
- zen-observable
@@ -23117,7 +20830,7 @@ snapshots:
dependencies:
is-scoped: 3.0.0
is-url-superb: 6.1.0
- ky: 1.4.0
+ ky: 1.7.2
lodash.zip: 4.2.0
org-regex: 1.0.0
p-map: 7.0.2
@@ -23158,17 +20871,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- npm-run-all2@6.2.3:
- dependencies:
- ansi-styles: 6.2.1
- cross-spawn: 7.0.3
- memorystream: 0.3.1
- minimatch: 9.0.5
- pidtree: 0.6.0
- read-package-json-fast: 3.0.2
- shell-quote: 1.8.1
-
- npm-run-all2@6.2.4:
+ npm-run-all2@6.2.6:
dependencies:
ansi-styles: 6.2.1
cross-spawn: 7.0.3
@@ -23209,24 +20912,24 @@ snapshots:
number-is-nan@1.0.1: {}
- nuxi@3.14.0: {}
+ nuxi@3.15.0: {}
- nuxt@3.13.2(@parcel/watcher@2.4.1)(@types/node@22.9.0)(encoding@0.1.13)(eslint@8.57.1)(ioredis@5.4.1)(less@4.2.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.2)(sass@1.71.1)(terser@5.29.1)(typescript@5.6.3)(vite@5.4.8(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.29.1))(vue-tsc@2.1.6(typescript@5.6.3))(webpack-sources@3.2.3):
+ nuxt@3.14.159(@parcel/watcher@2.5.0)(@types/node@22.9.0)(encoding@0.1.13)(eslint@8.57.1)(ioredis@5.4.1)(less@4.2.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.4)(sass@1.71.1)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.10(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.36.0))(vue-tsc@2.1.10(typescript@5.6.3))(webpack-sources@3.2.3):
dependencies:
'@nuxt/devalue': 2.0.2
- '@nuxt/devtools': 1.5.2(rollup@4.24.2)(vite@5.4.8(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.29.1))(vue@3.5.10(typescript@5.6.3))(webpack-sources@3.2.3)
- '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.2)(webpack-sources@3.2.3)
- '@nuxt/schema': 3.13.2(rollup@4.24.2)(webpack-sources@3.2.3)
- '@nuxt/telemetry': 2.6.0(magicast@0.3.5)(rollup@4.24.2)(webpack-sources@3.2.3)
- '@nuxt/vite-builder': 3.13.2(@types/node@22.9.0)(eslint@8.57.1)(less@4.2.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.2)(sass@1.71.1)(terser@5.29.1)(typescript@5.6.3)(vue-tsc@2.1.6(typescript@5.6.3))(vue@3.5.10(typescript@5.6.3))(webpack-sources@3.2.3)
- '@unhead/dom': 1.11.7
- '@unhead/shared': 1.11.7
- '@unhead/ssr': 1.11.7
- '@unhead/vue': 1.11.7(vue@3.5.10(typescript@5.6.3))
- '@vue/shared': 3.5.10
- acorn: 8.12.1
- c12: 1.11.2(magicast@0.3.5)
- chokidar: 3.6.0
+ '@nuxt/devtools': 1.6.0(rollup@4.24.4)(vite@5.4.10(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
+ '@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3)
+ '@nuxt/schema': 3.14.159(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3)
+ '@nuxt/telemetry': 2.6.0(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3)
+ '@nuxt/vite-builder': 3.14.159(@types/node@22.9.0)(eslint@8.57.1)(less@4.2.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.4)(sass@1.71.1)(terser@5.36.0)(typescript@5.6.3)(vue-tsc@2.1.10(typescript@5.6.3))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
+ '@unhead/dom': 1.11.11
+ '@unhead/shared': 1.11.11
+ '@unhead/ssr': 1.11.11
+ '@unhead/vue': 1.11.11(vue@3.5.12(typescript@5.6.3))
+ '@vue/shared': 3.5.12
+ acorn: 8.14.0
+ c12: 2.0.1(magicast@0.3.5)
+ chokidar: 4.0.1
compatx: 0.1.8
consola: 3.2.3
cookie-es: 1.2.2
@@ -23234,51 +20937,51 @@ snapshots:
destr: 2.0.3
devalue: 5.1.1
errx: 0.1.0
- esbuild: 0.23.1
+ esbuild: 0.24.0
escape-string-regexp: 5.0.0
estree-walker: 3.0.3
globby: 14.0.2
h3: 1.13.0
hookable: 5.5.3
- ignore: 5.3.2
- impound: 0.1.0(rollup@4.24.2)(webpack-sources@3.2.3)
- jiti: 1.21.6
+ ignore: 6.0.2
+ impound: 0.2.0(rollup@4.24.4)(webpack-sources@3.2.3)
+ jiti: 2.4.0
klona: 2.0.6
knitwork: 1.1.0
- magic-string: 0.30.11
- mlly: 1.7.1
+ magic-string: 0.30.12
+ mlly: 1.7.2
nanotar: 0.1.1
- nitropack: 2.9.7(encoding@0.1.13)(magicast@0.3.5)(webpack-sources@3.2.3)
- nuxi: 3.14.0
+ nitropack: 2.10.3(encoding@0.1.13)(typescript@5.6.3)(webpack-sources@3.2.3)
+ nuxi: 3.15.0
nypm: 0.3.12
ofetch: 1.4.1
ohash: 1.1.4
pathe: 1.1.2
perfect-debounce: 1.0.0
- pkg-types: 1.2.0
+ pkg-types: 1.2.1
radix3: 1.1.2
scule: 1.3.0
semver: 7.6.3
std-env: 3.7.0
strip-literal: 2.1.0
- tinyglobby: 0.2.6
+ tinyglobby: 0.2.10
ufo: 1.5.4
ultrahtml: 1.5.3
uncrypto: 0.1.3
unctx: 2.3.1(webpack-sources@3.2.3)
unenv: 1.10.0
- unhead: 1.11.7
- unimport: 3.13.1(rollup@4.24.2)(webpack-sources@3.2.3)
- unplugin: 1.14.1(webpack-sources@3.2.3)
- unplugin-vue-router: 0.10.8(rollup@4.24.2)(vue-router@4.4.5(vue@3.5.10(typescript@5.6.3)))(vue@3.5.10(typescript@5.6.3))(webpack-sources@3.2.3)
- unstorage: 1.12.0(ioredis@5.4.1)
+ unhead: 1.11.11
+ unimport: 3.13.1(rollup@4.24.4)(webpack-sources@3.2.3)
+ unplugin: 1.15.0(webpack-sources@3.2.3)
+ unplugin-vue-router: 0.10.8(rollup@4.24.4)(vue-router@4.4.5(vue@3.5.12(typescript@5.6.3)))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
+ unstorage: 1.13.1(ioredis@5.4.1)
untyped: 1.5.1
- vue: 3.5.10(typescript@5.6.3)
+ vue: 3.5.12(typescript@5.6.3)
vue-bundle-renderer: 2.1.1
vue-devtools-stub: 0.1.0
- vue-router: 4.4.5(vue@3.5.10(typescript@5.6.3))
+ vue-router: 4.4.5(vue@3.5.12(typescript@5.6.3))
optionalDependencies:
- '@parcel/watcher': 2.4.1
+ '@parcel/watcher': 2.5.0
'@types/node': 22.9.0
transitivePeerDependencies:
- '@azure/app-configuration'
@@ -23289,6 +20992,7 @@ snapshots:
- '@azure/storage-blob'
- '@biomejs/biome'
- '@capacitor/preferences'
+ - '@electric-sql/pglite'
- '@libsql/client'
- '@netlify/blobs'
- '@planetscale/database'
@@ -23305,6 +21009,7 @@ snapshots:
- lightningcss
- magicast
- meow
+ - mysql2
- optionator
- rollup
- sass
@@ -23315,7 +21020,6 @@ snapshots:
- supports-color
- terser
- typescript
- - uWebSockets.js
- utf-8-validate
- vite
- vls
@@ -23324,13 +21028,13 @@ snapshots:
- webpack-sources
- xml2js
- nwsapi@2.2.10: {}
+ nwsapi@2.2.13: {}
- nx@20.0.8(@swc/core@1.7.26(@swc/helpers@0.5.5)):
+ nx@20.0.10:
dependencies:
'@napi-rs/wasm-runtime': 0.2.4
'@yarnpkg/lockfile': 1.1.0
- '@yarnpkg/parsers': 3.0.0-rc.46
+ '@yarnpkg/parsers': 3.0.2
'@zkochan/js-yaml': 0.0.7
axios: 1.7.7
chalk: 4.1.0
@@ -23361,17 +21065,16 @@ snapshots:
yargs: 17.7.2
yargs-parser: 21.1.1
optionalDependencies:
- '@nx/nx-darwin-arm64': 20.0.8
- '@nx/nx-darwin-x64': 20.0.8
- '@nx/nx-freebsd-x64': 20.0.8
- '@nx/nx-linux-arm-gnueabihf': 20.0.8
- '@nx/nx-linux-arm64-gnu': 20.0.8
- '@nx/nx-linux-arm64-musl': 20.0.8
- '@nx/nx-linux-x64-gnu': 20.0.8
- '@nx/nx-linux-x64-musl': 20.0.8
- '@nx/nx-win32-arm64-msvc': 20.0.8
- '@nx/nx-win32-x64-msvc': 20.0.8
- '@swc/core': 1.7.26(@swc/helpers@0.5.5)
+ '@nx/nx-darwin-arm64': 20.0.10
+ '@nx/nx-darwin-x64': 20.0.10
+ '@nx/nx-freebsd-x64': 20.0.10
+ '@nx/nx-linux-arm-gnueabihf': 20.0.10
+ '@nx/nx-linux-arm64-gnu': 20.0.10
+ '@nx/nx-linux-arm64-musl': 20.0.10
+ '@nx/nx-linux-x64-gnu': 20.0.10
+ '@nx/nx-linux-x64-musl': 20.0.10
+ '@nx/nx-win32-arm64-msvc': 20.0.10
+ '@nx/nx-win32-x64-msvc': 20.0.10
transitivePeerDependencies:
- debug
@@ -23381,7 +21084,7 @@ snapshots:
consola: 3.2.3
execa: 8.0.1
pathe: 1.1.2
- pkg-types: 1.2.0
+ pkg-types: 1.2.1
ufo: 1.5.4
object-assign@4.1.1: {}
@@ -23396,11 +21099,6 @@ snapshots:
object-inspect@1.13.2: {}
- object-is@1.1.6:
- dependencies:
- call-bind: 1.0.7
- define-properties: 1.2.1
-
object-keys@1.1.1: {}
object-visit@1.0.1:
@@ -23492,14 +21190,17 @@ snapshots:
is-docker: 2.2.1
is-wsl: 2.2.0
- openapi-typescript@6.7.6:
+ openapi-typescript@7.4.2(encoding@0.1.13)(typescript@5.6.3):
dependencies:
+ '@redocly/openapi-core': 1.25.11(encoding@0.1.13)(supports-color@9.4.0)
ansi-colors: 4.1.3
- fast-glob: 3.3.2
- js-yaml: 4.1.0
+ change-case: 5.4.4
+ parse-json: 8.1.0
supports-color: 9.4.0
- undici: 5.28.4
+ typescript: 5.6.3
yargs-parser: 21.1.1
+ transitivePeerDependencies:
+ - encoding
optionator@0.9.4:
dependencies:
@@ -23537,8 +21238,6 @@ snapshots:
os-tmpdir@1.0.2: {}
- p-cancelable@3.0.0: {}
-
p-each-series@2.2.0: {}
p-finally@1.0.0: {}
@@ -23557,7 +21256,7 @@ snapshots:
p-limit@4.0.0:
dependencies:
- yocto-queue: 1.0.0
+ yocto-queue: 1.1.1
p-locate@2.0.0:
dependencies:
@@ -23616,7 +21315,7 @@ snapshots:
dependencies:
p-finally: 1.0.0
- p-timeout@6.1.2: {}
+ p-timeout@6.1.3: {}
p-try@1.0.0: {}
@@ -23629,11 +21328,11 @@ snapshots:
pac-proxy-agent@7.0.2:
dependencies:
'@tootallnate/quickjs-emscripten': 0.23.0
- agent-base: 7.1.1
- debug: 4.3.7
+ agent-base: 7.1.1(supports-color@9.4.0)
+ debug: 4.3.7(supports-color@9.4.0)
get-uri: 6.0.3
http-proxy-agent: 7.0.2
- https-proxy-agent: 7.0.5
+ https-proxy-agent: 7.0.5(supports-color@9.4.0)
pac-resolver: 7.0.1
socks-proxy-agent: 8.0.4
transitivePeerDependencies:
@@ -23646,12 +21345,12 @@ snapshots:
package-json-from-dist@1.0.1: {}
- package-json@8.1.1:
+ package-json@10.0.1:
dependencies:
- got: 12.6.1
+ ky: 1.7.2
registry-auth-token: 5.0.2
registry-url: 6.0.1
- semver: 7.6.2
+ semver: 7.6.3
package-manager-detector@0.2.2: {}
@@ -23702,14 +21401,14 @@ snapshots:
parse-json@5.2.0:
dependencies:
- '@babel/code-frame': 7.24.7
+ '@babel/code-frame': 7.26.2
error-ex: 1.3.2
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
parse-json@7.1.1:
dependencies:
- '@babel/code-frame': 7.24.7
+ '@babel/code-frame': 7.26.2
error-ex: 1.3.2
json-parse-even-better-errors: 3.0.2
lines-and-columns: 2.0.4
@@ -23717,9 +21416,9 @@ snapshots:
parse-json@8.1.0:
dependencies:
- '@babel/code-frame': 7.24.7
+ '@babel/code-frame': 7.26.2
index-to-position: 0.1.2
- type-fest: 4.20.1
+ type-fest: 4.26.1
parse-ms@4.0.0: {}
@@ -23743,14 +21442,14 @@ snapshots:
dependencies:
parse5: 6.0.1
- parse5-htmlparser2-tree-adapter@7.0.0:
+ parse5-htmlparser2-tree-adapter@7.1.0:
dependencies:
domhandler: 5.0.3
- parse5: 7.1.2
+ parse5: 7.2.1
parse5-parser-stream@7.1.2:
dependencies:
- parse5: 7.1.2
+ parse5: 7.2.1
parse5-sax-parser@7.0.0:
dependencies:
@@ -23760,10 +21459,6 @@ snapshots:
parse5@6.0.1: {}
- parse5@7.1.2:
- dependencies:
- entities: 4.5.0
-
parse5@7.2.1:
dependencies:
entities: 4.5.0
@@ -23797,7 +21492,7 @@ snapshots:
path-scurry@2.0.0:
dependencies:
- lru-cache: 11.0.1
+ lru-cache: 11.0.2
minipass: 7.1.2
path-to-regexp@0.1.10: {}
@@ -23818,8 +21513,6 @@ snapshots:
perfect-debounce@1.0.0: {}
- picocolors@1.1.0: {}
-
picocolors@1.1.1: {}
picomatch@2.3.1: {}
@@ -23856,12 +21549,14 @@ snapshots:
dependencies:
find-up-simple: 1.0.0
- pkg-types@1.2.0:
+ pkg-types@1.2.1:
dependencies:
- confbox: 0.1.7
- mlly: 1.7.1
+ confbox: 0.1.8
+ mlly: 1.7.2
pathe: 1.1.2
+ pluralize@8.0.0: {}
+
posix-character-classes@0.1.1: {}
possible-typed-array-names@1.0.0: {}
@@ -23874,7 +21569,7 @@ snapshots:
postcss-colormin@7.0.2(postcss@8.4.47):
dependencies:
- browserslist: 4.24.0
+ browserslist: 4.24.2
caniuse-api: 3.0.0
colord: 2.9.3
postcss: 8.4.47
@@ -23882,7 +21577,7 @@ snapshots:
postcss-convert-values@7.0.4(postcss@8.4.47):
dependencies:
- browserslist: 4.24.0
+ browserslist: 4.24.2
postcss: 8.4.47
postcss-value-parser: 4.2.0
@@ -23915,31 +21610,21 @@ snapshots:
camelcase-css: 2.0.1
postcss: 8.4.47
- postcss-load-config@4.0.2(postcss@8.4.47)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@20.17.6)(typescript@5.6.2)):
- dependencies:
- lilconfig: 3.1.2
- yaml: 2.5.1
- optionalDependencies:
- postcss: 8.4.47
- ts-node: 10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@20.17.6)(typescript@5.6.2)
-
- postcss-load-config@4.0.2(postcss@8.4.47)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.1.6)):
+ postcss-load-config@4.0.2(postcss@8.4.47):
dependencies:
lilconfig: 3.1.2
- yaml: 2.5.1
+ yaml: 2.6.0
optionalDependencies:
postcss: 8.4.47
- ts-node: 10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.1.6)
- optional: true
- postcss-loader@8.1.1(postcss@8.4.35)(typescript@5.1.6)(webpack@5.94.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.20.1)):
+ postcss-loader@8.1.1(postcss@8.4.35)(typescript@5.1.6)(webpack@5.94.0(esbuild@0.20.1)):
dependencies:
cosmiconfig: 9.0.0(typescript@5.1.6)
jiti: 1.21.6
postcss: 8.4.35
- semver: 7.6.0
+ semver: 7.6.3
optionalDependencies:
- webpack: 5.94.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.20.1)
+ webpack: 5.94.0(esbuild@0.20.1)
transitivePeerDependencies:
- typescript
@@ -23953,7 +21638,7 @@ snapshots:
postcss-merge-rules@7.0.4(postcss@8.4.47):
dependencies:
- browserslist: 4.24.0
+ browserslist: 4.24.2
caniuse-api: 3.0.0
cssnano-utils: 5.0.0(postcss@8.4.47)
postcss: 8.4.47
@@ -23973,7 +21658,7 @@ snapshots:
postcss-minify-params@7.0.2(postcss@8.4.47):
dependencies:
- browserslist: 4.24.0
+ browserslist: 4.24.2
cssnano-utils: 5.0.0(postcss@8.4.47)
postcss: 8.4.47
postcss-value-parser: 4.2.0
@@ -23984,26 +21669,26 @@ snapshots:
postcss: 8.4.47
postcss-selector-parser: 6.1.2
- postcss-modules-extract-imports@3.1.0(postcss@8.4.35):
+ postcss-modules-extract-imports@3.1.0(postcss@8.4.47):
dependencies:
- postcss: 8.4.35
+ postcss: 8.4.47
- postcss-modules-local-by-default@4.0.5(postcss@8.4.35):
+ postcss-modules-local-by-default@4.0.5(postcss@8.4.47):
dependencies:
- icss-utils: 5.1.0(postcss@8.4.35)
- postcss: 8.4.35
+ icss-utils: 5.1.0(postcss@8.4.47)
+ postcss: 8.4.47
postcss-selector-parser: 6.1.2
postcss-value-parser: 4.2.0
- postcss-modules-scope@3.2.0(postcss@8.4.35):
+ postcss-modules-scope@3.2.0(postcss@8.4.47):
dependencies:
- postcss: 8.4.35
+ postcss: 8.4.47
postcss-selector-parser: 6.1.2
- postcss-modules-values@4.0.0(postcss@8.4.35):
+ postcss-modules-values@4.0.0(postcss@8.4.47):
dependencies:
- icss-utils: 5.1.0(postcss@8.4.35)
- postcss: 8.4.35
+ icss-utils: 5.1.0(postcss@8.4.47)
+ postcss: 8.4.47
postcss-nested@6.2.0(postcss@8.4.47):
dependencies:
@@ -24041,7 +21726,7 @@ snapshots:
postcss-normalize-unicode@7.0.2(postcss@8.4.47):
dependencies:
- browserslist: 4.24.0
+ browserslist: 4.24.2
postcss: 8.4.47
postcss-value-parser: 4.2.0
@@ -24063,7 +21748,7 @@ snapshots:
postcss-reduce-initial@7.0.2(postcss@8.4.47):
dependencies:
- browserslist: 4.24.0
+ browserslist: 4.24.2
caniuse-api: 3.0.0
postcss: 8.4.47
@@ -24093,7 +21778,7 @@ snapshots:
postcss@8.4.31:
dependencies:
nanoid: 3.3.7
- picocolors: 1.1.0
+ picocolors: 1.1.1
source-map-js: 1.2.1
postcss@8.4.35:
@@ -24105,12 +21790,12 @@ snapshots:
postcss@8.4.47:
dependencies:
nanoid: 3.3.7
- picocolors: 1.1.0
+ picocolors: 1.1.1
source-map-js: 1.2.1
prelude-ls@1.2.1: {}
- prettier@2.8.8: {}
+ prettier@3.3.3: {}
pretty-bytes@6.1.1: {}
@@ -24121,12 +21806,6 @@ snapshots:
ansi-styles: 4.3.0
react-is: 17.0.2
- pretty-format@27.5.1:
- dependencies:
- ansi-regex: 5.0.1
- ansi-styles: 5.2.0
- react-is: 17.0.2
-
pretty-format@29.7.0:
dependencies:
'@jest/schemas': 29.6.3
@@ -24184,10 +21863,10 @@ snapshots:
proxy-agent@6.4.0:
dependencies:
- agent-base: 7.1.1
- debug: 4.3.7
+ agent-base: 7.1.1(supports-color@9.4.0)
+ debug: 4.3.7(supports-color@9.4.0)
http-proxy-agent: 7.0.2
- https-proxy-agent: 7.0.5
+ https-proxy-agent: 7.0.5(supports-color@9.4.0)
lru-cache: 7.18.3
pac-proxy-agent: 7.0.2
proxy-from-env: 1.1.0
@@ -24229,8 +21908,6 @@ snapshots:
quick-lru@4.0.1: {}
- quick-lru@5.1.1: {}
-
radix3@1.1.2: {}
randombytes@2.1.0:
@@ -24293,13 +21970,13 @@ snapshots:
dependencies:
find-up-simple: 1.0.0
read-pkg: 9.0.1
- type-fest: 4.20.1
+ type-fest: 4.26.1
read-pkg-up@10.1.0:
dependencies:
find-up: 6.3.0
read-pkg: 8.1.0
- type-fest: 4.20.1
+ type-fest: 4.26.1
read-pkg-up@3.0.0:
dependencies:
@@ -24330,14 +22007,14 @@ snapshots:
'@types/normalize-package-data': 2.4.4
normalize-package-data: 6.0.2
parse-json: 7.1.1
- type-fest: 4.20.1
+ type-fest: 4.26.1
read-pkg@9.0.1:
dependencies:
'@types/normalize-package-data': 2.4.4
normalize-package-data: 6.0.2
parse-json: 8.1.0
- type-fest: 4.20.1
+ type-fest: 4.26.1
unicorn-magic: 0.1.0
read@3.0.1:
@@ -24442,7 +22119,7 @@ snapshots:
registry-auth-token@5.0.2:
dependencies:
- '@pnpm/npm-conf': 2.2.2
+ '@pnpm/npm-conf': 2.3.1
registry-url@6.0.1:
dependencies:
@@ -24468,8 +22145,6 @@ snapshots:
requires-port@1.0.0: {}
- resolve-alpn@1.2.1: {}
-
resolve-cwd@3.0.0:
dependencies:
resolve-from: 5.0.0
@@ -24485,13 +22160,11 @@ snapshots:
adjust-sourcemap-loader: 4.0.0
convert-source-map: 1.9.0
loader-utils: 2.0.4
- postcss: 8.4.35
+ postcss: 8.4.47
source-map: 0.6.1
resolve-url@0.2.1: {}
- resolve.exports@1.1.1: {}
-
resolve.exports@2.0.2: {}
resolve@1.19.0:
@@ -24501,7 +22174,7 @@ snapshots:
resolve@1.22.8:
dependencies:
- is-core-module: 2.14.0
+ is-core-module: 2.15.1
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
@@ -24511,10 +22184,6 @@ snapshots:
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
- responselike@3.0.0:
- dependencies:
- lowercase-keys: 3.0.0
-
resq@1.11.0:
dependencies:
fast-deep-equal: 2.0.1
@@ -24558,43 +22227,19 @@ snapshots:
glob: 11.0.0
package-json-from-dist: 1.0.1
- rollup-plugin-visualizer@5.12.0(rollup@4.24.2):
+ rollup-plugin-visualizer@5.12.0(rollup@4.24.4):
dependencies:
open: 8.4.2
picomatch: 2.3.1
source-map: 0.7.4
yargs: 17.7.2
optionalDependencies:
- rollup: 4.24.2
+ rollup: 4.24.4
rollup@2.79.2:
optionalDependencies:
fsevents: 2.3.3
- rollup@4.24.2:
- dependencies:
- '@types/estree': 1.0.6
- optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.24.2
- '@rollup/rollup-android-arm64': 4.24.2
- '@rollup/rollup-darwin-arm64': 4.24.2
- '@rollup/rollup-darwin-x64': 4.24.2
- '@rollup/rollup-freebsd-arm64': 4.24.2
- '@rollup/rollup-freebsd-x64': 4.24.2
- '@rollup/rollup-linux-arm-gnueabihf': 4.24.2
- '@rollup/rollup-linux-arm-musleabihf': 4.24.2
- '@rollup/rollup-linux-arm64-gnu': 4.24.2
- '@rollup/rollup-linux-arm64-musl': 4.24.2
- '@rollup/rollup-linux-powerpc64le-gnu': 4.24.2
- '@rollup/rollup-linux-riscv64-gnu': 4.24.2
- '@rollup/rollup-linux-s390x-gnu': 4.24.2
- '@rollup/rollup-linux-x64-gnu': 4.24.2
- '@rollup/rollup-linux-x64-musl': 4.24.2
- '@rollup/rollup-win32-arm64-msvc': 4.24.2
- '@rollup/rollup-win32-ia32-msvc': 4.24.2
- '@rollup/rollup-win32-x64-msvc': 4.24.2
- fsevents: 2.3.3
-
rollup@4.24.4:
dependencies:
'@types/estree': 1.0.6
@@ -24637,7 +22282,7 @@ snapshots:
rxjs@7.8.1:
dependencies:
- tslib: 2.6.3
+ tslib: 2.8.1
safaridriver@0.1.2: {}
@@ -24678,12 +22323,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
- sass-loader@14.1.1(sass@1.71.1)(webpack@5.94.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.20.1)):
+ sass-loader@14.1.1(sass@1.71.1)(webpack@5.94.0(esbuild@0.20.1)):
dependencies:
neo-async: 2.6.2
optionalDependencies:
sass: 1.71.1
- webpack: 5.94.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.20.1)
+ webpack: 5.94.0(esbuild@0.20.1)
sass@1.71.1:
dependencies:
@@ -24730,10 +22375,6 @@ snapshots:
'@types/node-forge': 1.3.11
node-forge: 1.3.1
- semver-diff@4.0.0:
- dependencies:
- semver: 7.6.2
-
semver@5.7.2: {}
semver@6.3.1: {}
@@ -24746,8 +22387,6 @@ snapshots:
dependencies:
lru-cache: 6.0.0
- semver@7.6.2: {}
-
semver@7.6.3: {}
send@0.19.0:
@@ -24881,7 +22520,7 @@ snapshots:
dependencies:
'@kwsites/file-exists': 1.1.1
'@kwsites/promise-deferred': 1.1.1
- debug: 4.3.7
+ debug: 4.3.7(supports-color@9.4.0)
transitivePeerDependencies:
- supports-color
@@ -24937,15 +22576,15 @@ snapshots:
socks-proxy-agent@6.2.1:
dependencies:
agent-base: 6.0.2
- debug: 4.3.7
+ debug: 4.3.7(supports-color@9.4.0)
socks: 2.8.3
transitivePeerDependencies:
- supports-color
socks-proxy-agent@8.0.4:
dependencies:
- agent-base: 7.1.1
- debug: 4.3.7
+ agent-base: 7.1.1(supports-color@9.4.0)
+ debug: 4.3.7(supports-color@9.4.0)
socks: 2.8.3
transitivePeerDependencies:
- supports-color
@@ -24961,11 +22600,11 @@ snapshots:
source-map-js@1.2.1: {}
- source-map-loader@5.0.0(webpack@5.94.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.20.1)):
+ source-map-loader@5.0.0(webpack@5.94.0(esbuild@0.20.1)):
dependencies:
iconv-lite: 0.6.3
source-map-js: 1.2.1
- webpack: 5.94.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.20.1)
+ webpack: 5.94.0(esbuild@0.20.1)
source-map-resolve@0.5.3:
dependencies:
@@ -24993,7 +22632,7 @@ snapshots:
source-map@0.7.4: {}
- spacetrim@0.11.39: {}
+ spacetrim@0.11.59: {}
spdx-correct@3.2.0:
dependencies:
@@ -25011,7 +22650,7 @@ snapshots:
spdy-transport@3.0.0:
dependencies:
- debug: 4.3.7
+ debug: 4.3.7(supports-color@9.4.0)
detect-node: 2.1.0
hpack.js: 2.1.6
obuf: 1.1.2
@@ -25022,7 +22661,7 @@ snapshots:
spdy@4.0.2:
dependencies:
- debug: 4.3.7
+ debug: 4.3.7(supports-color@9.4.0)
handle-thing: 2.0.1
http-deceiver: 1.2.7
select-hose: 2.0.0
@@ -25077,10 +22716,6 @@ snapshots:
std-env@3.7.0: {}
- stop-iteration-iterator@1.0.0:
- dependencies:
- internal-slot: 1.0.7
-
stream-buffers@3.0.3: {}
streamsearch@1.1.0: {}
@@ -25089,7 +22724,7 @@ snapshots:
dependencies:
fast-fifo: 1.3.2
queue-tick: 1.0.1
- text-decoder: 1.2.0
+ text-decoder: 1.2.1
optionalDependencies:
bare-events: 2.5.0
@@ -25123,8 +22758,15 @@ snapshots:
emoji-regex: 9.2.2
strip-ansi: 7.1.0
- string.prototype.includes@2.0.0:
+ string-width@7.2.0:
+ dependencies:
+ emoji-regex: 10.4.0
+ get-east-asian-width: 1.3.0
+ strip-ansi: 7.1.0
+
+ string.prototype.includes@2.0.1:
dependencies:
+ call-bind: 1.0.7
define-properties: 1.2.1
es-abstract: 1.23.3
@@ -25193,7 +22835,7 @@ snapshots:
strip-ansi@7.1.0:
dependencies:
- ansi-regex: 6.0.1
+ ansi-regex: 6.1.0
strip-bom@3.0.0: {}
@@ -25227,34 +22869,26 @@ snapshots:
minimist: 1.2.8
through: 2.3.8
- style-object-to-css-string@1.1.3: {}
+ stubborn-fs@1.2.5: {}
- style-to-js@1.1.12:
- dependencies:
- style-to-object: 1.0.6
+ style-object-to-css-string@1.1.3: {}
style-to-js@1.1.16:
dependencies:
style-to-object: 1.0.8
- style-to-object@1.0.6:
- dependencies:
- inline-style-parser: 0.2.3
-
style-to-object@1.0.8:
dependencies:
inline-style-parser: 0.2.4
- styled-jsx@5.1.1(@babel/core@7.25.7)(react@18.3.1):
+ styled-jsx@5.1.1(react@18.3.1):
dependencies:
client-only: 0.0.1
react: 18.3.1
- optionalDependencies:
- '@babel/core': 7.25.7
stylehacks@7.0.4(postcss@8.4.47):
dependencies:
- browserslist: 4.24.0
+ browserslist: 4.24.2
postcss: 8.4.47
postcss-selector-parser: 6.1.2
@@ -25305,7 +22939,7 @@ snapshots:
css-tree: 2.3.1
css-what: 6.1.0
csso: 5.0.5
- picocolors: 1.1.0
+ picocolors: 1.1.1
symbol-observable@1.2.0: {}
@@ -25315,34 +22949,7 @@ snapshots:
system-architecture@0.1.0: {}
- tailwindcss@3.4.13(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@20.17.6)(typescript@5.6.2)):
- dependencies:
- '@alloc/quick-lru': 5.2.0
- arg: 5.0.2
- chokidar: 3.6.0
- didyoumean: 1.2.2
- dlv: 1.1.3
- fast-glob: 3.3.2
- glob-parent: 6.0.2
- is-glob: 4.0.3
- jiti: 1.21.6
- lilconfig: 2.1.0
- micromatch: 4.0.7
- normalize-path: 3.0.0
- object-hash: 3.0.0
- picocolors: 1.1.0
- postcss: 8.4.47
- postcss-import: 15.1.0(postcss@8.4.47)
- postcss-js: 4.0.1(postcss@8.4.47)
- postcss-load-config: 4.0.2(postcss@8.4.47)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@20.17.6)(typescript@5.6.2))
- postcss-nested: 6.2.0(postcss@8.4.47)
- postcss-selector-parser: 6.1.2
- resolve: 1.22.8
- sucrase: 3.35.0
- transitivePeerDependencies:
- - ts-node
-
- tailwindcss@3.4.13(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.1.6)):
+ tailwindcss@3.4.14:
dependencies:
'@alloc/quick-lru': 5.2.0
arg: 5.0.2
@@ -25354,21 +22961,20 @@ snapshots:
is-glob: 4.0.3
jiti: 1.21.6
lilconfig: 2.1.0
- micromatch: 4.0.7
+ micromatch: 4.0.8
normalize-path: 3.0.0
object-hash: 3.0.0
- picocolors: 1.1.0
+ picocolors: 1.1.1
postcss: 8.4.47
postcss-import: 15.1.0(postcss@8.4.47)
postcss-js: 4.0.1(postcss@8.4.47)
- postcss-load-config: 4.0.2(postcss@8.4.47)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.1.6))
+ postcss-load-config: 4.0.2(postcss@8.4.47)
postcss-nested: 6.2.0(postcss@8.4.47)
postcss-selector-parser: 6.1.2
resolve: 1.22.8
sucrase: 3.35.0
transitivePeerDependencies:
- ts-node
- optional: true
tapable@2.2.1: {}
@@ -25415,22 +23021,28 @@ snapshots:
ansi-escapes: 5.0.0
supports-hyperlinks: 2.3.0
- terser-webpack-plugin@5.3.10(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.20.1)(webpack@5.94.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.20.1)):
+ terser-webpack-plugin@5.3.10(esbuild@0.20.1)(webpack@5.94.0(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.94.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.20.1)
+ terser: 5.36.0
+ webpack: 5.94.0(esbuild@0.20.1)
optionalDependencies:
- '@swc/core': 1.7.26(@swc/helpers@0.5.5)
esbuild: 0.20.1
terser@5.29.1:
dependencies:
'@jridgewell/source-map': 0.3.6
- acorn: 8.12.1
+ acorn: 8.14.0
+ commander: 2.20.3
+ source-map-support: 0.5.21
+
+ terser@5.36.0:
+ dependencies:
+ '@jridgewell/source-map': 0.3.6
+ acorn: 8.14.0
commander: 2.20.3
source-map-support: 0.5.21
@@ -25440,9 +23052,7 @@ snapshots:
glob: 7.2.3
minimatch: 3.1.2
- text-decoder@1.2.0:
- dependencies:
- b4a: 1.6.7
+ text-decoder@1.2.1: {}
text-extensions@1.9.0: {}
@@ -25458,8 +23068,6 @@ snapshots:
throat@5.0.0: {}
- throat@6.0.2: {}
-
through2@2.0.5:
dependencies:
readable-stream: 2.3.8
@@ -25475,9 +23083,9 @@ snapshots:
tinyexec@0.3.1: {}
- tinyglobby@0.2.6:
+ tinyglobby@0.2.10:
dependencies:
- fdir: 6.4.0(picomatch@4.0.2)
+ fdir: 6.4.2(picomatch@4.0.2)
picomatch: 4.0.2
tinypool@1.0.1: {}
@@ -25494,8 +23102,6 @@ snapshots:
tmpl@1.0.5: {}
- to-fast-properties@2.0.0: {}
-
to-object-path@0.3.0:
dependencies:
kind-of: 3.2.2
@@ -25543,11 +23149,7 @@ snapshots:
trim-newlines@3.0.1: {}
- ts-api-utils@1.3.0(typescript@5.6.2):
- dependencies:
- typescript: 5.6.2
-
- ts-api-utils@1.3.0(typescript@5.6.3):
+ ts-api-utils@1.4.0(typescript@5.6.3):
dependencies:
typescript: 5.6.3
@@ -25555,27 +23157,27 @@ snapshots:
ts-interface-checker@0.1.13: {}
- ts-jest@26.5.6(jest@29.7.0(@types/node@22.9.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.6.3)))(typescript@5.6.3):
+ ts-jest@26.5.6(jest@29.7.0(@types/node@22.9.0)(node-notifier@8.0.2))(typescript@5.6.3):
dependencies:
bs-logger: 0.2.6
buffer-from: 1.1.2
fast-json-stable-stringify: 2.1.0
- jest: 29.7.0(@types/node@22.9.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.6.3))
+ jest: 29.7.0(@types/node@22.9.0)(node-notifier@8.0.2)
jest-util: 26.6.2
json5: 2.2.3
lodash: 4.17.21
make-error: 1.3.6
mkdirp: 1.0.4
- semver: 7.6.2
+ semver: 7.6.3
typescript: 5.6.3
yargs-parser: 20.2.9
- ts-jest@29.2.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.7))(esbuild@0.21.5)(jest@29.7.0(@types/node@22.9.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.1.6)))(typescript@5.1.6):
+ ts-jest@29.2.5(@babel/core@7.26.0)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.0))(esbuild@0.24.0)(jest@29.7.0(@types/node@20.17.6)(node-notifier@8.0.2))(typescript@5.1.6):
dependencies:
bs-logger: 0.2.6
ejs: 3.1.10
fast-json-stable-stringify: 2.1.0
- jest: 29.7.0(@types/node@22.9.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.1.6))
+ jest: 29.7.0(@types/node@20.17.6)(node-notifier@8.0.2)
jest-util: 29.7.0
json5: 2.2.3
lodash.memoize: 4.1.2
@@ -25584,100 +23186,16 @@ snapshots:
typescript: 5.1.6
yargs-parser: 21.1.1
optionalDependencies:
- '@babel/core': 7.24.7
+ '@babel/core': 7.26.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- babel-jest: 29.7.0(@babel/core@7.24.7)
- esbuild: 0.21.5
+ babel-jest: 29.7.0(@babel/core@7.26.0)
+ esbuild: 0.24.0
ts-morph@22.0.0:
dependencies:
'@ts-morph/common': 0.23.0
- code-block-writer: 13.0.1
-
- ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@20.17.6)(typescript@5.6.2):
- dependencies:
- '@cspotcode/source-map-support': 0.8.1
- '@tsconfig/node10': 1.0.11
- '@tsconfig/node12': 1.0.11
- '@tsconfig/node14': 1.0.3
- '@tsconfig/node16': 1.0.4
- '@types/node': 20.17.6
- acorn: 8.14.0
- acorn-walk: 8.3.4
- arg: 4.1.3
- create-require: 1.1.1
- diff: 4.0.2
- make-error: 1.3.6
- typescript: 5.6.2
- v8-compile-cache-lib: 3.0.1
- yn: 3.1.1
- optionalDependencies:
- '@swc/core': 1.7.26(@swc/helpers@0.5.5)
- optional: true
-
- ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@20.17.6)(typescript@5.6.3):
- dependencies:
- '@cspotcode/source-map-support': 0.8.1
- '@tsconfig/node10': 1.0.11
- '@tsconfig/node12': 1.0.11
- '@tsconfig/node14': 1.0.3
- '@tsconfig/node16': 1.0.4
- '@types/node': 20.17.6
- acorn: 8.14.0
- acorn-walk: 8.3.4
- arg: 4.1.3
- create-require: 1.1.1
- diff: 4.0.2
- make-error: 1.3.6
- typescript: 5.6.3
- v8-compile-cache-lib: 3.0.1
- yn: 3.1.1
- optionalDependencies:
- '@swc/core': 1.7.26(@swc/helpers@0.5.5)
- optional: true
-
- ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.1.6):
- dependencies:
- '@cspotcode/source-map-support': 0.8.1
- '@tsconfig/node10': 1.0.11
- '@tsconfig/node12': 1.0.11
- '@tsconfig/node14': 1.0.3
- '@tsconfig/node16': 1.0.4
- '@types/node': 22.9.0
- acorn: 8.14.0
- acorn-walk: 8.3.4
- arg: 4.1.3
- create-require: 1.1.1
- diff: 4.0.2
- make-error: 1.3.6
- typescript: 5.1.6
- v8-compile-cache-lib: 3.0.1
- yn: 3.1.1
- optionalDependencies:
- '@swc/core': 1.7.26(@swc/helpers@0.5.5)
- optional: true
-
- ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.9.0)(typescript@5.6.3):
- dependencies:
- '@cspotcode/source-map-support': 0.8.1
- '@tsconfig/node10': 1.0.11
- '@tsconfig/node12': 1.0.11
- '@tsconfig/node14': 1.0.3
- '@tsconfig/node16': 1.0.4
- '@types/node': 22.9.0
- acorn: 8.14.0
- acorn-walk: 8.3.4
- arg: 4.1.3
- create-require: 1.1.1
- diff: 4.0.2
- make-error: 1.3.6
- typescript: 5.6.3
- v8-compile-cache-lib: 3.0.1
- yn: 3.1.1
- optionalDependencies:
- '@swc/core': 1.7.26(@swc/helpers@0.5.5)
- optional: true
+ code-block-writer: 13.0.3
tsconfig-paths@3.15.0:
dependencies:
@@ -25696,11 +23214,9 @@ snapshots:
tslib@2.6.2: {}
- tslib@2.6.3: {}
-
tslib@2.8.1: {}
- tsx@4.19.1:
+ tsx@4.19.2:
dependencies:
esbuild: 0.23.1
get-tsconfig: 4.8.1
@@ -25710,7 +23226,7 @@ snapshots:
tuf-js@2.2.1:
dependencies:
'@tufjs/models': 2.0.1
- debug: 4.3.7
+ debug: 4.3.7(supports-color@9.4.0)
make-fetch-happen: 13.0.1
transitivePeerDependencies:
- supports-color
@@ -25735,13 +23251,13 @@ snapshots:
type-fest@1.4.0: {}
- type-fest@2.13.0: {}
-
type-fest@2.19.0: {}
type-fest@3.13.1: {}
- type-fest@4.20.1: {}
+ type-fest@4.26.0: {}
+
+ type-fest@4.26.1: {}
type-is@1.6.18:
dependencies:
@@ -25792,8 +23308,6 @@ snapshots:
typescript@5.4.2: {}
- typescript@5.6.2: {}
-
typescript@5.6.3: {}
ufo@1.5.4: {}
@@ -25819,10 +23333,10 @@ snapshots:
unctx@2.3.1(webpack-sources@3.2.3):
dependencies:
- acorn: 8.12.1
+ acorn: 8.14.0
estree-walker: 3.0.3
- magic-string: 0.30.11
- unplugin: 1.14.1(webpack-sources@3.2.3)
+ magic-string: 0.30.12
+ unplugin: 1.15.0(webpack-sources@3.2.3)
transitivePeerDependencies:
- webpack-sources
@@ -25830,13 +23344,9 @@ snapshots:
undici-types@6.19.8: {}
- undici@5.28.4:
- dependencies:
- '@fastify/busboy': 2.1.1
-
undici@6.11.1: {}
- undici@6.20.0: {}
+ undici@6.20.1: {}
unenv@1.10.0:
dependencies:
@@ -25846,11 +23356,11 @@ snapshots:
node-fetch-native: 1.6.4
pathe: 1.1.2
- unhead@1.11.7:
+ unhead@1.11.11:
dependencies:
- '@unhead/dom': 1.11.7
- '@unhead/schema': 1.11.7
- '@unhead/shared': 1.11.7
+ '@unhead/dom': 1.11.11
+ '@unhead/schema': 1.11.11
+ '@unhead/shared': 1.11.11
hookable: 5.5.3
unicode-canonical-property-names-ecmascript@2.0.1: {}
@@ -25868,21 +23378,21 @@ snapshots:
unicorn-magic@0.3.0: {}
- unimport@3.13.1(rollup@4.24.2)(webpack-sources@3.2.3):
+ unimport@3.13.1(rollup@4.24.4)(webpack-sources@3.2.3):
dependencies:
- '@rollup/pluginutils': 5.1.3(rollup@4.24.2)
- acorn: 8.12.1
+ '@rollup/pluginutils': 5.1.3(rollup@4.24.4)
+ acorn: 8.14.0
escape-string-regexp: 5.0.0
estree-walker: 3.0.3
fast-glob: 3.3.2
local-pkg: 0.5.0
- magic-string: 0.30.11
- mlly: 1.7.1
+ magic-string: 0.30.12
+ mlly: 1.7.2
pathe: 1.1.2
- pkg-types: 1.2.0
+ pkg-types: 1.2.1
scule: 1.3.0
strip-literal: 2.1.0
- unplugin: 1.14.1(webpack-sources@3.2.3)
+ unplugin: 1.15.0(webpack-sources@3.2.3)
transitivePeerDependencies:
- rollup
- webpack-sources
@@ -25910,10 +23420,6 @@ snapshots:
dependencies:
imurmurhash: 0.1.4
- unique-string@3.0.0:
- dependencies:
- crypto-random-string: 4.0.0
-
universal-user-agent@6.0.1: {}
universalify@0.1.2: {}
@@ -25924,32 +23430,32 @@ snapshots:
unpipe@1.0.0: {}
- unplugin-vue-router@0.10.8(rollup@4.24.2)(vue-router@4.4.5(vue@3.5.10(typescript@5.6.3)))(vue@3.5.10(typescript@5.6.3))(webpack-sources@3.2.3):
+ unplugin-vue-router@0.10.8(rollup@4.24.4)(vue-router@4.4.5(vue@3.5.12(typescript@5.6.3)))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3):
dependencies:
- '@babel/types': 7.25.4
- '@rollup/pluginutils': 5.1.3(rollup@4.24.2)
- '@vue-macros/common': 1.14.0(rollup@4.24.2)(vue@3.5.10(typescript@5.6.3))
+ '@babel/types': 7.26.0
+ '@rollup/pluginutils': 5.1.3(rollup@4.24.4)
+ '@vue-macros/common': 1.15.0(rollup@4.24.4)(vue@3.5.12(typescript@5.6.3))
ast-walker-scope: 0.6.2
chokidar: 3.6.0
fast-glob: 3.3.2
json5: 2.2.3
local-pkg: 0.5.0
- magic-string: 0.30.11
- mlly: 1.7.1
+ magic-string: 0.30.12
+ mlly: 1.7.2
pathe: 1.1.2
scule: 1.3.0
- unplugin: 1.14.1(webpack-sources@3.2.3)
- yaml: 2.5.1
+ unplugin: 1.15.0(webpack-sources@3.2.3)
+ yaml: 2.6.0
optionalDependencies:
- vue-router: 4.4.5(vue@3.5.10(typescript@5.6.3))
+ vue-router: 4.4.5(vue@3.5.12(typescript@5.6.3))
transitivePeerDependencies:
- rollup
- vue
- webpack-sources
- unplugin@1.14.1(webpack-sources@3.2.3):
+ unplugin@1.15.0(webpack-sources@3.2.3):
dependencies:
- acorn: 8.12.1
+ acorn: 8.14.0
webpack-virtual-modules: 0.6.2
optionalDependencies:
webpack-sources: 3.2.3
@@ -25959,15 +23465,15 @@ snapshots:
has-value: 0.3.1
isobject: 3.0.1
- unstorage@1.12.0(ioredis@5.4.1):
+ unstorage@1.13.1(ioredis@5.4.1):
dependencies:
anymatch: 3.1.3
chokidar: 3.6.0
+ citty: 0.1.6
destr: 2.0.3
h3: 1.13.0
listhen: 1.9.0
lru-cache: 10.4.3
- mri: 1.2.0
node-fetch-native: 1.6.4
ofetch: 1.4.1
ufo: 1.5.4
@@ -25982,11 +23488,11 @@ snapshots:
untyped@1.5.1:
dependencies:
- '@babel/core': 7.25.7
- '@babel/standalone': 7.25.7
- '@babel/types': 7.25.7
+ '@babel/core': 7.26.0
+ '@babel/standalone': 7.26.2
+ '@babel/types': 7.26.0
defu: 6.1.4
- jiti: 2.3.3
+ jiti: 2.4.0
mri: 1.2.0
scule: 1.3.0
transitivePeerDependencies:
@@ -25996,44 +23502,38 @@ snapshots:
dependencies:
knitwork: 1.1.0
magic-string: 0.30.12
- mlly: 1.7.1
+ mlly: 1.7.2
pathe: 1.1.2
- pkg-types: 1.2.0
- unplugin: 1.14.1(webpack-sources@3.2.3)
+ pkg-types: 1.2.1
+ unplugin: 1.15.0(webpack-sources@3.2.3)
transitivePeerDependencies:
- webpack-sources
upath@2.0.1: {}
- update-browserslist-db@1.1.0(browserslist@4.24.0):
- dependencies:
- browserslist: 4.24.0
- escalade: 3.1.2
- picocolors: 1.1.0
-
update-browserslist-db@1.1.1(browserslist@4.24.2):
dependencies:
browserslist: 4.24.2
escalade: 3.2.0
picocolors: 1.1.1
- update-notifier@7.0.0:
+ update-notifier@7.3.1:
dependencies:
- boxen: 7.1.1
+ boxen: 8.0.1
chalk: 5.3.0
- configstore: 6.0.0
- import-lazy: 4.0.0
- is-in-ci: 0.1.0
- is-installed-globally: 0.4.0
+ configstore: 7.0.0
+ is-in-ci: 1.0.0
+ is-installed-globally: 1.0.0
is-npm: 6.0.0
- latest-version: 7.0.0
+ latest-version: 9.0.0
pupa: 3.1.0
- semver: 7.6.2
- semver-diff: 4.0.0
+ semver: 7.6.3
xdg-basedir: 5.1.0
uqr@0.1.2: {}
+ uri-js-replace@1.0.1: {}
+
uri-js@4.4.1:
dependencies:
punycode: 2.3.1
@@ -26051,7 +23551,7 @@ snapshots:
use@3.1.1: {}
- userhome@1.0.0: {}
+ userhome@1.0.1: {}
util-deprecate@1.0.2: {}
@@ -26061,21 +23561,12 @@ snapshots:
uuid@8.3.2: {}
- v8-compile-cache-lib@3.0.1:
- optional: true
-
v8-to-istanbul@7.1.2:
dependencies:
'@types/istanbul-lib-coverage': 2.0.6
convert-source-map: 1.9.0
source-map: 0.7.4
- v8-to-istanbul@8.1.1:
- dependencies:
- '@types/istanbul-lib-coverage': 2.0.6
- convert-source-map: 1.9.0
- source-map: 0.7.4
-
v8-to-istanbul@9.3.0:
dependencies:
'@jridgewell/trace-mapping': 0.3.25
@@ -26093,16 +23584,33 @@ snapshots:
vary@1.1.2: {}
- vite-hot-client@0.2.3(vite@5.4.8(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.29.1)):
+ vite-hot-client@0.2.3(vite@5.4.10(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.36.0)):
+ dependencies:
+ vite: 5.4.10(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.36.0)
+
+ vite-node@2.1.4(@types/node@18.19.64)(less@4.2.0)(sass@1.71.1)(terser@5.36.0):
dependencies:
- vite: 5.4.8(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.29.1)
+ cac: 6.7.14
+ debug: 4.3.7(supports-color@9.4.0)
+ pathe: 1.1.2
+ vite: 5.4.10(@types/node@18.19.64)(less@4.2.0)(sass@1.71.1)(terser@5.36.0)
+ transitivePeerDependencies:
+ - '@types/node'
+ - less
+ - lightningcss
+ - sass
+ - sass-embedded
+ - stylus
+ - sugarss
+ - supports-color
+ - terser
- vite-node@2.1.2(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.29.1):
+ vite-node@2.1.4(@types/node@20.17.6)(less@4.2.0)(sass@1.71.1)(terser@5.36.0):
dependencies:
cac: 6.7.14
- debug: 4.3.7
+ debug: 4.3.7(supports-color@9.4.0)
pathe: 1.1.2
- vite: 5.4.8(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.29.1)
+ vite: 5.4.10(@types/node@20.17.6)(less@4.2.0)(sass@1.71.1)(terser@5.36.0)
transitivePeerDependencies:
- '@types/node'
- less
@@ -26114,12 +23622,12 @@ snapshots:
- supports-color
- terser
- vite-node@2.1.3(@types/node@20.17.6)(less@4.2.0)(sass@1.71.1)(terser@5.29.1):
+ vite-node@2.1.4(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.36.0):
dependencies:
cac: 6.7.14
- debug: 4.3.7
+ debug: 4.3.7(supports-color@9.4.0)
pathe: 1.1.2
- vite: 5.4.8(@types/node@20.17.6)(less@4.2.0)(sass@1.71.1)(terser@5.29.1)
+ vite: 5.4.10(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.36.0)
transitivePeerDependencies:
- '@types/node'
- less
@@ -26131,9 +23639,9 @@ snapshots:
- supports-color
- terser
- vite-plugin-checker@0.8.0(eslint@8.57.1)(optionator@0.9.4)(typescript@5.6.3)(vite@5.4.8(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.29.1))(vue-tsc@2.1.6(typescript@5.6.3)):
+ vite-plugin-checker@0.8.0(eslint@8.57.1)(optionator@0.9.4)(typescript@5.6.3)(vite@5.4.10(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.36.0))(vue-tsc@2.1.10(typescript@5.6.3)):
dependencies:
- '@babel/code-frame': 7.24.7
+ '@babel/code-frame': 7.26.2
ansi-escapes: 4.3.2
chalk: 4.1.2
chokidar: 3.6.0
@@ -26143,7 +23651,7 @@ snapshots:
npm-run-path: 4.0.1
strip-ansi: 6.0.1
tiny-invariant: 1.3.3
- vite: 5.4.8(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.29.1)
+ vite: 5.4.10(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.36.0)
vscode-languageclient: 7.0.0
vscode-languageserver: 7.0.0
vscode-languageserver-textdocument: 1.0.12
@@ -26152,117 +23660,154 @@ snapshots:
eslint: 8.57.1
optionator: 0.9.4
typescript: 5.6.3
- vue-tsc: 2.1.6(typescript@5.6.3)
+ vue-tsc: 2.1.10(typescript@5.6.3)
- vite-plugin-dts@3.9.1(@types/node@20.17.6)(rollup@4.24.4)(typescript@5.6.2)(vite@5.4.2(@types/node@20.17.6)(less@4.2.0)(sass@1.71.1)(terser@5.29.1)):
+ vite-plugin-dts@3.9.1(@types/node@20.17.6)(rollup@4.24.4)(typescript@5.6.3)(vite@5.4.10(@types/node@20.17.6)(less@4.2.0)(sass@1.71.1)(terser@5.36.0)):
dependencies:
'@microsoft/api-extractor': 7.43.0(@types/node@20.17.6)
- '@rollup/pluginutils': 5.1.0(rollup@4.24.4)
- '@vue/language-core': 1.8.27(typescript@5.6.2)
- debug: 4.3.6(supports-color@8.1.1)
+ '@rollup/pluginutils': 5.1.3(rollup@4.24.4)
+ '@vue/language-core': 1.8.27(typescript@5.6.3)
+ debug: 4.3.7(supports-color@9.4.0)
kolorist: 1.8.0
- magic-string: 0.30.11
- typescript: 5.6.2
- vue-tsc: 1.8.27(typescript@5.6.2)
+ magic-string: 0.30.12
+ typescript: 5.6.3
+ vue-tsc: 1.8.27(typescript@5.6.3)
optionalDependencies:
- vite: 5.4.2(@types/node@20.17.6)(less@4.2.0)(sass@1.71.1)(terser@5.29.1)
+ vite: 5.4.10(@types/node@20.17.6)(less@4.2.0)(sass@1.71.1)(terser@5.36.0)
transitivePeerDependencies:
- '@types/node'
- rollup
- supports-color
- vite-plugin-inspect@0.8.7(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.24.2)(webpack-sources@3.2.3))(rollup@4.24.2)(vite@5.4.8(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.29.1)):
+ vite-plugin-inspect@0.8.7(@nuxt/kit@3.14.159(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3))(rollup@4.24.4)(vite@5.4.10(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.36.0)):
dependencies:
'@antfu/utils': 0.7.10
- '@rollup/pluginutils': 5.1.3(rollup@4.24.2)
- debug: 4.3.7
+ '@rollup/pluginutils': 5.1.3(rollup@4.24.4)
+ debug: 4.3.7(supports-color@9.4.0)
error-stack-parser-es: 0.1.5
fs-extra: 11.2.0
open: 10.1.0
perfect-debounce: 1.0.0
- picocolors: 1.1.0
+ picocolors: 1.1.1
sirv: 2.0.4
- vite: 5.4.8(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.29.1)
+ vite: 5.4.10(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.36.0)
optionalDependencies:
- '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.2)(webpack-sources@3.2.3)
+ '@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3)
transitivePeerDependencies:
- rollup
- supports-color
- vite-plugin-vue-inspector@5.1.3(vite@5.4.8(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.29.1)):
+ vite-plugin-vue-inspector@5.1.3(vite@5.4.10(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.36.0)):
dependencies:
- '@babel/core': 7.24.7
- '@babel/plugin-proposal-decorators': 7.25.7(@babel/core@7.24.7)
- '@babel/plugin-syntax-import-attributes': 7.25.7(@babel/core@7.24.7)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.7)
- '@babel/plugin-transform-typescript': 7.25.7(@babel/core@7.24.7)
- '@vue/babel-plugin-jsx': 1.2.5(@babel/core@7.24.7)
- '@vue/compiler-dom': 3.5.10
+ '@babel/core': 7.26.0
+ '@babel/plugin-proposal-decorators': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.0)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.26.0)
+ '@babel/plugin-transform-typescript': 7.25.9(@babel/core@7.26.0)
+ '@vue/babel-plugin-jsx': 1.2.5(@babel/core@7.26.0)
+ '@vue/compiler-dom': 3.5.12
kolorist: 1.8.0
magic-string: 0.30.12
- vite: 5.4.8(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.29.1)
+ vite: 5.4.10(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.36.0)
transitivePeerDependencies:
- supports-color
- vite@5.1.8(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.29.1):
+ vite@5.1.8(@types/node@20.17.6)(less@4.2.0)(sass@1.71.1)(terser@5.29.1):
dependencies:
esbuild: 0.19.12
- postcss: 8.4.35
+ postcss: 8.4.47
rollup: 4.24.4
optionalDependencies:
- '@types/node': 22.9.0
+ '@types/node': 20.17.6
fsevents: 2.3.3
less: 4.2.0
sass: 1.71.1
terser: 5.29.1
- vite@5.4.2(@types/node@20.17.6)(less@4.2.0)(sass@1.71.1)(terser@5.29.1):
+ vite@5.4.10(@types/node@18.19.64)(less@4.2.0)(sass@1.71.1)(terser@5.36.0):
dependencies:
esbuild: 0.21.5
postcss: 8.4.47
- rollup: 4.24.2
+ rollup: 4.24.4
optionalDependencies:
- '@types/node': 20.17.6
+ '@types/node': 18.19.64
fsevents: 2.3.3
less: 4.2.0
sass: 1.71.1
- terser: 5.29.1
+ terser: 5.36.0
- vite@5.4.8(@types/node@20.17.6)(less@4.2.0)(sass@1.71.1)(terser@5.29.1):
+ vite@5.4.10(@types/node@20.17.6)(less@4.2.0)(sass@1.71.1)(terser@5.36.0):
dependencies:
esbuild: 0.21.5
postcss: 8.4.47
- rollup: 4.24.2
+ rollup: 4.24.4
optionalDependencies:
'@types/node': 20.17.6
fsevents: 2.3.3
less: 4.2.0
sass: 1.71.1
- terser: 5.29.1
+ terser: 5.36.0
- vite@5.4.8(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.29.1):
+ vite@5.4.10(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.36.0):
dependencies:
esbuild: 0.21.5
postcss: 8.4.47
- rollup: 4.24.2
+ rollup: 4.24.4
optionalDependencies:
'@types/node': 22.9.0
fsevents: 2.3.3
less: 4.2.0
sass: 1.71.1
- terser: 5.29.1
+ terser: 5.36.0
+
+ vitest@2.1.4(@types/node@18.19.64)(jsdom@20.0.3)(less@4.2.0)(sass@1.71.1)(terser@5.36.0):
+ dependencies:
+ '@vitest/expect': 2.1.4
+ '@vitest/mocker': 2.1.4(vite@5.4.10(@types/node@18.19.64)(less@4.2.0)(sass@1.71.1)(terser@5.36.0))
+ '@vitest/pretty-format': 2.1.4
+ '@vitest/runner': 2.1.4
+ '@vitest/snapshot': 2.1.4
+ '@vitest/spy': 2.1.4
+ '@vitest/utils': 2.1.4
+ chai: 5.1.2
+ debug: 4.3.7(supports-color@9.4.0)
+ expect-type: 1.1.0
+ magic-string: 0.30.12
+ pathe: 1.1.2
+ std-env: 3.7.0
+ tinybench: 2.9.0
+ tinyexec: 0.3.1
+ tinypool: 1.0.1
+ tinyrainbow: 1.2.0
+ vite: 5.4.10(@types/node@18.19.64)(less@4.2.0)(sass@1.71.1)(terser@5.36.0)
+ vite-node: 2.1.4(@types/node@18.19.64)(less@4.2.0)(sass@1.71.1)(terser@5.36.0)
+ why-is-node-running: 2.3.0
+ optionalDependencies:
+ '@types/node': 18.19.64
+ jsdom: 20.0.3
+ transitivePeerDependencies:
+ - less
+ - lightningcss
+ - msw
+ - sass
+ - sass-embedded
+ - stylus
+ - sugarss
+ - supports-color
+ - terser
- vitest@2.1.3(@types/node@20.17.6)(jsdom@20.0.3)(less@4.2.0)(sass@1.71.1)(terser@5.29.1):
+ vitest@2.1.4(@types/node@20.17.6)(jsdom@20.0.3)(less@4.2.0)(sass@1.71.1)(terser@5.36.0):
dependencies:
- '@vitest/expect': 2.1.3
- '@vitest/mocker': 2.1.3(@vitest/spy@2.1.3)(vite@5.4.8(@types/node@20.17.6)(less@4.2.0)(sass@1.71.1)(terser@5.29.1))
+ '@vitest/expect': 2.1.4
+ '@vitest/mocker': 2.1.4(vite@5.4.10(@types/node@20.17.6)(less@4.2.0)(sass@1.71.1)(terser@5.36.0))
'@vitest/pretty-format': 2.1.4
- '@vitest/runner': 2.1.3
- '@vitest/snapshot': 2.1.3
- '@vitest/spy': 2.1.3
- '@vitest/utils': 2.1.3
+ '@vitest/runner': 2.1.4
+ '@vitest/snapshot': 2.1.4
+ '@vitest/spy': 2.1.4
+ '@vitest/utils': 2.1.4
chai: 5.1.2
- debug: 4.3.7
+ debug: 4.3.7(supports-color@9.4.0)
+ expect-type: 1.1.0
magic-string: 0.30.12
pathe: 1.1.2
std-env: 3.7.0
@@ -26270,8 +23815,8 @@ snapshots:
tinyexec: 0.3.1
tinypool: 1.0.1
tinyrainbow: 1.2.0
- vite: 5.4.8(@types/node@20.17.6)(less@4.2.0)(sass@1.71.1)(terser@5.29.1)
- vite-node: 2.1.3(@types/node@20.17.6)(less@4.2.0)(sass@1.71.1)(terser@5.29.1)
+ vite: 5.4.10(@types/node@20.17.6)(less@4.2.0)(sass@1.71.1)(terser@5.36.0)
+ vite-node: 2.1.4(@types/node@20.17.6)(less@4.2.0)(sass@1.71.1)(terser@5.36.0)
why-is-node-running: 2.3.0
optionalDependencies:
'@types/node': 20.17.6
@@ -26316,37 +23861,37 @@ snapshots:
vue-devtools-stub@0.1.0: {}
- vue-router@4.4.5(vue@3.5.10(typescript@5.6.3)):
+ vue-router@4.4.5(vue@3.5.12(typescript@5.6.3)):
dependencies:
'@vue/devtools-api': 6.6.4
- vue: 3.5.10(typescript@5.6.3)
+ vue: 3.5.12(typescript@5.6.3)
vue-template-compiler@2.7.16:
dependencies:
de-indent: 1.0.2
he: 1.2.0
- vue-tsc@1.8.27(typescript@5.6.2):
+ vue-tsc@1.8.27(typescript@5.6.3):
dependencies:
'@volar/typescript': 1.11.1
- '@vue/language-core': 1.8.27(typescript@5.6.2)
+ '@vue/language-core': 1.8.27(typescript@5.6.3)
semver: 7.6.3
- typescript: 5.6.2
+ typescript: 5.6.3
- vue-tsc@2.1.6(typescript@5.6.3):
+ vue-tsc@2.1.10(typescript@5.6.3):
dependencies:
- '@volar/typescript': 2.4.6
- '@vue/language-core': 2.1.6(typescript@5.6.3)
+ '@volar/typescript': 2.4.9
+ '@vue/language-core': 2.1.10(typescript@5.6.3)
semver: 7.6.3
typescript: 5.6.3
- vue@3.5.10(typescript@5.6.3):
+ vue@3.5.12(typescript@5.6.3):
dependencies:
- '@vue/compiler-dom': 3.5.10
- '@vue/compiler-sfc': 3.5.10
- '@vue/runtime-dom': 3.5.10
- '@vue/server-renderer': 3.5.10(vue@3.5.10(typescript@5.6.3))
- '@vue/shared': 3.5.10
+ '@vue/compiler-dom': 3.5.12
+ '@vue/compiler-sfc': 3.5.12
+ '@vue/runtime-dom': 3.5.12
+ '@vue/server-renderer': 3.5.12(vue@3.5.12(typescript@5.6.3))
+ '@vue/shared': 3.5.12
optionalDependencies:
typescript: 5.6.3
@@ -26366,7 +23911,7 @@ snapshots:
dependencies:
chalk: 4.1.2
commander: 9.5.0
- debug: 4.3.7
+ debug: 4.3.7(supports-color@9.4.0)
transitivePeerDependencies:
- supports-color
@@ -26394,19 +23939,19 @@ snapshots:
dependencies:
defaults: 1.0.4
- wdio-next-service@0.1.0(@wdio/types@9.1.3)(next@14.2.15(@babel/core@7.25.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.71.1))(webdriverio@9.1.5):
+ wdio-next-service@0.1.0(@wdio/types@9.2.2)(next@14.2.15(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.71.1))(webdriverio@9.2.8):
dependencies:
'@wdio/logger': 8.38.0
get-port: 7.1.0
- next: 14.2.15(@babel/core@7.25.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.71.1)
- webdriverio: 9.1.5
+ next: 14.2.15(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.71.1)
+ webdriverio: 9.2.8
optionalDependencies:
- '@wdio/types': 9.1.3
+ '@wdio/types': 9.2.2
- wdio-nuxt-service@0.2.0(@wdio/types@8.40.6)(magicast@0.3.5)(rollup@4.24.2)(webdriverio@9.1.4)(webpack-sources@3.2.3):
+ wdio-nuxt-service@0.2.0(magicast@0.3.5)(rollup@4.24.4)(webdriverio@9.2.8)(webpack-sources@3.2.3):
dependencies:
- '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.2)(webpack-sources@3.2.3)
- '@nuxt/schema': 3.13.2(rollup@4.24.2)(webpack-sources@3.2.3)
+ '@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3)
+ '@nuxt/schema': 3.14.159(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3)
'@wdio/logger': 8.38.0
c12: 1.11.2(magicast@0.3.5)
chokidar: 3.6.0
@@ -26416,23 +23961,21 @@ snapshots:
pathe: 1.1.2
perfect-debounce: 1.0.0
ufo: 1.5.4
- webdriverio: 9.1.4
- optionalDependencies:
- '@wdio/types': 8.40.6
+ webdriverio: 9.2.8
transitivePeerDependencies:
- magicast
- rollup
- supports-color
- webpack-sources
- wdio-vite-service@1.0.9(@types/node@22.9.0)(@wdio/types@9.1.3)(less@4.2.0)(sass@1.71.1)(terser@5.29.1)(webdriverio@9.1.5):
+ wdio-vite-service@1.0.9(@types/node@22.9.0)(@wdio/types@9.2.2)(less@4.2.0)(sass@1.71.1)(terser@5.36.0)(webdriverio@9.2.8):
dependencies:
'@wdio/logger': 9.1.3
get-port: 7.1.0
- vite: 5.4.8(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.29.1)
- webdriverio: 9.1.5
+ vite: 5.4.10(@types/node@22.9.0)(less@4.2.0)(sass@1.71.1)(terser@5.36.0)
+ webdriverio: 9.2.8
optionalDependencies:
- '@wdio/types': 9.1.3
+ '@wdio/types': 9.2.2
transitivePeerDependencies:
- '@types/node'
- less
@@ -26445,47 +23988,15 @@ snapshots:
web-streams-polyfill@3.3.3: {}
- webdriver@9.1.3:
- dependencies:
- '@types/node': 20.17.6
- '@types/ws': 8.5.12
- '@wdio/config': 9.1.3
- '@wdio/logger': 9.1.3
- '@wdio/protocols': 9.0.8
- '@wdio/types': 9.1.3
- '@wdio/utils': 9.1.3
- deepmerge-ts: 7.1.3
- ws: 8.18.0
- transitivePeerDependencies:
- - bufferutil
- - supports-color
- - utf-8-validate
-
- webdriver@9.1.5:
- dependencies:
- '@types/node': 20.14.12
- '@types/ws': 8.5.12
- '@wdio/config': 9.1.3
- '@wdio/logger': 9.1.3
- '@wdio/protocols': 9.0.8
- '@wdio/types': 9.1.3
- '@wdio/utils': 9.1.3
- deepmerge-ts: 7.1.3
- ws: 8.18.0
- transitivePeerDependencies:
- - bufferutil
- - supports-color
- - utf-8-validate
-
- webdriver@9.2.0:
+ webdriver@9.2.8:
dependencies:
'@types/node': 20.17.6
- '@types/ws': 8.5.12
- '@wdio/config': 9.1.3
+ '@types/ws': 8.5.13
+ '@wdio/config': 9.2.8
'@wdio/logger': 9.1.3
- '@wdio/protocols': 9.2.0
- '@wdio/types': 9.1.3
- '@wdio/utils': 9.1.3
+ '@wdio/protocols': 9.2.2
+ '@wdio/types': 9.2.2
+ '@wdio/utils': 9.2.8
deepmerge-ts: 7.1.3
ws: 8.18.0
transitivePeerDependencies:
@@ -26493,84 +24004,16 @@ snapshots:
- supports-color
- utf-8-validate
- webdriverio@9.1.4:
- dependencies:
- '@types/node': 20.17.6
- '@types/sinonjs__fake-timers': 8.1.5
- '@wdio/config': 9.1.3
- '@wdio/logger': 9.1.3
- '@wdio/protocols': 9.0.8
- '@wdio/repl': 9.0.8
- '@wdio/types': 9.1.3
- '@wdio/utils': 9.1.3
- archiver: 7.0.1
- aria-query: 5.3.2
- cheerio: 1.0.0
- css-shorthand-properties: 1.1.2
- css-value: 0.0.1
- grapheme-splitter: 1.0.4
- htmlfy: 0.3.2
- import-meta-resolve: 4.1.0
- is-plain-obj: 4.1.0
- jszip: 3.10.1
- lodash.clonedeep: 4.5.0
- lodash.zip: 4.2.0
- minimatch: 9.0.5
- query-selector-shadow-dom: 1.0.1
- resq: 1.11.0
- rgb2hex: 0.2.5
- serialize-error: 11.0.3
- urlpattern-polyfill: 10.0.0
- webdriver: 9.1.3
- transitivePeerDependencies:
- - bufferutil
- - supports-color
- - utf-8-validate
-
- webdriverio@9.1.5:
- dependencies:
- '@types/node': 20.14.12
- '@types/sinonjs__fake-timers': 8.1.5
- '@wdio/config': 9.1.3
- '@wdio/logger': 9.1.3
- '@wdio/protocols': 9.0.8
- '@wdio/repl': 9.0.8
- '@wdio/types': 9.1.3
- '@wdio/utils': 9.1.3
- archiver: 7.0.1
- aria-query: 5.3.2
- cheerio: 1.0.0
- css-shorthand-properties: 1.1.2
- css-value: 0.0.1
- grapheme-splitter: 1.0.4
- htmlfy: 0.3.2
- import-meta-resolve: 4.1.0
- is-plain-obj: 4.1.0
- jszip: 3.10.1
- lodash.clonedeep: 4.5.0
- lodash.zip: 4.2.0
- minimatch: 9.0.5
- query-selector-shadow-dom: 1.0.1
- resq: 1.11.0
- rgb2hex: 0.2.5
- serialize-error: 11.0.3
- urlpattern-polyfill: 10.0.0
- webdriver: 9.1.5
- transitivePeerDependencies:
- - bufferutil
- - supports-color
- - utf-8-validate
-
- webdriverio@9.2.1:
+ webdriverio@9.2.8:
dependencies:
'@types/node': 20.17.6
'@types/sinonjs__fake-timers': 8.1.5
- '@wdio/config': 9.1.3
+ '@wdio/config': 9.2.8
'@wdio/logger': 9.1.3
- '@wdio/protocols': 9.2.0
+ '@wdio/protocols': 9.2.2
'@wdio/repl': 9.0.8
- '@wdio/types': 9.1.3
- '@wdio/utils': 9.1.3
+ '@wdio/types': 9.2.2
+ '@wdio/utils': 9.2.8
archiver: 7.0.1
aria-query: 5.3.2
cheerio: 1.0.0
@@ -26589,7 +24032,7 @@ snapshots:
rgb2hex: 0.2.5
serialize-error: 11.0.3
urlpattern-polyfill: 10.0.0
- webdriver: 9.2.0
+ webdriver: 9.2.8
transitivePeerDependencies:
- bufferutil
- supports-color
@@ -26603,16 +24046,16 @@ snapshots:
webidl-conversions@7.0.0: {}
- webpack-dev-middleware@5.3.4(webpack@5.94.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.20.1)):
+ webpack-dev-middleware@5.3.4(webpack@5.94.0(esbuild@0.20.1)):
dependencies:
colorette: 2.0.20
memfs: 3.5.3
mime-types: 2.1.35
range-parser: 1.2.1
schema-utils: 4.2.0
- webpack: 5.94.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.20.1)
+ webpack: 5.94.0(esbuild@0.20.1)
- webpack-dev-middleware@6.1.2(webpack@5.94.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.20.1)):
+ webpack-dev-middleware@6.1.2(webpack@5.94.0(esbuild@0.20.1)):
dependencies:
colorette: 2.0.20
memfs: 3.5.3
@@ -26620,9 +24063,9 @@ snapshots:
range-parser: 1.2.1
schema-utils: 4.2.0
optionalDependencies:
- webpack: 5.94.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.20.1)
+ webpack: 5.94.0(esbuild@0.20.1)
- webpack-dev-server@4.15.1(webpack@5.94.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.20.1)):
+ webpack-dev-server@4.15.1(webpack@5.94.0(esbuild@0.20.1)):
dependencies:
'@types/bonjour': 3.5.13
'@types/connect-history-api-fallback': 1.5.4
@@ -26641,7 +24084,7 @@ snapshots:
express: 4.21.1
graceful-fs: 4.2.11
html-entities: 2.5.2
- http-proxy-middleware: 2.0.6(@types/express@4.17.21)
+ http-proxy-middleware: 2.0.7(@types/express@4.17.21)
ipaddr.js: 2.2.0
launch-editor: 2.9.1
open: 8.4.2
@@ -26652,10 +24095,10 @@ snapshots:
serve-index: 1.9.1
sockjs: 0.3.24
spdy: 4.0.2
- webpack-dev-middleware: 5.3.4(webpack@5.94.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.20.1))
+ webpack-dev-middleware: 5.3.4(webpack@5.94.0(esbuild@0.20.1))
ws: 8.18.0
optionalDependencies:
- webpack: 5.94.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.20.1)
+ webpack: 5.94.0(esbuild@0.20.1)
transitivePeerDependencies:
- bufferutil
- debug
@@ -26670,19 +24113,19 @@ snapshots:
webpack-sources@3.2.3: {}
- webpack-subresource-integrity@5.1.0(webpack@5.94.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.20.1)):
+ webpack-subresource-integrity@5.1.0(webpack@5.94.0(esbuild@0.20.1)):
dependencies:
typed-assert: 1.0.9
- webpack: 5.94.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.20.1)
+ webpack: 5.94.0(esbuild@0.20.1)
webpack-virtual-modules@0.6.2: {}
- webpack@5.94.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.20.1):
+ webpack@5.94.0(esbuild@0.20.1):
dependencies:
'@types/estree': 1.0.6
- '@webassemblyjs/ast': 1.12.1
- '@webassemblyjs/wasm-edit': 1.12.1
- '@webassemblyjs/wasm-parser': 1.12.1
+ '@webassemblyjs/ast': 1.14.1
+ '@webassemblyjs/wasm-edit': 1.14.1
+ '@webassemblyjs/wasm-parser': 1.14.1
acorn: 8.14.0
acorn-import-attributes: 1.9.5(acorn@8.14.0)
browserslist: 4.24.2
@@ -26699,7 +24142,7 @@ snapshots:
neo-async: 2.6.2
schema-utils: 3.3.0
tapable: 2.2.1
- terser-webpack-plugin: 5.3.10(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.20.1)(webpack@5.94.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.20.1))
+ terser-webpack-plugin: 5.3.10(esbuild@0.20.1)(webpack@5.94.0(esbuild@0.20.1))
watchpack: 2.4.2
webpack-sources: 3.2.3
transitivePeerDependencies:
@@ -26749,6 +24192,8 @@ snapshots:
tr46: 2.1.0
webidl-conversions: 6.1.0
+ when-exit@2.1.3: {}
+
which-boxed-primitive@1.0.2:
dependencies:
is-bigint: 1.0.4
@@ -26814,9 +24259,9 @@ snapshots:
dependencies:
string-width: 4.2.3
- widest-line@4.0.1:
+ widest-line@5.0.0:
dependencies:
- string-width: 5.1.2
+ string-width: 7.2.0
wildcard@2.0.1: {}
@@ -26849,6 +24294,12 @@ snapshots:
string-width: 5.1.2
strip-ansi: 7.1.0
+ wrap-ansi@9.0.0:
+ dependencies:
+ ansi-styles: 6.2.1
+ string-width: 7.2.0
+ strip-ansi: 7.1.0
+
wrappy@1.0.2: {}
write-file-atomic@2.4.3:
@@ -26911,7 +24362,9 @@ snapshots:
yallist@4.0.0: {}
- yaml@2.5.1: {}
+ yaml-ast-parser@0.0.43: {}
+
+ yaml@2.6.0: {}
yargs-parser@18.1.3:
dependencies:
@@ -26946,7 +24399,7 @@ snapshots:
yargs@16.2.0:
dependencies:
cliui: 7.0.4
- escalade: 3.1.2
+ escalade: 3.2.0
get-caller-file: 2.0.5
require-directory: 2.1.1
string-width: 4.2.3
@@ -26956,7 +24409,7 @@ snapshots:
yargs@17.7.2:
dependencies:
cliui: 8.0.1
- escalade: 3.1.2
+ escalade: 3.2.0
get-caller-file: 2.0.5
require-directory: 2.1.1
string-width: 4.2.3
@@ -26968,12 +24421,9 @@ snapshots:
buffer-crc32: 0.2.13
fd-slicer: 1.1.0
- yn@3.1.1:
- optional: true
-
yocto-queue@0.1.0: {}
- yocto-queue@1.0.0: {}
+ yocto-queue@1.1.1: {}
yoctocolors-cjs@2.1.2: {}
@@ -26997,4 +24447,4 @@ snapshots:
zone.js@0.13.3:
dependencies:
- tslib: 2.6.3
+ tslib: 2.8.1