laif-ds 0.1.16 → 0.1.17

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.
@@ -1,8 +1,5 @@
1
1
  "use client";
2
- import { getDefaultExportFromCjs as r } from "./_commonjsHelpers.js";
3
- import { __require as e } from "../node_modules/style-to-js/cjs/index.js";
4
- var t = e();
5
- const a = /* @__PURE__ */ r(t);
2
+ var e = { exports: {} };
6
3
  export {
7
- a as default
4
+ e as __module
8
5
  };
@@ -1,8 +1,8 @@
1
1
  "use client";
2
- import { getDefaultExportFromCjs as e } from "./_commonjsHelpers.js";
3
- import { __require as r } from "../node_modules/extend/index.js";
4
- var t = r();
5
- const x = /* @__PURE__ */ e(t);
2
+ import { getDefaultExportFromCjs as r } from "./_commonjsHelpers.js";
3
+ import { __require as e } from "../node_modules/style-to-js/cjs/index.js";
4
+ var t = e();
5
+ const a = /* @__PURE__ */ r(t);
6
6
  export {
7
- x as default
7
+ a as default
8
8
  };
@@ -1,5 +1,8 @@
1
1
  "use client";
2
- var e = { exports: {} };
2
+ import { getDefaultExportFromCjs as e } from "./_commonjsHelpers.js";
3
+ import { __require as r } from "../node_modules/extend/index.js";
4
+ var t = r();
5
+ const x = /* @__PURE__ */ e(t);
3
6
  export {
4
- e as __module
7
+ x as default
5
8
  };
@@ -1,5 +1,8 @@
1
1
  "use client";
2
- var e = {};
2
+ import { getDefaultExportFromCjs as r } from "./_commonjsHelpers.js";
3
+ import { __require as e } from "../node_modules/classnames/index.js";
4
+ var s = e();
5
+ const o = /* @__PURE__ */ r(s);
3
6
  export {
4
- e as __exports
7
+ o as default
5
8
  };
@@ -1,8 +1,5 @@
1
1
  "use client";
2
- import { getDefaultExportFromCjs as r } from "./_commonjsHelpers.js";
3
- import { __require as e } from "../node_modules/classnames/index.js";
4
- var s = e();
5
- const o = /* @__PURE__ */ r(s);
2
+ var e = {};
6
3
  export {
7
- o as default
4
+ e as __exports
8
5
  };
@@ -0,0 +1,74 @@
1
+ "use client";
2
+ import { jsxs as i, jsx as c } from "react/jsx-runtime";
3
+ import { cn as a } from "../../../lib/utils.js";
4
+ function v({
5
+ value: t,
6
+ renderLabel: o,
7
+ className: l,
8
+ progressClassName: m,
9
+ labelClassName: h,
10
+ showLabel: f,
11
+ shape: d = "round",
12
+ size: r = 100,
13
+ strokeWidth: n,
14
+ circleStrokeWidth: p = 10,
15
+ progressStrokeWidth: x = 10
16
+ }) {
17
+ const e = r / 2 - 10, s = Math.ceil(3.14 * e * 2), k = Math.ceil(s * ((100 - t) / 100)), y = `-${r * 0.125} -${r * 0.125} ${r * 1.25} ${r * 1.25}`;
18
+ return /* @__PURE__ */ i("div", { className: "relative", children: [
19
+ /* @__PURE__ */ i(
20
+ "svg",
21
+ {
22
+ width: r,
23
+ height: r,
24
+ viewBox: y,
25
+ version: "1.1",
26
+ xmlns: "http://www.w3.org/2000/svg",
27
+ style: { transform: "rotate(-90deg)" },
28
+ className: "relative",
29
+ children: [
30
+ /* @__PURE__ */ c(
31
+ "circle",
32
+ {
33
+ r: e,
34
+ cx: r / 2,
35
+ cy: r / 2,
36
+ fill: "transparent",
37
+ strokeWidth: n ?? p,
38
+ strokeDasharray: s,
39
+ strokeDashoffset: "0",
40
+ className: a("stroke-d-primary/25", l)
41
+ }
42
+ ),
43
+ /* @__PURE__ */ c(
44
+ "circle",
45
+ {
46
+ r: e,
47
+ cx: r / 2,
48
+ cy: r / 2,
49
+ strokeWidth: n ?? x,
50
+ strokeLinecap: d,
51
+ strokeDashoffset: k,
52
+ fill: "transparent",
53
+ strokeDasharray: s,
54
+ className: a("stroke-d-primary", m)
55
+ }
56
+ )
57
+ ]
58
+ }
59
+ ),
60
+ f && /* @__PURE__ */ c(
61
+ "div",
62
+ {
63
+ className: a(
64
+ "absolute inset-0 flex items-center justify-center text-md",
65
+ h
66
+ ),
67
+ children: o ? o(t) : t
68
+ }
69
+ )
70
+ ] });
71
+ }
72
+ export {
73
+ v as CircularProgress
74
+ };
@@ -1,7 +1,7 @@
1
1
  "use client";
2
2
  import { jsx as o, jsxs as M, Fragment as N } from "react/jsx-runtime";
3
3
  import { useContext as R, useRef as a, useState as s, useCallback as k, useMemo as y, useEffect as u } from "react";
4
- import A from "../../../../../_virtual/index6.js";
4
+ import A from "../../../../../_virtual/index5.js";
5
5
  import B from "../../../../../_virtual/debounce.js";
6
6
  import { GanttContext as F } from "../Gantt/GanttContext.js";
7
7
  import { transformData as O } from "../../utils/transformData.js";
package/dist/index.d.ts CHANGED
@@ -418,6 +418,22 @@ declare interface ChatPropsWithSuggestions extends ChatPropsBase {
418
418
 
419
419
  export declare function Checkbox({ className, ...props }: React_2.ComponentProps<typeof CheckboxPrimitive.Root>): JSX.Element;
420
420
 
421
+ export declare function CircularProgress({ value, renderLabel, className, progressClassName, labelClassName, showLabel, shape, size, strokeWidth, circleStrokeWidth, progressStrokeWidth, }: CircularProgressProps): JSX.Element;
422
+
423
+ declare interface CircularProgressProps {
424
+ value: number;
425
+ renderLabel?: (progress: number) => number | string;
426
+ size?: number;
427
+ strokeWidth?: number;
428
+ circleStrokeWidth?: number;
429
+ progressStrokeWidth?: number;
430
+ shape?: "square" | "round";
431
+ className?: string;
432
+ progressClassName?: string;
433
+ labelClassName?: string;
434
+ showLabel?: boolean;
435
+ }
436
+
421
437
  export declare function Collapsible({ ...props }: React.ComponentProps<typeof CollapsiblePrimitive.Root>): JSX.Element;
422
438
 
423
439
  export declare function CollapsibleContent({ ...props }: React.ComponentProps<typeof CollapsiblePrimitive.CollapsibleContent>): JSX.Element;
@@ -683,7 +699,7 @@ export declare function HoverCardTrigger({ ...props }: React_2.ComponentProps<ty
683
699
  */
684
700
  export declare function Icon({ name, size, className, color, ...props }: IconProps): JSX.Element | null;
685
701
 
686
- declare type IconName = keyof typeof LucideIcons;
702
+ export declare type IconName = keyof typeof LucideIcons;
687
703
 
688
704
  declare interface IconProps {
689
705
  name: IconName;
package/dist/index.js CHANGED
@@ -50,30 +50,31 @@ import { Tabs as rt, TabsContent as ot, TabsList as tt, TabsTrigger as at } from
50
50
  import { ToggleGroup as it, ToggleGroupItem as pt } from "./components/ui/toggle-group.js";
51
51
  import { Breadcrumb as lt, BreadcrumbEllipsis as ut, BreadcrumbItem as xt, BreadcrumbLink as gt, BreadcrumbList as bt, BreadcrumbPage as dt, BreadcrumbSeparator as Ct } from "./components/ui/breadcrumb.js";
52
52
  import { Slider as st } from "./components/ui/slider.js";
53
- import { AudioVisualizer as ct } from "./components/ui/audio-visualizer.js";
54
- import { Carousel as Tt, CarouselContent as Dt, CarouselItem as It, CarouselNext as At, CarouselPrevious as Pt } from "./components/ui/carousel.js";
55
- import { ChartContainer as vt, ChartLegend as Ft, ChartLegendContent as Gt, ChartStyle as Lt, ChartTooltip as Bt, ChartTooltipContent as Rt } from "./components/ui/chart.js";
56
- import { Chat as Ht, ChatContainer as kt, ChatForm as Nt, ChatMessages as yt } from "./components/ui/chat.js";
57
- import { ChatMessage as Vt } from "./components/ui/chat-message.js";
58
- import { FilePreview as Ot } from "./components/ui/file-preview.js";
59
- import { InterruptPrompt as qt } from "./components/ui/interrupt-prompt.js";
60
- import { MarkdownRenderer as Kt } from "./components/ui/markdown-renderer.js";
61
- import { MessageInput as Ut } from "./components/ui/message-input.js";
62
- import { MessageList as Xt } from "./components/ui/message-list.js";
63
- import { NavigationMenu as Zt, NavigationMenuContent as _t, NavigationMenuIndicator as $t, NavigationMenuItem as ea, NavigationMenuLink as ra, NavigationMenuList as oa, NavigationMenuTrigger as ta, NavigationMenuViewport as aa } from "./components/ui/navigation-menu.js";
64
- import { Sidebar as ia, SidebarContent as pa, SidebarFooter as ma, SidebarGroup as la, SidebarGroupAction as ua, SidebarGroupContent as xa, SidebarGroupLabel as ga, SidebarHeader as ba, SidebarInput as da, SidebarInset as Ca, SidebarMenu as fa, SidebarMenuAction as sa, SidebarMenuBadge as Sa, SidebarMenuButton as ca, SidebarMenuItem as Ma, SidebarMenuSkeleton as Ta, SidebarMenuSub as Da, SidebarMenuSubButton as Ia, SidebarMenuSubItem as Aa, SidebarProvider as Pa, SidebarRail as ha, SidebarSeparator as va, SidebarTrigger as Fa, useSidebar as Ga } from "./components/ui/sidebar.js";
65
- import { DataTable as Ba } from "./components/ui/data-table.js";
66
- import { GanttDimensions as wa } from "./components/ui/gantt/enums/GanttDimensions.js";
67
- import { GanttConsts as ka } from "./components/ui/gantt/constants/GanttConsts.js";
68
- import { DragStepSizes as ya } from "./components/ui/gantt/enums/DragStepSizes.js";
69
- import { DataRepeatTypes as Va } from "./components/ui/gantt/enums/DataRepeatTimes.js";
70
- import { AppSidebar as Oa } from "./components/ui/app-sidebar.js";
71
- import { useAudioRecording as qa } from "./hooks/use-audio-recording.js";
72
- import { useAutoScroll as Ka } from "./hooks/use-auto-scroll.js";
73
- import { useAutosizeTextArea as Ua } from "./hooks/use-autosize-textarea.js";
74
- import { useCopyToClipboard as Xa } from "./hooks/use-copy-to-clipboard.js";
75
- import { useDebounce as Za } from "./hooks/use-debounce.js";
76
- import { useIsMobile as $a } from "./hooks/use-mobile.js";
53
+ import { CircularProgress as ct } from "./components/ui/charts/circular.js";
54
+ import { AudioVisualizer as Tt } from "./components/ui/audio-visualizer.js";
55
+ import { Carousel as It, CarouselContent as At, CarouselItem as Pt, CarouselNext as ht, CarouselPrevious as vt } from "./components/ui/carousel.js";
56
+ import { ChartContainer as Gt, ChartLegend as Lt, ChartLegendContent as Bt, ChartStyle as Rt, ChartTooltip as wt, ChartTooltipContent as Ht } from "./components/ui/chart.js";
57
+ import { Chat as Nt, ChatContainer as yt, ChatForm as zt, ChatMessages as Vt } from "./components/ui/chat.js";
58
+ import { ChatMessage as Ot } from "./components/ui/chat-message.js";
59
+ import { FilePreview as qt } from "./components/ui/file-preview.js";
60
+ import { InterruptPrompt as Kt } from "./components/ui/interrupt-prompt.js";
61
+ import { MarkdownRenderer as Ut } from "./components/ui/markdown-renderer.js";
62
+ import { MessageInput as Xt } from "./components/ui/message-input.js";
63
+ import { MessageList as Zt } from "./components/ui/message-list.js";
64
+ import { NavigationMenu as $t, NavigationMenuContent as ea, NavigationMenuIndicator as ra, NavigationMenuItem as oa, NavigationMenuLink as ta, NavigationMenuList as aa, NavigationMenuTrigger as na, NavigationMenuViewport as ia } from "./components/ui/navigation-menu.js";
65
+ import { Sidebar as ma, SidebarContent as la, SidebarFooter as ua, SidebarGroup as xa, SidebarGroupAction as ga, SidebarGroupContent as ba, SidebarGroupLabel as da, SidebarHeader as Ca, SidebarInput as fa, SidebarInset as sa, SidebarMenu as Sa, SidebarMenuAction as ca, SidebarMenuBadge as Ma, SidebarMenuButton as Ta, SidebarMenuItem as Da, SidebarMenuSkeleton as Ia, SidebarMenuSub as Aa, SidebarMenuSubButton as Pa, SidebarMenuSubItem as ha, SidebarProvider as va, SidebarRail as Fa, SidebarSeparator as Ga, SidebarTrigger as La, useSidebar as Ba } from "./components/ui/sidebar.js";
66
+ import { DataTable as wa } from "./components/ui/data-table.js";
67
+ import { GanttDimensions as ka } from "./components/ui/gantt/enums/GanttDimensions.js";
68
+ import { GanttConsts as ya } from "./components/ui/gantt/constants/GanttConsts.js";
69
+ import { DragStepSizes as Va } from "./components/ui/gantt/enums/DragStepSizes.js";
70
+ import { DataRepeatTypes as Oa } from "./components/ui/gantt/enums/DataRepeatTimes.js";
71
+ import { AppSidebar as qa } from "./components/ui/app-sidebar.js";
72
+ import { useAudioRecording as Ka } from "./hooks/use-audio-recording.js";
73
+ import { useAutoScroll as Ua } from "./hooks/use-auto-scroll.js";
74
+ import { useAutosizeTextArea as Xa } from "./hooks/use-autosize-textarea.js";
75
+ import { useCopyToClipboard as Za } from "./hooks/use-copy-to-clipboard.js";
76
+ import { useDebounce as $a } from "./hooks/use-debounce.js";
77
+ import { useIsMobile as rn } from "./hooks/use-mobile.js";
77
78
  export {
78
79
  ne as Accordion,
79
80
  ie as AccordionContent,
@@ -91,10 +92,10 @@ export {
91
92
  Te as AlertDialogTitle,
92
93
  De as AlertDialogTrigger,
93
94
  ge as AlertTitle,
94
- Oa as AppSidebar,
95
+ qa as AppSidebar,
95
96
  a as AspectRatio,
96
97
  Ae as AsyncSelect,
97
- ct as AudioVisualizer,
98
+ Tt as AudioVisualizer,
98
99
  i as Avatar,
99
100
  p as AvatarFallback,
100
101
  m as AvatarImage,
@@ -114,23 +115,24 @@ export {
114
115
  Be as CardFooter,
115
116
  Re as CardHeader,
116
117
  we as CardTitle,
117
- Tt as Carousel,
118
- Dt as CarouselContent,
119
- It as CarouselItem,
120
- At as CarouselNext,
121
- Pt as CarouselPrevious,
122
- vt as ChartContainer,
123
- Ft as ChartLegend,
124
- Gt as ChartLegendContent,
125
- Lt as ChartStyle,
126
- Bt as ChartTooltip,
127
- Rt as ChartTooltipContent,
128
- Ht as Chat,
129
- kt as ChatContainer,
130
- Nt as ChatForm,
131
- Vt as ChatMessage,
132
- yt as ChatMessages,
118
+ It as Carousel,
119
+ At as CarouselContent,
120
+ Pt as CarouselItem,
121
+ ht as CarouselNext,
122
+ vt as CarouselPrevious,
123
+ Gt as ChartContainer,
124
+ Lt as ChartLegend,
125
+ Bt as ChartLegendContent,
126
+ Rt as ChartStyle,
127
+ wt as ChartTooltip,
128
+ Ht as ChartTooltipContent,
129
+ Nt as Chat,
130
+ yt as ChatContainer,
131
+ zt as ChatForm,
132
+ Ot as ChatMessage,
133
+ Vt as ChatMessages,
133
134
  f as Checkbox,
135
+ ct as CircularProgress,
134
136
  S as Collapsible,
135
137
  c as CollapsibleContent,
136
138
  M as CollapsibleTrigger,
@@ -159,8 +161,8 @@ export {
159
161
  ir as ContextMenuSubTrigger,
160
162
  pr as ContextMenuTrigger,
161
163
  D as CopyButton,
162
- Va as DataRepeatTypes,
163
- Ba as DataTable,
164
+ Oa as DataRepeatTypes,
165
+ wa as DataTable,
164
166
  lr as DatePicker,
165
167
  br as Dialog,
166
168
  dr as DialogContent,
@@ -169,7 +171,7 @@ export {
169
171
  sr as DialogHeader,
170
172
  Sr as DialogTitle,
171
173
  cr as DialogTrigger,
172
- ya as DragStepSizes,
174
+ Va as DragStepSizes,
173
175
  Tr as Drawer,
174
176
  Dr as DrawerContent,
175
177
  Ir as DrawerDescription,
@@ -177,7 +179,7 @@ export {
177
179
  Pr as DrawerHeader,
178
180
  hr as DrawerTitle,
179
181
  vr as DrawerTrigger,
180
- Ot as FilePreview,
182
+ qt as FilePreview,
181
183
  Gr as Form,
182
184
  Lr as FormControl,
183
185
  Br as FormDescription,
@@ -186,8 +188,8 @@ export {
186
188
  Hr as FormLabel,
187
189
  kr as FormMessage,
188
190
  o as Gantt,
189
- ka as GanttConsts,
190
- wa as GanttDimensions,
191
+ ya as GanttConsts,
192
+ ka as GanttDimensions,
191
193
  zr as HoverCard,
192
194
  Vr as HoverCardContent,
193
195
  Er as HoverCardTrigger,
@@ -197,9 +199,9 @@ export {
197
199
  G as InputOTPGroup,
198
200
  L as InputOTPSlot,
199
201
  xr as InputSelector,
200
- qt as InterruptPrompt,
202
+ Kt as InterruptPrompt,
201
203
  R as Label,
202
- Kt as MarkdownRenderer,
204
+ Ut as MarkdownRenderer,
203
205
  jr as Menubar,
204
206
  qr as MenubarCheckboxItem,
205
207
  Jr as MenubarContent,
@@ -216,17 +218,17 @@ export {
216
218
  ro as MenubarSubContent,
217
219
  oo as MenubarSubTrigger,
218
220
  to as MenubarTrigger,
219
- Ut as MessageInput,
220
- Xt as MessageList,
221
+ Xt as MessageInput,
222
+ Zt as MessageList,
221
223
  no as MultipleSelector,
222
- Zt as NavigationMenu,
223
- _t as NavigationMenuContent,
224
- $t as NavigationMenuIndicator,
225
- ea as NavigationMenuItem,
226
- ra as NavigationMenuLink,
227
- oa as NavigationMenuList,
228
- ta as NavigationMenuTrigger,
229
- aa as NavigationMenuViewport,
224
+ $t as NavigationMenu,
225
+ ea as NavigationMenuContent,
226
+ ra as NavigationMenuIndicator,
227
+ oa as NavigationMenuItem,
228
+ ta as NavigationMenuLink,
229
+ aa as NavigationMenuList,
230
+ na as NavigationMenuTrigger,
231
+ ia as NavigationMenuViewport,
230
232
  po as Pagination,
231
233
  mo as PaginationContent,
232
234
  lo as PaginationEllipsis,
@@ -262,29 +264,29 @@ export {
262
264
  jo as SheetHeader,
263
265
  qo as SheetTitle,
264
266
  Jo as SheetTrigger,
265
- ia as Sidebar,
266
- pa as SidebarContent,
267
- ma as SidebarFooter,
268
- la as SidebarGroup,
269
- ua as SidebarGroupAction,
270
- xa as SidebarGroupContent,
271
- ga as SidebarGroupLabel,
272
- ba as SidebarHeader,
273
- da as SidebarInput,
274
- Ca as SidebarInset,
275
- fa as SidebarMenu,
276
- sa as SidebarMenuAction,
277
- Sa as SidebarMenuBadge,
278
- ca as SidebarMenuButton,
279
- Ma as SidebarMenuItem,
280
- Ta as SidebarMenuSkeleton,
281
- Da as SidebarMenuSub,
282
- Ia as SidebarMenuSubButton,
283
- Aa as SidebarMenuSubItem,
284
- Pa as SidebarProvider,
285
- ha as SidebarRail,
286
- va as SidebarSeparator,
287
- Fa as SidebarTrigger,
267
+ ma as Sidebar,
268
+ la as SidebarContent,
269
+ ua as SidebarFooter,
270
+ xa as SidebarGroup,
271
+ ga as SidebarGroupAction,
272
+ ba as SidebarGroupContent,
273
+ da as SidebarGroupLabel,
274
+ Ca as SidebarHeader,
275
+ fa as SidebarInput,
276
+ sa as SidebarInset,
277
+ Sa as SidebarMenu,
278
+ ca as SidebarMenuAction,
279
+ Ma as SidebarMenuBadge,
280
+ Ta as SidebarMenuButton,
281
+ Da as SidebarMenuItem,
282
+ Ia as SidebarMenuSkeleton,
283
+ Aa as SidebarMenuSub,
284
+ Pa as SidebarMenuSubButton,
285
+ ha as SidebarMenuSubItem,
286
+ va as SidebarProvider,
287
+ Fa as SidebarRail,
288
+ Ga as SidebarSeparator,
289
+ La as SidebarTrigger,
288
290
  O as Skeleton,
289
291
  st as Slider,
290
292
  q as Switch,
@@ -314,12 +316,12 @@ export {
314
316
  x as badgeVariants,
315
317
  d as buttonVariants,
316
318
  W as toggleVariants,
317
- qa as useAudioRecording,
318
- Ka as useAutoScroll,
319
- Ua as useAutosizeTextArea,
320
- Xa as useCopyToClipboard,
321
- Za as useDebounce,
319
+ Ka as useAudioRecording,
320
+ Ua as useAutoScroll,
321
+ Xa as useAutosizeTextArea,
322
+ Za as useCopyToClipboard,
323
+ $a as useDebounce,
322
324
  Nr as useFormField,
323
- $a as useIsMobile,
324
- Ga as useSidebar
325
+ rn as useIsMobile,
326
+ Ba as useSidebar
325
327
  };
@@ -3,7 +3,7 @@ import { stringify as w } from "../../comma-separated-tokens/index.js";
3
3
  import { ok as u } from "../../devlop/lib/default.js";
4
4
  import { svg as m, html as C } from "../../property-information/index.js";
5
5
  import { stringify as N } from "../../space-separated-tokens/index.js";
6
- import S from "../../../_virtual/index2.js";
6
+ import S from "../../../_virtual/index3.js";
7
7
  import { whitespace as j } from "../../hast-util-whitespace/lib/index.js";
8
8
  import { name as x } from "../../estree-util-is-identifier-name/lib/index.js";
9
9
  import { VFileMessage as h } from "../../vfile-message/lib/index.js";
@@ -1,5 +1,5 @@
1
1
  "use client";
2
- import { __module as e } from "../../_virtual/index4.js";
2
+ import { __module as e } from "../../_virtual/index2.js";
3
3
  import { __require as t } from "./cjs/react-is.production.min.js";
4
4
  import { __require as o } from "./cjs/react-is.development.js";
5
5
  var r;
@@ -1,5 +1,5 @@
1
1
  "use client";
2
- import { __exports as r } from "../../../_virtual/index5.js";
2
+ import { __exports as r } from "../../../_virtual/index6.js";
3
3
  import { __require as c } from "../../inline-style-parser/index.js";
4
4
  var f;
5
5
  function j() {
@@ -1,6 +1,6 @@
1
1
  "use client";
2
2
  import { bail as P } from "../../bail/index.js";
3
- import y from "../../../_virtual/index3.js";
3
+ import y from "../../../_virtual/index4.js";
4
4
  import z from "../../is-plain-obj/index.js";
5
5
  import { CallableInstance as C } from "./callable-instance.js";
6
6
  import { trough as A } from "../../trough/lib/index.js";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "laif-ds",
3
3
  "private": false,
4
- "version": "0.1.16",
4
+ "version": "0.1.17",
5
5
  "type": "module",
6
6
  "main": "dist/index.es.js",
7
7
  "module": "dist/index.es.js",