@realtimexsco/live-chat 1.1.0 → 1.3.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/styles.css CHANGED
@@ -155,17 +155,222 @@
155
155
  .animate-progress {
156
156
  animation: progress 1.5s infinite linear;
157
157
  }
158
+ /* Chat panel design tokens & utilities */
158
159
 
159
- /* Chat panel utilities (synced from live-chat-frontend) */
160
- .chat-shell {
160
+ @property --chat-surface {
161
+ syntax: '<color>';
162
+ inherits: true;
163
+ initial-value: #ffffff;
164
+ }
165
+
166
+ @property --chat-canvas {
167
+ syntax: '<color>';
168
+ inherits: true;
169
+ initial-value: #f0f2f5;
170
+ }
171
+
172
+ @property --chat-main-bg {
173
+ syntax: '<color>';
174
+ inherits: true;
175
+ initial-value: #f8f9fb;
176
+ }
177
+
178
+ @property --chat-text {
179
+ syntax: '<color>';
180
+ inherits: true;
181
+ initial-value: #0f172a;
182
+ }
183
+
184
+ @property --chat-muted {
185
+ syntax: '<color>';
186
+ inherits: true;
187
+ initial-value: #64748b;
188
+ }
189
+
190
+ @property --chat-input-bg {
191
+ syntax: '<color>';
192
+ inherits: true;
193
+ initial-value: #f4f6f8;
194
+ }
195
+
196
+ @property --chat-incoming-bubble {
197
+ syntax: '<color>';
198
+ inherits: true;
199
+ initial-value: #eef0f3;
200
+ }
201
+
202
+ @property --chat-incoming-text {
203
+ syntax: '<color>';
204
+ inherits: true;
205
+ initial-value: #1e293b;
206
+ }
207
+
208
+ @property --chat-elevated {
209
+ syntax: '<color>';
210
+ inherits: true;
211
+ initial-value: #f8fafc;
212
+ }
213
+
214
+ @property --chat-elevated-icon {
215
+ syntax: '<color>';
216
+ inherits: true;
217
+ initial-value: #ffffff;
218
+ }
219
+
220
+ @property --chat-hover-color {
221
+ syntax: '<color>';
222
+ inherits: true;
223
+ initial-value: rgba(15, 23, 42, 0.04);
224
+ }
225
+
226
+ @property --chat-search-bg {
227
+ syntax: '<color>';
228
+ inherits: true;
229
+ initial-value: #ffffff;
230
+ }
231
+
232
+ @property --chat-danger-text {
233
+ syntax: '<color>';
234
+ inherits: true;
235
+ initial-value: #dc2626;
236
+ }
237
+
238
+ @property --chat-warning-text {
239
+ syntax: '<color>';
240
+ inherits: true;
241
+ initial-value: #d97706;
242
+ }
243
+
244
+ @property --chat-border-color {
245
+ syntax: '<color>';
246
+ inherits: true;
247
+ initial-value: rgba(15, 23, 42, 0.07);
248
+ }
249
+
250
+ .chat-shell,
251
+ .chat-theme-scope {
161
252
  --chat-surface: #ffffff;
162
- --chat-canvas: #f4f5f7;
163
- --chat-border: rgba(15, 23, 42, 0.08);
164
- --chat-muted: #64748b;
165
- --chat-text: #0f172a;
253
+ --chat-canvas: #eef1f5;
254
+ --chat-main-bg: #f7f8fb;
255
+ --chat-border-color: rgba(15, 23, 42, 0.08);
256
+ --chat-border: var(--chat-border-color);
257
+ --chat-muted: #6b7280;
258
+ --chat-text: #111827;
259
+ --chat-text-secondary: #4b5563;
260
+ --chat-hover-color: rgba(17, 24, 39, 0.045);
261
+ --chat-hover: var(--chat-hover-color);
262
+ --chat-selected: color-mix(in srgb, var(--chat-theme) 10%, transparent);
263
+ --chat-incoming-bubble: #ffffff;
264
+ --chat-incoming-text: #1f2937;
265
+ --chat-input-bg: #f5f6f8;
266
+ --chat-scrollbar: rgba(17, 24, 39, 0.16);
267
+ --chat-online: #16a34a;
268
+ --chat-unread-badge: #f97316;
269
+ --chat-date-pill-bg: rgba(255, 255, 255, 0.82);
270
+ --chat-shadow: 0 18px 60px rgba(15, 23, 42, 0.12);
271
+ --chat-empty-icon-bg: #f9fafb;
272
+ --chat-toolbar-bg: rgba(255, 255, 255, 0.96);
273
+ --chat-elevated: #f9fafb;
274
+ --chat-elevated-icon: #ffffff;
275
+ --chat-search-bg: #ffffff;
276
+ --chat-danger-text: #dc2626;
277
+ --chat-warning-text: #b45309;
278
+ --chat-message-pattern: radial-gradient(circle at 1px 1px, rgba(17, 24, 39, 0.055) 1px, transparent 0);
279
+ color-scheme: light;
280
+ --background: var(--chat-surface);
281
+ --foreground: var(--chat-text);
282
+ --muted-foreground: var(--chat-muted);
283
+ --border: var(--chat-border);
284
+ --input: var(--chat-input-bg);
285
+ --accent: var(--chat-hover);
286
+ --accent-foreground: var(--chat-text);
287
+ --popover: var(--chat-surface);
288
+ --popover-foreground: var(--chat-text);
289
+ --card: var(--chat-surface);
290
+ --card-foreground: var(--chat-text);
291
+ --secondary: var(--chat-input-bg);
292
+ --secondary-foreground: var(--chat-text);
166
293
  }
167
294
 
168
- .chat-shell h1 {
295
+ .chat-theme-shell:not(.chat-theme-no-transition),
296
+ .chat-theme-scope:not(.chat-theme-no-transition),
297
+ .chat-shell:not(.chat-theme-no-transition) {
298
+ transition:
299
+ --chat-surface 0.4s ease,
300
+ --chat-canvas 0.4s ease,
301
+ --chat-main-bg 0.4s ease,
302
+ --chat-text 0.4s ease,
303
+ --chat-muted 0.4s ease,
304
+ --chat-input-bg 0.4s ease,
305
+ --chat-incoming-bubble 0.4s ease,
306
+ --chat-incoming-text 0.4s ease,
307
+ --chat-elevated 0.4s ease,
308
+ --chat-elevated-icon 0.4s ease,
309
+ --chat-search-bg 0.4s ease,
310
+ --chat-danger-text 0.4s ease,
311
+ --chat-warning-text 0.4s ease,
312
+ --chat-hover-color 0.4s ease,
313
+ --chat-border-color 0.4s ease,
314
+ background-color 0.4s ease,
315
+ color 0.4s ease,
316
+ border-color 0.4s ease;
317
+ }
318
+
319
+ @media (prefers-reduced-motion: reduce) {
320
+ .chat-theme-shell:not(.chat-theme-no-transition),
321
+ .chat-theme-scope:not(.chat-theme-no-transition),
322
+ .chat-shell:not(.chat-theme-no-transition) {
323
+ transition: none;
324
+ }
325
+ }
326
+
327
+ .chat-shell.dark,
328
+ .chat-theme-scope.dark {
329
+ --chat-surface: #17191f;
330
+ --chat-canvas: #0d0f14;
331
+ --chat-main-bg: #11141a;
332
+ --chat-border-color: rgba(255, 255, 255, 0.1);
333
+ --chat-border: var(--chat-border-color);
334
+ --chat-muted: #9ca3af;
335
+ --chat-text: #f8fafc;
336
+ --chat-text-secondary: #d1d5db;
337
+ --chat-hover-color: rgba(255, 255, 255, 0.06);
338
+ --chat-hover: var(--chat-hover-color);
339
+ --chat-selected: color-mix(in srgb, var(--chat-theme) 20%, transparent);
340
+ --chat-incoming-bubble: #20242c;
341
+ --chat-incoming-text: #f1f5f9;
342
+ --chat-input-bg: #20242b;
343
+ --chat-scrollbar: rgba(255, 255, 255, 0.16);
344
+ --chat-online: #22c55e;
345
+ --chat-unread-badge: #fb923c;
346
+ --chat-date-pill-bg: rgba(23, 25, 31, 0.84);
347
+ --chat-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
348
+ --chat-empty-icon-bg: #20242b;
349
+ --chat-toolbar-bg: rgba(23, 25, 31, 0.96);
350
+ --chat-elevated: #20242c;
351
+ --chat-elevated-icon: #17191f;
352
+ --chat-search-bg: #20242b;
353
+ --chat-danger-text: #f87171;
354
+ --chat-warning-text: #fbbf24;
355
+ --chat-message-pattern: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.045) 1px, transparent 0);
356
+ color-scheme: dark;
357
+ --background: var(--chat-surface);
358
+ --foreground: var(--chat-text);
359
+ --muted-foreground: var(--chat-muted);
360
+ --border: var(--chat-border);
361
+ --input: var(--chat-input-bg);
362
+ --accent: var(--chat-hover);
363
+ --accent-foreground: var(--chat-text);
364
+ --popover: var(--chat-surface);
365
+ --popover-foreground: var(--chat-text);
366
+ --card: var(--chat-surface);
367
+ --card-foreground: var(--chat-text);
368
+ --secondary: var(--chat-input-bg);
369
+ --secondary-foreground: var(--chat-text);
370
+ }
371
+
372
+ .chat-shell h1,
373
+ .chat-theme-scope h1 {
169
374
  font-size: 0.9375rem;
170
375
  line-height: 1.25rem;
171
376
  font-weight: 600;
@@ -175,11 +380,12 @@
175
380
 
176
381
  .chat-message-scroll {
177
382
  scrollbar-width: thin;
178
- scrollbar-color: rgba(15, 23, 42, 0.15) transparent;
383
+ scrollbar-color: var(--chat-scrollbar) transparent;
384
+ scrollbar-gutter: stable;
179
385
  }
180
386
 
181
387
  .chat-message-scroll::-webkit-scrollbar {
182
- width: 6px;
388
+ width: 5px;
183
389
  }
184
390
 
185
391
  .chat-message-scroll::-webkit-scrollbar-track {
@@ -187,10 +393,371 @@
187
393
  }
188
394
 
189
395
  .chat-message-scroll::-webkit-scrollbar-thumb {
190
- background: rgba(15, 23, 42, 0.12);
396
+ background: var(--chat-scrollbar);
191
397
  border-radius: 999px;
192
398
  }
193
399
 
194
400
  .chat-message-scroll::-webkit-scrollbar-thumb:hover {
195
- background: rgba(15, 23, 42, 0.22);
401
+ background: color-mix(in srgb, var(--chat-scrollbar) 80%, var(--chat-text) 20%);
402
+ }
403
+
404
+ .chat-sidebar-scroll {
405
+ scrollbar-width: thin;
406
+ scrollbar-color: var(--chat-scrollbar) transparent;
407
+ }
408
+
409
+ .chat-sidebar-scroll [data-slot="scroll-area-scrollbar"][data-orientation="vertical"] {
410
+ width: 8px;
411
+ padding: 8px 4px;
412
+ border-left: none;
413
+ }
414
+
415
+ .chat-sidebar-scroll [data-slot="scroll-area-thumb"] {
416
+ background: var(--chat-scrollbar);
417
+ border-radius: 999px;
418
+ }
419
+
420
+ .chat-sidebar-scroll [data-slot="scroll-area-viewport"] > div {
421
+ padding-right: 6px;
422
+ }
423
+
424
+ .chat-sidebar-scroll::-webkit-scrollbar {
425
+ width: 4px;
426
+ }
427
+
428
+ .chat-sidebar-scroll::-webkit-scrollbar-track {
429
+ background: transparent;
430
+ }
431
+
432
+ .chat-sidebar-scroll::-webkit-scrollbar-thumb {
433
+ background: var(--chat-scrollbar);
434
+ border-radius: 999px;
435
+ }
436
+
437
+ @keyframes chat-typing-dot {
438
+ 0%, 60%, 100% { opacity: 0.35; }
439
+ 30% { opacity: 1; }
440
+ }
441
+
442
+ .chat-typing-dots span {
443
+ animation: chat-typing-dot 1.4s infinite;
444
+ }
445
+
446
+ .chat-typing-dots span:nth-child(2) { animation-delay: 0.2s; }
447
+ .chat-typing-dots span:nth-child(3) { animation-delay: 0.4s; }
448
+
449
+ .chat-date-divider {
450
+ position: sticky;
451
+ top: 0.375rem;
452
+ z-index: 20;
453
+ display: flex;
454
+ justify-content: center;
455
+ padding: 0.25rem 0;
456
+ margin-bottom: 0.5rem;
457
+ pointer-events: none;
458
+ }
459
+
460
+ .chat-date-divider-pill {
461
+ border-radius: 9999px;
462
+ border: 1px solid var(--chat-border);
463
+ background: var(--chat-date-pill-bg);
464
+ padding: 0.2rem 0.65rem;
465
+ font-size: 0.6875rem;
466
+ font-weight: 500;
467
+ line-height: 1.25;
468
+ color: var(--chat-muted);
469
+ box-shadow: 0 6px 18px color-mix(in srgb, var(--chat-text) 8%, transparent);
470
+ backdrop-filter: blur(14px);
471
+ }
472
+
473
+ @keyframes chat-message-enter {
474
+ from {
475
+ opacity: 0;
476
+ transform: translateY(10px);
477
+ }
478
+ to {
479
+ opacity: 1;
480
+ transform: translateY(0);
481
+ }
482
+ }
483
+
484
+ .chat-message-enter {
485
+ animation: chat-message-enter 0.24s cubic-bezier(0.22, 1, 0.36, 1) both;
486
+ }
487
+
488
+ @media (prefers-reduced-motion: reduce) {
489
+ .chat-message-enter {
490
+ animation: none;
491
+ }
492
+ }
493
+
494
+ .chat-message-canvas {
495
+ background-color: var(--chat-main-bg);
496
+ background-image: var(--chat-message-pattern);
497
+ background-size: 22px 22px;
498
+ }
499
+
500
+ @keyframes chat-saved-empty-float {
501
+ 0%, 100% { transform: translateY(0); }
502
+ 50% { transform: translateY(-5px); }
503
+ }
504
+
505
+ @keyframes chat-saved-empty-pulse {
506
+ 0%, 100% { transform: scale(1); }
507
+ 50% { transform: scale(1.04); }
508
+ }
509
+
510
+ @keyframes chat-saved-empty-ring {
511
+ 0% {
512
+ box-shadow: 0 0 0 0 color-mix(in srgb, var(--chat-theme) 18%, transparent);
513
+ }
514
+ 70% {
515
+ box-shadow: 0 0 0 12px transparent;
516
+ }
517
+ 100% {
518
+ box-shadow: 0 0 0 0 transparent;
519
+ }
520
+ }
521
+
522
+ .chat-saved-empty {
523
+ animation: chat-saved-empty-fade-in 0.45s ease-out both;
524
+ }
525
+
526
+ @keyframes chat-saved-empty-fade-in {
527
+ from {
528
+ opacity: 0;
529
+ transform: translateY(8px);
530
+ }
531
+ to {
532
+ opacity: 1;
533
+ transform: translateY(0);
534
+ }
535
+ }
536
+
537
+ .chat-saved-empty-icon-wrap {
538
+ position: relative;
539
+ display: flex;
540
+ width: 3.5rem;
541
+ height: 3.5rem;
542
+ align-items: center;
543
+ justify-content: center;
544
+ border-radius: 9999px;
545
+ background: var(--chat-input-bg);
546
+ animation: chat-saved-empty-pulse 2.5s ease-in-out infinite;
547
+ }
548
+
549
+ .chat-saved-empty-icon-wrap::after {
550
+ content: "";
551
+ position: absolute;
552
+ inset: 0;
553
+ border-radius: inherit;
554
+ animation: chat-saved-empty-ring 2.5s ease-out infinite;
555
+ }
556
+
557
+ .chat-saved-empty-icon {
558
+ position: relative;
559
+ z-index: 1;
560
+ color: var(--chat-muted);
561
+ animation: chat-saved-empty-float 2.5s ease-in-out infinite;
562
+ }
563
+
564
+ @media (prefers-reduced-motion: reduce) {
565
+ .chat-saved-empty,
566
+ .chat-saved-empty-icon-wrap,
567
+ .chat-saved-empty-icon,
568
+ .chat-saved-empty-icon-wrap::after {
569
+ animation: none;
570
+ }
571
+ }
572
+
573
+ /* Portaled overlay controls */
574
+ .chat-theme-scope [data-slot="dialog-close"],
575
+ .chat-theme-scope [data-slot="sheet-close"] {
576
+ color: var(--chat-muted);
577
+ opacity: 1;
578
+ }
579
+
580
+ .chat-theme-scope [data-slot="dialog-close"]:hover,
581
+ .chat-theme-scope [data-slot="sheet-close"]:hover {
582
+ color: var(--chat-text);
583
+ background: var(--chat-hover);
584
+ }
585
+
586
+ .chat-shell input::placeholder,
587
+ .chat-shell textarea::placeholder,
588
+ .chat-theme-scope input::placeholder,
589
+ .chat-theme-scope textarea::placeholder {
590
+ color: var(--chat-muted);
591
+ opacity: 0.85;
592
+ }
593
+
594
+ .chat-shell [data-slot="input"],
595
+ .chat-theme-scope [data-slot="input"] {
596
+ background-color: var(--chat-input-bg);
597
+ color: var(--chat-text);
598
+ border-color: var(--chat-border);
599
+ }
600
+
601
+ .chat-shell [data-slot="textarea"],
602
+ .chat-theme-scope [data-slot="textarea"] {
603
+ background-color: transparent;
604
+ color: var(--chat-text);
605
+ }
606
+
607
+ .chat-shell [data-slot="button"][data-variant="outline"],
608
+ .chat-theme-scope [data-slot="button"][data-variant="outline"] {
609
+ background-color: var(--chat-surface);
610
+ border-color: var(--chat-border);
611
+ color: var(--chat-text);
612
+ box-shadow: none;
613
+ }
614
+
615
+ .chat-shell [data-slot="button"][data-variant="outline"]:hover,
616
+ .chat-theme-scope [data-slot="button"][data-variant="outline"]:hover {
617
+ background-color: var(--chat-hover);
618
+ color: var(--chat-text);
619
+ }
620
+
621
+ .chat-theme-scope select,
622
+ .chat-theme-scope select option {
623
+ background-color: var(--chat-input-bg);
624
+ color: var(--chat-text);
625
+ }
626
+
627
+ .chat-theme-scope select option:checked {
628
+ background-color: var(--chat-selected);
629
+ color: var(--chat-text);
630
+ }
631
+
632
+ /* Custom audio player progress */
633
+ .chat-audio-progress {
634
+ -webkit-appearance: none;
635
+ appearance: none;
636
+ height: 4px;
637
+ border-radius: 999px;
638
+ background: linear-gradient(
639
+ to right,
640
+ var(--chat-theme) 0%,
641
+ var(--chat-theme) var(--chat-audio-progress, 0%),
642
+ color-mix(in srgb, var(--chat-border) 70%, transparent) var(--chat-audio-progress, 0%),
643
+ color-mix(in srgb, var(--chat-border) 70%, transparent) 100%
644
+ );
645
+ outline: none;
646
+ cursor: pointer;
647
+ }
648
+
649
+ .chat-audio-progress::-webkit-slider-thumb {
650
+ -webkit-appearance: none;
651
+ appearance: none;
652
+ width: 10px;
653
+ height: 10px;
654
+ border-radius: 50%;
655
+ background: var(--chat-theme);
656
+ border: 2px solid white;
657
+ box-shadow: 0 0 0 1px color-mix(in srgb, var(--chat-border) 50%, transparent);
658
+ cursor: pointer;
659
+ }
660
+
661
+ .chat-audio-progress::-moz-range-thumb {
662
+ width: 10px;
663
+ height: 10px;
664
+ border-radius: 50%;
665
+ background: var(--chat-theme);
666
+ border: 2px solid white;
667
+ box-shadow: 0 0 0 1px color-mix(in srgb, var(--chat-border) 50%, transparent);
668
+ cursor: pointer;
669
+ }
670
+
671
+ .chat-audio-progress:disabled {
672
+ opacity: 0.45;
673
+ cursor: not-allowed;
674
+ }
675
+
676
+ /* Audio player on theme-colored sent bubbles */
677
+ .chat-audio-player-on-dark .chat-audio-progress {
678
+ background: linear-gradient(
679
+ to right,
680
+ rgba(255, 255, 255, 0.95) 0%,
681
+ rgba(255, 255, 255, 0.95) var(--chat-audio-progress, 0%),
682
+ rgba(255, 255, 255, 0.28) var(--chat-audio-progress, 0%),
683
+ rgba(255, 255, 255, 0.28) 100%
684
+ );
685
+ }
686
+
687
+ .chat-audio-player-on-dark .chat-audio-progress::-webkit-slider-thumb {
688
+ background: #ffffff;
689
+ border: 2px solid rgba(255, 255, 255, 0.95);
690
+ box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25);
691
+ }
692
+
693
+ .chat-audio-player-on-dark .chat-audio-progress::-moz-range-thumb {
694
+ background: #ffffff;
695
+ border: 2px solid rgba(255, 255, 255, 0.95);
696
+ box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25);
697
+ }
698
+
699
+ /* Native media controls follow chat color scheme */
700
+ .chat-attachment-video video {
701
+ width: 100%;
702
+ border-radius: 0.5rem;
703
+ color-scheme: light;
704
+ }
705
+
706
+ .chat-shell.dark .chat-attachment-video video,
707
+ .chat-theme-scope.dark .chat-attachment-video video {
708
+ color-scheme: dark;
709
+ }
710
+
711
+ .chat-theme-scope.dark .chat-audio-progress,
712
+ .chat-shell.dark .chat-audio-progress {
713
+ background: linear-gradient(
714
+ to right,
715
+ var(--chat-theme) 0%,
716
+ var(--chat-theme) var(--chat-audio-progress, 0%),
717
+ color-mix(in srgb, var(--chat-border) 55%, transparent) var(--chat-audio-progress, 0%),
718
+ color-mix(in srgb, var(--chat-border) 55%, transparent) 100%
719
+ );
720
+ }
721
+
722
+ /* -------------------------------------------------------------------------- */
723
+ /* Layout containment — keeps chat inside host pages (admin templates, etc.) */
724
+ /* -------------------------------------------------------------------------- */
725
+
726
+ .chat-package-viewport,
727
+ .chat-container-root,
728
+ .chat-shell,
729
+ .chat-message-canvas {
730
+ max-height: 100%;
731
+ }
732
+
733
+ .chat-package-viewport {
734
+ display: flex;
735
+ flex-direction: column;
736
+ min-height: 0;
737
+ overflow: hidden;
738
+ width: 100%;
739
+ }
740
+
741
+ .chat-container-root {
742
+ display: flex;
743
+ flex: 1 1 0%;
744
+ flex-direction: column;
745
+ min-height: 0;
746
+ overflow: hidden;
747
+ width: 100%;
748
+ }
749
+
750
+ .chat-shell {
751
+ min-height: 0;
752
+ }
753
+
754
+ .chat-message-scroll {
755
+ min-height: 0;
756
+ overscroll-behavior: contain;
757
+ -webkit-overflow-scrolling: touch;
758
+ }
759
+
760
+ .chat-sidebar-scroll {
761
+ min-height: 0;
762
+ overscroll-behavior: contain;
196
763
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@realtimexsco/live-chat",
3
- "version": "1.1.0",
3
+ "version": "1.3.0",
4
4
  "types": "./dist/index.d.ts",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",
@@ -58,7 +58,6 @@
58
58
  "devDependencies": {
59
59
  "@semantic-release/changelog": "^6.0.3",
60
60
  "@semantic-release/git": "^10.0.1",
61
- "@semantic-release/gitlab": "^13.3.2",
62
61
  "@tailwindcss/postcss": "^4",
63
62
  "@types/node": "^25.3.0",
64
63
  "@types/react": "^19.0.0",
@@ -77,8 +76,10 @@
77
76
  },
78
77
  "scripts": {
79
78
  "build": "tsup && copyfiles -u 1 src/styles.css dist",
79
+ "postbuild": "node -e \"require('fs').accessSync('dist/index.d.ts')\"",
80
80
  "dev": "tsup --watch",
81
81
  "typecheck": "tsc --noEmit",
82
+ "sync": "node scripts/sync-from-frontend.mjs && node scripts/fix-package-imports.mjs && node scripts/sync-logged-user.mjs",
82
83
  "release": "semantic-release"
83
84
  },
84
85
  "publishConfig": {
@@ -87,12 +88,12 @@
87
88
  },
88
89
  "repository": {
89
90
  "type": "git",
90
- "url": "git+https://gitlab.com/mituls1/live-chat-npm-package.git"
91
+ "url": "git+https://bitbucket.org/software-co/realtimex-npm-package.git"
91
92
  },
92
93
  "bugs": {
93
- "url": "https://gitlab.com/mituls1/live-chat-npm-package/-/issues"
94
+ "url": "https://bitbucket.org/software-co/realtimex-npm-package/issues"
94
95
  },
95
- "homepage": "https://gitlab.com/mituls1/live-chat-npm-package#readme",
96
+ "homepage": "https://bitbucket.org/software-co/realtimex-npm-package",
96
97
  "packageManager": "pnpm@10.33.2",
97
98
  "keywords": [],
98
99
  "author": "",