-
Notifications
You must be signed in to change notification settings - Fork 552
Expand file tree
/
Copy pathyarn.lock
More file actions
6878 lines (6261 loc) · 223 KB
/
yarn.lock
File metadata and controls
6878 lines (6261 loc) · 223 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
# This file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 6
cacheKey: 8
"@ai-sdk/gateway@npm:3.0.80":
version: 3.0.80
resolution: "@ai-sdk/gateway@npm:3.0.80"
dependencies:
"@ai-sdk/provider": 3.0.8
"@ai-sdk/provider-utils": 4.0.21
"@vercel/oidc": 3.1.0
peerDependencies:
zod: ^3.25.76 || ^4.1.8
checksum: cf49ae59198a8329a2311a252fbc3bd5f15f4b8d2bd206f410658b2cab404573d0697afe9bb3f00ced2a071224b860263b5e21370cc3f5332052bdccd672078c
languageName: node
linkType: hard
"@ai-sdk/provider-utils@npm:4.0.21":
version: 4.0.21
resolution: "@ai-sdk/provider-utils@npm:4.0.21"
dependencies:
"@ai-sdk/provider": 3.0.8
"@standard-schema/spec": ^1.1.0
eventsource-parser: ^3.0.6
peerDependencies:
zod: ^3.25.76 || ^4.1.8
checksum: 9d5338787836b10e3040573e60cd7804a4cf4ddc5ce46d29a599eae69eb43f819611c47df8b449736f274de086fc5ed1f777ae6951cc9a7e9af35f7d0930c319
languageName: node
linkType: hard
"@ai-sdk/provider@npm:3.0.8":
version: 3.0.8
resolution: "@ai-sdk/provider@npm:3.0.8"
dependencies:
json-schema: ^0.4.0
checksum: cdc55caa9ab7836f03c8100ffe359ca57c6e22263238ac89181eaa6dfe6e1011f0c40652eed7ba597f127e1c09b0ab12a4bf6b19343621e5e74ed097c3c7125c
languageName: node
linkType: hard
"@ai-sdk/react@npm:^3.0.140":
version: 3.0.140
resolution: "@ai-sdk/react@npm:3.0.140"
dependencies:
"@ai-sdk/provider-utils": 4.0.21
ai: 6.0.138
swr: ^2.2.5
throttleit: 2.1.0
peerDependencies:
react: ^18 || ~19.0.1 || ~19.1.2 || ^19.2.1
checksum: 837b7c5cbaca0c3aad715e2eadbc5cd3a73a153b6f45b8d949337c2c828324ea0e93b31b71ba19fbf81d28982e510b6b52b6646d21b6f6fb2ba37d641c3f4e58
languageName: node
linkType: hard
"@ai-sdk/rsc@npm:^2.0.138":
version: 2.0.138
resolution: "@ai-sdk/rsc@npm:2.0.138"
dependencies:
"@ai-sdk/provider": 3.0.8
"@ai-sdk/provider-utils": 4.0.21
ai: 6.0.138
jsondiffpatch: 0.7.3
peerDependencies:
react: ^18 || ~19.0.1 || ~19.1.2 || ^19.2.1
zod: ^3.25.76 || ^4.1.8
peerDependenciesMeta:
zod:
optional: true
checksum: d8a557c53af31e299ff644d787dcb70d0e22b211359873d3146d4e45d14cb53d7db1f065373da35496f0a5bd9078b04aa7f160ac493699b6d70fb263823f7077
languageName: node
linkType: hard
"@alloc/quick-lru@npm:^5.2.0":
version: 5.2.0
resolution: "@alloc/quick-lru@npm:5.2.0"
checksum: bdc35758b552bcf045733ac047fb7f9a07c4678b944c641adfbd41f798b4b91fffd0fdc0df2578d9b0afc7b4d636aa6e110ead5d6281a2adc1ab90efd7f057f8
languageName: node
linkType: hard
"@cfworker/json-schema@npm:^4.0.2":
version: 4.1.0
resolution: "@cfworker/json-schema@npm:4.1.0"
checksum: 8b9b4d5f6c1625224ee31a3625e41f86e8b24b5ea66a2928fa01a5692be1790f756b0ad1a79a367893ec34f41658dedef5249c7c285366b9be6e601e0783fba0
languageName: node
linkType: hard
"@dmsnell/diff-match-patch@npm:^1.1.0":
version: 1.1.0
resolution: "@dmsnell/diff-match-patch@npm:1.1.0"
checksum: 4472487045f0bed40abbf5708542f596bf9576e1e6bd4ae01d8ddb694f857be51ca56599c95c61d1433f3d57da2e6c6f3e175609864eea601a47a26a68750ca0
languageName: node
linkType: hard
"@emnapi/runtime@npm:^1.7.0":
version: 1.7.1
resolution: "@emnapi/runtime@npm:1.7.1"
dependencies:
tslib: ^2.4.0
checksum: a7429af887703bae05c360bc089d1ffbb99a8b5fd2645d8e1034737523f0323e9d29510c3569c3b8f5a516e86975aa9fcdb3601d1907c216f972e1b8d3ce82e1
languageName: node
linkType: hard
"@eslint-community/eslint-utils@npm:^4.2.0":
version: 4.4.0
resolution: "@eslint-community/eslint-utils@npm:4.4.0"
dependencies:
eslint-visitor-keys: ^3.3.0
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
checksum: cdfe3ae42b4f572cbfb46d20edafe6f36fc5fb52bf2d90875c58aefe226892b9677fef60820e2832caf864a326fe4fc225714c46e8389ccca04d5f9288aabd22
languageName: node
linkType: hard
"@eslint-community/regexpp@npm:^4.6.1":
version: 4.11.0
resolution: "@eslint-community/regexpp@npm:4.11.0"
checksum: 97d2fe46690b69417a551bd19a3dc53b6d9590d2295c43cc4c4e44e64131af541e2f4a44d5c12e87de990403654d3dae9d33600081f3a2f0386b368abc9111ec
languageName: node
linkType: hard
"@eslint/eslintrc@npm:^2.1.1":
version: 2.1.4
resolution: "@eslint/eslintrc@npm:2.1.4"
dependencies:
ajv: ^6.12.4
debug: ^4.3.2
espree: ^9.6.0
globals: ^13.19.0
ignore: ^5.2.0
import-fresh: ^3.2.1
js-yaml: ^4.1.0
minimatch: ^3.1.2
strip-json-comments: ^3.1.1
checksum: 10957c7592b20ca0089262d8c2a8accbad14b4f6507e35416c32ee6b4dbf9cad67dfb77096bbd405405e9ada2b107f3797fe94362e1c55e0b09d6e90dd149127
languageName: node
linkType: hard
"@eslint/js@npm:^8.46.0":
version: 8.57.0
resolution: "@eslint/js@npm:8.57.0"
checksum: 315dc65b0e9893e2bff139bddace7ea601ad77ed47b4550e73da8c9c2d2766c7a575c3cddf17ef85b8fd6a36ff34f91729d0dcca56e73ca887c10df91a41b0bb
languageName: node
linkType: hard
"@floating-ui/core@npm:^1.6.0":
version: 1.6.9
resolution: "@floating-ui/core@npm:1.6.9"
dependencies:
"@floating-ui/utils": ^0.2.9
checksum: 21cbcac72a40172399570dedf0eb96e4f24b0d829980160e8d14edf08c2955ac6feffb7b94e1530c78fb7944635e52669c9257ad08570e0295efead3b5a9af91
languageName: node
linkType: hard
"@floating-ui/dom@npm:^1.0.0":
version: 1.6.13
resolution: "@floating-ui/dom@npm:1.6.13"
dependencies:
"@floating-ui/core": ^1.6.0
"@floating-ui/utils": ^0.2.9
checksum: eabab9d860d3b5beab1c2d6936287efc4d9ab352de99062380589ef62870d59e8730397489c34a96657e128498001b5672330c4a9da0159fe8b2401ac59fe314
languageName: node
linkType: hard
"@floating-ui/react-dom@npm:^2.0.0":
version: 2.1.2
resolution: "@floating-ui/react-dom@npm:2.1.2"
dependencies:
"@floating-ui/dom": ^1.0.0
peerDependencies:
react: ">=16.8.0"
react-dom: ">=16.8.0"
checksum: 25bb031686e23062ed4222a8946e76b3f9021d40a48437bd747233c4964a766204b8a55f34fa8b259839af96e60db7c6e3714d81f1de06914294f90e86ffbc48
languageName: node
linkType: hard
"@floating-ui/utils@npm:^0.2.9":
version: 0.2.9
resolution: "@floating-ui/utils@npm:0.2.9"
checksum: d518b80cec5a323e54a069a1dd99a20f8221a4853ed98ac16c75275a0cc22f75de4f8ac5b121b4f8990bd45da7ad1fb015b9a1e4bac27bb1cd62444af84e9784
languageName: node
linkType: hard
"@gar/promise-retry@npm:^1.0.0":
version: 1.0.2
resolution: "@gar/promise-retry@npm:1.0.2"
dependencies:
retry: ^0.13.1
checksum: b91326999ce94677cbe91973079eabc689761a93a045f6a2d34d4070e9305b27f6c54e4021688c7080cb14caf89eafa0c0f300af741b94c20d18608bdb66ca46
languageName: node
linkType: hard
"@humanwhocodes/config-array@npm:^0.11.10":
version: 0.11.14
resolution: "@humanwhocodes/config-array@npm:0.11.14"
dependencies:
"@humanwhocodes/object-schema": ^2.0.2
debug: ^4.3.1
minimatch: ^3.0.5
checksum: 861ccce9eaea5de19546653bccf75bf09fe878bc39c3aab00aeee2d2a0e654516adad38dd1098aab5e3af0145bbcbf3f309bdf4d964f8dab9dcd5834ae4c02f2
languageName: node
linkType: hard
"@humanwhocodes/module-importer@npm:^1.0.1":
version: 1.0.1
resolution: "@humanwhocodes/module-importer@npm:1.0.1"
checksum: 0fd22007db8034a2cdf2c764b140d37d9020bbfce8a49d3ec5c05290e77d4b0263b1b972b752df8c89e5eaa94073408f2b7d977aed131faf6cf396ebb5d7fb61
languageName: node
linkType: hard
"@humanwhocodes/object-schema@npm:^2.0.2":
version: 2.0.3
resolution: "@humanwhocodes/object-schema@npm:2.0.3"
checksum: d3b78f6c5831888c6ecc899df0d03bcc25d46f3ad26a11d7ea52944dc36a35ef543fad965322174238d677a43d5c694434f6607532cff7077062513ad7022631
languageName: node
linkType: hard
"@img/colour@npm:^1.0.0":
version: 1.0.0
resolution: "@img/colour@npm:1.0.0"
checksum: 3ba417916c3b611b472e2bbfd6dd2b66e0683bd83e849422905c42eef5a87454e9c11602e8172b8be8169eef1d7cf2337d85dc7680890ee8c944fe3a147fdd6b
languageName: node
linkType: hard
"@img/sharp-darwin-arm64@npm:0.34.5":
version: 0.34.5
resolution: "@img/sharp-darwin-arm64@npm:0.34.5"
dependencies:
"@img/sharp-libvips-darwin-arm64": 1.2.4
dependenciesMeta:
"@img/sharp-libvips-darwin-arm64":
optional: true
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@img/sharp-darwin-x64@npm:0.34.5":
version: 0.34.5
resolution: "@img/sharp-darwin-x64@npm:0.34.5"
dependencies:
"@img/sharp-libvips-darwin-x64": 1.2.4
dependenciesMeta:
"@img/sharp-libvips-darwin-x64":
optional: true
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@img/sharp-libvips-darwin-arm64@npm:1.2.4":
version: 1.2.4
resolution: "@img/sharp-libvips-darwin-arm64@npm:1.2.4"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@img/sharp-libvips-darwin-x64@npm:1.2.4":
version: 1.2.4
resolution: "@img/sharp-libvips-darwin-x64@npm:1.2.4"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@img/sharp-libvips-linux-arm64@npm:1.2.4":
version: 1.2.4
resolution: "@img/sharp-libvips-linux-arm64@npm:1.2.4"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@img/sharp-libvips-linux-arm@npm:1.2.4":
version: 1.2.4
resolution: "@img/sharp-libvips-linux-arm@npm:1.2.4"
conditions: os=linux & cpu=arm & libc=glibc
languageName: node
linkType: hard
"@img/sharp-libvips-linux-ppc64@npm:1.2.4":
version: 1.2.4
resolution: "@img/sharp-libvips-linux-ppc64@npm:1.2.4"
conditions: os=linux & cpu=ppc64 & libc=glibc
languageName: node
linkType: hard
"@img/sharp-libvips-linux-riscv64@npm:1.2.4":
version: 1.2.4
resolution: "@img/sharp-libvips-linux-riscv64@npm:1.2.4"
conditions: os=linux & cpu=riscv64 & libc=glibc
languageName: node
linkType: hard
"@img/sharp-libvips-linux-s390x@npm:1.2.4":
version: 1.2.4
resolution: "@img/sharp-libvips-linux-s390x@npm:1.2.4"
conditions: os=linux & cpu=s390x & libc=glibc
languageName: node
linkType: hard
"@img/sharp-libvips-linux-x64@npm:1.2.4":
version: 1.2.4
resolution: "@img/sharp-libvips-linux-x64@npm:1.2.4"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@img/sharp-libvips-linuxmusl-arm64@npm:1.2.4":
version: 1.2.4
resolution: "@img/sharp-libvips-linuxmusl-arm64@npm:1.2.4"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
"@img/sharp-libvips-linuxmusl-x64@npm:1.2.4":
version: 1.2.4
resolution: "@img/sharp-libvips-linuxmusl-x64@npm:1.2.4"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@img/sharp-linux-arm64@npm:0.34.5":
version: 0.34.5
resolution: "@img/sharp-linux-arm64@npm:0.34.5"
dependencies:
"@img/sharp-libvips-linux-arm64": 1.2.4
dependenciesMeta:
"@img/sharp-libvips-linux-arm64":
optional: true
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@img/sharp-linux-arm@npm:0.34.5":
version: 0.34.5
resolution: "@img/sharp-linux-arm@npm:0.34.5"
dependencies:
"@img/sharp-libvips-linux-arm": 1.2.4
dependenciesMeta:
"@img/sharp-libvips-linux-arm":
optional: true
conditions: os=linux & cpu=arm & libc=glibc
languageName: node
linkType: hard
"@img/sharp-linux-ppc64@npm:0.34.5":
version: 0.34.5
resolution: "@img/sharp-linux-ppc64@npm:0.34.5"
dependencies:
"@img/sharp-libvips-linux-ppc64": 1.2.4
dependenciesMeta:
"@img/sharp-libvips-linux-ppc64":
optional: true
conditions: os=linux & cpu=ppc64 & libc=glibc
languageName: node
linkType: hard
"@img/sharp-linux-riscv64@npm:0.34.5":
version: 0.34.5
resolution: "@img/sharp-linux-riscv64@npm:0.34.5"
dependencies:
"@img/sharp-libvips-linux-riscv64": 1.2.4
dependenciesMeta:
"@img/sharp-libvips-linux-riscv64":
optional: true
conditions: os=linux & cpu=riscv64 & libc=glibc
languageName: node
linkType: hard
"@img/sharp-linux-s390x@npm:0.34.5":
version: 0.34.5
resolution: "@img/sharp-linux-s390x@npm:0.34.5"
dependencies:
"@img/sharp-libvips-linux-s390x": 1.2.4
dependenciesMeta:
"@img/sharp-libvips-linux-s390x":
optional: true
conditions: os=linux & cpu=s390x & libc=glibc
languageName: node
linkType: hard
"@img/sharp-linux-x64@npm:0.34.5":
version: 0.34.5
resolution: "@img/sharp-linux-x64@npm:0.34.5"
dependencies:
"@img/sharp-libvips-linux-x64": 1.2.4
dependenciesMeta:
"@img/sharp-libvips-linux-x64":
optional: true
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@img/sharp-linuxmusl-arm64@npm:0.34.5":
version: 0.34.5
resolution: "@img/sharp-linuxmusl-arm64@npm:0.34.5"
dependencies:
"@img/sharp-libvips-linuxmusl-arm64": 1.2.4
dependenciesMeta:
"@img/sharp-libvips-linuxmusl-arm64":
optional: true
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
"@img/sharp-linuxmusl-x64@npm:0.34.5":
version: 0.34.5
resolution: "@img/sharp-linuxmusl-x64@npm:0.34.5"
dependencies:
"@img/sharp-libvips-linuxmusl-x64": 1.2.4
dependenciesMeta:
"@img/sharp-libvips-linuxmusl-x64":
optional: true
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@img/sharp-wasm32@npm:0.34.5":
version: 0.34.5
resolution: "@img/sharp-wasm32@npm:0.34.5"
dependencies:
"@emnapi/runtime": ^1.7.0
conditions: cpu=wasm32
languageName: node
linkType: hard
"@img/sharp-win32-arm64@npm:0.34.5":
version: 0.34.5
resolution: "@img/sharp-win32-arm64@npm:0.34.5"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@img/sharp-win32-ia32@npm:0.34.5":
version: 0.34.5
resolution: "@img/sharp-win32-ia32@npm:0.34.5"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@img/sharp-win32-x64@npm:0.34.5":
version: 0.34.5
resolution: "@img/sharp-win32-x64@npm:0.34.5"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@isaacs/cliui@npm:^8.0.2":
version: 8.0.2
resolution: "@isaacs/cliui@npm:8.0.2"
dependencies:
string-width: ^5.1.2
string-width-cjs: "npm:string-width@^4.2.0"
strip-ansi: ^7.0.1
strip-ansi-cjs: "npm:strip-ansi@^6.0.1"
wrap-ansi: ^8.1.0
wrap-ansi-cjs: "npm:wrap-ansi@^7.0.0"
checksum: 4a473b9b32a7d4d3cfb7a614226e555091ff0c5a29a1734c28c72a182c2f6699b26fc6b5c2131dfd841e86b185aea714c72201d7c98c2fba5f17709333a67aeb
languageName: node
linkType: hard
"@isaacs/fs-minipass@npm:^4.0.0":
version: 4.0.1
resolution: "@isaacs/fs-minipass@npm:4.0.1"
dependencies:
minipass: ^7.0.4
checksum: 5d36d289960e886484362d9eb6a51d1ea28baed5f5d0140bbe62b99bac52eaf06cc01c2bc0d3575977962f84f6b2c4387b043ee632216643d4787b0999465bf2
languageName: node
linkType: hard
"@jridgewell/gen-mapping@npm:^0.3.2":
version: 0.3.5
resolution: "@jridgewell/gen-mapping@npm:0.3.5"
dependencies:
"@jridgewell/set-array": ^1.2.1
"@jridgewell/sourcemap-codec": ^1.4.10
"@jridgewell/trace-mapping": ^0.3.24
checksum: ff7a1764ebd76a5e129c8890aa3e2f46045109dabde62b0b6c6a250152227647178ff2069ea234753a690d8f3c4ac8b5e7b267bbee272bffb7f3b0a370ab6e52
languageName: node
linkType: hard
"@jridgewell/resolve-uri@npm:^3.1.0":
version: 3.1.2
resolution: "@jridgewell/resolve-uri@npm:3.1.2"
checksum: 83b85f72c59d1c080b4cbec0fef84528963a1b5db34e4370fa4bd1e3ff64a0d80e0cee7369d11d73c704e0286fb2865b530acac7a871088fbe92b5edf1000870
languageName: node
linkType: hard
"@jridgewell/set-array@npm:^1.2.1":
version: 1.2.1
resolution: "@jridgewell/set-array@npm:1.2.1"
checksum: 832e513a85a588f8ed4f27d1279420d8547743cc37fcad5a5a76fc74bb895b013dfe614d0eed9cb860048e6546b798f8f2652020b4b2ba0561b05caa8c654b10
languageName: node
linkType: hard
"@jridgewell/sourcemap-codec@npm:^1.4.10, @jridgewell/sourcemap-codec@npm:^1.4.14":
version: 1.5.0
resolution: "@jridgewell/sourcemap-codec@npm:1.5.0"
checksum: 05df4f2538b3b0f998ea4c1cd34574d0feba216fa5d4ccaef0187d12abf82eafe6021cec8b49f9bb4d90f2ba4582ccc581e72986a5fcf4176ae0cfeb04cf52ec
languageName: node
linkType: hard
"@jridgewell/trace-mapping@npm:^0.3.24":
version: 0.3.25
resolution: "@jridgewell/trace-mapping@npm:0.3.25"
dependencies:
"@jridgewell/resolve-uri": ^3.1.0
"@jridgewell/sourcemap-codec": ^1.4.14
checksum: 9d3c40d225e139987b50c48988f8717a54a8c994d8a948ee42e1412e08988761d0754d7d10b803061cc3aebf35f92a5dbbab493bd0e1a9ef9e89a2130e83ba34
languageName: node
linkType: hard
"@langchain/classic@npm:1.0.20":
version: 1.0.20
resolution: "@langchain/classic@npm:1.0.20"
dependencies:
"@langchain/openai": 1.2.10
"@langchain/textsplitters": 1.0.1
handlebars: ^4.7.8
js-yaml: ^4.1.1
jsonpointer: ^5.0.1
langsmith: ">=0.4.0 <1.0.0"
openapi-types: ^12.1.3
uuid: ^10.0.0
yaml: ^2.2.1
zod: ^3.25.76 || ^4
peerDependencies:
"@langchain/core": ^1.0.0
cheerio: "*"
peggy: ^3.0.2
typeorm: "*"
dependenciesMeta:
langsmith:
optional: true
peerDependenciesMeta:
cheerio:
optional: true
peggy:
optional: true
typeorm:
optional: true
checksum: 686529755a99a50f1f85c3ce7d9af53b44235a660996d21823c6cc2342573f87b6bb6a2edd89938335d780ed3e01f285d22b74b9b9064d6f29bfa84a80aabfbe
languageName: node
linkType: hard
"@langchain/community@npm:^1.1.14":
version: 1.1.19
resolution: "@langchain/community@npm:1.1.19"
dependencies:
"@langchain/classic": 1.0.20
"@langchain/openai": 1.2.10
binary-extensions: ^2.2.0
flat: ^5.0.2
js-yaml: ^4.1.1
math-expression-evaluator: ^2.0.0
uuid: ^10.0.0
zod: ^3.25.76 || ^4
peerDependencies:
"@arcjet/redact": ^v1.1.0
"@aws-crypto/sha256-js": ^5.0.0
"@aws-sdk/client-dynamodb": ^3.995.0
"@aws-sdk/client-lambda": ^3.995.0
"@aws-sdk/client-s3": ^3.995.0
"@aws-sdk/client-sagemaker-runtime": ^3.995.0
"@aws-sdk/client-sfn": ^3.995.0
"@aws-sdk/credential-provider-node": ^3.388.0
"@azure/search-documents": ^12.2.0
"@azure/storage-blob": ^12.31.0
"@browserbasehq/sdk": "*"
"@browserbasehq/stagehand": ^1.0.0
"@clickhouse/client": ^0.2.5
"@datastax/astra-db-ts": ^1.0.0
"@elastic/elasticsearch": ^8.4.0
"@getmetal/metal-sdk": "*"
"@getzep/zep-cloud": ^1.0.6
"@getzep/zep-js": ^2.0.2
"@gomomento/sdk-core": ^1.117.2
"@google-cloud/storage": ^6.10.1 || ^7.7.0
"@gradientai/nodejs-sdk": ^1.2.0
"@huggingface/inference": ^4.13.12
"@huggingface/transformers": ^3.8.1
"@ibm-cloud/watsonx-ai": "*"
"@lancedb/lancedb": ^0.19.1
"@langchain/core": ^1.1.28
"@layerup/layerup-security": ^1.5.12
"@libsql/client": ^0.17.0
"@mendable/firecrawl-js": ^4.13.0
"@mlc-ai/web-llm": "*"
"@mozilla/readability": "*"
"@neondatabase/serverless": "*"
"@notionhq/client": ^5.9.0
"@opensearch-project/opensearch": "*"
"@planetscale/database": ^1.8.0
"@premai/prem-sdk": ^0.3.25
"@raycast/api": ^1.55.2
"@rockset/client": ^0.9.1
"@smithy/eventstream-codec": ^4.2.9
"@smithy/protocol-http": ^5.3.9
"@smithy/signature-v4": ^5.3.9
"@smithy/util-utf8": ^4.2.1
"@spider-cloud/spider-client": ^0.1.85
"@supabase/supabase-js": ^2.45.0
"@tensorflow-models/universal-sentence-encoder": "*"
"@tensorflow/tfjs-core": "*"
"@upstash/ratelimit": ^1.1.3 || ^2.0.3
"@upstash/redis": ^1.20.6
"@upstash/vector": ^1.1.1
"@vercel/kv": "*"
"@vercel/postgres": "*"
"@writerai/writer-sdk": ^3.6.0
"@xata.io/client": ^0.28.0
"@zilliz/milvus2-sdk-node": ">=2.3.5"
apify-client: ^2.22.2
assemblyai: ^4.23.1
azion: ^3.1.1
better-sqlite3: ">=9.4.0 <12.0.0"
cassandra-driver: ^4.7.2
cborg: ^4.5.8
cheerio: ^1.2.0
chromadb: "*"
closevector-common: 0.1.3
closevector-node: 0.1.6
closevector-web: 0.1.6
convex: ^1.3.1
couchbase: ^4.6.1
crypto-js: ^4.2.0
d3-dsv: ^3.0.1
discord.js: ^14.25.1
duck-duck-scrape: ^2.2.5
epub2: ^3.0.1
faiss-node: "*"
fast-xml-parser: "*"
firebase-admin: ^13.6.1
google-auth-library: "*"
googleapis: "*"
hnswlib-node: ^3.0.0
html-to-text: ^9.0.5
ibm-cloud-sdk-core: "*"
ignore: ^7.0.5
interface-datastore: ^9.0.2
ioredis: ^5.3.2
it-all: ^3.0.4
jsdom: "*"
jsonwebtoken: ^9.0.3
lodash: ^4.17.23
lunary: ^0.7.10
mammoth: ^1.11.0
mariadb: ^3.4.0
mem0ai: ^2.1.8
mysql2: ^3.18.0
neo4j-driver: "*"
node-llama-cpp: ">=3.0.0"
notion-to-md: ^3.1.0
officeparser: ^6.0.4
openai: "*"
pdf-parse: 2.4.5
pg: ^8.11.0
pg-copy-streams: ^7.0.0
pickleparser: ^0.2.1
playwright: ^1.58.2
portkey-ai: ^3.0.1
puppeteer: "*"
pyodide: ">=0.24.1 <0.27.0"
replicate: "*"
sonix-speech-recognition: ^2.1.1
srt-parser-2: ^1.2.3
typeorm: ^0.3.28
typesense: ^3.0.1
usearch: ^1.1.1
voy-search: 0.6.2
word-extractor: "*"
ws: ^8.14.2
youtubei.js: "*"
peerDependenciesMeta:
"@arcjet/redact":
optional: true
"@aws-crypto/sha256-js":
optional: true
"@aws-sdk/client-dynamodb":
optional: true
"@aws-sdk/client-lambda":
optional: true
"@aws-sdk/client-s3":
optional: true
"@aws-sdk/client-sagemaker-runtime":
optional: true
"@aws-sdk/client-sfn":
optional: true
"@aws-sdk/credential-provider-node":
optional: true
"@aws-sdk/dsql-signer":
optional: true
"@azure/search-documents":
optional: true
"@azure/storage-blob":
optional: true
"@browserbasehq/sdk":
optional: true
"@clickhouse/client":
optional: true
"@datastax/astra-db-ts":
optional: true
"@elastic/elasticsearch":
optional: true
"@getmetal/metal-sdk":
optional: true
"@getzep/zep-cloud":
optional: true
"@getzep/zep-js":
optional: true
"@gomomento/sdk-core":
optional: true
"@google-cloud/storage":
optional: true
"@gradientai/nodejs-sdk":
optional: true
"@huggingface/inference":
optional: true
"@huggingface/transformers":
optional: true
"@lancedb/lancedb":
optional: true
"@layerup/layerup-security":
optional: true
"@libsql/client":
optional: true
"@mendable/firecrawl-js":
optional: true
"@mlc-ai/web-llm":
optional: true
"@mozilla/readability":
optional: true
"@neondatabase/serverless":
optional: true
"@notionhq/client":
optional: true
"@opensearch-project/opensearch":
optional: true
"@pinecone-database/pinecone":
optional: true
"@planetscale/database":
optional: true
"@premai/prem-sdk":
optional: true
"@qdrant/js-client-rest":
optional: true
"@raycast/api":
optional: true
"@rockset/client":
optional: true
"@smithy/eventstream-codec":
optional: true
"@smithy/protocol-http":
optional: true
"@smithy/signature-v4":
optional: true
"@smithy/util-utf8":
optional: true
"@spider-cloud/spider-client":
optional: true
"@supabase/supabase-js":
optional: true
"@tensorflow-models/universal-sentence-encoder":
optional: true
"@tensorflow/tfjs-core":
optional: true
"@upstash/ratelimit":
optional: true
"@upstash/redis":
optional: true
"@upstash/vector":
optional: true
"@vercel/kv":
optional: true
"@vercel/postgres":
optional: true
"@writerai/writer-sdk":
optional: true
"@xata.io/client":
optional: true
"@xenova/transformers":
optional: true
"@zilliz/milvus2-sdk-node":
optional: true
apify-client:
optional: true
assemblyai:
optional: true
azion:
optional: true
better-sqlite3:
optional: true
cassandra-driver:
optional: true
cborg:
optional: true
cheerio:
optional: true
chromadb:
optional: true
closevector-common:
optional: true
closevector-node:
optional: true
closevector-web:
optional: true
cohere-ai:
optional: true
convex:
optional: true
couchbase:
optional: true
crypto-js:
optional: true
d3-dsv:
optional: true
discord.js:
optional: true
duck-duck-scrape:
optional: true
epub2:
optional: true
faiss-node:
optional: true
fast-xml-parser:
optional: true
firebase-admin:
optional: true
google-auth-library:
optional: true
googleapis:
optional: true
hnswlib-node:
optional: true
html-to-text:
optional: true
ignore:
optional: true
interface-datastore:
optional: true
ioredis:
optional: true
it-all:
optional: true
jsdom:
optional: true
jsonwebtoken:
optional: true
lodash:
optional: true
lunary:
optional: true
mammoth:
optional: true
mariadb:
optional: true
mem0ai:
optional: true
mongodb:
optional: true
mysql2:
optional: true
neo4j-driver:
optional: true
node-llama-cpp:
optional: true
notion-to-md:
optional: true
officeparser:
optional: true
pdf-parse:
optional: true
pg:
optional: true
pg-copy-streams:
optional: true
pickleparser:
optional: true
playwright:
optional: true
portkey-ai:
optional: true
puppeteer:
optional: true
pyodide:
optional: true
redis:
optional: true
replicate:
optional: true
sonix-speech-recognition:
optional: true
srt-parser-2:
optional: true
typeorm:
optional: true
typesense:
optional: true
usearch:
optional: true
voy-search:
optional: true
weaviate-client:
optional: true
word-extractor:
optional: true
ws:
optional: true
youtubei.js:
optional: true
checksum: 9cf7bbb409c49620fa6376184dab49466c768696d492867ef5afc342bcd50c99c3dde79b2b960c82353f70dec27d469cc69f7879a8e1f967dab50f61c91afcb1
languageName: node
linkType: hard
"@langchain/core@npm:^0.3.43":
version: 0.3.80
resolution: "@langchain/core@npm:0.3.80"
dependencies:
"@cfworker/json-schema": ^4.0.2
ansi-styles: ^5.0.0
camelcase: 6
decamelize: 1.2.0
js-tiktoken: ^1.0.12
langsmith: ^0.3.67
mustache: ^4.2.0
p-queue: ^6.6.2
p-retry: 4
uuid: ^10.0.0
zod: ^3.25.32
zod-to-json-schema: ^3.22.3
checksum: b11dbcfff1f63b2db55d655867440cd69bd6bd4f21c7b0167e5eae2dcea37195a8243db93e024c8e3cddac5ac11e8771cf38b032788210eb28204e955424ea61
languageName: node
linkType: hard
"@langchain/langgraph-checkpoint@npm:~0.0.16":
version: 0.0.16
resolution: "@langchain/langgraph-checkpoint@npm:0.0.16"
dependencies:
uuid: ^10.0.0
peerDependencies:
"@langchain/core": ">=0.2.31 <0.4.0"
checksum: ca0d169256f4b82e050297af536d4e8d24b47cd7ea029925845a3b3ae06eaef1fcca566ad9851a608b46f2fe5ff1de77a66d86fcaa808de26b7c97a9afdc061c
languageName: node
linkType: hard
"@langchain/langgraph-sdk@npm:^0.0.60":
version: 0.0.60
resolution: "@langchain/langgraph-sdk@npm:0.0.60"
dependencies:
"@types/json-schema": ^7.0.15
p-queue: ^6.6.2
p-retry: 4
uuid: ^9.0.0
peerDependencies:
"@langchain/core": ">=0.2.31 <0.4.0"
react: ^18 || ^19
peerDependenciesMeta:
"@langchain/core":
optional: true
react:
optional: true
checksum: c5d8ef65eaa7d1cbcf704a37b4e443ffdd179c0140651f81da01dcb30f3a213c61ae560e4062d3e30ce92d5ebb1c54c937bc84859ee6efa828b9af3406cd1e76
languageName: node
linkType: hard
"@langchain/langgraph-sdk@npm:~0.0.32":
version: 0.0.36
resolution: "@langchain/langgraph-sdk@npm:0.0.36"
dependencies:
"@types/json-schema": ^7.0.15
p-queue: ^6.6.2
p-retry: 4
uuid: ^9.0.0
checksum: 7e14529ad7190681ac53c18f7e46b9854c4185c5cac30fec711eb3149d146e1f4fdb141d454793262a7e0e2cb5970b91f3ebec4b904bfb9cb32b3862cfd775ec
languageName: node
linkType: hard
"@langchain/langgraph@npm:^0.2.57":
version: 0.2.57
resolution: "@langchain/langgraph@npm:0.2.57"
dependencies:
"@langchain/langgraph-checkpoint": ~0.0.16
"@langchain/langgraph-sdk": ~0.0.32
uuid: ^10.0.0
zod: ^3.23.8
peerDependencies:
"@langchain/core": ">=0.2.36 <0.3.0 || >=0.3.40 < 0.4.0"
checksum: d0c695f3db2b1a464fdb94a29fccb42a91530c26af953d5d88042fb1082662dc85baff046791802d7a553d7bf37d32fb77a54e167df0411951b68400af7a16ba
languageName: node
linkType: hard
"@langchain/openai@npm:1.2.10":
version: 1.2.10
resolution: "@langchain/openai@npm:1.2.10"
dependencies:
js-tiktoken: ^1.0.12
openai: ^6.22.0
zod: ^3.25.76 || ^4
peerDependencies:
"@langchain/core": ^1.1.28
checksum: 12a56338028a75eb732f6ee25918ff42f652f13713d23d555ab213b7fcd0f3ddbc8f7751cfdd804e0f9c49cd56bb8db321d5446983e228bd7134dac36a4acef3
languageName: node