-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpnpm-lock.yaml
More file actions
5572 lines (4513 loc) · 216 KB
/
Copy pathpnpm-lock.yaml
File metadata and controls
5572 lines (4513 loc) · 216 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
lockfileVersion: '9.0'
settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
importers:
.:
dependencies:
'@hookform/resolvers':
specifier: ^3.10.0
version: 3.10.0(react-hook-form@7.54.2(react@19.0.0))
'@jamsr-ui/next':
specifier: ^0.1.0
version: 0.1.0(framer-motion@12.0.6(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(next@15.1.6(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(tailwindcss@4.0.1)
'@jamsr-ui/react':
specifier: 0.1.0
version: 0.1.0(@tanstack/react-table@8.20.6(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@tiptap/pm@2.11.4)(@types/react@19.0.8)(framer-motion@12.0.6(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(highlight.js@11.11.1)(react-dom@19.0.0(react@19.0.0))(react-hook-form@7.54.2(react@19.0.0))(react@19.0.0)(tailwindcss@4.0.1)(use-sync-external-store@1.4.0(react@19.0.0))
'@prisma/client':
specifier: 6.3.1
version: 6.3.1(prisma@6.3.1(typescript@5.7.3))(typescript@5.7.3)
'@tailwindcss/postcss':
specifier: ^4.0.1
version: 4.0.1
next:
specifier: 15.1.6
version: 15.1.6(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
postcss:
specifier: ^8.5.1
version: 8.5.1
react:
specifier: ^19.0.0
version: 19.0.0
react-dom:
specifier: ^19.0.0
version: 19.0.0(react@19.0.0)
react-hook-form:
specifier: ^7.54.2
version: 7.54.2(react@19.0.0)
tailwindcss:
specifier: ^4.0.1
version: 4.0.1
zod:
specifier: ^3.24.1
version: 3.24.1
devDependencies:
'@eslint/eslintrc':
specifier: ^3
version: 3.2.0
'@types/node':
specifier: ^20
version: 20.17.16
'@types/react':
specifier: ^19
version: 19.0.8
'@types/react-dom':
specifier: ^19
version: 19.0.3(@types/react@19.0.8)
eslint:
specifier: ^9
version: 9.19.0(jiti@2.4.2)
eslint-config-next:
specifier: 15.1.6
version: 15.1.6(eslint@9.19.0(jiti@2.4.2))(typescript@5.7.3)
prisma:
specifier: ^6.3.1
version: 6.3.1(typescript@5.7.3)
typescript:
specifier: ^5
version: 5.7.3
packages:
'@alloc/quick-lru@5.2.0':
resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
engines: {node: '>=10'}
'@dnd-kit/accessibility@3.1.1':
resolution: {integrity: sha512-2P+YgaXF+gRsIihwwY1gCsQSYnu9Zyj2py8kY5fFvUM1qm2WA2u639R6YNVfU4GWr+ZM5mqEsfHZZLoRONbemw==}
peerDependencies:
react: '>=16.8.0'
'@dnd-kit/core@6.3.1':
resolution: {integrity: sha512-xkGBRQQab4RLwgXxoqETICr6S5JlogafbhNsidmrkVv2YRs5MLwpjoF2qpiGjQt8S9AoxtIV603s0GIUpY5eYQ==}
peerDependencies:
react: '>=16.8.0'
react-dom: '>=16.8.0'
'@dnd-kit/modifiers@7.0.0':
resolution: {integrity: sha512-BG/ETy3eBjFap7+zIti53f0PCLGDzNXyTmn6fSdrudORf+OH04MxrW4p5+mPu4mgMk9kM41iYONjc3DOUWTcfg==}
peerDependencies:
'@dnd-kit/core': ^6.1.0
react: '>=16.8.0'
'@dnd-kit/sortable@8.0.0':
resolution: {integrity: sha512-U3jk5ebVXe1Lr7c2wU7SBZjcWdQP+j7peHJfCspnA81enlu88Mgd7CC8Q+pub9ubP7eKVETzJW+IBAhsqbSu/g==}
peerDependencies:
'@dnd-kit/core': ^6.1.0
react: '>=16.8.0'
'@dnd-kit/utilities@3.2.2':
resolution: {integrity: sha512-+MKAJEOfaBe5SmV6t34p80MMKhjvUz0vRrvVJbPT0WElzaOJ/1xs+D+KDv+tD/NE5ujfrChEcshd4fLn0wpiqg==}
peerDependencies:
react: '>=16.8.0'
'@emnapi/runtime@1.3.1':
resolution: {integrity: sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==}
'@eslint-community/eslint-utils@4.4.1':
resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
'@eslint-community/regexpp@4.12.1':
resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
'@eslint/config-array@0.19.1':
resolution: {integrity: sha512-fo6Mtm5mWyKjA/Chy1BYTdn5mGJoDNjC7C64ug20ADsRDGrA85bN3uK3MaKbeRkRuuIEAR5N33Jr1pbm411/PA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/core@0.10.0':
resolution: {integrity: sha512-gFHJ+xBOo4G3WRlR1e/3G8A6/KZAH6zcE/hkLRCZTi/B9avAG365QhFA8uOGzTMqgTghpn7/fSnscW++dpMSAw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/eslintrc@3.2.0':
resolution: {integrity: sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/js@9.19.0':
resolution: {integrity: sha512-rbq9/g38qjfqFLOVPvwjIvFFdNziEC5S65jmjPw5r6A//QH+W91akh9irMwjDN8zKUTak6W9EsAv4m/7Wnw0UQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/object-schema@2.1.5':
resolution: {integrity: sha512-o0bhxnL89h5Bae5T318nFoFzGy+YE5i/gGkoPAgkmTVdRKTiv3p8JHevPiPaMwoloKfEiiaHlawCqaZMqRm+XQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/plugin-kit@0.2.5':
resolution: {integrity: sha512-lB05FkqEdUg2AA0xEbUz0SnkXT1LcCTa438W4IWTUh4hdOnVbQyOJ81OrDXsJk/LSiJHubgGEFoR5EHq1NsH1A==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@floating-ui/core@1.6.9':
resolution: {integrity: sha512-uMXCuQ3BItDUbAMhIXw7UPXRfAlOAvZzdK9BWpE60MCn+Svt3aLn9jsPTi/WNGlRUu2uI0v5S7JiIUsbsvh3fw==}
'@floating-ui/dom@1.6.13':
resolution: {integrity: sha512-umqzocjDgNRGTuO7Q8CU32dkHkECqI8ZdMZ5Swb6QAM0t5rnlrN3lGo1hdpscRd3WS8T6DKYK4ephgIH9iRh3w==}
'@floating-ui/react-dom@2.1.2':
resolution: {integrity: sha512-06okr5cgPzMNBy+Ycse2A6udMi4bqwW/zgBF/rwjcNqWkyr82Mcg8b0vjX8OJpZFy/FKjJmw6wV7t44kK6kW7A==}
peerDependencies:
react: '>=16.8.0'
react-dom: '>=16.8.0'
'@floating-ui/react@0.26.28':
resolution: {integrity: sha512-yORQuuAtVpiRjpMhdc0wJj06b9JFjrYF4qp96j++v2NBpbi6SEGF7donUJ3TMieerQ6qVkAv1tgr7L4r5roTqw==}
peerDependencies:
react: '>=16.8.0'
react-dom: '>=16.8.0'
'@floating-ui/utils@0.2.9':
resolution: {integrity: sha512-MDWhGtE+eHw5JW7lq4qhc5yRLS11ERl1c7Z6Xd0a58DozHES6EnNNwUWbMiG4J9Cgj053Bhk8zvlhFYKVhULwg==}
'@hookform/resolvers@3.10.0':
resolution: {integrity: sha512-79Dv+3mDF7i+2ajj7SkypSKHhl1cbln1OGavqrsF7p6mbUv11xpqpacPsGDCTRvCSjEEIez2ef1NveSVL3b0Ag==}
peerDependencies:
react-hook-form: ^7.0.0
'@humanfs/core@0.19.1':
resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
engines: {node: '>=18.18.0'}
'@humanfs/node@0.16.6':
resolution: {integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==}
engines: {node: '>=18.18.0'}
'@humanwhocodes/module-importer@1.0.1':
resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
engines: {node: '>=12.22'}
'@humanwhocodes/retry@0.3.1':
resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==}
engines: {node: '>=18.18'}
'@humanwhocodes/retry@0.4.1':
resolution: {integrity: sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==}
engines: {node: '>=18.18'}
'@img/sharp-darwin-arm64@0.33.5':
resolution: {integrity: sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [arm64]
os: [darwin]
'@img/sharp-darwin-x64@0.33.5':
resolution: {integrity: sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [x64]
os: [darwin]
'@img/sharp-libvips-darwin-arm64@1.0.4':
resolution: {integrity: sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==}
cpu: [arm64]
os: [darwin]
'@img/sharp-libvips-darwin-x64@1.0.4':
resolution: {integrity: sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==}
cpu: [x64]
os: [darwin]
'@img/sharp-libvips-linux-arm64@1.0.4':
resolution: {integrity: sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==}
cpu: [arm64]
os: [linux]
'@img/sharp-libvips-linux-arm@1.0.5':
resolution: {integrity: sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==}
cpu: [arm]
os: [linux]
'@img/sharp-libvips-linux-s390x@1.0.4':
resolution: {integrity: sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==}
cpu: [s390x]
os: [linux]
'@img/sharp-libvips-linux-x64@1.0.4':
resolution: {integrity: sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==}
cpu: [x64]
os: [linux]
'@img/sharp-libvips-linuxmusl-arm64@1.0.4':
resolution: {integrity: sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==}
cpu: [arm64]
os: [linux]
'@img/sharp-libvips-linuxmusl-x64@1.0.4':
resolution: {integrity: sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==}
cpu: [x64]
os: [linux]
'@img/sharp-linux-arm64@0.33.5':
resolution: {integrity: sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [arm64]
os: [linux]
'@img/sharp-linux-arm@0.33.5':
resolution: {integrity: sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [arm]
os: [linux]
'@img/sharp-linux-s390x@0.33.5':
resolution: {integrity: sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [s390x]
os: [linux]
'@img/sharp-linux-x64@0.33.5':
resolution: {integrity: sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [x64]
os: [linux]
'@img/sharp-linuxmusl-arm64@0.33.5':
resolution: {integrity: sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [arm64]
os: [linux]
'@img/sharp-linuxmusl-x64@0.33.5':
resolution: {integrity: sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [x64]
os: [linux]
'@img/sharp-wasm32@0.33.5':
resolution: {integrity: sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [wasm32]
'@img/sharp-win32-ia32@0.33.5':
resolution: {integrity: sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [ia32]
os: [win32]
'@img/sharp-win32-x64@0.33.5':
resolution: {integrity: sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [x64]
os: [win32]
'@jamsr-ui/accordion@0.1.0':
resolution: {integrity: sha512-7Oq9wQ0r9VKij9xDwlMdMSkC5BllWXsubmlR0RqmRoVsJ2F6fTl4oTQuZO1GszEVDJfIJLI51xC1kuJ/YtaxPA==}
peerDependencies:
framer-motion: '>=12'
react: '>=19'
react-dom: '>=19'
'@jamsr-ui/alert@0.1.0':
resolution: {integrity: sha512-nece/UfuSJaLWvzFC6k7vuPh7HCsTn1MjiA1eAi8n33QY0/pSCAAh8CFRbo3RiZyKx91FDolZ0PZQ2l4OK26DA==}
peerDependencies:
react: '>=19'
react-dom: '>=19'
'@jamsr-ui/autocomplete@0.1.0':
resolution: {integrity: sha512-BO2QI+TZg5oOGjJk6u9fZPLkfgYJQzRDdeh3fBRPy1KAVVKk90xh5z1CYi1GkNlAzGkkjkvPnzyhn4EgPn8bgg==}
peerDependencies:
react: '>=19'
react-dom: '>=19'
'@jamsr-ui/avatar@0.1.0':
resolution: {integrity: sha512-jHLERMZXrAiwH10/ETD9cqMnlxWjBiEXe0vUn3TGxUjnDKjdrJCKLzX1JGgadSJSvoJt3jhgbohq/djllqe1Ew==}
peerDependencies:
react: '>=19'
react-dom: '>=19'
'@jamsr-ui/button@0.1.0':
resolution: {integrity: sha512-YsN+PQRFCE4ScqwbYtuCUzXxdJ3iFVkM17EDBinHJdxUQym9jhoTCRfeTV961fqQvrWjXZ9reOMGEKdWWKHhwA==}
peerDependencies:
react: '>=19'
react-dom: '>=19'
'@jamsr-ui/card@0.1.0':
resolution: {integrity: sha512-Z5GGKTaoRUH2CHLoOQYjIn+DS6Lw97SkqGrYDK3s+mEfjFucahPzGADTSsd0NxSrH816vgrEsX0NrnIbGfXBAQ==}
peerDependencies:
react: '>=19'
react-dom: '>=19'
'@jamsr-ui/checkbox@0.1.0':
resolution: {integrity: sha512-5aMRiGe4BkZOH399Jq8YoHdWO0SNrraPXlU4Tt3e8sLE+98+Lg2Ngb7gm6eKNKpALRkP5f5YZKsRG0z1nFDE8A==}
peerDependencies:
framer-motion: '>=12'
react: '>=19'
react-dom: '>=19'
'@jamsr-ui/chip@0.1.0':
resolution: {integrity: sha512-E3u4RxH0Iwpi59KaDnZx8uY3LH0q1sOWEg0t2GebD/pU9ag6C5mQs1LdV6FbdHTBOVlMd3njGGRjraYSKTvIYQ==}
peerDependencies:
react: '>=19'
react-dom: '>=19'
'@jamsr-ui/circular-progress@0.1.0':
resolution: {integrity: sha512-2G5jy3Y2zSdyRnC6GwuVnoVdL13ALNpDe0Izxn9NnTJiZKJ6gMu5FzWEzgkRvsC53DsVtqLCk21HD4mfMs1B4w==}
peerDependencies:
framer-motion: '>=12'
react: '>=19'
react-dom: '>=19'
'@jamsr-ui/collapsible@0.1.0':
resolution: {integrity: sha512-cjONc8wI/LN3EEOB8yo4Dwo+4dI+bQBswq6yiK9lQQQ9UWShfKVZuqRhea3ZlIBXZZTgkkjNxoIITRT0dPwxiA==}
peerDependencies:
framer-motion: '>=12'
react: '>=19'
react-dom: '>=19'
'@jamsr-ui/confirmation@0.1.0':
resolution: {integrity: sha512-gP1VfEpFbLDZZexZlM3uq1VnobOEzcg6lGHiaWdQ5tIiWJJ2/kpUAE4uYlm3BRzBpXWv+0l+6hZQ8XUgrcrbHw==}
peerDependencies:
framer-motion: '>=12'
react: '>=19'
react-dom: '>=19'
'@jamsr-ui/copy-to-clipboard@0.1.0':
resolution: {integrity: sha512-AzTccIvwMA68E8GQWLovjNl9IkLVRwJWrnDj0OTt2dIcKGgzpcfTuE+u7ZMTejbRdqE+cYGB4IwCsqnjdLIb9Q==}
peerDependencies:
react: '>=19'
react-dom: '>=19'
'@jamsr-ui/core@0.1.0':
resolution: {integrity: sha512-ULJcP7cKTkahtWUFq76u6GNeclfVCKEUZA/xqzwbQkdCQ6kNIrdlzsQSproCK1/+FRq564bTPYDMIVYSU0DZ/A==}
peerDependencies:
framer-motion: '>=12'
react: '>=19'
react-dom: '>=19'
'@jamsr-ui/data-table@0.1.0':
resolution: {integrity: sha512-JKvkBpdNYdoRRHt02nOqJV+8b3zxgJv6VZzyD3YRXnB+5uSTXNKwNlVwrZFxxK90HBztZqVj8ugLPTYldAX76A==}
peerDependencies:
'@tanstack/react-table': '>=8'
react: '>=19'
react-dom: '>=19'
'@jamsr-ui/dialog@0.1.0':
resolution: {integrity: sha512-REMq9kMOeJx496mhIRXrSUNeDJHxTHG1hznn8xQFsD5lWaJfCwnG8Th3rmvUTGhXYBjyXDGhI2SWhUisLKi2BA==}
peerDependencies:
framer-motion: '>=12'
react: '>=19'
react-dom: '>=19'
'@jamsr-ui/divider@0.1.0':
resolution: {integrity: sha512-9IFbcaKCONVG/7ovlp67/+HpQgQhef7I150MVs/SCUyYXm4nYifDwo0E+pCmLQe7u736jQckwquu6btxIqX9CA==}
peerDependencies:
react: '>=19'
react-dom: '>=19'
'@jamsr-ui/dnd@0.1.0':
resolution: {integrity: sha512-DOpOS8vEgCZDV5M4PNaAA5D7cpz0MKxVETGcY1b4ejeeUnxmaT2IugRV8OqCyxbyop5We4V0okrNYlXQIpgHUQ==}
peerDependencies:
react: '>=19'
react-dom: '>=19'
'@jamsr-ui/drawer@1.1.0':
resolution: {integrity: sha512-Mj7/7dmnFsyIkr6W1KLZH5yuLPMKS5IoI4nUHtUZS/MaqXKwQAyZbwnVukLnNd3mGda2gqIUl2tjObdIdALf1Q==}
peerDependencies:
framer-motion: '>=12'
react: '>=19'
react-dom: '>=19'
'@jamsr-ui/editor@0.1.0':
resolution: {integrity: sha512-DPuCIuTHCd0lbSXuCEqXyC7rq7VlacdieBGRI9FpUG2ALdJVowclnVrrKyofFGZlGAtovKv+6BKgdktklA77ng==}
peerDependencies:
react: '>=19'
react-dom: '>=19'
'@jamsr-ui/file-upload-multi@0.1.0':
resolution: {integrity: sha512-HoqmnrB1qBmAgrIVBqvPoPVhOy6/SDOOW5xc5KhxNTWJcgT12x6oyNFaAC9JG0LodF65AcJEooCGIjpsC473SA==}
peerDependencies:
react: '>=19'
react-dom: '>=19'
'@jamsr-ui/file-upload-single@0.1.0':
resolution: {integrity: sha512-MffSxZyYX6uagTvYSZQSrQZjceFuYv0iBpOJ11ZFWF2pitywZcewZALDzBheTEXpebrTEkBJQQetoKvZz+HkSA==}
peerDependencies:
react: '>=19'
react-dom: '>=19'
'@jamsr-ui/header@0.1.0':
resolution: {integrity: sha512-K7jsN4ZTQXHO+vFOwNVE9W0re2liGz+i7zpdIUMEqSEur4qBoL+/GFWMMhRmm3cyk7UbQi/p6XcIonVY+5Q9pw==}
peerDependencies:
framer-motion: '>=12'
react: '>=19'
react-dom: '>=19'
'@jamsr-ui/hooks@0.1.0':
resolution: {integrity: sha512-TAPJQfafJJqZqkd0Xyaz0sgjbMFTNHqQKskS+YhHZwADJk5CVxwgp3EofXT0h9vGM3p2urWZLGStdn0WvJ4wag==}
peerDependencies:
react: '>=19'
react-dom: '>=19'
'@jamsr-ui/icon-button@0.1.0':
resolution: {integrity: sha512-OC2HE0jaceal8MweLIGbdH4DTL5vhSOOKu5v7P17twSMpTprYLDP5xcHMPKJplf0UrtQMtAHnwhgPbPhA3j9Zg==}
peerDependencies:
react: '>=19'
react-dom: '>=19'
'@jamsr-ui/input@0.1.0':
resolution: {integrity: sha512-2KVNw8t6sttSjAM9ML2gnT8PuTi4RvZXcY3BmET29LpX0xJZgGJUGfhNhWPmg+5cynOMYQLBrh3N7BTP5mwifA==}
peerDependencies:
react: '>=19'
react-dom: '>=19'
'@jamsr-ui/kbd@0.1.0':
resolution: {integrity: sha512-6aRCjnH1wFL7QNI6d0iepDsoshcnOo57HPP73QVGOVQxTZ4/3leP4Q4i10soBCl0wk66iQa8rBr/Gp5CUHs1RA==}
peerDependencies:
react: '>=19'
react-dom: '>=19'
'@jamsr-ui/linear-progress@0.1.0':
resolution: {integrity: sha512-thNHamvbLEG7uR6CA5zL5cjXFOOthkcuuqn9P64RIiXm0RkrKEnpJFhoeuBCH3ZGxosJschplVVTR3UhGYGMdA==}
peerDependencies:
framer-motion: '>=12'
react: '>=19'
react-dom: '>=19'
'@jamsr-ui/link@0.1.0':
resolution: {integrity: sha512-DQ3yWISJZ0Zf3WDUGwW5iEowExruukkSqZL+qZk3Uka6MXGef6v0tBSzyXo4Kh2YBV29zrNaI9tGcbPb9E9TeQ==}
peerDependencies:
react: '>=19'
react-dom: '>=19'
'@jamsr-ui/menu@0.1.0':
resolution: {integrity: sha512-j0pBW4eQsiw7Fh58DYPtdMv7NHfFyAs4oxCUmwlbiY2kjDr4LfN2UeIm+0sbfctW5iO4Kww/4TljUuCBitB8SA==}
peerDependencies:
framer-motion: '>=12'
react: '>=19'
react-dom: '>=19'
'@jamsr-ui/next@0.1.0':
resolution: {integrity: sha512-Zi9YOsXe7uESLqqmbAdjkHL+Acu35/MKXBh2sSJhncIt2Jp2BqjEXHVg13VIjz/HIJixr6yf7qaHi/BKORX0pQ==}
peerDependencies:
next: '>=15'
react: '>=19'
react-dom: '>=19'
'@jamsr-ui/otp-input@0.1.0':
resolution: {integrity: sha512-6sCB2DLvN6L6HpQWD4A142e+OHTnxCq+G6yznbGx5ETHqwx4YJ+PXhfh8hfu5Fc8ySUsZciWZFzAWUBTilhyUw==}
peerDependencies:
react: '>=19'
react-dom: '>=19'
'@jamsr-ui/popover@0.1.0':
resolution: {integrity: sha512-FzjdwPXm6oej8vZL+AZohrCR5BqUsvW5+QriJ+zAzBWkcYXIfdLRHjB4qnyIbZ0fcVGXLeAKon48VuQy27xSxw==}
peerDependencies:
react: '>=19'
react-dom: '>=19'
'@jamsr-ui/radio@0.1.0':
resolution: {integrity: sha512-YBygKIqf0NCvQxIlTlNvUSj2XlKOCB3PlKT1wcesfi9jGSLOIm6kIm1yBIqgCOEHsKZQ2f1igMXqc0B6gDD0Tg==}
peerDependencies:
react: '>=19'
react-dom: '>=19'
'@jamsr-ui/rating@0.1.0':
resolution: {integrity: sha512-keHOME3IwgA3ftnxdv/2AcjgyMAnOkE1b7BJ1vAqioWxJXbd1pINijTFj04JddltbD5KKB8X7PP8v040mPeWOg==}
peerDependencies:
react: '>=19'
'@jamsr-ui/react@0.1.0':
resolution: {integrity: sha512-XlS7pFIpc6uMD6JykN3uaJjoz126Wfy3WKE1gsA7M7Dmx39V/ghGHQgirGn6nhE+6KPY88lBoktSAcfVJEo47w==}
peerDependencies:
framer-motion: '>=12'
react: '>=19'
'@jamsr-ui/repeater@0.1.0':
resolution: {integrity: sha512-S+oa+rf7JkKZh05OBHC+a4A45wFbnxDZjXoJPvgarsi9JF5niqvuTivOVQkRE/R3TlZE33SypE6MFR5IBQFkHA==}
peerDependencies:
react: '>=19'
react-dom: '>=19'
'@jamsr-ui/rhf@0.1.0':
resolution: {integrity: sha512-F578myN+gAMFDkC2R+hxw0bqBCkck/5LXR4B6f5dzfpPysV3x+0nbP5UQRbwg+zrDg6vt8LwSDDxt0Z8zL48HA==}
peerDependencies:
framer-motion: '>=12'
react: '>=19'
react-dom: '>=19'
react-hook-form: ^7.53.1
'@jamsr-ui/ripple@0.1.0':
resolution: {integrity: sha512-LQhF7sJHrZ7HIkvECBwMo6GWHhN7VEsBcp94w99SSh+srNIaNaFB5iXK1rlsy8Z1tJFv6dXu8HJmxKrj4AFLhA==}
peerDependencies:
react: '>=19'
react-dom: '>=19'
'@jamsr-ui/select@0.1.0':
resolution: {integrity: sha512-yoXhplGwRfK4hLAI1OpiyRO/CQ8tXJbpa3jSobd7ezXePOmv5HnXGhQK58iIP+ia7AADb5zf8O0c4b9wgwaSMg==}
peerDependencies:
framer-motion: '>=12'
react: '>=19'
react-dom: '>=19'
'@jamsr-ui/shared-icons@0.1.0':
resolution: {integrity: sha512-Ss03jgvBqS/febUjeQsgi9cg1HgmCs4IzcitA9qvp1FHq78VuHGcHsbm4ItqBUaVhRQKlhwbp2f9eBl1Gt9vww==}
peerDependencies:
react: '>=19'
react-dom: '>=19'
'@jamsr-ui/sidebar@0.1.0':
resolution: {integrity: sha512-1IA0kEpiLnhIAlboMNOA3SPzaz0GuOL12MJgTSE3KlsoMVXFNM0+0uP2C+pvCcraTkPzvttWJL7N7m6d55Xndw==}
peerDependencies:
framer-motion: '>=12'
react: '>=19'
react-dom: '>=19'
'@jamsr-ui/skeleton@0.1.0':
resolution: {integrity: sha512-psZFbQY51FHDseAJTODs75aUcx4TCjEH1gMlEDTS/vHEbS91v2/gT/Upq76lLR+r3L4XGP9cmuKh/XkdFKX95A==}
peerDependencies:
react: '>=19'
react-dom: '>=19'
'@jamsr-ui/stepper@0.1.0':
resolution: {integrity: sha512-N6Ayc3Qam5Lau9rxt75VDFObHUJf3USpVnu8+tl/7X/APIZDuq/gM3U1+RgFrVTLz8IG3NmiDv3BfisfLRZ7Gw==}
peerDependencies:
framer-motion: '>=12'
react: '>=19'
react-dom: '>=19'
'@jamsr-ui/styles@0.1.0':
resolution: {integrity: sha512-J6Fsxn6e+ThnnzarQezUdSOWm7uOXAjiqmMDV3YiGq/TXTxzzaZvQbu9B8ZimmdZ9ioF0ntPO6+hFOESmZzoYw==}
peerDependencies:
react: '>=19'
react-dom: '>=19'
'@jamsr-ui/switch@0.1.0':
resolution: {integrity: sha512-0RwvAQ9Ut8DjcmRBS9/W3F5MHi1Dn5/v4PoxwPNjiIlYDuRb1T/1tw12DfYZfkVs+na/UGSFEKjeOSK6T2Df2Q==}
peerDependencies:
framer-motion: '>=12'
react: '>=19'
react-dom: '>=19'
'@jamsr-ui/tab@0.1.0':
resolution: {integrity: sha512-UjNv0BgyMD5Dt7xrkkQYeNxxIu1hLZGg+fQmlekPsefTK7P9rqWl7rZ0JYL2GMji61mS9DQ2zXb0WIVBqtVJFw==}
peerDependencies:
framer-motion: '>=12'
react: '>=19'
react-dom: '>=19'
'@jamsr-ui/table@0.1.0':
resolution: {integrity: sha512-qNv01CqzAjFUU5H6gxNE04SClPKuxADoRD46ETlWWawIoJm0nZ7yV9MAv6TcCU55OypRcgKzra2Nd5Wd3i8Lrg==}
peerDependencies:
react: '>=19'
react-dom: '>=19'
'@jamsr-ui/tags-input@0.1.0':
resolution: {integrity: sha512-wXT/IhARCK4xFBhWXVdzO2H74oc+nVXIXyugzQF0CtKHwSmvKce6FDtXyRih7JJFS37KIm6Mw0RzbbqVfgejOg==}
peerDependencies:
react: '>=19'
react-dom: '>=19'
'@jamsr-ui/text@0.1.0':
resolution: {integrity: sha512-8MnjkBBoIhoDPAIqPL+M8GaFba3eGlDRRdRJacV0btiqHWcFh4VyFKQ5XYM9wvNLY24vgPax6td7sPWz1kyYCA==}
peerDependencies:
react: '>=19'
react-dom: '>=19'
'@jamsr-ui/textarea@0.1.0':
resolution: {integrity: sha512-0ZlYc1osgS7M2iBLYGio/NSMHWZS12/+cKPHW5IKe+KQsONYrkmzhPG8d+m+o0LFXZQtEuSskpbgZnqp6+8tZw==}
peerDependencies:
react: '>=19'
react-dom: '>=19'
'@jamsr-ui/theme@0.1.0':
resolution: {integrity: sha512-CJcbEJ3B1x+HMEseFxtkwg2ApnumSXeZRHriy4TRVetDvBSwOBwCV5XqLtZcZ5g0XjxH/ObTNlP1ei/HGNtuwQ==}
'@jamsr-ui/toast@0.1.0':
resolution: {integrity: sha512-ALtYrtcqFaVrY0GGUj/6vOggkhNJTWBO5ScalUDkiJiR2Om1CmamFaF40jzJCluBKJ1mZIbl7RlMZek8tI9hCQ==}
peerDependencies:
react: '>=19'
react-dom: '>=19'
'@jamsr-ui/tooltip@0.1.0':
resolution: {integrity: sha512-tyYMhIVFx6It57V9SKMOLPawOlsyKWvgEMvpXYe2akeT16C6ME73RkNbyYMdqMJVwpMNVQs1LeOkGkNjeGwIMg==}
peerDependencies:
react: '>=19'
react-dom: '>=19'
'@jamsr-ui/utils@0.1.0':
resolution: {integrity: sha512-hbQ90VwTJE1m/JKGZEFVHciFw99/mc4iwgAG6zdY4lz6W1l0MBAd2WrkWVg78cfdPWtA/Jrqg4110InNLsSrvw==}
peerDependencies:
framer-motion: '>=12'
react: '>=19'
react-dom: '>=19'
'@next/env@15.1.6':
resolution: {integrity: sha512-d9AFQVPEYNr+aqokIiPLNK/MTyt3DWa/dpKveiAaVccUadFbhFEvY6FXYX2LJO2Hv7PHnLBu2oWwB4uBuHjr/w==}
'@next/eslint-plugin-next@15.1.6':
resolution: {integrity: sha512-+slMxhTgILUntZDGNgsKEYHUvpn72WP1YTlkmEhS51vnVd7S9jEEy0n9YAMcI21vUG4akTw9voWH02lrClt/yw==}
'@next/swc-darwin-arm64@15.1.6':
resolution: {integrity: sha512-u7lg4Mpl9qWpKgy6NzEkz/w0/keEHtOybmIl0ykgItBxEM5mYotS5PmqTpo+Rhg8FiOiWgwr8USxmKQkqLBCrw==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
'@next/swc-darwin-x64@15.1.6':
resolution: {integrity: sha512-x1jGpbHbZoZ69nRuogGL2MYPLqohlhnT9OCU6E6QFewwup+z+M6r8oU47BTeJcWsF2sdBahp5cKiAcDbwwK/lg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
'@next/swc-linux-arm64-gnu@15.1.6':
resolution: {integrity: sha512-jar9sFw0XewXsBzPf9runGzoivajeWJUc/JkfbLTC4it9EhU8v7tCRLH7l5Y1ReTMN6zKJO0kKAGqDk8YSO2bg==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
'@next/swc-linux-arm64-musl@15.1.6':
resolution: {integrity: sha512-+n3u//bfsrIaZch4cgOJ3tXCTbSxz0s6brJtU3SzLOvkJlPQMJ+eHVRi6qM2kKKKLuMY+tcau8XD9CJ1OjeSQQ==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
'@next/swc-linux-x64-gnu@15.1.6':
resolution: {integrity: sha512-SpuDEXixM3PycniL4iVCLyUyvcl6Lt0mtv3am08sucskpG0tYkW1KlRhTgj4LI5ehyxriVVcfdoxuuP8csi3kQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
'@next/swc-linux-x64-musl@15.1.6':
resolution: {integrity: sha512-L4druWmdFSZIIRhF+G60API5sFB7suTbDRhYWSjiw0RbE+15igQvE2g2+S973pMGvwN3guw7cJUjA/TmbPWTHQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
'@next/swc-win32-arm64-msvc@15.1.6':
resolution: {integrity: sha512-s8w6EeqNmi6gdvM19tqKKWbCyOBvXFbndkGHl+c9YrzsLARRdCHsD9S1fMj8gsXm9v8vhC8s3N8rjuC/XrtkEg==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
'@next/swc-win32-x64-msvc@15.1.6':
resolution: {integrity: sha512-6xomMuu54FAFxttYr5PJbEfu96godcxBTRk1OhAvJq0/EnmFU/Ybiax30Snis4vdWZ9LGpf7Roy5fSs7v/5ROQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
'@nodelib/fs.scandir@2.1.5':
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
engines: {node: '>= 8'}
'@nodelib/fs.stat@2.0.5':
resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
engines: {node: '>= 8'}
'@nodelib/fs.walk@1.2.8':
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
engines: {node: '>= 8'}
'@nolyfill/is-core-module@1.0.39':
resolution: {integrity: sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA==}
engines: {node: '>=12.4.0'}
'@popperjs/core@2.11.8':
resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==}
'@prisma/client@6.3.1':
resolution: {integrity: sha512-ARAJaPs+eBkemdky/XU3cvGRl+mIPHCN2lCXsl5Vlb0E2gV+R6IN7aCI8CisRGszEZondwIsW9Iz8EJkTdykyA==}
engines: {node: '>=18.18'}
peerDependencies:
prisma: '*'
typescript: '>=5.1.0'
peerDependenciesMeta:
prisma:
optional: true
typescript:
optional: true
'@prisma/debug@6.3.1':
resolution: {integrity: sha512-RrEBkd+HLZx+ydfmYT0jUj7wjLiS95wfTOSQ+8FQbvb6vHh5AeKfEPt/XUQ5+Buljj8hltEfOslEW57/wQIVeA==}
'@prisma/engines-version@6.3.0-17.acc0b9dd43eb689cbd20c9470515d719db10d0b0':
resolution: {integrity: sha512-R/ZcMuaWZT2UBmgX3Ko6PAV3f8//ZzsjRIG1eKqp3f2rqEqVtCv+mtzuH2rBPUC9ujJ5kCb9wwpxeyCkLcHVyA==}
'@prisma/engines@6.3.1':
resolution: {integrity: sha512-sXdqEVLyGAJ5/iUoG/Ea5AdHMN71m6PzMBWRQnLmhhOejzqAaEr8rUd623ql6OJpED4s/U4vIn4dg1qkF7vGag==}
'@prisma/fetch-engine@6.3.1':
resolution: {integrity: sha512-HOf/0umOgt+/S2xtZze+FHKoxpVg4YpVxROr6g2YG09VsI3Ipyb+rGvD6QGbCqkq5NTWAAZoOGNL+oy7t+IhaQ==}
'@prisma/get-platform@6.3.1':
resolution: {integrity: sha512-AYLq6Hk9xG73JdLWJ3Ip9Wg/vlP7xPvftGBalsPzKDOHr/ImhwJ09eS8xC2vNT12DlzGxhfk8BkL0ve2OriNhQ==}
'@remirror/core-constants@3.0.0':
resolution: {integrity: sha512-42aWfPrimMfDKDi4YegyS7x+/0tlzaqwPQCULLanv3DMIlu96KTJR0fM5isWX2UViOqlGnX6YFgqWepcX+XMNg==}
'@rtsao/scc@1.1.0':
resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==}
'@rushstack/eslint-patch@1.10.5':
resolution: {integrity: sha512-kkKUDVlII2DQiKy7UstOR1ErJP8kUKAQ4oa+SQtM0K+lPdmmjj0YnnxBgtTVYH7mUKtbsxeFC9y0AmK7Yb78/A==}
'@swc/counter@0.1.3':
resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==}
'@swc/helpers@0.5.15':
resolution: {integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==}
'@tailwindcss/node@4.0.1':
resolution: {integrity: sha512-lc+ly6PKHqgCVl7eO8D2JlV96Lks5bmL6pdtM6UasyUHLU2zmrOqU6jfgln120IVnCh3VC8GG/ca24xVTtSokw==}
'@tailwindcss/oxide-android-arm64@4.0.1':
resolution: {integrity: sha512-eP/rI9WaAElpeiiHDqGtDqga9iDsOClXxIqdHayHsw93F24F03b60CwgGhrGF9Io/EuWIpz3TMRhPVOLhoXivw==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [android]
'@tailwindcss/oxide-darwin-arm64@4.0.1':
resolution: {integrity: sha512-jZVUo0kNd1IjxdCYwg4dwegDNsq7PoUx4LM814RmgY3gfJ63Y6GlpJXHOpd5FLv1igpeZox5LzRk2oz8MQoJwQ==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
'@tailwindcss/oxide-darwin-x64@4.0.1':
resolution: {integrity: sha512-E31wHiIf4LB0aKRohrS4U6XfFSACCL9ifUFfPQ16FhcBIL4wU5rcBidvWvT9TQFGPkpE69n5dyXUcqiMrnF/Ig==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
'@tailwindcss/oxide-freebsd-x64@4.0.1':
resolution: {integrity: sha512-8/3ZKLMYqgAsBzTeczOKWtT4geF02g9S7cntY5gvqQZ4E0ImX724cHcZJi9k6fkE6aLbvwxxHxaShFvRxblwKQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [freebsd]
'@tailwindcss/oxide-linux-arm-gnueabihf@4.0.1':
resolution: {integrity: sha512-EYjbh225klQfWzy6LeIAfdjHCK+p71yLV/GjdPNW47Bfkkq05fTzIhHhCgshUvNp78EIA33iQU+ktWpW06NgHw==}
engines: {node: '>= 10'}
cpu: [arm]
os: [linux]
'@tailwindcss/oxide-linux-arm64-gnu@4.0.1':
resolution: {integrity: sha512-PrX2SwIqWNP5cYeSyQfrhbk4ffOM338T6CrEwIAGvLPoUZiklt19yknlsBme6bReSw7TSAMy+8KFdLLi5fcWNQ==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
'@tailwindcss/oxide-linux-arm64-musl@4.0.1':
resolution: {integrity: sha512-iuoFGhKDojtfloi5uj6MIk4kxEOGcsAk/kPbZItF9Dp7TnzVhxo2U/718tXhxGrg6jSL3ST3cQHIjA6yw3OeXw==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
'@tailwindcss/oxide-linux-x64-gnu@4.0.1':
resolution: {integrity: sha512-pNUrGQYyE8RK+N9yvkPmHnlKDfFbni9A3lsi37u4RoA/6Yn+zWVoegvAQMZu3w+jqnpb2A/bYJ+LumcclUZ3yg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
'@tailwindcss/oxide-linux-x64-musl@4.0.1':
resolution: {integrity: sha512-xSGWaDcT6SJ75su9zWXj8GYb2jM/przXwZGH96RTS7HGDIoI1tvgpls88YajG5Sx7hXaqAWCufjw5L/dlu+lzg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
'@tailwindcss/oxide-win32-arm64-msvc@4.0.1':
resolution: {integrity: sha512-BUNL2isUZ2yWnbplPddggJpZxsqGHPZ1RJAYpu63W4znUnKCzI4m/jiy0WpyYqqOKL9jDM5q0QdsQ9mc3aw5YQ==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
'@tailwindcss/oxide-win32-x64-msvc@4.0.1':
resolution: {integrity: sha512-ZtcVu+XXOddGsPlvO5nh2fnbKmwly2C07ZB1lcYCf/b8qIWF04QY9o6vy6/+6ioLRfbp3E7H/ipFio38DZX4oQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
'@tailwindcss/oxide@4.0.1':
resolution: {integrity: sha512-3z1SpWoDeaA6K6jd92CRrGyDghOcRILEgyWVHRhaUm/tcpiazwJpU9BSG0xB7GGGnl9capojaC+zme/nKsZd/w==}
engines: {node: '>= 10'}
'@tailwindcss/postcss@4.0.1':
resolution: {integrity: sha512-fZHL49vCDauQymdm2U1jehuUeX8msYVDKB/2v+jWhTQleH3QE8J1dJ2dnL5tqRvB0udjBP4kwUC1ZIVIdv66YA==}
'@tanstack/react-table@8.20.6':
resolution: {integrity: sha512-w0jluT718MrOKthRcr2xsjqzx+oEM7B7s/XXyfs19ll++hlId3fjTm+B2zrR3ijpANpkzBAr15j1XGVOMxpggQ==}
engines: {node: '>=12'}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
'@tanstack/table-core@8.20.5':
resolution: {integrity: sha512-P9dF7XbibHph2PFRz8gfBKEXEY/HJPOhym8CHmjF8y3q5mWpKx9xtZapXQUWCgkqvsK0R46Azuz+VaxD4Xl+Tg==}
engines: {node: '>=12'}
'@tiptap/core@2.11.4':
resolution: {integrity: sha512-ahHHyC9fI2tdjbMQEioauiIDEFu1DE9l0PtfOb2uUo5U0rc5EDuAQHGiGgQv77thS1fQL1QW+C/grQ48nN+HPA==}
peerDependencies:
'@tiptap/pm': ^2.7.0
'@tiptap/extension-blockquote@2.11.4':
resolution: {integrity: sha512-l++7GExq1CgVMfT2erGAYXVypYLG4iC2IyXXE3EkJ0+Uol5I3LLbuVY58YP9/B4QARu1zDVR5z38pKDyI9BgfQ==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/extension-bold@2.11.4':
resolution: {integrity: sha512-ivjZnfKt5JnLon3vUGlX8xSnSeggOjBJEFwsXTcbFyXU9TQoX52ADtOgcJmJSm8UAOjxC5Hw7mRMCG5tdUiK5A==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/extension-bubble-menu@2.11.4':
resolution: {integrity: sha512-QzRCu3L7ye5Lnk/4kSUouyZPoVRLiNEzOoxqhsWEhzzKznNCyzdf7kPxI055YPJGS/nuNIudX7DeUc/q+ZWyyA==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/pm': ^2.7.0
'@tiptap/extension-bullet-list@2.11.4':
resolution: {integrity: sha512-F/A8MDwKjpCWxiIvyrE3bd4JffK62csR5oIqtYqE6XNIDD2cYlOOjM2+biokfwokZbpB2RMvPz1Gk09hJJriaA==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/extension-character-count@2.2.4':
resolution: {integrity: sha512-gUeWiIB3Y2+6CuEUq2hKS7BEgvj7l6zAx/xPWlKCbfIyhpQh58m7QLB2OEmdw1EJnGA9VgxqrqOkvdZp8E6vEA==}
peerDependencies:
'@tiptap/core': ^2.0.0
'@tiptap/pm': ^2.0.0
'@tiptap/extension-code-block-lowlight@2.11.4':
resolution: {integrity: sha512-E3UXsm8+FB966BGMhSWzJ6xmk5jqJ31yd4gmfFpIJ1pZjbwzsnXzKpPXsjAY7kbaJ4R4+HSjEnhdX2F699hkHA==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/extension-code-block': ^2.7.0
'@tiptap/pm': ^2.7.0
highlight.js: ^11
lowlight: ^2 || ^3
'@tiptap/extension-code-block@2.11.4':
resolution: {integrity: sha512-N15ifPl/6+0I62/ARfRpqb2CHLDTWszl1OOU9lwMb4pEba1TdI53P+dbK2/JFJieNaaqdFR2pMr5Eae3skD7mQ==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/pm': ^2.7.0
'@tiptap/extension-code@2.11.4':
resolution: {integrity: sha512-cIgvDZz0fcUpBGEaYunXL1WM+ez3stUGDrLfbAcmy2165QwhikmBVmN8q4N5suMGoO8vQ7QmVPD2yp5fsJKxLQ==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/extension-color@2.11.4':
resolution: {integrity: sha512-cRnPn16UlCx+Wj+On0NRHf8xTDIE6wqf2jVs0MQXIttL2ZPfi3k7FKaGsIx3If16ZRORpzm2yRbPQnOuWXcVJA==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/extension-text-style': ^2.7.0
'@tiptap/extension-document@2.11.4':
resolution: {integrity: sha512-fcrE28nXI1SVKmDngSFFcLXKLId7l8d7ikbbWdE7mZiudrEPBmeYQZGC9sNLELdNamMHgtM3ab2kPrx4jrQwRQ==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/extension-dropcursor@2.11.4':
resolution: {integrity: sha512-eg1gcg1rgKJNqz9QIRLG+1f7ST/cTIgtQyVmawAHcH9zqNw+3H/YSn35QoWXZChPy86NabitOnJ1iKUOIxJyXw==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/pm': ^2.7.0
'@tiptap/extension-floating-menu@2.11.4':
resolution: {integrity: sha512-ct9gaRrxvKh12bE57831g6QbY0pv78/HkDF0pJne75kdmhxdr1NJEhzuJF3BSGJyW+aJy5duoT8jf7xtkLcIdg==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/pm': ^2.7.0
'@tiptap/extension-font-family@2.11.4':
resolution: {integrity: sha512-qp4NsPEnDFWyzhLTKgFDyxCWNUZ55Ppk6QL+vJSRjOqvBh4RmM7MMuxtIPFU4iPFQtvbWrORibhwQwr/iav7AQ==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/extension-text-style': ^2.7.0
'@tiptap/extension-gapcursor@2.11.4':
resolution: {integrity: sha512-8/wU0QKK3Ih6QDP/zoYQBIsDgInlsdz9s28kBGF62+Zz2A/tfSvcEgl8DP3dGcdA6dpGo7OgJqn0kMxKNGJFUQ==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/pm': ^2.7.0
'@tiptap/extension-hard-break@2.11.4':
resolution: {integrity: sha512-Dm+ZcLsr4XkpJ2KUMUurMSkwraFOLQeZWX0EY4PJSHKLMIs/Vg4Juzcv5voNpDI+5rwaxlCC92yU8kJ5yLkT6A==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/extension-heading@2.11.4':
resolution: {integrity: sha512-eYE5brNL1kjlDHX1v0qqu9473b1Pc3mtRXmcXMfhsgKcGNQtPbCdKLnyUn/Xc/WT2vQ58AZhwFePpCMsParJTw==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/extension-highlight@2.2.4':
resolution: {integrity: sha512-GGl6ehKQ0Q0gGgUQhkWg2XYPfhVU5c0JD3NHzV4OrBP6JAtFeMYeSLdfYzFcmoYnGafvSZaJ3NukUvnDHZGzRg==}
peerDependencies:
'@tiptap/core': ^2.0.0
'@tiptap/extension-history@2.11.4':
resolution: {integrity: sha512-1PNyJavX73M2kJZUchh3vh3LijUtBV0uSI0b6fJMZT20VAcOTtdFL+pdPzxtJd+MXJlYy+gw7yWLDaB58ipqxg==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/pm': ^2.7.0
'@tiptap/extension-horizontal-rule@2.11.4':
resolution: {integrity: sha512-hrKieMV4KwicAqFJdUTm+wRcsnKTpyPLeBCH8b0+Ywbcf4/MMDP3CX99R3B+nonDQv75QM5mxhmioXHkSvs2EA==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/pm': ^2.7.0
'@tiptap/extension-image@2.11.4':
resolution: {integrity: sha512-o78vJgMk6s5m/QFFLZaAxXwX8INf+X6DDu0yQvnlqyCuNiB2+auBMy41WPyka9WRgWCuwnkWTvkPdngfHXUgTQ==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/extension-italic@2.11.4':
resolution: {integrity: sha512-cFkp5zyX3LSkTnYJ7s+m0EE66VO3WoxHOFgQNEtY+7ds/hTOQBb/hliAkc5sGd4cEHB5EmWiq8CA26p7GosoWw==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/extension-link@2.11.4':
resolution: {integrity: sha512-iuUPcefdm2cKc0Hl8LfOp6+XTvPfmEKUo4sre/ltPZNTpFRrJVaR1KRR1XA/0Xh9cNtPu5iSf3soOrDUYH361g==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/pm': ^2.7.0
'@tiptap/extension-list-item@2.11.4':
resolution: {integrity: sha512-LCOIiV7HRlp9c8E9mwf380LAmDYBtt26/8F84SjaIIGzMj7VdJYIkAKOJJ0yujRj8GXAjlTpAqAfKyv+mTmqNw==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/extension-ordered-list@2.11.4':
resolution: {integrity: sha512-JTqi+vcbPKVlUqaxbwUQtmAU/gG2HhfBK88DbmtPZ1T8TMVwsPqvPmCi8rvjNcJt5u2FP5K6UWoScYqNwC7sag==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/extension-paragraph@2.11.4':
resolution: {integrity: sha512-Mvn11JK4ir8sNRIeNUDA2JnN7LdVzHqg0v2HtR8zggzMhmiExKW1jNJ2obYXK7uJla47GH2/6IqyZaw3raNnig==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/extension-placeholder@2.2.4':
resolution: {integrity: sha512-UL4Fn9T33SoS7vdI3NnSxBJVeGUIgCIutgXZZ5J8CkcRoDIeS78z492z+6J+qGctHwTd0xUL5NzNJI82HfiTdg==}
peerDependencies:
'@tiptap/core': ^2.0.0
'@tiptap/pm': ^2.0.0
'@tiptap/extension-strike@2.11.4':
resolution: {integrity: sha512-+B7PklaujB3Fofqf/8oDcGBFkTYEp6im8qGZIEQF58Z1gJGIFhgijau3JnU6AeGQ3PE4nL3+0x3fPls11TnRoA==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/extension-subscript@2.11.4':
resolution: {integrity: sha512-5mE+1rdRVIbyaNFUgObc+Lh06oeDHhqAM2n1eKKtLS0Fj0fubjqSaeRvV1+XdHGQqwq6mUHSDkqgtOpxyX/o+g==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/extension-superscript@2.11.4':
resolution: {integrity: sha512-0wRiLDcIE1Smf8aLaqbp7M1FlVfMh4dWD9A49gb+Byp3POb11JMtemR/bks2XZQ7zcPtNsJLw9XkfmdUcGEpsg==}