-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathyarn.lock
More file actions
11965 lines (10832 loc) · 425 KB
/
yarn.lock
File metadata and controls
11965 lines (10832 loc) · 425 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: 10
"@ampproject/remapping@npm:^2.2.0":
version: 2.3.0
resolution: "@ampproject/remapping@npm:2.3.0"
dependencies:
"@jridgewell/gen-mapping": "npm:^0.3.5"
"@jridgewell/trace-mapping": "npm:^0.3.24"
checksum: 10/f3451525379c68a73eb0a1e65247fbf28c0cccd126d93af21c75fceff77773d43c0d4a2d51978fb131aff25b5f2cb41a9fe48cc296e61ae65e679c4f6918b0ab
languageName: node
linkType: hard
"@antfu/install-pkg@npm:1.1.0":
version: 1.1.0
resolution: "@antfu/install-pkg@npm:1.1.0"
dependencies:
package-manager-detector: "npm:^1.3.0"
tinyexec: "npm:^1.0.1"
checksum: 10/e20b7cd1c37eff832cc878cddd794f8c3779175681cf6d75c4cc1ae1475526126a4c1f71fa027161aa1ee35a8850782be9ca0ec01b621893defebe97ba9dc70e
languageName: node
linkType: hard
"@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: 10/1b0a56ad4cb44c9512d8b1668dcf9306ab541d3a73829f435ca97abaec8d56f3db953db03ad0d0698754fea16fcd803d11fa42e0889bc7b803c6a030b04c63de
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: 10/2b1b701ca6caa876333b4eb2b96e5187d71ebb51ebf8e2d632690dbcdedeff038202d23adcc97e023437ed42bb1963b7b463e343687edf0635fd4b98b2edad1a
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: 10/f46aace7b873c615be4e787ab0efd0148ef7de48f9f12c7d043e05c52e52b75bb0bf6dbcb9b2852d940d7724fab7b6d5ff1469160a3dd024efe7a68b5f70df8c
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: 10/6ed0c7e17f4f6663d057630805c45edb35d5693380c24ab52d4c453ece303c6c8a6ade9ee93c97dda77d9f6cae376ffbb44467057161c513dffa3422250edaf5
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: 10/f80a174c404e1ad4364741c942f440e75f834c08278fa754349fe23a6edc679d480ea9ced5820774aee58091ed270067022d8059ecf1a7ef452d58134ac7e9e1
languageName: node
linkType: hard
"@aws-sdk/client-cloudwatch-logs@npm:3.981.0":
version: 3.981.0
resolution: "@aws-sdk/client-cloudwatch-logs@npm:3.981.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.973.5"
"@aws-sdk/credential-provider-node": "npm:^3.972.4"
"@aws-sdk/middleware-host-header": "npm:^3.972.3"
"@aws-sdk/middleware-logger": "npm:^3.972.3"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.3"
"@aws-sdk/middleware-user-agent": "npm:^3.972.5"
"@aws-sdk/region-config-resolver": "npm:^3.972.3"
"@aws-sdk/types": "npm:^3.973.1"
"@aws-sdk/util-endpoints": "npm:3.981.0"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.3"
"@aws-sdk/util-user-agent-node": "npm:^3.972.3"
"@smithy/config-resolver": "npm:^4.4.6"
"@smithy/core": "npm:^3.22.0"
"@smithy/eventstream-serde-browser": "npm:^4.2.8"
"@smithy/eventstream-serde-config-resolver": "npm:^4.3.8"
"@smithy/eventstream-serde-node": "npm:^4.2.8"
"@smithy/fetch-http-handler": "npm:^5.3.9"
"@smithy/hash-node": "npm:^4.2.8"
"@smithy/invalid-dependency": "npm:^4.2.8"
"@smithy/middleware-content-length": "npm:^4.2.8"
"@smithy/middleware-endpoint": "npm:^4.4.12"
"@smithy/middleware-retry": "npm:^4.4.29"
"@smithy/middleware-serde": "npm:^4.2.9"
"@smithy/middleware-stack": "npm:^4.2.8"
"@smithy/node-config-provider": "npm:^4.3.8"
"@smithy/node-http-handler": "npm:^4.4.8"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/smithy-client": "npm:^4.11.1"
"@smithy/types": "npm:^4.12.0"
"@smithy/url-parser": "npm:^4.2.8"
"@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.28"
"@smithy/util-defaults-mode-node": "npm:^4.2.31"
"@smithy/util-endpoints": "npm:^3.2.8"
"@smithy/util-middleware": "npm:^4.2.8"
"@smithy/util-retry": "npm:^4.2.8"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10/b6ec227fdd8468833de7a5f6e97b38f9c7c2dbfa24bcedaf5846522c11363c98c05f41d853214f65edef9dba7b65b9b12969f8d92ef67ca7a88afc844494a5c0
languageName: node
linkType: hard
"@aws-sdk/client-cognito-identity@npm:3.980.0":
version: 3.980.0
resolution: "@aws-sdk/client-cognito-identity@npm:3.980.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.973.5"
"@aws-sdk/credential-provider-node": "npm:^3.972.4"
"@aws-sdk/middleware-host-header": "npm:^3.972.3"
"@aws-sdk/middleware-logger": "npm:^3.972.3"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.3"
"@aws-sdk/middleware-user-agent": "npm:^3.972.5"
"@aws-sdk/region-config-resolver": "npm:^3.972.3"
"@aws-sdk/types": "npm:^3.973.1"
"@aws-sdk/util-endpoints": "npm:3.980.0"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.3"
"@aws-sdk/util-user-agent-node": "npm:^3.972.3"
"@smithy/config-resolver": "npm:^4.4.6"
"@smithy/core": "npm:^3.22.0"
"@smithy/fetch-http-handler": "npm:^5.3.9"
"@smithy/hash-node": "npm:^4.2.8"
"@smithy/invalid-dependency": "npm:^4.2.8"
"@smithy/middleware-content-length": "npm:^4.2.8"
"@smithy/middleware-endpoint": "npm:^4.4.12"
"@smithy/middleware-retry": "npm:^4.4.29"
"@smithy/middleware-serde": "npm:^4.2.9"
"@smithy/middleware-stack": "npm:^4.2.8"
"@smithy/node-config-provider": "npm:^4.3.8"
"@smithy/node-http-handler": "npm:^4.4.8"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/smithy-client": "npm:^4.11.1"
"@smithy/types": "npm:^4.12.0"
"@smithy/url-parser": "npm:^4.2.8"
"@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.28"
"@smithy/util-defaults-mode-node": "npm:^4.2.31"
"@smithy/util-endpoints": "npm:^3.2.8"
"@smithy/util-middleware": "npm:^4.2.8"
"@smithy/util-retry": "npm:^4.2.8"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10/37c92459a27dfe60725511fdf78f0542e024f4f7fc3a5de9a2dbdab64a675fd9b30ae8067b2d3207445808e043a2435a17466f285707371bbb3d65cb78ef8e25
languageName: node
linkType: hard
"@aws-sdk/client-cognito-identity@npm:3.981.0":
version: 3.981.0
resolution: "@aws-sdk/client-cognito-identity@npm:3.981.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.973.5"
"@aws-sdk/credential-provider-node": "npm:^3.972.4"
"@aws-sdk/middleware-host-header": "npm:^3.972.3"
"@aws-sdk/middleware-logger": "npm:^3.972.3"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.3"
"@aws-sdk/middleware-user-agent": "npm:^3.972.5"
"@aws-sdk/region-config-resolver": "npm:^3.972.3"
"@aws-sdk/types": "npm:^3.973.1"
"@aws-sdk/util-endpoints": "npm:3.981.0"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.3"
"@aws-sdk/util-user-agent-node": "npm:^3.972.3"
"@smithy/config-resolver": "npm:^4.4.6"
"@smithy/core": "npm:^3.22.0"
"@smithy/fetch-http-handler": "npm:^5.3.9"
"@smithy/hash-node": "npm:^4.2.8"
"@smithy/invalid-dependency": "npm:^4.2.8"
"@smithy/middleware-content-length": "npm:^4.2.8"
"@smithy/middleware-endpoint": "npm:^4.4.12"
"@smithy/middleware-retry": "npm:^4.4.29"
"@smithy/middleware-serde": "npm:^4.2.9"
"@smithy/middleware-stack": "npm:^4.2.8"
"@smithy/node-config-provider": "npm:^4.3.8"
"@smithy/node-http-handler": "npm:^4.4.8"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/smithy-client": "npm:^4.11.1"
"@smithy/types": "npm:^4.12.0"
"@smithy/url-parser": "npm:^4.2.8"
"@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.28"
"@smithy/util-defaults-mode-node": "npm:^4.2.31"
"@smithy/util-endpoints": "npm:^3.2.8"
"@smithy/util-middleware": "npm:^4.2.8"
"@smithy/util-retry": "npm:^4.2.8"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10/060b07c17e8aaa796b7649088eea44379560ff5d8a88a82932476db097eab1098e89aa29a3d98e4eaf92d908e0649f953b60cafa5d49a7ccc0b577a4edfa9a1e
languageName: node
linkType: hard
"@aws-sdk/client-iam@npm:3.981.0":
version: 3.981.0
resolution: "@aws-sdk/client-iam@npm:3.981.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.973.5"
"@aws-sdk/credential-provider-node": "npm:^3.972.4"
"@aws-sdk/middleware-host-header": "npm:^3.972.3"
"@aws-sdk/middleware-logger": "npm:^3.972.3"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.3"
"@aws-sdk/middleware-user-agent": "npm:^3.972.5"
"@aws-sdk/region-config-resolver": "npm:^3.972.3"
"@aws-sdk/types": "npm:^3.973.1"
"@aws-sdk/util-endpoints": "npm:3.981.0"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.3"
"@aws-sdk/util-user-agent-node": "npm:^3.972.3"
"@smithy/config-resolver": "npm:^4.4.6"
"@smithy/core": "npm:^3.22.0"
"@smithy/fetch-http-handler": "npm:^5.3.9"
"@smithy/hash-node": "npm:^4.2.8"
"@smithy/invalid-dependency": "npm:^4.2.8"
"@smithy/middleware-content-length": "npm:^4.2.8"
"@smithy/middleware-endpoint": "npm:^4.4.12"
"@smithy/middleware-retry": "npm:^4.4.29"
"@smithy/middleware-serde": "npm:^4.2.9"
"@smithy/middleware-stack": "npm:^4.2.8"
"@smithy/node-config-provider": "npm:^4.3.8"
"@smithy/node-http-handler": "npm:^4.4.8"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/smithy-client": "npm:^4.11.1"
"@smithy/types": "npm:^4.12.0"
"@smithy/url-parser": "npm:^4.2.8"
"@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.28"
"@smithy/util-defaults-mode-node": "npm:^4.2.31"
"@smithy/util-endpoints": "npm:^3.2.8"
"@smithy/util-middleware": "npm:^4.2.8"
"@smithy/util-retry": "npm:^4.2.8"
"@smithy/util-utf8": "npm:^4.2.0"
"@smithy/util-waiter": "npm:^4.2.8"
tslib: "npm:^2.6.2"
checksum: 10/59172e824e0e8f83a5902d1a4fc3ffc81f4d7040e90a16f0c76649a45a302def0bd738fd97c8d76c41cb13aad52a56367ca4a4a8b07a2d69fb68c35326242669
languageName: node
linkType: hard
"@aws-sdk/client-lambda@npm:3.981.0":
version: 3.981.0
resolution: "@aws-sdk/client-lambda@npm:3.981.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.973.5"
"@aws-sdk/credential-provider-node": "npm:^3.972.4"
"@aws-sdk/middleware-host-header": "npm:^3.972.3"
"@aws-sdk/middleware-logger": "npm:^3.972.3"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.3"
"@aws-sdk/middleware-user-agent": "npm:^3.972.5"
"@aws-sdk/region-config-resolver": "npm:^3.972.3"
"@aws-sdk/types": "npm:^3.973.1"
"@aws-sdk/util-endpoints": "npm:3.981.0"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.3"
"@aws-sdk/util-user-agent-node": "npm:^3.972.3"
"@smithy/config-resolver": "npm:^4.4.6"
"@smithy/core": "npm:^3.22.0"
"@smithy/eventstream-serde-browser": "npm:^4.2.8"
"@smithy/eventstream-serde-config-resolver": "npm:^4.3.8"
"@smithy/eventstream-serde-node": "npm:^4.2.8"
"@smithy/fetch-http-handler": "npm:^5.3.9"
"@smithy/hash-node": "npm:^4.2.8"
"@smithy/invalid-dependency": "npm:^4.2.8"
"@smithy/middleware-content-length": "npm:^4.2.8"
"@smithy/middleware-endpoint": "npm:^4.4.12"
"@smithy/middleware-retry": "npm:^4.4.29"
"@smithy/middleware-serde": "npm:^4.2.9"
"@smithy/middleware-stack": "npm:^4.2.8"
"@smithy/node-config-provider": "npm:^4.3.8"
"@smithy/node-http-handler": "npm:^4.4.8"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/smithy-client": "npm:^4.11.1"
"@smithy/types": "npm:^4.12.0"
"@smithy/url-parser": "npm:^4.2.8"
"@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.28"
"@smithy/util-defaults-mode-node": "npm:^4.2.31"
"@smithy/util-endpoints": "npm:^3.2.8"
"@smithy/util-middleware": "npm:^4.2.8"
"@smithy/util-retry": "npm:^4.2.8"
"@smithy/util-stream": "npm:^4.5.10"
"@smithy/util-utf8": "npm:^4.2.0"
"@smithy/util-waiter": "npm:^4.2.8"
tslib: "npm:^2.6.2"
checksum: 10/76698c9c947b3fd80781903cb765ddbf83725c242c4fe3b0996f8b2648e865132f5d11c081dcc9198c282e9aaa92e19e0e0612648b695cfdefd6bb39b228930a
languageName: node
linkType: hard
"@aws-sdk/client-sfn@npm:3.981.0":
version: 3.981.0
resolution: "@aws-sdk/client-sfn@npm:3.981.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.973.5"
"@aws-sdk/credential-provider-node": "npm:^3.972.4"
"@aws-sdk/middleware-host-header": "npm:^3.972.3"
"@aws-sdk/middleware-logger": "npm:^3.972.3"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.3"
"@aws-sdk/middleware-user-agent": "npm:^3.972.5"
"@aws-sdk/region-config-resolver": "npm:^3.972.3"
"@aws-sdk/types": "npm:^3.973.1"
"@aws-sdk/util-endpoints": "npm:3.981.0"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.3"
"@aws-sdk/util-user-agent-node": "npm:^3.972.3"
"@smithy/config-resolver": "npm:^4.4.6"
"@smithy/core": "npm:^3.22.0"
"@smithy/fetch-http-handler": "npm:^5.3.9"
"@smithy/hash-node": "npm:^4.2.8"
"@smithy/invalid-dependency": "npm:^4.2.8"
"@smithy/middleware-content-length": "npm:^4.2.8"
"@smithy/middleware-endpoint": "npm:^4.4.12"
"@smithy/middleware-retry": "npm:^4.4.29"
"@smithy/middleware-serde": "npm:^4.2.9"
"@smithy/middleware-stack": "npm:^4.2.8"
"@smithy/node-config-provider": "npm:^4.3.8"
"@smithy/node-http-handler": "npm:^4.4.8"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/smithy-client": "npm:^4.11.1"
"@smithy/types": "npm:^4.12.0"
"@smithy/url-parser": "npm:^4.2.8"
"@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.28"
"@smithy/util-defaults-mode-node": "npm:^4.2.31"
"@smithy/util-endpoints": "npm:^3.2.8"
"@smithy/util-middleware": "npm:^4.2.8"
"@smithy/util-retry": "npm:^4.2.8"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10/d1f90b938aafa46a2e11030759891c7420032224a6b944d738b61d5ee205099738d5d07715f2ede84f699c05a43265ebac80515b8f9812fa00183142e3b998fe
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.993.0":
version: 3.993.0
resolution: "@aws-sdk/client-sso@npm:3.993.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.973.11"
"@aws-sdk/middleware-host-header": "npm:^3.972.3"
"@aws-sdk/middleware-logger": "npm:^3.972.3"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.3"
"@aws-sdk/middleware-user-agent": "npm:^3.972.11"
"@aws-sdk/region-config-resolver": "npm:^3.972.3"
"@aws-sdk/types": "npm:^3.973.1"
"@aws-sdk/util-endpoints": "npm:3.993.0"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.3"
"@aws-sdk/util-user-agent-node": "npm:^3.972.9"
"@smithy/config-resolver": "npm:^4.4.6"
"@smithy/core": "npm:^3.23.2"
"@smithy/fetch-http-handler": "npm:^5.3.9"
"@smithy/hash-node": "npm:^4.2.8"
"@smithy/invalid-dependency": "npm:^4.2.8"
"@smithy/middleware-content-length": "npm:^4.2.8"
"@smithy/middleware-endpoint": "npm:^4.4.16"
"@smithy/middleware-retry": "npm:^4.4.33"
"@smithy/middleware-serde": "npm:^4.2.9"
"@smithy/middleware-stack": "npm:^4.2.8"
"@smithy/node-config-provider": "npm:^4.3.8"
"@smithy/node-http-handler": "npm:^4.4.10"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/smithy-client": "npm:^4.11.5"
"@smithy/types": "npm:^4.12.0"
"@smithy/url-parser": "npm:^4.2.8"
"@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.32"
"@smithy/util-defaults-mode-node": "npm:^4.2.35"
"@smithy/util-endpoints": "npm:^3.2.8"
"@smithy/util-middleware": "npm:^4.2.8"
"@smithy/util-retry": "npm:^4.2.8"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10/046e3593e5fa572ce17db7211f4207d94666cccdbe04dc91c0a983b4e195651d16f5712a69edccb2574af9bdd93e3feecac6e02bc869609ce38a74ab0fbfa9ac
languageName: node
linkType: hard
"@aws-sdk/core@npm:^3.973.11, @aws-sdk/core@npm:^3.973.5":
version: 3.973.11
resolution: "@aws-sdk/core@npm:3.973.11"
dependencies:
"@aws-sdk/types": "npm:^3.973.1"
"@aws-sdk/xml-builder": "npm:^3.972.5"
"@smithy/core": "npm:^3.23.2"
"@smithy/node-config-provider": "npm:^4.3.8"
"@smithy/property-provider": "npm:^4.2.8"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/signature-v4": "npm:^5.3.8"
"@smithy/smithy-client": "npm:^4.11.5"
"@smithy/types": "npm:^4.12.0"
"@smithy/util-base64": "npm:^4.3.0"
"@smithy/util-middleware": "npm:^4.2.8"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10/59423ae85a9365e2ae34ce91e032b6fe3dc0d9e0ccfb3026414c5e1f9c30bad573373a7037ffb2a9239b3cbcf3ee374480b65a341e49ee291431135bebb2002e
languageName: node
linkType: hard
"@aws-sdk/credential-provider-cognito-identity@npm:^3.972.3":
version: 3.972.3
resolution: "@aws-sdk/credential-provider-cognito-identity@npm:3.972.3"
dependencies:
"@aws-sdk/client-cognito-identity": "npm:3.980.0"
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/property-provider": "npm:^4.2.8"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10/fb9c183ff2d961cb2b24b6129ba593bec19218973a6d284a7a43bb724b71708eb0105d6b1aa88a1562e2fcede25eb92ae73ec1e566b319fee6d2b8487a980e41
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:^3.972.3, @aws-sdk/credential-provider-env@npm:^3.972.9":
version: 3.972.9
resolution: "@aws-sdk/credential-provider-env@npm:3.972.9"
dependencies:
"@aws-sdk/core": "npm:^3.973.11"
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/property-provider": "npm:^4.2.8"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10/326abf38f4bc119c3aeaa043e426077e16584db64bdfcb6626b2be74b2d252930d2240e592ff16aa366610bbc8a8e6d64b176780959751c5f17ceaa2f64743a0
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:^3.972.11, @aws-sdk/credential-provider-http@npm:^3.972.5":
version: 3.972.11
resolution: "@aws-sdk/credential-provider-http@npm:3.972.11"
dependencies:
"@aws-sdk/core": "npm:^3.973.11"
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/fetch-http-handler": "npm:^5.3.9"
"@smithy/node-http-handler": "npm:^4.4.10"
"@smithy/property-provider": "npm:^4.2.8"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/smithy-client": "npm:^4.11.5"
"@smithy/types": "npm:^4.12.0"
"@smithy/util-stream": "npm:^4.5.12"
tslib: "npm:^2.6.2"
checksum: 10/d7783ff52289e66d588034770c8da3046ef6935a3511015d531a76cd70ed70d5d380aa5d3fbc93638e50910592379f05b81fa12711e5100eb4b4984c8d580c45
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.972.9, @aws-sdk/credential-provider-ini@npm:^3.972.3":
version: 3.972.9
resolution: "@aws-sdk/credential-provider-ini@npm:3.972.9"
dependencies:
"@aws-sdk/core": "npm:^3.973.11"
"@aws-sdk/credential-provider-env": "npm:^3.972.9"
"@aws-sdk/credential-provider-http": "npm:^3.972.11"
"@aws-sdk/credential-provider-login": "npm:^3.972.9"
"@aws-sdk/credential-provider-process": "npm:^3.972.9"
"@aws-sdk/credential-provider-sso": "npm:^3.972.9"
"@aws-sdk/credential-provider-web-identity": "npm:^3.972.9"
"@aws-sdk/nested-clients": "npm:3.993.0"
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/credential-provider-imds": "npm:^4.2.8"
"@smithy/property-provider": "npm:^4.2.8"
"@smithy/shared-ini-file-loader": "npm:^4.4.3"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10/096c6ae0830da5a35d2e346377a0e0584786f8fb975ca488ddc449fe5c36faef6bf245d0890803dc918816ca08bfa1c58fa4e8c290afb99ea9a2e49b5afdac70
languageName: node
linkType: hard
"@aws-sdk/credential-provider-login@npm:^3.972.3, @aws-sdk/credential-provider-login@npm:^3.972.9":
version: 3.972.9
resolution: "@aws-sdk/credential-provider-login@npm:3.972.9"
dependencies:
"@aws-sdk/core": "npm:^3.973.11"
"@aws-sdk/nested-clients": "npm:3.993.0"
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/property-provider": "npm:^4.2.8"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/shared-ini-file-loader": "npm:^4.4.3"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10/f3aeb7bc71f43c45db4eba1b1f0dcd6ad55e4dd27c57a4d73626a3d1fd6e54232e16883f50997066186bbde95b8af8df7f8dbf25cdbe3d5402974b6741b0eda1
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:^3.972.4":
version: 3.972.4
resolution: "@aws-sdk/credential-provider-node@npm:3.972.4"
dependencies:
"@aws-sdk/credential-provider-env": "npm:^3.972.3"
"@aws-sdk/credential-provider-http": "npm:^3.972.5"
"@aws-sdk/credential-provider-ini": "npm:^3.972.3"
"@aws-sdk/credential-provider-process": "npm:^3.972.3"
"@aws-sdk/credential-provider-sso": "npm:^3.972.3"
"@aws-sdk/credential-provider-web-identity": "npm:^3.972.3"
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/credential-provider-imds": "npm:^4.2.8"
"@smithy/property-provider": "npm:^4.2.8"
"@smithy/shared-ini-file-loader": "npm:^4.4.3"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10/0ee3ad056d78f67f9c8afe78ab46f82ceca7e432079ec1a1c3db29d23ec0c67959c72ece571d3a143d1eab78158825aac720d5c3f47715984ab0dff27c619400
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:^3.972.3, @aws-sdk/credential-provider-process@npm:^3.972.9":
version: 3.972.9
resolution: "@aws-sdk/credential-provider-process@npm:3.972.9"
dependencies:
"@aws-sdk/core": "npm:^3.973.11"
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/property-provider": "npm:^4.2.8"
"@smithy/shared-ini-file-loader": "npm:^4.4.3"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10/6b6eb9b6ae8eb58246f03783020ce33968718e6572b611fafd7281a2a4b933fb5c7866039c8f7a0e155dde6978c608af3a8c9f8d436588544091bd933178c126
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:^3.972.3, @aws-sdk/credential-provider-sso@npm:^3.972.9":
version: 3.972.9
resolution: "@aws-sdk/credential-provider-sso@npm:3.972.9"
dependencies:
"@aws-sdk/client-sso": "npm:3.993.0"
"@aws-sdk/core": "npm:^3.973.11"
"@aws-sdk/token-providers": "npm:3.993.0"
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/property-provider": "npm:^4.2.8"
"@smithy/shared-ini-file-loader": "npm:^4.4.3"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10/b149465c3d4daa15d37a1427c165f530c46c6a8889a0470f20d374651e3eec326afcb13764fbc1a0c78727d9aff48398c4c9ab18e18b7d69f23013a6fa8f380e
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:^3.972.3, @aws-sdk/credential-provider-web-identity@npm:^3.972.9":
version: 3.972.9
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.972.9"
dependencies:
"@aws-sdk/core": "npm:^3.973.11"
"@aws-sdk/nested-clients": "npm:3.993.0"
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/property-provider": "npm:^4.2.8"
"@smithy/shared-ini-file-loader": "npm:^4.4.3"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10/0b49aef3fee7b3152d53c7672826b2724cdaad21490131e0c060f06d7c2db67d04508a45a291a0370eb8a81f488db4fd13305f59465a923fc39b19c8228de435
languageName: node
linkType: hard
"@aws-sdk/credential-providers@npm:3.981.0":
version: 3.981.0
resolution: "@aws-sdk/credential-providers@npm:3.981.0"
dependencies:
"@aws-sdk/client-cognito-identity": "npm:3.981.0"
"@aws-sdk/core": "npm:^3.973.5"
"@aws-sdk/credential-provider-cognito-identity": "npm:^3.972.3"
"@aws-sdk/credential-provider-env": "npm:^3.972.3"
"@aws-sdk/credential-provider-http": "npm:^3.972.5"
"@aws-sdk/credential-provider-ini": "npm:^3.972.3"
"@aws-sdk/credential-provider-login": "npm:^3.972.3"
"@aws-sdk/credential-provider-node": "npm:^3.972.4"
"@aws-sdk/credential-provider-process": "npm:^3.972.3"
"@aws-sdk/credential-provider-sso": "npm:^3.972.3"
"@aws-sdk/credential-provider-web-identity": "npm:^3.972.3"
"@aws-sdk/nested-clients": "npm:3.981.0"
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/config-resolver": "npm:^4.4.6"
"@smithy/core": "npm:^3.22.0"
"@smithy/credential-provider-imds": "npm:^4.2.8"
"@smithy/node-config-provider": "npm:^4.3.8"
"@smithy/property-provider": "npm:^4.2.8"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10/e9f0fe7bad95fc7de871b69fb3e99657e5efe25b9af055fb5f28559ee4ff754468727d73ad7057b7a02a7fd5193dd8d340f79b835c4d1029ec711255d9cce492
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:^3.972.3":
version: 3.972.3
resolution: "@aws-sdk/middleware-host-header@npm:3.972.3"
dependencies:
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10/14b6e32f32f1c8b0e66a396b092785d3d597b27df696ed2daf8310d2a463416bcc89480043b6a5083698403fc85904caf5ebbcb0fbd12f89f05dbf10878d2cc7
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:^3.972.3":
version: 3.972.3
resolution: "@aws-sdk/middleware-logger@npm:3.972.3"
dependencies:
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10/abda3a05b73a2056fbe0d2aa139ee5ad590733d7ef96a18c2ca92b314795ba3fe83216668bd731b8a40f7951b1147eb1ed3566c1b33ee9b8ae9994089596e3b8
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:^3.972.3":
version: 3.972.3
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.972.3"
dependencies:
"@aws-sdk/types": "npm:^3.973.1"
"@aws/lambda-invoke-store": "npm:^0.2.2"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10/8308e8eb1344669bca86613f160768dd39640ca3ed37730b579a6f71be14f6deed7acdb4f3d195a7f8c5a130afb82411dc18c8a361f7dc1f769c9dc240aaa16f
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:^3.972.11, @aws-sdk/middleware-user-agent@npm:^3.972.5":
version: 3.972.11
resolution: "@aws-sdk/middleware-user-agent@npm:3.972.11"
dependencies:
"@aws-sdk/core": "npm:^3.973.11"
"@aws-sdk/types": "npm:^3.973.1"
"@aws-sdk/util-endpoints": "npm:3.993.0"
"@smithy/core": "npm:^3.23.2"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10/f68c2a10337daf2e07d55d8c3bf3205c58abb1869f27db811fa8a50bfcf609f4ac4f9f07cc2e1558ac9db6723c1fbfa4ed5d1a7b3851d904c33ed83475171c32
languageName: node
linkType: hard
"@aws-sdk/nested-clients@npm:3.981.0":
version: 3.981.0
resolution: "@aws-sdk/nested-clients@npm:3.981.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.973.5"
"@aws-sdk/middleware-host-header": "npm:^3.972.3"
"@aws-sdk/middleware-logger": "npm:^3.972.3"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.3"
"@aws-sdk/middleware-user-agent": "npm:^3.972.5"
"@aws-sdk/region-config-resolver": "npm:^3.972.3"
"@aws-sdk/types": "npm:^3.973.1"
"@aws-sdk/util-endpoints": "npm:3.981.0"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.3"
"@aws-sdk/util-user-agent-node": "npm:^3.972.3"
"@smithy/config-resolver": "npm:^4.4.6"
"@smithy/core": "npm:^3.22.0"
"@smithy/fetch-http-handler": "npm:^5.3.9"
"@smithy/hash-node": "npm:^4.2.8"
"@smithy/invalid-dependency": "npm:^4.2.8"
"@smithy/middleware-content-length": "npm:^4.2.8"
"@smithy/middleware-endpoint": "npm:^4.4.12"
"@smithy/middleware-retry": "npm:^4.4.29"
"@smithy/middleware-serde": "npm:^4.2.9"
"@smithy/middleware-stack": "npm:^4.2.8"
"@smithy/node-config-provider": "npm:^4.3.8"
"@smithy/node-http-handler": "npm:^4.4.8"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/smithy-client": "npm:^4.11.1"
"@smithy/types": "npm:^4.12.0"
"@smithy/url-parser": "npm:^4.2.8"
"@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.28"
"@smithy/util-defaults-mode-node": "npm:^4.2.31"
"@smithy/util-endpoints": "npm:^3.2.8"
"@smithy/util-middleware": "npm:^4.2.8"
"@smithy/util-retry": "npm:^4.2.8"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10/c7042948d967316bad60b82074a5d71486c7ff4008b1d64fd5f65cc99c61dc52d059912e65653004100f0427f19b35e38bde1f29d913752476ec9d864fa49d98
languageName: node
linkType: hard
"@aws-sdk/nested-clients@npm:3.993.0":
version: 3.993.0
resolution: "@aws-sdk/nested-clients@npm:3.993.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.973.11"
"@aws-sdk/middleware-host-header": "npm:^3.972.3"
"@aws-sdk/middleware-logger": "npm:^3.972.3"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.3"
"@aws-sdk/middleware-user-agent": "npm:^3.972.11"
"@aws-sdk/region-config-resolver": "npm:^3.972.3"
"@aws-sdk/types": "npm:^3.973.1"
"@aws-sdk/util-endpoints": "npm:3.993.0"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.3"
"@aws-sdk/util-user-agent-node": "npm:^3.972.9"
"@smithy/config-resolver": "npm:^4.4.6"
"@smithy/core": "npm:^3.23.2"
"@smithy/fetch-http-handler": "npm:^5.3.9"
"@smithy/hash-node": "npm:^4.2.8"
"@smithy/invalid-dependency": "npm:^4.2.8"
"@smithy/middleware-content-length": "npm:^4.2.8"
"@smithy/middleware-endpoint": "npm:^4.4.16"
"@smithy/middleware-retry": "npm:^4.4.33"
"@smithy/middleware-serde": "npm:^4.2.9"
"@smithy/middleware-stack": "npm:^4.2.8"
"@smithy/node-config-provider": "npm:^4.3.8"
"@smithy/node-http-handler": "npm:^4.4.10"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/smithy-client": "npm:^4.11.5"
"@smithy/types": "npm:^4.12.0"
"@smithy/url-parser": "npm:^4.2.8"
"@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.32"
"@smithy/util-defaults-mode-node": "npm:^4.2.35"
"@smithy/util-endpoints": "npm:^3.2.8"
"@smithy/util-middleware": "npm:^4.2.8"
"@smithy/util-retry": "npm:^4.2.8"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10/f4a4002496c0b685a7c9b2e652ab15db952be574cde60539c134f5d22d21d8644a487b5c4cf14c3bc9e20503a73a762d0bbd2d21c7c473f2337a297704c36f48
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:^3.972.3":
version: 3.972.3
resolution: "@aws-sdk/region-config-resolver@npm:3.972.3"
dependencies:
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/config-resolver": "npm:^4.4.6"
"@smithy/node-config-provider": "npm:^4.3.8"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10/8512a573492a990b028d9f0058d6034d54fb186af20d1da9529ac3d5f8d435c43fa16ef7d3dc0b3ffa679bb90529b55b0d00619160a3549839a136cc698fefb8
languageName: node
linkType: hard
"@aws-sdk/token-providers@npm:3.993.0":
version: 3.993.0
resolution: "@aws-sdk/token-providers@npm:3.993.0"
dependencies:
"@aws-sdk/core": "npm:^3.973.11"
"@aws-sdk/nested-clients": "npm:3.993.0"
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/property-provider": "npm:^4.2.8"
"@smithy/shared-ini-file-loader": "npm:^4.4.3"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10/c58fd377892fad81e9994821429b1352ab20f2ab3cb621918c451df12d6e0a72b65ddcdc148a5de223a6ada134442be2097e450d0edc0ac72669b74160e950c6
languageName: node
linkType: hard
"@aws-sdk/types@npm:3.973.1, @aws-sdk/types@npm:^3.222.0, @aws-sdk/types@npm:^3.973.1":
version: 3.973.1
resolution: "@aws-sdk/types@npm:3.973.1"
dependencies:
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10/9cdcb457d6110a88a547fe26922d43450bf7685b26034e935c72c1717de90a22541f298ce4e76fde564d3af11908928b1584b856085dcb175f9bb08853d1a575
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:3.980.0":
version: 3.980.0
resolution: "@aws-sdk/util-endpoints@npm:3.980.0"
dependencies:
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/types": "npm:^4.12.0"
"@smithy/url-parser": "npm:^4.2.8"
"@smithy/util-endpoints": "npm:^3.2.8"
tslib: "npm:^2.6.2"
checksum: 10/a61ec475660cc736960663f756970e07246a7684b762830e8b17ec0873dc5a4f9135fa6104219a2c790d22f30d36369ee19ade124b396d6f09a1139a878e656e
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:3.981.0":
version: 3.981.0
resolution: "@aws-sdk/util-endpoints@npm:3.981.0"
dependencies:
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/types": "npm:^4.12.0"
"@smithy/url-parser": "npm:^4.2.8"
"@smithy/util-endpoints": "npm:^3.2.8"
tslib: "npm:^2.6.2"
checksum: 10/0ff1745efa82209255b8e5f368ef8ffe41f3101cc17dc8e54b4bc7e16ba9989a5ff97d10c1aac15dea6cd2360fa2954ea3185580aae6d29950929d567ee82c77
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:3.993.0":
version: 3.993.0
resolution: "@aws-sdk/util-endpoints@npm:3.993.0"
dependencies:
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/types": "npm:^4.12.0"
"@smithy/url-parser": "npm:^4.2.8"
"@smithy/util-endpoints": "npm:^3.2.8"
tslib: "npm:^2.6.2"
checksum: 10/47d20a3bf033f07362428246c8e68720ad80c67cfeb24363f03c84fb8266daf2523bedcb656e6c3a058d8ff8e90d7ca4d006638f73f4c2300f6e1712ab8e3d40
languageName: node
linkType: hard
"@aws-sdk/util-locate-window@npm:^3.0.0":
version: 3.568.0
resolution: "@aws-sdk/util-locate-window@npm:3.568.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10/372acb9c6df3861afae4ced5d8d3aad40d8dc633684e765b6ed74baff7f4f30a778f96829ee81d56639c14cb4346043069a2b911c58387dd20591c0f6e3a524d
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-browser@npm:^3.972.3":
version: 3.972.3
resolution: "@aws-sdk/util-user-agent-browser@npm:3.972.3"
dependencies:
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/types": "npm:^4.12.0"
bowser: "npm:^2.11.0"
tslib: "npm:^2.6.2"
checksum: 10/fb51d6ae56ba2a69a1239fc1f83a739c468c78ff678cf336b923273237e861b8ff4bfb296b7a250f5980dc2ef6741492a802432243313daf9a03a5332199f7aa
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-node@npm:^3.972.3, @aws-sdk/util-user-agent-node@npm:^3.972.9":
version: 3.972.9
resolution: "@aws-sdk/util-user-agent-node@npm:3.972.9"
dependencies:
"@aws-sdk/middleware-user-agent": "npm:^3.972.11"
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/node-config-provider": "npm:^4.3.8"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
peerDependencies:
aws-crt: ">=1.0.0"
peerDependenciesMeta:
aws-crt:
optional: true
checksum: 10/c0f44afc81fdc22188306c4e4e63551d5c7320cbbeb598a460084e2e3ac8a9cc3f759d0dc4703c9874e61d4cf336b11eac9e2d19cd6b1756559b6e2ce194ce89
languageName: node
linkType: hard
"@aws-sdk/xml-builder@npm:^3.972.5":
version: 3.972.5
resolution: "@aws-sdk/xml-builder@npm:3.972.5"
dependencies:
"@smithy/types": "npm:^4.12.0"
fast-xml-parser: "npm:5.3.6"
tslib: "npm:^2.6.2"
checksum: 10/adc9371b92591dacd11d2b70714f835529432a5f8709b43b960a4b91d6591a88f64c06e3bdb0781c8f8aaf23b9054a46fd6213c503d5089a25ff8144196678ac
languageName: node
linkType: hard
"@aws/lambda-invoke-store@npm:^0.2.2":
version: 0.2.3
resolution: "@aws/lambda-invoke-store@npm:0.2.3"
checksum: 10/d0efa8ca73b2d8dc0bf634525eefa1b72cda85f5d47366264849343a6f2860cfa5c52b7f766a16b78da8406bbd3ee975da3abb1dbe38183f8af95413eafeb256
languageName: node
linkType: hard
"@azure/abort-controller@npm:^2.0.0, @azure/abort-controller@npm:^2.1.2":
version: 2.1.2
resolution: "@azure/abort-controller@npm:2.1.2"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10/484e34a8121e5815f764af4da1c8b51d4713106e43f1c44e59671773ffff52da066780821c7633cf601668daa1181a57a1c88f57854d60b62ecc5560f9c52932
languageName: node
linkType: hard
"@azure/arm-appcontainers@npm:3.0.0":
version: 3.0.0
resolution: "@azure/arm-appcontainers@npm:3.0.0"
dependencies:
"@azure/abort-controller": "npm:^2.1.2"
"@azure/core-auth": "npm:^1.9.0"
"@azure/core-client": "npm:^1.9.3"
"@azure/core-lro": "npm:^2.5.4"
"@azure/core-paging": "npm:^1.6.2"
"@azure/core-rest-pipeline": "npm:^1.19.1"
tslib: "npm:^2.8.1"
checksum: 10/e28bc7d50aaefd5dc106a52b3d41b9cd145f975a5dcdc55b66d2c284fba666b08aebd40ad4f4684eb15f376431a81e2ed2bb93ba14aea853e4cd5e68acdf0f3d
languageName: node
linkType: hard
"@azure/arm-appservice@npm:16.0.0":
version: 16.0.0
resolution: "@azure/arm-appservice@npm:16.0.0"
dependencies:
"@azure/abort-controller": "npm:^2.1.2"
"@azure/core-auth": "npm:^1.9.0"
"@azure/core-client": "npm:^1.9.2"
"@azure/core-lro": "npm:^2.5.4"
"@azure/core-paging": "npm:^1.6.2"
"@azure/core-rest-pipeline": "npm:^1.19.0"
tslib: "npm:^2.8.1"
checksum: 10/a9afdf13ea3ef72fa2e969e22088443fe10ace8a753e53bc335891464a704b1d920bdfcbc17db5b5b1fb93f35a3b230cbd311a5f5ce72d962a1a71ab6e5e8b00
languageName: node
linkType: hard
"@azure/arm-resources@npm:6.1.0":
version: 6.1.0
resolution: "@azure/arm-resources@npm:6.1.0"
dependencies:
"@azure/abort-controller": "npm:^2.1.2"
"@azure/core-auth": "npm:^1.9.0"
"@azure/core-client": "npm:^1.9.2"
"@azure/core-lro": "npm:^2.5.4"
"@azure/core-paging": "npm:^1.6.2"
"@azure/core-rest-pipeline": "npm:^1.19.0"
tslib: "npm:^2.8.1"
checksum: 10/2198337667c797cc00fe8c1b745768f443072bf3079f8dc30887a0573698d817b23921cdf503dafa2e24fa363ec9bbe38fd1958f673d8a77b3947597cc1b0875
languageName: node
linkType: hard
"@azure/core-auth@npm:^1.10.0, @azure/core-auth@npm:^1.9.0":
version: 1.10.1
resolution: "@azure/core-auth@npm:1.10.1"
dependencies:
"@azure/abort-controller": "npm:^2.1.2"
"@azure/core-util": "npm:^1.13.0"
tslib: "npm:^2.6.2"
checksum: 10/230c1766d4cb3ac7beac45db65bd5e493e1530f6f1d51dc0fd3537f8144e5c9acfed94700fd28c7aee67bab7502e23a1588adc6aa76f918f08fe40b3b007e2a3
languageName: node
linkType: hard
"@azure/core-client@npm:^1.9.2, @azure/core-client@npm:^1.9.3":
version: 1.10.1
resolution: "@azure/core-client@npm:1.10.1"
dependencies:
"@azure/abort-controller": "npm:^2.1.2"
"@azure/core-auth": "npm:^1.10.0"
"@azure/core-rest-pipeline": "npm:^1.22.0"
"@azure/core-tracing": "npm:^1.3.0"
"@azure/core-util": "npm:^1.13.0"
"@azure/logger": "npm:^1.3.0"
tslib: "npm:^2.6.2"
checksum: 10/4a00ec0d11f92274bb79efdea2515a7947b8cfb34cff6570a0813ea2889ab57ddc1f22f232192dee8f918e04ba96de07b7584bf9cbcac03e17cb39e9e399c2e9
languageName: node
linkType: hard
"@azure/core-lro@npm:^2.5.4":
version: 2.7.2
resolution: "@azure/core-lro@npm:2.7.2"
dependencies:
"@azure/abort-controller": "npm:^2.0.0"
"@azure/core-util": "npm:^1.2.0"
"@azure/logger": "npm:^1.0.0"
tslib: "npm:^2.6.2"
checksum: 10/73b4e1d74afc0dc647914db3a79b6212b653d853f6ff7105eb6e19ab2f7af11cef99d6388b3125179c8872db819930ac0ab9768b07c06a3033dd22fa546f8a09
languageName: node
linkType: hard
"@azure/core-paging@npm:^1.6.2":
version: 1.6.2
resolution: "@azure/core-paging@npm:1.6.2"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10/fb1d4c4fcd5705dbcd2332724d0ead324b988a874bfe739483cf65056b8ad5567aaa5ae02f4d0467c71c3be035bbd15682fe0d8f6e47043a66903d439593f5b8
languageName: node
linkType: hard
"@azure/core-rest-pipeline@npm:^1.17.0, @azure/core-rest-pipeline@npm:^1.19.0, @azure/core-rest-pipeline@npm:^1.19.1, @azure/core-rest-pipeline@npm:^1.22.0":
version: 1.22.1
resolution: "@azure/core-rest-pipeline@npm:1.22.1"
dependencies:
"@azure/abort-controller": "npm:^2.1.2"