-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathyarn.lock
More file actions
4821 lines (4342 loc) · 171 KB
/
yarn.lock
File metadata and controls
4821 lines (4342 loc) · 171 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: 8
cacheKey: 10c0
"@aws-crypto/sha256-browser@npm:5.2.0":
version: 5.2.0
resolution: "@aws-crypto/sha256-browser@npm:5.2.0"
dependencies:
"@aws-crypto/sha256-js": "npm:^5.2.0"
"@aws-crypto/supports-web-crypto": "npm:^5.2.0"
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
"@aws-sdk/util-locate-window": "npm:^3.0.0"
"@smithy/util-utf8": "npm:^2.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/05f6d256794df800fe9aef5f52f2ac7415f7f3117d461f85a6aecaa4e29e91527b6fd503681a17136fa89e9dd3d916e9c7e4cfb5eba222875cb6c077bdc1d00d
languageName: node
linkType: hard
"@aws-crypto/sha256-js@npm:5.2.0, @aws-crypto/sha256-js@npm:^5.2.0":
version: 5.2.0
resolution: "@aws-crypto/sha256-js@npm:5.2.0"
dependencies:
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^2.6.2"
checksum: 10c0/6c48701f8336341bb104dfde3d0050c89c288051f6b5e9bdfeb8091cf3ffc86efcd5c9e6ff2a4a134406b019c07aca9db608128f8d9267c952578a3108db9fd1
languageName: node
linkType: hard
"@aws-crypto/supports-web-crypto@npm:^5.2.0":
version: 5.2.0
resolution: "@aws-crypto/supports-web-crypto@npm:5.2.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10c0/4d2118e29d68ca3f5947f1e37ce1fbb3239a0c569cc938cdc8ab8390d595609b5caf51a07c9e0535105b17bf5c52ea256fed705a07e9681118120ab64ee73af2
languageName: node
linkType: hard
"@aws-crypto/util@npm:^5.2.0":
version: 5.2.0
resolution: "@aws-crypto/util@npm:5.2.0"
dependencies:
"@aws-sdk/types": "npm:^3.222.0"
"@smithy/util-utf8": "npm:^2.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/0362d4c197b1fd64b423966945130207d1fe23e1bb2878a18e361f7743c8d339dad3f8729895a29aa34fff6a86c65f281cf5167c4bf253f21627ae80b6dd2951
languageName: node
linkType: hard
"@aws-sdk/client-sesv2@npm:^3.839.0":
version: 3.957.0
resolution: "@aws-sdk/client-sesv2@npm:3.957.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.957.0"
"@aws-sdk/credential-provider-node": "npm:3.957.0"
"@aws-sdk/middleware-host-header": "npm:3.957.0"
"@aws-sdk/middleware-logger": "npm:3.957.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.957.0"
"@aws-sdk/middleware-user-agent": "npm:3.957.0"
"@aws-sdk/region-config-resolver": "npm:3.957.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.957.0"
"@aws-sdk/types": "npm:3.957.0"
"@aws-sdk/util-endpoints": "npm:3.957.0"
"@aws-sdk/util-user-agent-browser": "npm:3.957.0"
"@aws-sdk/util-user-agent-node": "npm:3.957.0"
"@smithy/config-resolver": "npm:^4.4.5"
"@smithy/core": "npm:^3.20.0"
"@smithy/fetch-http-handler": "npm:^5.3.8"
"@smithy/hash-node": "npm:^4.2.7"
"@smithy/invalid-dependency": "npm:^4.2.7"
"@smithy/middleware-content-length": "npm:^4.2.7"
"@smithy/middleware-endpoint": "npm:^4.4.1"
"@smithy/middleware-retry": "npm:^4.4.17"
"@smithy/middleware-serde": "npm:^4.2.8"
"@smithy/middleware-stack": "npm:^4.2.7"
"@smithy/node-config-provider": "npm:^4.3.7"
"@smithy/node-http-handler": "npm:^4.4.7"
"@smithy/protocol-http": "npm:^5.3.7"
"@smithy/smithy-client": "npm:^4.10.2"
"@smithy/types": "npm:^4.11.0"
"@smithy/url-parser": "npm:^4.2.7"
"@smithy/util-base64": "npm:^4.3.0"
"@smithy/util-body-length-browser": "npm:^4.2.0"
"@smithy/util-body-length-node": "npm:^4.2.1"
"@smithy/util-defaults-mode-browser": "npm:^4.3.16"
"@smithy/util-defaults-mode-node": "npm:^4.2.19"
"@smithy/util-endpoints": "npm:^3.2.7"
"@smithy/util-middleware": "npm:^4.2.7"
"@smithy/util-retry": "npm:^4.2.7"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/cd0f5c13e9a0463b57ade31e69e4ffd3146174b8ed7d5d12f115aeb09d7b51eab53a6537a30eedaf5be176a3c0eb31f44187edababfb0d8641adfff7d1fad71b
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.957.0":
version: 3.957.0
resolution: "@aws-sdk/client-sso@npm:3.957.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.957.0"
"@aws-sdk/middleware-host-header": "npm:3.957.0"
"@aws-sdk/middleware-logger": "npm:3.957.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.957.0"
"@aws-sdk/middleware-user-agent": "npm:3.957.0"
"@aws-sdk/region-config-resolver": "npm:3.957.0"
"@aws-sdk/types": "npm:3.957.0"
"@aws-sdk/util-endpoints": "npm:3.957.0"
"@aws-sdk/util-user-agent-browser": "npm:3.957.0"
"@aws-sdk/util-user-agent-node": "npm:3.957.0"
"@smithy/config-resolver": "npm:^4.4.5"
"@smithy/core": "npm:^3.20.0"
"@smithy/fetch-http-handler": "npm:^5.3.8"
"@smithy/hash-node": "npm:^4.2.7"
"@smithy/invalid-dependency": "npm:^4.2.7"
"@smithy/middleware-content-length": "npm:^4.2.7"
"@smithy/middleware-endpoint": "npm:^4.4.1"
"@smithy/middleware-retry": "npm:^4.4.17"
"@smithy/middleware-serde": "npm:^4.2.8"
"@smithy/middleware-stack": "npm:^4.2.7"
"@smithy/node-config-provider": "npm:^4.3.7"
"@smithy/node-http-handler": "npm:^4.4.7"
"@smithy/protocol-http": "npm:^5.3.7"
"@smithy/smithy-client": "npm:^4.10.2"
"@smithy/types": "npm:^4.11.0"
"@smithy/url-parser": "npm:^4.2.7"
"@smithy/util-base64": "npm:^4.3.0"
"@smithy/util-body-length-browser": "npm:^4.2.0"
"@smithy/util-body-length-node": "npm:^4.2.1"
"@smithy/util-defaults-mode-browser": "npm:^4.3.16"
"@smithy/util-defaults-mode-node": "npm:^4.2.19"
"@smithy/util-endpoints": "npm:^3.2.7"
"@smithy/util-middleware": "npm:^4.2.7"
"@smithy/util-retry": "npm:^4.2.7"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/011e5b50ff85d855bd81d060f27cb1b5537e2bb078c48c2721a1f202b677fd1ef65c133ba514fbbc746c7622f7baa7c93a53d918041f0a98d600e8a059df4db6
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.957.0":
version: 3.957.0
resolution: "@aws-sdk/core@npm:3.957.0"
dependencies:
"@aws-sdk/types": "npm:3.957.0"
"@aws-sdk/xml-builder": "npm:3.957.0"
"@smithy/core": "npm:^3.20.0"
"@smithy/node-config-provider": "npm:^4.3.7"
"@smithy/property-provider": "npm:^4.2.7"
"@smithy/protocol-http": "npm:^5.3.7"
"@smithy/signature-v4": "npm:^5.3.7"
"@smithy/smithy-client": "npm:^4.10.2"
"@smithy/types": "npm:^4.11.0"
"@smithy/util-base64": "npm:^4.3.0"
"@smithy/util-middleware": "npm:^4.2.7"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/a98a31b68264efef5a77722e23fdbb20624c2ebe0bdc555da925804d30cb8d76382fa180ef0ae5c4700a453b88fdf8349abb30dea8821d11a7d5dbed1b285c29
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.957.0":
version: 3.957.0
resolution: "@aws-sdk/credential-provider-env@npm:3.957.0"
dependencies:
"@aws-sdk/core": "npm:3.957.0"
"@aws-sdk/types": "npm:3.957.0"
"@smithy/property-provider": "npm:^4.2.7"
"@smithy/types": "npm:^4.11.0"
tslib: "npm:^2.6.2"
checksum: 10c0/450dc7f084b510bf62b58ffc2d2e6c390f1b3782801a7f6f2c3c43024f8c391eaec58740813f435d8377a57435c9c73fb7b0430d1eac344e2b3076d2897b8ebe
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.957.0":
version: 3.957.0
resolution: "@aws-sdk/credential-provider-http@npm:3.957.0"
dependencies:
"@aws-sdk/core": "npm:3.957.0"
"@aws-sdk/types": "npm:3.957.0"
"@smithy/fetch-http-handler": "npm:^5.3.8"
"@smithy/node-http-handler": "npm:^4.4.7"
"@smithy/property-provider": "npm:^4.2.7"
"@smithy/protocol-http": "npm:^5.3.7"
"@smithy/smithy-client": "npm:^4.10.2"
"@smithy/types": "npm:^4.11.0"
"@smithy/util-stream": "npm:^4.5.8"
tslib: "npm:^2.6.2"
checksum: 10c0/6642859e41241a77592301265444ee86a964a56ee2a9b079d96d879cf959a65279d7d5e7c2ddfd30bcb99f9a0af049190f316a1a398f79ca8bfe3205c7cf10e2
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.957.0":
version: 3.957.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.957.0"
dependencies:
"@aws-sdk/core": "npm:3.957.0"
"@aws-sdk/credential-provider-env": "npm:3.957.0"
"@aws-sdk/credential-provider-http": "npm:3.957.0"
"@aws-sdk/credential-provider-login": "npm:3.957.0"
"@aws-sdk/credential-provider-process": "npm:3.957.0"
"@aws-sdk/credential-provider-sso": "npm:3.957.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.957.0"
"@aws-sdk/nested-clients": "npm:3.957.0"
"@aws-sdk/types": "npm:3.957.0"
"@smithy/credential-provider-imds": "npm:^4.2.7"
"@smithy/property-provider": "npm:^4.2.7"
"@smithy/shared-ini-file-loader": "npm:^4.4.2"
"@smithy/types": "npm:^4.11.0"
tslib: "npm:^2.6.2"
checksum: 10c0/42d3450fa8337a2b70fab9574b6a456304af70a85c03cb322db4ead17499299ff1a302e1b0a884ffa79c74181845fbfc09e42bf576f7a985e7fd27d4eaeae34a
languageName: node
linkType: hard
"@aws-sdk/credential-provider-login@npm:3.957.0":
version: 3.957.0
resolution: "@aws-sdk/credential-provider-login@npm:3.957.0"
dependencies:
"@aws-sdk/core": "npm:3.957.0"
"@aws-sdk/nested-clients": "npm:3.957.0"
"@aws-sdk/types": "npm:3.957.0"
"@smithy/property-provider": "npm:^4.2.7"
"@smithy/protocol-http": "npm:^5.3.7"
"@smithy/shared-ini-file-loader": "npm:^4.4.2"
"@smithy/types": "npm:^4.11.0"
tslib: "npm:^2.6.2"
checksum: 10c0/89074fb84d4a4c76f3aae22b2805793b1bd294b0b97b031ee79bfa32fba7c886ad2b55e09a6b3bc6c9ada8e021966bea0a976e7f3eea3b3b20a83359676bc3cf
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.957.0":
version: 3.957.0
resolution: "@aws-sdk/credential-provider-node@npm:3.957.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.957.0"
"@aws-sdk/credential-provider-http": "npm:3.957.0"
"@aws-sdk/credential-provider-ini": "npm:3.957.0"
"@aws-sdk/credential-provider-process": "npm:3.957.0"
"@aws-sdk/credential-provider-sso": "npm:3.957.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.957.0"
"@aws-sdk/types": "npm:3.957.0"
"@smithy/credential-provider-imds": "npm:^4.2.7"
"@smithy/property-provider": "npm:^4.2.7"
"@smithy/shared-ini-file-loader": "npm:^4.4.2"
"@smithy/types": "npm:^4.11.0"
tslib: "npm:^2.6.2"
checksum: 10c0/b36c45e7ae6139f2b9587a8592a1f671cba46d505955ed90d67bc0ad38b474d1fa0048689c83ad1cad84ef7e6548836936c4b87356c937eb4367c705fd9824ac
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.957.0":
version: 3.957.0
resolution: "@aws-sdk/credential-provider-process@npm:3.957.0"
dependencies:
"@aws-sdk/core": "npm:3.957.0"
"@aws-sdk/types": "npm:3.957.0"
"@smithy/property-provider": "npm:^4.2.7"
"@smithy/shared-ini-file-loader": "npm:^4.4.2"
"@smithy/types": "npm:^4.11.0"
tslib: "npm:^2.6.2"
checksum: 10c0/103f274ebc1aa89bc183bde13d2979af623ff9a1c502cda09304e0b8ec421c7bb45dd1a6825fbb57ef11f16cc58f481d20d527eb97205a1f2a3c5f610814ffee
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.957.0":
version: 3.957.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.957.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.957.0"
"@aws-sdk/core": "npm:3.957.0"
"@aws-sdk/token-providers": "npm:3.957.0"
"@aws-sdk/types": "npm:3.957.0"
"@smithy/property-provider": "npm:^4.2.7"
"@smithy/shared-ini-file-loader": "npm:^4.4.2"
"@smithy/types": "npm:^4.11.0"
tslib: "npm:^2.6.2"
checksum: 10c0/0c7a556cf952958fb035f6461cf2876c28f4d6fce18352aa5d8ee95b1f4d3134e12a9bf79156d5a0eb1c031afa8e4111c95f826cef0d9021615f450497f0f54e
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.957.0":
version: 3.957.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.957.0"
dependencies:
"@aws-sdk/core": "npm:3.957.0"
"@aws-sdk/nested-clients": "npm:3.957.0"
"@aws-sdk/types": "npm:3.957.0"
"@smithy/property-provider": "npm:^4.2.7"
"@smithy/shared-ini-file-loader": "npm:^4.4.2"
"@smithy/types": "npm:^4.11.0"
tslib: "npm:^2.6.2"
checksum: 10c0/a2ac4b1ebc6e80a276c49dcc86e88e637067aa2d762dcf9d2e232e16b5df4502be5a740ece0f29d272faacb03cf26cf9e13a244805ad938cf583a90774a1869e
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.957.0":
version: 3.957.0
resolution: "@aws-sdk/middleware-host-header@npm:3.957.0"
dependencies:
"@aws-sdk/types": "npm:3.957.0"
"@smithy/protocol-http": "npm:^5.3.7"
"@smithy/types": "npm:^4.11.0"
tslib: "npm:^2.6.2"
checksum: 10c0/b7656460ff07a14703b45a0047a6cb81c53e0cfc0b7ebe1e8079edfb09a4400ff09e537b6a90871d005c92066c4a450ce8987fa280680286063d32e13c901883
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.957.0":
version: 3.957.0
resolution: "@aws-sdk/middleware-logger@npm:3.957.0"
dependencies:
"@aws-sdk/types": "npm:3.957.0"
"@smithy/types": "npm:^4.11.0"
tslib: "npm:^2.6.2"
checksum: 10c0/767707c6748c3e4035339119d3c3a12d79402d99acc37dd96a83099a1201e9130a669d5fb5f4f15d8f67e776a6a3e5d99365b19a67b4eb30aff02d33f6cbc35b
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.957.0":
version: 3.957.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.957.0"
dependencies:
"@aws-sdk/types": "npm:3.957.0"
"@aws/lambda-invoke-store": "npm:^0.2.2"
"@smithy/protocol-http": "npm:^5.3.7"
"@smithy/types": "npm:^4.11.0"
tslib: "npm:^2.6.2"
checksum: 10c0/21808cad790cc052f420b716b04980d1d974a17fe495ebe7d95e617d566328410f856798eef135ce85d14ea4caf1fa21f34041b41977b5c5d6d0b2b694f7bb78
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-s3@npm:3.957.0":
version: 3.957.0
resolution: "@aws-sdk/middleware-sdk-s3@npm:3.957.0"
dependencies:
"@aws-sdk/core": "npm:3.957.0"
"@aws-sdk/types": "npm:3.957.0"
"@aws-sdk/util-arn-parser": "npm:3.957.0"
"@smithy/core": "npm:^3.20.0"
"@smithy/node-config-provider": "npm:^4.3.7"
"@smithy/protocol-http": "npm:^5.3.7"
"@smithy/signature-v4": "npm:^5.3.7"
"@smithy/smithy-client": "npm:^4.10.2"
"@smithy/types": "npm:^4.11.0"
"@smithy/util-config-provider": "npm:^4.2.0"
"@smithy/util-middleware": "npm:^4.2.7"
"@smithy/util-stream": "npm:^4.5.8"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/70b4377c64525e01766554f867bb0540f921f92201f10eb9bd018fe2c75ace853d9d5cba92b4fbd6756c992c883377792674e27d02ea58e69ad081af796f9455
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:3.957.0":
version: 3.957.0
resolution: "@aws-sdk/middleware-user-agent@npm:3.957.0"
dependencies:
"@aws-sdk/core": "npm:3.957.0"
"@aws-sdk/types": "npm:3.957.0"
"@aws-sdk/util-endpoints": "npm:3.957.0"
"@smithy/core": "npm:^3.20.0"
"@smithy/protocol-http": "npm:^5.3.7"
"@smithy/types": "npm:^4.11.0"
tslib: "npm:^2.6.2"
checksum: 10c0/94287fb18a5dff73e27d16bfd0599df12608ef3cf215978e44a7c389b97089e807bea3bad7a754a56dd5346b84e30ecd1711a6b33621d925883bda0e61ce9da1
languageName: node
linkType: hard
"@aws-sdk/nested-clients@npm:3.957.0":
version: 3.957.0
resolution: "@aws-sdk/nested-clients@npm:3.957.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.957.0"
"@aws-sdk/middleware-host-header": "npm:3.957.0"
"@aws-sdk/middleware-logger": "npm:3.957.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.957.0"
"@aws-sdk/middleware-user-agent": "npm:3.957.0"
"@aws-sdk/region-config-resolver": "npm:3.957.0"
"@aws-sdk/types": "npm:3.957.0"
"@aws-sdk/util-endpoints": "npm:3.957.0"
"@aws-sdk/util-user-agent-browser": "npm:3.957.0"
"@aws-sdk/util-user-agent-node": "npm:3.957.0"
"@smithy/config-resolver": "npm:^4.4.5"
"@smithy/core": "npm:^3.20.0"
"@smithy/fetch-http-handler": "npm:^5.3.8"
"@smithy/hash-node": "npm:^4.2.7"
"@smithy/invalid-dependency": "npm:^4.2.7"
"@smithy/middleware-content-length": "npm:^4.2.7"
"@smithy/middleware-endpoint": "npm:^4.4.1"
"@smithy/middleware-retry": "npm:^4.4.17"
"@smithy/middleware-serde": "npm:^4.2.8"
"@smithy/middleware-stack": "npm:^4.2.7"
"@smithy/node-config-provider": "npm:^4.3.7"
"@smithy/node-http-handler": "npm:^4.4.7"
"@smithy/protocol-http": "npm:^5.3.7"
"@smithy/smithy-client": "npm:^4.10.2"
"@smithy/types": "npm:^4.11.0"
"@smithy/url-parser": "npm:^4.2.7"
"@smithy/util-base64": "npm:^4.3.0"
"@smithy/util-body-length-browser": "npm:^4.2.0"
"@smithy/util-body-length-node": "npm:^4.2.1"
"@smithy/util-defaults-mode-browser": "npm:^4.3.16"
"@smithy/util-defaults-mode-node": "npm:^4.2.19"
"@smithy/util-endpoints": "npm:^3.2.7"
"@smithy/util-middleware": "npm:^4.2.7"
"@smithy/util-retry": "npm:^4.2.7"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/13be9f54c65b918ba4dd6b067c6ef534151a051743e582582a11e13dc19b5e42148167f388997fb400b09a2e1f6a670b704c2e2d45efac6534856abcf3ae6826
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:3.957.0":
version: 3.957.0
resolution: "@aws-sdk/region-config-resolver@npm:3.957.0"
dependencies:
"@aws-sdk/types": "npm:3.957.0"
"@smithy/config-resolver": "npm:^4.4.5"
"@smithy/node-config-provider": "npm:^4.3.7"
"@smithy/types": "npm:^4.11.0"
tslib: "npm:^2.6.2"
checksum: 10c0/09b6830688e716938d4f9f5afa9e818f08a68213dcbc31c06f1a876d68bd83c2816cb6c148f3491030c84d4ea9dfca79a3cf49b14208d7c6c2d40b3bb11cd42f
languageName: node
linkType: hard
"@aws-sdk/signature-v4-multi-region@npm:3.957.0":
version: 3.957.0
resolution: "@aws-sdk/signature-v4-multi-region@npm:3.957.0"
dependencies:
"@aws-sdk/middleware-sdk-s3": "npm:3.957.0"
"@aws-sdk/types": "npm:3.957.0"
"@smithy/protocol-http": "npm:^5.3.7"
"@smithy/signature-v4": "npm:^5.3.7"
"@smithy/types": "npm:^4.11.0"
tslib: "npm:^2.6.2"
checksum: 10c0/7f657a4fe90ca57f2ff9df8825d9e8ef645166ed0fa2e324dec39c05f1f9a2550ddad177a07b2a9e1869988a61994f74078ec6becf2975288f9c70ce0e76fc83
languageName: node
linkType: hard
"@aws-sdk/token-providers@npm:3.957.0":
version: 3.957.0
resolution: "@aws-sdk/token-providers@npm:3.957.0"
dependencies:
"@aws-sdk/core": "npm:3.957.0"
"@aws-sdk/nested-clients": "npm:3.957.0"
"@aws-sdk/types": "npm:3.957.0"
"@smithy/property-provider": "npm:^4.2.7"
"@smithy/shared-ini-file-loader": "npm:^4.4.2"
"@smithy/types": "npm:^4.11.0"
tslib: "npm:^2.6.2"
checksum: 10c0/b8d276f1b9f12a7859a08ee50af3fdf5e2ab289b97ef8e91270e072d506f3a2f7dde6868f3781da79d6d242c34c1273ea033ee8c8cb5d72c52b4a66b1ad4dcde
languageName: node
linkType: hard
"@aws-sdk/types@npm:3.957.0, @aws-sdk/types@npm:^3.222.0":
version: 3.957.0
resolution: "@aws-sdk/types@npm:3.957.0"
dependencies:
"@smithy/types": "npm:^4.11.0"
tslib: "npm:^2.6.2"
checksum: 10c0/8dd9826eff9806689a3321f58ffa51c7731599f0d30b22fb744e82bf0914a1e714b622d319ee00315d4a3d814b895efaff87ea1edf23f0f50c26d2b4de31fe7b
languageName: node
linkType: hard
"@aws-sdk/util-arn-parser@npm:3.957.0":
version: 3.957.0
resolution: "@aws-sdk/util-arn-parser@npm:3.957.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10c0/50f9302180b9cab7768b6092ec91feec4ea239305d9f49ff4aae8227ce7a9d92a2e35b3e9fd4ac68604e478daea34048c7ba0c86c40513bfe502063d9a207de1
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:3.957.0":
version: 3.957.0
resolution: "@aws-sdk/util-endpoints@npm:3.957.0"
dependencies:
"@aws-sdk/types": "npm:3.957.0"
"@smithy/types": "npm:^4.11.0"
"@smithy/url-parser": "npm:^4.2.7"
"@smithy/util-endpoints": "npm:^3.2.7"
tslib: "npm:^2.6.2"
checksum: 10c0/21baf87036d3c6c6ace5e3960af6ffdb6e7c0bf7253904c5faae7fad4cc3d7709bef7c3a19a6347d7511ecf50313e0c7754d470d7ed45dabbcaab3232f5b1c87
languageName: node
linkType: hard
"@aws-sdk/util-locate-window@npm:^3.0.0":
version: 3.957.0
resolution: "@aws-sdk/util-locate-window@npm:3.957.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10c0/d641fe27859a5a9a087765bfe744da6f6d6b58e943faf1dc6c813e608353d398ba2ee5a793abaa32ccac38c311fd96ce6af9866d938df8c902d8e6dc1f6a2a5f
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-browser@npm:3.957.0":
version: 3.957.0
resolution: "@aws-sdk/util-user-agent-browser@npm:3.957.0"
dependencies:
"@aws-sdk/types": "npm:3.957.0"
"@smithy/types": "npm:^4.11.0"
bowser: "npm:^2.11.0"
tslib: "npm:^2.6.2"
checksum: 10c0/342da4e37bcb193cd5564fd3f9ae5875405ad87b411703507e7ddfe9875f24f889afd80d4167c2de57218057a45d1c6c1dc4780d3966537da1e4e6385bd386ef
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-node@npm:3.957.0":
version: 3.957.0
resolution: "@aws-sdk/util-user-agent-node@npm:3.957.0"
dependencies:
"@aws-sdk/middleware-user-agent": "npm:3.957.0"
"@aws-sdk/types": "npm:3.957.0"
"@smithy/node-config-provider": "npm:^4.3.7"
"@smithy/types": "npm:^4.11.0"
tslib: "npm:^2.6.2"
peerDependencies:
aws-crt: ">=1.0.0"
peerDependenciesMeta:
aws-crt:
optional: true
checksum: 10c0/2291d45f056526ed59ed5cefe66557d3f25d11ef080d2fd4d9b313e4e79b4021332b1dfaf9fdce3f8c00d624a0e5dda110caa7d81ff0d46fca87d44faff53757
languageName: node
linkType: hard
"@aws-sdk/xml-builder@npm:3.957.0":
version: 3.957.0
resolution: "@aws-sdk/xml-builder@npm:3.957.0"
dependencies:
"@smithy/types": "npm:^4.11.0"
fast-xml-parser: "npm:5.2.5"
tslib: "npm:^2.6.2"
checksum: 10c0/32eb0fff54a790640b3243802ab9bfdfe2d1734ba23745daaa71f3ab655c1ed19058da803bdfa145250379fd6867e9fc02ec7f5bacff3bf2b3de6c7a3703d491
languageName: node
linkType: hard
"@aws/lambda-invoke-store@npm:^0.2.2":
version: 0.2.2
resolution: "@aws/lambda-invoke-store@npm:0.2.2"
checksum: 10c0/0ce2f527e2ab6b07372a08a137991163b99bf646b8dbbb01dbc5370f4e578aa6ddf7f09a63ecead576f04ce54e52cb927c12683f4d97e322dcb76ddfc5843784
languageName: node
linkType: hard
"@cspotcode/source-map-support@npm:^0.8.0":
version: 0.8.1
resolution: "@cspotcode/source-map-support@npm:0.8.1"
dependencies:
"@jridgewell/trace-mapping": "npm:0.3.9"
checksum: 10c0/05c5368c13b662ee4c122c7bfbe5dc0b613416672a829f3e78bc49a357a197e0218d6e74e7c66cfcd04e15a179acab080bd3c69658c9fbefd0e1ccd950a07fc6
languageName: node
linkType: hard
"@esbuild/aix-ppc64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/aix-ppc64@npm:0.27.2"
conditions: os=aix & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/android-arm64@npm:0.27.2"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/android-arm@npm:0.27.2"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/android-x64@npm:0.27.2"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/darwin-arm64@npm:0.27.2"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/darwin-x64@npm:0.27.2"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/freebsd-arm64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/freebsd-arm64@npm:0.27.2"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/freebsd-x64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/freebsd-x64@npm:0.27.2"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/linux-arm64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/linux-arm64@npm:0.27.2"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@esbuild/linux-arm@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/linux-arm@npm:0.27.2"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@esbuild/linux-ia32@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/linux-ia32@npm:0.27.2"
conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/linux-loong64@npm:0.27.2"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
"@esbuild/linux-mips64el@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/linux-mips64el@npm:0.27.2"
conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
"@esbuild/linux-ppc64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/linux-ppc64@npm:0.27.2"
conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/linux-riscv64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/linux-riscv64@npm:0.27.2"
conditions: os=linux & cpu=riscv64
languageName: node
linkType: hard
"@esbuild/linux-s390x@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/linux-s390x@npm:0.27.2"
conditions: os=linux & cpu=s390x
languageName: node
linkType: hard
"@esbuild/linux-x64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/linux-x64@npm:0.27.2"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@esbuild/netbsd-arm64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/netbsd-arm64@npm:0.27.2"
conditions: os=netbsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/netbsd-x64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/netbsd-x64@npm:0.27.2"
conditions: os=netbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/openbsd-arm64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/openbsd-arm64@npm:0.27.2"
conditions: os=openbsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/openbsd-x64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/openbsd-x64@npm:0.27.2"
conditions: os=openbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/openharmony-arm64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/openharmony-arm64@npm:0.27.2"
conditions: os=openharmony & cpu=arm64
languageName: node
linkType: hard
"@esbuild/sunos-x64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/sunos-x64@npm:0.27.2"
conditions: os=sunos & cpu=x64
languageName: node
linkType: hard
"@esbuild/win32-arm64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/win32-arm64@npm:0.27.2"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@esbuild/win32-ia32@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/win32-ia32@npm:0.27.2"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@esbuild/win32-x64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/win32-x64@npm:0.27.2"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@eslint-community/eslint-utils@npm:^4.7.0, @eslint-community/eslint-utils@npm:^4.8.0":
version: 4.9.0
resolution: "@eslint-community/eslint-utils@npm:4.9.0"
dependencies:
eslint-visitor-keys: "npm:^3.4.3"
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
checksum: 10c0/8881e22d519326e7dba85ea915ac7a143367c805e6ba1374c987aa2fbdd09195cc51183d2da72c0e2ff388f84363e1b220fd0d19bef10c272c63455162176817
languageName: node
linkType: hard
"@eslint-community/regexpp@npm:^4.10.0, @eslint-community/regexpp@npm:^4.12.1":
version: 4.12.2
resolution: "@eslint-community/regexpp@npm:4.12.2"
checksum: 10c0/fddcbc66851b308478d04e302a4d771d6917a0b3740dc351513c0da9ca2eab8a1adf99f5e0aa7ab8b13fa0df005c81adeee7e63a92f3effd7d367a163b721c2d
languageName: node
linkType: hard
"@eslint/config-array@npm:^0.21.1":
version: 0.21.1
resolution: "@eslint/config-array@npm:0.21.1"
dependencies:
"@eslint/object-schema": "npm:^2.1.7"
debug: "npm:^4.3.1"
minimatch: "npm:^3.1.2"
checksum: 10c0/2f657d4edd6ddcb920579b72e7a5b127865d4c3fb4dda24f11d5c4f445a93ca481aebdbd6bf3291c536f5d034458dbcbb298ee3b698bc6c9dd02900fe87eec3c
languageName: node
linkType: hard
"@eslint/config-helpers@npm:^0.4.2":
version: 0.4.2
resolution: "@eslint/config-helpers@npm:0.4.2"
dependencies:
"@eslint/core": "npm:^0.17.0"
checksum: 10c0/92efd7a527b2d17eb1a148409d71d80f9ac160b565ac73ee092252e8bf08ecd08670699f46b306b94f13d22e88ac88a612120e7847570dd7cdc72f234d50dcb4
languageName: node
linkType: hard
"@eslint/core@npm:^0.17.0":
version: 0.17.0
resolution: "@eslint/core@npm:0.17.0"
dependencies:
"@types/json-schema": "npm:^7.0.15"
checksum: 10c0/9a580f2246633bc752298e7440dd942ec421860d1946d0801f0423830e67887e4aeba10ab9a23d281727a978eb93d053d1922a587d502942a713607f40ed704e
languageName: node
linkType: hard
"@eslint/eslintrc@npm:^3.3.1":
version: 3.3.3
resolution: "@eslint/eslintrc@npm:3.3.3"
dependencies:
ajv: "npm:^6.12.4"
debug: "npm:^4.3.2"
espree: "npm:^10.0.1"
globals: "npm:^14.0.0"
ignore: "npm:^5.2.0"
import-fresh: "npm:^3.2.1"
js-yaml: "npm:^4.1.1"
minimatch: "npm:^3.1.2"
strip-json-comments: "npm:^3.1.1"
checksum: 10c0/532c7acc7ddd042724c28b1f020bd7bf148fcd4653bb44c8314168b5f772508c842ce4ee070299cac51c5c5757d2124bdcfcef5551c8c58ff9986e3e17f2260d
languageName: node
linkType: hard
"@eslint/js@npm:9.39.2, @eslint/js@npm:^9.39.2":
version: 9.39.2
resolution: "@eslint/js@npm:9.39.2"
checksum: 10c0/00f51c52b04ac79faebfaa65a9652b2093b9c924e945479f1f3945473f78aee83cbc76c8d70bbffbf06f7024626575b16d97b66eab16182e1d0d39daff2f26f5
languageName: node
linkType: hard
"@eslint/object-schema@npm:^2.1.7":
version: 2.1.7
resolution: "@eslint/object-schema@npm:2.1.7"
checksum: 10c0/936b6e499853d1335803f556d526c86f5fe2259ed241bc665000e1d6353828edd913feed43120d150adb75570cae162cf000b5b0dfc9596726761c36b82f4e87
languageName: node
linkType: hard
"@eslint/plugin-kit@npm:^0.4.1":
version: 0.4.1
resolution: "@eslint/plugin-kit@npm:0.4.1"
dependencies:
"@eslint/core": "npm:^0.17.0"
levn: "npm:^0.4.1"
checksum: 10c0/51600f78b798f172a9915dffb295e2ffb44840d583427bc732baf12ecb963eb841b253300e657da91d890f4b323d10a1bd12934bf293e3018d8bb66fdce5217b
languageName: node
linkType: hard
"@fastify/ajv-compiler@npm:^4.0.0":
version: 4.0.5
resolution: "@fastify/ajv-compiler@npm:4.0.5"
dependencies:
ajv: "npm:^8.12.0"
ajv-formats: "npm:^3.0.1"
fast-uri: "npm:^3.0.0"
checksum: 10c0/b701602c5fad35d1327a6ebda530ca5ba2c7728223cd214b2b24af7cb2522c864b6cbbe77335ddd6a55d03f76899fb009386da783121b7ece136feb7ea937e13
languageName: node
linkType: hard
"@fastify/autoload@npm:^6.3.1":
version: 6.3.1
resolution: "@fastify/autoload@npm:6.3.1"
checksum: 10c0/7e45aafbdc8f884b260c8de4f3e19b024843c50908d1a6d0fd27fff2fd254651a4fa38867607e7f1cfaf3d68fcd86a5fe05a20765dae8c1c310600f3be668416
languageName: node
linkType: hard
"@fastify/cookie@npm:^11.0.2":
version: 11.0.2
resolution: "@fastify/cookie@npm:11.0.2"
dependencies:
cookie: "npm:^1.0.0"
fastify-plugin: "npm:^5.0.0"
checksum: 10c0/055aef3260e2a95115e976d820faeacf2513790e99c589c6bfeef06ead181b501a5bd18fb6fa8c507fd2a284cb2e0808e180ab2e64138269f717383e82a75384
languageName: node
linkType: hard
"@fastify/cors@npm:^11.2.0":
version: 11.2.0
resolution: "@fastify/cors@npm:11.2.0"
dependencies:
fastify-plugin: "npm:^5.0.0"
toad-cache: "npm:^3.7.0"
checksum: 10c0/a3c4f20041196fe6c1f807a4600e9a9842f6984dc7bf362e068048a40d643e106a5679a4f58ee2cf9afb9edddbfd546477f97ed3106ac188dc704fd975cea7f9
languageName: node
linkType: hard
"@fastify/error@npm:^4.0.0":
version: 4.2.0
resolution: "@fastify/error@npm:4.2.0"
checksum: 10c0/8bdafe95b368a71dfc5644ef22e0a2412dfbb2f300cf4658fdbd9035c96d7c034c53fd7d38e1150437d9cf7a2d75e6bd05e458cf9ba5f2e47e527df8a5e0bd4e
languageName: node
linkType: hard
"@fastify/fast-json-stringify-compiler@npm:^5.0.0":
version: 5.0.3
resolution: "@fastify/fast-json-stringify-compiler@npm:5.0.3"
dependencies:
fast-json-stringify: "npm:^6.0.0"
checksum: 10c0/1f0e33c973fc228de44d997a8a1a43e883a580a8c971773bb9cb2375b0114694f81b47c52ac7e788eb6372d1f3dfc10be3176bad354a80d502d8b26a93dbc6c9
languageName: node
linkType: hard
"@fastify/forwarded@npm:^3.0.0":
version: 3.0.1
resolution: "@fastify/forwarded@npm:3.0.1"
checksum: 10c0/fad9f7fb7ff4bf2f8ba782f79d46de190469817ed1bd55dc789927c381a38e63b53ab8c127d9444d703a449c5393529533bea365a25f6eb85a5ecbc78460be2a
languageName: node
linkType: hard
"@fastify/merge-json-schemas@npm:^0.2.0":
version: 0.2.1
resolution: "@fastify/merge-json-schemas@npm:0.2.1"
dependencies:
dequal: "npm:^2.0.3"
checksum: 10c0/dfa884a8f62d53f71de273fdcd0e501b213367767a7d8c522ae87ba6fb571b3eea85175d6e019036d7c0c5419be60305abe54899b9459f76ed5333358699efcb
languageName: node
linkType: hard
"@fastify/proxy-addr@npm:^5.0.0":
version: 5.1.0
resolution: "@fastify/proxy-addr@npm:5.1.0"
dependencies:
"@fastify/forwarded": "npm:^3.0.0"
ipaddr.js: "npm:^2.1.0"
checksum: 10c0/d9167e848086cb66a0ae8b008eb6a79e9ae0e17c3e8697a3a22b23152376e22843bea6642a2c07eba5460faa786ebda6157dfa6537ac7b733f758428cd51988b
languageName: node
linkType: hard
"@fastify/session@npm:^11.1.1":
version: 11.1.1
resolution: "@fastify/session@npm:11.1.1"
dependencies:
fastify-plugin: "npm:^5.0.1"
safe-stable-stringify: "npm:^2.4.3"
checksum: 10c0/61ad044b1ec6f8bba36ebd1969d839859d724c417d6838063bb59a1946864833557d36bf213c00e2e67326c151f6eb34328cce05543d9149aa40e8d205f502ff
languageName: node
linkType: hard
"@fastify/type-provider-typebox@npm:^6.1.0":
version: 6.1.0
resolution: "@fastify/type-provider-typebox@npm:6.1.0"
peerDependencies:
typebox: ^1.0.13
checksum: 10c0/a1411b5292bdbf48fa473650b751861b9f7a2f1b0412f442f2a5f86a1503eb39e6147829832987bf5dba3e389e47704bff92c9a669e6d4398fcb486d92f90e28
languageName: node
linkType: hard
"@foliojs-fork/fontkit@npm:^1.9.2":
version: 1.9.2
resolution: "@foliojs-fork/fontkit@npm:1.9.2"
dependencies:
"@foliojs-fork/restructure": "npm:^2.0.2"
brotli: "npm:^1.2.0"
clone: "npm:^1.0.4"
deep-equal: "npm:^1.0.0"
dfa: "npm:^1.2.0"
tiny-inflate: "npm:^1.0.2"
unicode-properties: "npm:^1.2.2"
unicode-trie: "npm:^2.0.0"
checksum: 10c0/0855b621942aeaec3a20261154532b3a4653cc530e5429954b9ec2bd61805a484a450a43229d0e836e78d08674ac729d81193ac03347b0e202646d900446ce84
languageName: node
linkType: hard
"@foliojs-fork/linebreak@npm:^1.1.1, @foliojs-fork/linebreak@npm:^1.1.2":
version: 1.1.2
resolution: "@foliojs-fork/linebreak@npm:1.1.2"
dependencies:
base64-js: "npm:1.3.1"
unicode-trie: "npm:^2.0.0"
checksum: 10c0/5791eab874ae120bbe7bbd5a70675d3f88869376dfba3c76c61487b42275eeaf07026de22f074c5d4b5fdde900b43cac1289c6c142aca6015ccdb0da1166c3e8
languageName: node
linkType: hard
"@foliojs-fork/pdfkit@npm:^0.15.3":
version: 0.15.3
resolution: "@foliojs-fork/pdfkit@npm:0.15.3"
dependencies:
"@foliojs-fork/fontkit": "npm:^1.9.2"
"@foliojs-fork/linebreak": "npm:^1.1.1"
crypto-js: "npm:^4.2.0"
jpeg-exif: "npm:^1.1.4"
png-js: "npm:^1.0.0"
checksum: 10c0/5f3edff0182a6e29d12891e1573be6837035de8d4a4aa446ebf5ee561224b6f11b059cda05dd82a91bbe3de2cedc9676c59980506d5daf209a5d564865a297cb
languageName: node
linkType: hard
"@foliojs-fork/restructure@npm:^2.0.2":
version: 2.0.2
resolution: "@foliojs-fork/restructure@npm:2.0.2"
checksum: 10c0/f9e6e94f7377f467a93988ee85cf326f2db3edd3029530791aced6d530fd7862efb27b00212beb8df6f7458cbec4acb6b198b36535d1acee3fb413c1d5ac55ac
languageName: node
linkType: hard
"@humanfs/core@npm:^0.19.1":
version: 0.19.1
resolution: "@humanfs/core@npm:0.19.1"
checksum: 10c0/aa4e0152171c07879b458d0e8a704b8c3a89a8c0541726c6b65b81e84fd8b7564b5d6c633feadc6598307d34564bd53294b533491424e8e313d7ab6c7bc5dc67
languageName: node
linkType: hard
"@humanfs/node@npm:^0.16.6":
version: 0.16.7
resolution: "@humanfs/node@npm:0.16.7"
dependencies:
"@humanfs/core": "npm:^0.19.1"
"@humanwhocodes/retry": "npm:^0.4.0"
checksum: 10c0/9f83d3cf2cfa37383e01e3cdaead11cd426208e04c44adcdd291aa983aaf72d7d3598844d2fe9ce54896bb1bf8bd4b56883376611c8905a19c44684642823f30
languageName: node
linkType: hard
"@humanwhocodes/module-importer@npm:^1.0.1":
version: 1.0.1
resolution: "@humanwhocodes/module-importer@npm:1.0.1"
checksum: 10c0/909b69c3b86d482c26b3359db16e46a32e0fb30bd306a3c176b8313b9e7313dba0f37f519de6aa8b0a1921349e505f259d19475e123182416a506d7f87e7f529
languageName: node
linkType: hard