forked from topsecretagent007/ai-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpnpm-lock.yaml
24019 lines (19368 loc) · 816 KB
/
pnpm-lock.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
lockfileVersion: '9.0'
settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
importers:
.:
dependencies:
'@0glabs/0g-ts-sdk':
specifier: 0.2.1
version: 0.2.1(bufferutil@4.0.9)(ethers@6.13.4(bufferutil@4.0.9)(utf-8-validate@6.0.5))(utf-8-validate@6.0.5)
'@3land/listings-sdk':
specifier: ^0.0.5
version: 0.0.5(@types/node@22.10.2)(arweave@1.15.5)(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.7.3)(utf-8-validate@6.0.5)
'@ai16z/adapter-postgres':
specifier: ^0.1.6
version: 0.1.6(@google-cloud/vertexai@1.9.2)(@langchain/core@0.3.27(openai@4.73.0(zod@3.24.1)))(@langchain/groq@0.1.3(@langchain/core@0.3.27(openai@4.73.0(zod@3.24.1))))(axios@1.7.9)(react@18.3.1)(sswr@2.1.0(svelte@5.15.0))(svelte@5.15.0)(typeorm@0.3.20(better-sqlite3@11.7.2)(ioredis@5.4.2)(pg@8.13.1)(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.7.3)))(vue@3.5.13(typescript@5.7.3))
'@ai16z/adapter-sqlite':
specifier: 0.1.6
version: 0.1.6(@google-cloud/vertexai@1.9.2)(@langchain/core@0.3.27(openai@4.73.0(zod@3.24.1)))(@langchain/groq@0.1.3(@langchain/core@0.3.27(openai@4.73.0(zod@3.24.1))))(axios@1.7.9)(react@18.3.1)(sswr@2.1.0(svelte@5.15.0))(svelte@5.15.0)(typeorm@0.3.20(better-sqlite3@11.7.2)(ioredis@5.4.2)(pg@8.13.1)(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.7.3)))(vue@3.5.13(typescript@5.7.3))(whatwg-url@14.1.0)
'@ai16z/client-direct':
specifier: 0.1.6-alpha.4
version: 0.1.6-alpha.4(@google-cloud/vertexai@1.9.2)(@langchain/core@0.3.27(openai@4.73.0(zod@3.24.1)))(@langchain/groq@0.1.3(@langchain/core@0.3.27(openai@4.73.0(zod@3.24.1))))(axios@1.7.9)(bufferutil@4.0.9)(postcss@8.4.49)(react@18.3.1)(sswr@2.1.0(svelte@5.15.0))(svelte@5.15.0)(tsx@4.19.2)(typeorm@0.3.20(better-sqlite3@11.7.2)(ioredis@5.4.2)(pg@8.13.1)(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.7.3)))(typescript@5.7.3)(utf-8-validate@6.0.5)(vue@3.5.13(typescript@5.7.3))(whatwg-url@14.1.0)(yaml@2.7.0)
'@ai16z/client-discord':
specifier: 0.1.6
version: 0.1.6(@google-cloud/vertexai@1.9.2)(@langchain/core@0.3.27(openai@4.73.0(zod@3.24.1)))(@langchain/groq@0.1.3(@langchain/core@0.3.27(openai@4.73.0(zod@3.24.1))))(axios@1.7.9)(bufferutil@4.0.9)(canvas@2.11.2)(ffmpeg-static@5.2.0)(onnxruntime-node@1.20.1)(puppeteer-core@19.11.1(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@6.0.5))(puppeteer@19.11.1(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@6.0.5))(react@18.3.1)(sswr@2.1.0(svelte@5.15.0))(svelte@5.15.0)(typeorm@0.3.20(better-sqlite3@11.7.2)(ioredis@5.4.2)(pg@8.13.1)(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.7.3)))(typescript@5.7.3)(utf-8-validate@6.0.5)(vue@3.5.13(typescript@5.7.3))(whatwg-url@14.1.0)
'@ai16z/eliza':
specifier: 0.1.6-alpha.4
version: 0.1.6-alpha.4(@google-cloud/vertexai@1.9.2)(@langchain/core@0.3.27(openai@4.73.0(zod@3.24.1)))(@langchain/groq@0.1.3(@langchain/core@0.3.27(openai@4.73.0(zod@3.24.1))))(axios@1.7.9)(react@18.3.1)(sswr@2.1.0(svelte@5.15.0))(svelte@5.15.0)(typeorm@0.3.20(better-sqlite3@11.7.2)(ioredis@5.4.2)(pg@8.13.1)(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.7.3)))(vue@3.5.13(typescript@5.7.3))
'@ai16z/plugin-0g':
specifier: 0.1.6-alpha.4
version: 0.1.6-alpha.4(@google-cloud/vertexai@1.9.2)(@langchain/core@0.3.27(openai@4.73.0(zod@3.24.1)))(@langchain/groq@0.1.3(@langchain/core@0.3.27(openai@4.73.0(zod@3.24.1))))(axios@1.7.9)(bufferutil@4.0.9)(postcss@8.4.49)(react@18.3.1)(sswr@2.1.0(svelte@5.15.0))(svelte@5.15.0)(tsx@4.19.2)(typeorm@0.3.20(better-sqlite3@11.7.2)(ioredis@5.4.2)(pg@8.13.1)(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.7.3)))(typescript@5.7.3)(utf-8-validate@6.0.5)(vue@3.5.13(typescript@5.7.3))(yaml@2.7.0)
'@ai16z/plugin-image-generation':
specifier: 0.1.6-alpha.4
version: 0.1.6-alpha.4(@google-cloud/vertexai@1.9.2)(@langchain/core@0.3.27(openai@4.73.0(zod@3.24.1)))(@langchain/groq@0.1.3(@langchain/core@0.3.27(openai@4.73.0(zod@3.24.1))))(axios@1.7.9)(postcss@8.4.49)(react@18.3.1)(sswr@2.1.0(svelte@5.15.0))(svelte@5.15.0)(tsx@4.19.2)(typeorm@0.3.20(better-sqlite3@11.7.2)(ioredis@5.4.2)(pg@8.13.1)(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.7.3)))(typescript@5.7.3)(vue@3.5.13(typescript@5.7.3))(whatwg-url@14.1.0)(yaml@2.7.0)
'@ai16z/plugin-node':
specifier: 0.1.6
version: 0.1.6(@google-cloud/vertexai@1.9.2)(@langchain/core@0.3.27(openai@4.73.0(zod@3.24.1)))(@langchain/groq@0.1.3(@langchain/core@0.3.27(openai@4.73.0(zod@3.24.1))))(axios@1.7.9)(bufferutil@4.0.9)(canvas@2.11.2)(onnxruntime-node@1.20.1)(puppeteer-core@19.11.1(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@6.0.5))(puppeteer@19.11.1(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@6.0.5))(react@18.3.1)(sswr@2.1.0(svelte@5.15.0))(svelte@5.15.0)(typeorm@0.3.20(better-sqlite3@11.7.2)(ioredis@5.4.2)(pg@8.13.1)(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.7.3)))(typescript@5.7.3)(utf-8-validate@6.0.5)(vue@3.5.13(typescript@5.7.3))(whatwg-url@14.1.0)(zod@3.24.1)
'@ai16z/plugin-solana':
specifier: 0.1.6
version: 0.1.6(@google-cloud/vertexai@1.9.2)(@langchain/core@0.3.27(openai@4.73.0(zod@3.24.1)))(@langchain/groq@0.1.3(@langchain/core@0.3.27(openai@4.73.0(zod@3.24.1))))(@types/node@22.10.2)(axios@1.7.9)(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(form-data@4.0.1)(jsdom@25.0.1(bufferutil@4.0.9)(canvas@2.11.2)(utf-8-validate@6.0.5))(postcss@8.4.49)(react@18.3.1)(rollup@4.30.1)(sswr@2.1.0(svelte@5.15.0))(svelte@5.15.0)(terser@5.37.0)(tsx@4.19.2)(typeorm@0.3.20(better-sqlite3@11.7.2)(ioredis@5.4.2)(pg@8.13.1)(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.7.3)))(typescript@5.7.3)(utf-8-validate@6.0.5)(vue@3.5.13(typescript@5.7.3))(whatwg-url@14.1.0)(yaml@2.7.0)(zod@3.24.1)
'@ai16z/plugin-starknet':
specifier: 0.1.6
version: 0.1.6(@google-cloud/vertexai@1.9.2)(@langchain/core@0.3.27(openai@4.73.0(zod@3.24.1)))(@langchain/groq@0.1.3(@langchain/core@0.3.27(openai@4.73.0(zod@3.24.1))))(@types/node@22.10.2)(axios@1.7.9)(ethers@6.13.4(bufferutil@4.0.9)(utf-8-validate@6.0.5))(jsdom@25.0.1(bufferutil@4.0.9)(canvas@2.11.2)(utf-8-validate@6.0.5))(postcss@8.4.49)(qs@6.13.1)(react@18.3.1)(sswr@2.1.0(svelte@5.15.0))(svelte@5.15.0)(terser@5.37.0)(tsx@4.19.2)(typeorm@0.3.20(better-sqlite3@11.7.2)(ioredis@5.4.2)(pg@8.13.1)(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.7.3)))(typescript@5.7.3)(vue@3.5.13(typescript@5.7.3))(whatwg-url@14.1.0)(yaml@2.7.0)
'@coinbase/cdp-agentkit-core':
specifier: ^0.0.8
version: 0.0.8(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@6.0.5)
'@coinbase/twitter-langchain':
specifier: ^0.0.6
version: 0.0.6(@coinbase/coinbase-sdk@0.11.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@6.0.5)(zod@3.24.1))(bufferutil@4.0.9)(openai@4.73.0(zod@3.24.1))(typescript@5.7.3)(utf-8-validate@6.0.5)
'@coral-xyz/anchor':
specifier: ^0.30.1
version: 0.30.1(bufferutil@4.0.9)(utf-8-validate@6.0.5)
'@coral-xyz/borsh':
specifier: ^0.30.1
version: 0.30.1(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@6.0.5))
'@elizaos/core':
specifier: 0.1.7-alpha.1
version: 0.1.7-alpha.1(@google-cloud/vertexai@1.9.2)(@langchain/core@0.3.27(openai@4.73.0(zod@3.24.1)))(@langchain/groq@0.1.3(@langchain/core@0.3.27(openai@4.73.0(zod@3.24.1))))(axios@1.7.9)(react@18.3.1)(sswr@2.1.0(svelte@5.15.0))(svelte@5.15.0)(typeorm@0.3.20(better-sqlite3@11.7.2)(ioredis@5.4.2)(pg@8.13.1)(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.7.3)))(vue@3.5.13(typescript@5.7.3))
'@fleekxyz/sdk':
specifier: ^1.4.2
version: 1.4.2
'@goat-sdk/core':
specifier: ^0.4.5
version: 0.4.5(zod@3.24.1)
'@goat-sdk/wallet-solana':
specifier: 0.2.10
version: 0.2.10(@goat-sdk/core@0.4.5(zod@3.24.1))(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@6.0.5))(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@6.0.5)
'@jup-ag/core':
specifier: 4.0.0-beta.21
version: 4.0.0-beta.21(@project-serum/anchor@0.24.2(bufferutil@4.0.9)(utf-8-validate@6.0.5))(@saberhq/solana-contrib@1.15.0(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@6.0.5))(bn.js@5.2.1))(@solana/buffer-layout@4.0.1)(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@6.0.5))(buffer@6.0.3)(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.7.3)(utf-8-validate@6.0.5)
'@langchain/community':
specifier: ^0.3.24
version: 0.3.24(3y6s5zowqa5wnkgteifmayf54i)
'@langchain/core':
specifier: 0.3.27
version: 0.3.27(openai@4.73.0(zod@3.24.1))
'@langchain/groq':
specifier: ^0.1.3
version: 0.1.3(@langchain/core@0.3.27(openai@4.73.0(zod@3.24.1)))
'@langchain/langgraph':
specifier: ^0.2.39
version: 0.2.39(@langchain/core@0.3.27(openai@4.73.0(zod@3.24.1)))
'@langchain/langgraph-checkpoint-postgres':
specifier: ^0.0.2
version: 0.0.2(@langchain/core@0.3.27(openai@4.73.0(zod@3.24.1)))(@langchain/langgraph-checkpoint@0.0.13(@langchain/core@0.3.27(openai@4.73.0(zod@3.24.1))))
'@orca-so/common-sdk':
specifier: 0.6.4
version: 0.6.4(@solana/spl-token@0.3.11(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@6.0.5))(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.7.3)(utf-8-validate@6.0.5))(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@6.0.5))(decimal.js@10.4.2)
'@raydium-io/raydium-sdk-v2':
specifier: 0.1.103-alpha
version: 0.1.103-alpha(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.7.3)(utf-8-validate@6.0.5)
'@rollup/plugin-json':
specifier: ^6.1.0
version: 6.1.0(rollup@4.30.1)
'@rollup/plugin-node-resolve':
specifier: 16.0.0
version: 16.0.0(rollup@4.30.1)
'@solana/spl-token':
specifier: ^0.3.11
version: 0.3.11(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@6.0.5))(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.7.3)(utf-8-validate@6.0.5)
'@solana/web3.js':
specifier: 1.98.0
version: 1.98.0(bufferutil@4.0.9)(utf-8-validate@6.0.5)
axios:
specifier: ^1.7.9
version: 1.7.9
base-64:
specifier: ^1.0.0
version: 1.0.0
better-sqlite3:
specifier: ^11.7.2
version: 11.7.2
bignumber:
specifier: 1.1.0
version: 1.1.0
bignumber.js:
specifier: 9.1.2
version: 9.1.2
bs58:
specifier: 6.0.0
version: 6.0.0
buffer:
specifier: 6.0.3
version: 6.0.3
bufferutil:
specifier: ^4.0.9
version: 4.0.9
cors:
specifier: ^2.8.5
version: 2.8.5
decimal.js:
specifier: ^10.4.2
version: 10.4.2
discord.js:
specifier: ^14.17.3
version: 14.17.3(bufferutil@4.0.9)(utf-8-validate@6.0.5)
dotenv:
specifier: ^16.4.7
version: 16.4.7
ethers:
specifier: 6.13.4
version: 6.13.4(bufferutil@4.0.9)(utf-8-validate@6.0.5)
express:
specifier: ^4.21.2
version: 4.21.2
fomo-sdk-solana:
specifier: 1.3.2
version: 1.3.2(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.7.3)(utf-8-validate@6.0.5)
groq-sdk:
specifier: 0.9.1
version: 0.9.1
helius-sdk:
specifier: 1.4.1
version: 1.4.1(arweave@1.15.5)(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.7.3)(utf-8-validate@6.0.5)
helmet:
specifier: ^8.0.0
version: 8.0.0
ioredis:
specifier: ^5.4.2
version: 5.4.2
jito-ts:
specifier: ^4.2.0
version: 4.2.0(bufferutil@4.0.9)(utf-8-validate@6.0.5)
langchain:
specifier: ^0.3.11
version: 0.3.11(@langchain/core@0.3.27(openai@4.73.0(zod@3.24.1)))(@langchain/groq@0.1.3(@langchain/core@0.3.27(openai@4.73.0(zod@3.24.1))))(axios@1.7.9)(handlebars@4.7.8)(openai@4.73.0(zod@3.23.8))(typeorm@0.3.20(better-sqlite3@11.7.2)(ioredis@5.4.2)(pg@8.13.1)(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.7.3)))
langchain-core:
specifier: ^0.0.4
version: 0.0.4
mongoose:
specifier: ^8.9.4
version: 8.9.4(socks@2.8.3)
node-cache:
specifier: 5.1.2
version: 5.1.2
pumpdotfun-sdk:
specifier: 1.3.2
version: 1.3.2(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(rollup@4.30.1)(typescript@5.7.3)(utf-8-validate@6.0.5)
readline:
specifier: ^1.3.0
version: 1.3.0
rpc-websockets:
specifier: 7.5.1
version: 7.5.1
solana-agent-kit:
specifier: 1.3.8
version: 1.3.8(@noble/hashes@1.7.0)(@types/node@22.10.2)(arweave@1.15.5)(axios@1.7.9)(borsh@2.0.0)(buffer@6.0.3)(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(handlebars@4.7.8)(react@18.3.1)(sodium-native@3.4.1)(typeorm@0.3.20(better-sqlite3@11.7.2)(ioredis@5.4.2)(pg@8.13.1)(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.7.3)))(typescript@5.7.3)(utf-8-validate@6.0.5)
tough-cookie:
specifier: ^5.1.0
version: 5.1.0
tsup:
specifier: 8.3.5
version: 8.3.5(postcss@8.4.49)(tsx@4.19.2)(typescript@5.7.3)(yaml@2.7.0)
tsx:
specifier: ^4.19.2
version: 4.19.2
tsyringe:
specifier: ^4.8.0
version: 4.8.0
twitter-api-v2:
specifier: ^1.19.0
version: 1.19.0
typeorm:
specifier: 0.3.20
version: 0.3.20(better-sqlite3@11.7.2)(ioredis@5.4.2)(pg@8.13.1)(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.7.3))
typescript:
specifier: ^5.7.3
version: 5.7.3
undici:
specifier: 7.2.1
version: 7.2.1
utf-8-validate:
specifier: 6.0.5
version: 6.0.5
vitest:
specifier: 2.1.4
version: 2.1.4(@types/node@22.10.2)(jsdom@25.0.1(bufferutil@4.0.9)(canvas@2.11.2)(utf-8-validate@6.0.5))(terser@5.37.0)
whatwg-url:
specifier: 14.1.0
version: 14.1.0
winston:
specifier: 3.17.0
version: 3.17.0
winston-daily-rotate-file:
specifier: ^5.0.0
version: 5.0.0(winston@3.17.0)
ws:
specifier: ^8.18.0
version: 8.18.0(bufferutil@4.0.9)(utf-8-validate@6.0.5)
yargs:
specifier: 17.7.2
version: 17.7.2
yup:
specifier: ^0.32.11
version: 0.32.11
devDependencies:
'@rollup/plugin-commonjs':
specifier: 28.0.2
version: 28.0.2(rollup@4.30.1)
'@rollup/plugin-replace':
specifier: 6.0.2
version: 6.0.2(rollup@4.30.1)
'@rollup/plugin-typescript':
specifier: 12.1.2
version: 12.1.2(rollup@4.30.1)(tslib@2.8.1)(typescript@5.7.3)
'@types/amqplib':
specifier: ^0.10.6
version: 0.10.6
'@types/bn.js':
specifier: ^5.1.6
version: 5.1.6
'@types/cors':
specifier: ^2.8.17
version: 2.8.17
'@types/express':
specifier: ^5.0.0
version: 5.0.0
'@types/helmet':
specifier: 0.0.48
version: 0.0.48
'@types/ioredis':
specifier: ^4.28.10
version: 4.28.10
'@types/jest':
specifier: ^29.5.14
version: 29.5.14
'@types/jsonwebtoken':
specifier: ^9.0.7
version: 9.0.7
'@types/mongoose':
specifier: ^5.11.97
version: 5.11.97(socks@2.8.3)
'@types/natural':
specifier: ^5.1.5
version: 5.1.5
'@types/node':
specifier: 22.10.2
version: 22.10.2
js-sha256:
specifier: ^0.11.0
version: 0.11.0
nodemon:
specifier: ^3.1.9
version: 3.1.9
reflect-metadata:
specifier: 0.2.2
version: 0.2.2
rimraf:
specifier: 6.0.1
version: 6.0.1
rollup:
specifier: 4.30.1
version: 4.30.1
rollup-plugin-terser:
specifier: ^7.0.2
version: 7.0.2(rollup@4.30.1)
ts-node:
specifier: ^10.9.2
version: 10.9.2(@types/node@22.10.2)(typescript@5.7.3)
tsconfig-paths:
specifier: ^4.2.0
version: 4.2.0
packages:
'@0glabs/0g-ts-sdk@0.2.1':
resolution: {integrity: sha512-IJRD3D+5flNZIl32k/7D45yYvn9AjMeDdkhMr4Y/qo6nFE40HqYRaSlk6ZNI+MjaRzbDxMErrFzQcVkYH/DARg==}
peerDependencies:
ethers: 6.13.1
'@3land/listings-sdk@0.0.4':
resolution: {integrity: sha512-Ljq8R4e7y+wl4m8BGhiInFPCHEzHZZFz1qghnbc8B3bLEKXWM9+2gZOCAa84rdUKuLfzenEdeS2LclTKhdKTFQ==}
'@3land/listings-sdk@0.0.5':
resolution: {integrity: sha512-Q2VViKKgJoe6/JzTucPXuFk9WTGbKtHlNFAKKQDLcyWdcoXa4cUD2l5qrgXv0t9jlVjXFyyCVGpiBG4QWVgVjA==}
'@adraffy/ens-normalize@1.10.1':
resolution: {integrity: sha512-96Z2IP3mYmF1Xg2cDm8f1gWGf/HUVedQ3FMifV4kG/PQ4yEP51xDtRAEfhVNt5f/uzpNkZHwWQuUcu6D6K+Ekw==}
'@adraffy/ens-normalize@1.11.0':
resolution: {integrity: sha512-/3DDPKHqqIqxUULp8yP4zODUY1i+2xvVWsv8A79xGWdCAG+8sb0hRh0Rk2QyOJUnnbyPUAZYcpBuRe3nS2OIUg==}
'@ai-sdk/anthropic@0.0.56':
resolution: {integrity: sha512-FC/XbeFANFp8rHH+zEZF34cvRu9T42rQxw9QnUzJ1LXTi1cWjxYOx2Zo4vfg0iofxxqgOe4fT94IdT2ERQ89bA==}
engines: {node: '>=18'}
peerDependencies:
zod: ^3.0.0
'@ai-sdk/google-vertex@0.0.43':
resolution: {integrity: sha512-lmZukH74m6MUl4fbyfz3T4qs5ukDUJ6YB5Dedtu+aK+Mdp05k9qTHAXxWiB8i/VdZqWlS+DEo/+b7pOPX0V7wA==}
engines: {node: '>=18'}
peerDependencies:
'@google-cloud/vertexai': ^1.6.0
zod: ^3.0.0
'@ai-sdk/google@0.0.55':
resolution: {integrity: sha512-dvEMS8Ex2H0OeuFBiT4Q1Kfrxi1ckjooy/PazNLjRQ3w9o9VQq4O24eMQGCuW1Z47qgMdXjhDzsH6qD0HOX6Cw==}
engines: {node: '>=18'}
peerDependencies:
zod: ^3.0.0
'@ai-sdk/groq@0.0.3':
resolution: {integrity: sha512-Iyj2p7/M0TVhoPrQfSiwfvjTpZFfc17a6qY/2s22+VgpT0yyfai9dVyLbfUAdnNlpGGrjDpxPHqK1L03r4KlyA==}
engines: {node: '>=18'}
peerDependencies:
zod: ^3.0.0
'@ai-sdk/openai@1.0.18':
resolution: {integrity: sha512-bienqSVHbUqUcskm2FTIf2X+c481e85EASFfa78YogLqctZQtqPFKJuG5E7i59664Y5G91+LkzIh+1agS13BlA==}
engines: {node: '>=18'}
peerDependencies:
zod: ^3.0.0
'@ai-sdk/openai@1.0.5':
resolution: {integrity: sha512-JDCPBJQx9o3LgboBPaA55v+9EZ7Vm/ozy0+J5DIr2jJF8WETjeCnigdxixyzEy/Od4wX871jOTSuGffwNIi0kA==}
engines: {node: '>=18'}
peerDependencies:
zod: ^3.0.0
'@ai-sdk/provider-utils@1.0.20':
resolution: {integrity: sha512-ngg/RGpnA00eNOWEtXHenpX1MsM2QshQh4QJFjUfwcqHpM5kTfG7je7Rc3HcEDP+OkRVv2GF+X4fC1Vfcnl8Ow==}
engines: {node: '>=18'}
peerDependencies:
zod: ^3.0.0
peerDependenciesMeta:
zod:
optional: true
'@ai-sdk/provider-utils@1.0.22':
resolution: {integrity: sha512-YHK2rpj++wnLVc9vPGzGFP3Pjeld2MwhKinetA0zKXOoHAT/Jit5O8kZsxcSlJPu9wvcGT1UGZEjZrtO7PfFOQ==}
engines: {node: '>=18'}
peerDependencies:
zod: ^3.0.0
peerDependenciesMeta:
zod:
optional: true
'@ai-sdk/provider-utils@2.0.2':
resolution: {integrity: sha512-IAvhKhdlXqiSmvx/D4uNlFYCl8dWT+M9K+IuEcSgnE2Aj27GWu8sDIpAf4r4Voc+wOUkOECVKQhFo8g9pozdjA==}
engines: {node: '>=18'}
peerDependencies:
zod: ^3.0.0
peerDependenciesMeta:
zod:
optional: true
'@ai-sdk/provider-utils@2.0.7':
resolution: {integrity: sha512-4sfPlKEALHPXLmMFcPlYksst3sWBJXmCDZpIBJisRrmwGG6Nn3mq0N1Zu/nZaGcrWZoOY+HT2Wbxla1oTElYHQ==}
engines: {node: '>=18'}
peerDependencies:
zod: ^3.0.0
peerDependenciesMeta:
zod:
optional: true
'@ai-sdk/provider@0.0.24':
resolution: {integrity: sha512-XMsNGJdGO+L0cxhhegtqZ8+T6nn4EoShS819OvCgI2kLbYTIvk0GWFGD0AXJmxkxs3DrpsJxKAFukFR7bvTkgQ==}
engines: {node: '>=18'}
'@ai-sdk/provider@0.0.26':
resolution: {integrity: sha512-dQkfBDs2lTYpKM8389oopPdQgIU007GQyCbuPPrV+K6MtSII3HBfE0stUIMXUb44L+LK1t6GXPP7wjSzjO6uKg==}
engines: {node: '>=18'}
'@ai-sdk/provider@1.0.1':
resolution: {integrity: sha512-mV+3iNDkzUsZ0pR2jG0sVzU6xtQY5DtSCBy3JFycLp6PwjyLw/iodfL3MwdmMCRJWgs3dadcHejRnMvF9nGTBg==}
engines: {node: '>=18'}
'@ai-sdk/provider@1.0.4':
resolution: {integrity: sha512-lJi5zwDosvvZER3e/pB8lj1MN3o3S7zJliQq56BRr4e9V3fcRyFtwP0JRxaRS5vHYX3OJ154VezVoQNrk0eaKw==}
engines: {node: '>=18'}
'@ai-sdk/react@0.0.70':
resolution: {integrity: sha512-GnwbtjW4/4z7MleLiW+TOZC2M29eCg1tOUpuEiYFMmFNZK8mkrqM0PFZMo6UsYeUYMWqEOOcPOU9OQVJMJh7IQ==}
engines: {node: '>=18'}
peerDependencies:
react: ^18 || ^19 || ^19.0.0-rc
zod: ^3.0.0
peerDependenciesMeta:
react:
optional: true
zod:
optional: true
'@ai-sdk/react@1.0.10':
resolution: {integrity: sha512-A3i0Y93xssldeFdcbHPCiK+v9UGisXZUt5ey4I9x2bGktP4eEAXJz4O26EHz5VbolmOd+81kSxm9BCvithzguQ==}
engines: {node: '>=18'}
peerDependencies:
react: ^18 || ^19 || ^19.0.0-rc
zod: ^3.0.0
peerDependenciesMeta:
react:
optional: true
zod:
optional: true
'@ai-sdk/solid@0.0.54':
resolution: {integrity: sha512-96KWTVK+opdFeRubqrgaJXoNiDP89gNxFRWUp0PJOotZW816AbhUf4EnDjBjXTLjXL1n0h8tGSE9sZsRkj9wQQ==}
engines: {node: '>=18'}
peerDependencies:
solid-js: ^1.7.7
peerDependenciesMeta:
solid-js:
optional: true
'@ai-sdk/svelte@0.0.57':
resolution: {integrity: sha512-SyF9ItIR9ALP9yDNAD+2/5Vl1IT6kchgyDH8xkmhysfJI6WrvJbtO1wdQ0nylvPLcsPoYu+cAlz1krU4lFHcYw==}
engines: {node: '>=18'}
peerDependencies:
svelte: ^3.0.0 || ^4.0.0 || ^5.0.0
peerDependenciesMeta:
svelte:
optional: true
'@ai-sdk/ui-utils@0.0.50':
resolution: {integrity: sha512-Z5QYJVW+5XpSaJ4jYCCAVG7zIAuKOOdikhgpksneNmKvx61ACFaf98pmOd+xnjahl0pIlc/QIe6O4yVaJ1sEaw==}
engines: {node: '>=18'}
peerDependencies:
zod: ^3.0.0
peerDependenciesMeta:
zod:
optional: true
'@ai-sdk/ui-utils@1.0.9':
resolution: {integrity: sha512-ULJ+TTCVk+iW5asdKjG33vEfMmalaE9rJOlddVE5t6729Fjow1a1COXRTwE5y1r1qU2Rt+YiXQcTTA5ovx0SMw==}
engines: {node: '>=18'}
peerDependencies:
zod: ^3.0.0
peerDependenciesMeta:
zod:
optional: true
'@ai-sdk/vue@0.0.59':
resolution: {integrity: sha512-+ofYlnqdc8c4F6tM0IKF0+7NagZRAiqBJpGDJ+6EYhDW8FHLUP/JFBgu32SjxSxC6IKFZxEnl68ZoP/Z38EMlw==}
engines: {node: '>=18'}
peerDependencies:
vue: ^3.3.4
peerDependenciesMeta:
vue:
optional: true
'@ai16z/adapter-postgres@0.1.6':
resolution: {integrity: sha512-4f+lXL0wPr+scTk13ZQIr3HENALBHNIAXp1hSBc4AhpO89RBUPm+vBZipCvmkgbREuKnirYryJWs3xPIIkQGyw==}
'@ai16z/adapter-sqlite@0.1.6':
resolution: {integrity: sha512-dMYwCcnJDMTIFJgdEYsK7mW9Z2EOZwLeNDGMxbsA4fl4Ss5euz6PbsYbmJcJaDVEgKxja1wdgy7TyaCpb3h1cA==}
peerDependencies:
whatwg-url: 7.1.0
'@ai16z/client-direct@0.1.6-alpha.4':
resolution: {integrity: sha512-AJ8LZRTmf0fgc80E06IxfEQiKsdqsKy+hH/YlY0fbO87bGaNtqhwZJWXEGf4+LQasGm/x9OClyJUhbIfmZUHLA==}
peerDependencies:
whatwg-url: 7.1.0
'@ai16z/client-discord@0.1.6':
resolution: {integrity: sha512-ISEE0445AagLu88Y7AcUfNGjkl61uZ0wvigKhvoWEXaeoGY0t+GKpck0LDl7A72/B8L27FQSUIAGfmuZ4oVFNA==}
peerDependencies:
whatwg-url: 7.1.0
'@ai16z/eliza@0.1.6':
resolution: {integrity: sha512-3FF9pbNCUTYVRLe1rAcImXMIfmyVQbJTD9BC1Ii88QkdqdWNJ6a7Ab0RTjCgDJwQ/dkrTAbNPu+BK/uqwH7Qwg==}
'@ai16z/eliza@0.1.6-alpha.4':
resolution: {integrity: sha512-hr7EPzw57Dqx98WfDSPSZNJ9Ve9emWnk+d0/3Mq6G32Rzs2yxrNWYM2Ye3tOWxfAo9Gqk+Gzg1PD1VlzKzDdMg==}
'@ai16z/plugin-0g@0.1.6-alpha.4':
resolution: {integrity: sha512-XLR5wMHCEWUYp1EpmD4v7DZFigwHM8pYT/xksqWJwPFxCvzUvXhICSLAAUBMhasu/VmucA0UD/DxeMxQSY0e0A==}
'@ai16z/plugin-image-generation@0.1.6-alpha.4':
resolution: {integrity: sha512-J/sccZ0m+Q20IJI0pe7bQ1bO44yDJPtHNfhfMOf0dfShYvvCsHgUi2DyAuYRkKtb61yKBTsUIsiKS3E79FA4Lg==}
peerDependencies:
whatwg-url: 7.1.0
'@ai16z/plugin-node@0.1.6':
resolution: {integrity: sha512-oXsgqziv5z1Mb6P9QYr8K0sdzCTfUt/wJnMEGNiY0dU7N1sxKkUsQjdXnm5FGG/77Yso3w6h2E78gHB59Bh5CQ==}
peerDependencies:
onnxruntime-node: 1.20.1
whatwg-url: 7.1.0
'@ai16z/plugin-solana@0.1.6':
resolution: {integrity: sha512-e/bUTFfxTJckqYulooUGoKZXAJqhD+Z+xd4yWUz75ldgNLkYd4ha5zJBmtdGb2axOBvzo9Y+La5nWImNDNLKXg==}
peerDependencies:
form-data: 4.0.1
whatwg-url: 7.1.0
'@ai16z/plugin-starknet@0.1.6':
resolution: {integrity: sha512-DEL7USshB4nZLrgw9AfkAIF/yUTtmnFzb/5514fJRwh01bLG9deybVfDtDLKy5EHDolo4Ppj5bBt3WkjrilF1w==}
peerDependencies:
whatwg-url: 7.1.0
'@ai16z/plugin-tee@0.1.6':
resolution: {integrity: sha512-ClnOmZbRkhCg+p+25GG0zTD7aFkAnLINncz/quaX2byHYOBk9Vj98frR3pPsi3TVCWiSma6YGZYCKPtc2uxqZQ==}
peerDependencies:
whatwg-url: 7.1.0
'@ai16z/plugin-trustdb@0.1.6':
resolution: {integrity: sha512-Y3nGj9k0KwvjZ6LfAE3FuLs1L5GIGXOeNe/XIpA3chJkGG3Ztjo+yMlu0yT9mCamAoLLJlyOwDJ2TEOaczrZsA==}
peerDependencies:
whatwg-url: 7.1.0
'@ampproject/remapping@2.3.0':
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
'@anthropic-ai/sdk@0.27.3':
resolution: {integrity: sha512-IjLt0gd3L4jlOfilxVXTifn42FnVffMgDC04RJK1KDZpmkBWLv0XC92MVVmkxrFZNS/7l3xWgP/I3nqtX1sQHw==}
'@anthropic-ai/sdk@0.30.1':
resolution: {integrity: sha512-nuKvp7wOIz6BFei8WrTdhmSsx5mwnArYyJgh4+vYu3V4J0Ltb8Xm3odPm51n1aSI0XxNCrDl7O88cxCtUdAkaw==}
'@anush008/tokenizers-darwin-universal@0.0.0':
resolution: {integrity: sha512-SACpWEooTjFX89dFKRVUhivMxxcZRtA3nJGVepdLyrwTkQ1TZQ8581B5JoXp0TcTMHfgnDaagifvVoBiFEdNCQ==}
engines: {node: '>= 10'}
os: [darwin]
'@anush008/tokenizers-linux-x64-gnu@0.0.0':
resolution: {integrity: sha512-TLjByOPWUEq51L3EJkS+slyH57HKJ7lAz/aBtEt7TIPq4QsE2owOPGovByOLIq1x5Wgh9b+a4q2JasrEFSDDhg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
'@anush008/tokenizers-win32-x64-msvc@0.0.0':
resolution: {integrity: sha512-/5kP0G96+Cr6947F0ZetXnmL31YCaN15dbNbh2NHg7TXXRwfqk95+JtPP5Q7v4jbR2xxAmuseBqB4H/V7zKWuw==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
'@anush008/tokenizers@0.0.0':
resolution: {integrity: sha512-IQD9wkVReKAhsEAbDjh/0KrBGTEXelqZLpOBRDaIRvlzZ9sjmUP+gKbpvzyJnei2JHQiE8JAgj7YcNloINbGBw==}
engines: {node: '>= 10'}
'@aptos-labs/aptos-cli@1.0.2':
resolution: {integrity: sha512-PYPsd0Kk3ynkxNfe3S4fanI3DiUICCoh4ibQderbvjPFL5A0oK6F4lPEO2t0MDsQySTk2t4vh99Xjy6Bd9y+aQ==}
hasBin: true
'@aptos-labs/aptos-client@0.1.1':
resolution: {integrity: sha512-kJsoy4fAPTOhzVr7Vwq8s/AUg6BQiJDa7WOqRzev4zsuIS3+JCuIZ6vUd7UBsjnxtmguJJulMRs9qWCzVBt2XA==}
engines: {node: '>=15.10.0'}
'@aptos-labs/ts-sdk@1.33.1':
resolution: {integrity: sha512-d6nWtUI//fyEN8DeLjm3+ro87Ad6+IKwR9pCqfrs/Azahso1xR1Llxd/O6fj/m1DDsuDj/HAsCsy5TC/aKD6Eg==}
engines: {node: '>=11.0.0'}
'@asamuzakjp/css-color@2.8.2':
resolution: {integrity: sha512-RtWv9jFN2/bLExuZgFFZ0I3pWWeezAHGgrmjqGGWclATl1aDe3yhCUaI0Ilkp6OCk9zX7+FjvDasEX8Q9Rxc5w==}
'@avnu/avnu-sdk@2.1.1':
resolution: {integrity: sha512-y/r/pVT2pU33fGHNVE7A5UIAqQhjEXYQhUh7EodY1s5H7mhRd5U8zHOtI5z6vmpuSnUv0hSvOmmgz8HTuwZ7ew==}
engines: {node: '>=18'}
peerDependencies:
ethers: ^6.11.1
qs: ^6.12.0
starknet: ^6.6.0
'@aws-crypto/crc32@5.2.0':
resolution: {integrity: sha512-nLbCWqQNgUiwwtFsen1AdzAtvuLRsQS8rYgMuxCrdKf9kOssamGLuPwyTY9wyYblNr9+1XM8v6zoDTPPSIeANg==}
engines: {node: '>=16.0.0'}
'@aws-crypto/crc32c@5.2.0':
resolution: {integrity: sha512-+iWb8qaHLYKrNvGRbiYRHSdKRWhto5XlZUEBwDjYNf+ly5SVYG6zEoYIdxvf5R3zyeP16w4PLBn3rH1xc74Rag==}
'@aws-crypto/sha1-browser@5.2.0':
resolution: {integrity: sha512-OH6lveCFfcDjX4dbAvCFSYUjJZjDr/3XJ3xHtjn3Oj5b9RjojQo8npoLeA/bNwkOkrSQ0wgrHzXk4tDRxGKJeg==}
'@aws-crypto/sha256-browser@5.2.0':
resolution: {integrity: sha512-AXfN/lGotSQwu6HNcEsIASo7kWXZ5HYWvfOmSNKDsEqC4OashTp8alTmaz+F7TC2L083SFv5RdB+qU3Vs1kZqw==}
'@aws-crypto/sha256-js@5.2.0':
resolution: {integrity: sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA==}
engines: {node: '>=16.0.0'}
'@aws-crypto/supports-web-crypto@5.2.0':
resolution: {integrity: sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg==}
'@aws-crypto/util@5.2.0':
resolution: {integrity: sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ==}
'@aws-sdk/client-polly@3.726.1':
resolution: {integrity: sha512-Q4ZoSmCXskIQ3T5AdO0OyH3vCeoKCed9AjqNIZ5Bxo7T1aBLaIb0VmjKOEubsYrfl+0Ot++FRmy7G45UUHSs4Q==}
engines: {node: '>=18.0.0'}
'@aws-sdk/client-s3@3.726.1':
resolution: {integrity: sha512-UpOGcob87DiuS2d3fW6vDZg94g57mNiOSkzvR/6GOdvBSlUgk8LLwVzGASB71FdKMl1EGEr4MeD5uKH9JsG+dw==}
engines: {node: '>=18.0.0'}
'@aws-sdk/client-sso-oidc@3.726.0':
resolution: {integrity: sha512-5JzTX9jwev7+y2Jkzjz0pd1wobB5JQfPOQF3N2DrJ5Pao0/k6uRYwE4NqB0p0HlGrMTDm7xNq7OSPPIPG575Jw==}
engines: {node: '>=18.0.0'}
peerDependencies:
'@aws-sdk/client-sts': ^3.726.0
'@aws-sdk/client-sso@3.726.0':
resolution: {integrity: sha512-NM5pjv2qglEc4XN3nnDqtqGsSGv1k5YTmzDo3W3pObItHmpS8grSeNfX9zSH+aVl0Q8hE4ZIgvTPNZ+GzwVlqg==}
engines: {node: '>=18.0.0'}
'@aws-sdk/client-sts@3.726.1':
resolution: {integrity: sha512-qh9Q9Vu1hrM/wMBOBIaskwnE4GTFaZu26Q6WHwyWNfj7J8a40vBxpW16c2vYXHLBtwRKM1be8uRLkmDwghpiNw==}
engines: {node: '>=18.0.0'}
'@aws-sdk/client-transcribe-streaming@3.726.1':
resolution: {integrity: sha512-A1FtcvFi0SnY193SEnhHVEGB8xaMKHJdioE6/TcW0oka2ezvfZkl6EsmKEP30vLov+NRRzzoHUjitdiYKOpVzg==}
engines: {node: '>=18.0.0'}
'@aws-sdk/core@3.723.0':
resolution: {integrity: sha512-UraXNmvqj3vScSsTkjMwQkhei30BhXlW5WxX6JacMKVtl95c7z0qOXquTWeTalYkFfulfdirUhvSZrl+hcyqTw==}
engines: {node: '>=18.0.0'}
'@aws-sdk/credential-provider-env@3.723.0':
resolution: {integrity: sha512-OuH2yULYUHTVDUotBoP/9AEUIJPn81GQ/YBtZLoo2QyezRJ2QiO/1epVtbJlhNZRwXrToLEDmQGA2QfC8c7pbA==}
engines: {node: '>=18.0.0'}
'@aws-sdk/credential-provider-http@3.723.0':
resolution: {integrity: sha512-DTsKC6xo/kz/ZSs1IcdbQMTgiYbpGTGEd83kngFc1bzmw7AmK92DBZKNZpumf8R/UfSpTcj9zzUUmrWz1kD0eQ==}
engines: {node: '>=18.0.0'}
'@aws-sdk/credential-provider-ini@3.726.0':
resolution: {integrity: sha512-seTtcKL2+gZX6yK1QRPr5mDJIBOatrpoyrO8D5b8plYtV/PDbDW3mtDJSWFHet29G61ZmlNElyXRqQCXn9WX+A==}
engines: {node: '>=18.0.0'}
peerDependencies:
'@aws-sdk/client-sts': ^3.726.0
'@aws-sdk/credential-provider-node@3.726.0':
resolution: {integrity: sha512-jjsewBcw/uLi24x8JbnuDjJad4VA9ROCE94uVRbEnGmUEsds75FWOKp3fWZLQlmjLtzsIbJOZLALkZP86liPaw==}
engines: {node: '>=18.0.0'}
'@aws-sdk/credential-provider-process@3.723.0':
resolution: {integrity: sha512-fgupvUjz1+jeoCBA7GMv0L6xEk92IN6VdF4YcFhsgRHlHvNgm7ayaoKQg7pz2JAAhG/3jPX6fp0ASNy+xOhmPA==}
engines: {node: '>=18.0.0'}
'@aws-sdk/credential-provider-sso@3.726.0':
resolution: {integrity: sha512-WxkN76WeB08j2yw7jUH9yCMPxmT9eBFd9ZA/aACG7yzOIlsz7gvG3P2FQ0tVg25GHM0E4PdU3p/ByTOawzcOAg==}
engines: {node: '>=18.0.0'}
'@aws-sdk/credential-provider-web-identity@3.723.0':
resolution: {integrity: sha512-tl7pojbFbr3qLcOE6xWaNCf1zEfZrIdSJtOPeSXfV/thFMMAvIjgf3YN6Zo1a6cxGee8zrV/C8PgOH33n+Ev/A==}
engines: {node: '>=18.0.0'}
peerDependencies:
'@aws-sdk/client-sts': ^3.723.0
'@aws-sdk/eventstream-handler-node@3.723.0':
resolution: {integrity: sha512-CekxhxMH1GQe/kuoZsNFE8eonvmHVifyDK1MWfePyEp82/XvqPFWSnKlhT+SqoC6JfsMLmhsyCP/qqr9Du0SbQ==}
engines: {node: '>=18.0.0'}
'@aws-sdk/middleware-bucket-endpoint@3.726.0':
resolution: {integrity: sha512-vpaP80rZqwu0C3ELayIcRIW84/nd1tadeoqllT+N9TDshuEvq4UJ+w47OBHB7RkHFJoc79lXXNYle0fdQdaE/A==}
engines: {node: '>=18.0.0'}
'@aws-sdk/middleware-eventstream@3.723.0':
resolution: {integrity: sha512-cL50YsgYSlAdAZf02iNwdHJuJHlgPyv/sePpt2PW5ZYSiE6A9/vqqptjDrUmUbpEw+ixmLD215OnyrnHN/MhEg==}
engines: {node: '>=18.0.0'}
'@aws-sdk/middleware-expect-continue@3.723.0':
resolution: {integrity: sha512-w/O0EkIzkiqvGu7U8Ke7tue0V0HYM5dZQrz6nVU+R8T2LddWJ+njEIHU4Wh8aHPLQXdZA5NQumv0xLPdEutykw==}
engines: {node: '>=18.0.0'}
'@aws-sdk/middleware-flexible-checksums@3.723.0':
resolution: {integrity: sha512-JY76mrUCLa0FHeMZp8X9+KK6uEuZaRZaQrlgq6zkXX/3udukH0T3YdFC+Y9uw5ddbiwZ5+KwgmlhnPpiXKfP4g==}
engines: {node: '>=18.0.0'}
'@aws-sdk/middleware-host-header@3.723.0':
resolution: {integrity: sha512-LLVzLvk299pd7v4jN9yOSaWDZDfH0SnBPb6q+FDPaOCMGBY8kuwQso7e/ozIKSmZHRMGO3IZrflasHM+rI+2YQ==}
engines: {node: '>=18.0.0'}
'@aws-sdk/middleware-location-constraint@3.723.0':
resolution: {integrity: sha512-inp9tyrdRWjGOMu1rzli8i2gTo0P4X6L7nNRXNTKfyPNZcBimZ4H0H1B671JofSI5isaklVy5r4pvv2VjjLSHw==}
engines: {node: '>=18.0.0'}
'@aws-sdk/middleware-logger@3.723.0':
resolution: {integrity: sha512-chASQfDG5NJ8s5smydOEnNK7N0gDMyuPbx7dYYcm1t/PKtnVfvWF+DHCTrRC2Ej76gLJVCVizlAJKM8v8Kg3cg==}
engines: {node: '>=18.0.0'}
'@aws-sdk/middleware-recursion-detection@3.723.0':
resolution: {integrity: sha512-7usZMtoynT9/jxL/rkuDOFQ0C2mhXl4yCm67Rg7GNTstl67u7w5WN1aIRImMeztaKlw8ExjoTyo6WTs1Kceh7A==}
engines: {node: '>=18.0.0'}
'@aws-sdk/middleware-sdk-s3@3.723.0':
resolution: {integrity: sha512-wfjOvNJVp8LDWhq4wO5jtSMb8Vgf4tNlR7QTEQfoYc6AGU3WlK5xyUQcpfcpwytEhQTN9u0cJLQpSyXDO+qSCw==}
engines: {node: '>=18.0.0'}
'@aws-sdk/middleware-sdk-transcribe-streaming@3.723.0':
resolution: {integrity: sha512-0j1iix2wthdNTGtG1oFBH3vqhBeIpw+9IRiPA0xXE8xOsqhLBHVbLtqC8/7eMdDWJHNVQdOLlMlGAbcFo6/4Jw==}
engines: {node: '>=18.0.0'}
'@aws-sdk/middleware-ssec@3.723.0':
resolution: {integrity: sha512-Bs+8RAeSMik6ZYCGSDJzJieGsDDh2fRbh1HQG94T8kpwBXVxMYihm6e9Xp2cyl+w9fyyCnh0IdCKChP/DvrdhA==}
engines: {node: '>=18.0.0'}
'@aws-sdk/middleware-user-agent@3.726.0':
resolution: {integrity: sha512-hZvzuE5S0JmFie1r68K2wQvJbzyxJFdzltj9skgnnwdvLe8F/tz7MqLkm28uV0m4jeHk0LpiBo6eZaPkQiwsZQ==}
engines: {node: '>=18.0.0'}
'@aws-sdk/middleware-websocket@3.723.0':
resolution: {integrity: sha512-dmp1miRv3baZgRKRlgsfpghUMFx1bHDVPW39caKVVOQLxMWtDt8a6JKGnYm19ew2JmSe+p9h/khdq073bPFslw==}
engines: {node: '>= 14.0.0'}
'@aws-sdk/region-config-resolver@3.723.0':
resolution: {integrity: sha512-tGF/Cvch3uQjZIj34LY2mg8M2Dr4kYG8VU8Yd0dFnB1ybOEOveIK/9ypUo9ycZpB9oO6q01KRe5ijBaxNueUQg==}
engines: {node: '>=18.0.0'}
'@aws-sdk/s3-request-presigner@3.726.1':
resolution: {integrity: sha512-IoM/u1gaZiSHEZkkf+Hn6MvCFUtLJgJysApW6NFbM2GYt4hqGLX5jhbjo5KVxC3wFfAhAwK1deSOM0FriBrKrg==}
engines: {node: '>=18.0.0'}
'@aws-sdk/signature-v4-multi-region@3.723.0':
resolution: {integrity: sha512-lJlVAa5Sl589qO8lwMLVUtnlF1Q7I+6k1Iomv2goY9d1bRl4q2N5Pit2qJVr2AMW0sceQXeh23i2a/CKOqVAdg==}
engines: {node: '>=18.0.0'}
'@aws-sdk/token-providers@3.723.0':
resolution: {integrity: sha512-hniWi1x4JHVwKElANh9afKIMUhAutHVBRD8zo6usr0PAoj+Waf220+1ULS74GXtLXAPCiNXl5Og+PHA7xT8ElQ==}
engines: {node: '>=18.0.0'}
peerDependencies:
'@aws-sdk/client-sso-oidc': ^3.723.0
'@aws-sdk/types@3.723.0':
resolution: {integrity: sha512-LmK3kwiMZG1y5g3LGihT9mNkeNOmwEyPk6HGcJqh0wOSV4QpWoKu2epyKE4MLQNUUlz2kOVbVbOrwmI6ZcteuA==}
engines: {node: '>=18.0.0'}
'@aws-sdk/util-arn-parser@3.723.0':
resolution: {integrity: sha512-ZhEfvUwNliOQROcAk34WJWVYTlTa4694kSVhDSjW6lE1bMataPnIN8A0ycukEzBXmd8ZSoBcQLn6lKGl7XIJ5w==}
engines: {node: '>=18.0.0'}
'@aws-sdk/util-endpoints@3.726.0':
resolution: {integrity: sha512-sLd30ASsPMoPn3XBK50oe/bkpJ4N8Bpb7SbhoxcY3Lk+fSASaWxbbXE81nbvCnkxrZCvkPOiDHzJCp1E2im71A==}
engines: {node: '>=18.0.0'}
'@aws-sdk/util-format-url@3.723.0':
resolution: {integrity: sha512-70+xUrdcnencPlCdV9XkRqmgj0vLDb8vm4mcEsgabg5QQ3S80KM0GEuhBAIGMkBWwNQTzCgQy2s7xOUlJPbu+g==}
engines: {node: '>=18.0.0'}
'@aws-sdk/util-locate-window@3.723.0':
resolution: {integrity: sha512-Yf2CS10BqK688DRsrKI/EO6B8ff5J86NXe4C+VCysK7UOgN0l1zOTeTukZ3H8Q9tYYX3oaF1961o8vRkFm7Nmw==}
engines: {node: '>=18.0.0'}
'@aws-sdk/util-user-agent-browser@3.723.0':
resolution: {integrity: sha512-Wh9I6j2jLhNFq6fmXydIpqD1WyQLyTfSxjW9B+PXSnPyk3jtQW8AKQur7p97rO8LAUzVI0bv8kb3ZzDEVbquIg==}
'@aws-sdk/util-user-agent-node@3.726.0':
resolution: {integrity: sha512-iEj6KX9o6IQf23oziorveRqyzyclWai95oZHDJtYav3fvLJKStwSjygO4xSF7ycHcTYeCHSLO1FFOHgGVs4Viw==}
engines: {node: '>=18.0.0'}
peerDependencies:
aws-crt: '>=1.0.0'
peerDependenciesMeta:
aws-crt:
optional: true
'@aws-sdk/xml-builder@3.723.0':
resolution: {integrity: sha512-5xK2SqGU1mzzsOeemy7cy3fGKxR1sEpUs4pEiIjaT0OIvU+fZaDVUEYWOqsgns6wI90XZEQJlXtI8uAHX/do5Q==}
engines: {node: '>=18.0.0'}
'@babel/code-frame@7.26.2':
resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-string-parser@7.25.9':
resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-identifier@7.25.9':
resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
engines: {node: '>=6.9.0'}
'@babel/parser@7.26.5':
resolution: {integrity: sha512-SRJ4jYmXRqV1/Xc+TIVG84WjHBXKlxO9sHQnA2Pf12QQEAp1LOh6kDzNHXcUnbH1QI0FDoPPVOt+vyUDucxpaw==}
engines: {node: '>=6.0.0'}
hasBin: true
'@babel/runtime@7.26.0':
resolution: {integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==}
engines: {node: '>=6.9.0'}
'@babel/types@7.26.5':
resolution: {integrity: sha512-L6mZmwFDK6Cjh1nRCLXpa6no13ZIioJDz7mdkzHv399pThrTa/k0nUlNaenOeh2kWu/iaOQYElEpKPUswUa9Vg==}
engines: {node: '>=6.9.0'}
'@blockworks-foundation/mango-client@3.6.20':
resolution: {integrity: sha512-Te0i52KUyp5e8jQQZlIMsTy9fKIfefPHvkA8+NRGIH80kQcnJKKfzw3T1NxaDsc3KFMZwpuN3m4afDNpKTuF0g==}
'@bonfida/sns-records@0.0.1':
resolution: {integrity: sha512-i28w9+BMFufhhpmLQCNx1CKKXTsEn+5RT18VFpPqdGO3sqaYlnUWC1m3wDpOvlzGk498dljgRpRo5wmcsnuEMg==}
peerDependencies:
'@solana/web3.js': ^1.87.3
'@bonfida/spl-name-service@3.0.7':
resolution: {integrity: sha512-okOLXhy+fQoyQ/sZgMleO5RrIZfTkWEoHMxWgUqg6RP/MTBlrKxlhKC6ymKn4UUe0C5s3Nb8A+3Ams7vX0nMDg==}
peerDependencies:
'@solana/web3.js': ^1.87.3
'@browserbasehq/sdk@2.0.0':
resolution: {integrity: sha512-BdPlZyn0dpXlL70gNK4acpqWIRB+edo2z0/GalQdWghRq8iQjySd9fVIF3evKH1p2wCYekZJRK6tm29YfXB67g==}
'@browserbasehq/stagehand@1.8.0':
resolution: {integrity: sha512-ozwE2imQzWhi1pir6+L7bwIWKXQQ+tX7oVRbQkcmHkj+xdDJJDMYxNMBJyt8mnAvXHvsadUowAWSIEfcTrNEqA==}
peerDependencies:
'@playwright/test': ^1.42.1
deepmerge: ^4.3.1
dotenv: ^16.4.5
openai: ^4.62.1
zod: ^3.23.8
'@cfworker/json-schema@4.1.0':
resolution: {integrity: sha512-/vYKi/qMxwNsuIJ9WGWwM2rflY40ZenK3Kh4uR5vB9/Nz12Y7IUN/Xf4wDA7vzPfw0VNh3b/jz4+MjcVgARKJg==}
'@cks-systems/manifest-sdk@0.1.59':
resolution: {integrity: sha512-ZYTwwDxrC2u74kF30iWZPZPYXB9MtOydLd4/SQdlMXrb6bj1OooMtZxukSCu/Tlkp+KR26bEr6gYuErFHdUFjg==}
'@cliqz/adblocker-content@1.34.0':
resolution: {integrity: sha512-5LcV8UZv49RWwtpom9ve4TxJIFKd+bjT59tS/2Z2c22Qxx5CW1ncO/T+ybzk31z422XplQfd0ZE6gMGGKs3EMg==}
deprecated: This project has been renamed to @ghostery/adblocker-content. Install using @ghostery/adblocker-content instead
'@cliqz/adblocker-extended-selectors@1.34.0':
resolution: {integrity: sha512-lNrgdUPpsBWHjrwXy2+Z5nX/Gy5YAvNwFMLqkeMdjzrybwPIalJJN2e+YtkS1I6mVmOMNppF5cv692OAVoI74g==}
deprecated: This project has been renamed to @ghostery/adblocker-extended-selectors. Install using @ghostery/adblocker-extended-selectors instead
'@cliqz/adblocker-playwright@1.34.0':
resolution: {integrity: sha512-YMedgiz9LR5VW6ocKoC1P3cSsj1T9Ibinp14beXxvpydMmneX+fQB0Hq4bqWvuuL3CNl7fENMgiCDDMTgMLqww==}
deprecated: This project has been renamed to @ghostery/adblocker-playwright. Install using @ghostery/adblocker-playwright instead
peerDependencies:
playwright: ^1.x
'@cliqz/adblocker@1.34.0':
resolution: {integrity: sha512-d7TeUl5t+TOMJe7/CRYtf+x6hbd8N25DtH7guQTIjjr3AFVortxiAIgNejGvVqy0by4eNByw+oVil15oqxz2Eg==}
deprecated: This project has been renamed to @ghostery/adblocker. Install using @ghostery/adblocker instead
'@coinbase/cdp-agentkit-core@0.0.8':
resolution: {integrity: sha512-r7U2BrDVvGtVCUvsiV2wvtXlpdy15DWtafmjTg5iGOLJEyID9hOaREMAcs4nETL7rXXaRFtHFzdz6pY/831aSw==}
'@coinbase/coinbase-sdk@0.11.3':
resolution: {integrity: sha512-+Q2nttVnIorjlrZtwp3O4arKswxxItCb8hzneoyRiACgfDP/R+p0Pz9//HUyBkBjl/4nACVFEviMF5dyi3tzig==}
'@coinbase/twitter-langchain@0.0.6':
resolution: {integrity: sha512-RItjJfT66S/pqFBvFWpSHlMFcvbuQiTFUtHOv7y/JkifKgE5Cx4tWtopoihEXkt9QVw959eiE6n2xL7KmWMMRQ==}
peerDependencies:
'@coinbase/coinbase-sdk': ^0.11.0
'@colors/colors@1.6.0':
resolution: {integrity: sha512-Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA==}
engines: {node: '>=0.1.90'}
'@coral-xyz/anchor-errors@0.30.1':
resolution: {integrity: sha512-9Mkradf5yS5xiLWrl9WrpjqOrAV+/W2RQHDlbnAZBivoGpOs1ECjoDCkVk4aRG8ZdiFiB8zQEVlxf+8fKkmSfQ==}
engines: {node: '>=10'}
'@coral-xyz/anchor@0.26.0':
resolution: {integrity: sha512-PxRl+wu5YyptWiR9F2MBHOLLibm87Z4IMUBPreX+DYBtPM+xggvcPi0KAN7+kIL4IrIhXI8ma5V0MCXxSN1pHg==}
engines: {node: '>=11'}
'@coral-xyz/anchor@0.27.0':
resolution: {integrity: sha512-+P/vPdORawvg3A9Wj02iquxb4T0C5m4P6aZBVYysKl4Amk+r6aMPZkUhilBkD6E4Nuxnoajv3CFykUfkGE0n5g==}
engines: {node: '>=11'}
'@coral-xyz/anchor@0.28.0':
resolution: {integrity: sha512-kQ02Hv2ZqxtWP30WN1d4xxT4QqlOXYDxmEd3k/bbneqhV3X5QMO4LAtoUFs7otxyivOgoqam5Il5qx81FuI4vw==}
engines: {node: '>=11'}
'@coral-xyz/anchor@0.29.0':
resolution: {integrity: sha512-eny6QNG0WOwqV0zQ7cs/b1tIuzZGmP7U7EcH+ogt4Gdbl8HDmIYVMh/9aTmYZPaFWjtUaI8qSn73uYEXWfATdA==}
engines: {node: '>=11'}
'@coral-xyz/anchor@0.30.1':
resolution: {integrity: sha512-gDXFoF5oHgpriXAaLpxyWBHdCs8Awgf/gLHIo6crv7Aqm937CNdY+x+6hoj7QR5vaJV7MxWSQ0NGFzL3kPbWEQ==}
engines: {node: '>=11'}
'@coral-xyz/borsh@0.26.0':
resolution: {integrity: sha512-uCZ0xus0CszQPHYfWAqKS5swS1UxvePu83oOF+TWpUkedsNlg6p2p4azxZNSSqwXb9uXMFgxhuMBX9r3Xoi0vQ==}
engines: {node: '>=10'}
peerDependencies:
'@solana/web3.js': ^1.68.0
'@coral-xyz/borsh@0.27.0':
resolution: {integrity: sha512-tJKzhLukghTWPLy+n8K8iJKgBq1yLT/AxaNd10yJrX8mI56ao5+OFAKAqW/h0i79KCvb4BK0VGO5ECmmolFz9A==}
engines: {node: '>=10'}
peerDependencies:
'@solana/web3.js': ^1.68.0
'@coral-xyz/borsh@0.28.0':
resolution: {integrity: sha512-/u1VTzw7XooK7rqeD7JLUSwOyRSesPUk0U37BV9zK0axJc1q0nRbKFGFLYCQ16OtdOJTTwGfGp11Lx9B45bRCQ==}
engines: {node: '>=10'}
peerDependencies:
'@solana/web3.js': ^1.68.0
'@coral-xyz/borsh@0.29.0':
resolution: {integrity: sha512-s7VFVa3a0oqpkuRloWVPdCK7hMbAMY270geZOGfCnaqexrP5dTIpbEHL33req6IYPPJ0hYa71cdvJ1h6V55/oQ==}
engines: {node: '>=10'}
peerDependencies:
'@solana/web3.js': ^1.68.0
'@coral-xyz/borsh@0.30.1':
resolution: {integrity: sha512-aaxswpPrCFKl8vZTbxLssA2RvwX2zmKLlRCIktJOwW+VpVwYtXRtlWiIP+c2pPRKneiTiWCN2GEMSH9j1zTlWQ==}
engines: {node: '>=10'}
peerDependencies:
'@solana/web3.js': ^1.68.0
'@cremafinance/anchor-contrib@1.14.3':
resolution: {integrity: sha512-X57tRaZPWGpgCaYn0bXXDIQ6RzZedppwS5MhtGWm1EiM3flqi8RUxcY2VAsZikQ0inHvrDbEOY85hxPTx1VCtQ==}
peerDependencies:
'@project-serum/anchor': ^0.22 || ^0.23 || ^0.24
'@solana/web3.js': ^1.42
bn.js: ^4 || ^5
'@cremafinance/option-utils@1.14.3':
resolution: {integrity: sha512-XWFEGo3A2H8A2lR4OgBwpJtLKRlRy8pe7Il/Z1cfgVurShl8z2TQn9LWEUOhEt4Bwjq8xRnK/v4F8YCIX5X82Q==}
'@cremafinance/solana-contrib@1.14.5':
resolution: {integrity: sha512-4KIApAW+QmohmhPNV5CXFBDqqTxXGjWhVLWBLNUtys5sC1sZ8U2AGEvjj33rbgyxJuim+stdgXn1ziWwsdB9GQ==}
peerDependencies:
'@solana/web3.js': ^1.42
bn.js: ^4 || ^5
'@cspotcode/source-map-support@0.8.1':
resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==}
engines: {node: '>=12'}
'@csstools/color-helpers@5.0.1':
resolution: {integrity: sha512-MKtmkA0BX87PKaO1NFRTFH+UnkgnmySQOvNxJubsadusqPEC2aJ9MOQiMceZJJ6oitUl/i0L6u0M1IrmAOmgBA==}
engines: {node: '>=18'}
'@csstools/css-calc@2.1.1':
resolution: {integrity: sha512-rL7kaUnTkL9K+Cvo2pnCieqNpTKgQzy5f+N+5Iuko9HAoasP+xgprVh7KN/MaJVvVL1l0EzQq2MoqBHKSrDrag==}
engines: {node: '>=18'}
peerDependencies:
'@csstools/css-parser-algorithms': ^3.0.4
'@csstools/css-tokenizer': ^3.0.3
'@csstools/css-color-parser@3.0.7':
resolution: {integrity: sha512-nkMp2mTICw32uE5NN+EsJ4f5N+IGFeCFu4bGpiKgb2Pq/7J/MpyLBeQ5ry4KKtRFZaYs6sTmcMYrSRIyj5DFKA==}
engines: {node: '>=18'}
peerDependencies:
'@csstools/css-parser-algorithms': ^3.0.4
'@csstools/css-tokenizer': ^3.0.3
'@csstools/css-parser-algorithms@3.0.4':
resolution: {integrity: sha512-Up7rBoV77rv29d3uKHUIVubz1BTcgyUK72IvCQAbfbMv584xHcGKCKbWh7i8hPrRJ7qU4Y8IO3IY9m+iTB7P3A==}
engines: {node: '>=18'}
peerDependencies:
'@csstools/css-tokenizer': ^3.0.3
'@csstools/css-tokenizer@3.0.3':
resolution: {integrity: sha512-UJnjoFsmxfKUdNYdWgOB0mWUypuLvAfQPH1+pyvRJs6euowbFkFC6P13w1l8mJyi3vxYMxc9kld5jZEGRQs6bw==}
engines: {node: '>=18'}
'@dabh/diagnostics@2.0.3':
resolution: {integrity: sha512-hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA==}
'@derhuerst/http-basic@8.2.4':
resolution: {integrity: sha512-F9rL9k9Xjf5blCz8HsJRO4diy111cayL2vkY2XE4r4t3n0yPXVYy3KD3nJ1qbrSn9743UWSXH4IwuCa/HWlGFw==}
engines: {node: '>=6.0.0'}
'@discordjs/builders@1.10.0':
resolution: {integrity: sha512-ikVZsZP+3shmVJ5S1oM+7SveUCK3L9fTyfA8aJ7uD9cNQlTqF+3Irbk2Y22KXTb3C3RNUahRkSInClJMkHrINg==}
engines: {node: '>=16.11.0'}
'@discordjs/collection@1.5.3':
resolution: {integrity: sha512-SVb428OMd3WO1paV3rm6tSjM4wC+Kecaa1EUGX7vc6/fddvw/6lg90z4QtCqm21zvVe92vMMDt9+DkIvjXImQQ==}
engines: {node: '>=16.11.0'}
'@discordjs/collection@2.1.1':
resolution: {integrity: sha512-LiSusze9Tc7qF03sLCujF5iZp7K+vRNEDBZ86FT9aQAv3vxMLihUvKvpsCWiQ2DJq1tVckopKm1rxomgNUc9hg==}
engines: {node: '>=18'}