-
Notifications
You must be signed in to change notification settings - Fork 920
Expand file tree
/
Copy pathpnpm-lock.yaml
More file actions
12498 lines (10091 loc) Β· 441 KB
/
pnpm-lock.yaml
File metadata and controls
12498 lines (10091 loc) Β· 441 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
catalogs:
default:
'@argos-ci/playwright':
specifier: ^6.4.1
version: 6.6.1
'@base-ui/react':
specifier: ^1.2.0
version: 1.3.0
'@fumadocs/base-ui':
specifier: 16.6.3
version: 16.6.3
'@fumadocs/cli':
specifier: ^1.2.5
version: 1.3.4
'@kapaai/react-sdk':
specifier: ^0.9.1
version: 0.9.6
'@mixedbread/sdk':
specifier: ^0.46.0
version: 0.46.0
'@playwright/test':
specifier: ^1.58.2
version: 1.59.0
'@radix-ui/react-accordion':
specifier: ^1.2.12
version: 1.2.12
'@radix-ui/react-checkbox':
specifier: ^1.3.3
version: 1.3.3
'@radix-ui/react-collapsible':
specifier: ^1.1.12
version: 1.1.12
'@radix-ui/react-dialog':
specifier: ^1.1.15
version: 1.1.15
'@radix-ui/react-dropdown-menu':
specifier: ^2.1.16
version: 2.1.16
'@radix-ui/react-label':
specifier: ^2.1.8
version: 2.1.8
'@radix-ui/react-radio-group':
specifier: ^1.3.8
version: 1.3.8
'@radix-ui/react-separator':
specifier: ^1.1.8
version: 1.1.8
'@radix-ui/react-slider':
specifier: ^1.3.6
version: 1.3.6
'@radix-ui/react-slot':
specifier: ^1.2.4
version: 1.2.4
'@radix-ui/react-tabs':
specifier: ^1.1.13
version: 1.1.13
'@radix-ui/react-tooltip':
specifier: ^1.2.8
version: 1.2.8
'@sentry/nextjs':
specifier: ^10.39.0
version: 10.47.0
'@streamdown/code':
specifier: ^1.0.3
version: 1.1.1
'@tailwindcss/postcss':
specifier: ^4.2.0
version: 4.2.2
'@types/mdx':
specifier: ^2.0.13
version: 2.0.13
'@types/node':
specifier: ^25.3.0
version: 25.5.0
'@types/react':
specifier: ^19.2.14
version: 19.2.14
'@types/react-dom':
specifier: ^19.2.3
version: 19.2.3
babel-plugin-react-compiler:
specifier: 1.0.0
version: 1.0.0
class-variance-authority:
specifier: ^0.7.1
version: 0.7.1
clsx:
specifier: ^2.1.1
version: 2.1.1
cspell:
specifier: ^9.6.4
version: 9.7.0
dexie:
specifier: ^4.3.0
version: 4.4.2
dexie-react-hooks:
specifier: ^4.2.0
version: 4.4.0
fast-glob:
specifier: ^3.3.3
version: 3.3.3
feed:
specifier: ^5.2.0
version: 5.2.0
fumadocs-core:
specifier: 16.6.3
version: 16.6.3
fumadocs-mdx:
specifier: 14.2.9
version: 14.2.9
fumadocs-openapi:
specifier: 10.3.17
version: 10.3.17
fumadocs-ui:
specifier: npm:@fumadocs/base-ui@16.6.3
version: 16.6.3
gray-matter:
specifier: ^4.0.3
version: 4.0.3
jotai:
specifier: ^2.18.0
version: 2.19.0
lucide-react:
specifier: ^0.575.0
version: 0.575.0
motion:
specifier: ^12.34.2
version: 12.38.0
next:
specifier: 16.1.6
version: 16.1.6
next-themes:
specifier: ^0.4.6
version: 0.4.6
next-validate-link:
specifier: ^1.6.3
version: 1.6.4
npm-to-yarn:
specifier: ^3.0.1
version: 3.0.1
oxfmt:
specifier: ^0.33.0
version: 0.33.0
oxlint:
specifier: ^1.48.0
version: 1.58.0
postcss:
specifier: ^8.5.6
version: 8.5.8
posthog-js:
specifier: ^1.351.3
version: 1.364.4
react:
specifier: ^19.2.4
version: 19.2.4
react-animated-numbers:
specifier: ^1.1.1
version: 1.1.1
react-dom:
specifier: ^19.2.4
version: 19.2.4
react-tweet:
specifier: ^3.3.0
version: 3.3.0
recharts:
specifier: ^3.7.0
version: 3.8.1
remark-directive:
specifier: ^4.0.0
version: 4.0.0
rimraf:
specifier: ^6.1.3
version: 6.1.3
scroll-into-view-if-needed:
specifier: ^3.1.0
version: 3.1.0
streamdown:
specifier: ^2.3.0
version: 2.5.0
tailwind-merge:
specifier: ^3.5.0
version: 3.5.0
tailwindcss:
specifier: ^4.2.0
version: 4.2.2
tsx:
specifier: ^4.19.0
version: 4.21.0
turbo:
specifier: ^2.8.10
version: 2.9.3
tw-animate-css:
specifier: ^1.4.0
version: 1.4.0
typescript:
specifier: ^5.9.3
version: 5.9.3
use-stick-to-bottom:
specifier: ^1.1.3
version: 1.1.3
vaul:
specifier: ^1.1.2
version: 1.1.2
zod:
specifier: ^4.3.6
version: 4.3.6
overrides:
shiki: ^4.0.2
fast-xml-parser: '>=5.3.8'
minimatch: '>=10.2.3'
serialize-javascript: '>=7.0.3'
rollup: '>=4.59.0'
importers:
.:
devDependencies:
'@types/node':
specifier: 'catalog:'
version: 25.5.0
oxfmt:
specifier: 'catalog:'
version: 0.33.0
oxlint:
specifier: 'catalog:'
version: 1.58.0
turbo:
specifier: 'catalog:'
version: 2.9.3
apps/blog:
dependencies:
'@base-ui/react':
specifier: 'catalog:'
version: 1.3.0(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
'@fumadocs/base-ui':
specifier: 'catalog:'
version: 16.6.3(@types/react@19.2.14)(fumadocs-core@16.6.3(@mdx-js/mdx@3.1.1)(@mixedbread/sdk@0.46.0)(@types/estree-jsx@1.0.5)(@types/hast@3.0.4)(@types/mdast@4.0.4)(@types/react@19.2.14)(lucide-react@0.575.0(react@19.2.4))(next@16.1.6(@babel/core@7.29.0)(@opentelemetry/api@1.9.1)(@playwright/test@1.59.0)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(zod@4.3.6))(next@16.1.6(@babel/core@7.29.0)(@opentelemetry/api@1.9.1)(@playwright/test@1.59.0)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(tailwindcss@4.2.2)
'@fumadocs/cli':
specifier: 'catalog:'
version: 1.3.4(@emnapi/core@1.9.1)(@emnapi/runtime@1.9.1)
'@mixedbread/sdk':
specifier: 'catalog:'
version: 0.46.0
'@prisma-docs/ui':
specifier: workspace:*
version: link:../../packages/ui
'@prisma/eclipse':
specifier: workspace:^
version: link:../../packages/eclipse
cors:
specifier: ^2.8.6
version: 2.8.6
fumadocs-core:
specifier: 'catalog:'
version: 16.6.3(@mdx-js/mdx@3.1.1)(@mixedbread/sdk@0.46.0)(@types/estree-jsx@1.0.5)(@types/hast@3.0.4)(@types/mdast@4.0.4)(@types/react@19.2.14)(lucide-react@0.575.0(react@19.2.4))(next@16.1.6(@babel/core@7.29.0)(@opentelemetry/api@1.9.1)(@playwright/test@1.59.0)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(zod@4.3.6)
fumadocs-mdx:
specifier: 'catalog:'
version: 14.2.9(@types/mdast@4.0.4)(@types/mdx@2.0.13)(@types/react@19.2.14)(fumadocs-core@16.6.3(@mdx-js/mdx@3.1.1)(@mixedbread/sdk@0.46.0)(@types/estree-jsx@1.0.5)(@types/hast@3.0.4)(@types/mdast@4.0.4)(@types/react@19.2.14)(lucide-react@0.575.0(react@19.2.4))(next@16.1.6(@babel/core@7.29.0)(@opentelemetry/api@1.9.1)(@playwright/test@1.59.0)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(zod@4.3.6))(mdast-util-directive@3.1.0)(next@16.1.6(@babel/core@7.29.0)(@opentelemetry/api@1.9.1)(@playwright/test@1.59.0)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react@19.2.4)
fumadocs-openapi:
specifier: 'catalog:'
version: 10.3.17(35ac6ed76a0a0af52e89afd8526c5f89)
fumadocs-ui:
specifier: 'catalog:'
version: '@fumadocs/base-ui@16.6.3(@types/react@19.2.14)(fumadocs-core@16.6.3(@mdx-js/mdx@3.1.1)(@mixedbread/sdk@0.46.0)(@types/estree-jsx@1.0.5)(@types/hast@3.0.4)(@types/mdast@4.0.4)(@types/react@19.2.14)(lucide-react@0.575.0(react@19.2.4))(next@16.1.6(@babel/core@7.29.0)(@opentelemetry/api@1.9.1)(@playwright/test@1.59.0)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(zod@4.3.6))(next@16.1.6(@babel/core@7.29.0)(@opentelemetry/api@1.9.1)(@playwright/test@1.59.0)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(tailwindcss@4.2.2)'
lucide-react:
specifier: 'catalog:'
version: 0.575.0(react@19.2.4)
next:
specifier: 'catalog:'
version: 16.1.6(@babel/core@7.29.0)(@opentelemetry/api@1.9.1)(@playwright/test@1.59.0)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
npm-to-yarn:
specifier: 'catalog:'
version: 3.0.1
posthog-js:
specifier: 'catalog:'
version: 1.364.4
react:
specifier: 'catalog:'
version: 19.2.4
react-dom:
specifier: 'catalog:'
version: 19.2.4(react@19.2.4)
react-tweet:
specifier: 'catalog:'
version: 3.3.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
remark-directive:
specifier: 'catalog:'
version: 4.0.0
zod:
specifier: 'catalog:'
version: 4.3.6
devDependencies:
'@tailwindcss/postcss':
specifier: 'catalog:'
version: 4.2.2
'@types/mdx':
specifier: 'catalog:'
version: 2.0.13
'@types/node':
specifier: 'catalog:'
version: 25.5.0
'@types/react':
specifier: 'catalog:'
version: 19.2.14
'@types/react-dom':
specifier: 'catalog:'
version: 19.2.3(@types/react@19.2.14)
babel-plugin-react-compiler:
specifier: 'catalog:'
version: 1.0.0
next-validate-link:
specifier: 'catalog:'
version: 1.6.4
postcss:
specifier: 'catalog:'
version: 8.5.8
tailwindcss:
specifier: 'catalog:'
version: 4.2.2
tsx:
specifier: 'catalog:'
version: 4.21.0
typescript:
specifier: 'catalog:'
version: 5.9.3
apps/docs:
dependencies:
'@base-ui/react':
specifier: 'catalog:'
version: 1.3.0(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
'@fumadocs/base-ui':
specifier: 'catalog:'
version: 16.6.3(@types/react@19.2.14)(fumadocs-core@16.6.3(@mdx-js/mdx@3.1.1)(@mixedbread/sdk@0.46.0)(@types/estree-jsx@1.0.5)(@types/hast@3.0.4)(@types/mdast@4.0.4)(@types/react@19.2.14)(lucide-react@0.575.0(react@19.2.4))(next@16.1.6(@babel/core@7.29.0)(@opentelemetry/api@1.9.1)(@playwright/test@1.59.0)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(zod@4.3.6))(next@16.1.6(@babel/core@7.29.0)(@opentelemetry/api@1.9.1)(@playwright/test@1.59.0)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(tailwindcss@4.2.2)
'@fumadocs/cli':
specifier: 'catalog:'
version: 1.3.4(@emnapi/core@1.9.1)(@emnapi/runtime@1.9.1)
'@kapaai/react-sdk':
specifier: 'catalog:'
version: 0.9.6(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
'@mixedbread/sdk':
specifier: 'catalog:'
version: 0.46.0
'@prisma-docs/ui':
specifier: workspace:*
version: link:../../packages/ui
'@prisma/eclipse':
specifier: workspace:^
version: link:../../packages/eclipse
'@radix-ui/react-tooltip':
specifier: 'catalog:'
version: 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
'@sentry/nextjs':
specifier: 'catalog:'
version: 10.47.0(@opentelemetry/context-async-hooks@2.6.1(@opentelemetry/api@1.9.1))(@opentelemetry/core@2.6.1(@opentelemetry/api@1.9.1))(@opentelemetry/sdk-trace-base@2.6.1(@opentelemetry/api@1.9.1))(next@16.1.6(@babel/core@7.29.0)(@opentelemetry/api@1.9.1)(@playwright/test@1.59.0)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react@19.2.4)(webpack@5.105.4)
'@streamdown/code':
specifier: 'catalog:'
version: 1.1.1(react@19.2.4)
class-variance-authority:
specifier: 'catalog:'
version: 0.7.1
dexie:
specifier: 'catalog:'
version: 4.4.2
dexie-react-hooks:
specifier: 'catalog:'
version: 4.4.0(dexie@4.4.2)(react@19.2.4)
fumadocs-core:
specifier: 'catalog:'
version: 16.6.3(@mdx-js/mdx@3.1.1)(@mixedbread/sdk@0.46.0)(@types/estree-jsx@1.0.5)(@types/hast@3.0.4)(@types/mdast@4.0.4)(@types/react@19.2.14)(lucide-react@0.575.0(react@19.2.4))(next@16.1.6(@babel/core@7.29.0)(@opentelemetry/api@1.9.1)(@playwright/test@1.59.0)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(zod@4.3.6)
fumadocs-mdx:
specifier: 'catalog:'
version: 14.2.9(@types/mdast@4.0.4)(@types/mdx@2.0.13)(@types/react@19.2.14)(fumadocs-core@16.6.3(@mdx-js/mdx@3.1.1)(@mixedbread/sdk@0.46.0)(@types/estree-jsx@1.0.5)(@types/hast@3.0.4)(@types/mdast@4.0.4)(@types/react@19.2.14)(lucide-react@0.575.0(react@19.2.4))(next@16.1.6(@babel/core@7.29.0)(@opentelemetry/api@1.9.1)(@playwright/test@1.59.0)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(zod@4.3.6))(mdast-util-directive@3.1.0)(next@16.1.6(@babel/core@7.29.0)(@opentelemetry/api@1.9.1)(@playwright/test@1.59.0)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react@19.2.4)
fumadocs-openapi:
specifier: 'catalog:'
version: 10.3.17(35ac6ed76a0a0af52e89afd8526c5f89)
fumadocs-ui:
specifier: 'catalog:'
version: '@fumadocs/base-ui@16.6.3(@types/react@19.2.14)(fumadocs-core@16.6.3(@mdx-js/mdx@3.1.1)(@mixedbread/sdk@0.46.0)(@types/estree-jsx@1.0.5)(@types/hast@3.0.4)(@types/mdast@4.0.4)(@types/react@19.2.14)(lucide-react@0.575.0(react@19.2.4))(next@16.1.6(@babel/core@7.29.0)(@opentelemetry/api@1.9.1)(@playwright/test@1.59.0)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(zod@4.3.6))(next@16.1.6(@babel/core@7.29.0)(@opentelemetry/api@1.9.1)(@playwright/test@1.59.0)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(tailwindcss@4.2.2)'
jotai:
specifier: 'catalog:'
version: 2.19.0(@babel/core@7.29.0)(@babel/template@7.28.6)(@types/react@19.2.14)(react@19.2.4)
lucide-react:
specifier: 'catalog:'
version: 0.575.0(react@19.2.4)
motion:
specifier: 'catalog:'
version: 12.38.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
next:
specifier: 'catalog:'
version: 16.1.6(@babel/core@7.29.0)(@opentelemetry/api@1.9.1)(@playwright/test@1.59.0)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
next-themes:
specifier: 'catalog:'
version: 0.4.6(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
npm-to-yarn:
specifier: 'catalog:'
version: 3.0.1
posthog-js:
specifier: 'catalog:'
version: 1.364.4
react:
specifier: 'catalog:'
version: 19.2.4
react-dom:
specifier: 'catalog:'
version: 19.2.4(react@19.2.4)
remark-directive:
specifier: 'catalog:'
version: 4.0.0
scroll-into-view-if-needed:
specifier: 'catalog:'
version: 3.1.0
streamdown:
specifier: 'catalog:'
version: 2.5.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
tailwind-merge:
specifier: 'catalog:'
version: 3.5.0
unist-util-visit:
specifier: ^5.1.0
version: 5.1.0
use-stick-to-bottom:
specifier: 'catalog:'
version: 1.1.3(react@19.2.4)
zod:
specifier: 'catalog:'
version: 4.3.6
devDependencies:
'@argos-ci/playwright':
specifier: 'catalog:'
version: 6.6.1
'@playwright/test':
specifier: 'catalog:'
version: 1.59.0
'@tailwindcss/postcss':
specifier: 'catalog:'
version: 4.2.2
'@types/mdast':
specifier: ^4.0.4
version: 4.0.4
'@types/mdx':
specifier: 'catalog:'
version: 2.0.13
'@types/node':
specifier: 'catalog:'
version: 25.5.0
'@types/react':
specifier: 'catalog:'
version: 19.2.14
'@types/react-dom':
specifier: 'catalog:'
version: 19.2.3(@types/react@19.2.14)
cspell:
specifier: 'catalog:'
version: 9.7.0
fast-glob:
specifier: 'catalog:'
version: 3.3.3
gray-matter:
specifier: 'catalog:'
version: 4.0.3
next-validate-link:
specifier: 'catalog:'
version: 1.6.4
postcss:
specifier: 'catalog:'
version: 8.5.8
rimraf:
specifier: 'catalog:'
version: 6.1.3
tailwindcss:
specifier: 'catalog:'
version: 4.2.2
tsx:
specifier: 'catalog:'
version: 4.21.0
tw-animate-css:
specifier: 'catalog:'
version: 1.4.0
typescript:
specifier: 'catalog:'
version: 5.9.3
unified:
specifier: ^11.0.5
version: 11.0.5
apps/eclipse:
dependencies:
'@base-ui/react':
specifier: 'catalog:'
version: 1.3.0(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
'@fumadocs/base-ui':
specifier: 'catalog:'
version: 16.6.3(@types/react@19.2.14)(fumadocs-core@16.6.3(@mdx-js/mdx@3.1.1)(@mixedbread/sdk@0.46.0)(@types/estree-jsx@1.0.5)(@types/hast@3.0.4)(@types/mdast@4.0.4)(@types/react@19.2.14)(lucide-react@0.575.0(react@19.2.4))(next@16.1.6(@babel/core@7.29.0)(@opentelemetry/api@1.9.1)(@playwright/test@1.59.0)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(zod@4.3.6))(next@16.1.6(@babel/core@7.29.0)(@opentelemetry/api@1.9.1)(@playwright/test@1.59.0)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(tailwindcss@4.2.2)
'@fumadocs/cli':
specifier: 'catalog:'
version: 1.3.4(@emnapi/core@1.9.1)(@emnapi/runtime@1.9.1)
'@prisma-docs/ui':
specifier: workspace:*
version: link:../../packages/ui
'@prisma/eclipse':
specifier: workspace:^
version: link:../../packages/eclipse
class-variance-authority:
specifier: 'catalog:'
version: 0.7.1
fumadocs-core:
specifier: 'catalog:'
version: 16.6.3(@mdx-js/mdx@3.1.1)(@mixedbread/sdk@0.46.0)(@types/estree-jsx@1.0.5)(@types/hast@3.0.4)(@types/mdast@4.0.4)(@types/react@19.2.14)(lucide-react@0.575.0(react@19.2.4))(next@16.1.6(@babel/core@7.29.0)(@opentelemetry/api@1.9.1)(@playwright/test@1.59.0)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(zod@4.3.6)
fumadocs-mdx:
specifier: 'catalog:'
version: 14.2.9(@types/mdast@4.0.4)(@types/mdx@2.0.13)(@types/react@19.2.14)(fumadocs-core@16.6.3(@mdx-js/mdx@3.1.1)(@mixedbread/sdk@0.46.0)(@types/estree-jsx@1.0.5)(@types/hast@3.0.4)(@types/mdast@4.0.4)(@types/react@19.2.14)(lucide-react@0.575.0(react@19.2.4))(next@16.1.6(@babel/core@7.29.0)(@opentelemetry/api@1.9.1)(@playwright/test@1.59.0)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(zod@4.3.6))(mdast-util-directive@3.1.0)(next@16.1.6(@babel/core@7.29.0)(@opentelemetry/api@1.9.1)(@playwright/test@1.59.0)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react@19.2.4)
fumadocs-ui:
specifier: 'catalog:'
version: '@fumadocs/base-ui@16.6.3(@types/react@19.2.14)(fumadocs-core@16.6.3(@mdx-js/mdx@3.1.1)(@mixedbread/sdk@0.46.0)(@types/estree-jsx@1.0.5)(@types/hast@3.0.4)(@types/mdast@4.0.4)(@types/react@19.2.14)(lucide-react@0.575.0(react@19.2.4))(next@16.1.6(@babel/core@7.29.0)(@opentelemetry/api@1.9.1)(@playwright/test@1.59.0)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(zod@4.3.6))(next@16.1.6(@babel/core@7.29.0)(@opentelemetry/api@1.9.1)(@playwright/test@1.59.0)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(tailwindcss@4.2.2)'
lucide-react:
specifier: 'catalog:'
version: 0.575.0(react@19.2.4)
next:
specifier: 'catalog:'
version: 16.1.6(@babel/core@7.29.0)(@opentelemetry/api@1.9.1)(@playwright/test@1.59.0)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
next-themes:
specifier: 'catalog:'
version: 0.4.6(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
npm-to-yarn:
specifier: 'catalog:'
version: 3.0.1
react:
specifier: 'catalog:'
version: 19.2.4
react-dom:
specifier: 'catalog:'
version: 19.2.4(react@19.2.4)
recharts:
specifier: 'catalog:'
version: 3.8.1(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react-is@16.13.1)(react@19.2.4)(redux@5.0.1)
remark-directive:
specifier: 'catalog:'
version: 4.0.0
scroll-into-view-if-needed:
specifier: 'catalog:'
version: 3.1.0
zod:
specifier: 'catalog:'
version: 4.3.6
devDependencies:
'@argos-ci/playwright':
specifier: 'catalog:'
version: 6.6.1
'@playwright/test':
specifier: 'catalog:'
version: 1.59.0
'@tailwindcss/postcss':
specifier: 'catalog:'
version: 4.2.2
'@types/mdx':
specifier: 'catalog:'
version: 2.0.13
'@types/node':
specifier: 'catalog:'
version: 25.5.0
'@types/react':
specifier: 'catalog:'
version: 19.2.14
'@types/react-dom':
specifier: 'catalog:'
version: 19.2.3(@types/react@19.2.14)
postcss:
specifier: 'catalog:'
version: 8.5.8
rimraf:
specifier: 'catalog:'
version: 6.1.3
tailwindcss:
specifier: 'catalog:'
version: 4.2.2
tw-animate-css:
specifier: 'catalog:'
version: 1.4.0
typescript:
specifier: 'catalog:'
version: 5.9.3
apps/site:
dependencies:
'@base-ui/react':
specifier: 'catalog:'
version: 1.3.0(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
'@fumadocs/base-ui':
specifier: 'catalog:'
version: 16.6.3(@types/react@19.2.14)(fumadocs-core@16.6.3(@mdx-js/mdx@3.1.1)(@mixedbread/sdk@0.46.0)(@types/estree-jsx@1.0.5)(@types/hast@3.0.4)(@types/mdast@4.0.4)(@types/react@19.2.14)(lucide-react@0.575.0(react@19.2.4))(next@16.1.6(@babel/core@7.29.0)(@opentelemetry/api@1.9.1)(@playwright/test@1.59.0)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(zod@4.3.6))(next@16.1.6(@babel/core@7.29.0)(@opentelemetry/api@1.9.1)(@playwright/test@1.59.0)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(tailwindcss@4.2.2)
'@mixedbread/sdk':
specifier: 'catalog:'
version: 0.46.0
'@prisma-docs/ui':
specifier: workspace:*
version: link:../../packages/ui
'@prisma/eclipse':
specifier: workspace:^
version: link:../../packages/eclipse
'@react-three/fiber':
specifier: ^9.5.0
version: 9.5.0(@types/react@19.2.14)(immer@11.1.4)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(three@0.183.2)
cors:
specifier: ^2.8.6
version: 2.8.6
fumadocs-core:
specifier: 'catalog:'
version: 16.6.3(@mdx-js/mdx@3.1.1)(@mixedbread/sdk@0.46.0)(@types/estree-jsx@1.0.5)(@types/hast@3.0.4)(@types/mdast@4.0.4)(@types/react@19.2.14)(lucide-react@0.575.0(react@19.2.4))(next@16.1.6(@babel/core@7.29.0)(@opentelemetry/api@1.9.1)(@playwright/test@1.59.0)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(zod@4.3.6)
fumadocs-mdx:
specifier: 'catalog:'
version: 14.2.9(@types/mdast@4.0.4)(@types/mdx@2.0.13)(@types/react@19.2.14)(fumadocs-core@16.6.3(@mdx-js/mdx@3.1.1)(@mixedbread/sdk@0.46.0)(@types/estree-jsx@1.0.5)(@types/hast@3.0.4)(@types/mdast@4.0.4)(@types/react@19.2.14)(lucide-react@0.575.0(react@19.2.4))(next@16.1.6(@babel/core@7.29.0)(@opentelemetry/api@1.9.1)(@playwright/test@1.59.0)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(zod@4.3.6))(mdast-util-directive@3.1.0)(next@16.1.6(@babel/core@7.29.0)(@opentelemetry/api@1.9.1)(@playwright/test@1.59.0)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react@19.2.4)
fumadocs-ui:
specifier: 'catalog:'
version: '@fumadocs/base-ui@16.6.3(@types/react@19.2.14)(fumadocs-core@16.6.3(@mdx-js/mdx@3.1.1)(@mixedbread/sdk@0.46.0)(@types/estree-jsx@1.0.5)(@types/hast@3.0.4)(@types/mdast@4.0.4)(@types/react@19.2.14)(lucide-react@0.575.0(react@19.2.4))(next@16.1.6(@babel/core@7.29.0)(@opentelemetry/api@1.9.1)(@playwright/test@1.59.0)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(zod@4.3.6))(next@16.1.6(@babel/core@7.29.0)(@opentelemetry/api@1.9.1)(@playwright/test@1.59.0)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(tailwindcss@4.2.2)'
html-react-parser:
specifier: ^5.2.17
version: 5.2.17(@types/react@19.2.14)(react@19.2.4)
lucide-react:
specifier: 'catalog:'
version: 0.575.0(react@19.2.4)
next:
specifier: 'catalog:'
version: 16.1.6(@babel/core@7.29.0)(@opentelemetry/api@1.9.1)(@playwright/test@1.59.0)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
npm-to-yarn:
specifier: 'catalog:'
version: 3.0.1
posthog-js:
specifier: 'catalog:'
version: 1.364.4
prop-types:
specifier: ^15.8.1
version: 15.8.1
react:
specifier: 'catalog:'
version: 19.2.4
react-animated-numbers:
specifier: 'catalog:'
version: 1.1.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
react-dom:
specifier: 'catalog:'
version: 19.2.4(react@19.2.4)
react-github-btn:
specifier: ^1.4.0
version: 1.4.0(react@19.2.4)
react-intersection-observer:
specifier: ^10.0.3
version: 10.0.3(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
react-tweet:
specifier: 'catalog:'
version: 3.3.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
recharts:
specifier: 'catalog:'
version: 3.8.1(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react-is@16.13.1)(react@19.2.4)(redux@5.0.1)
remark-directive:
specifier: 'catalog:'
version: 4.0.0
shiki:
specifier: ^4.0.2
version: 4.0.2
tailwind-merge:
specifier: 'catalog:'
version: 3.5.0
three:
specifier: ^0.183.2
version: 0.183.2
zod:
specifier: 'catalog:'
version: 4.3.6
devDependencies:
'@tailwindcss/postcss':
specifier: 'catalog:'
version: 4.2.2
'@types/mdx':
specifier: 'catalog:'
version: 2.0.13
'@types/node':
specifier: 'catalog:'
version: 25.5.0
'@types/react':
specifier: 'catalog:'
version: 19.2.14
'@types/react-dom':
specifier: 'catalog:'
version: 19.2.3(@types/react@19.2.14)
'@types/three':
specifier: ^0.183.1
version: 0.183.1
babel-plugin-react-compiler:
specifier: 'catalog:'
version: 1.0.0
next-validate-link:
specifier: 'catalog:'
version: 1.6.4
postcss:
specifier: 'catalog:'
version: 8.5.8
tailwindcss:
specifier: 'catalog:'
version: 4.2.2
tsx:
specifier: 'catalog:'
version: 4.21.0
typescript:
specifier: 'catalog:'
version: 5.9.3
packages/eclipse:
dependencies:
'@base-ui/react':
specifier: 'catalog:'
version: 1.3.0(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
'@radix-ui/react-accordion':
specifier: 'catalog:'
version: 1.2.12(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
'@radix-ui/react-checkbox':
specifier: 'catalog:'
version: 1.3.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
'@radix-ui/react-collapsible':
specifier: 'catalog:'
version: 1.1.12(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
'@radix-ui/react-dialog':
specifier: 'catalog:'
version: 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
'@radix-ui/react-dropdown-menu':
specifier: 'catalog:'
version: 2.1.16(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
'@radix-ui/react-label':
specifier: 'catalog:'
version: 2.1.8(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
'@radix-ui/react-radio-group':
specifier: 'catalog:'
version: 1.3.8(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
'@radix-ui/react-separator':
specifier: 'catalog:'
version: 1.1.8(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
'@radix-ui/react-slider':
specifier: 'catalog:'
version: 1.3.6(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
'@radix-ui/react-slot':
specifier: 'catalog:'
version: 1.2.4(@types/react@19.2.14)(react@19.2.4)
'@radix-ui/react-tabs':
specifier: 'catalog:'
version: 1.1.13(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
'@radix-ui/react-tooltip':
specifier: 'catalog:'
version: 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
'@tailwindcss/postcss':
specifier: 'catalog:'
version: 4.2.2
class-variance-authority:
specifier: 'catalog:'
version: 0.7.1
lucide-react:
specifier: 'catalog:'
version: 0.575.0(react@19.2.4)
react:
specifier: ^19.2.0
version: 19.2.4
react-dom:
specifier: ^19.2.0
version: 19.2.4(react@19.2.4)
recharts:
specifier: 'catalog:'
version: 3.8.1(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react-is@16.13.1)(react@19.2.4)(redux@5.0.1)
tailwind-merge:
specifier: 'catalog:'
version: 3.5.0
tw-animate-css:
specifier: 'catalog:'
version: 1.4.0
devDependencies:
'@types/react':
specifier: 'catalog:'
version: 19.2.14
'@types/react-dom':
specifier: 'catalog:'
version: 19.2.3(@types/react@19.2.14)
rimraf:
specifier: 'catalog:'
version: 6.1.3
tailwindcss:
specifier: 'catalog:'
version: 4.2.2
tsdown:
specifier: ^0.20.3
version: 0.20.3(@emnapi/core@1.9.1)(@emnapi/runtime@1.9.1)(oxc-resolver@11.19.1(@emnapi/core@1.9.1)(@emnapi/runtime@1.9.1))(typescript@5.9.3)
typescript:
specifier: 'catalog:'
version: 5.9.3
packages/ui:
dependencies:
'@base-ui/react':
specifier: 'catalog:'
version: 1.3.0(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
'@prisma/eclipse':
specifier: workspace:*
version: link:../eclipse
class-variance-authority:
specifier: 'catalog:'
version: 0.7.1
clsx:
specifier: 'catalog:'
version: 2.1.1
feed:
specifier: 'catalog:'
version: 5.2.0
lucide-react:
specifier: 'catalog:'
version: 0.575.0(react@19.2.4)
next:
specifier: 'catalog:'
version: 16.1.6(@babel/core@7.29.0)(@opentelemetry/api@1.9.1)(@playwright/test@1.59.0)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
react:
specifier: ^19.2.0
version: 19.2.4
react-dom:
specifier: ^19.2.0
version: 19.2.4(react@19.2.4)
react-intersection-observer:
specifier: ^10.0.3
version: 10.0.3(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
tailwind-merge:
specifier: 'catalog:'
version: 3.5.0
vaul:
specifier: 'catalog:'
version: 1.1.2(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
devDependencies:
'@tailwindcss/postcss':
specifier: 'catalog:'
version: 4.2.2
'@types/react':
specifier: 'catalog:'
version: 19.2.14
'@types/react-dom':
specifier: 'catalog:'
version: 19.2.3(@types/react@19.2.14)
tailwindcss:
specifier: 'catalog:'
version: 4.2.2
typescript:
specifier: 'catalog:'
version: 5.9.3
packages:
'@alloc/quick-lru@5.2.0':
resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
engines: {node: '>=10'}
'@antfu/install-pkg@1.1.0':
resolution: {integrity: sha512-MGQsmw10ZyI+EJo45CdSER4zEb+p31LpDAFp2Z3gkSd1yqVZGi0Ebx++YTEMonJy4oChEMLsxZ64j8FH6sSqtQ==}
'@argos-ci/api-client@0.17.0':
resolution: {integrity: sha512-z74ZdqT46+sirGlJUXXn1vhZZshUU50bRLfeVCeHilEf585N8GG7demF4vtY+dp226jGqSf+CkgBfg/O48AxAA==}
engines: {node: '>=20.0.0'}
'@argos-ci/browser@5.1.3':
resolution: {integrity: sha512-2acfqcb7A2VNqm43bBk90PleBV+qCwO68FNmoGn28zs3d10G3W3/ZkqtoYUY3ycWclWQ/KYxH8SdHQfz4iB3ow==}
engines: {node: '>=20.0.0'}
'@argos-ci/core@5.2.0':
resolution: {integrity: sha512-DUTcNf8VFtlZj2h2qH1GP7lvDiaX4v+rZs/SQA2uAQp4J6Oapl40D90O4Hum8XZt1kaKC5BrxeDAohomH/plkA==}
engines: {node: '>=20.0.0'}
'@argos-ci/playwright@6.6.1':
resolution: {integrity: sha512-GdNeCDjBX0vozgDg7jYzBY0iSQobjmNgOXjCpHQl8k8ZuwgAQ+oklfWx45uu4L1Sa6aZ8NmR6UCABTPCESXSJA==}
engines: {node: '>=20.0.0'}
'@argos-ci/util@3.4.0':
resolution: {integrity: sha512-rPa8xu6k0TkK1V4CIapcx2x/ncB7dvGa0adXCkflQf+rZZvZaVI3jCVXR57bCZn+S5AWndj4+A/7pX5xV9krvQ==}
engines: {node: '>=20.0.0'}
'@babel/code-frame@7.29.0':
resolution: {integrity: sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==}
engines: {node: '>=6.9.0'}
'@babel/compat-data@7.29.0':
resolution: {integrity: sha512-T1NCJqT/j9+cn8fvkt7jtwbLBfLC/1y1c7NtCeXFRgzGTsafi68MRv8yzkYSapBnFA6L3U2VSc02ciDzoAJhJg==}
engines: {node: '>=6.9.0'}
'@babel/core@7.29.0':
resolution: {integrity: sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==}
engines: {node: '>=6.9.0'}
'@babel/generator@7.29.1':
resolution: {integrity: sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==}
engines: {node: '>=6.9.0'}
'@babel/generator@8.0.0-rc.2':
resolution: {integrity: sha512-oCQ1IKPwkzCeJzAPb7Fv8rQ9k5+1sG8mf2uoHiMInPYvkRfrDJxbTIbH51U+jstlkghus0vAi3EBvkfvEsYNLQ==}
engines: {node: ^20.19.0 || >=22.12.0}
'@babel/helper-compilation-targets@7.28.6':
resolution: {integrity: sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==}
engines: {node: '>=6.9.0'}
'@babel/helper-globals@7.28.0':
resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==}
engines: {node: '>=6.9.0'}
'@babel/helper-module-imports@7.28.6':
resolution: {integrity: sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==}
engines: {node: '>=6.9.0'}
'@babel/helper-module-transforms@7.28.6':
resolution: {integrity: sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-string-parser@7.27.1':
resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
engines: {node: '>=6.9.0'}
'@babel/helper-string-parser@8.0.0-rc.3':
resolution: {integrity: sha512-AmwWFx1m8G/a5cXkxLxTiWl+YEoWuoFLUCwqMlNuWO1tqAYITQAbCRPUkyBHv1VOFgfjVOqEj6L3u15J5ZCzTA==}
engines: {node: ^20.19.0 || >=22.12.0}
'@babel/helper-validator-identifier@7.28.5':
resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-identifier@8.0.0-rc.2':
resolution: {integrity: sha512-xExUBkuXWJjVuIbO7z6q7/BA9bgfJDEhVL0ggrggLMbg0IzCUWGT1hZGE8qUH7Il7/RD/a6cZ3AAFrrlp1LF/A==}
engines: {node: ^20.19.0 || >=22.12.0}
'@babel/helper-validator-option@7.27.1':
resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==}
engines: {node: '>=6.9.0'}
'@babel/helpers@7.29.2':
resolution: {integrity: sha512-HoGuUs4sCZNezVEKdVcwqmZN8GoHirLUcLaYVNBK2J0DadGtdcqgr3BCbvH8+XUo4NGjNl3VOtSjEKNzqfFgKw==}
engines: {node: '>=6.9.0'}
'@babel/parser@7.29.2':
resolution: {integrity: sha512-4GgRzy/+fsBa72/RZVJmGKPmZu9Byn8o4MoLpmNe1m8ZfYnz5emHLQz3U4gLud6Zwl0RZIcgiLD7Uq7ySFuDLA==}
engines: {node: '>=6.0.0'}
hasBin: true
'@babel/parser@8.0.0-rc.2':
resolution: {integrity: sha512-29AhEtcq4x8Dp3T72qvUMZHx0OMXCj4Jy/TEReQa+KWLln524Cj1fWb3QFi0l/xSpptQBR6y9RNEXuxpFvwiUQ==}
engines: {node: ^20.19.0 || >=22.12.0}
hasBin: true
'@babel/runtime@7.29.2':
resolution: {integrity: sha512-JiDShH45zKHWyGe4ZNVRrCjBz8Nh9TMmZG1kh4QTK8hCBTWBi8Da+i7s1fJw7/lYpM4ccepSNfqzZ/QvABBi5g==}
engines: {node: '>=6.9.0'}
'@babel/template@7.28.6':
resolution: {integrity: sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==}
engines: {node: '>=6.9.0'}
'@babel/traverse@7.29.0':
resolution: {integrity: sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==}
engines: {node: '>=6.9.0'}
'@babel/types@7.29.0':
resolution: {integrity: sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==}
engines: {node: '>=6.9.0'}
'@babel/types@8.0.0-rc.2':
resolution: {integrity: sha512-91gAaWRznDwSX4E2tZ1YjBuIfnQVOFDCQ2r0Toby0gu4XEbyF623kXLMA8d4ZbCu+fINcrudkmEcwSUHgDDkNw==}
engines: {node: ^20.19.0 || >=22.12.0}
'@base-ui/react@1.3.0':
resolution: {integrity: sha512-FwpKqZbPz14AITp1CVgf4AjhKPe1OeeVKSBMdgD10zbFlj3QSWelmtCMLi2+/PFZZcIm3l87G7rwtCZJwHyXWA==}
engines: {node: '>=14.0.0'}
peerDependencies:
'@types/react': ^17 || ^18 || ^19
react: ^17 || ^18 || ^19
react-dom: ^17 || ^18 || ^19
peerDependenciesMeta:
'@types/react':
optional: true
'@base-ui/utils@0.2.6':
resolution: {integrity: sha512-yQ+qeuqohwhsNpoYDqqXaLllYAkPCP4vYdDrVo8FQXaAPfHWm1pG/Vm+jmGTA5JFS0BAIjookyapuJFY8F9PIw==}
peerDependencies:
'@types/react': ^17 || ^18 || ^19
react: ^17 || ^18 || ^19
react-dom: ^17 || ^18 || ^19
peerDependenciesMeta:
'@types/react':
optional: true
'@braintree/sanitize-url@7.1.2':
resolution: {integrity: sha512-jigsZK+sMF/cuiB7sERuo9V7N9jx+dhmHHnQyDSVdpZwVutaBu7WvNYqMDLSgFgfB30n452TP3vjDAvFC973mA==}