-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpnpm-lock.yaml
More file actions
10108 lines (7871 loc) · 355 KB
/
pnpm-lock.yaml
File metadata and controls
10108 lines (7871 loc) · 355 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
lockfileVersion: "9.0"
settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
importers:
.:
devDependencies:
"@nestjs/cli":
specifier: ^10.0.0
version: 10.4.9
"@nestjs/schematics":
specifier: ^10.0.0
version: 10.2.3(chokidar@3.6.0)(typescript@5.9.2)
"@nestjs/testing":
specifier: ^10.0.0
version: 10.4.20(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.2)(reflect-metadata@0.1.13)(rxjs@7.8.2))(@nestjs/core@10.4.20)(@nestjs/platform-express@10.4.20)
"@types/amqplib":
specifier: ^0.10.1
version: 0.10.7
"@types/express":
specifier: ^4.17.13
version: 4.17.23
husky:
specifier: ^8.0.1
version: 8.0.3
lerna:
specifier: ^8.2.3
version: 8.2.3(encoding@0.1.13)
oxlint:
specifier: ^1.12.0
version: 1.12.0
prettier:
specifier: ^3.0.0
version: 3.6.2
source-map-support:
specifier: ^0.5.20
version: 0.5.21
tslib:
specifier: ^2.8.1
version: 2.8.1
typescript:
specifier: ^5.0.0
version: 5.9.2
packages/core:
dependencies:
"@bnqkl/wallet-typings":
specifier: workspace:^
version: link:../typings
packages/sdk:
dependencies:
"@bfmeta/sign-util":
specifier: ^2.1.1
version: 2.1.1
"@bfmeta/transaction-maker-api":
specifier: ^1.1.11
version: 1.1.11
"@bfmeta/wallet":
specifier: ^2.0.2
version: 2.0.2(encoding@0.1.13)(typescript@5.9.2)(zod@3.25.76)
"@bfmeta/wallet-bcf":
specifier: ^2.0.2
version: 2.0.2
"@bfmeta/wallet-helpers":
specifier: ^2.0.2
version: 2.0.2
"@bnqkl/server-util":
specifier: ^2.0.0
version: 2.0.0(@nestjs/platform-express@10.4.20)(@nestjs/websockets@10.4.20)(encoding@0.1.13)(mysql2@2.3.3)(reflect-metadata@0.1.13)
"@bnqkl/util-node":
specifier: ^1.1.3
version: 1.1.3
"@bnqkl/wallet-typings":
specifier: workspace:^
version: link:../typings
typeorm:
specifier: ^0.3.26
version: 0.3.26(mysql2@2.3.3)(redis@4.6.7)(reflect-metadata@0.1.13)
packages/test:
dependencies:
"@bfmeta/sign-util":
specifier: ^2.1.1
version: 2.1.1
"@bnqkl/wallet":
specifier: workspace:^
version: link:../wallet
"@bnqkl/wallet-sdk":
specifier: workspace:^
version: link:../sdk
"@bnqkl/wallet-typings":
specifier: workspace:^
version: link:../typings
"@nestjs/common":
specifier: ^10.4.20
version: 10.4.20(class-transformer@0.5.1)(class-validator@0.14.2)(reflect-metadata@0.1.13)(rxjs@7.8.2)
"@nestjs/core":
specifier: ^10.4.20
version: 10.4.20(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.2)(reflect-metadata@0.1.13)(rxjs@7.8.2))(@nestjs/platform-express@10.4.20)(@nestjs/websockets@10.4.20)(encoding@0.1.13)(reflect-metadata@0.1.13)(rxjs@7.8.2)
"@nestjs/typeorm":
specifier: ^10.0.2
version: 10.0.2(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.2)(reflect-metadata@0.1.13)(rxjs@7.8.2))(@nestjs/core@10.4.20)(reflect-metadata@0.1.13)(rxjs@7.8.2)(typeorm@0.3.26(mysql2@2.3.3)(redis@4.6.7)(reflect-metadata@0.1.13))
bip39:
specifier: ^3.1.0
version: 3.1.0
ethers:
specifier: ^6.13.1
version: 6.15.0
js-sha256:
specifier: ^0.9.0
version: 0.9.0
packages/typings:
dependencies:
"@bfmeta/transaction-maker-typings":
specifier: ^1.1.0
version: 1.1.11
"@bfmeta/wallet-typings":
specifier: ^2.0.2
version: 2.0.2
packages/wallet:
dependencies:
"@bfmeta/wallet":
specifier: ^2.0.2
version: 2.0.2(encoding@0.1.13)(typescript@5.9.2)(zod@3.25.76)
"@bfmeta/wallet-bcf":
specifier: ^2.0.2
version: 2.0.2
"@bfmeta/wallet-bsc":
specifier: ^2.0.2
version: 2.0.2(encoding@0.1.13)(typescript@5.9.2)(zod@3.25.76)
"@bfmeta/wallet-eth":
specifier: ^2.0.2
version: 2.0.2(encoding@0.1.13)(typescript@5.9.2)(zod@3.25.76)
"@bfmeta/wallet-helpers":
specifier: ^2.0.2
version: 2.0.2
"@bfmeta/wallet-tron":
specifier: ^2.0.2
version: 2.0.2
"@bnqkl/ipc":
specifier: ^1.0.1
version: 1.0.1
"@bnqkl/server-util":
specifier: ^2.0.0
version: 2.0.0(@nestjs/platform-express@10.4.20)(@nestjs/websockets@10.4.20)(encoding@0.1.13)(mysql2@2.3.3)(reflect-metadata@0.1.13)
"@bnqkl/util-node":
specifier: ^1.1.3
version: 1.1.3
"@bnqkl/wallet-core":
specifier: workspace:^
version: link:../core
"@bnqkl/wallet-sdk":
specifier: workspace:^
version: link:../sdk
"@bnqkl/wallet-typings":
specifier: workspace:^
version: link:../typings
"@nestjs/common":
specifier: ^10.0.0
version: 10.4.20(class-transformer@0.5.1)(class-validator@0.14.2)(reflect-metadata@0.1.13)(rxjs@7.8.2)
"@nestjs/core":
specifier: ^10.0.0
version: 10.4.20(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.2)(reflect-metadata@0.1.13)(rxjs@7.8.2))(@nestjs/platform-express@10.4.20)(@nestjs/websockets@10.4.20)(encoding@0.1.13)(reflect-metadata@0.1.13)(rxjs@7.8.2)
"@nestjs/platform-express":
specifier: ^10.3.10
version: 10.4.20(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.2)(reflect-metadata@0.1.13)(rxjs@7.8.2))(@nestjs/core@10.4.20)
"@nestjs/platform-socket.io":
specifier: ^10.3.10
version: 10.4.20(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.2)(reflect-metadata@0.1.13)(rxjs@7.8.2))(@nestjs/websockets@10.4.20)(rxjs@7.8.2)
"@nestjs/swagger":
specifier: ^7.4.0
version: 7.4.2(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.2)(reflect-metadata@0.1.13)(rxjs@7.8.2))(@nestjs/core@10.4.20)(class-transformer@0.5.1)(class-validator@0.14.2)(reflect-metadata@0.1.13)
"@nestjs/throttler":
specifier: ^5.2.0
version: 5.2.0(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.2)(reflect-metadata@0.1.13)(rxjs@7.8.2))(@nestjs/core@10.4.20)(reflect-metadata@0.1.13)
"@nestjs/typeorm":
specifier: ^10.0.2
version: 10.0.2(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.2)(reflect-metadata@0.1.13)(rxjs@7.8.2))(@nestjs/core@10.4.20)(reflect-metadata@0.1.13)(rxjs@7.8.2)(typeorm@0.3.26(mysql2@2.3.3)(redis@4.6.7)(reflect-metadata@0.1.13))
alipay-sdk:
specifier: 4.11.0
version: 4.11.0
bip39:
specifier: ^3.1.0
version: 3.1.0
class-transformer:
specifier: ^0.5.1
version: 0.5.1
class-validator:
specifier: ^0.14.2
version: 0.14.2
helmet:
specifier: ^7.0.0
version: 7.2.0
js-sha256:
specifier: ^0.9.0
version: 0.9.0
mysql2:
specifier: ^2.3.3
version: 2.3.3
typeorm:
specifier: ^0.3.20
version: 0.3.26(mysql2@2.3.3)(redis@4.6.7)(reflect-metadata@0.1.13)
devDependencies:
"@types/multer":
specifier: ^1.4.8
version: 1.4.13
packages:
"@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== }
"@angular-devkit/core@17.3.11":
resolution: { integrity: sha512-vTNDYNsLIWpYk2I969LMQFH29GTsLzxNk/0cLw5q56ARF0v5sIWfHYwGTS88jdDqIpuuettcSczbxeA7EuAmqQ== }
engines: { node: ^18.13.0 || >=20.9.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: ">= 1.13.0" }
peerDependencies:
chokidar: ^3.5.2
peerDependenciesMeta:
chokidar:
optional: true
"@angular-devkit/schematics-cli@17.3.11":
resolution: { integrity: sha512-kcOMqp+PHAKkqRad7Zd7PbpqJ0LqLaNZdY1+k66lLWmkEBozgq8v4ASn/puPWf9Bo0HpCiK+EzLf0VHE8Z/y6Q== }
engines: { node: ^18.13.0 || >=20.9.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: ">= 1.13.0" }
hasBin: true
"@angular-devkit/schematics@17.3.11":
resolution: { integrity: sha512-I5wviiIqiFwar9Pdk30Lujk8FczEEc18i22A5c6Z9lbmhPQdTroDnEQdsfXjy404wPe8H62s0I15o4pmMGfTYQ== }
engines: { node: ^18.13.0 || >=20.9.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: ">= 1.13.0" }
"@babel/code-frame@7.27.1":
resolution: { integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg== }
engines: { node: ">=6.9.0" }
"@babel/helper-validator-identifier@7.27.1":
resolution: { integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow== }
engines: { node: ">=6.9.0" }
"@babel/runtime@7.28.3":
resolution: { integrity: sha512-9uIQ10o0WGdpP6GDhXcdOJPJuDgFtIDtN/9+ArJQ2NAfAmiuhTQdzkaTGR33v43GYS2UrSA0eX2pPPHoFVvpxA== }
engines: { node: ">=6.9.0" }
"@bfmeta/node-sdk@5.1.0":
resolution: { integrity: sha512-yUabwQxisQW4xlVNMz+sWFCBVOTOtiPcAR6KabLaF/xFlyXXV9o/SN7LmWoQbE76a9ndG97tJoaCUuZyZIRCrA== }
"@bfmeta/sign-util@2.1.1":
resolution: { integrity: sha512-naGE4U7gDcx2XeKjYvE9EOLnWhWg1Xae/IB3L83M2tRSsOdj0S036TD1kBd6HxvSva3DXSmW/g1xw0zLBi2yoQ== }
"@bfmeta/transaction-maker-api@1.1.11":
resolution: { integrity: sha512-+PLRcT2EfM3dtGoyZppdYUmeBcpenP9DPr4nzvlNPvmziZMP4/hmh0Jz/zYkj/93MVMIsNzYNMDe66kSNcQYyg== }
"@bfmeta/transaction-maker-typings@1.1.11":
resolution: { integrity: sha512-EglFjraKDfnP5H0dogkTAlGusvvtcnbV35bQmucSv6kCvJO8wGo0l4gwVWnpnesgMedq8I1SyQfmmPrBcnBIUA== }
"@bfmeta/wallet-bcf@2.0.2":
resolution: { integrity: sha512-wKPCp8p0EVSuW9/tqpmhci3gc5JwZG5D3jBOnW/4cAxoI5yOk6IhkxTUGxVEoI6c5j5WakAY42IDiV0XZzjPZg== }
"@bfmeta/wallet-bsc@2.0.2":
resolution: { integrity: sha512-LT2OgouXOdR68beCp2ibVk5vwyHref0XKRcZYY/pR0pfVkvGL8BPB7GR9mF1mKrn5zzGy6JJKAh4LV5Ghc58yw== }
"@bfmeta/wallet-eth@2.0.2":
resolution: { integrity: sha512-cPKw6YUkJDPl1eXcR25HsbUW8ECPE2MXIiTwH5XjaK+/Ih0YXZKAz/rkGzWv/0hgR8QAiqa0pHu6M+uR6EGJ4w== }
"@bfmeta/wallet-helpers@2.0.2":
resolution: { integrity: sha512-Thm3q1HtyO+7TK9+/nW+ao+Mh+dvxPRJJH7xaTQkQP+0Lx5ObTyYuas6FtqcITNI+tzrqI9LqrdSNUYlntrGzg== }
"@bfmeta/wallet-tron@2.0.2":
resolution: { integrity: sha512-t492y7spF6LOarbM+EqKbgK8NUtF8FZ1fYAWuVpzV6t/K+Ok2FstPeyE1D78ihrvhaiA/8Hfy9qoxNAGeNgEoQ== }
"@bfmeta/wallet-typings@2.0.2":
resolution: { integrity: sha512-4bsauGtJoEFqFvy4yJEDuAECXghbykm2g4uwiVKLjT+sbQI5jvKM7RZTJmFGSGgPtzq/tpkZpl+iZp46q6QJPw== }
"@bfmeta/wallet@2.0.2":
resolution: { integrity: sha512-lvZ2oxWr8tIAMJnL3Ay/l7Tc1LQGzfReE3PYxeZZwCI7cEh4E4WUuTITNmZVk6sQ72iYCSJRyMGpC0X1SdoWbQ== }
"@bnqkl/ipc-request@1.0.0":
resolution: { integrity: sha512-C1gaRkUPK9CBxLB4sxZt/wRwOtrijKL08x6Fxm6InJG6q1B+BGV77pO4A+FU9c+mQkSa0bIfSVaDAC81BLMslQ== }
"@bnqkl/ipc@1.0.1":
resolution: { integrity: sha512-1Mh1s3fdaXBokvn+to535c2huFed/nA5hioY8kPzv61SYDupH0bXOddWkCaTwNRfIJrdkGycbNtu4pOKoir3Rw== }
"@bnqkl/json-dry-factory@1.0.0":
resolution: { integrity: sha512-0bDlvG5M3QfbeilwbXsVGSe1TzrscOwfB+8c0itPmkpQTJYGGhOXULiMQAnm1GxdaMd9hdmmrHYus3AchWkmrg== }
"@bnqkl/server-util@2.0.0":
resolution: { integrity: sha512-ZYelRLtKv4fMChWee2yjy5XpLOr/tpwaSeE9G6AoV/9s8ETUIZykq09FniK+BvHXwZ352VUbgcXt+U/z+Fuazw== }
"@bnqkl/util-node@1.1.3":
resolution: { integrity: sha512-y2wR/kveWqgJEzdEf2vhhsPcl57wMTrqBHHpkR7BpvgRhObn2VYdk0mEI73Zp/gMzHPz3/Kvedn5SNC4w6P8iA== }
"@borewit/text-codec@0.1.1":
resolution: { integrity: sha512-5L/uBxmjaCIX5h8Z+uu+kA9BQLkc/Wl06UGR5ajNRxu+/XjonB5i8JpgFMrPj3LXTCPA0pv8yxUvbUi+QthGGA== }
"@colors/colors@1.5.0":
resolution: { integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ== }
engines: { node: ">=0.1.90" }
"@deno/shim-deno-test@0.4.0":
resolution: { integrity: sha512-oYWcD7CpERZy/TXMTM9Tgh1HD/POHlbY9WpzmAk+5H8DohcxG415Qws8yLGlim3EaKBT2v3lJv01x4G0BosnaQ== }
"@deno/shim-deno@0.16.1":
resolution: { integrity: sha512-s9v0kzF5bm/o9TgdwvsraHx6QNllYrXXmKzgOG2lh4LFXnVMr2gpjK/c/ve6EflQn1MqImcWmVD8HAv5ahuuZQ== }
"@emnapi/core@1.4.5":
resolution: { integrity: sha512-XsLw1dEOpkSX/WucdqUhPWP7hDxSvZiY+fsUC14h+FtQ2Ifni4znbBt8punRX+Uj2JG/uDb8nEHVKvrVlvdZ5Q== }
"@emnapi/runtime@1.4.5":
resolution: { integrity: sha512-++LApOtY0pEEz1zrd9vy1/zXVaVJJ/EbAF3u0fXIzPJEDtnITsBGbbK0EkM72amhl/R5b+5xx0Y/QhcVOpuulg== }
"@emnapi/wasi-threads@1.0.4":
resolution: { integrity: sha512-PJR+bOmMOPH8AtcTGAyYNiuJ3/Fcoj2XN/gBEWzDIKh254XO+mM9XoXHk5GNEhodxeMznbg7BlRojVbKN+gC6g== }
"@ethereumjs/common@3.2.0":
resolution: { integrity: sha512-pksvzI0VyLgmuEF2FA/JR/4/y6hcPq8OUail3/AvycBaW1d5VSauOZzqGvJ3RTmR4MU35lWE8KseKOsEhrFRBA== }
"@ethereumjs/rlp@4.0.1":
resolution: { integrity: sha512-tqsQiBQDQdmPWE1xkkBq4rlSW5QZpLOUJ5RJh2/9fug+q9tnUhuZoVLk7s0scUIKTOzEtR72DFBXI4WiZcMpvw== }
engines: { node: ">=14" }
hasBin: true
"@ethereumjs/rlp@5.0.2":
resolution: { integrity: sha512-DziebCdg4JpGlEqEdGgXmjqcFoJi+JGulUXwEjsZGAscAQ7MyD/7LE/GVCP29vEQxKc7AAwjT3A2ywHp2xfoCA== }
engines: { node: ">=18" }
hasBin: true
"@ethereumjs/tx@4.2.0":
resolution: { integrity: sha512-1nc6VO4jtFd172BbSnTnDQVr9IYBFl1y4xPzZdtkrkKIncBCkdbgfdRV+MiTkJYAtTxvV12GRZLqBFT1PNK6Yw== }
engines: { node: ">=14" }
"@ethereumjs/util@8.1.0":
resolution: { integrity: sha512-zQ0IqbdX8FZ9aw11vP+dZkKDkS+kgIvQPHnSAXzP9pLu+Rfu3D3XEeLbicvoXJTYnhZiPmsZUxgdzXwNKxRPbA== }
engines: { node: ">=14" }
"@ethersproject/abi@5.8.0":
resolution: { integrity: sha512-b9YS/43ObplgyV6SlyQsG53/vkSal0MNA1fskSC4mbnCMi8R+NkcH8K9FPYNESf6jUefBUniE4SOKms0E/KK1Q== }
"@ethersproject/abstract-provider@5.8.0":
resolution: { integrity: sha512-wC9SFcmh4UK0oKuLJQItoQdzS/qZ51EJegK6EmAWlh+OptpQ/npECOR3QqECd8iGHC0RJb4WKbVdSfif4ammrg== }
"@ethersproject/abstract-signer@5.8.0":
resolution: { integrity: sha512-N0XhZTswXcmIZQdYtUnd79VJzvEwXQw6PK0dTl9VoYrEBxxCPXqS0Eod7q5TNKRxe1/5WUMuR0u0nqTF/avdCA== }
"@ethersproject/address@5.8.0":
resolution: { integrity: sha512-GhH/abcC46LJwshoN+uBNoKVFPxUuZm6dA257z0vZkKmU1+t8xTn8oK7B9qrj8W2rFRMch4gbJl6PmVxjxBEBA== }
"@ethersproject/base64@5.8.0":
resolution: { integrity: sha512-lN0oIwfkYj9LbPx4xEkie6rAMJtySbpOAFXSDVQaBnAzYfB4X2Qr+FXJGxMoc3Bxp2Sm8OwvzMrywxyw0gLjIQ== }
"@ethersproject/basex@5.8.0":
resolution: { integrity: sha512-PIgTszMlDRmNwW9nhS6iqtVfdTAKosA7llYXNmGPw4YAI1PUyMv28988wAb41/gHF/WqGdoLv0erHaRcHRKW2Q== }
"@ethersproject/bignumber@5.8.0":
resolution: { integrity: sha512-ZyaT24bHaSeJon2tGPKIiHszWjD/54Sz8t57Toch475lCLljC6MgPmxk7Gtzz+ddNN5LuHea9qhAe0x3D+uYPA== }
"@ethersproject/bytes@5.8.0":
resolution: { integrity: sha512-vTkeohgJVCPVHu5c25XWaWQOZ4v+DkGoC42/TS2ond+PARCxTJvgTFUNDZovyQ/uAQ4EcpqqowKydcdmRKjg7A== }
"@ethersproject/constants@5.8.0":
resolution: { integrity: sha512-wigX4lrf5Vu+axVTIvNsuL6YrV4O5AXl5ubcURKMEME5TnWBouUh0CDTWxZ2GpnRn1kcCgE7l8O5+VbV9QTTcg== }
"@ethersproject/contracts@5.8.0":
resolution: { integrity: sha512-0eFjGz9GtuAi6MZwhb4uvUM216F38xiuR0yYCjKJpNfSEy4HUM8hvqqBj9Jmm0IUz8l0xKEhWwLIhPgxNY0yvQ== }
"@ethersproject/hash@5.8.0":
resolution: { integrity: sha512-ac/lBcTbEWW/VGJij0CNSw/wPcw9bSRgCB0AIBz8CvED/jfvDoV9hsIIiWfvWmFEi8RcXtlNwp2jv6ozWOsooA== }
"@ethersproject/hdnode@5.8.0":
resolution: { integrity: sha512-4bK1VF6E83/3/Im0ERnnUeWOY3P1BZml4ZD3wcH8Ys0/d1h1xaFt6Zc+Dh9zXf9TapGro0T4wvO71UTCp3/uoA== }
"@ethersproject/json-wallets@5.8.0":
resolution: { integrity: sha512-HxblNck8FVUtNxS3VTEYJAcwiKYsBIF77W15HufqlBF9gGfhmYOJtYZp8fSDZtn9y5EaXTE87zDwzxRoTFk11w== }
"@ethersproject/keccak256@5.8.0":
resolution: { integrity: sha512-A1pkKLZSz8pDaQ1ftutZoaN46I6+jvuqugx5KYNeQOPqq+JZ0Txm7dlWesCHB5cndJSu5vP2VKptKf7cksERng== }
"@ethersproject/logger@5.8.0":
resolution: { integrity: sha512-Qe6knGmY+zPPWTC+wQrpitodgBfH7XoceCGL5bJVejmH+yCS3R8jJm8iiWuvWbG76RUmyEG53oqv6GMVWqunjA== }
"@ethersproject/networks@5.8.0":
resolution: { integrity: sha512-egPJh3aPVAzbHwq8DD7Po53J4OUSsA1MjQp8Vf/OZPav5rlmWUaFLiq8cvQiGK0Z5K6LYzm29+VA/p4RL1FzNg== }
"@ethersproject/pbkdf2@5.8.0":
resolution: { integrity: sha512-wuHiv97BrzCmfEaPbUFpMjlVg/IDkZThp9Ri88BpjRleg4iePJaj2SW8AIyE8cXn5V1tuAaMj6lzvsGJkGWskg== }
"@ethersproject/properties@5.8.0":
resolution: { integrity: sha512-PYuiEoQ+FMaZZNGrStmN7+lWjlsoufGIHdww7454FIaGdbe/p5rnaCXTr5MtBYl3NkeoVhHZuyzChPeGeKIpQw== }
"@ethersproject/providers@5.8.0":
resolution: { integrity: sha512-3Il3oTzEx3o6kzcg9ZzbE+oCZYyY+3Zh83sKkn4s1DZfTUjIegHnN2Cm0kbn9YFy45FDVcuCLLONhU7ny0SsCw== }
"@ethersproject/random@5.8.0":
resolution: { integrity: sha512-E4I5TDl7SVqyg4/kkA/qTfuLWAQGXmSOgYyO01So8hLfwgKvYK5snIlzxJMk72IFdG/7oh8yuSqY2KX7MMwg+A== }
"@ethersproject/rlp@5.8.0":
resolution: { integrity: sha512-LqZgAznqDbiEunaUvykH2JAoXTT9NV0Atqk8rQN9nx9SEgThA/WMx5DnW8a9FOufo//6FZOCHZ+XiClzgbqV9Q== }
"@ethersproject/sha2@5.8.0":
resolution: { integrity: sha512-dDOUrXr9wF/YFltgTBYS0tKslPEKr6AekjqDW2dbn1L1xmjGR+9GiKu4ajxovnrDbwxAKdHjW8jNcwfz8PAz4A== }
"@ethersproject/signing-key@5.8.0":
resolution: { integrity: sha512-LrPW2ZxoigFi6U6aVkFN/fa9Yx/+4AtIUe4/HACTvKJdhm0eeb107EVCIQcrLZkxaSIgc/eCrX8Q1GtbH+9n3w== }
"@ethersproject/solidity@5.8.0":
resolution: { integrity: sha512-4CxFeCgmIWamOHwYN9d+QWGxye9qQLilpgTU0XhYs1OahkclF+ewO+3V1U0mvpiuQxm5EHHmv8f7ClVII8EHsA== }
"@ethersproject/strings@5.8.0":
resolution: { integrity: sha512-qWEAk0MAvl0LszjdfnZ2uC8xbR2wdv4cDabyHiBh3Cldq/T8dPH3V4BbBsAYJUeonwD+8afVXld274Ls+Y1xXg== }
"@ethersproject/transactions@5.8.0":
resolution: { integrity: sha512-UglxSDjByHG0TuU17bDfCemZ3AnKO2vYrL5/2n2oXvKzvb7Cz+W9gOWXKARjp2URVwcWlQlPOEQyAviKwT4AHg== }
"@ethersproject/units@5.8.0":
resolution: { integrity: sha512-lxq0CAnc5kMGIiWW4Mr041VT8IhNM+Pn5T3haO74XZWFulk7wH1Gv64HqE96hT4a7iiNMdOCFEBgaxWuk8ETKQ== }
"@ethersproject/wallet@5.8.0":
resolution: { integrity: sha512-G+jnzmgg6UxurVKRKvw27h0kvG75YKXZKdlLYmAHeF32TGUzHkOFd7Zn6QHOTYRFWnfjtSSFjBowKo7vfrXzPA== }
"@ethersproject/web@5.8.0":
resolution: { integrity: sha512-j7+Ksi/9KfGviws6Qtf9Q7KCqRhpwrYKQPs+JBA/rKVFF/yaWLHJEH3zfVP2plVu+eys0d2DlFmhoQJayFewcw== }
"@ethersproject/wordlists@5.8.0":
resolution: { integrity: sha512-2df9bbXicZws2Sb5S6ET493uJ0Z84Fjr3pC4tu/qlnZERibZCeUVuqdtt+7Tv9xxhUxHoIekIA7avrKUWHrezg== }
"@fastify/busboy@2.1.1":
resolution: { integrity: sha512-vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA== }
engines: { node: ">=14" }
"@fidm/asn1@1.0.4":
resolution: { integrity: sha512-esd1jyNvRb2HVaQGq2Gg8Z0kbQPXzV9Tq5Z14KNIov6KfFD6PTaRIO8UpcsYiTNzOqJpmyzWgVTrUwFV3UF4TQ== }
engines: { node: ">= 8" }
"@fidm/x509@1.2.1":
resolution: { integrity: sha512-nwc2iesjyc9hkuzcrMCBXQRn653XuAUKorfWM8PZyJawiy1QzLj4vahwzaI25+pfpwOLvMzbJ0uKpWLDNmo16w== }
engines: { node: ">= 8" }
"@hutson/parse-repository-url@3.0.2":
resolution: { integrity: sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q== }
engines: { node: ">=6.9.0" }
"@isaacs/cliui@8.0.2":
resolution: { integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA== }
engines: { node: ">=12" }
"@isaacs/string-locale-compare@1.1.0":
resolution: { integrity: sha512-SQ7Kzhh9+D+ZW9MA0zkYv3VXhIDNx+LzM6EJ+/65I3QY+enU6Itte7E5XX7EWrqLW2FN4n06GWzBnPoC3th2aQ== }
"@jest/schemas@29.6.3":
resolution: { integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA== }
engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
"@jridgewell/gen-mapping@0.3.13":
resolution: { integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA== }
"@jridgewell/resolve-uri@3.1.2":
resolution: { integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw== }
engines: { node: ">=6.0.0" }
"@jridgewell/source-map@0.3.11":
resolution: { integrity: sha512-ZMp1V8ZFcPG5dIWnQLr3NSI1MiCU7UETdS/A0G8V/XWHvJv3ZsFqutJn1Y5RPmAPX6F3BiE397OqveU/9NCuIA== }
"@jridgewell/sourcemap-codec@1.5.5":
resolution: { integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og== }
"@jridgewell/trace-mapping@0.3.30":
resolution: { integrity: sha512-GQ7Nw5G2lTu/BtHTKfXhKHok2WGetd4XYcVKGx00SjAk8GMwgJM3zr6zORiPGuOE+/vkc90KtTosSSvaCjKb2Q== }
"@lerna/create@8.2.3":
resolution: { integrity: sha512-f+68+iojcQ0tZRMfCgQyJdsdz+YPu3/d+0Zo1RJz92bgBxTCiEU+dHACVq1n3sEjm/YWPnFGdag8U5EYYmP3WA== }
engines: { node: ">=18.0.0" }
"@ljharb/through@2.3.14":
resolution: { integrity: sha512-ajBvlKpWucBB17FuQYUShqpqy8GRgYEpJW0vWJbUu1CV9lWyrDCapy0lScU8T8Z6qn49sSwJB3+M+evYIdGg+A== }
engines: { node: ">= 0.4" }
"@lukeed/csprng@1.1.0":
resolution: { integrity: sha512-Z7C/xXCiGWsg0KuKsHTKJxbWhpI3Vs5GwLfOean7MGyVFGqdRgBbAjOCh6u4bbjPc/8MJ2pZmK/0DLdCbivLDA== }
engines: { node: ">=8" }
"@microsoft/tsdoc@0.15.1":
resolution: { integrity: sha512-4aErSrCR/On/e5G2hDP0wjooqDdauzEbIq8hIkIe5pXV0rtWJZvdCEKL0ykZxex+IxIwBp0eGeV48hQN07dXtw== }
"@napi-rs/wasm-runtime@0.2.4":
resolution: { integrity: sha512-9zESzOO5aDByvhIAsOy9TbpZ0Ur2AJbUI7UT73kcUTS2mxAMHOBaa1st/jAymNoCtvrit99kkzT1FZuXVcgfIQ== }
"@nestjs/cli@10.4.9":
resolution: { integrity: sha512-s8qYd97bggqeK7Op3iD49X2MpFtW4LVNLAwXFkfbRxKME6IYT7X0muNTJ2+QfI8hpbNx9isWkrLWIp+g5FOhiA== }
engines: { node: ">= 16.14" }
hasBin: true
peerDependencies:
"@swc/cli": ^0.1.62 || ^0.3.0 || ^0.4.0 || ^0.5.0
"@swc/core": ^1.3.62
peerDependenciesMeta:
"@swc/cli":
optional: true
"@swc/core":
optional: true
"@nestjs/common@10.4.20":
resolution: { integrity: sha512-hxJxZF7jcKGuUzM9EYbuES80Z/36piJbiqmPy86mk8qOn5gglFebBTvcx7PWVbRNSb4gngASYnefBj/Y2HAzpQ== }
peerDependencies:
class-transformer: "*"
class-validator: "*"
reflect-metadata: ^0.1.12 || ^0.2.0
rxjs: ^7.1.0
peerDependenciesMeta:
class-transformer:
optional: true
class-validator:
optional: true
"@nestjs/common@9.4.3":
resolution: { integrity: sha512-Gd6D4IaYj01o14Bwv81ukidn4w3bPHCblMUq+SmUmWLyosK+XQmInCS09SbDDZyL8jy86PngtBLTdhJ2bXSUig== }
peerDependencies:
cache-manager: <=5
class-transformer: "*"
class-validator: "*"
reflect-metadata: ^0.1.12
rxjs: ^7.1.0
peerDependenciesMeta:
cache-manager:
optional: true
class-transformer:
optional: true
class-validator:
optional: true
"@nestjs/core@10.4.20":
resolution: { integrity: sha512-kRdtyKA3+Tu70N3RQ4JgmO1E3LzAMs/eppj7SfjabC7TgqNWoS4RLhWl4BqmsNVmjj6D5jgfPVtHtgYkU3AfpQ== }
peerDependencies:
"@nestjs/common": ^10.0.0
"@nestjs/microservices": ^10.0.0
"@nestjs/platform-express": ^10.0.0
"@nestjs/websockets": ^10.0.0
reflect-metadata: ^0.1.12 || ^0.2.0
rxjs: ^7.1.0
peerDependenciesMeta:
"@nestjs/microservices":
optional: true
"@nestjs/platform-express":
optional: true
"@nestjs/websockets":
optional: true
"@nestjs/mapped-types@2.0.5":
resolution: { integrity: sha512-bSJv4pd6EY99NX9CjBIyn4TVDoSit82DUZlL4I3bqNfy5Gt+gXTa86i3I/i0iIV9P4hntcGM5GyO+FhZAhxtyg== }
peerDependencies:
"@nestjs/common": ^8.0.0 || ^9.0.0 || ^10.0.0
class-transformer: ^0.4.0 || ^0.5.0
class-validator: ^0.13.0 || ^0.14.0
reflect-metadata: ^0.1.12 || ^0.2.0
peerDependenciesMeta:
class-transformer:
optional: true
class-validator:
optional: true
"@nestjs/platform-express@10.4.20":
resolution: { integrity: sha512-rh97mX3rimyf4xLMLHuTOBKe6UD8LOJ14VlJ1F/PTd6C6ZK9Ak6EHuJvdaGcSFQhd3ZMBh3I6CuujKGW9pNdIg== }
peerDependencies:
"@nestjs/common": ^10.0.0
"@nestjs/core": ^10.0.0
"@nestjs/platform-socket.io@10.4.20":
resolution: { integrity: sha512-8wqJ7kJnvRC6T1o1U3NNnuzjaMJU43R4hvzKKba7GSdMN6j2Jfzz/vq5gHDx9xbXOAmfsc9bvaIiZegXxvHoJA== }
peerDependencies:
"@nestjs/common": ^10.0.0
"@nestjs/websockets": ^10.0.0
rxjs: ^7.1.0
"@nestjs/schematics@10.2.3":
resolution: { integrity: sha512-4e8gxaCk7DhBxVUly2PjYL4xC2ifDFexCqq1/u4TtivLGXotVk0wHdYuPYe1tHTHuR1lsOkRbfOCpkdTnigLVg== }
peerDependencies:
typescript: ">=4.8.2"
"@nestjs/swagger@7.4.2":
resolution: { integrity: sha512-Mu6TEn1M/owIvAx2B4DUQObQXqo2028R2s9rSZ/hJEgBK95+doTwS0DjmVA2wTeZTyVtXOoN7CsoM5pONBzvKQ== }
peerDependencies:
"@fastify/static": ^6.0.0 || ^7.0.0
"@nestjs/common": ^9.0.0 || ^10.0.0
"@nestjs/core": ^9.0.0 || ^10.0.0
class-transformer: "*"
class-validator: "*"
reflect-metadata: ^0.1.12 || ^0.2.0
peerDependenciesMeta:
"@fastify/static":
optional: true
class-transformer:
optional: true
class-validator:
optional: true
"@nestjs/testing@10.4.20":
resolution: { integrity: sha512-nMkRDukDKskdPruM6EsgMq7yJua+CPZM6I6FrLP8yXw8BiVSPv9Nm0CtcGGwt3kgZF9hfxKjGqLjsvVBsv6Vfw== }
peerDependencies:
"@nestjs/common": ^10.0.0
"@nestjs/core": ^10.0.0
"@nestjs/microservices": ^10.0.0
"@nestjs/platform-express": ^10.0.0
peerDependenciesMeta:
"@nestjs/microservices":
optional: true
"@nestjs/platform-express":
optional: true
"@nestjs/throttler@5.2.0":
resolution: { integrity: sha512-G/G/MV3xf6sy1DwmnJsgeL+d2tQ/xGRNa9ZhZjm9Kyxp+3+ylGzwJtcnhWlN82PMEp3TiDQpTt+9waOIg/bpPg== }
peerDependencies:
"@nestjs/common": ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0
"@nestjs/core": ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0
reflect-metadata: ^0.1.13 || ^0.2.0
"@nestjs/typeorm@10.0.2":
resolution: { integrity: sha512-H738bJyydK4SQkRCTeh1aFBxoO1E9xdL/HaLGThwrqN95os5mEyAtK7BLADOS+vldP4jDZ2VQPLj4epWwRqCeQ== }
peerDependencies:
"@nestjs/common": ^8.0.0 || ^9.0.0 || ^10.0.0
"@nestjs/core": ^8.0.0 || ^9.0.0 || ^10.0.0
reflect-metadata: ^0.1.13 || ^0.2.0
rxjs: ^7.2.0
typeorm: ^0.3.0
"@nestjs/typeorm@9.0.1":
resolution: { integrity: sha512-A2BgLIPsMtmMI0bPKEf4bmzgFPsnvHqNBx3KkvaJ7hJrBQy0OqYOb+Rr06ifblKWDWS2tUPNrAFQbZjtk3PI+g== }
peerDependencies:
"@nestjs/common": ^8.0.0 || ^9.0.0
"@nestjs/core": ^8.0.0 || ^9.0.0
reflect-metadata: ^0.1.13
rxjs: ^7.2.0
typeorm: ^0.3.0
"@nestjs/websockets@10.4.20":
resolution: { integrity: sha512-tafsPPvQfAXc+cfxvuRDzS5V+Ixg8uVJq8xSocU24yVl/Xp6ajmhqiGiaVjYOX8mXY0NV836QwEZxHF7WvKHSw== }
peerDependencies:
"@nestjs/common": ^10.0.0
"@nestjs/core": ^10.0.0
"@nestjs/platform-socket.io": ^10.0.0
reflect-metadata: ^0.1.12 || ^0.2.0
rxjs: ^7.1.0
peerDependenciesMeta:
"@nestjs/platform-socket.io":
optional: true
"@noble/curves@1.2.0":
resolution: { integrity: sha512-oYclrNgRaM9SsBUBVbb8M6DTV7ZHRTKugureoYEncY5c65HOmRzvSiTE3y5CYaPYJA/GVkrhXEoF0M3Ya9PMnw== }
"@noble/curves@1.4.2":
resolution: { integrity: sha512-TavHr8qycMChk8UwMld0ZDRvatedkzWfH8IiaeGCfymOP5i0hSCozz9vHOL0nkwk7HRMlFnAiKpS2jrUmSybcw== }
"@noble/hashes@1.3.2":
resolution: { integrity: sha512-MVC8EAQp7MvEcm30KWENFjgR+Mkmf+D189XJTkFIlwohU5hcBbn1ZkKq7KVTi2Hme3PMGF390DaL52beVrIihQ== }
engines: { node: ">= 16" }
"@noble/hashes@1.4.0":
resolution: { integrity: sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg== }
engines: { node: ">= 16" }
"@noble/hashes@1.8.0":
resolution: { integrity: sha512-jCs9ldd7NwzpgXDIf6P3+NrHh9/sD6CQdxHyjQI+h/6rDNo88ypBxxz45UDuZHz9r3tNz7N/VInSVoVdtXEI4A== }
engines: { node: ^14.21.3 || >=16 }
"@npmcli/agent@2.2.2":
resolution: { integrity: sha512-OrcNPXdpSl9UX7qPVRWbmWMCSXrcDa2M9DvrbOTj7ao1S4PlqVFYv9/yLKMkrJKZ/V5A/kDBC690or307i26Og== }
engines: { node: ^16.14.0 || >=18.0.0 }
"@npmcli/arborist@7.5.4":
resolution: { integrity: sha512-nWtIc6QwwoUORCRNzKx4ypHqCk3drI+5aeYdMTQQiRCcn4lOOgfQh7WyZobGYTxXPSq1VwV53lkpN/BRlRk08g== }
engines: { node: ^16.14.0 || >=18.0.0 }
hasBin: true
"@npmcli/fs@3.1.1":
resolution: { integrity: sha512-q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg== }
engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
"@npmcli/git@5.0.8":
resolution: { integrity: sha512-liASfw5cqhjNW9UFd+ruwwdEf/lbOAQjLL2XY2dFW/bkJheXDYZgOyul/4gVvEV4BWkTXjYGmDqMw9uegdbJNQ== }
engines: { node: ^16.14.0 || >=18.0.0 }
"@npmcli/installed-package-contents@2.1.0":
resolution: { integrity: sha512-c8UuGLeZpm69BryRykLuKRyKFZYJsZSCT4aVY5ds4omyZqJ172ApzgfKJ5eV/r3HgLdUYgFVe54KSFVjKoe27w== }
engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
hasBin: true
"@npmcli/map-workspaces@3.0.6":
resolution: { integrity: sha512-tkYs0OYnzQm6iIRdfy+LcLBjcKuQCeE5YLb8KnrIlutJfheNaPvPpgoFEyEFgbjzl5PLZ3IA/BWAwRU0eHuQDA== }
engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
"@npmcli/metavuln-calculator@7.1.1":
resolution: { integrity: sha512-Nkxf96V0lAx3HCpVda7Vw4P23RILgdi/5K1fmj2tZkWIYLpXAN8k2UVVOsW16TsS5F8Ws2I7Cm+PU1/rsVF47g== }
engines: { node: ^16.14.0 || >=18.0.0 }
"@npmcli/name-from-folder@2.0.0":
resolution: { integrity: sha512-pwK+BfEBZJbKdNYpHHRTNBwBoqrN/iIMO0AiGvYsp3Hoaq0WbgGSWQR6SCldZovoDpY3yje5lkFUe6gsDgJ2vg== }
engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
"@npmcli/node-gyp@3.0.0":
resolution: { integrity: sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA== }
engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
"@npmcli/package-json@5.2.0":
resolution: { integrity: sha512-qe/kiqqkW0AGtvBjL8TJKZk/eBBSpnJkUWvHdQ9jM2lKHXRYYJuyNpJPlJw3c8QjC2ow6NZYiLExhUaeJelbxQ== }
engines: { node: ^16.14.0 || >=18.0.0 }
"@npmcli/promise-spawn@7.0.2":
resolution: { integrity: sha512-xhfYPXoV5Dy4UkY0D+v2KkwvnDfiA/8Mt3sWCGI/hM03NsYIH8ZaG6QzS9x7pje5vHZBZJ2v6VRFVTWACnqcmQ== }
engines: { node: ^16.14.0 || >=18.0.0 }
"@npmcli/query@3.1.0":
resolution: { integrity: sha512-C/iR0tk7KSKGldibYIB9x8GtO/0Bd0I2mhOaDb8ucQL/bQVTmGoeREaFj64Z5+iCBRf3dQfed0CjJL7I8iTkiQ== }
engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
"@npmcli/redact@2.0.1":
resolution: { integrity: sha512-YgsR5jCQZhVmTJvjduTOIHph0L73pK8xwMVaDY0PatySqVM9AZj93jpoXYSJqfHFxFkN9dmqTw6OiqExsS3LPw== }
engines: { node: ^16.14.0 || >=18.0.0 }
"@npmcli/run-script@8.1.0":
resolution: { integrity: sha512-y7efHHwghQfk28G2z3tlZ67pLG0XdfYbcVG26r7YIXALRsrVQcTq4/tdenSmdOrEsNahIYA/eh8aEVROWGFUDg== }
engines: { node: ^16.14.0 || >=18.0.0 }
"@nuxtjs/opencollective@0.3.2":
resolution: { integrity: sha512-um0xL3fO7Mf4fDxcqx9KryrB7zgRM5JSlvGN5AGkP6JLM5XEKyjeAiPbNxdXVXQ16isuAhYpvP88NgL2BGd6aA== }
engines: { node: ">=8.0.0", npm: ">=5.0.0" }
hasBin: true
"@nx/devkit@20.8.2":
resolution: { integrity: sha512-rr9p2/tZDQivIpuBUpZaFBK6bZ+b5SAjZk75V4tbCUqGW3+5OPuVvBPm+X+7PYwUF6rwSpewxkjWNeGskfCe+Q== }
peerDependencies:
nx: ">= 19 <= 21"
"@nx/nx-darwin-arm64@20.8.2":
resolution: { integrity: sha512-t+bmCn6sRPNGU6hnSyWNvbQYA/KgsxGZKYlaCLRwkNhI2akModcBUqtktJzCKd1XHDqs6EkEFBWjFr8/kBEkSg== }
engines: { node: ">= 10" }
cpu: [arm64]
os: [darwin]
"@nx/nx-darwin-x64@20.8.2":
resolution: { integrity: sha512-pt/wmDLM31Es8/EzazlyT5U+ou2l60rfMNFGCLqleHEQ0JUTc0KWnOciBLbHIQFiPsCQZJFEKyfV5V/ncePmmw== }
engines: { node: ">= 10" }
cpu: [x64]
os: [darwin]
"@nx/nx-freebsd-x64@20.8.2":
resolution: { integrity: sha512-joZxFbgJfkHkB9uMIJr73Gpnm9pnpvr0XKGbWC409/d2x7q1qK77tKdyhGm+A3+kaZFwstNVPmCUtUwJYyU6LA== }
engines: { node: ">= 10" }
cpu: [x64]
os: [freebsd]
"@nx/nx-linux-arm-gnueabihf@20.8.2":
resolution: { integrity: sha512-98O/qsxn4vIMPY/FyzvmVrl7C5yFhCUVk0/4PF+PA2SvtQ051L1eMRY6bq/lb69qfN6szJPZ41PG5mPx0NeLZw== }
engines: { node: ">= 10" }
cpu: [arm]
os: [linux]
"@nx/nx-linux-arm64-gnu@20.8.2":
resolution: { integrity: sha512-h6a+HxwfSpxsi4KpxGgPh9GDBmD2E+XqGCdfYpobabxqEBvlnIlJyuDhlRR06cTWpuNXHpRdrVogmV6m/YbtDg== }
engines: { node: ">= 10" }
cpu: [arm64]
os: [linux]
"@nx/nx-linux-arm64-musl@20.8.2":
resolution: { integrity: sha512-4Ev+jM0VAxDHV/dFgMXjQTCXS4I8W4oMe7FSkXpG8RUn6JK659DC8ExIDPoGIh+Cyqq6r6mw1CSia+ciQWICWQ== }
engines: { node: ">= 10" }
cpu: [arm64]
os: [linux]
"@nx/nx-linux-x64-gnu@20.8.2":
resolution: { integrity: sha512-nR0ev+wxu+nQYRd7bhqggOxK7UfkV6h+Ko1mumUFyrM5GvPpz/ELhjJFSnMcOkOMcvH0b6G5uTBJvN1XWCkbmg== }
engines: { node: ">= 10" }
cpu: [x64]
os: [linux]
"@nx/nx-linux-x64-musl@20.8.2":
resolution: { integrity: sha512-ost41l5yc2aq2Gc9bMMpaPi/jkXqbXEMEPHrxWKuKmaek3K2zbVDQzvBBNcQKxf/mlCsrqN4QO0mKYSRRqag5A== }
engines: { node: ">= 10" }
cpu: [x64]
os: [linux]
"@nx/nx-win32-arm64-msvc@20.8.2":
resolution: { integrity: sha512-0SEOqT/daBG5WtM9vOGilrYaAuf1tiALdrFavY62+/arXYxXemUKmRI5qoKDTnvoLMBGkJs6kxhMO5b7aUXIvQ== }
engines: { node: ">= 10" }
cpu: [arm64]
os: [win32]
"@nx/nx-win32-x64-msvc@20.8.2":
resolution: { integrity: sha512-iIsY+tVqes/NOqTbJmggL9Juie/iaDYlWgXA9IUv88FE9thqWKhVj4/tCcPjsOwzD+1SVna3YISEEFsx5UV4ew== }
engines: { node: ">= 10" }
cpu: [x64]
os: [win32]
"@octokit/auth-token@4.0.0":
resolution: { integrity: sha512-tY/msAuJo6ARbK6SPIxZrPBms3xPbfwBrulZe0Wtr/DIY9lje2HeV1uoebShn6mx7SjCHif6EjMvoREj+gZ+SA== }
engines: { node: ">= 18" }
"@octokit/core@5.2.2":
resolution: { integrity: sha512-/g2d4sW9nUDJOMz3mabVQvOGhVa4e/BN/Um7yca9Bb2XTzPPnfTWHWQg+IsEYO7M3Vx+EXvaM/I2pJWIMun1bg== }
engines: { node: ">= 18" }
"@octokit/endpoint@9.0.6":
resolution: { integrity: sha512-H1fNTMA57HbkFESSt3Y9+FBICv+0jFceJFPWDePYlR/iMGrwM5ph+Dd4XRQs+8X+PUFURLQgX9ChPfhJ/1uNQw== }
engines: { node: ">= 18" }
"@octokit/graphql@7.1.1":
resolution: { integrity: sha512-3mkDltSfcDUoa176nlGoA32RGjeWjl3K7F/BwHwRMJUW/IteSa4bnSV8p2ThNkcIcZU2umkZWxwETSSCJf2Q7g== }
engines: { node: ">= 18" }
"@octokit/openapi-types@24.2.0":
resolution: { integrity: sha512-9sIH3nSUttelJSXUrmGzl7QUBFul0/mB8HRYl3fOlgHbIWG+WnYDXU3v/2zMtAvuzZ/ed00Ei6on975FhBfzrg== }
"@octokit/plugin-enterprise-rest@6.0.1":
resolution: { integrity: sha512-93uGjlhUD+iNg1iWhUENAtJata6w5nE+V4urXOAlIXdco6xNZtUSfYY8dzp3Udy74aqO/B5UZL80x/YMa5PKRw== }
"@octokit/plugin-paginate-rest@11.4.4-cjs.2":
resolution: { integrity: sha512-2dK6z8fhs8lla5PaOTgqfCGBxgAv/le+EhPs27KklPhm1bKObpu6lXzwfUEQ16ajXzqNrKMujsFyo9K2eaoISw== }
engines: { node: ">= 18" }
peerDependencies:
"@octokit/core": "5"
"@octokit/plugin-request-log@4.0.1":
resolution: { integrity: sha512-GihNqNpGHorUrO7Qa9JbAl0dbLnqJVrV8OXe2Zm5/Y4wFkZQDfTreBzVmiRfJVfE4mClXdihHnbpyyO9FSX4HA== }
engines: { node: ">= 18" }
peerDependencies:
"@octokit/core": "5"
"@octokit/plugin-rest-endpoint-methods@13.3.2-cjs.1":
resolution: { integrity: sha512-VUjIjOOvF2oELQmiFpWA1aOPdawpyaCUqcEBc/UOUnj3Xp6DJGrJ1+bjUIIDzdHjnFNO6q57ODMfdEZnoBkCwQ== }
engines: { node: ">= 18" }
peerDependencies:
"@octokit/core": ^5
"@octokit/request-error@5.1.1":
resolution: { integrity: sha512-v9iyEQJH6ZntoENr9/yXxjuezh4My67CBSu9r6Ve/05Iu5gNgnisNWOsoJHTP6k0Rr0+HQIpnH+kyammu90q/g== }
engines: { node: ">= 18" }
"@octokit/request@8.4.1":
resolution: { integrity: sha512-qnB2+SY3hkCmBxZsR/MPCybNmbJe4KAlfWErXq+rBKkQJlbjdJeS85VI9r8UqeLYLvnAenU8Q1okM/0MBsAGXw== }
engines: { node: ">= 18" }
"@octokit/rest@20.1.2":
resolution: { integrity: sha512-GmYiltypkHHtihFwPRxlaorG5R9VAHuk/vbszVoRTGXnAsY60wYLkh/E2XiFmdZmqrisw+9FaazS1i5SbdWYgA== }
engines: { node: ">= 18" }
"@octokit/types@13.10.0":
resolution: { integrity: sha512-ifLaO34EbbPj0Xgro4G5lP5asESjwHracYJvVaPIyXMuiuXLlhic3S47cBdTb+jfODkTE5YtGCLt3Ay3+J97sA== }
"@oxlint-tsgolint/darwin-arm64@0.0.4":
resolution: { integrity: sha512-qL0zqIYdYrXl6ghTIHnhJkvyYy1eKz0P8YIEp59MjY3/zNiyk/gtyp8LkwZdqb9ezbcX9UDQhSuSO1wURJsq8g== }
cpu: [arm64]
os: [darwin]
"@oxlint-tsgolint/darwin-x64@0.0.4":
resolution: { integrity: sha512-c3nSjqmDSKzemChAEUv/zy2e9cwgkkO/7rz4Y447+8pSbeZNHi3RrNpVHdrKL/Qep4pt6nFZE+6PoczZxHNQjg== }
cpu: [x64]
os: [darwin]
"@oxlint-tsgolint/linux-arm64@0.0.4":
resolution: { integrity: sha512-P2BA54c/Ej5AGkChH1/7zMd6PwZfa+jnw8juB/JWops+BX+lbhbbBHz0cYduDBgWYjRo4e3OVJOTskqcpuMfNw== }
cpu: [arm64]
os: [linux]
"@oxlint-tsgolint/linux-x64@0.0.4":
resolution: { integrity: sha512-hbgLpnDNicPrbHOAQ9nNfLOSrUrdWANP/umR7P/cwCc1sv66eEs7bm4G3mrhRU8aXFBJmbhdNqiDSUkYYvHWJQ== }
cpu: [x64]
os: [linux]
"@oxlint-tsgolint/win32-arm64@0.0.4":
resolution: { integrity: sha512-ozKEppmwZhC5LMedClBEat6cXgBGUvxGOgsKK2ZZNE6zSScX7QbvJAOt3nWMGs8GQshHy/6ndMB33+uRloglQA== }
cpu: [arm64]
os: [win32]
"@oxlint-tsgolint/win32-x64@0.0.4":
resolution: { integrity: sha512-gLfx+qogW21QcaRKFg6ARgra7tSPqyn+Ems3FgTUyxV4OpJYn7KsQroygxOWElqv6JUobtvHBrxdB6YhlvERbQ== }
cpu: [x64]
os: [win32]
"@oxlint/darwin-arm64@1.12.0":
resolution: { integrity: sha512-Pv+Ho1uq2ny8g2P6JgQpaIUF1FHPL32DfOlZhKqmzDT3PydtFvZp/7zNyJE3BIXeTOOOG1Eg12hjZHMLsWxyNw== }
cpu: [arm64]
os: [darwin]
"@oxlint/darwin-x64@1.12.0":
resolution: { integrity: sha512-kNXPH/7jXjX4pawrEWXQHOasOdOsrYKhskA1qYwLYcv/COVSoxOSElkQtQa+KxN5zzt3F02kBdWDndLpgJLbLQ== }
cpu: [x64]
os: [darwin]
"@oxlint/linux-arm64-gnu@1.12.0":
resolution: { integrity: sha512-U7NETs02K55ZyDlgdhx4lWeFYbkUKcL+YcG+Ak70EyEt/BKIIVt4B84VdV1JzC71FErUipDYAwPJmxMREXr4Sg== }
cpu: [arm64]
os: [linux]
"@oxlint/linux-arm64-musl@1.12.0":
resolution: { integrity: sha512-e4Pb2eZu3V2BsiX4t4gyv9iJ8+KRT6bkoWM5uC9BLX7edsVchwLwL6LB2vPYusYdPPrxdjlFCg6ni+9wlw7FbQ== }
cpu: [arm64]
os: [linux]
"@oxlint/linux-x64-gnu@1.12.0":
resolution: { integrity: sha512-qJK98Dj/z7Nbm0xoz0nCCMFGy0W/kLewPzOK5QENxuUoQQ6ymt7/75rXOuTwAZJ6JFTarqfSuMAA0pka6Tmytw== }
cpu: [x64]
os: [linux]
"@oxlint/linux-x64-musl@1.12.0":
resolution: { integrity: sha512-jNeltpHc1eonSev/bWKipJ7FI6+Rc7EXh6Y7E0pm8e95sc1klFA29FFVs3FjMA6CCa+SRT0u0nnNTTAtf2QOiQ== }
cpu: [x64]
os: [linux]
"@oxlint/win32-arm64@1.12.0":
resolution: { integrity: sha512-T3fpNZJ3Q9YGgJTKc1YyvGoomSXnrV5mREz0QACE06zUzfS8EWyaYc/GN17FhHvQ4uQk/1xLgnM6FPsuLMeRhw== }
cpu: [arm64]
os: [win32]
"@oxlint/win32-x64@1.12.0":
resolution: { integrity: sha512-2eC4XQ1SMM2z7bCDG+Ifrn5GrvP6fkL0FGi4ZwDCrx6fwb1byFrXgSUNIPiqiiqBBrFRMKlXzU9zD6IjuFlUOg== }
cpu: [x64]
os: [win32]
"@pkgjs/parseargs@0.11.0":
resolution: { integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg== }
engines: { node: ">=14" }
"@redis/bloom@1.2.0":
resolution: { integrity: sha512-HG2DFjYKbpNmVXsa0keLHp/3leGJz1mjh09f2RLGGLQZzSHpkmZWuwJbAvo3QcRY8p80m5+ZdXZdYOSBLlp7Cg== }
peerDependencies:
"@redis/client": ^1.0.0
"@redis/client@1.5.8":
resolution: { integrity: sha512-xzElwHIO6rBAqzPeVnCzgvrnBEcFL1P0w8P65VNLRkdVW8rOE58f52hdj0BDgmsdOm4f1EoXPZtH4Fh7M/qUpw== }
engines: { node: ">=14" }
"@redis/graph@1.1.0":
resolution: { integrity: sha512-16yZWngxyXPd+MJxeSr0dqh2AIOi8j9yXKcKCwVaKDbH3HTuETpDVPcLujhFYVPtYrngSco31BUcSa9TH31Gqg== }
peerDependencies:
"@redis/client": ^1.0.0
"@redis/json@1.0.4":
resolution: { integrity: sha512-LUZE2Gdrhg0Rx7AN+cZkb1e6HjoSKaeeW8rYnt89Tly13GBI5eP4CwDVr+MY8BAYfCg4/N15OUrtLoona9uSgw== }
peerDependencies:
"@redis/client": ^1.0.0
"@redis/search@1.1.3":
resolution: { integrity: sha512-4Dg1JjvCevdiCBTZqjhKkGoC5/BcB7k9j99kdMnaXFXg8x4eyOIVg9487CMv7/BUVkFLZCaIh8ead9mU15DNng== }
peerDependencies:
"@redis/client": ^1.0.0
"@redis/time-series@1.0.4":
resolution: { integrity: sha512-ThUIgo2U/g7cCuZavucQTQzA9g9JbDDY2f64u3AbAoz/8vE2lt2U37LamDUVChhaDA3IRT9R6VvJwqnUfTJzng== }
peerDependencies:
"@redis/client": ^1.0.0
"@scure/base@1.1.9":
resolution: { integrity: sha512-8YKhl8GHiNI/pU2VMaofa2Tor7PJRAjwQLBBuilkJ9L5+13yVbC7JO/wS7piioAvPSwR3JKM1IJ/u4xQzbcXKg== }
"@scure/bip32@1.4.0":
resolution: { integrity: sha512-sVUpc0Vq3tXCkDGYVWGIZTRfnvu8LoTDaev7vbwh0omSvVORONr960MQWdKqJDCReIEmTj3PAr73O3aoxz7OPg== }
"@scure/bip39@1.3.0":
resolution: { integrity: sha512-disdg7gHuTDZtY+ZdkmLpPCk7fxZSu3gBiEGuoC1XYxv9cGx3Z6cpTggCgW6odSOOIXCiDjuGejW+aJKCY/pIQ== }
"@sigstore/bundle@2.3.2":
resolution: { integrity: sha512-wueKWDk70QixNLB363yHc2D2ItTgYiMTdPwK8D9dKQMR3ZQ0c35IxP5xnwQ8cNLoCgCRcHf14kE+CLIvNX1zmA== }
engines: { node: ^16.14.0 || >=18.0.0 }
"@sigstore/core@1.1.0":
resolution: { integrity: sha512-JzBqdVIyqm2FRQCulY6nbQzMpJJpSiJ8XXWMhtOX9eKgaXXpfNOF53lzQEjIydlStnd/eFtuC1dW4VYdD93oRg== }
engines: { node: ^16.14.0 || >=18.0.0 }
"@sigstore/protobuf-specs@0.3.3":
resolution: { integrity: sha512-RpacQhBlwpBWd7KEJsRKcBQalbV28fvkxwTOJIqhIuDysMMaJW47V4OqW30iJB9uRpqOSxxEAQFdr8tTattReQ== }
engines: { node: ^18.17.0 || >=20.5.0 }
"@sigstore/sign@2.3.2":
resolution: { integrity: sha512-5Vz5dPVuunIIvC5vBb0APwo7qKA4G9yM48kPWJT+OEERs40md5GoUR1yedwpekWZ4m0Hhw44m6zU+ObsON+iDA== }
engines: { node: ^16.14.0 || >=18.0.0 }
"@sigstore/tuf@2.3.4":
resolution: { integrity: sha512-44vtsveTPUpqhm9NCrbU8CWLe3Vck2HO1PNLw7RIajbB7xhtn5RBPm1VNSCMwqGYHhDsBJG8gDF0q4lgydsJvw== }
engines: { node: ^16.14.0 || >=18.0.0 }
"@sigstore/verify@1.2.1":
resolution: { integrity: sha512-8iKx79/F73DKbGfRf7+t4dqrc0bRr0thdPrxAtCKWRm/F0tG71i6O1rvlnScncJLLBZHn3h8M3c1BSUAb9yu8g== }
engines: { node: ^16.14.0 || >=18.0.0 }
"@sinclair/typebox@0.27.8":
resolution: { integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA== }
"@socket.io/component-emitter@3.1.2":
resolution: { integrity: sha512-9BCxFwvbGg/RsZK9tjXd8s4UcwR0MWeFQ1XEKIQVVvAGJyINdrqKMcTRyLoK8Rse1GjzLV9cwjWV1olXRWEXVA== }
"@sqltools/formatter@1.2.5":
resolution: { integrity: sha512-Uy0+khmZqUrUGm5dmMqVlnvufZRSK0FbYzVgp0UMstm+F5+W2/jnEEQyc9vo1ZR/E5ZI/B1WjjoTqBqwJL6Krw== }
"@tokenizer/inflate@0.2.7":
resolution: { integrity: sha512-MADQgmZT1eKjp06jpI2yozxaU9uVs4GzzgSL+uEq7bVcJ9V1ZXQkeGNql1fsSI0gMy1vhvNTNbUqrx+pZfJVmg== }
engines: { node: ">=18" }
"@tokenizer/token@0.3.0":
resolution: { integrity: sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A== }