-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathyarn.lock
More file actions
4206 lines (3806 loc) · 152 KB
/
yarn.lock
File metadata and controls
4206 lines (3806 loc) · 152 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: 9
cacheKey: 10c0
"@aws-crypto/crc32@npm:5.2.0":
version: 5.2.0
resolution: "@aws-crypto/crc32@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/eab9581d3363af5ea498ae0e72de792f54d8890360e14a9d8261b7b5c55ebe080279fb2556e07994d785341cdaa99ab0b1ccf137832b53b5904cd6928f2b094b
languageName: node
linkType: hard
"@aws-crypto/crc32c@npm:5.2.0":
version: 5.2.0
resolution: "@aws-crypto/crc32c@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/223efac396cdebaf5645568fa9a38cd0c322c960ae1f4276bedfe2e1031d0112e49d7d39225d386354680ecefae29f39af469a84b2ddfa77cb6692036188af77
languageName: node
linkType: hard
"@aws-crypto/sha1-browser@npm:5.2.0":
version: 5.2.0
resolution: "@aws-crypto/sha1-browser@npm:5.2.0"
dependencies:
"@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/51fed0bf078c10322d910af179871b7d299dde5b5897873ffbeeb036f427e5d11d23db9794439226544b73901920fd19f4d86bbc103ed73cc0cfdea47a83c6ac
languageName: node
linkType: hard
"@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, @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-dynamodb@npm:^3.428.0":
version: 3.908.0
resolution: "@aws-sdk/client-dynamodb@npm:3.908.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.908.0"
"@aws-sdk/credential-provider-node": "npm:3.908.0"
"@aws-sdk/middleware-endpoint-discovery": "npm:3.901.0"
"@aws-sdk/middleware-host-header": "npm:3.901.0"
"@aws-sdk/middleware-logger": "npm:3.901.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.901.0"
"@aws-sdk/middleware-user-agent": "npm:3.908.0"
"@aws-sdk/region-config-resolver": "npm:3.901.0"
"@aws-sdk/types": "npm:3.901.0"
"@aws-sdk/util-endpoints": "npm:3.901.0"
"@aws-sdk/util-user-agent-browser": "npm:3.907.0"
"@aws-sdk/util-user-agent-node": "npm:3.908.0"
"@smithy/config-resolver": "npm:^4.3.0"
"@smithy/core": "npm:^3.15.0"
"@smithy/fetch-http-handler": "npm:^5.3.1"
"@smithy/hash-node": "npm:^4.2.0"
"@smithy/invalid-dependency": "npm:^4.2.0"
"@smithy/middleware-content-length": "npm:^4.2.0"
"@smithy/middleware-endpoint": "npm:^4.3.1"
"@smithy/middleware-retry": "npm:^4.4.1"
"@smithy/middleware-serde": "npm:^4.2.0"
"@smithy/middleware-stack": "npm:^4.2.0"
"@smithy/node-config-provider": "npm:^4.3.0"
"@smithy/node-http-handler": "npm:^4.3.0"
"@smithy/protocol-http": "npm:^5.3.0"
"@smithy/smithy-client": "npm:^4.7.1"
"@smithy/types": "npm:^4.6.0"
"@smithy/url-parser": "npm:^4.2.0"
"@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.0"
"@smithy/util-defaults-mode-node": "npm:^4.2.1"
"@smithy/util-endpoints": "npm:^3.2.0"
"@smithy/util-middleware": "npm:^4.2.0"
"@smithy/util-retry": "npm:^4.2.0"
"@smithy/util-utf8": "npm:^4.2.0"
"@smithy/util-waiter": "npm:^4.2.0"
"@smithy/uuid": "npm:^1.1.0"
tslib: "npm:^2.6.2"
checksum: 10c0/1d9900089ea7a8d743511648f2ac99ce38b2f023347ab59357f77abf4d957500f60e7adf3fb9c8f127daec291da5653cabb7d5a0f2e8007983d664c251fdb257
languageName: node
linkType: hard
"@aws-sdk/client-lambda@npm:^3.636.0":
version: 3.908.0
resolution: "@aws-sdk/client-lambda@npm:3.908.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.908.0"
"@aws-sdk/credential-provider-node": "npm:3.908.0"
"@aws-sdk/middleware-host-header": "npm:3.901.0"
"@aws-sdk/middleware-logger": "npm:3.901.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.901.0"
"@aws-sdk/middleware-user-agent": "npm:3.908.0"
"@aws-sdk/region-config-resolver": "npm:3.901.0"
"@aws-sdk/types": "npm:3.901.0"
"@aws-sdk/util-endpoints": "npm:3.901.0"
"@aws-sdk/util-user-agent-browser": "npm:3.907.0"
"@aws-sdk/util-user-agent-node": "npm:3.908.0"
"@smithy/config-resolver": "npm:^4.3.0"
"@smithy/core": "npm:^3.15.0"
"@smithy/eventstream-serde-browser": "npm:^4.2.0"
"@smithy/eventstream-serde-config-resolver": "npm:^4.3.0"
"@smithy/eventstream-serde-node": "npm:^4.2.0"
"@smithy/fetch-http-handler": "npm:^5.3.1"
"@smithy/hash-node": "npm:^4.2.0"
"@smithy/invalid-dependency": "npm:^4.2.0"
"@smithy/middleware-content-length": "npm:^4.2.0"
"@smithy/middleware-endpoint": "npm:^4.3.1"
"@smithy/middleware-retry": "npm:^4.4.1"
"@smithy/middleware-serde": "npm:^4.2.0"
"@smithy/middleware-stack": "npm:^4.2.0"
"@smithy/node-config-provider": "npm:^4.3.0"
"@smithy/node-http-handler": "npm:^4.3.0"
"@smithy/protocol-http": "npm:^5.3.0"
"@smithy/smithy-client": "npm:^4.7.1"
"@smithy/types": "npm:^4.6.0"
"@smithy/url-parser": "npm:^4.2.0"
"@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.0"
"@smithy/util-defaults-mode-node": "npm:^4.2.1"
"@smithy/util-endpoints": "npm:^3.2.0"
"@smithy/util-middleware": "npm:^4.2.0"
"@smithy/util-retry": "npm:^4.2.0"
"@smithy/util-stream": "npm:^4.5.0"
"@smithy/util-utf8": "npm:^4.2.0"
"@smithy/util-waiter": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/be90738561b95d6892ae5fea208e82f6654416fee8b75b89a950c6cd43b67a0bb003dafbdcb5ae4a02526b73c56a435e70de15ddabb0cde9256ab776a5cb5d85
languageName: node
linkType: hard
"@aws-sdk/client-s3@npm:^3.53.1":
version: 3.908.0
resolution: "@aws-sdk/client-s3@npm:3.908.0"
dependencies:
"@aws-crypto/sha1-browser": "npm:5.2.0"
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.908.0"
"@aws-sdk/credential-provider-node": "npm:3.908.0"
"@aws-sdk/middleware-bucket-endpoint": "npm:3.901.0"
"@aws-sdk/middleware-expect-continue": "npm:3.901.0"
"@aws-sdk/middleware-flexible-checksums": "npm:3.908.0"
"@aws-sdk/middleware-host-header": "npm:3.901.0"
"@aws-sdk/middleware-location-constraint": "npm:3.901.0"
"@aws-sdk/middleware-logger": "npm:3.901.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.901.0"
"@aws-sdk/middleware-sdk-s3": "npm:3.908.0"
"@aws-sdk/middleware-ssec": "npm:3.901.0"
"@aws-sdk/middleware-user-agent": "npm:3.908.0"
"@aws-sdk/region-config-resolver": "npm:3.901.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.908.0"
"@aws-sdk/types": "npm:3.901.0"
"@aws-sdk/util-endpoints": "npm:3.901.0"
"@aws-sdk/util-user-agent-browser": "npm:3.907.0"
"@aws-sdk/util-user-agent-node": "npm:3.908.0"
"@aws-sdk/xml-builder": "npm:3.901.0"
"@smithy/config-resolver": "npm:^4.3.0"
"@smithy/core": "npm:^3.15.0"
"@smithy/eventstream-serde-browser": "npm:^4.2.0"
"@smithy/eventstream-serde-config-resolver": "npm:^4.3.0"
"@smithy/eventstream-serde-node": "npm:^4.2.0"
"@smithy/fetch-http-handler": "npm:^5.3.1"
"@smithy/hash-blob-browser": "npm:^4.2.1"
"@smithy/hash-node": "npm:^4.2.0"
"@smithy/hash-stream-node": "npm:^4.2.0"
"@smithy/invalid-dependency": "npm:^4.2.0"
"@smithy/md5-js": "npm:^4.2.0"
"@smithy/middleware-content-length": "npm:^4.2.0"
"@smithy/middleware-endpoint": "npm:^4.3.1"
"@smithy/middleware-retry": "npm:^4.4.1"
"@smithy/middleware-serde": "npm:^4.2.0"
"@smithy/middleware-stack": "npm:^4.2.0"
"@smithy/node-config-provider": "npm:^4.3.0"
"@smithy/node-http-handler": "npm:^4.3.0"
"@smithy/protocol-http": "npm:^5.3.0"
"@smithy/smithy-client": "npm:^4.7.1"
"@smithy/types": "npm:^4.6.0"
"@smithy/url-parser": "npm:^4.2.0"
"@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.0"
"@smithy/util-defaults-mode-node": "npm:^4.2.1"
"@smithy/util-endpoints": "npm:^3.2.0"
"@smithy/util-middleware": "npm:^4.2.0"
"@smithy/util-retry": "npm:^4.2.0"
"@smithy/util-stream": "npm:^4.5.0"
"@smithy/util-utf8": "npm:^4.2.0"
"@smithy/util-waiter": "npm:^4.2.0"
"@smithy/uuid": "npm:^1.1.0"
tslib: "npm:^2.6.2"
checksum: 10c0/219b618387eaf10c1da9f7b774d44bd68225ae3b7cd3c2bd297e66094326c979e8a26d4788cab670f19f48366fd0384480d6939e799fba445ad156e937a142be
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.908.0":
version: 3.908.0
resolution: "@aws-sdk/client-sso@npm:3.908.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.908.0"
"@aws-sdk/middleware-host-header": "npm:3.901.0"
"@aws-sdk/middleware-logger": "npm:3.901.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.901.0"
"@aws-sdk/middleware-user-agent": "npm:3.908.0"
"@aws-sdk/region-config-resolver": "npm:3.901.0"
"@aws-sdk/types": "npm:3.901.0"
"@aws-sdk/util-endpoints": "npm:3.901.0"
"@aws-sdk/util-user-agent-browser": "npm:3.907.0"
"@aws-sdk/util-user-agent-node": "npm:3.908.0"
"@smithy/config-resolver": "npm:^4.3.0"
"@smithy/core": "npm:^3.15.0"
"@smithy/fetch-http-handler": "npm:^5.3.1"
"@smithy/hash-node": "npm:^4.2.0"
"@smithy/invalid-dependency": "npm:^4.2.0"
"@smithy/middleware-content-length": "npm:^4.2.0"
"@smithy/middleware-endpoint": "npm:^4.3.1"
"@smithy/middleware-retry": "npm:^4.4.1"
"@smithy/middleware-serde": "npm:^4.2.0"
"@smithy/middleware-stack": "npm:^4.2.0"
"@smithy/node-config-provider": "npm:^4.3.0"
"@smithy/node-http-handler": "npm:^4.3.0"
"@smithy/protocol-http": "npm:^5.3.0"
"@smithy/smithy-client": "npm:^4.7.1"
"@smithy/types": "npm:^4.6.0"
"@smithy/url-parser": "npm:^4.2.0"
"@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.0"
"@smithy/util-defaults-mode-node": "npm:^4.2.1"
"@smithy/util-endpoints": "npm:^3.2.0"
"@smithy/util-middleware": "npm:^4.2.0"
"@smithy/util-retry": "npm:^4.2.0"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/bfd3525f394ee87ddd1b0cc92e334f00e21a5b31f3fd85ee09d2797190cdbd70e96bf1f88dd2a13252b0f704a633c60f90779b7e8ee7cbf03b20bc86cb287d0b
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.908.0":
version: 3.908.0
resolution: "@aws-sdk/core@npm:3.908.0"
dependencies:
"@aws-sdk/types": "npm:3.901.0"
"@aws-sdk/xml-builder": "npm:3.901.0"
"@smithy/core": "npm:^3.15.0"
"@smithy/node-config-provider": "npm:^4.3.0"
"@smithy/property-provider": "npm:^4.2.0"
"@smithy/protocol-http": "npm:^5.3.0"
"@smithy/signature-v4": "npm:^5.3.0"
"@smithy/smithy-client": "npm:^4.7.1"
"@smithy/types": "npm:^4.6.0"
"@smithy/util-base64": "npm:^4.3.0"
"@smithy/util-middleware": "npm:^4.2.0"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/fa5ab0d33a30155df388133f8298293d08360313703bfa7a15a077866760adfe97d636824a6866dc5cae90655f8e59b6ce93460ce72911e133ab2e48c4cc746d
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.908.0":
version: 3.908.0
resolution: "@aws-sdk/credential-provider-env@npm:3.908.0"
dependencies:
"@aws-sdk/core": "npm:3.908.0"
"@aws-sdk/types": "npm:3.901.0"
"@smithy/property-provider": "npm:^4.2.0"
"@smithy/types": "npm:^4.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/d9e6630d28cf1374b334e0cf6a6a8331352bddcf5b6305d1b32e6d07716a835cce258927cb82d9cc309f3a67e810a80c4458f53540f6f1185382e023db8498f5
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.908.0":
version: 3.908.0
resolution: "@aws-sdk/credential-provider-http@npm:3.908.0"
dependencies:
"@aws-sdk/core": "npm:3.908.0"
"@aws-sdk/types": "npm:3.901.0"
"@smithy/fetch-http-handler": "npm:^5.3.1"
"@smithy/node-http-handler": "npm:^4.3.0"
"@smithy/property-provider": "npm:^4.2.0"
"@smithy/protocol-http": "npm:^5.3.0"
"@smithy/smithy-client": "npm:^4.7.1"
"@smithy/types": "npm:^4.6.0"
"@smithy/util-stream": "npm:^4.5.0"
tslib: "npm:^2.6.2"
checksum: 10c0/9624570866310a663199bde3deb9d91c748cd177319f06dfafa32521d820e7aa1c2aa5ad421993a14de5ed2e6f55dd89e8ac406b0c73f040444c1c9e9164634c
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.908.0":
version: 3.908.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.908.0"
dependencies:
"@aws-sdk/core": "npm:3.908.0"
"@aws-sdk/credential-provider-env": "npm:3.908.0"
"@aws-sdk/credential-provider-http": "npm:3.908.0"
"@aws-sdk/credential-provider-process": "npm:3.908.0"
"@aws-sdk/credential-provider-sso": "npm:3.908.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.908.0"
"@aws-sdk/nested-clients": "npm:3.908.0"
"@aws-sdk/types": "npm:3.901.0"
"@smithy/credential-provider-imds": "npm:^4.2.0"
"@smithy/property-provider": "npm:^4.2.0"
"@smithy/shared-ini-file-loader": "npm:^4.3.0"
"@smithy/types": "npm:^4.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/baa78040ca5174ed2db4b2b2f7df5b7e01344bcb4a0ffb7937fdb3568ef5c206c9d3dfa536fa49b44705c33b1e685584c2267c745c0c557dd80a62290d01a511
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.908.0":
version: 3.908.0
resolution: "@aws-sdk/credential-provider-node@npm:3.908.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.908.0"
"@aws-sdk/credential-provider-http": "npm:3.908.0"
"@aws-sdk/credential-provider-ini": "npm:3.908.0"
"@aws-sdk/credential-provider-process": "npm:3.908.0"
"@aws-sdk/credential-provider-sso": "npm:3.908.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.908.0"
"@aws-sdk/types": "npm:3.901.0"
"@smithy/credential-provider-imds": "npm:^4.2.0"
"@smithy/property-provider": "npm:^4.2.0"
"@smithy/shared-ini-file-loader": "npm:^4.3.0"
"@smithy/types": "npm:^4.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/32a32574aaee9e5968af6e81016c86630f973af30d93dd219d000a5208dd8ecce271e4eb782d2cb5a8dc6b334cd207fc1742db5cdd01e2bd90259cff54d12d27
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.908.0":
version: 3.908.0
resolution: "@aws-sdk/credential-provider-process@npm:3.908.0"
dependencies:
"@aws-sdk/core": "npm:3.908.0"
"@aws-sdk/types": "npm:3.901.0"
"@smithy/property-provider": "npm:^4.2.0"
"@smithy/shared-ini-file-loader": "npm:^4.3.0"
"@smithy/types": "npm:^4.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/be167dbbd903d9318f195009c9c389f5e00ba167d5d3ba739557873c3b5eb7b384e3c590a50a291a49c97277e498c110c68300aa5f030f2e25269e48e8bd6905
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.908.0":
version: 3.908.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.908.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.908.0"
"@aws-sdk/core": "npm:3.908.0"
"@aws-sdk/token-providers": "npm:3.908.0"
"@aws-sdk/types": "npm:3.901.0"
"@smithy/property-provider": "npm:^4.2.0"
"@smithy/shared-ini-file-loader": "npm:^4.3.0"
"@smithy/types": "npm:^4.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/db8c49140bb16cdf904e46296e238403c44d0cecd1f3fe7d1d36453891eb63c39c0c9d5fee4655d3f94f59ac9b28e3eb33beb360f2c399ef575ca8f949f0923a
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.908.0":
version: 3.908.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.908.0"
dependencies:
"@aws-sdk/core": "npm:3.908.0"
"@aws-sdk/nested-clients": "npm:3.908.0"
"@aws-sdk/types": "npm:3.901.0"
"@smithy/property-provider": "npm:^4.2.0"
"@smithy/shared-ini-file-loader": "npm:^4.3.0"
"@smithy/types": "npm:^4.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/7eb01e9c035a41b3b3694643d665d7a71e683cceb239e6e3a0a9844c5a664a34b790a820eed4ac3c0dd9d6eb9e0092ebd0a9d79c6529189d68c81ce9d53cdd0e
languageName: node
linkType: hard
"@aws-sdk/endpoint-cache@npm:3.893.0":
version: 3.893.0
resolution: "@aws-sdk/endpoint-cache@npm:3.893.0"
dependencies:
mnemonist: "npm:0.38.3"
tslib: "npm:^2.6.2"
checksum: 10c0/6f7725ab605b57ef6d19eec78cff1e3b21296640e16da496216671583fe0aef69f6bc4b982110460784c8c2c607f034944c88eda32a36da87482081847a9ce9e
languageName: node
linkType: hard
"@aws-sdk/lib-dynamodb@npm:^3.428.0":
version: 3.908.0
resolution: "@aws-sdk/lib-dynamodb@npm:3.908.0"
dependencies:
"@aws-sdk/core": "npm:3.908.0"
"@aws-sdk/util-dynamodb": "npm:3.908.0"
"@smithy/core": "npm:^3.15.0"
"@smithy/smithy-client": "npm:^4.7.1"
"@smithy/types": "npm:^4.6.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-dynamodb": ^3.908.0
checksum: 10c0/27f4d6f76d7fe867f54c1e4209ce33b9fce0ac67892b4240d2436ec60e3395541dc493fc18935201f6f24b23d1f9a1ac4af0780f7d574447fc4e406c66bf1a8b
languageName: node
linkType: hard
"@aws-sdk/middleware-bucket-endpoint@npm:3.901.0":
version: 3.901.0
resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.901.0"
dependencies:
"@aws-sdk/types": "npm:3.901.0"
"@aws-sdk/util-arn-parser": "npm:3.893.0"
"@smithy/node-config-provider": "npm:^4.3.0"
"@smithy/protocol-http": "npm:^5.3.0"
"@smithy/types": "npm:^4.6.0"
"@smithy/util-config-provider": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/d3675d7468e4c268854bfcd945683bd87e55f194ff19379977a9df77591f5ab57258836cceed5aefad33ae783e5dd0120d8d2a983b1acdcae90058a6fc572d41
languageName: node
linkType: hard
"@aws-sdk/middleware-endpoint-discovery@npm:3.901.0":
version: 3.901.0
resolution: "@aws-sdk/middleware-endpoint-discovery@npm:3.901.0"
dependencies:
"@aws-sdk/endpoint-cache": "npm:3.893.0"
"@aws-sdk/types": "npm:3.901.0"
"@smithy/node-config-provider": "npm:^4.3.0"
"@smithy/protocol-http": "npm:^5.3.0"
"@smithy/types": "npm:^4.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/acbabdc1626dabb47a47c76f36e9388c5618a0939858aa2a21822dab4286f3caa08a033b41d4b357e54c8a0989a4ea1dd8e901106ed8a6d968d7f3cd1717aa33
languageName: node
linkType: hard
"@aws-sdk/middleware-expect-continue@npm:3.901.0":
version: 3.901.0
resolution: "@aws-sdk/middleware-expect-continue@npm:3.901.0"
dependencies:
"@aws-sdk/types": "npm:3.901.0"
"@smithy/protocol-http": "npm:^5.3.0"
"@smithy/types": "npm:^4.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/534714439b8f62e9b8ac0fb75d40b2cb51c4c69745ca80a2fc79cd927d492eba5748f0a0a8aacd5a0f11f621f718756504a5792b2445d3643b4aa5ee7df50666
languageName: node
linkType: hard
"@aws-sdk/middleware-flexible-checksums@npm:3.908.0":
version: 3.908.0
resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.908.0"
dependencies:
"@aws-crypto/crc32": "npm:5.2.0"
"@aws-crypto/crc32c": "npm:5.2.0"
"@aws-crypto/util": "npm:5.2.0"
"@aws-sdk/core": "npm:3.908.0"
"@aws-sdk/types": "npm:3.901.0"
"@smithy/is-array-buffer": "npm:^4.2.0"
"@smithy/node-config-provider": "npm:^4.3.0"
"@smithy/protocol-http": "npm:^5.3.0"
"@smithy/types": "npm:^4.6.0"
"@smithy/util-middleware": "npm:^4.2.0"
"@smithy/util-stream": "npm:^4.5.0"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/b095aa66ff629559c4f6f8a3db79ad55f06de2cd449b186249fa7785d7f081a96195cb95c68835113b72e74552c6411eebc8df491c2f5f272af946e9d1461a2c
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.901.0":
version: 3.901.0
resolution: "@aws-sdk/middleware-host-header@npm:3.901.0"
dependencies:
"@aws-sdk/types": "npm:3.901.0"
"@smithy/protocol-http": "npm:^5.3.0"
"@smithy/types": "npm:^4.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/f36cffb33532df97f7480a9a0705a0d3e874861b12e10d3b1713ef4f830e1d17e8568c3baff1c4c05ad681115af6e8e4f84d828a9834a9df8b6127fbc5af5f48
languageName: node
linkType: hard
"@aws-sdk/middleware-location-constraint@npm:3.901.0":
version: 3.901.0
resolution: "@aws-sdk/middleware-location-constraint@npm:3.901.0"
dependencies:
"@aws-sdk/types": "npm:3.901.0"
"@smithy/types": "npm:^4.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/a1e57365274bf89dc1b74e70be377de819251ac529d140442401bc7f968021a429ae0a77edd68cbac868905a7ded7a9d09aaedac89117f15ad2c01e1bed91fea
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.901.0":
version: 3.901.0
resolution: "@aws-sdk/middleware-logger@npm:3.901.0"
dependencies:
"@aws-sdk/types": "npm:3.901.0"
"@smithy/types": "npm:^4.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/6ad444c2d791d2f8158c1e5262cdc12591a41164f63c660eb8874d4f915f007001d152deb426874ff4d4b1326d5e6b18bbdfe3087fa6fdc9ce7c88ed6bb75997
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.901.0":
version: 3.901.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.901.0"
dependencies:
"@aws-sdk/types": "npm:3.901.0"
"@aws/lambda-invoke-store": "npm:^0.0.1"
"@smithy/protocol-http": "npm:^5.3.0"
"@smithy/types": "npm:^4.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/428d2da0d4583c8b33e5c10153b5cfebf572962a11df7501c35b5361b9e39fc9ab7b8778484a8f29d521f1ba37865bf0a441650de7c539e707714d4321c13272
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-s3@npm:3.908.0":
version: 3.908.0
resolution: "@aws-sdk/middleware-sdk-s3@npm:3.908.0"
dependencies:
"@aws-sdk/core": "npm:3.908.0"
"@aws-sdk/types": "npm:3.901.0"
"@aws-sdk/util-arn-parser": "npm:3.893.0"
"@smithy/core": "npm:^3.15.0"
"@smithy/node-config-provider": "npm:^4.3.0"
"@smithy/protocol-http": "npm:^5.3.0"
"@smithy/signature-v4": "npm:^5.3.0"
"@smithy/smithy-client": "npm:^4.7.1"
"@smithy/types": "npm:^4.6.0"
"@smithy/util-config-provider": "npm:^4.2.0"
"@smithy/util-middleware": "npm:^4.2.0"
"@smithy/util-stream": "npm:^4.5.0"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/de8b600bb1ae546912c4f70c10d52c5d17e793a9e455649d0ebe42d8f56563e0b4aaef15890da423086b9aaa824e2e209d7e3b476e9ad47826f7fa634bb6225f
languageName: node
linkType: hard
"@aws-sdk/middleware-ssec@npm:3.901.0":
version: 3.901.0
resolution: "@aws-sdk/middleware-ssec@npm:3.901.0"
dependencies:
"@aws-sdk/types": "npm:3.901.0"
"@smithy/types": "npm:^4.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/6748ba6674d1dcf48c970e67d477127924c2ae1c8026310b78d54221d3fbd5d5795f690119583cb2207e00bcc91875df5058d83763a37d311dd2ec1bba0367ce
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:3.908.0":
version: 3.908.0
resolution: "@aws-sdk/middleware-user-agent@npm:3.908.0"
dependencies:
"@aws-sdk/core": "npm:3.908.0"
"@aws-sdk/types": "npm:3.901.0"
"@aws-sdk/util-endpoints": "npm:3.901.0"
"@smithy/core": "npm:^3.15.0"
"@smithy/protocol-http": "npm:^5.3.0"
"@smithy/types": "npm:^4.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/0ff8ee148d1b332a4508727ce0449f377d4bf9c4cdb724df20e6da4211e074acc08cb1f29cfb5c29140da80c5b583ab74df3cf84f71fd8f829cea265f8b00112
languageName: node
linkType: hard
"@aws-sdk/nested-clients@npm:3.908.0":
version: 3.908.0
resolution: "@aws-sdk/nested-clients@npm:3.908.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.908.0"
"@aws-sdk/middleware-host-header": "npm:3.901.0"
"@aws-sdk/middleware-logger": "npm:3.901.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.901.0"
"@aws-sdk/middleware-user-agent": "npm:3.908.0"
"@aws-sdk/region-config-resolver": "npm:3.901.0"
"@aws-sdk/types": "npm:3.901.0"
"@aws-sdk/util-endpoints": "npm:3.901.0"
"@aws-sdk/util-user-agent-browser": "npm:3.907.0"
"@aws-sdk/util-user-agent-node": "npm:3.908.0"
"@smithy/config-resolver": "npm:^4.3.0"
"@smithy/core": "npm:^3.15.0"
"@smithy/fetch-http-handler": "npm:^5.3.1"
"@smithy/hash-node": "npm:^4.2.0"
"@smithy/invalid-dependency": "npm:^4.2.0"
"@smithy/middleware-content-length": "npm:^4.2.0"
"@smithy/middleware-endpoint": "npm:^4.3.1"
"@smithy/middleware-retry": "npm:^4.4.1"
"@smithy/middleware-serde": "npm:^4.2.0"
"@smithy/middleware-stack": "npm:^4.2.0"
"@smithy/node-config-provider": "npm:^4.3.0"
"@smithy/node-http-handler": "npm:^4.3.0"
"@smithy/protocol-http": "npm:^5.3.0"
"@smithy/smithy-client": "npm:^4.7.1"
"@smithy/types": "npm:^4.6.0"
"@smithy/url-parser": "npm:^4.2.0"
"@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.0"
"@smithy/util-defaults-mode-node": "npm:^4.2.1"
"@smithy/util-endpoints": "npm:^3.2.0"
"@smithy/util-middleware": "npm:^4.2.0"
"@smithy/util-retry": "npm:^4.2.0"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/59dd60269a978ae8b26e9faa6491f45646b9b4fdbb933d2256ff2d539ae60b960ec94ff62181f28a409317c429e6ec182e9f5558c455ee45f598175b5b8d05fd
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:3.901.0":
version: 3.901.0
resolution: "@aws-sdk/region-config-resolver@npm:3.901.0"
dependencies:
"@aws-sdk/types": "npm:3.901.0"
"@smithy/node-config-provider": "npm:^4.3.0"
"@smithy/types": "npm:^4.6.0"
"@smithy/util-config-provider": "npm:^4.2.0"
"@smithy/util-middleware": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/a01f85908e38ea43cd6e69dcb2c33916cf2a8de3e7f0baa004e218317e3f331829746f17bcc2f79c4fc7ae7c9ff0716b30986618bd776800ee8d1b535f3849d7
languageName: node
linkType: hard
"@aws-sdk/signature-v4-multi-region@npm:3.908.0":
version: 3.908.0
resolution: "@aws-sdk/signature-v4-multi-region@npm:3.908.0"
dependencies:
"@aws-sdk/middleware-sdk-s3": "npm:3.908.0"
"@aws-sdk/types": "npm:3.901.0"
"@smithy/protocol-http": "npm:^5.3.0"
"@smithy/signature-v4": "npm:^5.3.0"
"@smithy/types": "npm:^4.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/7080fa36ba6ced905bca9c2aa8eb74d25ed2c59a4559fc500063af03b9ad128e6ff27c729efb84ed5089fae42dcf1b246d4e9ec672028849061db58183009dd2
languageName: node
linkType: hard
"@aws-sdk/token-providers@npm:3.908.0":
version: 3.908.0
resolution: "@aws-sdk/token-providers@npm:3.908.0"
dependencies:
"@aws-sdk/core": "npm:3.908.0"
"@aws-sdk/nested-clients": "npm:3.908.0"
"@aws-sdk/types": "npm:3.901.0"
"@smithy/property-provider": "npm:^4.2.0"
"@smithy/shared-ini-file-loader": "npm:^4.3.0"
"@smithy/types": "npm:^4.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/432e70c9b2ca20c4a3a501fd96ff7c31ce9099eb448fe6ecec13171efbe420e116a73450885106c65712a2670be52091ba5558e464385ccbf94d80acb25e260c
languageName: node
linkType: hard
"@aws-sdk/types@npm:3.901.0, @aws-sdk/types@npm:^3.222.0":
version: 3.901.0
resolution: "@aws-sdk/types@npm:3.901.0"
dependencies:
"@smithy/types": "npm:^4.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/38f1b7dac82b0e53faf764d0e741e32385c1e022b67c73d601fe3fd0f66d1a75d72dddd8f41dde89944441df766217f00a451a6d95caa256bebe08891206d949
languageName: node
linkType: hard
"@aws-sdk/util-arn-parser@npm:3.893.0":
version: 3.893.0
resolution: "@aws-sdk/util-arn-parser@npm:3.893.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10c0/c8bbc1e258674e791929f1259a3f2422433c0b8c5470808a958ef4320bb9ca7c27783b617da3b9e04d9a1cd1d0b547da2858249dbec816f1098c02731b551aac
languageName: node
linkType: hard
"@aws-sdk/util-dynamodb@npm:3.908.0":
version: 3.908.0
resolution: "@aws-sdk/util-dynamodb@npm:3.908.0"
dependencies:
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-dynamodb": ^3.908.0
checksum: 10c0/6380737cafea5a54bbdbaf8d81c34976edacbbb750623c6aaf9d0df349e13cc4bfaf280feee236edd84bc89002a86a5c4dc141fa2ea31eab0d4b66d1d4c55b79
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:3.901.0":
version: 3.901.0
resolution: "@aws-sdk/util-endpoints@npm:3.901.0"
dependencies:
"@aws-sdk/types": "npm:3.901.0"
"@smithy/types": "npm:^4.6.0"
"@smithy/url-parser": "npm:^4.2.0"
"@smithy/util-endpoints": "npm:^3.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/ae6a2b15975e1b4e36211c30ff7ea2ac080bb5add13a7e5181b348bc393a74f82b6c5afb998c8dde9aedfe97eae23e0ce64da79cbd2b4061c594d1bd3d9d4a65
languageName: node
linkType: hard
"@aws-sdk/util-locate-window@npm:^3.0.0":
version: 3.893.0
resolution: "@aws-sdk/util-locate-window@npm:3.893.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10c0/ed2232d1eff567a7fa96bed87d56f03ac183dc20ba0ea262edb35f0b66aea201b987f447a5c383adc5694c80275700345946c0ad3183b30a6f9ec2f89be789d8
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-browser@npm:3.907.0":
version: 3.907.0
resolution: "@aws-sdk/util-user-agent-browser@npm:3.907.0"
dependencies:
"@aws-sdk/types": "npm:3.901.0"
"@smithy/types": "npm:^4.6.0"
bowser: "npm:^2.11.0"
tslib: "npm:^2.6.2"
checksum: 10c0/581e8bdf2391e3ce0725b7660ad10bcfafb5f0ab90c4b76a8a906593d85c1b9fcb3f1b525610279e05ee85805f737c14e24e4c5d364acbece52d333d8e51f440
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-node@npm:3.908.0":
version: 3.908.0
resolution: "@aws-sdk/util-user-agent-node@npm:3.908.0"
dependencies:
"@aws-sdk/middleware-user-agent": "npm:3.908.0"
"@aws-sdk/types": "npm:3.901.0"
"@smithy/node-config-provider": "npm:^4.3.0"
"@smithy/types": "npm:^4.6.0"
tslib: "npm:^2.6.2"
peerDependencies:
aws-crt: ">=1.0.0"
peerDependenciesMeta:
aws-crt:
optional: true
checksum: 10c0/3cf41f441337513574f350176ca39dc6f4b3c3263605c741142ff08c1d1c5ca3c26958bb732bd6e20aceb820d844b6ab246435dfa6ec481476d8930ffe4225c9
languageName: node
linkType: hard
"@aws-sdk/xml-builder@npm:3.901.0":
version: 3.901.0
resolution: "@aws-sdk/xml-builder@npm:3.901.0"
dependencies:
"@smithy/types": "npm:^4.6.0"
fast-xml-parser: "npm:5.2.5"
tslib: "npm:^2.6.2"
checksum: 10c0/407af75a7ea2d2d27021d54bfb59d53b3fd2f068234ade97b3b158ff6f753f85a0effa0d765c48b377a5b73194e1908f68f2959fb77e871e9137a8650b2caeef
languageName: node
linkType: hard
"@aws/lambda-invoke-store@npm:^0.0.1":
version: 0.0.1
resolution: "@aws/lambda-invoke-store@npm:0.0.1"
checksum: 10c0/0bbf3060014a462177fb743e132e9b106a6743ad9cd905df4bd26e9ca8bfe2cc90473b03a79938fa908934e45e43f366f57af56a697991abda71d9ac92f5018f
languageName: node
linkType: hard
"@colors/colors@npm:1.6.0, @colors/colors@npm:^1.6.0":
version: 1.6.0
resolution: "@colors/colors@npm:1.6.0"
checksum: 10c0/9328a0778a5b0db243af54455b79a69e3fb21122d6c15ef9e9fcc94881d8d17352d8b2b2590f9bdd46fac5c2d6c1636dcfc14358a20c70e22daf89e1a759b629
languageName: node
linkType: hard
"@dabh/diagnostics@npm:^2.0.8":
version: 2.0.8
resolution: "@dabh/diagnostics@npm:2.0.8"
dependencies:
"@so-ric/colorspace": "npm:^1.1.6"
enabled: "npm:2.0.x"
kuler: "npm:^2.0.0"
checksum: 10c0/64701c272f7de02800039fea99796507670fe5f67d4eb7718599351ec156936efd123fcab7ee18f9d7874939caaacc08e7c7a6bb05ff8cda6d930ad041cc555c
languageName: node
linkType: hard
"@hapi/accept@npm:^6.0.3":
version: 6.0.3
resolution: "@hapi/accept@npm:6.0.3"
dependencies:
"@hapi/boom": "npm:^10.0.1"
"@hapi/hoek": "npm:^11.0.2"
checksum: 10c0/6860dc50c337c6f4fcf8597c10e74ca4a481d3925075860110b641a0e670a036cdecccb49049745dc1c7ab219a1538ae56c40a38420c7f4aceef13cadd56cb1d
languageName: node
linkType: hard
"@hapi/ammo@npm:^6.0.1":
version: 6.0.1
resolution: "@hapi/ammo@npm:6.0.1"
dependencies:
"@hapi/hoek": "npm:^11.0.2"
checksum: 10c0/95f2f2a52f97b0346354b89be1a1b79a393bcf0f461e3c09b34523714aca8bf5287f6b02efda63cd4a24152e22ec7e92f98f1b9cc18b2991c665fe40ceceba80
languageName: node
linkType: hard
"@hapi/b64@npm:^6.0.1":
version: 6.0.1
resolution: "@hapi/b64@npm:6.0.1"
dependencies:
"@hapi/hoek": "npm:^11.0.2"
checksum: 10c0/d2eda488e98359c913dbe6a4374e57273fc1d1bf3d43175788b3379004a45ef86b9c34d94322c2c903cd538747faac08939a116347b753e067be3ce90a38a262
languageName: node
linkType: hard
"@hapi/boom@npm:^10.0.0, @hapi/boom@npm:^10.0.1":
version: 10.0.1
resolution: "@hapi/boom@npm:10.0.1"
dependencies:
"@hapi/hoek": "npm:^11.0.2"
checksum: 10c0/e4ae8a69bb67c5687320d320a0706ac66e797a659c19fb1c9b909eaefe3b41780e4ecd4382de1297b10c33e9db81f79667324576b9153f57b0cf701293b908d0
languageName: node
linkType: hard
"@hapi/bounce@npm:^3.0.1, @hapi/bounce@npm:^3.0.2":
version: 3.0.2
resolution: "@hapi/bounce@npm:3.0.2"
dependencies:
"@hapi/boom": "npm:^10.0.1"
"@hapi/hoek": "npm:^11.0.2"
checksum: 10c0/358cf994dde3e335e36bfdc0d5a3fdc4389c5524218500a90655690845fd7388997c203a06bbf6b41e86872ba543d5743274f0d63df49af8aa8b90ecf4dd03d0
languageName: node
linkType: hard
"@hapi/bourne@npm:^3.0.0":
version: 3.0.0
resolution: "@hapi/bourne@npm:3.0.0"
checksum: 10c0/2e2df62f6bc6f32b980ba5bbdc09200c93c55c8306399ec0f2781da088a82aab699498c89fe94fec4acf770210f9aee28c75bfc2f04044849ac01b034134e717
languageName: node
linkType: hard
"@hapi/call@npm:^9.0.1":
version: 9.0.1
resolution: "@hapi/call@npm:9.0.1"
dependencies:
"@hapi/boom": "npm:^10.0.1"
"@hapi/hoek": "npm:^11.0.2"
checksum: 10c0/c08b1b639cdc92227e3296c664483e0a46631810d97c4fe081fded61c6262a109a71ced2cfbb43cc9e8440f1d9ab7d441bbead5f4330e5de71dc0183af9fd5a2
languageName: node
linkType: hard
"@hapi/catbox-memory@npm:^6.0.2":
version: 6.0.2
resolution: "@hapi/catbox-memory@npm:6.0.2"
dependencies:
"@hapi/boom": "npm:^10.0.1"
"@hapi/hoek": "npm:^11.0.2"
checksum: 10c0/7ab29849f88540908f8e0a3863fca72f81895ad55159f1259cd00051ed272da0ef638d1c26748369d630a453e7fae9f847570d8026fe8890d2243b975f3007ee
languageName: node
linkType: hard
"@hapi/catbox@npm:^12.1.1":
version: 12.1.1
resolution: "@hapi/catbox@npm:12.1.1"
dependencies:
"@hapi/boom": "npm:^10.0.1"
"@hapi/hoek": "npm:^11.0.2"
"@hapi/podium": "npm:^5.0.0"
"@hapi/validate": "npm:^2.0.1"
checksum: 10c0/290328458df736146fb718fe1ddd27f65f1fd0f99b60f1cc69a3c1c56bc6e0a04b1577b7ad4c5ed0fa1027c2028a3444c64e521e25fff598007727961c5fa774
languageName: node
linkType: hard
"@hapi/content@npm:6.0.1":
version: 6.0.1
resolution: "@hapi/content@npm:6.0.1"
dependencies:
"@hapi/boom": "npm:^10.0.0"
checksum: 10c0/f3f15c5d4df99b59885c85b827d1bf4f57942d909b18ad037f34f782ae1cfe3d6ce759737163bdf001440ff7c6837a2f21a5a0be47373f85387eb584acaa73e5
languageName: node
linkType: hard
"@hapi/cryptiles@npm:^6.0.1":
version: 6.0.1
resolution: "@hapi/cryptiles@npm:6.0.1"
dependencies:
"@hapi/boom": "npm:^10.0.1"
checksum: 10c0/2ca7c40a29cd5695ffd076558fbb57eb43708e473429105d85e766ecd9509d1292994e8147a51d38cb07b69c81c4293f3a7e1e9e5d8cc887d3414a24505c97df
languageName: node
linkType: hard
"@hapi/file@npm:^3.0.0":
version: 3.0.0
resolution: "@hapi/file@npm:3.0.0"
checksum: 10c0/eb1a83a314daf58ca717effbc9179dc26f1541e8113392aa876518ab0fcde26d9227e0c719f4091c6d6e9313ec852d816ffc4f4ee94185cd331c77892d0506d2
languageName: node
linkType: hard
"@hapi/h2o2@npm:^10.0.4":
version: 10.0.4
resolution: "@hapi/h2o2@npm:10.0.4"
dependencies:
"@hapi/boom": "npm:^10.0.1"
"@hapi/hoek": "npm:^11.0.2"
"@hapi/validate": "npm:^2.0.1"
"@hapi/wreck": "npm:^18.0.1"
checksum: 10c0/98922bbffed26834d3bc58523e9cd0dc7164ec4657af398167c7a3ce5e871c57c9c68e0d6ba063821fb795b186067a6f415bfd2919e37f7e0cba0cee356dcb05
languageName: node
linkType: hard
"@hapi/hapi@npm:^21.3.10":
version: 21.4.3
resolution: "@hapi/hapi@npm:21.4.3"
dependencies:
"@hapi/accept": "npm:^6.0.3"
"@hapi/ammo": "npm:^6.0.1"
"@hapi/boom": "npm:^10.0.1"
"@hapi/bounce": "npm:^3.0.2"
"@hapi/call": "npm:^9.0.1"
"@hapi/catbox": "npm:^12.1.1"
"@hapi/catbox-memory": "npm:^6.0.2"
"@hapi/heavy": "npm:^8.0.1"
"@hapi/hoek": "npm:^11.0.7"
"@hapi/mimos": "npm:^7.0.1"
"@hapi/podium": "npm:^5.0.2"
"@hapi/shot": "npm:^6.0.2"
"@hapi/somever": "npm:^4.1.1"
"@hapi/statehood": "npm:^8.2.0"
"@hapi/subtext": "npm:^8.1.1"
"@hapi/teamwork": "npm:^6.0.0"
"@hapi/topo": "npm:^6.0.2"
"@hapi/validate": "npm:^2.0.1"
checksum: 10c0/4439ad1dbd3b7afcbe26549522809bee6f6d2e8e28a4bb9000637829006c2899896b7f355e6c39ad6985de1af7245114fbb4a98be61af1a56973059dbd5b8ca1
languageName: node
linkType: hard
"@hapi/heavy@npm:^8.0.1":
version: 8.0.1
resolution: "@hapi/heavy@npm:8.0.1"
dependencies:
"@hapi/boom": "npm:^10.0.1"
"@hapi/hoek": "npm:^11.0.2"
"@hapi/validate": "npm:^2.0.1"
checksum: 10c0/da7afd4f785ae19dfa851d569e9d97eedc013de187f294b7578ec7d6a95ebc34e385ecc0e4579babf59f0ebf334d9768eb07429eeab6061f0c900a52f2b1ebe7
languageName: node
linkType: hard
"@hapi/hoek@npm:^11.0.2, @hapi/hoek@npm:^11.0.7":
version: 11.0.7
resolution: "@hapi/hoek@npm:11.0.7"
checksum: 10c0/39a4a3ae9526ed66509f6d03c6eb43179a2590df6e98443328c966cfa5e7cbb9d340f61fdbe0afe092662d5377d5a611c3303c808fee26a9c9cfd6bd3737dc1c
languageName: node
linkType: hard
"@hapi/iron@npm:^7.0.1":
version: 7.0.1
resolution: "@hapi/iron@npm:7.0.1"