@codefast/ui 0.3.16-canary.0 → 0.3.16-canary.2

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # @codefast/ui
2
2
 
3
+ ## 0.3.16-canary.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [`1ad2cb7`](https://github.com/codefastlabs/codefast/commit/1ad2cb73a3f6f8bff2b001e9df2f2492efd89aa2) Thanks [@thevuong](https://github.com/thevuong)! - chore: align package config globs
8
+
9
+ - Updated dependencies [[`1ad2cb7`](https://github.com/codefastlabs/codefast/commit/1ad2cb73a3f6f8bff2b001e9df2f2492efd89aa2), [`ac54aa0`](https://github.com/codefastlabs/codefast/commit/ac54aa0d3b53acba2f5f75f7ad11b506b249f524), [`7d74f8b`](https://github.com/codefastlabs/codefast/commit/7d74f8bf357a59fa0ff8f6eb388af5d4a538e171)]:
10
+ - @codefast/tailwind-variants@0.3.16-canary.2
11
+
12
+ ## 0.3.16-canary.1
13
+
14
+ ### Patch Changes
15
+
16
+ - Updated dependencies []:
17
+ - @codefast/tailwind-variants@0.3.16-canary.1
18
+
3
19
  ## 0.3.16-canary.0
4
20
 
5
21
  ### Patch Changes
@@ -6,7 +6,7 @@ import { ComponentProps, JSX } from "react";
6
6
  /**
7
7
  * @since 0.3.16-canary.0
8
8
  */
9
- declare const alertVariants: _$_codefast_tailwind_variants0.VariantFunctionType<{
9
+ declare const alertVariants: _$_codefast_tailwind_variants0.VariantResolver<{
10
10
  variant: {
11
11
  default: string;
12
12
  destructive: string[];
@@ -6,7 +6,7 @@ import { ComponentProps, JSX } from "react";
6
6
  /**
7
7
  * @since 0.3.16-canary.0
8
8
  */
9
- declare const badgeVariants: _$_codefast_tailwind_variants0.VariantFunctionType<{
9
+ declare const badgeVariants: _$_codefast_tailwind_variants0.VariantResolver<{
10
10
  variant: {
11
11
  default: string[];
12
12
  destructive: string[];
@@ -7,7 +7,7 @@ import { ComponentProps, JSX } from "react";
7
7
  /**
8
8
  * @since 0.3.16-canary.0
9
9
  */
10
- declare const buttonGroupVariants: _$_codefast_tailwind_variants0.VariantFunctionType<{
10
+ declare const buttonGroupVariants: _$_codefast_tailwind_variants0.VariantResolver<{
11
11
  orientation: {
12
12
  horizontal: string[];
13
13
  vertical: string[];
@@ -6,7 +6,7 @@ import { ComponentProps, JSX } from "react";
6
6
  /**
7
7
  * @since 0.3.16-canary.0
8
8
  */
9
- declare const buttonVariants: _$_codefast_tailwind_variants0.VariantFunctionType<{
9
+ declare const buttonVariants: _$_codefast_tailwind_variants0.VariantResolver<{
10
10
  size: {
11
11
  "icon-sm": string;
12
12
  icon: string;
@@ -39,7 +39,7 @@ function Calendar({ buttonVariant = "ghost", captionLayout = "label", className,
39
39
  range_middle: cn("rounded-none", defaultClassNames.range_middle),
40
40
  range_start: cn("rounded-l-md", "bg-accent", defaultClassNames.range_start),
41
41
  root: cn("w-fit", defaultClassNames.root),
42
- table: "w-full border-collapse",
42
+ month_grid: "w-full border-collapse",
43
43
  today: cn("rounded-md", "bg-accent text-accent-foreground", "data-selected:rounded-none", defaultClassNames.today),
44
44
  week: cn("flex w-full", "mt-2", defaultClassNames.week),
45
45
  week_number: cn("text-[0.8rem] text-muted-foreground", "select-none", defaultClassNames.week_number),
@@ -81,7 +81,7 @@ type ChartTooltipContentProps<TValue extends ValueType, TName extends NameType>
81
81
  nameKey?: string;
82
82
  color?: string | undefined;
83
83
  className?: string | undefined;
84
- payload?: Payload<TValue, TName>[];
84
+ payload?: Array<Payload<TValue, TName>>;
85
85
  };
86
86
  /**
87
87
  * @since 0.3.16-canary.0
@@ -6,7 +6,7 @@ import { ComponentProps, JSX } from "react";
6
6
  /**
7
7
  * @since 0.3.16-canary.0
8
8
  */
9
- declare const emptyMediaVariants: _$_codefast_tailwind_variants0.VariantFunctionType<{
9
+ declare const emptyMediaVariants: _$_codefast_tailwind_variants0.VariantResolver<{
10
10
  variant: {
11
11
  default: string;
12
12
  icon: string[];
@@ -7,7 +7,7 @@ import { ComponentProps, JSX } from "react";
7
7
  /**
8
8
  * @since 0.3.16-canary.0
9
9
  */
10
- declare const fieldVariants: _$_codefast_tailwind_variants0.VariantFunctionType<{
10
+ declare const fieldVariants: _$_codefast_tailwind_variants0.VariantResolver<{
11
11
  orientation: {
12
12
  horizontal: string[];
13
13
  responsive: string[];
@@ -127,7 +127,7 @@ interface FieldErrorMessage {
127
127
  * @since 0.3.16-canary.0
128
128
  */
129
129
  interface FieldErrorProps extends ComponentProps<"div"> {
130
- errors?: (FieldErrorMessage | undefined)[];
130
+ errors?: Array<FieldErrorMessage | undefined>;
131
131
  }
132
132
  /**
133
133
  * @since 0.3.16-canary.0
@@ -9,11 +9,11 @@ import { ComponentProps, JSX } from "react";
9
9
  /**
10
10
  * @since 0.3.16-canary.0
11
11
  */
12
- declare const inputGroupVariants: _$_codefast_tailwind_variants0.VariantFunctionType<_$_codefast_tailwind_variants0.ConfigurationSchema, Record<string, never>>;
12
+ declare const inputGroupVariants: _$_codefast_tailwind_variants0.VariantResolver<_$_codefast_tailwind_variants0.VariantSchema, Record<string, never>>;
13
13
  /**
14
14
  * @since 0.3.16-canary.0
15
15
  */
16
- declare const inputGroupAddonVariants: _$_codefast_tailwind_variants0.VariantFunctionType<{
16
+ declare const inputGroupAddonVariants: _$_codefast_tailwind_variants0.VariantResolver<{
17
17
  align: {
18
18
  "block-end": string[];
19
19
  "block-start": string[];
@@ -24,7 +24,7 @@ declare const inputGroupAddonVariants: _$_codefast_tailwind_variants0.VariantFun
24
24
  /**
25
25
  * @since 0.3.16-canary.0
26
26
  */
27
- declare const inputGroupButtonVariants: _$_codefast_tailwind_variants0.VariantFunctionType<{
27
+ declare const inputGroupButtonVariants: _$_codefast_tailwind_variants0.VariantResolver<{
28
28
  size: {
29
29
  "icon-sm": string[];
30
30
  "icon-xs": string[];
@@ -7,7 +7,7 @@ import { ComponentProps, JSX } from "react";
7
7
  /**
8
8
  * @since 0.3.16-canary.0
9
9
  */
10
- declare const itemVariants: _$_codefast_tailwind_variants0.VariantFunctionType<{
10
+ declare const itemVariants: _$_codefast_tailwind_variants0.VariantResolver<{
11
11
  size: {
12
12
  default: string[];
13
13
  sm: string[];
@@ -21,7 +21,7 @@ declare const itemVariants: _$_codefast_tailwind_variants0.VariantFunctionType<{
21
21
  /**
22
22
  * @since 0.3.16-canary.0
23
23
  */
24
- declare const itemMediaVariants: _$_codefast_tailwind_variants0.VariantFunctionType<{
24
+ declare const itemMediaVariants: _$_codefast_tailwind_variants0.VariantResolver<{
25
25
  variant: {
26
26
  default: string;
27
27
  icon: string[];
@@ -6,7 +6,7 @@ import * as NavigationMenuPrimitive from "@radix-ui/react-navigation-menu";
6
6
  /**
7
7
  * @since 0.3.16-canary.0
8
8
  */
9
- declare const navigationMenuTriggerVariants: _$_codefast_tailwind_variants0.VariantFunctionType<_$_codefast_tailwind_variants0.ConfigurationSchema, Record<string, never>>;
9
+ declare const navigationMenuTriggerVariants: _$_codefast_tailwind_variants0.VariantResolver<_$_codefast_tailwind_variants0.VariantSchema, Record<string, never>>;
10
10
  /**
11
11
  * @since 0.3.16-canary.0
12
12
  */
@@ -7,7 +7,7 @@ import { ComponentProps, JSX } from "react";
7
7
  /**
8
8
  * @since 0.3.16-canary.0
9
9
  */
10
- declare const progressCircleVariants: _$_codefast_tailwind_variants0.VariantFunctionType<{
10
+ declare const progressCircleVariants: _$_codefast_tailwind_variants0.VariantResolver<{
11
11
  size: {
12
12
  sm: {
13
13
  label: string;
@@ -8,7 +8,7 @@ import * as ScrollAreaPrimitive from "@radix-ui/react-scroll-area";
8
8
  /**
9
9
  * @since 0.3.16-canary.0
10
10
  */
11
- declare const scrollAreaScrollbarVariants: _$_codefast_tailwind_variants0.VariantFunctionType<{
11
+ declare const scrollAreaScrollbarVariants: _$_codefast_tailwind_variants0.VariantResolver<{
12
12
  orientation: {
13
13
  horizontal: string[];
14
14
  vertical: string[];
@@ -7,7 +7,7 @@ import { ComponentProps, JSX } from "react";
7
7
  /**
8
8
  * @since 0.3.16-canary.0
9
9
  */
10
- declare const separatorVariants: _$_codefast_tailwind_variants0.VariantFunctionType<{
10
+ declare const separatorVariants: _$_codefast_tailwind_variants0.VariantResolver<{
11
11
  align: {
12
12
  center: string;
13
13
  end: string;
@@ -8,7 +8,7 @@ import * as SheetPrimitive from "@radix-ui/react-dialog";
8
8
  /**
9
9
  * @since 0.3.16-canary.0
10
10
  */
11
- declare const sheetContentVariants: _$_codefast_tailwind_variants0.VariantFunctionType<{
11
+ declare const sheetContentVariants: _$_codefast_tailwind_variants0.VariantResolver<{
12
12
  side: {
13
13
  bottom: string[];
14
14
  left: string[];
@@ -10,7 +10,7 @@ import { ComponentProps, Dispatch, JSX, SetStateAction } from "react";
10
10
  /**
11
11
  * @since 0.3.16-canary.0
12
12
  */
13
- declare const sidebarMenuButtonVariants: _$_codefast_tailwind_variants0.VariantFunctionType<{
13
+ declare const sidebarMenuButtonVariants: _$_codefast_tailwind_variants0.VariantResolver<{
14
14
  size: {
15
15
  sm: string[];
16
16
  md: string[];
@@ -7,7 +7,7 @@ import * as TogglePrimitive from "@radix-ui/react-toggle";
7
7
  /**
8
8
  * @since 0.3.16-canary.0
9
9
  */
10
- declare const toggleVariants: _$_codefast_tailwind_variants0.VariantFunctionType<{
10
+ declare const toggleVariants: _$_codefast_tailwind_variants0.VariantResolver<{
11
11
  size: {
12
12
  default: string[];
13
13
  lg: string[];
@@ -3,15 +3,15 @@ import { useEffect, useRef, useState } from "react";
3
3
  //#region src/hooks/use-animated-value.ts
4
4
  /**
5
5
  * Produce a smoothly animated numeric value in response to changes.
6
- *
6
+ *
7
7
  * Applies a time-based easing (easeOutQuad) between the current and target values
8
8
  * over the specified duration. When disabled, the value updates immediately.
9
- *
9
+ *
10
10
  * @param targetValue - Target number to animate toward; null resolves to 0.
11
11
  * @param duration - Animation duration in milliseconds.
12
12
  * @param animate - When false, bypasses animation and sets the value directly.
13
13
  * @returns The current (rounded) animated value.
14
- *
14
+ *
15
15
  * @example
16
16
  * ```tsx
17
17
  * const value = useAnimatedValue(75, 1000, true);
@@ -3,15 +3,15 @@ import { useState } from "react";
3
3
  //#region src/hooks/use-copy-to-clipboard.ts
4
4
  /**
5
5
  * Provide clipboard copy capability with a transient copied state.
6
- *
6
+ *
7
7
  * Internally uses the Clipboard API when available and sets a temporary
8
8
  * `isCopied` flag for UI feedback. A custom callback may be invoked upon copy.
9
- *
9
+ *
10
10
  * @param options - Configuration options.
11
11
  * - onCopy: Callback invoked after a successful copy.
12
12
  * - timeout: Duration in milliseconds to keep `isCopied` true. Defaults to 2000.
13
13
  * @returns An object with a `copyToClipboard` function and an `isCopied` flag.
14
- *
14
+ *
15
15
  * @example
16
16
  * ```tsx
17
17
  * const { copyToClipboard, isCopied } = useCopyToClipboard({ timeout: 1500 });
@@ -3,14 +3,14 @@ import { useMediaQuery } from "./use-media-query.mjs";
3
3
  //#region src/hooks/use-is-mobile.ts
4
4
  /**
5
5
  * Determine whether the current viewport should be treated as mobile.
6
- *
6
+ *
7
7
  * Uses {@link useMediaQuery} to evaluate a max-width media query derived from the
8
8
  * provided breakpoint. By default, widths below 768px are considered mobile.
9
- *
9
+ *
10
10
  * @param mobileBreakpoint - Pixel width used as the mobile breakpoint. Values strictly
11
11
  * less than this breakpoint are treated as mobile. Defaults to 768.
12
12
  * @returns true when the viewport width is less than the given breakpoint; otherwise false.
13
- *
13
+ *
14
14
  * @example
15
15
  * ```tsx
16
16
  * const isMobile = useIsMobile();
@@ -3,13 +3,13 @@ import { useEffect, useState } from "react";
3
3
  //#region src/hooks/use-media-query.ts
4
4
  /**
5
5
  * Subscribe to a CSS media query and receive its match state.
6
- *
6
+ *
7
7
  * Evaluates the query immediately (when supported) and updates on changes
8
8
  * via an event listener.
9
- *
9
+ *
10
10
  * @param query - A valid media query string (e.g., "(max-width: 768px)").
11
11
  * @returns true when the media query currently matches; otherwise false.
12
- *
12
+ *
13
13
  * @example
14
14
  * ```tsx
15
15
  * const isNarrow = useMediaQuery("(max-width: 768px)");
@@ -12,15 +12,15 @@ const defaultOptions = {
12
12
  };
13
13
  /**
14
14
  * Observe DOM mutations on a referenced element and invoke a callback.
15
- *
15
+ *
16
16
  * Attaches a MutationObserver to the provided element reference with the given
17
17
  * options and calls the callback whenever mutations occur.
18
- *
18
+ *
19
19
  * @param ref - Ref to the target HTMLElement to observe.
20
20
  * @param callback - Mutation callback invoked with observed records.
21
21
  * @param options - Observer configuration. Defaults watch attributes, characterData, childList, subtree.
22
22
  * @returns void
23
- *
23
+ *
24
24
  * @see [MutationObserver](https://developer.mozilla.org/en-US/docs/Web/API/MutationObserver)
25
25
  *
26
26
  * @since 0.3.16-canary.0
@@ -54,6 +54,6 @@ declare function usePagination({
54
54
  resultsPerPage,
55
55
  siblingPagesCount,
56
56
  totalResults
57
- }: UsePaginationProps): (number | string)[];
57
+ }: UsePaginationProps): Array<number | string>;
58
58
  //#endregion
59
59
  export { ELLIPSIS, UsePaginationProps, usePagination };
@@ -20,14 +20,14 @@ const createRange = (start, end) => {
20
20
  };
21
21
  /**
22
22
  * Compute a pagination structure for result sets.
23
- *
23
+ *
24
24
  * Returns a mixed array of page numbers and the `ELLIPSIS` marker representing
25
25
  * collapsed ranges. The shape adapts to the total pages and the requested
26
26
  * sibling window around the current page.
27
- *
27
+ *
28
28
  * @param props - Pagination options. See {@link UsePaginationProps}.
29
29
  * @returns Array of page numbers and `ELLIPSIS` representing the pagination model.
30
- *
30
+ *
31
31
  * @example
32
32
  * ```tsx
33
33
  * const paginationRange = usePagination({
@@ -8,6 +8,6 @@ import { VariantProps } from "@codefast/tailwind-variants";
8
8
  * Use these `cn` / `tv` helpers everywhere in this package so class merging stays consistent
9
9
  * and optional `twMergeConfig` can be applied in one place later.
10
10
  */
11
- declare const cn: (...classes: ClassValue[]) => string, tv: _$_codefast_tailwind_variants0.TailwindVariantsFactory;
11
+ declare const cn: (...classes: Array<ClassValue>) => string, tv: _$_codefast_tailwind_variants0.TailwindVariantsFactory;
12
12
  //#endregion
13
13
  export { type VariantProps, cn, tv };
@@ -44,7 +44,7 @@ interface CheckboxGroupContextValue {
44
44
  /**
45
45
  * Array of currently selected checkbox values
46
46
  */
47
- value?: string[];
47
+ value?: Array<string>;
48
48
  }
49
49
  /**
50
50
  * Base props for the CheckboxGroup component
@@ -53,7 +53,7 @@ interface CheckboxGroupBaseProps {
53
53
  /**
54
54
  * Default values for the checkbox group when uncontrolled
55
55
  */
56
- defaultValue?: string[];
56
+ defaultValue?: Array<string>;
57
57
  /**
58
58
  * Direction for roving focus navigation
59
59
  */
@@ -74,7 +74,7 @@ interface CheckboxGroupBaseProps {
74
74
  * Callback fired when the selected values change
75
75
  * @param value - The new array of selected values
76
76
  */
77
- onValueChange?: (value?: string[]) => void;
77
+ onValueChange?: (value?: Array<string>) => void;
78
78
  /**
79
79
  * Orientation of the checkbox group (horizontal or vertical)
80
80
  */
@@ -63,7 +63,7 @@ interface ProgressCircleProviderProps {
63
63
  /**
64
64
  * Array of threshold configurations for different value ranges
65
65
  */
66
- thresholds?: Threshold[];
66
+ thresholds?: Array<Threshold>;
67
67
  /**
68
68
  * Current progress value (null for indeterminate state)
69
69
  */
@@ -8,10 +8,10 @@ const [createProgressCircleContext, createProgressCircleScope] = createContextSc
8
8
  const [ProgressCircleContextProvider, useProgressCircleContext] = createProgressCircleContext(PROGRESS_CIRCLE_PROVIDER_NAME);
9
9
  /**
10
10
  * Provides context for the ProgressCircle component
11
- *
11
+ *
12
12
  * Manages calculations for rendering the circular progress indicator,
13
13
  * including value clamping, sizing, thresholds, and indeterminate state.
14
- *
14
+ *
15
15
  * @example
16
16
  * ```tsx
17
17
  * <ProgressCircleProvider
@@ -80,7 +80,7 @@ function ProgressCircleProvider({ __scopeProgressCircle, children, formatValue,
80
80
  }
81
81
  /**
82
82
  * Root component for the progress circle
83
- *
83
+ *
84
84
  * Serves as a wrapper for other progress circle components.
85
85
  *
86
86
  * @since 0.3.16-canary.0
@@ -91,7 +91,7 @@ function ProgressCircle({ __scopeProgressCircle, ...props }) {
91
91
  const PROGRESS_CIRCLE_SVG_NAME = "ProgressCircleSVG";
92
92
  /**
93
93
  * SVG container for the progress circle
94
- *
94
+ *
95
95
  * Renders the SVG with accessibility attributes and supports indeterminate state.
96
96
  *
97
97
  * @since 0.3.16-canary.0
@@ -115,7 +115,7 @@ function ProgressCircleSVG({ __scopeProgressCircle, ...props }) {
115
115
  const PROGRESS_CIRCLE_TRACK_NAME = "ProgressCircleTrack";
116
116
  /**
117
117
  * Background circle for the progress indicator
118
- *
118
+ *
119
119
  * Renders the static track of the progress circle.
120
120
  *
121
121
  * @since 0.3.16-canary.0
@@ -135,7 +135,7 @@ function ProgressCircleTrack({ __scopeProgressCircle, ...props }) {
135
135
  const PROGRESS_CIRCLE_INDICATOR_NAME = "ProgressCircleIndicator";
136
136
  /**
137
137
  * Foreground circle showing progress
138
- *
138
+ *
139
139
  * Renders the dynamic progress indicator with stroke dash properties.
140
140
  *
141
141
  * @since 0.3.16-canary.0
@@ -159,7 +159,7 @@ function ProgressCircleIndicator({ __scopeProgressCircle, ...props }) {
159
159
  const PROGRESS_CIRCLE_VALUE_NAME = "ProgressCircleValue";
160
160
  /**
161
161
  * Displays the current progress value
162
- *
162
+ *
163
163
  * Supports custom content or default value text rendering.
164
164
  *
165
165
  * @since 0.3.16-canary.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codefast/ui",
3
- "version": "0.3.16-canary.0",
3
+ "version": "0.3.16-canary.2",
4
4
  "description": "Core UI components library built with React and Tailwind CSS",
5
5
  "keywords": [
6
6
  "components",
@@ -394,35 +394,36 @@
394
394
  "cmdk": "^1.1.1",
395
395
  "embla-carousel-react": "^8.6.0",
396
396
  "input-otp": "^1.4.2",
397
- "lucide-react": "^1.14.0",
397
+ "lucide-react": "^1.16.0",
398
398
  "next-themes": "^0.4.6",
399
- "react-day-picker": "^9.14.0",
399
+ "react-day-picker": "^10.0.0",
400
400
  "react-hook-form": "^7.75.0",
401
- "react-resizable-panels": "^4.11.0",
401
+ "react-resizable-panels": "^4.11.1",
402
402
  "recharts": "^3.8.1",
403
403
  "sonner": "^2.0.7",
404
404
  "tw-animate-css": "^1.4.0",
405
405
  "vaul": "^1.1.2",
406
- "@codefast/tailwind-variants": "0.3.16-canary.0"
406
+ "@codefast/tailwind-variants": "0.3.16-canary.2"
407
407
  },
408
408
  "devDependencies": {
409
- "@tailwindcss/postcss": "^4.2.4",
409
+ "@tailwindcss/postcss": "^4.3.0",
410
410
  "@testing-library/dom": "^10.4.1",
411
411
  "@testing-library/jest-dom": "^6.9.1",
412
412
  "@testing-library/react": "^16.3.2",
413
413
  "@testing-library/user-event": "^14.6.1",
414
414
  "@types/jest-axe": "^3.5.9",
415
- "@types/node": "^25.6.0",
416
- "@typescript/native-preview": "7.0.0-dev.20260504.1",
415
+ "@types/node": "^25.7.0",
416
+ "@typescript/native-preview": "7.0.0-dev.20260514.1",
417
417
  "@vitejs/plugin-react": "^6.0.1",
418
- "@vitest/coverage-v8": "^4.1.5",
418
+ "@vitest/coverage-v8": "^4.1.6",
419
419
  "jest-axe": "^10.0.0",
420
420
  "jsdom": "^29.1.1",
421
- "postcss": "^8.5.13",
422
- "tailwindcss": "^4.2.4",
421
+ "postcss": "^8.5.14",
422
+ "tailwindcss": "^4.3.0",
423
+ "tsdown": "^0.22.0",
423
424
  "typescript": "^6.0.3",
424
- "vitest": "^4.1.5",
425
- "@codefast/typescript-config": "0.3.16-canary.0"
425
+ "vitest": "^4.1.6",
426
+ "@codefast/typescript-config": "0.3.16-canary.2"
426
427
  },
427
428
  "peerDependencies": {
428
429
  "@types/react": "^19.0",
@@ -438,6 +439,9 @@
438
439
  "optional": true
439
440
  }
440
441
  },
442
+ "engines": {
443
+ "node": ">=22.0.0"
444
+ },
441
445
  "scripts": {
442
446
  "build": "tsdown",
443
447
  "check-types": "tsgo --noEmit",
@@ -445,6 +449,10 @@
445
449
  "dev": "tsdown --watch",
446
450
  "test": "vitest run",
447
451
  "test:coverage": "vitest run --coverage",
452
+ "test:e2e": "vitest run tests/e2e",
453
+ "test:integration": "vitest run tests/integration",
454
+ "test:type": "vitest run tests/types",
455
+ "test:unit": "vitest run tests/unit",
448
456
  "test:watch": "vitest"
449
457
  }
450
458
  }