@vonage/vivid-test-utils 5.11.0 → 5.14.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (52) hide show
  1. package/dist/actions.d.ts +2 -2
  2. package/dist/base.d.ts +2 -2
  3. package/dist/components.generated.d.ts +9 -8
  4. package/dist/cypress.d.ts +1 -5
  5. package/dist/dom.d.ts +2 -2
  6. package/dist/drivers/cypress.d.ts +1 -5
  7. package/dist/drivers/dom.d.ts +1 -1
  8. package/dist/drivers/driver.d.ts +1 -3
  9. package/dist/drivers/playwright.d.ts +2 -2
  10. package/dist/playwright.d.ts +2 -2
  11. package/dist/refs.d.ts +1 -1
  12. package/dist/selectors.d.ts +1 -1
  13. package/dist/tests/cases/accordion/tests.d.ts +2 -0
  14. package/dist/tests/cases/alert/tests.d.ts +2 -0
  15. package/dist/tests/cases/banner/tests.d.ts +2 -0
  16. package/dist/tests/cases/button/tests.d.ts +2 -0
  17. package/dist/tests/cases/checkbox/tests.d.ts +2 -0
  18. package/dist/tests/cases/collections/tests.d.ts +2 -0
  19. package/dist/tests/cases/combobox/tests.d.ts +2 -0
  20. package/dist/tests/cases/date-picker/tests.d.ts +2 -0
  21. package/dist/tests/cases/date-range-picker/tests.d.ts +2 -0
  22. package/dist/tests/cases/date-time-picker/tests.d.ts +2 -0
  23. package/dist/tests/cases/dialog/tests.d.ts +2 -0
  24. package/dist/tests/cases/fab/tests.d.ts +2 -0
  25. package/dist/tests/cases/icon/tests.d.ts +2 -0
  26. package/dist/tests/cases/main.d.ts +1 -0
  27. package/dist/tests/cases/menu/tests.d.ts +2 -0
  28. package/dist/tests/cases/nav/tests.d.ts +2 -0
  29. package/dist/tests/cases/number-field/tests.d.ts +2 -0
  30. package/dist/tests/cases/pagination/tests.d.ts +2 -0
  31. package/dist/tests/cases/radio/tests.d.ts +2 -0
  32. package/dist/tests/cases/range-slider/tests.d.ts +2 -0
  33. package/dist/tests/cases/searchable-select/tests.d.ts +2 -0
  34. package/dist/tests/cases/select/tests.d.ts +2 -0
  35. package/dist/tests/cases/selectable-box/tests.d.ts +2 -0
  36. package/dist/tests/cases/slider/tests.d.ts +2 -0
  37. package/dist/tests/cases/split-button/tests.d.ts +2 -0
  38. package/dist/tests/cases/switch/tests.d.ts +2 -0
  39. package/dist/tests/cases/tabs/tests.d.ts +2 -0
  40. package/dist/tests/cases/tag/tests.d.ts +2 -0
  41. package/dist/tests/cases/text-area/tests.d.ts +2 -0
  42. package/dist/tests/cases/text-field/tests.d.ts +2 -0
  43. package/dist/tests/cases/time-picker/tests.d.ts +2 -0
  44. package/dist/tests/cases/toggletip/tests.d.ts +2 -0
  45. package/dist/tests/cases/tooltip/tests.d.ts +2 -0
  46. package/dist/tests/cypress.cy.d.ts +1 -0
  47. package/dist/tests/dom.spec.d.ts +0 -0
  48. package/dist/tests/playwright.pw.d.ts +1 -0
  49. package/dist/tests/test-case.d.ts +8 -0
  50. package/dist/tests/test-cases.d.ts +1 -0
  51. package/dist/utils/cssSelectors.spec.d.ts +1 -0
  52. package/package.json +5 -5
package/dist/actions.d.ts CHANGED
@@ -1,6 +1,6 @@
1
- import type { DriverT } from './drivers/driver';
1
+ import { DriverT } from './drivers/driver';
2
2
  import { BaseWrapper } from './base';
3
- import { type AccordionItemWrapper, type ButtonWrapper, type ComboboxWrapper, type DatePickerWrapper, type DateRangePickerWrapper, type DateTimePickerWrapper, type NavDisclosureWrapper, type PaginationWrapper, TagWrapper, type TimePickerWrapper } from './components.generated';
3
+ import { AccordionItemWrapper, ButtonWrapper, ComboboxWrapper, DatePickerWrapper, DateRangePickerWrapper, DateTimePickerWrapper, NavDisclosureWrapper, PaginationWrapper, TagWrapper, TimePickerWrapper } from './components.generated';
4
4
  export declare function click<D extends DriverT>(this: BaseWrapper<D>, locator: () => D['locator']): D['actionReturn'];
5
5
  export declare function fill<D extends DriverT>(this: BaseWrapper<D>, locator: () => D['locator'], text: string): D['actionReturn'];
6
6
  export declare function comboboxFill<D extends DriverT>(this: ComboboxWrapper<D>, text: string): D['actionReturn'];
package/dist/base.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import type { Driver, DriverT } from './drivers/driver';
1
+ import { Driver, DriverT } from './drivers/driver';
2
2
  export type Context<D extends DriverT> = {
3
3
  rootLocator: D['rootLocator'];
4
4
  driver: Driver<D>;
@@ -19,7 +19,7 @@ export declare abstract class BaseComponent<D extends DriverT, W extends BaseWra
19
19
  constructor(ctx: Context<D>);
20
20
  abstract componentInfo: ComponentInfo;
21
21
  abstract wrap(locator: D['locator']): W;
22
- all: any;
22
+ all: () => ComponentCollection<D, W>;
23
23
  }
24
24
  export type ComponentCollectionLocator<D extends DriverT, W extends BaseWrapper<D>> = ComponentCollection<D, W>;
25
25
  export declare class ComponentCollection<D extends DriverT, W extends BaseWrapper<D>> {
@@ -1,6 +1,6 @@
1
- import type { DriverT } from './drivers/driver';
2
- import { BaseComponent, BaseWrapper, ComponentCollectionExpectations, type ComponentCollectionLocator, type Context } from './base';
3
- import type { VwcAccordionElement, VwcAccordionItemElement, VwcActionGroupElement, VwcAlertElement, VwcAudioPlayerElement, VwcAvatarElement, VwcBadgeElement, VwcBannerElement, VwcBreadcrumbElement, VwcBreadcrumbItemElement, VwcButtonElement, VwcCalendarElement, VwcCalendarEventElement, VwcCardElement, VwcCheckboxElement, VwcColorPickerElement, VwcComboboxElement, VwcContextualHelpElement, VwcCountryElement, VwcDataGridElement, VwcDataGridCellElement, VwcDataGridRowElement, VwcDatePickerElement, VwcDateRangePickerElement, VwcDateTimePickerElement, VwcDialPadElement, VwcDialogElement, VwcDividerElement, VwcEmptyStateElement, VwcFabElement, VwcFilePickerElement, VwcHeaderElement, VwcIconElement, VwcLayoutElement, VwcMenuElement, VwcMenuItemElement, VwcNavElement, VwcNavDisclosureElement, VwcNavItemElement, VwcNoteElement, VwcNumberFieldElement, VwcOptionElement, VwcPaginationElement, VwcPopoverElement, VwcProgressElement, VwcProgressRingElement, VwcRadioElement, VwcRadioGroupElement, VwcRangeSliderElement, VwcRichTextEditorElement, VwcRichTextViewElement, VwcSearchableSelectElement, VwcSelectElement, VwcSelectableBoxElement, VwcSideDrawerElement, VwcSimpleColorPickerElement, VwcSliderElement, VwcSplitButtonElement, VwcStatusElement, VwcSwitchElement, VwcTabElement, VwcTabPanelElement, VwcTableElement, VwcTableBodyElement, VwcTableCellElement, VwcTableHeadElement, VwcTableHeaderCellElement, VwcTableRowElement, VwcTabsElement, VwcTagElement, VwcTagGroupElement, VwcTextAreaElement, VwcTextFieldElement, VwcTimePickerElement, VwcToggletipElement, VwcTooltipElement, VwcTreeItemElement, VwcTreeViewElement, VwcVideoPlayerElement } from "@vonage/vivid";
1
+ import { DriverT } from './drivers/driver';
2
+ import { BaseComponent, BaseWrapper, ComponentCollectionExpectations, ComponentCollectionLocator, Context } from './base';
3
+ import { VwcAccordionElement, VwcAccordionItemElement, VwcActionGroupElement, VwcAlertElement, VwcAudioPlayerElement, VwcAvatarElement, VwcBadgeElement, VwcBannerElement, VwcBreadcrumbElement, VwcBreadcrumbItemElement, VwcButtonElement, VwcCalendarElement, VwcCalendarEventElement, VwcCardElement, VwcCheckboxElement, VwcColorPickerElement, VwcComboboxElement, VwcContextualHelpElement, VwcCountryElement, VwcDataGridElement, VwcDataGridCellElement, VwcDataGridRowElement, VwcDatePickerElement, VwcDateRangePickerElement, VwcDateTimePickerElement, VwcDialPadElement, VwcDialogElement, VwcDividerElement, VwcEmptyStateElement, VwcFabElement, VwcFilePickerElement, VwcHeaderElement, VwcIconElement, VwcLayoutElement, VwcMenuElement, VwcMenuItemElement, VwcNavElement, VwcNavDisclosureElement, VwcNavItemElement, VwcNoteElement, VwcNumberFieldElement, VwcOptionElement, VwcPaginationElement, VwcPopoverElement, VwcProgressElement, VwcProgressRingElement, VwcRadioElement, VwcRadioGroupElement, VwcRangeSliderElement, VwcRichTextEditorElement, VwcRichTextViewElement, VwcSearchableSelectElement, VwcSelectElement, VwcSelectableBoxElement, VwcSideDrawerElement, VwcSimpleColorPickerElement, VwcSliderElement, VwcSplitButtonElement, VwcStatusElement, VwcSwitchElement, VwcTabElement, VwcTabPanelElement, VwcTableElement, VwcTableBodyElement, VwcTableCellElement, VwcTableHeadElement, VwcTableHeaderCellElement, VwcTableRowElement, VwcTabsElement, VwcTagElement, VwcTagGroupElement, VwcTextAreaElement, VwcTextFieldElement, VwcTimePickerElement, VwcToggletipElement, VwcTooltipElement, VwcTreeItemElement, VwcTreeViewElement, VwcVideoPlayerElement } from '@vonage/vivid';
4
4
  type IconId = string;
5
5
  type AccordionProps = {
6
6
  expandMode: 'single' | 'multi';
@@ -25,7 +25,7 @@ export declare class AccordionExpectations<D extends DriverT> {
25
25
  private readonly ctx;
26
26
  private readonly wrapper;
27
27
  constructor(ctx: Context<D>, wrapper: AccordionWrapper<D>);
28
- toHaveProp: <T extends "expandMode">(propName: T, value: AccordionProps[T]) => D["expectReturn"];
28
+ toHaveProp: <T extends keyof AccordionProps>(propName: T, value: AccordionProps[T]) => D["expectReturn"];
29
29
  }
30
30
  type AccordionItemProps = {
31
31
  appearance: 'ghost' | 'filled' | 'ghost-light';
@@ -653,7 +653,7 @@ export declare class ContextualHelpExpectations<D extends DriverT> {
653
653
  private readonly ctx;
654
654
  private readonly wrapper;
655
655
  constructor(ctx: Context<D>, wrapper: ContextualHelpWrapper<D>);
656
- toHaveProp: <T extends "placement">(propName: T, value: ContextualHelpProps[T]) => D["expectReturn"];
656
+ toHaveProp: <T extends keyof ContextualHelpProps>(propName: T, value: ContextualHelpProps[T]) => D["expectReturn"];
657
657
  }
658
658
  type CountryProps = {
659
659
  code: string;
@@ -1786,7 +1786,7 @@ export declare class RichTextEditorExpectations<D extends DriverT> {
1786
1786
  private readonly ctx;
1787
1787
  private readonly wrapper;
1788
1788
  constructor(ctx: Context<D>, wrapper: RichTextEditorWrapper<D>);
1789
- toHaveProp: <T extends "instance">(propName: T, value: RichTextEditorProps[T]) => D["expectReturn"];
1789
+ toHaveProp: <T extends keyof RichTextEditorProps>(propName: T, value: RichTextEditorProps[T]) => D["expectReturn"];
1790
1790
  }
1791
1791
  type RichTextViewProps = {
1792
1792
  view: any;
@@ -1811,7 +1811,7 @@ export declare class RichTextViewExpectations<D extends DriverT> {
1811
1811
  private readonly ctx;
1812
1812
  private readonly wrapper;
1813
1813
  constructor(ctx: Context<D>, wrapper: RichTextViewWrapper<D>);
1814
- toHaveProp: <T extends "view">(propName: T, value: RichTextViewProps[T]) => D["expectReturn"];
1814
+ toHaveProp: <T extends keyof RichTextViewProps>(propName: T, value: RichTextViewProps[T]) => D["expectReturn"];
1815
1815
  }
1816
1816
  type SearchableSelectProps = {
1817
1817
  appearance: 'fieldset' | 'ghost';
@@ -1874,6 +1874,7 @@ export declare class SearchableSelectExpectations<D extends DriverT> {
1874
1874
  }
1875
1875
  type SelectProps = {
1876
1876
  appearance: 'fieldset' | 'ghost';
1877
+ clearable: boolean;
1877
1878
  disabled: boolean;
1878
1879
  errorText: string;
1879
1880
  fixedDropdown: boolean;
@@ -2725,7 +2726,7 @@ export declare class TreeViewExpectations<D extends DriverT> {
2725
2726
  private readonly ctx;
2726
2727
  private readonly wrapper;
2727
2728
  constructor(ctx: Context<D>, wrapper: TreeViewWrapper<D>);
2728
- toHaveProp: <T extends "renderCollapsedNodes">(propName: T, value: TreeViewProps[T]) => D["expectReturn"];
2729
+ toHaveProp: <T extends keyof TreeViewProps>(propName: T, value: TreeViewProps[T]) => D["expectReturn"];
2729
2730
  }
2730
2731
  type VideoPlayerProps = {
2731
2732
  autoplay: boolean;
package/dist/cypress.d.ts CHANGED
@@ -1,7 +1,3 @@
1
- /// <reference types="cypress" />
2
- /// <reference types="cypress" />
3
- /// <reference types="cypress" />
4
- /// <reference types="cypress" />
5
- import type { CypressDriverT } from './drivers/driver';
1
+ import { CypressDriverT } from './drivers/driver';
6
2
  import { VividWrapper } from './components.generated';
7
3
  export declare const vividCypress: (cy: Cypress.cy) => VividWrapper<CypressDriverT>;
package/dist/dom.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import type { DOMDriverT } from './drivers/driver';
1
+ import { DOMDriverT } from './drivers/driver';
2
2
  import { VividWrapper } from './components.generated';
3
- import { type ExpectFn } from './drivers/dom';
3
+ import { ExpectFn } from './drivers/dom';
4
4
  export declare const vividDOM: (expect: ExpectFn, root: HTMLElement) => VividWrapper<DOMDriverT>;
@@ -1,7 +1,3 @@
1
- /// <reference types="cypress" />
2
- /// <reference types="cypress" />
3
- /// <reference types="cypress" />
4
- /// <reference types="cypress" />
5
- import type { CypressDriverT, Driver } from './driver';
1
+ import { CypressDriverT, Driver } from './driver';
6
2
  export declare const nextDOMUpdate: () => Promise<void>;
7
3
  export declare const createCypressDriver: (cy: Cypress.cy) => Driver<CypressDriverT>;
@@ -1,4 +1,4 @@
1
- import type { DOMDriverT, Driver } from './driver';
1
+ import { DOMDriverT, Driver } from './driver';
2
2
  export type ExpectFn = (subject: any) => {
3
3
  toEqual: (value: any) => void;
4
4
  };
@@ -1,6 +1,4 @@
1
- /// <reference types="cypress" />
2
- /// <reference types="cypress" />
3
- import type { Locator, Page } from '@playwright/test';
1
+ import { Locator, Page } from '@playwright/test';
4
2
  export type DOMDriverT = {
5
3
  rootLocator: HTMLElement;
6
4
  locator: HTMLElement;
@@ -1,3 +1,3 @@
1
- import type { expect as pwExpect } from '@playwright/test';
2
- import type { Driver, PlaywrightDriverT } from './driver';
1
+ import { expect as pwExpect } from '@playwright/test';
2
+ import { Driver, PlaywrightDriverT } from './driver';
3
3
  export declare const createPlaywrightDriver: (expect: typeof pwExpect) => Driver<PlaywrightDriverT>;
@@ -1,4 +1,4 @@
1
- import type { PlaywrightDriverT } from './drivers/driver';
2
- import type { expect as pwExpect, Page } from '@playwright/test';
1
+ import { PlaywrightDriverT } from './drivers/driver';
2
+ import { expect as pwExpect, Page } from '@playwright/test';
3
3
  import { VividWrapper } from './components.generated';
4
4
  export declare const vividPlaywright: (page: Page, expect: typeof pwExpect) => VividWrapper<PlaywrightDriverT>;
package/dist/refs.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import type { DriverT } from './drivers/driver';
1
+ import { DriverT } from './drivers/driver';
2
2
  import { BaseWrapper } from './base';
3
3
  import { ButtonWrapper, TextFieldWrapper } from './components.generated';
4
4
  export declare function light<D extends DriverT>(this: BaseWrapper<D>, selector: string): D['locator'];
@@ -1,4 +1,4 @@
1
- import type { DriverT } from './drivers/driver';
1
+ import { DriverT } from './drivers/driver';
2
2
  import { BaseComponent, BaseWrapper } from './base';
3
3
  export declare function byTestId<D extends DriverT, W extends BaseWrapper<D>>(this: BaseComponent<D, W>, id: string): W;
4
4
  export declare function byLabel<D extends DriverT, W extends BaseWrapper<D>>(this: BaseComponent<D, W>, label: string): W;
@@ -0,0 +1,2 @@
1
+ import { TestCase } from '../../test-case';
2
+ export declare const accordionTests: TestCase[];
@@ -0,0 +1,2 @@
1
+ import { TestCase } from '../../test-case';
2
+ export declare const alertTests: TestCase[];
@@ -0,0 +1,2 @@
1
+ import { TestCase } from '../../test-case';
2
+ export declare const bannerTests: TestCase[];
@@ -0,0 +1,2 @@
1
+ import { TestCase } from '../../test-case';
2
+ export declare const buttonTests: TestCase[];
@@ -0,0 +1,2 @@
1
+ import { TestCase } from '../../test-case';
2
+ export declare const checkboxTests: TestCase[];
@@ -0,0 +1,2 @@
1
+ import { TestCase } from '../../test-case';
2
+ export declare const collectionsTests: TestCase[];
@@ -0,0 +1,2 @@
1
+ import { TestCase } from '../../test-case';
2
+ export declare const comboboxTests: TestCase[];
@@ -0,0 +1,2 @@
1
+ import { TestCase } from '../../test-case';
2
+ export declare const datePickerTests: TestCase[];
@@ -0,0 +1,2 @@
1
+ import { TestCase } from '../../test-case';
2
+ export declare const dateRangePickerTests: TestCase[];
@@ -0,0 +1,2 @@
1
+ import { TestCase } from '../../test-case';
2
+ export declare const dateTimePickerTests: TestCase[];
@@ -0,0 +1,2 @@
1
+ import { TestCase } from '../../test-case';
2
+ export declare const dialogTests: TestCase[];
@@ -0,0 +1,2 @@
1
+ import { TestCase } from '../../test-case';
2
+ export declare const fabTests: TestCase[];
@@ -0,0 +1,2 @@
1
+ import { TestCase } from '../../test-case';
2
+ export declare const iconTests: TestCase[];
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ import { TestCase } from '../../test-case';
2
+ export declare const menuTests: TestCase[];
@@ -0,0 +1,2 @@
1
+ import { TestCase } from '../../test-case';
2
+ export declare const navTests: TestCase[];
@@ -0,0 +1,2 @@
1
+ import { TestCase } from '../../test-case';
2
+ export declare const numberFieldTests: TestCase[];
@@ -0,0 +1,2 @@
1
+ import { TestCase } from '../../test-case';
2
+ export declare const paginationTests: TestCase[];
@@ -0,0 +1,2 @@
1
+ import { TestCase } from '../../test-case';
2
+ export declare const radioTests: TestCase[];
@@ -0,0 +1,2 @@
1
+ import { TestCase } from '../../test-case';
2
+ export declare const rangeSliderTests: TestCase[];
@@ -0,0 +1,2 @@
1
+ import { TestCase } from '../../test-case';
2
+ export declare const searchableSelectTests: TestCase[];
@@ -0,0 +1,2 @@
1
+ import { TestCase } from '../../test-case';
2
+ export declare const selectTests: TestCase[];
@@ -0,0 +1,2 @@
1
+ import { TestCase } from '../../test-case';
2
+ export declare const selectableBoxTests: TestCase[];
@@ -0,0 +1,2 @@
1
+ import { TestCase } from '../../test-case';
2
+ export declare const sliderTests: TestCase[];
@@ -0,0 +1,2 @@
1
+ import { TestCase } from '../../test-case';
2
+ export declare const splitButtonTests: TestCase[];
@@ -0,0 +1,2 @@
1
+ import { TestCase } from '../../test-case';
2
+ export declare const switchTests: TestCase[];
@@ -0,0 +1,2 @@
1
+ import { TestCase } from '../../test-case';
2
+ export declare const tabsTests: TestCase[];
@@ -0,0 +1,2 @@
1
+ import { TestCase } from '../../test-case';
2
+ export declare const tagTests: TestCase[];
@@ -0,0 +1,2 @@
1
+ import { TestCase } from '../../test-case';
2
+ export declare const textAreaTests: TestCase[];
@@ -0,0 +1,2 @@
1
+ import { TestCase } from '../../test-case';
2
+ export declare const textFieldTests: TestCase[];
@@ -0,0 +1,2 @@
1
+ import { TestCase } from '../../test-case';
2
+ export declare const timePickerTests: TestCase[];
@@ -0,0 +1,2 @@
1
+ import { TestCase } from '../../test-case';
2
+ export declare const toggletipTests: TestCase[];
@@ -0,0 +1,2 @@
1
+ import { TestCase } from '../../test-case';
2
+ export declare const tooltipTests: TestCase[];
@@ -0,0 +1 @@
1
+ export {};
File without changes
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,8 @@
1
+ import { DriverT } from '../drivers/driver';
2
+ import { VividWrapper } from '../components.generated';
3
+ export interface TestCase {
4
+ name: string;
5
+ path: string;
6
+ expectErrorMessage?: string;
7
+ test: <T extends DriverT>(vvd: VividWrapper<T>, expectState: (expectedState: Record<string, any>) => void | Promise<void>) => void | Promise<void>;
8
+ }
@@ -0,0 +1 @@
1
+ export declare const testCases: import('./test-case').TestCase[];
@@ -0,0 +1 @@
1
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vonage/vivid-test-utils",
3
- "version": "5.11.0",
3
+ "version": "5.14.0",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  "./dom": {
@@ -29,7 +29,7 @@
29
29
  ],
30
30
  "dependencies": {
31
31
  "@testing-library/user-event": "^14.6.1",
32
- "@vonage/vivid": "^5.11.0"
32
+ "@vonage/vivid": "^5.14.0"
33
33
  },
34
34
  "devDependencies": {
35
35
  "@playwright/test": "1.57.0",
@@ -42,12 +42,12 @@
42
42
  "vitest": "^3.2.4",
43
43
  "vue": "^3.5.24",
44
44
  "wait-on": "^8.0.5",
45
- "@repo/shared": "1.0.0",
46
45
  "@repo/eslint-config": "1.0.0",
46
+ "@repo/shared": "1.0.0",
47
47
  "@repo/typescript-config": "1.0.0",
48
48
  "@repo/vitest-config": "1.0.0",
49
- "@vonage/vivid-vue": "5.11.0",
50
- "@repo/wrapper-gen": "1.0.0"
49
+ "@repo/wrapper-gen": "1.0.0",
50
+ "@vonage/vivid-vue": "5.14.0"
51
51
  },
52
52
  "scripts": {
53
53
  "prebuild": "tsx scripts/codegen.ts",