-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathyarn.lock
More file actions
6718 lines (6053 loc) · 245 KB
/
Copy pathyarn.lock
File metadata and controls
6718 lines (6053 loc) · 245 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: 10
cacheKey: 10c0
"@arcanis/slice-ansi@npm:^1.1.1":
version: 1.1.1
resolution: "@arcanis/slice-ansi@npm:1.1.1"
dependencies:
grapheme-splitter: "npm:^1.0.4"
checksum: 10c0/2f222b121b8aaf67e8495e27d60ebfc34e2472033445c3380e93fb06aba9bfef6ab3096aca190a181b3dd505ed4c07f4dc7243fc9cb5369008b649cd1e39e8d8
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":
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/checksums@npm:^3.1000.16":
version: 3.1000.16
resolution: "@aws-sdk/checksums@npm:3.1000.16"
dependencies:
"@aws-sdk/core": "npm:^3.975.1"
"@aws-sdk/types": "npm:^3.974.0"
"@smithy/core": "npm:^3.29.2"
"@smithy/types": "npm:^4.16.0"
tslib: "npm:^2.6.2"
checksum: 10c0/e87b8e83efefb6c026a4a4245c910e51dc4c235f8f2dd1e70090e5b9c121673bb98986020867e7c31856d956d2c54a90dd936ca3010bd36ac608b979e89db7ed
languageName: node
linkType: hard
"@aws-sdk/client-codecommit@npm:3.1036.0":
version: 3.1036.0
resolution: "@aws-sdk/client-codecommit@npm:3.1036.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.974.5"
"@aws-sdk/credential-provider-node": "npm:^3.972.36"
"@aws-sdk/middleware-host-header": "npm:^3.972.10"
"@aws-sdk/middleware-logger": "npm:^3.972.10"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.11"
"@aws-sdk/middleware-user-agent": "npm:^3.972.35"
"@aws-sdk/region-config-resolver": "npm:^3.972.13"
"@aws-sdk/types": "npm:^3.973.8"
"@aws-sdk/util-endpoints": "npm:^3.996.8"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.10"
"@aws-sdk/util-user-agent-node": "npm:^3.973.21"
"@smithy/config-resolver": "npm:^4.4.17"
"@smithy/core": "npm:^3.23.17"
"@smithy/fetch-http-handler": "npm:^5.3.17"
"@smithy/hash-node": "npm:^4.2.14"
"@smithy/invalid-dependency": "npm:^4.2.14"
"@smithy/middleware-content-length": "npm:^4.2.14"
"@smithy/middleware-endpoint": "npm:^4.4.32"
"@smithy/middleware-retry": "npm:^4.5.5"
"@smithy/middleware-serde": "npm:^4.2.20"
"@smithy/middleware-stack": "npm:^4.2.14"
"@smithy/node-config-provider": "npm:^4.3.14"
"@smithy/node-http-handler": "npm:^4.6.1"
"@smithy/protocol-http": "npm:^5.3.14"
"@smithy/smithy-client": "npm:^4.12.13"
"@smithy/types": "npm:^4.14.1"
"@smithy/url-parser": "npm:^4.2.14"
"@smithy/util-base64": "npm:^4.3.2"
"@smithy/util-body-length-browser": "npm:^4.2.2"
"@smithy/util-body-length-node": "npm:^4.2.3"
"@smithy/util-defaults-mode-browser": "npm:^4.3.49"
"@smithy/util-defaults-mode-node": "npm:^4.2.54"
"@smithy/util-endpoints": "npm:^3.4.2"
"@smithy/util-middleware": "npm:^4.2.14"
"@smithy/util-retry": "npm:^4.3.4"
"@smithy/util-utf8": "npm:^4.2.2"
tslib: "npm:^2.6.2"
checksum: 10c0/e1cd47b72d8ce938d891423133534f139e36bce02ba8506768c3e40d66e3e38f7e6dc1354922a2980188ad601238426cb4eef8f7142806338d356da5bc907a49
languageName: node
linkType: hard
"@aws-sdk/client-cognito-identity@npm:3.1036.0":
version: 3.1036.0
resolution: "@aws-sdk/client-cognito-identity@npm:3.1036.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.974.5"
"@aws-sdk/credential-provider-node": "npm:^3.972.36"
"@aws-sdk/middleware-host-header": "npm:^3.972.10"
"@aws-sdk/middleware-logger": "npm:^3.972.10"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.11"
"@aws-sdk/middleware-user-agent": "npm:^3.972.35"
"@aws-sdk/region-config-resolver": "npm:^3.972.13"
"@aws-sdk/types": "npm:^3.973.8"
"@aws-sdk/util-endpoints": "npm:^3.996.8"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.10"
"@aws-sdk/util-user-agent-node": "npm:^3.973.21"
"@smithy/config-resolver": "npm:^4.4.17"
"@smithy/core": "npm:^3.23.17"
"@smithy/fetch-http-handler": "npm:^5.3.17"
"@smithy/hash-node": "npm:^4.2.14"
"@smithy/invalid-dependency": "npm:^4.2.14"
"@smithy/middleware-content-length": "npm:^4.2.14"
"@smithy/middleware-endpoint": "npm:^4.4.32"
"@smithy/middleware-retry": "npm:^4.5.5"
"@smithy/middleware-serde": "npm:^4.2.20"
"@smithy/middleware-stack": "npm:^4.2.14"
"@smithy/node-config-provider": "npm:^4.3.14"
"@smithy/node-http-handler": "npm:^4.6.1"
"@smithy/protocol-http": "npm:^5.3.14"
"@smithy/smithy-client": "npm:^4.12.13"
"@smithy/types": "npm:^4.14.1"
"@smithy/url-parser": "npm:^4.2.14"
"@smithy/util-base64": "npm:^4.3.2"
"@smithy/util-body-length-browser": "npm:^4.2.2"
"@smithy/util-body-length-node": "npm:^4.2.3"
"@smithy/util-defaults-mode-browser": "npm:^4.3.49"
"@smithy/util-defaults-mode-node": "npm:^4.2.54"
"@smithy/util-endpoints": "npm:^3.4.2"
"@smithy/util-middleware": "npm:^4.2.14"
"@smithy/util-retry": "npm:^4.3.4"
"@smithy/util-utf8": "npm:^4.2.2"
tslib: "npm:^2.6.2"
checksum: 10c0/032cb6f4d342480c6dfa67e3021a448131182a1b5b23763ba11ef7584e95d93737bcfd2d938e11276588915a6e3e3a26d9e6fb2fa8197fc606f6d1a7c6bfc58c
languageName: node
linkType: hard
"@aws-sdk/client-ec2@npm:3.1036.0":
version: 3.1036.0
resolution: "@aws-sdk/client-ec2@npm:3.1036.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.974.5"
"@aws-sdk/credential-provider-node": "npm:^3.972.36"
"@aws-sdk/middleware-host-header": "npm:^3.972.10"
"@aws-sdk/middleware-logger": "npm:^3.972.10"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.11"
"@aws-sdk/middleware-sdk-ec2": "npm:^3.972.22"
"@aws-sdk/middleware-user-agent": "npm:^3.972.35"
"@aws-sdk/region-config-resolver": "npm:^3.972.13"
"@aws-sdk/types": "npm:^3.973.8"
"@aws-sdk/util-endpoints": "npm:^3.996.8"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.10"
"@aws-sdk/util-user-agent-node": "npm:^3.973.21"
"@smithy/config-resolver": "npm:^4.4.17"
"@smithy/core": "npm:^3.23.17"
"@smithy/fetch-http-handler": "npm:^5.3.17"
"@smithy/hash-node": "npm:^4.2.14"
"@smithy/invalid-dependency": "npm:^4.2.14"
"@smithy/middleware-content-length": "npm:^4.2.14"
"@smithy/middleware-endpoint": "npm:^4.4.32"
"@smithy/middleware-retry": "npm:^4.5.5"
"@smithy/middleware-serde": "npm:^4.2.20"
"@smithy/middleware-stack": "npm:^4.2.14"
"@smithy/node-config-provider": "npm:^4.3.14"
"@smithy/node-http-handler": "npm:^4.6.1"
"@smithy/protocol-http": "npm:^5.3.14"
"@smithy/smithy-client": "npm:^4.12.13"
"@smithy/types": "npm:^4.14.1"
"@smithy/url-parser": "npm:^4.2.14"
"@smithy/util-base64": "npm:^4.3.2"
"@smithy/util-body-length-browser": "npm:^4.2.2"
"@smithy/util-body-length-node": "npm:^4.2.3"
"@smithy/util-defaults-mode-browser": "npm:^4.3.49"
"@smithy/util-defaults-mode-node": "npm:^4.2.54"
"@smithy/util-endpoints": "npm:^3.4.2"
"@smithy/util-middleware": "npm:^4.2.14"
"@smithy/util-retry": "npm:^4.3.4"
"@smithy/util-utf8": "npm:^4.2.2"
"@smithy/util-waiter": "npm:^4.2.16"
tslib: "npm:^2.6.2"
checksum: 10c0/d085b6b1f2c0eb545255a41950ab0029df1cdde00f8b35b10345da430fbaaf036d70bdaee719a2fa962ecff8f497b409d1cf5006bb466e13e74d4b5135055fb3
languageName: node
linkType: hard
"@aws-sdk/client-ecr@npm:3.1036.0":
version: 3.1036.0
resolution: "@aws-sdk/client-ecr@npm:3.1036.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.974.5"
"@aws-sdk/credential-provider-node": "npm:^3.972.36"
"@aws-sdk/middleware-host-header": "npm:^3.972.10"
"@aws-sdk/middleware-logger": "npm:^3.972.10"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.11"
"@aws-sdk/middleware-user-agent": "npm:^3.972.35"
"@aws-sdk/region-config-resolver": "npm:^3.972.13"
"@aws-sdk/types": "npm:^3.973.8"
"@aws-sdk/util-endpoints": "npm:^3.996.8"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.10"
"@aws-sdk/util-user-agent-node": "npm:^3.973.21"
"@smithy/config-resolver": "npm:^4.4.17"
"@smithy/core": "npm:^3.23.17"
"@smithy/fetch-http-handler": "npm:^5.3.17"
"@smithy/hash-node": "npm:^4.2.14"
"@smithy/invalid-dependency": "npm:^4.2.14"
"@smithy/middleware-content-length": "npm:^4.2.14"
"@smithy/middleware-endpoint": "npm:^4.4.32"
"@smithy/middleware-retry": "npm:^4.5.5"
"@smithy/middleware-serde": "npm:^4.2.20"
"@smithy/middleware-stack": "npm:^4.2.14"
"@smithy/node-config-provider": "npm:^4.3.14"
"@smithy/node-http-handler": "npm:^4.6.1"
"@smithy/protocol-http": "npm:^5.3.14"
"@smithy/smithy-client": "npm:^4.12.13"
"@smithy/types": "npm:^4.14.1"
"@smithy/url-parser": "npm:^4.2.14"
"@smithy/util-base64": "npm:^4.3.2"
"@smithy/util-body-length-browser": "npm:^4.2.2"
"@smithy/util-body-length-node": "npm:^4.2.3"
"@smithy/util-defaults-mode-browser": "npm:^4.3.49"
"@smithy/util-defaults-mode-node": "npm:^4.2.54"
"@smithy/util-endpoints": "npm:^3.4.2"
"@smithy/util-middleware": "npm:^4.2.14"
"@smithy/util-retry": "npm:^4.3.4"
"@smithy/util-utf8": "npm:^4.2.2"
"@smithy/util-waiter": "npm:^4.2.16"
tslib: "npm:^2.6.2"
checksum: 10c0/214d0aac460e8ca3f1985b1742a8558230f6a11a20b4d30a5f773a2501bb1c2c209ee02f9ffdf61df4a88c603722e5c65b14ad337576e066b965ba05891f762c
languageName: node
linkType: hard
"@aws-sdk/client-eks@npm:3.1036.0":
version: 3.1036.0
resolution: "@aws-sdk/client-eks@npm:3.1036.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.974.5"
"@aws-sdk/credential-provider-node": "npm:^3.972.36"
"@aws-sdk/middleware-host-header": "npm:^3.972.10"
"@aws-sdk/middleware-logger": "npm:^3.972.10"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.11"
"@aws-sdk/middleware-user-agent": "npm:^3.972.35"
"@aws-sdk/region-config-resolver": "npm:^3.972.13"
"@aws-sdk/types": "npm:^3.973.8"
"@aws-sdk/util-endpoints": "npm:^3.996.8"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.10"
"@aws-sdk/util-user-agent-node": "npm:^3.973.21"
"@smithy/config-resolver": "npm:^4.4.17"
"@smithy/core": "npm:^3.23.17"
"@smithy/fetch-http-handler": "npm:^5.3.17"
"@smithy/hash-node": "npm:^4.2.14"
"@smithy/invalid-dependency": "npm:^4.2.14"
"@smithy/middleware-content-length": "npm:^4.2.14"
"@smithy/middleware-endpoint": "npm:^4.4.32"
"@smithy/middleware-retry": "npm:^4.5.5"
"@smithy/middleware-serde": "npm:^4.2.20"
"@smithy/middleware-stack": "npm:^4.2.14"
"@smithy/node-config-provider": "npm:^4.3.14"
"@smithy/node-http-handler": "npm:^4.6.1"
"@smithy/protocol-http": "npm:^5.3.14"
"@smithy/smithy-client": "npm:^4.12.13"
"@smithy/types": "npm:^4.14.1"
"@smithy/url-parser": "npm:^4.2.14"
"@smithy/util-base64": "npm:^4.3.2"
"@smithy/util-body-length-browser": "npm:^4.2.2"
"@smithy/util-body-length-node": "npm:^4.2.3"
"@smithy/util-defaults-mode-browser": "npm:^4.3.49"
"@smithy/util-defaults-mode-node": "npm:^4.2.54"
"@smithy/util-endpoints": "npm:^3.4.2"
"@smithy/util-middleware": "npm:^4.2.14"
"@smithy/util-retry": "npm:^4.3.4"
"@smithy/util-utf8": "npm:^4.2.2"
"@smithy/util-waiter": "npm:^4.2.16"
tslib: "npm:^2.6.2"
checksum: 10c0/a93f8b398fb935c5a23564450a92027ca311f6b97eb5150aa4567936c467d05acd2f44048352f4ed2edc4113d52e49c6ea5d02f4bc5398b67e70d7976216d13d
languageName: node
linkType: hard
"@aws-sdk/client-rds@npm:3.1036.0":
version: 3.1036.0
resolution: "@aws-sdk/client-rds@npm:3.1036.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.974.5"
"@aws-sdk/credential-provider-node": "npm:^3.972.36"
"@aws-sdk/middleware-host-header": "npm:^3.972.10"
"@aws-sdk/middleware-logger": "npm:^3.972.10"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.11"
"@aws-sdk/middleware-sdk-rds": "npm:^3.972.22"
"@aws-sdk/middleware-user-agent": "npm:^3.972.35"
"@aws-sdk/region-config-resolver": "npm:^3.972.13"
"@aws-sdk/types": "npm:^3.973.8"
"@aws-sdk/util-endpoints": "npm:^3.996.8"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.10"
"@aws-sdk/util-user-agent-node": "npm:^3.973.21"
"@smithy/config-resolver": "npm:^4.4.17"
"@smithy/core": "npm:^3.23.17"
"@smithy/fetch-http-handler": "npm:^5.3.17"
"@smithy/hash-node": "npm:^4.2.14"
"@smithy/invalid-dependency": "npm:^4.2.14"
"@smithy/middleware-content-length": "npm:^4.2.14"
"@smithy/middleware-endpoint": "npm:^4.4.32"
"@smithy/middleware-retry": "npm:^4.5.5"
"@smithy/middleware-serde": "npm:^4.2.20"
"@smithy/middleware-stack": "npm:^4.2.14"
"@smithy/node-config-provider": "npm:^4.3.14"
"@smithy/node-http-handler": "npm:^4.6.1"
"@smithy/protocol-http": "npm:^5.3.14"
"@smithy/smithy-client": "npm:^4.12.13"
"@smithy/types": "npm:^4.14.1"
"@smithy/url-parser": "npm:^4.2.14"
"@smithy/util-base64": "npm:^4.3.2"
"@smithy/util-body-length-browser": "npm:^4.2.2"
"@smithy/util-body-length-node": "npm:^4.2.3"
"@smithy/util-defaults-mode-browser": "npm:^4.3.49"
"@smithy/util-defaults-mode-node": "npm:^4.2.54"
"@smithy/util-endpoints": "npm:^3.4.2"
"@smithy/util-middleware": "npm:^4.2.14"
"@smithy/util-retry": "npm:^4.3.4"
"@smithy/util-utf8": "npm:^4.2.2"
"@smithy/util-waiter": "npm:^4.2.16"
tslib: "npm:^2.6.2"
checksum: 10c0/d64ec967c237f66a78f6050fd67777e59e1357eb0265327a797144b294f3b4071e292c14a7ee2cd745d47f60bd6008f85e25bdb112894df0dfdfaab77e3511bf
languageName: node
linkType: hard
"@aws-sdk/client-s3@npm:3.1036.0":
version: 3.1036.0
resolution: "@aws-sdk/client-s3@npm:3.1036.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.974.5"
"@aws-sdk/credential-provider-node": "npm:^3.972.36"
"@aws-sdk/middleware-bucket-endpoint": "npm:^3.972.10"
"@aws-sdk/middleware-expect-continue": "npm:^3.972.10"
"@aws-sdk/middleware-flexible-checksums": "npm:^3.974.13"
"@aws-sdk/middleware-host-header": "npm:^3.972.10"
"@aws-sdk/middleware-location-constraint": "npm:^3.972.10"
"@aws-sdk/middleware-logger": "npm:^3.972.10"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.11"
"@aws-sdk/middleware-sdk-s3": "npm:^3.972.34"
"@aws-sdk/middleware-ssec": "npm:^3.972.10"
"@aws-sdk/middleware-user-agent": "npm:^3.972.35"
"@aws-sdk/region-config-resolver": "npm:^3.972.13"
"@aws-sdk/signature-v4-multi-region": "npm:^3.996.22"
"@aws-sdk/types": "npm:^3.973.8"
"@aws-sdk/util-endpoints": "npm:^3.996.8"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.10"
"@aws-sdk/util-user-agent-node": "npm:^3.973.21"
"@smithy/config-resolver": "npm:^4.4.17"
"@smithy/core": "npm:^3.23.17"
"@smithy/eventstream-serde-browser": "npm:^4.2.14"
"@smithy/eventstream-serde-config-resolver": "npm:^4.3.14"
"@smithy/eventstream-serde-node": "npm:^4.2.14"
"@smithy/fetch-http-handler": "npm:^5.3.17"
"@smithy/hash-blob-browser": "npm:^4.2.15"
"@smithy/hash-node": "npm:^4.2.14"
"@smithy/hash-stream-node": "npm:^4.2.14"
"@smithy/invalid-dependency": "npm:^4.2.14"
"@smithy/md5-js": "npm:^4.2.14"
"@smithy/middleware-content-length": "npm:^4.2.14"
"@smithy/middleware-endpoint": "npm:^4.4.32"
"@smithy/middleware-retry": "npm:^4.5.5"
"@smithy/middleware-serde": "npm:^4.2.20"
"@smithy/middleware-stack": "npm:^4.2.14"
"@smithy/node-config-provider": "npm:^4.3.14"
"@smithy/node-http-handler": "npm:^4.6.1"
"@smithy/protocol-http": "npm:^5.3.14"
"@smithy/smithy-client": "npm:^4.12.13"
"@smithy/types": "npm:^4.14.1"
"@smithy/url-parser": "npm:^4.2.14"
"@smithy/util-base64": "npm:^4.3.2"
"@smithy/util-body-length-browser": "npm:^4.2.2"
"@smithy/util-body-length-node": "npm:^4.2.3"
"@smithy/util-defaults-mode-browser": "npm:^4.3.49"
"@smithy/util-defaults-mode-node": "npm:^4.2.54"
"@smithy/util-endpoints": "npm:^3.4.2"
"@smithy/util-middleware": "npm:^4.2.14"
"@smithy/util-retry": "npm:^4.3.4"
"@smithy/util-stream": "npm:^4.5.25"
"@smithy/util-utf8": "npm:^4.2.2"
"@smithy/util-waiter": "npm:^4.2.16"
tslib: "npm:^2.6.2"
checksum: 10c0/82dd6dd94bf79e8906c5f4cae2723adea832322bf9533f02ba4af91d6ed76f823ccc2cab3e70f2cf983aa75e73b7aa9506dc97de20ee59b88ad6a5b664646e99
languageName: node
linkType: hard
"@aws-sdk/core@npm:^3.974.5, @aws-sdk/core@npm:^3.975.1":
version: 3.975.1
resolution: "@aws-sdk/core@npm:3.975.1"
dependencies:
"@aws-sdk/types": "npm:^3.974.0"
"@aws-sdk/xml-builder": "npm:^3.972.34"
"@aws/lambda-invoke-store": "npm:^0.3.0"
"@smithy/core": "npm:^3.29.2"
"@smithy/signature-v4": "npm:^5.6.3"
"@smithy/types": "npm:^4.16.0"
bowser: "npm:^2.11.0"
tslib: "npm:^2.6.2"
checksum: 10c0/76eca6a578e112e7de0aacf7b9e57c4ecdce23966bf50a4d55fdc9e835ea17e811f8075cc4d1263dd009ef84e96795011bf297ae173d339a36fba70e74cfb946
languageName: node
linkType: hard
"@aws-sdk/credential-provider-cognito-identity@npm:^3.972.28":
version: 3.972.56
resolution: "@aws-sdk/credential-provider-cognito-identity@npm:3.972.56"
dependencies:
"@aws-sdk/nested-clients": "npm:^3.997.31"
"@aws-sdk/types": "npm:^3.974.0"
"@smithy/core": "npm:^3.29.2"
"@smithy/types": "npm:^4.16.0"
tslib: "npm:^2.6.2"
checksum: 10c0/274b2685a79bc44a10dc6206024ac18fea29d12deaef92855b8a2428c55d8f42ec5a63d0cad9356fa9f39aa78f321a50ada8ffa9b4c61dc3d289689f62e27fea
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:^3.972.31, @aws-sdk/credential-provider-env@npm:^3.972.57":
version: 3.972.57
resolution: "@aws-sdk/credential-provider-env@npm:3.972.57"
dependencies:
"@aws-sdk/core": "npm:^3.975.1"
"@aws-sdk/types": "npm:^3.974.0"
"@smithy/core": "npm:^3.29.2"
"@smithy/types": "npm:^4.16.0"
tslib: "npm:^2.6.2"
checksum: 10c0/91568f2539a495f67e16bc89481172a9a94dee8321ee460b23f7b34136091b4a6596b8d33aded9975b098a9e2ed1ff4eb2c16cc3c86d0fa7d6da6818b3812ede
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:^3.972.33, @aws-sdk/credential-provider-http@npm:^3.972.59":
version: 3.972.59
resolution: "@aws-sdk/credential-provider-http@npm:3.972.59"
dependencies:
"@aws-sdk/core": "npm:^3.975.1"
"@aws-sdk/types": "npm:^3.974.0"
"@smithy/core": "npm:^3.29.2"
"@smithy/fetch-http-handler": "npm:^5.6.4"
"@smithy/node-http-handler": "npm:^4.9.4"
"@smithy/types": "npm:^4.16.0"
tslib: "npm:^2.6.2"
checksum: 10c0/9d52d19e51a4c55ac4bb8b311a6a0ba621ee9c86b2c6f3f94c4968d41c877173938b4d16a79f8100ce31c6a1812a9ca98de9e38b3ba436abd266076769bdc3b2
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:^3.972.35, @aws-sdk/credential-provider-ini@npm:^3.973.1":
version: 3.973.1
resolution: "@aws-sdk/credential-provider-ini@npm:3.973.1"
dependencies:
"@aws-sdk/core": "npm:^3.975.1"
"@aws-sdk/credential-provider-env": "npm:^3.972.57"
"@aws-sdk/credential-provider-http": "npm:^3.972.59"
"@aws-sdk/credential-provider-login": "npm:^3.972.63"
"@aws-sdk/credential-provider-process": "npm:^3.972.57"
"@aws-sdk/credential-provider-sso": "npm:^3.973.1"
"@aws-sdk/credential-provider-web-identity": "npm:^3.972.63"
"@aws-sdk/nested-clients": "npm:^3.997.31"
"@aws-sdk/types": "npm:^3.974.0"
"@smithy/core": "npm:^3.29.2"
"@smithy/credential-provider-imds": "npm:^4.4.7"
"@smithy/types": "npm:^4.16.0"
tslib: "npm:^2.6.2"
checksum: 10c0/ef6f07adee2c7c3e01b27b81076ffcf9ee2fcb8a2e2752c6839d3d4df6b47272d19a8472d061779377eb2bc36779d262abae9e6dfab32763eae188e655427f9d
languageName: node
linkType: hard
"@aws-sdk/credential-provider-login@npm:^3.972.35, @aws-sdk/credential-provider-login@npm:^3.972.63":
version: 3.972.63
resolution: "@aws-sdk/credential-provider-login@npm:3.972.63"
dependencies:
"@aws-sdk/core": "npm:^3.975.1"
"@aws-sdk/nested-clients": "npm:^3.997.31"
"@aws-sdk/types": "npm:^3.974.0"
"@smithy/core": "npm:^3.29.2"
"@smithy/types": "npm:^4.16.0"
tslib: "npm:^2.6.2"
checksum: 10c0/3e00d427c7fb0fdc0374100f4ebf38971220251b72c3e0e223ad37c11168e21db8439a865c26584eb10c21c8a7d465646fd9a0161723ee1a9e8d79b044456b8a
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:^3.972.36":
version: 3.972.66
resolution: "@aws-sdk/credential-provider-node@npm:3.972.66"
dependencies:
"@aws-sdk/credential-provider-env": "npm:^3.972.57"
"@aws-sdk/credential-provider-http": "npm:^3.972.59"
"@aws-sdk/credential-provider-ini": "npm:^3.973.1"
"@aws-sdk/credential-provider-process": "npm:^3.972.57"
"@aws-sdk/credential-provider-sso": "npm:^3.973.1"
"@aws-sdk/credential-provider-web-identity": "npm:^3.972.63"
"@aws-sdk/types": "npm:^3.974.0"
"@smithy/core": "npm:^3.29.2"
"@smithy/credential-provider-imds": "npm:^4.4.7"
"@smithy/types": "npm:^4.16.0"
tslib: "npm:^2.6.2"
checksum: 10c0/8d407f2a3f1ee549e60980a2064f104ec97bf4d137d9c22c9142a44639052d69b9a56d90d26c2d639ebb20909d9111534e3b0e888ccaa6fc6176e69e7cdb5b07
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:^3.972.31, @aws-sdk/credential-provider-process@npm:^3.972.57":
version: 3.972.57
resolution: "@aws-sdk/credential-provider-process@npm:3.972.57"
dependencies:
"@aws-sdk/core": "npm:^3.975.1"
"@aws-sdk/types": "npm:^3.974.0"
"@smithy/core": "npm:^3.29.2"
"@smithy/types": "npm:^4.16.0"
tslib: "npm:^2.6.2"
checksum: 10c0/9bb9cb3257c5a9d646c17c60013a6cbf95da5f0a6a7c05e75a83674e15e0847ccdfb439fb3bc7ec2943e7bc4fe380c97ab6ca728099be48a6ac7206b3b826713
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:^3.972.35, @aws-sdk/credential-provider-sso@npm:^3.973.1":
version: 3.973.1
resolution: "@aws-sdk/credential-provider-sso@npm:3.973.1"
dependencies:
"@aws-sdk/core": "npm:^3.975.1"
"@aws-sdk/nested-clients": "npm:^3.997.31"
"@aws-sdk/token-providers": "npm:3.1083.0"
"@aws-sdk/types": "npm:^3.974.0"
"@smithy/core": "npm:^3.29.2"
"@smithy/types": "npm:^4.16.0"
tslib: "npm:^2.6.2"
checksum: 10c0/737987f91936aec720550dd0098b109e1b6993b638525e7f2c7b5740c75d94c6a8960ab59afdb279261d344aea35a01b1fc35e3b9be5762ce098011d4c5de5ac
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:^3.972.35, @aws-sdk/credential-provider-web-identity@npm:^3.972.63":
version: 3.972.63
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.972.63"
dependencies:
"@aws-sdk/core": "npm:^3.975.1"
"@aws-sdk/nested-clients": "npm:^3.997.31"
"@aws-sdk/types": "npm:^3.974.0"
"@smithy/core": "npm:^3.29.2"
"@smithy/types": "npm:^4.16.0"
tslib: "npm:^2.6.2"
checksum: 10c0/f8d6abdc141cab07c0efb75e6fe50f1543fa750daed92d43cfc597ce8e2c97c01820fd7cfedf27498208fac811fa17bb06a0ef8eb8c4ae8cbdbc674f76631040
languageName: node
linkType: hard
"@aws-sdk/credential-providers@npm:3.1036.0":
version: 3.1036.0
resolution: "@aws-sdk/credential-providers@npm:3.1036.0"
dependencies:
"@aws-sdk/client-cognito-identity": "npm:3.1036.0"
"@aws-sdk/core": "npm:^3.974.5"
"@aws-sdk/credential-provider-cognito-identity": "npm:^3.972.28"
"@aws-sdk/credential-provider-env": "npm:^3.972.31"
"@aws-sdk/credential-provider-http": "npm:^3.972.33"
"@aws-sdk/credential-provider-ini": "npm:^3.972.35"
"@aws-sdk/credential-provider-login": "npm:^3.972.35"
"@aws-sdk/credential-provider-node": "npm:^3.972.36"
"@aws-sdk/credential-provider-process": "npm:^3.972.31"
"@aws-sdk/credential-provider-sso": "npm:^3.972.35"
"@aws-sdk/credential-provider-web-identity": "npm:^3.972.35"
"@aws-sdk/nested-clients": "npm:^3.997.3"
"@aws-sdk/types": "npm:^3.973.8"
"@smithy/config-resolver": "npm:^4.4.17"
"@smithy/core": "npm:^3.23.17"
"@smithy/credential-provider-imds": "npm:^4.2.14"
"@smithy/node-config-provider": "npm:^4.3.14"
"@smithy/property-provider": "npm:^4.2.14"
"@smithy/types": "npm:^4.14.1"
tslib: "npm:^2.6.2"
checksum: 10c0/d4690b5f48786d3edd4dea825cc56144326c38456c3637e1b3566a8cbb9883d9ae56cb77830007e6c4154eb35ac4ac2361f69eb7ee5d672ffd35f73fe76b1ea4
languageName: node
linkType: hard
"@aws-sdk/middleware-bucket-endpoint@npm:^3.972.10":
version: 3.972.35
resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.972.35"
dependencies:
"@aws-sdk/middleware-sdk-s3": "npm:^3.972.62"
tslib: "npm:^2.6.2"
checksum: 10c0/a4e11a02e5654f941527b54533740b7b919d474ee4828adacd760519e522df995f9be31112b91d9fd280e3b23a47c27c3d5de2fa23f7752bf678034cb76e9b7d
languageName: node
linkType: hard
"@aws-sdk/middleware-expect-continue@npm:^3.972.10":
version: 3.972.31
resolution: "@aws-sdk/middleware-expect-continue@npm:3.972.31"
dependencies:
"@aws-sdk/middleware-sdk-s3": "npm:^3.972.62"
tslib: "npm:^2.6.2"
checksum: 10c0/06369d40f81a9e89c3717d1f60725d735fa9f5b229a73e540acffded18a738c781c8bd3d3c11d97bd67452401fa70fce98e0321c018f74576ca343003b3d67ea
languageName: node
linkType: hard
"@aws-sdk/middleware-flexible-checksums@npm:^3.974.13":
version: 3.974.41
resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.974.41"
dependencies:
"@aws-sdk/checksums": "npm:^3.1000.16"
tslib: "npm:^2.6.2"
checksum: 10c0/6539b270dd9a96b83c60095f2a9899519645ca57722b80583482b777ba605614ed206a595a6499fa18bb1be6d1c325188b129aa7a07ab8e934e90a82c45b46ac
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:^3.972.10":
version: 3.972.32
resolution: "@aws-sdk/middleware-host-header@npm:3.972.32"
dependencies:
"@aws-sdk/core": "npm:^3.975.1"
tslib: "npm:^2.6.2"
checksum: 10c0/6609b551c1f4baccecff84d8cbba77a050a93554ad881874c0b884d2c3460481874f6c3b44b0e9c96ea1d537e9a55bb7206bb7640423a22026ec67bb5fdf59fe
languageName: node
linkType: hard
"@aws-sdk/middleware-location-constraint@npm:^3.972.10":
version: 3.972.28
resolution: "@aws-sdk/middleware-location-constraint@npm:3.972.28"
dependencies:
"@aws-sdk/middleware-sdk-s3": "npm:^3.972.62"
tslib: "npm:^2.6.2"
checksum: 10c0/b7093e8bd4e864f630d53f2e72683a341d6aef5bfdb67015685db12602b95ae4b3a12ee52fb631dc8a0052c07a9dfb2ce941f26e678171386193d7371f851506
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:^3.972.10":
version: 3.972.31
resolution: "@aws-sdk/middleware-logger@npm:3.972.31"
dependencies:
"@aws-sdk/core": "npm:^3.975.1"
tslib: "npm:^2.6.2"
checksum: 10c0/1963fb9f2eccd000f63a3b96ec1e238d85b158ac23e93659a10369333f889c2bc023505d87683f3b21e6b1553be11fe3f557609aea2902ef1a60330eb37c78f2
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:^3.972.11":
version: 3.972.33
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.972.33"
dependencies:
"@aws-sdk/core": "npm:^3.975.1"
tslib: "npm:^2.6.2"
checksum: 10c0/9b2c21468a1caecf8f71cfbf7f5cb812ac4c5b34e27abb7c7bbcf68666bfc60b0de3bd9320e2aafa5d335738a71378351ce916db1adf0b234056263c5532d2d9
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-ec2@npm:^3.972.22":
version: 3.972.45
resolution: "@aws-sdk/middleware-sdk-ec2@npm:3.972.45"
dependencies:
"@aws-sdk/core": "npm:^3.975.1"
"@aws-sdk/types": "npm:^3.974.0"
"@smithy/core": "npm:^3.29.2"
"@smithy/signature-v4": "npm:^5.6.3"
"@smithy/types": "npm:^4.16.0"
tslib: "npm:^2.6.2"
checksum: 10c0/b465021450d40e97de555843aa878ddf5daaeefcdb5774a37a4d1a12d2ded344463201722145703eacf06c3f2a92033d9b53fade2a9c657f17048a9deae58671
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-rds@npm:^3.972.22":
version: 3.972.45
resolution: "@aws-sdk/middleware-sdk-rds@npm:3.972.45"
dependencies:
"@aws-sdk/core": "npm:^3.975.1"
"@aws-sdk/types": "npm:^3.974.0"
"@smithy/core": "npm:^3.29.2"
"@smithy/signature-v4": "npm:^5.6.3"
"@smithy/types": "npm:^4.16.0"
tslib: "npm:^2.6.2"
checksum: 10c0/c01bfd66e766182b44b667c4538497fb78fa317a2bfaf2ab3814885254417033eaf6efe3a53326c399e2392de5926bd932b5698614f12b27c096d30313ce4dea
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-s3@npm:^3.972.34, @aws-sdk/middleware-sdk-s3@npm:^3.972.62":
version: 3.972.62
resolution: "@aws-sdk/middleware-sdk-s3@npm:3.972.62"
dependencies:
"@aws-sdk/core": "npm:^3.975.1"
"@aws-sdk/signature-v4-multi-region": "npm:^3.996.39"
"@aws-sdk/types": "npm:^3.974.0"
"@smithy/core": "npm:^3.29.2"
"@smithy/types": "npm:^4.16.0"
tslib: "npm:^2.6.2"
checksum: 10c0/8f3af2684083d2521be74f0882eb86a8905bc8f374b226d41a1fb2e96452d95381d0eefd0394ee915d052365c258c9518eab9eedbb6223812ce9c97a26451fcd
languageName: node
linkType: hard
"@aws-sdk/middleware-ssec@npm:^3.972.10":
version: 3.972.28
resolution: "@aws-sdk/middleware-ssec@npm:3.972.28"
dependencies:
"@aws-sdk/middleware-sdk-s3": "npm:^3.972.62"
tslib: "npm:^2.6.2"
checksum: 10c0/edaea6dd601b43224bf30e11a24ca16f41b904ee433b464c3ca755afa2d880a53aa0f0673d38c1babf3d6cd849d7936fa2c795b76a498f83cc390267b5d6fd5d
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:^3.972.35":
version: 3.972.61
resolution: "@aws-sdk/middleware-user-agent@npm:3.972.61"
dependencies:
"@aws-sdk/core": "npm:^3.975.1"
tslib: "npm:^2.6.2"
checksum: 10c0/28b6a56a539fcb1fe1590fe1e7b3c0daed2f7a1bcefc15c364061522e7480a09ec919a65d53fdb30777462910841aba8536ea684e59c8d08e768de46ec7099f8
languageName: node
linkType: hard
"@aws-sdk/nested-clients@npm:^3.997.3, @aws-sdk/nested-clients@npm:^3.997.31":
version: 3.997.31
resolution: "@aws-sdk/nested-clients@npm:3.997.31"
dependencies:
"@aws-sdk/core": "npm:^3.975.1"
"@aws-sdk/signature-v4-multi-region": "npm:^3.996.39"
"@aws-sdk/types": "npm:^3.974.0"
"@smithy/core": "npm:^3.29.2"
"@smithy/fetch-http-handler": "npm:^5.6.4"
"@smithy/node-http-handler": "npm:^4.9.4"
"@smithy/types": "npm:^4.16.0"
tslib: "npm:^2.6.2"
checksum: 10c0/123aa96668b5b0b70d1c9555fed441662716aef3b0f3fab80200e5652423f4ec09025b286ae5288f861c64a2a9089e86279d96358d69a61206c9feb99c7892bf
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:^3.972.13":
version: 3.972.35
resolution: "@aws-sdk/region-config-resolver@npm:3.972.35"
dependencies:
"@aws-sdk/core": "npm:^3.975.1"
tslib: "npm:^2.6.2"
checksum: 10c0/fedcdce6d7743db7df86e6956343504c85c417b651fd04bf745d1962088c5f8e729ded08f13933ac51c157f4554f466535ef772601268200baad60f297f0edfd
languageName: node
linkType: hard
"@aws-sdk/signature-v4-multi-region@npm:^3.996.22, @aws-sdk/signature-v4-multi-region@npm:^3.996.39":
version: 3.996.39
resolution: "@aws-sdk/signature-v4-multi-region@npm:3.996.39"
dependencies:
"@aws-sdk/types": "npm:^3.974.0"
"@smithy/signature-v4": "npm:^5.6.3"
"@smithy/types": "npm:^4.16.0"
tslib: "npm:^2.6.2"
checksum: 10c0/3bee44dff6fcd668917aabbbff299f298175565a7850a3dbd9cb5545c379ea56ba4b0cc76182d27913ea1d2a508d8e98bbfa226d8a91d4669f7fb380b66bde2d
languageName: node
linkType: hard
"@aws-sdk/token-providers@npm:3.1083.0":
version: 3.1083.0
resolution: "@aws-sdk/token-providers@npm:3.1083.0"
dependencies:
"@aws-sdk/core": "npm:^3.975.1"
"@aws-sdk/nested-clients": "npm:^3.997.31"
"@aws-sdk/types": "npm:^3.974.0"
"@smithy/core": "npm:^3.29.2"
"@smithy/types": "npm:^4.16.0"
tslib: "npm:^2.6.2"
checksum: 10c0/9ccd9da9b4c3351c8b9f3f3ba1d2de0ab56fbaae84d0e3c77f2bb9f4b8ad18949af302058f80dd5f2c7b8f052bb34c80b04846a844e15bc0a337faa416188777
languageName: node
linkType: hard
"@aws-sdk/types@npm:^3.222.0, @aws-sdk/types@npm:^3.973.8, @aws-sdk/types@npm:^3.974.0":
version: 3.974.0
resolution: "@aws-sdk/types@npm:3.974.0"
dependencies:
"@smithy/types": "npm:^4.16.0"
tslib: "npm:^2.6.2"
checksum: 10c0/9e0ed5a75b60613c954431ffa249ccc8a2d03f59afb6ed52ec3eb16ddb71b707a1a7165518e3f25e345c09fc50dcebb4fb84d08a0a050a246bfe9feb76509bc9
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:^3.996.8":
version: 3.996.30
resolution: "@aws-sdk/util-endpoints@npm:3.996.30"
dependencies:
"@aws-sdk/core": "npm:^3.975.1"
"@smithy/core": "npm:^3.29.2"
tslib: "npm:^2.6.2"
checksum: 10c0/5d49bf8a51c84cda351eaadfdd90e850f49bf0f0278775dd92e93211df5e2bde637d2aa2b52906b3e7d3fc1a55adbd97c2bd8465909e85d490bbd0a7052a7ee8
languageName: node
linkType: hard
"@aws-sdk/util-locate-window@npm:^3.0.0":
version: 3.965.8
resolution: "@aws-sdk/util-locate-window@npm:3.965.8"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10c0/fc3fd154cf560d815a4e9a58aadd1aed860a9dd8cc82ce9824faf9255c688626339077940d35ae91798b753dd7ad4e735c08d4f015b573e681130712a8b52865
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-browser@npm:^3.972.10":
version: 3.972.32
resolution: "@aws-sdk/util-user-agent-browser@npm:3.972.32"
dependencies:
"@aws-sdk/core": "npm:^3.975.1"
tslib: "npm:^2.6.2"
checksum: 10c0/7ed3a15e37f0596d9287f2c689cf62775389e0c1ef301f2fffc279a3cfc60e22997ca603d88202c1d522477056ba83d052ef6b343f9570c64034351c0cd79a0b
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-node@npm:^3.973.21":
version: 3.973.47
resolution: "@aws-sdk/util-user-agent-node@npm:3.973.47"
dependencies:
"@aws-sdk/core": "npm:^3.975.1"
tslib: "npm:^2.6.2"
checksum: 10c0/536e1a65affd0c0dd53363bd4c7041cc515e7ee194722ee663548041adb674ed19d22f5b954946d13fd56ef9b38b81721648854c83f1543978ac3617a18af3a2
languageName: node
linkType: hard
"@aws-sdk/xml-builder@npm:^3.972.34":
version: 3.972.34
resolution: "@aws-sdk/xml-builder@npm:3.972.34"
dependencies:
"@smithy/types": "npm:^4.16.0"
tslib: "npm:^2.6.2"
checksum: 10c0/a04c804d75ae9935ce086d9ff3ea2f03a67633b25180cb82f861bdec3fe10d2f45e59bd6541ee1b1558bc0c6429d688bc19ea256878ebac1bcde1a6d0bb06f8b
languageName: node
linkType: hard
"@aws/lambda-invoke-store@npm:^0.3.0":
version: 0.3.0
resolution: "@aws/lambda-invoke-store@npm:0.3.0"
checksum: 10c0/b4a2e6b3b5397bc606053e64270d26dc5c886336f88a98cad587b1592eec17058f8fb172f1827a9f0e591f3595cf8f01575c8c9b36cde38c06456f8a65204046
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0":
version: 7.29.7
resolution: "@babel/code-frame@npm:7.29.7"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.29.7"
js-tokens: "npm:^4.0.0"
picocolors: "npm:^1.1.1"
checksum: 10c0/169fc2080169a40c1760155eaaaf739bcb882df0bec76a83adbda5493645bc17270a3434b8848c494b1933e96fe1d147370001e3cda09a39f43ae30f08ef2069
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/helper-validator-identifier@npm:7.29.7"
checksum: 10c0/4795354e7ae0dcafa72de1cd04ec51252dc1498517170beaf019e03effc5b7bf13c6b21a3949a77e07b8125be7f106ed1131350d8ebd4566ae874094a726d62b
languageName: node
linkType: hard
"@babel/runtime-corejs3@npm:^7.14.9":
version: 7.29.7
resolution: "@babel/runtime-corejs3@npm:7.29.7"
dependencies:
core-js-pure: "npm:^3.48.0"
checksum: 10c0/3ea24ca1b0d92a3421afab2078e1ff21ea8a8d872f9bcd56b21145eec44f123b4e629e89e47bae2301fa12e22411150dc42a71fd29ec687b97001069867cfd6d
languageName: node
linkType: hard
"@baszalmstra/rattler@npm:0.2.1":
version: 0.2.1
resolution: "@baszalmstra/rattler@npm:0.2.1"
checksum: 10c0/15024f80f9bdd45a02f6006eda758d0282f5895f67aaa5d1d5a60eb27a62e5e3446225afe5dbb3638ac1191f9dbb3578f6eabd664736e66a31f3488a1ff3fe2e
languageName: node
linkType: hard
"@breejs/later@npm:4.2.0":
version: 4.2.0
resolution: "@breejs/later@npm:4.2.0"
checksum: 10c0/d79c5d35a5951f674644101bd19c93e7964333c5bd97b3eb3a2bc658ee12ca28a343b1f86221deadefbc57328eccafe421424ac5128b5f3eab30169e6b42d1f0
languageName: node
linkType: hard
"@cdktf/hcl2json@npm:0.21.0":
version: 0.21.0
resolution: "@cdktf/hcl2json@npm:0.21.0"
dependencies:
fs-extra: "npm:11.3.0"
checksum: 10c0/4cba4597c0ede0d18fe95201fb9c883eff1f502a02ba1cd56397ee4b33047fa00f229ad62e14e0822ff6a4256b473c54429494388e1986fc024e5419e1fe4e94
languageName: node
linkType: hard
"@gwhitney/detect-indent@npm:7.0.1":
version: 7.0.1
resolution: "@gwhitney/detect-indent@npm:7.0.1"
checksum: 10c0/d8dc05fe52db3a4e54745c6422ae2a29bbf703e4a08271c396055c6e1550b6696598dccf4645d7fbd3d3295c73ec9f7a354dbfa6087193e092fd8316ac5e8deb
languageName: node
linkType: hard
"@isaacs/cliui@npm:^8.0.2":
version: 8.0.2
resolution: "@isaacs/cliui@npm:8.0.2"
dependencies:
string-width: "npm:^5.1.2"
string-width-cjs: "npm:string-width@^4.2.0"
strip-ansi: "npm:^7.0.1"
strip-ansi-cjs: "npm:strip-ansi@^6.0.1"
wrap-ansi: "npm:^8.1.0"
wrap-ansi-cjs: "npm:wrap-ansi@^7.0.0"
checksum: 10c0/b1bf42535d49f11dc137f18d5e4e63a28c5569de438a221c369483731e9dac9fb797af554e8bf02b6192d1e5eba6e6402cf93900c3d0ac86391d00d04876789e
languageName: node
linkType: hard
"@isaacs/fs-minipass@npm:^4.0.0":
version: 4.0.1
resolution: "@isaacs/fs-minipass@npm:4.0.1"
dependencies:
minipass: "npm:^7.0.4"
checksum: 10c0/c25b6dc1598790d5b55c0947a9b7d111cfa92594db5296c3b907e2f533c033666f692a3939eadac17b1c7c40d362d0b0635dc874cbfe3e70db7c2b07cc97a5d2
languageName: node
linkType: hard
"@keyv/serialize@npm:^1.1.1":
version: 1.1.1
resolution: "@keyv/serialize@npm:1.1.1"
checksum: 10c0/b0008cae4a54400c3abf587b8cc2474c6f528ee58969ce6cf9cb07a04006f80c73c85971d6be6544408318a2bc40108236a19a82aea0a6de95aae49533317374
languageName: node
linkType: hard
"@kwsites/file-exists@npm:^1.1.1":
version: 1.1.1
resolution: "@kwsites/file-exists@npm:1.1.1"
dependencies:
debug: "npm:^4.1.1"
checksum: 10c0/39e693239a72ccd8408bb618a0200e4a8d61682057ca7ae2c87668d7e69196e8d7e2c9cde73db6b23b3b0230169a15e5f1bfe086539f4be43e767b2db68e8ee4
languageName: node
linkType: hard
"@kwsites/promise-deferred@npm:^1.1.1":
version: 1.1.1
resolution: "@kwsites/promise-deferred@npm:1.1.1"
checksum: 10c0/ef1ad3f1f50991e3bed352b175986d8b4bc684521698514a2ed63c1d1fc9848843da4f2bc2df961c9b148c94e1c34bf33f0da8a90ba2234e452481f2cc9937b1
languageName: node
linkType: hard
"@nodelib/fs.scandir@npm:2.1.5":
version: 2.1.5
resolution: "@nodelib/fs.scandir@npm:2.1.5"
dependencies:
"@nodelib/fs.stat": "npm:2.0.5"
run-parallel: "npm:^1.1.9"
checksum: 10c0/732c3b6d1b1e967440e65f284bd06e5821fedf10a1bea9ed2bb75956ea1f30e08c44d3def9d6a230666574edbaf136f8cfd319c14fd1f87c66e6a44449afb2eb
languageName: node
linkType: hard
"@nodelib/fs.stat@npm:2.0.5, @nodelib/fs.stat@npm:^2.0.2":
version: 2.0.5
resolution: "@nodelib/fs.stat@npm:2.0.5"
checksum: 10c0/88dafe5e3e29a388b07264680dc996c17f4bda48d163a9d4f5c1112979f0ce8ec72aa7116122c350b4e7976bc5566dc3ddb579be1ceaacc727872eb4ed93926d
languageName: node
linkType: hard
"@nodelib/fs.walk@npm:^1.2.3":
version: 1.2.8
resolution: "@nodelib/fs.walk@npm:1.2.8"
dependencies:
"@nodelib/fs.scandir": "npm:2.1.5"
fastq: "npm:^1.6.0"
checksum: 10c0/db9de047c3bb9b51f9335a7bb46f4fcfb6829fb628318c12115fbaf7d369bfce71c15b103d1fc3b464812d936220ee9bc1c8f762d032c9f6be9acc99249095b1
languageName: node