@skippr/live-agent-sdk 0.10.0 → 0.11.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.
- package/dist/esm/lib-exports.js +200 -13
- package/package.json +3 -4
package/dist/esm/lib-exports.js
CHANGED
|
@@ -257,12 +257,204 @@ import { twMerge } from "tailwind-merge";
|
|
|
257
257
|
function cn(...inputs) {
|
|
258
258
|
return twMerge(clsx(inputs));
|
|
259
259
|
}
|
|
260
|
+
// ../../node_modules/.bun/lucide-react@0.563.0+83d5fd7b249dbeef/node_modules/lucide-react/dist/esm/createLucideIcon.js
|
|
261
|
+
import { forwardRef as forwardRef2, createElement as createElement2 } from "react";
|
|
260
262
|
|
|
261
|
-
// src/
|
|
262
|
-
|
|
263
|
+
// ../../node_modules/.bun/lucide-react@0.563.0+83d5fd7b249dbeef/node_modules/lucide-react/dist/esm/shared/src/utils/mergeClasses.js
|
|
264
|
+
var mergeClasses = (...classes) => classes.filter((className, index, array) => {
|
|
265
|
+
return Boolean(className) && className.trim() !== "" && array.indexOf(className) === index;
|
|
266
|
+
}).join(" ").trim();
|
|
267
|
+
|
|
268
|
+
// ../../node_modules/.bun/lucide-react@0.563.0+83d5fd7b249dbeef/node_modules/lucide-react/dist/esm/shared/src/utils/toKebabCase.js
|
|
269
|
+
var toKebabCase = (string) => string.replace(/([a-z0-9])([A-Z])/g, "$1-$2").toLowerCase();
|
|
270
|
+
|
|
271
|
+
// ../../node_modules/.bun/lucide-react@0.563.0+83d5fd7b249dbeef/node_modules/lucide-react/dist/esm/shared/src/utils/toCamelCase.js
|
|
272
|
+
var toCamelCase = (string) => string.replace(/^([A-Z])|[\s-_]+(\w)/g, (match, p1, p2) => p2 ? p2.toUpperCase() : p1.toLowerCase());
|
|
273
|
+
|
|
274
|
+
// ../../node_modules/.bun/lucide-react@0.563.0+83d5fd7b249dbeef/node_modules/lucide-react/dist/esm/shared/src/utils/toPascalCase.js
|
|
275
|
+
var toPascalCase = (string) => {
|
|
276
|
+
const camelCase = toCamelCase(string);
|
|
277
|
+
return camelCase.charAt(0).toUpperCase() + camelCase.slice(1);
|
|
278
|
+
};
|
|
279
|
+
|
|
280
|
+
// ../../node_modules/.bun/lucide-react@0.563.0+83d5fd7b249dbeef/node_modules/lucide-react/dist/esm/Icon.js
|
|
281
|
+
import { forwardRef, createElement } from "react";
|
|
282
|
+
|
|
283
|
+
// ../../node_modules/.bun/lucide-react@0.563.0+83d5fd7b249dbeef/node_modules/lucide-react/dist/esm/defaultAttributes.js
|
|
284
|
+
var defaultAttributes = {
|
|
285
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
286
|
+
width: 24,
|
|
287
|
+
height: 24,
|
|
288
|
+
viewBox: "0 0 24 24",
|
|
289
|
+
fill: "none",
|
|
290
|
+
stroke: "currentColor",
|
|
291
|
+
strokeWidth: 2,
|
|
292
|
+
strokeLinecap: "round",
|
|
293
|
+
strokeLinejoin: "round"
|
|
294
|
+
};
|
|
295
|
+
|
|
296
|
+
// ../../node_modules/.bun/lucide-react@0.563.0+83d5fd7b249dbeef/node_modules/lucide-react/dist/esm/shared/src/utils/hasA11yProp.js
|
|
297
|
+
var hasA11yProp = (props) => {
|
|
298
|
+
for (const prop in props) {
|
|
299
|
+
if (prop.startsWith("aria-") || prop === "role" || prop === "title") {
|
|
300
|
+
return true;
|
|
301
|
+
}
|
|
302
|
+
}
|
|
303
|
+
return false;
|
|
304
|
+
};
|
|
305
|
+
|
|
306
|
+
// ../../node_modules/.bun/lucide-react@0.563.0+83d5fd7b249dbeef/node_modules/lucide-react/dist/esm/Icon.js
|
|
307
|
+
var Icon = forwardRef(({
|
|
308
|
+
color = "currentColor",
|
|
309
|
+
size = 24,
|
|
310
|
+
strokeWidth = 2,
|
|
311
|
+
absoluteStrokeWidth,
|
|
312
|
+
className = "",
|
|
313
|
+
children,
|
|
314
|
+
iconNode,
|
|
315
|
+
...rest
|
|
316
|
+
}, ref) => createElement("svg", {
|
|
317
|
+
ref,
|
|
318
|
+
...defaultAttributes,
|
|
319
|
+
width: size,
|
|
320
|
+
height: size,
|
|
321
|
+
stroke: color,
|
|
322
|
+
strokeWidth: absoluteStrokeWidth ? Number(strokeWidth) * 24 / Number(size) : strokeWidth,
|
|
323
|
+
className: mergeClasses("lucide", className),
|
|
324
|
+
...!children && !hasA11yProp(rest) && { "aria-hidden": "true" },
|
|
325
|
+
...rest
|
|
326
|
+
}, [
|
|
327
|
+
...iconNode.map(([tag, attrs]) => createElement(tag, attrs)),
|
|
328
|
+
...Array.isArray(children) ? children : [children]
|
|
329
|
+
]));
|
|
330
|
+
|
|
331
|
+
// ../../node_modules/.bun/lucide-react@0.563.0+83d5fd7b249dbeef/node_modules/lucide-react/dist/esm/createLucideIcon.js
|
|
332
|
+
var createLucideIcon = (iconName, iconNode) => {
|
|
333
|
+
const Component = forwardRef2(({ className, ...props }, ref) => createElement2(Icon, {
|
|
334
|
+
ref,
|
|
335
|
+
iconNode,
|
|
336
|
+
className: mergeClasses(`lucide-${toKebabCase(toPascalCase(iconName))}`, `lucide-${iconName}`, className),
|
|
337
|
+
...props
|
|
338
|
+
}));
|
|
339
|
+
Component.displayName = toPascalCase(iconName);
|
|
340
|
+
return Component;
|
|
341
|
+
};
|
|
263
342
|
|
|
343
|
+
// ../../node_modules/.bun/lucide-react@0.563.0+83d5fd7b249dbeef/node_modules/lucide-react/dist/esm/icons/loader-circle.js
|
|
344
|
+
var __iconNode = [["path", { d: "M21 12a9 9 0 1 1-6.219-8.56", key: "13zald" }]];
|
|
345
|
+
var LoaderCircle = createLucideIcon("loader-circle", __iconNode);
|
|
346
|
+
// ../../node_modules/.bun/lucide-react@0.563.0+83d5fd7b249dbeef/node_modules/lucide-react/dist/esm/icons/message-circle-question-mark.js
|
|
347
|
+
var __iconNode2 = [
|
|
348
|
+
[
|
|
349
|
+
"path",
|
|
350
|
+
{
|
|
351
|
+
d: "M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719",
|
|
352
|
+
key: "1sd12s"
|
|
353
|
+
}
|
|
354
|
+
],
|
|
355
|
+
["path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3", key: "1u773s" }],
|
|
356
|
+
["path", { d: "M12 17h.01", key: "p32p05" }]
|
|
357
|
+
];
|
|
358
|
+
var MessageCircleQuestionMark = createLucideIcon("message-circle-question-mark", __iconNode2);
|
|
359
|
+
// ../../node_modules/.bun/lucide-react@0.563.0+83d5fd7b249dbeef/node_modules/lucide-react/dist/esm/icons/send-horizontal.js
|
|
360
|
+
var __iconNode3 = [
|
|
361
|
+
[
|
|
362
|
+
"path",
|
|
363
|
+
{
|
|
364
|
+
d: "M3.714 3.048a.498.498 0 0 0-.683.627l2.843 7.627a2 2 0 0 1 0 1.396l-2.842 7.627a.498.498 0 0 0 .682.627l18-8.5a.5.5 0 0 0 0-.904z",
|
|
365
|
+
key: "117uat"
|
|
366
|
+
}
|
|
367
|
+
],
|
|
368
|
+
["path", { d: "M6 12h16", key: "s4cdu5" }]
|
|
369
|
+
];
|
|
370
|
+
var SendHorizontal = createLucideIcon("send-horizontal", __iconNode3);
|
|
371
|
+
// ../../node_modules/.bun/lucide-react@0.563.0+83d5fd7b249dbeef/node_modules/lucide-react/dist/esm/icons/bot.js
|
|
372
|
+
var __iconNode4 = [
|
|
373
|
+
["path", { d: "M12 8V4H8", key: "hb8ula" }],
|
|
374
|
+
["rect", { width: "16", height: "12", x: "4", y: "8", rx: "2", key: "enze0r" }],
|
|
375
|
+
["path", { d: "M2 14h2", key: "vft8re" }],
|
|
376
|
+
["path", { d: "M20 14h2", key: "4cs60a" }],
|
|
377
|
+
["path", { d: "M15 13v2", key: "1xurst" }],
|
|
378
|
+
["path", { d: "M9 13v2", key: "rq6x2g" }]
|
|
379
|
+
];
|
|
380
|
+
var Bot = createLucideIcon("bot", __iconNode4);
|
|
381
|
+
// ../../node_modules/.bun/lucide-react@0.563.0+83d5fd7b249dbeef/node_modules/lucide-react/dist/esm/icons/check.js
|
|
382
|
+
var __iconNode5 = [["path", { d: "M20 6 9 17l-5-5", key: "1gmf2c" }]];
|
|
383
|
+
var Check = createLucideIcon("check", __iconNode5);
|
|
384
|
+
// ../../node_modules/.bun/lucide-react@0.563.0+83d5fd7b249dbeef/node_modules/lucide-react/dist/esm/icons/circle.js
|
|
385
|
+
var __iconNode6 = [["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }]];
|
|
386
|
+
var Circle = createLucideIcon("circle", __iconNode6);
|
|
387
|
+
// ../../node_modules/.bun/lucide-react@0.563.0+83d5fd7b249dbeef/node_modules/lucide-react/dist/esm/icons/message-circle.js
|
|
388
|
+
var __iconNode7 = [
|
|
389
|
+
[
|
|
390
|
+
"path",
|
|
391
|
+
{
|
|
392
|
+
d: "M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719",
|
|
393
|
+
key: "1sd12s"
|
|
394
|
+
}
|
|
395
|
+
]
|
|
396
|
+
];
|
|
397
|
+
var MessageCircle = createLucideIcon("message-circle", __iconNode7);
|
|
398
|
+
// ../../node_modules/.bun/lucide-react@0.563.0+83d5fd7b249dbeef/node_modules/lucide-react/dist/esm/icons/mic-off.js
|
|
399
|
+
var __iconNode8 = [
|
|
400
|
+
["path", { d: "M12 19v3", key: "npa21l" }],
|
|
401
|
+
["path", { d: "M15 9.34V5a3 3 0 0 0-5.68-1.33", key: "1gzdoj" }],
|
|
402
|
+
["path", { d: "M16.95 16.95A7 7 0 0 1 5 12v-2", key: "cqa7eg" }],
|
|
403
|
+
["path", { d: "M18.89 13.23A7 7 0 0 0 19 12v-2", key: "16hl24" }],
|
|
404
|
+
["path", { d: "m2 2 20 20", key: "1ooewy" }],
|
|
405
|
+
["path", { d: "M9 9v3a3 3 0 0 0 5.12 2.12", key: "r2i35w" }]
|
|
406
|
+
];
|
|
407
|
+
var MicOff = createLucideIcon("mic-off", __iconNode8);
|
|
408
|
+
// ../../node_modules/.bun/lucide-react@0.563.0+83d5fd7b249dbeef/node_modules/lucide-react/dist/esm/icons/mic.js
|
|
409
|
+
var __iconNode9 = [
|
|
410
|
+
["path", { d: "M12 19v3", key: "npa21l" }],
|
|
411
|
+
["path", { d: "M19 10v2a7 7 0 0 1-14 0v-2", key: "1vc78b" }],
|
|
412
|
+
["rect", { x: "9", y: "2", width: "6", height: "13", rx: "3", key: "s6n7sd" }]
|
|
413
|
+
];
|
|
414
|
+
var Mic = createLucideIcon("mic", __iconNode9);
|
|
415
|
+
// ../../node_modules/.bun/lucide-react@0.563.0+83d5fd7b249dbeef/node_modules/lucide-react/dist/esm/icons/monitor-off.js
|
|
416
|
+
var __iconNode10 = [
|
|
417
|
+
["path", { d: "M12 17v4", key: "1riwvh" }],
|
|
418
|
+
["path", { d: "M17 17H4a2 2 0 0 1-2-2V5a2 2 0 0 1 1.184-1.826", key: "cv7jms" }],
|
|
419
|
+
["path", { d: "m2 2 20 20", key: "1ooewy" }],
|
|
420
|
+
["path", { d: "M8 21h8", key: "1ev6f3" }],
|
|
421
|
+
["path", { d: "M8.656 3H20a2 2 0 0 1 2 2v10a2 2 0 0 1-.293 1.042", key: "z8ni2w" }]
|
|
422
|
+
];
|
|
423
|
+
var MonitorOff = createLucideIcon("monitor-off", __iconNode10);
|
|
424
|
+
// ../../node_modules/.bun/lucide-react@0.563.0+83d5fd7b249dbeef/node_modules/lucide-react/dist/esm/icons/monitor.js
|
|
425
|
+
var __iconNode11 = [
|
|
426
|
+
["rect", { width: "20", height: "14", x: "2", y: "3", rx: "2", key: "48i651" }],
|
|
427
|
+
["line", { x1: "8", x2: "16", y1: "21", y2: "21", key: "1svkeh" }],
|
|
428
|
+
["line", { x1: "12", x2: "12", y1: "17", y2: "21", key: "vw1qmm" }]
|
|
429
|
+
];
|
|
430
|
+
var Monitor = createLucideIcon("monitor", __iconNode11);
|
|
431
|
+
// ../../node_modules/.bun/lucide-react@0.563.0+83d5fd7b249dbeef/node_modules/lucide-react/dist/esm/icons/phone-off.js
|
|
432
|
+
var __iconNode12 = [
|
|
433
|
+
[
|
|
434
|
+
"path",
|
|
435
|
+
{
|
|
436
|
+
d: "M10.1 13.9a14 14 0 0 0 3.732 2.668 1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2 18 18 0 0 1-12.728-5.272",
|
|
437
|
+
key: "1wngk7"
|
|
438
|
+
}
|
|
439
|
+
],
|
|
440
|
+
["path", { d: "M22 2 2 22", key: "y4kqgn" }],
|
|
441
|
+
[
|
|
442
|
+
"path",
|
|
443
|
+
{
|
|
444
|
+
d: "M4.76 13.582A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 .244.473",
|
|
445
|
+
key: "10hv5p"
|
|
446
|
+
}
|
|
447
|
+
]
|
|
448
|
+
];
|
|
449
|
+
var PhoneOff = createLucideIcon("phone-off", __iconNode12);
|
|
450
|
+
// ../../node_modules/.bun/lucide-react@0.563.0+83d5fd7b249dbeef/node_modules/lucide-react/dist/esm/icons/x.js
|
|
451
|
+
var __iconNode13 = [
|
|
452
|
+
["path", { d: "M18 6 6 18", key: "1bl5f8" }],
|
|
453
|
+
["path", { d: "m6 6 12 12", key: "d8bk6v" }]
|
|
454
|
+
];
|
|
455
|
+
var X = createLucideIcon("x", __iconNode13);
|
|
264
456
|
// src/components/ui/button.tsx
|
|
265
|
-
import { forwardRef } from "react";
|
|
457
|
+
import { forwardRef as forwardRef3 } from "react";
|
|
266
458
|
import { jsx } from "react/jsx-runtime";
|
|
267
459
|
var variantClasses = {
|
|
268
460
|
default: "skippr:bg-primary skippr:text-primary-foreground skippr:hover:bg-primary/90",
|
|
@@ -281,7 +473,7 @@ var sizeClasses = {
|
|
|
281
473
|
"icon-sm": "skippr:size-8",
|
|
282
474
|
"icon-lg": "skippr:size-10"
|
|
283
475
|
};
|
|
284
|
-
var Button =
|
|
476
|
+
var Button = forwardRef3(({ className, variant = "default", size = "default", ...props }, ref) => {
|
|
285
477
|
return /* @__PURE__ */ jsx("button", {
|
|
286
478
|
className: cn("skippr:inline-flex skippr:items-center skippr:justify-center skippr:gap-2 skippr:whitespace-nowrap skippr:rounded-md skippr:text-sm skippr:font-medium skippr:ring-offset-background skippr:transition-all skippr:focus-visible:outline-none skippr:focus-visible:ring-2 skippr:focus-visible:ring-ring skippr:focus-visible:ring-offset-2 skippr:disabled:pointer-events-none skippr:disabled:opacity-50 skippr:shrink-0 skippr:[&_svg]:pointer-events-none skippr:[&_svg:not([class*='size-'])]:size-4 skippr:[&_svg]:shrink-0", variantClasses[variant], sizeClasses[size], className),
|
|
287
479
|
ref,
|
|
@@ -325,7 +517,6 @@ function ChatHeader({ onClose }) {
|
|
|
325
517
|
// src/components/MeetingControls.tsx
|
|
326
518
|
import { useLocalParticipant as useLocalParticipant3 } from "@livekit/components-react";
|
|
327
519
|
import { ScreenSharePresets } from "livekit-client";
|
|
328
|
-
import { Mic, MicOff, Monitor, MonitorOff, PhoneOff } from "lucide-react";
|
|
329
520
|
import { useCallback as useCallback4, useEffect as useEffect2, useState as useState3 } from "react";
|
|
330
521
|
|
|
331
522
|
// src/lib/format.ts
|
|
@@ -418,7 +609,6 @@ function MeetingControls({ onHangUp }) {
|
|
|
418
609
|
import { useEffect as useEffect3, useRef } from "react";
|
|
419
610
|
|
|
420
611
|
// src/components/ChatInput.tsx
|
|
421
|
-
import { SendHorizontal } from "lucide-react";
|
|
422
612
|
import { useState as useState4 } from "react";
|
|
423
613
|
import { jsx as jsx4, jsxs as jsxs3 } from "react/jsx-runtime";
|
|
424
614
|
function ChatInput({ sendChatMessage, isSendingChat }) {
|
|
@@ -533,7 +723,6 @@ function MessageList({
|
|
|
533
723
|
}
|
|
534
724
|
|
|
535
725
|
// src/components/QuickActions.tsx
|
|
536
|
-
import { Loader2, MessageCircleQuestion } from "lucide-react";
|
|
537
726
|
import { jsx as jsx8, jsxs as jsxs6 } from "react/jsx-runtime";
|
|
538
727
|
function QuickActions({ onStartSession, isStarting, error }) {
|
|
539
728
|
return /* @__PURE__ */ jsxs6("div", {
|
|
@@ -549,9 +738,9 @@ function QuickActions({ onStartSession, isStarting, error }) {
|
|
|
549
738
|
onClick: onStartSession,
|
|
550
739
|
disabled: isStarting,
|
|
551
740
|
children: [
|
|
552
|
-
isStarting ? /* @__PURE__ */ jsx8(
|
|
741
|
+
isStarting ? /* @__PURE__ */ jsx8(LoaderCircle, {
|
|
553
742
|
className: "skippr:size-4 skippr:animate-spin skippr:text-primary"
|
|
554
|
-
}) : /* @__PURE__ */ jsx8(
|
|
743
|
+
}) : /* @__PURE__ */ jsx8(MessageCircleQuestionMark, {
|
|
555
744
|
className: "skippr:size-4 skippr:text-primary"
|
|
556
745
|
}),
|
|
557
746
|
isStarting ? "Starting..." : "Start Session"
|
|
@@ -566,7 +755,6 @@ function QuickActions({ onStartSession, isStarting, error }) {
|
|
|
566
755
|
}
|
|
567
756
|
|
|
568
757
|
// src/components/SessionAgenda.tsx
|
|
569
|
-
import { Check, Circle, Loader2 as Loader22 } from "lucide-react";
|
|
570
758
|
import { jsx as jsx9, jsxs as jsxs7 } from "react/jsx-runtime";
|
|
571
759
|
function SessionAgenda({ phases, questions = [] }) {
|
|
572
760
|
if (phases.length === 0) {
|
|
@@ -639,7 +827,7 @@ function PhaseIcon({ status }) {
|
|
|
639
827
|
});
|
|
640
828
|
}
|
|
641
829
|
if (status === "active") {
|
|
642
|
-
return /* @__PURE__ */ jsx9(
|
|
830
|
+
return /* @__PURE__ */ jsx9(LoaderCircle, {
|
|
643
831
|
className: "skippr:size-4 skippr:shrink-0 skippr:text-primary skippr:animate-spin"
|
|
644
832
|
});
|
|
645
833
|
}
|
|
@@ -735,7 +923,6 @@ function ConnectedContent({ onDisconnect }) {
|
|
|
735
923
|
}
|
|
736
924
|
|
|
737
925
|
// src/components/SidebarTrigger.tsx
|
|
738
|
-
import { MessageCircle, X as X2 } from "lucide-react";
|
|
739
926
|
import { jsx as jsx11 } from "react/jsx-runtime";
|
|
740
927
|
var TRIGGER_GAP = 16;
|
|
741
928
|
var TRIGGER_DEFAULT_RIGHT = 24;
|
|
@@ -747,7 +934,7 @@ function SidebarTrigger() {
|
|
|
747
934
|
className: "skippr:fixed skippr:bottom-6 skippr:z-[9998] skippr:size-14 skippr:rounded-full skippr:shadow-lg skippr:transition-all skippr:duration-300",
|
|
748
935
|
style: { right: isPanelOpen ? SIDEBAR_WIDTH + TRIGGER_GAP : TRIGGER_DEFAULT_RIGHT },
|
|
749
936
|
title: isPanelOpen ? "Close chat" : "Chat with us",
|
|
750
|
-
children: isPanelOpen ? /* @__PURE__ */ jsx11(
|
|
937
|
+
children: isPanelOpen ? /* @__PURE__ */ jsx11(X, {
|
|
751
938
|
className: "skippr:size-6"
|
|
752
939
|
}) : /* @__PURE__ */ jsx11(MessageCircle, {
|
|
753
940
|
className: "skippr:size-6"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skippr/live-agent-sdk",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/esm/lib-exports.js",
|
|
6
6
|
"module": "dist/esm/lib-exports.js",
|
|
@@ -32,14 +32,14 @@
|
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"clsx": "2.1.1",
|
|
35
|
+
"lucide-react": "0.563.0",
|
|
35
36
|
"tailwind-merge": "3.4.0"
|
|
36
37
|
},
|
|
37
38
|
"peerDependencies": {
|
|
38
39
|
"react": "^18 || ^19",
|
|
39
40
|
"react-dom": "^18 || ^19",
|
|
40
41
|
"livekit-client": "^2.0.0",
|
|
41
|
-
"@livekit/components-react": "^2.0.0"
|
|
42
|
-
"lucide-react": ">=0.300.0 <1.0.0"
|
|
42
|
+
"@livekit/components-react": "^2.0.0"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@biomejs/biome": "^2.3.13",
|
|
@@ -53,7 +53,6 @@
|
|
|
53
53
|
"@types/react-dom": "19.2.3",
|
|
54
54
|
"bun-plugin-tailwind": "0.1.2",
|
|
55
55
|
"livekit-client": "2.17.1",
|
|
56
|
-
"lucide-react": "0.563.0",
|
|
57
56
|
"react": "19.2.3",
|
|
58
57
|
"react-dom": "19.2.3",
|
|
59
58
|
"release-it": "^19.0.0",
|