forked from itzam-ai/itzam
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.lock
More file actions
12054 lines (12054 loc) · 442 KB
/
deno.lock
File metadata and controls
12054 lines (12054 loc) · 442 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
{
"version": "5",
"specifiers": {
"npm:@ai-sdk/anthropic@^1.2.10": "1.2.12_zod@3.25.28",
"npm:@ai-sdk/cohere@^1.2.9": "1.2.10_zod@3.25.28",
"npm:@ai-sdk/deepseek@~0.2.11": "0.2.14_zod@3.25.28",
"npm:@ai-sdk/google@^1.2.12": "1.2.18_zod@3.25.28",
"npm:@ai-sdk/mistral@^1.2.7": "1.2.8_zod@3.25.28",
"npm:@ai-sdk/openai@^1.3.16": "1.3.22_zod@3.25.28",
"npm:@ai-sdk/react@^1.2.9": "1.2.12_react@19.1.0_zod@3.25.28",
"npm:@ai-sdk/xai@^1.2.13": "1.2.16_zod@3.25.28",
"npm:@aws-sdk/client-s3@^3.744.0": "3.817.0",
"npm:@aws-sdk/lib-storage@^3.744.0": "3.817.0_@aws-sdk+client-s3@3.817.0",
"npm:@eslint/js@^9.24.0": "9.27.0",
"npm:@hono/zod-validator@~0.4.3": "0.4.3_hono@4.7.10_zod@3.25.28",
"npm:@hookform/resolvers@^4.1.3": "4.1.3_react-hook-form@7.56.4__react@19.1.0_react@19.1.0",
"npm:@manypkg/cli@0.23": "0.23.0",
"npm:@microsoft/api-extractor@^7.52.5": "7.52.8_@types+node@20.17.50",
"npm:@next/eslint-plugin-next@^15.3.0": "15.3.2",
"npm:@number-flow/react@~0.5.9": "0.5.9_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:@openapitools/openapi-generator-cli@^2.17.0": "2.20.2_@nestjs+common@11.1.1__reflect-metadata@0.2.2__rxjs@7.8.2_axios@1.9.0_rxjs@7.8.2_reflect-metadata@0.2.2",
"npm:@radix-ui/react-accordion@^1.2.3": "1.2.11_@types+react@19.1.0_@types+react-dom@19.1.1__@types+react@19.1.0_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:@radix-ui/react-alert-dialog@^1.1.6": "1.1.14_@types+react@19.1.0_@types+react-dom@19.1.1__@types+react@19.1.0_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:@radix-ui/react-aspect-ratio@^1.1.2": "1.1.7_@types+react@19.1.0_@types+react-dom@19.1.1__@types+react@19.1.0_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:@radix-ui/react-avatar@^1.1.3": "1.1.10_@types+react@19.1.0_@types+react-dom@19.1.1__@types+react@19.1.0_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:@radix-ui/react-checkbox@^1.1.4": "1.3.2_@types+react@19.1.0_@types+react-dom@19.1.1__@types+react@19.1.0_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:@radix-ui/react-collapsible@^1.1.3": "1.1.11_@types+react@19.1.0_@types+react-dom@19.1.1__@types+react@19.1.0_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:@radix-ui/react-context-menu@^2.2.6": "2.2.15_@types+react@19.1.0_@types+react-dom@19.1.1__@types+react@19.1.0_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:@radix-ui/react-dialog@^1.1.6": "1.1.14_@types+react@19.1.0_@types+react-dom@19.1.1__@types+react@19.1.0_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:@radix-ui/react-dropdown-menu@^2.1.6": "2.1.15_@types+react@19.1.0_@types+react-dom@19.1.1__@types+react@19.1.0_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:@radix-ui/react-hover-card@^1.1.6": "1.1.14_@types+react@19.1.0_@types+react-dom@19.1.1__@types+react@19.1.0_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:@radix-ui/react-label@^2.1.2": "2.1.7_@types+react@19.1.0_@types+react-dom@19.1.1__@types+react@19.1.0_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:@radix-ui/react-menubar@^1.1.6": "1.1.15_@types+react@19.1.0_@types+react-dom@19.1.1__@types+react@19.1.0_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:@radix-ui/react-navigation-menu@^1.2.5": "1.2.13_@types+react@19.1.0_@types+react-dom@19.1.1__@types+react@19.1.0_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:@radix-ui/react-popover@^1.1.6": "1.1.14_@types+react@19.1.0_@types+react-dom@19.1.1__@types+react@19.1.0_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:@radix-ui/react-progress@^1.1.2": "1.1.7_@types+react@19.1.0_@types+react-dom@19.1.1__@types+react@19.1.0_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:@radix-ui/react-radio-group@^1.2.3": "1.3.7_@types+react@19.1.0_@types+react-dom@19.1.1__@types+react@19.1.0_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:@radix-ui/react-scroll-area@^1.2.3": "1.2.9_@types+react@19.1.0_@types+react-dom@19.1.1__@types+react@19.1.0_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:@radix-ui/react-select@^2.1.6": "2.2.5_@types+react@19.1.0_@types+react-dom@19.1.1__@types+react@19.1.0_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:@radix-ui/react-separator@^1.1.2": "1.1.7_@types+react@19.1.0_@types+react-dom@19.1.1__@types+react@19.1.0_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:@radix-ui/react-slider@^1.2.3": "1.3.5_@types+react@19.1.0_@types+react-dom@19.1.1__@types+react@19.1.0_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:@radix-ui/react-slot@^1.2.0": "1.2.3_@types+react@19.1.0_react@19.1.0",
"npm:@radix-ui/react-switch@^1.1.3": "1.2.5_@types+react@19.1.0_@types+react-dom@19.1.1__@types+react@19.1.0_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:@radix-ui/react-tabs@^1.1.3": "1.1.12_@types+react@19.1.0_@types+react-dom@19.1.1__@types+react@19.1.0_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:@radix-ui/react-toggle-group@^1.1.2": "1.1.10_@types+react@19.1.0_@types+react-dom@19.1.1__@types+react@19.1.0_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:@radix-ui/react-toggle@^1.1.2": "1.1.9_@types+react@19.1.0_@types+react-dom@19.1.1__@types+react@19.1.0_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:@radix-ui/react-tooltip@^1.1.8": "1.2.7_@types+react@19.1.0_@types+react-dom@19.1.1__@types+react@19.1.0_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:@statsig/react-bindings@^3.15.0": "3.17.1_react@19.1.0",
"npm:@statsig/session-replay@^3.15.0": "3.17.1",
"npm:@statsig/statsig-node-core@~0.3.1": "0.3.3",
"npm:@statsig/web-analytics@^3.15.0": "3.17.1",
"npm:@stripe/react-stripe-js@^3.5.1": "3.7.0_@stripe+stripe-js@5.10.0_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:@stripe/stripe-js@^5.10.0": "5.10.0",
"npm:@supabase/ssr@~0.6.1": "0.6.1_@supabase+supabase-js@2.49.8",
"npm:@supabase/supabase-js@^2.49.4": "2.49.8",
"npm:@t3-oss/env-nextjs@0.12": "0.12.0_typescript@5.8.3_zod@3.25.28",
"npm:@tailwindcss/typography@~0.5.16": "0.5.16_tailwindcss@3.4.17__postcss@8.5.3__ts-node@10.9.2___@types+node@20.17.50___typescript@5.8.3__@types+node@20.17.50__typescript@5.8.3_ts-node@10.9.2__@types+node@20.17.50__typescript@5.8.3_@types+node@20.17.50_typescript@5.8.3",
"npm:@types/canvas-confetti@^1.9.0": "1.9.0",
"npm:@types/dinero.js@^1.9.4": "1.9.4",
"npm:@types/json-schema@^7.0.15": "7.0.15",
"npm:@types/mime-types@^2.1.4": "2.1.4",
"npm:@types/node@^20.17.28": "20.17.50",
"npm:@types/pg@^8.11.13": "8.15.2",
"npm:@types/react-dom@19.1.1": "19.1.1_@types+react@19.1.0",
"npm:@types/react@19.1.0": "19.1.0",
"npm:@types/uuid@10": "10.0.0",
"npm:@vercel/analytics@^1.5.0": "1.5.0_next@15.3.2__react@19.1.0__react-dom@19.1.0___react@19.1.0_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:@vercel/functions@^2.1.0": "2.1.0",
"npm:@vercel/og@~0.6.8": "0.6.8",
"npm:ai@^4.3.9": "4.3.16_react@19.1.0_zod@3.25.28",
"npm:autoprefixer@^10.4.21": "10.4.21_postcss@8.5.3",
"npm:canvas-confetti@^1.9.3": "1.9.3",
"npm:class-variance-authority@~0.7.1": "0.7.1",
"npm:client-only@^0.0.1": "0.0.1",
"npm:clsx@^2.1.1": "2.1.1",
"npm:cmdk@1": "1.1.1_react@19.1.0_react-dom@19.1.0__react@19.1.0_@types+react@19.1.0_@types+react-dom@19.1.1__@types+react@19.1.0",
"npm:consola@^3.4.2": "3.4.2",
"npm:date-fns@^3.6.0": "3.6.0",
"npm:decimal.js@^10.5.0": "10.5.0",
"npm:dinero.js@^1.9.1": "1.9.1",
"npm:dotenv@^16.4.7": "16.5.0",
"npm:drizzle-kit@0.24": "0.24.2_esbuild@0.19.12",
"npm:drizzle-orm@0.33": "0.33.0_@types+pg@8.15.2_@types+react@19.1.0_pg@8.16.0_postgres@3.4.7_react@19.1.0",
"npm:embla-carousel-react@^8.5.2": "8.6.0_react@19.1.0_embla-carousel@8.6.0",
"npm:eslint-config-prettier@^10.1.1": "10.1.5_eslint@9.27.0",
"npm:eslint-plugin-drizzle@~0.2.3": "0.2.3_eslint@9.27.0",
"npm:eslint-plugin-only-warn@^1.1.0": "1.1.0",
"npm:eslint-plugin-react-hooks@^5.2.0": "5.2.0_eslint@9.27.0",
"npm:eslint-plugin-react@^7.37.4": "7.37.5_eslint@9.27.0",
"npm:eslint-plugin-turbo@^2.5.0": "2.5.3_eslint@9.27.0_turbo@2.5.3",
"npm:eslint@^9.24.0": "9.27.0",
"npm:framer-motion@^12.7.4": "12.12.2_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:geist@^1.3.0": "1.4.2_next@15.3.2__react@19.1.0__react-dom@19.1.0___react@19.1.0_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:globals@16": "16.1.0",
"npm:hono-openapi@~0.4.6": "0.4.8_@hono+zod-validator@0.4.3__hono@4.7.10__zod@3.25.28_hono@4.7.10_openapi-types@12.1.3_zod@3.25.28_zod-openapi@4.2.4__zod@3.25.28",
"npm:hono@^4.7.4": "4.7.10",
"npm:input-otp@^1.4.2": "1.4.2_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:jotai@^2.12.3": "2.12.4_@types+react@19.1.0_react@19.1.0",
"npm:json-schema-to-zod@^2.6.1": "2.6.1",
"npm:json-schema@0.4": "0.4.0",
"npm:knip@^5.46.2": "5.58.0_@types+node@20.17.50_typescript@5.8.3_zod@3.25.28",
"npm:lucide-react@0.501": "0.501.0_react@19.1.0",
"npm:marked@^15.0.11": "15.0.12",
"npm:micro@^10.0.1": "10.0.1",
"npm:mime-types@^3.0.1": "3.0.1",
"npm:mintlify@^4.0.510": "4.0.552_@types+node@20.17.50_react@19.1.0_react-dom@19.1.0__react@19.1.0_@types+react@19.1.0_typescript@5.8.3",
"npm:motion@^12.7.4": "12.12.2_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:next-themes@~0.4.4": "0.4.6_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:next@^15.3.1": "15.3.2_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:nookies@^2.5.2": "2.5.2",
"npm:nuqs@^2.4.1": "2.4.3_next@15.3.2__react@19.1.0__react-dom@19.1.0___react@19.1.0_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:openai@^4.91.0": "4.103.0_zod@3.25.28",
"npm:pg@^8.14.1": "8.16.0",
"npm:postcss@^8.5.3": "8.5.3",
"npm:postgres@^3.4.4": "3.4.7",
"npm:prettier-plugin-tailwindcss@~0.6.5": "0.6.11_prettier@3.5.3",
"npm:prettier@^3.5.3": "3.5.3",
"npm:radash@^12.1.0": "12.1.0",
"npm:react-day-picker@^8.10.1": "8.10.1_date-fns@3.6.0_react@19.1.0",
"npm:react-dnd-html5-backend@^16.0.1": "16.0.1",
"npm:react-dnd@^16.0.1": "16.0.1_@types+node@20.17.50_@types+react@19.1.0_react@19.1.0",
"npm:react-dom@^19.1.0": "19.1.0_react@19.1.0",
"npm:react-hook-form@^7.54.2": "7.56.4_react@19.1.0",
"npm:react-hotkeys-hook@^4.5.0": "4.6.2_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:react-markdown@^10.1.0": "10.1.0_@types+react@19.1.0_react@19.1.0",
"npm:react-resizable-panels@^2.1.7": "2.1.9_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:react@^19.1.0": "19.1.0",
"npm:recharts@^2.15.1": "2.15.3_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:remark-gfm@^4.0.1": "4.0.1",
"npm:server-only@^0.0.1": "0.0.1",
"npm:shiki@^3.3.0": "3.4.2",
"npm:sonner@^2.0.1": "2.0.3_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:stripe@^17.7.0": "17.7.0",
"npm:supabase@^2.23.4": "2.23.4",
"npm:superjson@^2.2.1": "2.2.2",
"npm:svix@^1.61.3": "1.66.0",
"npm:tailwind-merge@^3.2.0": "3.3.0",
"npm:tailwindcss-animate@^1.0.7": "1.0.7_tailwindcss@3.4.17__postcss@8.5.3__ts-node@10.9.2___@types+node@20.17.50___typescript@5.8.3__@types+node@20.17.50__typescript@5.8.3_ts-node@10.9.2__@types+node@20.17.50__typescript@5.8.3_@types+node@20.17.50_typescript@5.8.3",
"npm:tailwindcss@^3.4.3": "3.4.17_postcss@8.5.3_ts-node@10.9.2__@types+node@20.17.50__typescript@5.8.3_@types+node@20.17.50_typescript@5.8.3",
"npm:ts-node@^10.9.2": "10.9.2_@types+node@20.17.50_typescript@5.8.3",
"npm:tsup@^8.4.0": "8.5.0_@microsoft+api-extractor@7.52.8__@types+node@20.17.50_postcss@8.5.3_typescript@5.8.3_esbuild@0.25.4_tsx@4.19.4_@types+node@20.17.50",
"npm:tsx@^4.19.3": "4.19.4",
"npm:turbo@^2.5.0": "2.5.3",
"npm:typescript-eslint@^8.29.0": "8.32.1_eslint@9.27.0_typescript@5.8.3_@typescript-eslint+parser@8.32.1__eslint@9.27.0__typescript@5.8.3",
"npm:typescript@^5.8.3": "5.8.3",
"npm:usehooks-ts@^3.1.1": "3.1.1_react@19.1.0",
"npm:uuid@^11.1.0": "11.1.0",
"npm:vaul@^1.1.2": "1.1.2_react@19.1.0_react-dom@19.1.0__react@19.1.0_@types+react@19.1.0_@types+react-dom@19.1.1__@types+react@19.1.0",
"npm:zod-openapi@^4.2.4": "4.2.4_zod@3.25.28",
"npm:zod-to-json-schema@^3.24.5": "3.24.5_zod@3.25.28",
"npm:zod@^3.24.2": "3.25.28"
},
"npm": {
"@ai-sdk/anthropic@1.2.12_zod@3.25.28": {
"integrity": "sha512-YSzjlko7JvuiyQFmI9RN1tNZdEiZxc+6xld/0tq/VkJaHpEzGAb1yiNxxvmYVcjvfu/PcvCxAAYXmTYQQ63IHQ==",
"dependencies": [
"@ai-sdk/provider",
"@ai-sdk/provider-utils",
"zod@3.25.28"
]
},
"@ai-sdk/cohere@1.2.10_zod@3.25.28": {
"integrity": "sha512-OaUwd5xj4bxSO8hdCbX1a5uUlTouU8FcodSuRON6xDSsmjZIvQL4O2G1XzcidxiQVL8JQuA+M0tHZOwGxSL96A==",
"dependencies": [
"@ai-sdk/provider",
"@ai-sdk/provider-utils",
"zod@3.25.28"
]
},
"@ai-sdk/deepseek@0.2.14_zod@3.25.28": {
"integrity": "sha512-TISD1FzBWuQkHEHoVustoJILV33ZNgfYxeTkq1xU2vHEZuWTGZV7/IlXixyFsfqDCdVgrbLeIABk5FuCw7niLg==",
"dependencies": [
"@ai-sdk/openai-compatible",
"@ai-sdk/provider",
"@ai-sdk/provider-utils",
"zod@3.25.28"
]
},
"@ai-sdk/google@1.2.18_zod@3.25.28": {
"integrity": "sha512-8B70+i+uB12Ae6Sn6B9Oc6W0W/XorGgc88Nx0pyUrcxFOdytHBaAVhTPqYsO3LLClfjYN8pQ9GMxd5cpGEnUcA==",
"dependencies": [
"@ai-sdk/provider",
"@ai-sdk/provider-utils",
"zod@3.25.28"
]
},
"@ai-sdk/mistral@1.2.8_zod@3.25.28": {
"integrity": "sha512-lv857D9UJqCVxiq2Fcu7mSPTypEHBUqLl1K+lCaP6X/7QAkcaxI36QDONG+tOhGHJOXTsS114u8lrUTaEiGXbg==",
"dependencies": [
"@ai-sdk/provider",
"@ai-sdk/provider-utils",
"zod@3.25.28"
]
},
"@ai-sdk/openai-compatible@0.2.14_zod@3.25.28": {
"integrity": "sha512-icjObfMCHKSIbywijaoLdZ1nSnuRnWgMEMLgwoxPJgxsUHMx0aVORnsLUid4SPtdhHI3X2masrt6iaEQLvOSFw==",
"dependencies": [
"@ai-sdk/provider",
"@ai-sdk/provider-utils",
"zod@3.25.28"
]
},
"@ai-sdk/openai@1.3.22_zod@3.25.28": {
"integrity": "sha512-QwA+2EkG0QyjVR+7h6FE7iOu2ivNqAVMm9UJZkVxxTk5OIq5fFJDTEI/zICEMuHImTTXR2JjsL6EirJ28Jc4cw==",
"dependencies": [
"@ai-sdk/provider",
"@ai-sdk/provider-utils",
"zod@3.25.28"
]
},
"@ai-sdk/provider-utils@2.2.8_zod@3.25.28": {
"integrity": "sha512-fqhG+4sCVv8x7nFzYnFo19ryhAa3w096Kmc3hWxMQfW/TubPOmt3A6tYZhl4mUfQWWQMsuSkLrtjlWuXBVSGQA==",
"dependencies": [
"@ai-sdk/provider",
"nanoid",
"secure-json-parse",
"zod@3.25.28"
]
},
"@ai-sdk/provider@1.1.3": {
"integrity": "sha512-qZMxYJ0qqX/RfnuIaab+zp8UAeJn/ygXXAffR5I4N0n1IrvA6qBsjc8hXLmBiMV2zoXlifkacF7sEFnYnjBcqg==",
"dependencies": [
"json-schema"
]
},
"@ai-sdk/react@1.2.12_react@19.1.0_zod@3.25.28": {
"integrity": "sha512-jK1IZZ22evPZoQW3vlkZ7wvjYGYF+tRBKXtrcolduIkQ/m/sOAVcVeVDUDvh1T91xCnWCdUGCPZg2avZ90mv3g==",
"dependencies": [
"@ai-sdk/provider-utils",
"@ai-sdk/ui-utils",
"react",
"swr",
"throttleit",
"zod@3.25.28"
],
"optionalPeers": [
"zod@3.25.28"
]
},
"@ai-sdk/ui-utils@1.2.11_zod@3.25.28": {
"integrity": "sha512-3zcwCc8ezzFlwp3ZD15wAPjf2Au4s3vAbKsXQVyhxODHcmu0iyPO2Eua6D/vicq/AUm/BAo60r97O6HU+EI0+w==",
"dependencies": [
"@ai-sdk/provider",
"@ai-sdk/provider-utils",
"zod@3.25.28",
"zod-to-json-schema"
]
},
"@ai-sdk/xai@1.2.16_zod@3.25.28": {
"integrity": "sha512-UOZT8td9PWwMi2dF9a0U44t/Oltmf6QmIJdSvrOcLG4mvpRc1UJn6YJaR0HtXs3YnW6SvY1zRdIDrW4GFpv4NA==",
"dependencies": [
"@ai-sdk/openai-compatible",
"@ai-sdk/provider",
"@ai-sdk/provider-utils",
"zod@3.25.28"
]
},
"@alloc/quick-lru@5.2.0": {
"integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw=="
},
"@apidevtools/json-schema-ref-parser@11.9.3": {
"integrity": "sha512-60vepv88RwcJtSHrD6MjIL6Ta3SOYbgfnkHb+ppAVK+o9mXprRtulx7VlRl3lN3bbvysAfCS7WMVfhUYemB0IQ==",
"dependencies": [
"@jsdevtools/ono",
"@types/json-schema",
"js-yaml@4.1.0"
]
},
"@asyncapi/parser@3.4.0_ajv@8.17.1": {
"integrity": "sha512-Sxn74oHiZSU6+cVeZy62iPZMFMvKp4jupMFHelSICCMw1qELmUHPvuZSr+ZHDmNGgHcEpzJM5HN02kR7T4g+PQ==",
"dependencies": [
"@asyncapi/specs",
"@openapi-contrib/openapi-schema-to-json-schema",
"@stoplight/json",
"@stoplight/json-ref-readers",
"@stoplight/json-ref-resolver",
"@stoplight/spectral-core",
"@stoplight/spectral-functions",
"@stoplight/spectral-parsers",
"@stoplight/spectral-ref-resolver",
"@stoplight/types@13.20.0",
"@types/json-schema",
"@types/urijs",
"ajv@8.17.1",
"ajv-errors",
"ajv-formats@2.1.1_ajv@8.17.1",
"avsc",
"js-yaml@4.1.0",
"jsonpath-plus",
"node-fetch@2.6.7"
]
},
"@asyncapi/specs@6.8.1": {
"integrity": "sha512-czHoAk3PeXTLR+X8IUaD+IpT+g+zUvkcgMDJVothBsan+oHN3jfcFcFUNdOPAAFoUCQN1hXF1dWuphWy05THlA==",
"dependencies": [
"@types/json-schema"
]
},
"@aws-crypto/crc32@5.2.0": {
"integrity": "sha512-nLbCWqQNgUiwwtFsen1AdzAtvuLRsQS8rYgMuxCrdKf9kOssamGLuPwyTY9wyYblNr9+1XM8v6zoDTPPSIeANg==",
"dependencies": [
"@aws-crypto/util",
"@aws-sdk/types",
"tslib@2.8.1"
]
},
"@aws-crypto/crc32c@5.2.0": {
"integrity": "sha512-+iWb8qaHLYKrNvGRbiYRHSdKRWhto5XlZUEBwDjYNf+ly5SVYG6zEoYIdxvf5R3zyeP16w4PLBn3rH1xc74Rag==",
"dependencies": [
"@aws-crypto/util",
"@aws-sdk/types",
"tslib@2.8.1"
]
},
"@aws-crypto/sha1-browser@5.2.0": {
"integrity": "sha512-OH6lveCFfcDjX4dbAvCFSYUjJZjDr/3XJ3xHtjn3Oj5b9RjojQo8npoLeA/bNwkOkrSQ0wgrHzXk4tDRxGKJeg==",
"dependencies": [
"@aws-crypto/supports-web-crypto",
"@aws-crypto/util",
"@aws-sdk/types",
"@aws-sdk/util-locate-window",
"@smithy/util-utf8@2.3.0",
"tslib@2.8.1"
]
},
"@aws-crypto/sha256-browser@5.2.0": {
"integrity": "sha512-AXfN/lGotSQwu6HNcEsIASo7kWXZ5HYWvfOmSNKDsEqC4OashTp8alTmaz+F7TC2L083SFv5RdB+qU3Vs1kZqw==",
"dependencies": [
"@aws-crypto/sha256-js",
"@aws-crypto/supports-web-crypto",
"@aws-crypto/util",
"@aws-sdk/types",
"@aws-sdk/util-locate-window",
"@smithy/util-utf8@2.3.0",
"tslib@2.8.1"
]
},
"@aws-crypto/sha256-js@5.2.0": {
"integrity": "sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA==",
"dependencies": [
"@aws-crypto/util",
"@aws-sdk/types",
"tslib@2.8.1"
]
},
"@aws-crypto/supports-web-crypto@5.2.0": {
"integrity": "sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg==",
"dependencies": [
"tslib@2.8.1"
]
},
"@aws-crypto/util@5.2.0": {
"integrity": "sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ==",
"dependencies": [
"@aws-sdk/types",
"@smithy/util-utf8@2.3.0",
"tslib@2.8.1"
]
},
"@aws-sdk/client-s3@3.817.0": {
"integrity": "sha512-nZyjhlLMEXDs0ofWbpikI8tKoeKuuSgYcIb6eEZJk90Nt5HkkXn6nkWOs/kp2FdhpoGJyTILOVsDgdm7eutnLA==",
"dependencies": [
"@aws-crypto/sha1-browser",
"@aws-crypto/sha256-browser",
"@aws-crypto/sha256-js",
"@aws-sdk/core",
"@aws-sdk/credential-provider-node",
"@aws-sdk/middleware-bucket-endpoint",
"@aws-sdk/middleware-expect-continue",
"@aws-sdk/middleware-flexible-checksums",
"@aws-sdk/middleware-host-header",
"@aws-sdk/middleware-location-constraint",
"@aws-sdk/middleware-logger",
"@aws-sdk/middleware-recursion-detection",
"@aws-sdk/middleware-sdk-s3",
"@aws-sdk/middleware-ssec",
"@aws-sdk/middleware-user-agent",
"@aws-sdk/region-config-resolver",
"@aws-sdk/signature-v4-multi-region",
"@aws-sdk/types",
"@aws-sdk/util-endpoints",
"@aws-sdk/util-user-agent-browser",
"@aws-sdk/util-user-agent-node",
"@aws-sdk/xml-builder",
"@smithy/config-resolver",
"@smithy/core",
"@smithy/eventstream-serde-browser",
"@smithy/eventstream-serde-config-resolver",
"@smithy/eventstream-serde-node",
"@smithy/fetch-http-handler",
"@smithy/hash-blob-browser",
"@smithy/hash-node",
"@smithy/hash-stream-node",
"@smithy/invalid-dependency",
"@smithy/md5-js",
"@smithy/middleware-content-length",
"@smithy/middleware-endpoint",
"@smithy/middleware-retry",
"@smithy/middleware-serde",
"@smithy/middleware-stack",
"@smithy/node-config-provider",
"@smithy/node-http-handler",
"@smithy/protocol-http",
"@smithy/smithy-client",
"@smithy/types",
"@smithy/url-parser",
"@smithy/util-base64",
"@smithy/util-body-length-browser",
"@smithy/util-body-length-node",
"@smithy/util-defaults-mode-browser",
"@smithy/util-defaults-mode-node",
"@smithy/util-endpoints",
"@smithy/util-middleware",
"@smithy/util-retry",
"@smithy/util-stream",
"@smithy/util-utf8@4.0.0",
"@smithy/util-waiter",
"tslib@2.8.1"
]
},
"@aws-sdk/client-sso@3.817.0": {
"integrity": "sha512-fCh5rUHmWmWDvw70NNoWpE5+BRdtNi45kDnIoeoszqVg7UKF79SlG+qYooUT52HKCgDNHqgbWaXxMOSqd2I/OQ==",
"dependencies": [
"@aws-crypto/sha256-browser",
"@aws-crypto/sha256-js",
"@aws-sdk/core",
"@aws-sdk/middleware-host-header",
"@aws-sdk/middleware-logger",
"@aws-sdk/middleware-recursion-detection",
"@aws-sdk/middleware-user-agent",
"@aws-sdk/region-config-resolver",
"@aws-sdk/types",
"@aws-sdk/util-endpoints",
"@aws-sdk/util-user-agent-browser",
"@aws-sdk/util-user-agent-node",
"@smithy/config-resolver",
"@smithy/core",
"@smithy/fetch-http-handler",
"@smithy/hash-node",
"@smithy/invalid-dependency",
"@smithy/middleware-content-length",
"@smithy/middleware-endpoint",
"@smithy/middleware-retry",
"@smithy/middleware-serde",
"@smithy/middleware-stack",
"@smithy/node-config-provider",
"@smithy/node-http-handler",
"@smithy/protocol-http",
"@smithy/smithy-client",
"@smithy/types",
"@smithy/url-parser",
"@smithy/util-base64",
"@smithy/util-body-length-browser",
"@smithy/util-body-length-node",
"@smithy/util-defaults-mode-browser",
"@smithy/util-defaults-mode-node",
"@smithy/util-endpoints",
"@smithy/util-middleware",
"@smithy/util-retry",
"@smithy/util-utf8@4.0.0",
"tslib@2.8.1"
]
},
"@aws-sdk/core@3.816.0": {
"integrity": "sha512-Lx50wjtyarzKpMFV6V+gjbSZDgsA/71iyifbClGUSiNPoIQ4OCV0KVOmAAj7mQRVvGJqUMWKVM+WzK79CjbjWA==",
"dependencies": [
"@aws-sdk/types",
"@smithy/core",
"@smithy/node-config-provider",
"@smithy/property-provider",
"@smithy/protocol-http",
"@smithy/signature-v4",
"@smithy/smithy-client",
"@smithy/types",
"@smithy/util-middleware",
"fast-xml-parser",
"tslib@2.8.1"
]
},
"@aws-sdk/credential-provider-env@3.816.0": {
"integrity": "sha512-wUJZwRLe+SxPxRV9AENYBLrJZRrNIo+fva7ZzejsC83iz7hdfq6Rv6B/aHEdPwG/nQC4+q7UUvcRPlomyrpsBA==",
"dependencies": [
"@aws-sdk/core",
"@aws-sdk/types",
"@smithy/property-provider",
"@smithy/types",
"tslib@2.8.1"
]
},
"@aws-sdk/credential-provider-http@3.816.0": {
"integrity": "sha512-gcWGzMQ7yRIF+ljTkR8Vzp7727UY6cmeaPrFQrvcFB8PhOqWpf7g0JsgOf5BSaP8CkkSQcTQHc0C5ZYAzUFwPg==",
"dependencies": [
"@aws-sdk/core",
"@aws-sdk/types",
"@smithy/fetch-http-handler",
"@smithy/node-http-handler",
"@smithy/property-provider",
"@smithy/protocol-http",
"@smithy/smithy-client",
"@smithy/types",
"@smithy/util-stream",
"tslib@2.8.1"
]
},
"@aws-sdk/credential-provider-ini@3.817.0": {
"integrity": "sha512-kyEwbQyuXE+phWVzloMdkFv6qM6NOon+asMXY5W0fhDKwBz9zQLObDRWBrvQX9lmqq8BbDL1sCfZjOh82Y+RFw==",
"dependencies": [
"@aws-sdk/core",
"@aws-sdk/credential-provider-env",
"@aws-sdk/credential-provider-http",
"@aws-sdk/credential-provider-process",
"@aws-sdk/credential-provider-sso",
"@aws-sdk/credential-provider-web-identity",
"@aws-sdk/nested-clients",
"@aws-sdk/types",
"@smithy/credential-provider-imds",
"@smithy/property-provider",
"@smithy/shared-ini-file-loader",
"@smithy/types",
"tslib@2.8.1"
]
},
"@aws-sdk/credential-provider-node@3.817.0": {
"integrity": "sha512-b5mz7av0Lhavs1Bz3Zb+jrs0Pki93+8XNctnVO0drBW98x1fM4AR38cWvGbM/w9F9Q0/WEH3TinkmrMPrP4T/w==",
"dependencies": [
"@aws-sdk/credential-provider-env",
"@aws-sdk/credential-provider-http",
"@aws-sdk/credential-provider-ini",
"@aws-sdk/credential-provider-process",
"@aws-sdk/credential-provider-sso",
"@aws-sdk/credential-provider-web-identity",
"@aws-sdk/types",
"@smithy/credential-provider-imds",
"@smithy/property-provider",
"@smithy/shared-ini-file-loader",
"@smithy/types",
"tslib@2.8.1"
]
},
"@aws-sdk/credential-provider-process@3.816.0": {
"integrity": "sha512-9Tm+AxMoV2Izvl5b9tyMQRbBwaex8JP06HN7ZeCXgC5sAsSN+o8dsThnEhf8jKN+uBpT6CLWKN1TXuUMrAmW1A==",
"dependencies": [
"@aws-sdk/core",
"@aws-sdk/types",
"@smithy/property-provider",
"@smithy/shared-ini-file-loader",
"@smithy/types",
"tslib@2.8.1"
]
},
"@aws-sdk/credential-provider-sso@3.817.0": {
"integrity": "sha512-gFUAW3VmGvdnueK1bh6TOcRX+j99Xm0men1+gz3cA4RE+rZGNy1Qjj8YHlv0hPwI9OnTPZquvPzA5fkviGREWg==",
"dependencies": [
"@aws-sdk/client-sso",
"@aws-sdk/core",
"@aws-sdk/token-providers",
"@aws-sdk/types",
"@smithy/property-provider",
"@smithy/shared-ini-file-loader",
"@smithy/types",
"tslib@2.8.1"
]
},
"@aws-sdk/credential-provider-web-identity@3.817.0": {
"integrity": "sha512-A2kgkS9g6NY0OMT2f2EdXHpL17Ym81NhbGnQ8bRXPqESIi7TFypFD2U6osB2VnsFv+MhwM+Ke4PKXSmLun22/A==",
"dependencies": [
"@aws-sdk/core",
"@aws-sdk/nested-clients",
"@aws-sdk/types",
"@smithy/property-provider",
"@smithy/types",
"tslib@2.8.1"
]
},
"@aws-sdk/lib-storage@3.817.0_@aws-sdk+client-s3@3.817.0": {
"integrity": "sha512-2zOO8+2EmiS049PjLSNdqmmZMQj7fzE1hZJ70A94vO+KNaVhVZYuMOOiOmwMw6ePkTCcFwK40vZIIXwEQQ1v1g==",
"dependencies": [
"@aws-sdk/client-s3",
"@smithy/abort-controller",
"@smithy/middleware-endpoint",
"@smithy/smithy-client",
"buffer@5.6.0",
"events",
"stream-browserify",
"tslib@2.8.1"
]
},
"@aws-sdk/middleware-bucket-endpoint@3.808.0": {
"integrity": "sha512-wEPlNcs8dir9lXbuviEGtSzYSxG/NRKQrJk5ybOc7OpPGHovsN+QhDOdY3lcjOFdwMTiMIG9foUkPz3zBpLB1A==",
"dependencies": [
"@aws-sdk/types",
"@aws-sdk/util-arn-parser",
"@smithy/node-config-provider",
"@smithy/protocol-http",
"@smithy/types",
"@smithy/util-config-provider",
"tslib@2.8.1"
]
},
"@aws-sdk/middleware-expect-continue@3.804.0": {
"integrity": "sha512-YW1hySBolALMII6C8y7Z0CRG2UX1dGJjLEBNFeefhO/xP7ZuE1dvnmfJGaEuBMnvc3wkRS63VZ3aqX6sevM1CA==",
"dependencies": [
"@aws-sdk/types",
"@smithy/protocol-http",
"@smithy/types",
"tslib@2.8.1"
]
},
"@aws-sdk/middleware-flexible-checksums@3.816.0": {
"integrity": "sha512-kftcwDxB/VoCBsUiRgkm5CIuKbTfCN1WLPbis9LRwX3kQhKgGVxG2gG78SHk4TBB0qviWVAd/t+i/KaUgwiAcA==",
"dependencies": [
"@aws-crypto/crc32",
"@aws-crypto/crc32c",
"@aws-crypto/util",
"@aws-sdk/core",
"@aws-sdk/types",
"@smithy/is-array-buffer@4.0.0",
"@smithy/node-config-provider",
"@smithy/protocol-http",
"@smithy/types",
"@smithy/util-middleware",
"@smithy/util-stream",
"@smithy/util-utf8@4.0.0",
"tslib@2.8.1"
]
},
"@aws-sdk/middleware-host-header@3.804.0": {
"integrity": "sha512-bum1hLVBrn2lJCi423Z2fMUYtsbkGI2s4N+2RI2WSjvbaVyMSv/WcejIrjkqiiMR+2Y7m5exgoKeg4/TODLDPQ==",
"dependencies": [
"@aws-sdk/types",
"@smithy/protocol-http",
"@smithy/types",
"tslib@2.8.1"
]
},
"@aws-sdk/middleware-location-constraint@3.804.0": {
"integrity": "sha512-AMtKnllIWKgoo7hiJfphLYotEwTERfjVMO2+cKAncz9w1g+bnYhHxiVhJJoR94y047c06X4PU5MsTxvdQ73Znw==",
"dependencies": [
"@aws-sdk/types",
"@smithy/types",
"tslib@2.8.1"
]
},
"@aws-sdk/middleware-logger@3.804.0": {
"integrity": "sha512-w/qLwL3iq0KOPQNat0Kb7sKndl9BtceigINwBU7SpkYWX9L/Lem6f8NPEKrC9Tl4wDBht3Yztub4oRTy/horJA==",
"dependencies": [
"@aws-sdk/types",
"@smithy/types",
"tslib@2.8.1"
]
},
"@aws-sdk/middleware-recursion-detection@3.804.0": {
"integrity": "sha512-zqHOrvLRdsUdN/ehYfZ9Tf8svhbiLLz5VaWUz22YndFv6m9qaAcijkpAOlKexsv3nLBMJdSdJ6GUTAeIy3BZzw==",
"dependencies": [
"@aws-sdk/types",
"@smithy/protocol-http",
"@smithy/types",
"tslib@2.8.1"
]
},
"@aws-sdk/middleware-sdk-s3@3.816.0": {
"integrity": "sha512-jJ+EAXM7gnOwiCM6rrl4AUNY5urmtIsX7roTkxtb4DevJxcS+wFYRRg3/j33fQbuxQZrvk21HqxyZYx5UH70PA==",
"dependencies": [
"@aws-sdk/core",
"@aws-sdk/types",
"@aws-sdk/util-arn-parser",
"@smithy/core",
"@smithy/node-config-provider",
"@smithy/protocol-http",
"@smithy/signature-v4",
"@smithy/smithy-client",
"@smithy/types",
"@smithy/util-config-provider",
"@smithy/util-middleware",
"@smithy/util-stream",
"@smithy/util-utf8@4.0.0",
"tslib@2.8.1"
]
},
"@aws-sdk/middleware-ssec@3.804.0": {
"integrity": "sha512-Tk8jK0gOIUBvEPTz/wwSlP1V70zVQ3QYqsLPAjQRMO6zfOK9ax31dln3MgKvFDJxBydS2tS3wsn53v+brxDxTA==",
"dependencies": [
"@aws-sdk/types",
"@smithy/types",
"tslib@2.8.1"
]
},
"@aws-sdk/middleware-user-agent@3.816.0": {
"integrity": "sha512-bHRSlWZ0xDsFR8E2FwDb//0Ff6wMkVx4O+UKsfyNlAbtqCiiHRt5ANNfKPafr95cN2CCxLxiPvFTFVblQM5TsQ==",
"dependencies": [
"@aws-sdk/core",
"@aws-sdk/types",
"@aws-sdk/util-endpoints",
"@smithy/core",
"@smithy/protocol-http",
"@smithy/types",
"tslib@2.8.1"
]
},
"@aws-sdk/nested-clients@3.817.0": {
"integrity": "sha512-vQ2E06A48STJFssueJQgxYD8lh1iGJoLJnHdshRDWOQb8gy1wVQR+a7MkPGhGR6lGoS0SCnF/Qp6CZhnwLsqsQ==",
"dependencies": [
"@aws-crypto/sha256-browser",
"@aws-crypto/sha256-js",
"@aws-sdk/core",
"@aws-sdk/middleware-host-header",
"@aws-sdk/middleware-logger",
"@aws-sdk/middleware-recursion-detection",
"@aws-sdk/middleware-user-agent",
"@aws-sdk/region-config-resolver",
"@aws-sdk/types",
"@aws-sdk/util-endpoints",
"@aws-sdk/util-user-agent-browser",
"@aws-sdk/util-user-agent-node",
"@smithy/config-resolver",
"@smithy/core",
"@smithy/fetch-http-handler",
"@smithy/hash-node",
"@smithy/invalid-dependency",
"@smithy/middleware-content-length",
"@smithy/middleware-endpoint",
"@smithy/middleware-retry",
"@smithy/middleware-serde",
"@smithy/middleware-stack",
"@smithy/node-config-provider",
"@smithy/node-http-handler",
"@smithy/protocol-http",
"@smithy/smithy-client",
"@smithy/types",
"@smithy/url-parser",
"@smithy/util-base64",
"@smithy/util-body-length-browser",
"@smithy/util-body-length-node",
"@smithy/util-defaults-mode-browser",
"@smithy/util-defaults-mode-node",
"@smithy/util-endpoints",
"@smithy/util-middleware",
"@smithy/util-retry",
"@smithy/util-utf8@4.0.0",
"tslib@2.8.1"
]
},
"@aws-sdk/region-config-resolver@3.808.0": {
"integrity": "sha512-9x2QWfphkARZY5OGkl9dJxZlSlYM2l5inFeo2bKntGuwg4A4YUe5h7d5yJ6sZbam9h43eBrkOdumx03DAkQF9A==",
"dependencies": [
"@aws-sdk/types",
"@smithy/node-config-provider",
"@smithy/types",
"@smithy/util-config-provider",
"@smithy/util-middleware",
"tslib@2.8.1"
]
},
"@aws-sdk/signature-v4-multi-region@3.816.0": {
"integrity": "sha512-idcr9NW86sSIXASSej3423Selu6fxlhhJJtMgpAqoCH/HJh1eQrONJwNKuI9huiruPE8+02pwxuePvLW46X2mw==",
"dependencies": [
"@aws-sdk/middleware-sdk-s3",
"@aws-sdk/types",
"@smithy/protocol-http",
"@smithy/signature-v4",
"@smithy/types",
"tslib@2.8.1"
]
},
"@aws-sdk/token-providers@3.817.0": {
"integrity": "sha512-CYN4/UO0VaqyHf46ogZzNrVX7jI3/CfiuktwKlwtpKA6hjf2+ivfgHSKzPpgPBcSEfiibA/26EeLuMnB6cpSrQ==",
"dependencies": [
"@aws-sdk/core",
"@aws-sdk/nested-clients",
"@aws-sdk/types",
"@smithy/property-provider",
"@smithy/shared-ini-file-loader",
"@smithy/types",
"tslib@2.8.1"
]
},
"@aws-sdk/types@3.804.0": {
"integrity": "sha512-A9qnsy9zQ8G89vrPPlNG9d1d8QcKRGqJKqwyGgS0dclJpwy6d1EWgQLIolKPl6vcFpLoe6avLOLxr+h8ur5wpg==",
"dependencies": [
"@smithy/types",
"tslib@2.8.1"
]
},
"@aws-sdk/util-arn-parser@3.804.0": {
"integrity": "sha512-wmBJqn1DRXnZu3b4EkE6CWnoWMo1ZMvlfkqU5zPz67xx1GMaXlDCchFvKAXMjk4jn/L1O3tKnoFDNsoLV1kgNQ==",
"dependencies": [
"tslib@2.8.1"
]
},
"@aws-sdk/util-endpoints@3.808.0": {
"integrity": "sha512-N6Lic98uc4ADB7fLWlzx+1uVnq04VgVjngZvwHoujcRg9YDhIg9dUDiTzD5VZv13g1BrPYmvYP1HhsildpGV6w==",
"dependencies": [
"@aws-sdk/types",
"@smithy/types",
"@smithy/util-endpoints",
"tslib@2.8.1"
]
},
"@aws-sdk/util-locate-window@3.804.0": {
"integrity": "sha512-zVoRfpmBVPodYlnMjgVjfGoEZagyRF5IPn3Uo6ZvOZp24chnW/FRstH7ESDHDDRga4z3V+ElUQHKpFDXWyBW5A==",
"dependencies": [
"tslib@2.8.1"
]
},
"@aws-sdk/util-user-agent-browser@3.804.0": {
"integrity": "sha512-KfW6T6nQHHM/vZBBdGn6fMyG/MgX5lq82TDdX4HRQRRuHKLgBWGpKXqqvBwqIaCdXwWHgDrg2VQups6GqOWW2A==",
"dependencies": [
"@aws-sdk/types",
"@smithy/types",
"bowser",
"tslib@2.8.1"
]
},
"@aws-sdk/util-user-agent-node@3.816.0": {
"integrity": "sha512-Q6dxmuj4hL7pudhrneWEQ7yVHIQRBFr0wqKLF1opwOi1cIePuoEbPyJ2jkel6PDEv1YMfvsAKaRshp6eNA8VHg==",
"dependencies": [
"@aws-sdk/middleware-user-agent",
"@aws-sdk/types",
"@smithy/node-config-provider",
"@smithy/types",
"tslib@2.8.1"
]
},
"@aws-sdk/xml-builder@3.804.0": {
"integrity": "sha512-JbGWp36IG9dgxtvC6+YXwt5WDZYfuamWFtVfK6fQpnmL96dx+GUPOXPKRWdw67WLKf2comHY28iX2d3z35I53Q==",
"dependencies": [
"@smithy/types",
"tslib@2.8.1"
]
},
"@babel/code-frame@7.27.1": {
"integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==",
"dependencies": [
"@babel/helper-validator-identifier",
"js-tokens",
"picocolors"
]
},
"@babel/helper-validator-identifier@7.27.1": {
"integrity": "sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow=="
},
"@babel/runtime@7.27.1": {
"integrity": "sha512-1x3D2xEk2fRo3PAhwQwu5UubzgiVWSXTBfWpVd2Mx2AzRqJuDJCsgaDVZ7HB5iGzDW1Hl1sWN2mFyKjmR9uAog=="
},
"@cspotcode/source-map-support@0.8.1": {
"integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==",
"dependencies": [
"@jridgewell/trace-mapping@0.3.9"
]
},
"@drizzle-team/brocli@0.10.2": {
"integrity": "sha512-z33Il7l5dKjUgGULTqBsQBQwckHh5AbIuxhdsIxDDiZAzBOrZO6q9ogcWC65kU382AfynTfgNumVcNIjuIua6w=="
},
"@emnapi/core@1.4.3": {
"integrity": "sha512-4m62DuCE07lw01soJwPiBGC0nAww0Q+RY70VZ+n49yDIO13yyinhbWCeNnaob0lakDtWQzSdtNWzJeOJt2ma+g==",
"dependencies": [
"@emnapi/wasi-threads",
"tslib@2.8.1"
]
},
"@emnapi/runtime@1.4.3": {
"integrity": "sha512-pBPWdu6MLKROBX05wSNKcNb++m5Er+KQ9QkB+WVM+pW2Kx9hoSrVTnu3BdkI5eBLZoKu/J6mW/B6i6bJB2ytXQ==",
"dependencies": [
"tslib@2.8.1"
]
},
"@emnapi/wasi-threads@1.0.2": {
"integrity": "sha512-5n3nTJblwRi8LlXkJ9eBzu+kZR8Yxcc7ubakyQTFzPMtIhFpUBRbsnc2Dv88IZDIbCDlBiWrknhB4Lsz7mg6BA==",
"dependencies": [
"tslib@2.8.1"
]
},
"@esbuild-kit/core-utils@3.3.2": {
"integrity": "sha512-sPRAnw9CdSsRmEtnsl2WXWdyquogVpB3yZ3dgwJfe8zrOzTsV7cJvmwrKVa+0ma5BoiGJ+BoqkMvawbayKUsqQ==",
"dependencies": [
"esbuild@0.18.20",
"source-map-support"
],
"deprecated": true
},
"@esbuild-kit/esm-loader@2.6.5": {
"integrity": "sha512-FxEMIkJKnodyA1OaCUoEvbYRkoZlLZ4d/eXFu9Fh8CbBBgP5EmZxrfTRyN0qpXZ4vOvqnE5YdRdcrmUUXuU+dA==",
"dependencies": [
"@esbuild-kit/core-utils",
"get-tsconfig"
],
"deprecated": true
},
"@esbuild/aix-ppc64@0.19.12": {
"integrity": "sha512-bmoCYyWdEL3wDQIVbcyzRyeKLgk2WtWLTWz1ZIAZF/EGbNOwSA6ew3PftJ1PqMiOOGu0OyFMzG53L0zqIpPeNA==",
"os": ["aix"],
"cpu": ["ppc64"]
},
"@esbuild/aix-ppc64@0.25.4": {
"integrity": "sha512-1VCICWypeQKhVbE9oW/sJaAmjLxhVqacdkvPLEjwlttjfwENRSClS8EjBz0KzRyFSCPDIkuXW34Je/vk7zdB7Q==",
"os": ["aix"],
"cpu": ["ppc64"]
},
"@esbuild/android-arm64@0.18.20": {
"integrity": "sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==",
"os": ["android"],
"cpu": ["arm64"]
},
"@esbuild/android-arm64@0.19.12": {
"integrity": "sha512-P0UVNGIienjZv3f5zq0DP3Nt2IE/3plFzuaS96vihvD0Hd6H/q4WXUGpCxD/E8YrSXfNyRPbpTq+T8ZQioSuPA==",
"os": ["android"],
"cpu": ["arm64"]
},
"@esbuild/android-arm64@0.25.4": {
"integrity": "sha512-bBy69pgfhMGtCnwpC/x5QhfxAz/cBgQ9enbtwjf6V9lnPI/hMyT9iWpR1arm0l3kttTr4L0KSLpKmLp/ilKS9A==",
"os": ["android"],
"cpu": ["arm64"]
},
"@esbuild/android-arm@0.18.20": {
"integrity": "sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==",
"os": ["android"],
"cpu": ["arm"]
},
"@esbuild/android-arm@0.19.12": {
"integrity": "sha512-qg/Lj1mu3CdQlDEEiWrlC4eaPZ1KztwGJ9B6J+/6G+/4ewxJg7gqj8eVYWvao1bXrqGiW2rsBZFSX3q2lcW05w==",
"os": ["android"],
"cpu": ["arm"]
},
"@esbuild/android-arm@0.25.4": {
"integrity": "sha512-QNdQEps7DfFwE3hXiU4BZeOV68HHzYwGd0Nthhd3uCkkEKK7/R6MTgM0P7H7FAs5pU/DIWsviMmEGxEoxIZ+ZQ==",
"os": ["android"],
"cpu": ["arm"]
},
"@esbuild/android-x64@0.18.20": {
"integrity": "sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==",
"os": ["android"],
"cpu": ["x64"]
},
"@esbuild/android-x64@0.19.12": {
"integrity": "sha512-3k7ZoUW6Q6YqhdhIaq/WZ7HwBpnFBlW905Fa4s4qWJyiNOgT1dOqDiVAQFwBH7gBRZr17gLrlFCRzF6jFh7Kew==",
"os": ["android"],
"cpu": ["x64"]
},
"@esbuild/android-x64@0.25.4": {
"integrity": "sha512-TVhdVtQIFuVpIIR282btcGC2oGQoSfZfmBdTip2anCaVYcqWlZXGcdcKIUklfX2wj0JklNYgz39OBqh2cqXvcQ==",
"os": ["android"],
"cpu": ["x64"]
},
"@esbuild/darwin-arm64@0.18.20": {
"integrity": "sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==",
"os": ["darwin"],
"cpu": ["arm64"]
},
"@esbuild/darwin-arm64@0.19.12": {
"integrity": "sha512-B6IeSgZgtEzGC42jsI+YYu9Z3HKRxp8ZT3cqhvliEHovq8HSX2YX8lNocDn79gCKJXOSaEot9MVYky7AKjCs8g==",
"os": ["darwin"],
"cpu": ["arm64"]
},
"@esbuild/darwin-arm64@0.25.4": {
"integrity": "sha512-Y1giCfM4nlHDWEfSckMzeWNdQS31BQGs9/rouw6Ub91tkK79aIMTH3q9xHvzH8d0wDru5Ci0kWB8b3up/nl16g==",
"os": ["darwin"],
"cpu": ["arm64"]
},
"@esbuild/darwin-x64@0.18.20": {
"integrity": "sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==",
"os": ["darwin"],
"cpu": ["x64"]
},
"@esbuild/darwin-x64@0.19.12": {
"integrity": "sha512-hKoVkKzFiToTgn+41qGhsUJXFlIjxI/jSYeZf3ugemDYZldIXIxhvwN6erJGlX4t5h417iFuheZ7l+YVn05N3A==",
"os": ["darwin"],
"cpu": ["x64"]
},
"@esbuild/darwin-x64@0.25.4": {
"integrity": "sha512-CJsry8ZGM5VFVeyUYB3cdKpd/H69PYez4eJh1W/t38vzutdjEjtP7hB6eLKBoOdxcAlCtEYHzQ/PJ/oU9I4u0A==",
"os": ["darwin"],
"cpu": ["x64"]
},
"@esbuild/freebsd-arm64@0.18.20": {
"integrity": "sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==",
"os": ["freebsd"],
"cpu": ["arm64"]
},
"@esbuild/freebsd-arm64@0.19.12": {
"integrity": "sha512-4aRvFIXmwAcDBw9AueDQ2YnGmz5L6obe5kmPT8Vd+/+x/JMVKCgdcRwH6APrbpNXsPz+K653Qg8HB/oXvXVukA==",
"os": ["freebsd"],
"cpu": ["arm64"]
},
"@esbuild/freebsd-arm64@0.25.4": {
"integrity": "sha512-yYq+39NlTRzU2XmoPW4l5Ifpl9fqSk0nAJYM/V/WUGPEFfek1epLHJIkTQM6bBs1swApjO5nWgvr843g6TjxuQ==",
"os": ["freebsd"],
"cpu": ["arm64"]
},
"@esbuild/freebsd-x64@0.18.20": {
"integrity": "sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==",
"os": ["freebsd"],
"cpu": ["x64"]
},
"@esbuild/freebsd-x64@0.19.12": {
"integrity": "sha512-EYoXZ4d8xtBoVN7CEwWY2IN4ho76xjYXqSXMNccFSx2lgqOG/1TBPW0yPx1bJZk94qu3tX0fycJeeQsKovA8gg==",
"os": ["freebsd"],
"cpu": ["x64"]
},
"@esbuild/freebsd-x64@0.25.4": {
"integrity": "sha512-0FgvOJ6UUMflsHSPLzdfDnnBBVoCDtBTVyn/MrWloUNvq/5SFmh13l3dvgRPkDihRxb77Y17MbqbCAa2strMQQ==",