forked from lerlar/developer-tooling
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathyarn.lock
More file actions
19282 lines (17444 loc) · 667 KB
/
yarn.lock
File metadata and controls
19282 lines (17444 loc) · 667 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
"@adraffy/ens-normalize@npm:1.11.0, @adraffy/ens-normalize@npm:^1.11.0":
version: 1.11.0
resolution: "@adraffy/ens-normalize@npm:1.11.0"
checksum: abef75f21470ea43dd6071168e092d2d13e38067e349e76186c78838ae174a46c3e18ca50921d05bea6ec3203074147c9e271f8cb6531d1c2c0e146f3199ddcb
languageName: node
linkType: hard
"@alcalzone/ansi-tokenize@npm:^0.1.3":
version: 0.1.3
resolution: "@alcalzone/ansi-tokenize@npm:0.1.3"
dependencies:
ansi-styles: "npm:^6.2.1"
is-fullwidth-code-point: "npm:^4.0.0"
checksum: 3fff28b9cd039321ab8d78f1cda26a932c801ad58a86b06d1bafa7599a8d3076c67c92bee1cbdccaa837a2b088604c976f75911da2bc03d8f8d03a042c7828a0
languageName: node
linkType: hard
"@ampproject/remapping@npm:^2.2.0":
version: 2.2.1
resolution: "@ampproject/remapping@npm:2.2.1"
dependencies:
"@jridgewell/gen-mapping": "npm:^0.3.0"
"@jridgewell/trace-mapping": "npm:^0.3.9"
checksum: e15fecbf3b54c988c8b4fdea8ef514ab482537e8a080b2978cc4b47ccca7140577ca7b65ad3322dcce65bc73ee6e5b90cbfe0bbd8c766dad04d5c62ec9634c42
languageName: node
linkType: hard
"@ampproject/remapping@npm:^2.3.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: f3451525379c68a73eb0a1e65247fbf28c0cccd126d93af21c75fceff77773d43c0d4a2d51978fb131aff25b5f2cb41a9fe48cc296e61ae65e679c4f6918b0ab
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: 1b0a56ad4cb44c9512d8b1668dcf9306ab541d3a73829f435ca97abaec8d56f3db953db03ad0d0698754fea16fcd803d11fa42e0889bc7b803c6a030b04c63de
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: 08bd1db17d7c772fa6e34b38a360ce77ad041164743113eefa8343c2af917a419697daf090c5854129ef19f3a9673ed1fd8446e03eb32c8ed52d2cc409b0dee7
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: 239f4c59cce9abd33c01117b10553fbef868a063e74faf17edb798c250d759a2578841efa2837e5e51854f52ef57dbc40780b073cae20f89ebed6a8cc7fa06f1
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: 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: 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: 6ed0c7e17f4f6663d057630805c45edb35d5693380c24ab52d4c453ece303c6c8a6ade9ee93c97dda77d9f6cae376ffbb44467057161c513dffa3422250edaf5
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: f80a174c404e1ad4364741c942f440e75f834c08278fa754349fe23a6edc679d480ea9ced5820774aee58091ed270067022d8059ecf1a7ef452d58134ac7e9e1
languageName: node
linkType: hard
"@aws-sdk/client-cloudfront@npm:^3.787.0":
version: 3.810.0
resolution: "@aws-sdk/client-cloudfront@npm:3.810.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.810.0"
"@aws-sdk/credential-provider-node": "npm:3.810.0"
"@aws-sdk/middleware-host-header": "npm:3.804.0"
"@aws-sdk/middleware-logger": "npm:3.804.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.804.0"
"@aws-sdk/middleware-user-agent": "npm:3.810.0"
"@aws-sdk/region-config-resolver": "npm:3.808.0"
"@aws-sdk/types": "npm:3.804.0"
"@aws-sdk/util-endpoints": "npm:3.808.0"
"@aws-sdk/util-user-agent-browser": "npm:3.804.0"
"@aws-sdk/util-user-agent-node": "npm:3.810.0"
"@aws-sdk/xml-builder": "npm:3.804.0"
"@smithy/config-resolver": "npm:^4.1.2"
"@smithy/core": "npm:^3.3.3"
"@smithy/fetch-http-handler": "npm:^5.0.2"
"@smithy/hash-node": "npm:^4.0.2"
"@smithy/invalid-dependency": "npm:^4.0.2"
"@smithy/middleware-content-length": "npm:^4.0.2"
"@smithy/middleware-endpoint": "npm:^4.1.6"
"@smithy/middleware-retry": "npm:^4.1.7"
"@smithy/middleware-serde": "npm:^4.0.5"
"@smithy/middleware-stack": "npm:^4.0.2"
"@smithy/node-config-provider": "npm:^4.1.1"
"@smithy/node-http-handler": "npm:^4.0.4"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/smithy-client": "npm:^4.2.6"
"@smithy/types": "npm:^4.2.0"
"@smithy/url-parser": "npm:^4.0.2"
"@smithy/util-base64": "npm:^4.0.0"
"@smithy/util-body-length-browser": "npm:^4.0.0"
"@smithy/util-body-length-node": "npm:^4.0.0"
"@smithy/util-defaults-mode-browser": "npm:^4.0.14"
"@smithy/util-defaults-mode-node": "npm:^4.0.14"
"@smithy/util-endpoints": "npm:^3.0.4"
"@smithy/util-middleware": "npm:^4.0.2"
"@smithy/util-retry": "npm:^4.0.3"
"@smithy/util-stream": "npm:^4.2.0"
"@smithy/util-utf8": "npm:^4.0.0"
"@smithy/util-waiter": "npm:^4.0.3"
tslib: "npm:^2.6.2"
checksum: 7823cd22a6bfeeedb32e2db0e3c29405ab1c48b4f43b1f4fa4aba33a415058ab1083d50bd85ff2d57c7cd3da7d1e3a1fdbe33a0daf4e8b798569bdf78a730ca5
languageName: node
linkType: hard
"@aws-sdk/client-s3@npm:^3.787.0":
version: 3.810.0
resolution: "@aws-sdk/client-s3@npm:3.810.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.810.0"
"@aws-sdk/credential-provider-node": "npm:3.810.0"
"@aws-sdk/middleware-bucket-endpoint": "npm:3.808.0"
"@aws-sdk/middleware-expect-continue": "npm:3.804.0"
"@aws-sdk/middleware-flexible-checksums": "npm:3.810.0"
"@aws-sdk/middleware-host-header": "npm:3.804.0"
"@aws-sdk/middleware-location-constraint": "npm:3.804.0"
"@aws-sdk/middleware-logger": "npm:3.804.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.804.0"
"@aws-sdk/middleware-sdk-s3": "npm:3.810.0"
"@aws-sdk/middleware-ssec": "npm:3.804.0"
"@aws-sdk/middleware-user-agent": "npm:3.810.0"
"@aws-sdk/region-config-resolver": "npm:3.808.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.810.0"
"@aws-sdk/types": "npm:3.804.0"
"@aws-sdk/util-endpoints": "npm:3.808.0"
"@aws-sdk/util-user-agent-browser": "npm:3.804.0"
"@aws-sdk/util-user-agent-node": "npm:3.810.0"
"@aws-sdk/xml-builder": "npm:3.804.0"
"@smithy/config-resolver": "npm:^4.1.2"
"@smithy/core": "npm:^3.3.3"
"@smithy/eventstream-serde-browser": "npm:^4.0.2"
"@smithy/eventstream-serde-config-resolver": "npm:^4.1.0"
"@smithy/eventstream-serde-node": "npm:^4.0.2"
"@smithy/fetch-http-handler": "npm:^5.0.2"
"@smithy/hash-blob-browser": "npm:^4.0.2"
"@smithy/hash-node": "npm:^4.0.2"
"@smithy/hash-stream-node": "npm:^4.0.2"
"@smithy/invalid-dependency": "npm:^4.0.2"
"@smithy/md5-js": "npm:^4.0.2"
"@smithy/middleware-content-length": "npm:^4.0.2"
"@smithy/middleware-endpoint": "npm:^4.1.6"
"@smithy/middleware-retry": "npm:^4.1.7"
"@smithy/middleware-serde": "npm:^4.0.5"
"@smithy/middleware-stack": "npm:^4.0.2"
"@smithy/node-config-provider": "npm:^4.1.1"
"@smithy/node-http-handler": "npm:^4.0.4"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/smithy-client": "npm:^4.2.6"
"@smithy/types": "npm:^4.2.0"
"@smithy/url-parser": "npm:^4.0.2"
"@smithy/util-base64": "npm:^4.0.0"
"@smithy/util-body-length-browser": "npm:^4.0.0"
"@smithy/util-body-length-node": "npm:^4.0.0"
"@smithy/util-defaults-mode-browser": "npm:^4.0.14"
"@smithy/util-defaults-mode-node": "npm:^4.0.14"
"@smithy/util-endpoints": "npm:^3.0.4"
"@smithy/util-middleware": "npm:^4.0.2"
"@smithy/util-retry": "npm:^4.0.3"
"@smithy/util-stream": "npm:^4.2.0"
"@smithy/util-utf8": "npm:^4.0.0"
"@smithy/util-waiter": "npm:^4.0.3"
tslib: "npm:^2.6.2"
checksum: efda914e3ca961d0cd66395c7cb558f8f2829dc30121c5e8605dea83e588307106a83ee9b4005ac50e6beb1a9e098823ec8f3267ba0fbface8f51a21ae7a142c
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.810.0":
version: 3.810.0
resolution: "@aws-sdk/client-sso@npm:3.810.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.810.0"
"@aws-sdk/middleware-host-header": "npm:3.804.0"
"@aws-sdk/middleware-logger": "npm:3.804.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.804.0"
"@aws-sdk/middleware-user-agent": "npm:3.810.0"
"@aws-sdk/region-config-resolver": "npm:3.808.0"
"@aws-sdk/types": "npm:3.804.0"
"@aws-sdk/util-endpoints": "npm:3.808.0"
"@aws-sdk/util-user-agent-browser": "npm:3.804.0"
"@aws-sdk/util-user-agent-node": "npm:3.810.0"
"@smithy/config-resolver": "npm:^4.1.2"
"@smithy/core": "npm:^3.3.3"
"@smithy/fetch-http-handler": "npm:^5.0.2"
"@smithy/hash-node": "npm:^4.0.2"
"@smithy/invalid-dependency": "npm:^4.0.2"
"@smithy/middleware-content-length": "npm:^4.0.2"
"@smithy/middleware-endpoint": "npm:^4.1.6"
"@smithy/middleware-retry": "npm:^4.1.7"
"@smithy/middleware-serde": "npm:^4.0.5"
"@smithy/middleware-stack": "npm:^4.0.2"
"@smithy/node-config-provider": "npm:^4.1.1"
"@smithy/node-http-handler": "npm:^4.0.4"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/smithy-client": "npm:^4.2.6"
"@smithy/types": "npm:^4.2.0"
"@smithy/url-parser": "npm:^4.0.2"
"@smithy/util-base64": "npm:^4.0.0"
"@smithy/util-body-length-browser": "npm:^4.0.0"
"@smithy/util-body-length-node": "npm:^4.0.0"
"@smithy/util-defaults-mode-browser": "npm:^4.0.14"
"@smithy/util-defaults-mode-node": "npm:^4.0.14"
"@smithy/util-endpoints": "npm:^3.0.4"
"@smithy/util-middleware": "npm:^4.0.2"
"@smithy/util-retry": "npm:^4.0.3"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: fae4d3ee5a7cecaf2f026dc3155a190c1bfdd8e20107f89b2a39605cd9115680faca1cf98a8b0fb067486f973eb5c4ce7ab9b5e45bd10bc60077b82d413ff295
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.810.0":
version: 3.810.0
resolution: "@aws-sdk/core@npm:3.810.0"
dependencies:
"@aws-sdk/types": "npm:3.804.0"
"@smithy/core": "npm:^3.3.3"
"@smithy/node-config-provider": "npm:^4.1.1"
"@smithy/property-provider": "npm:^4.0.2"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/signature-v4": "npm:^5.1.0"
"@smithy/smithy-client": "npm:^4.2.6"
"@smithy/types": "npm:^4.2.0"
"@smithy/util-middleware": "npm:^4.0.2"
fast-xml-parser: "npm:4.4.1"
tslib: "npm:^2.6.2"
checksum: 58d4636d356af415beb0021fa0099a5bfdb9a13773a82cd80376ea8eaa45572e508454cb7fbdc4f5756565ab4f9d244864eaf08a8a8cca0f880c2a6808923b16
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.810.0":
version: 3.810.0
resolution: "@aws-sdk/credential-provider-env@npm:3.810.0"
dependencies:
"@aws-sdk/core": "npm:3.810.0"
"@aws-sdk/types": "npm:3.804.0"
"@smithy/property-provider": "npm:^4.0.2"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 1c1bdec49feb20d0edc81ad1fef5c111c1df88a428b2594bbdaef39a41191bf0e33ac494154cfe7a3f140532de7ca29577e1e74591b8862454cb37bc6c28c6f0
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.810.0":
version: 3.810.0
resolution: "@aws-sdk/credential-provider-http@npm:3.810.0"
dependencies:
"@aws-sdk/core": "npm:3.810.0"
"@aws-sdk/types": "npm:3.804.0"
"@smithy/fetch-http-handler": "npm:^5.0.2"
"@smithy/node-http-handler": "npm:^4.0.4"
"@smithy/property-provider": "npm:^4.0.2"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/smithy-client": "npm:^4.2.6"
"@smithy/types": "npm:^4.2.0"
"@smithy/util-stream": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 24cc69701b09fc63efb90d252b8958f4de05b1093c736be64f167a201b52bb9fb46b2955e52fe2d448562682426e43752799a57af6b4b53b6ebcda22a00ea255
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.810.0":
version: 3.810.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.810.0"
dependencies:
"@aws-sdk/core": "npm:3.810.0"
"@aws-sdk/credential-provider-env": "npm:3.810.0"
"@aws-sdk/credential-provider-http": "npm:3.810.0"
"@aws-sdk/credential-provider-process": "npm:3.810.0"
"@aws-sdk/credential-provider-sso": "npm:3.810.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.810.0"
"@aws-sdk/nested-clients": "npm:3.810.0"
"@aws-sdk/types": "npm:3.804.0"
"@smithy/credential-provider-imds": "npm:^4.0.4"
"@smithy/property-provider": "npm:^4.0.2"
"@smithy/shared-ini-file-loader": "npm:^4.0.2"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: ff08f5462461cbbc630ce6558b39108c6911089e9750197b4802f08415ff5ebf832b557ecc3c3477b11806c22db981aac8a49f35ec32ea6607b0348d901c8e44
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.810.0":
version: 3.810.0
resolution: "@aws-sdk/credential-provider-node@npm:3.810.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.810.0"
"@aws-sdk/credential-provider-http": "npm:3.810.0"
"@aws-sdk/credential-provider-ini": "npm:3.810.0"
"@aws-sdk/credential-provider-process": "npm:3.810.0"
"@aws-sdk/credential-provider-sso": "npm:3.810.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.810.0"
"@aws-sdk/types": "npm:3.804.0"
"@smithy/credential-provider-imds": "npm:^4.0.4"
"@smithy/property-provider": "npm:^4.0.2"
"@smithy/shared-ini-file-loader": "npm:^4.0.2"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: dce45cb3305183f5a5dec88d70baeed0806cd7572d49d1120bd988d1d78d7b7ca892826b86ba83c7bcd17de419ea4f713dd6d6abff9b115f2d3033ae16a7ef84
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.810.0":
version: 3.810.0
resolution: "@aws-sdk/credential-provider-process@npm:3.810.0"
dependencies:
"@aws-sdk/core": "npm:3.810.0"
"@aws-sdk/types": "npm:3.804.0"
"@smithy/property-provider": "npm:^4.0.2"
"@smithy/shared-ini-file-loader": "npm:^4.0.2"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: a2451e0200d9351db0e764a84125505faa44c3438cbd5f1ec57207d1f4a03201a5e12fb3f5c8c1b4702c86db73d323fd5e4412c816c7143d9e2472872957ffd5
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.810.0":
version: 3.810.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.810.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.810.0"
"@aws-sdk/core": "npm:3.810.0"
"@aws-sdk/token-providers": "npm:3.810.0"
"@aws-sdk/types": "npm:3.804.0"
"@smithy/property-provider": "npm:^4.0.2"
"@smithy/shared-ini-file-loader": "npm:^4.0.2"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: ac1dbab7c6449461cc51b3c2ac884a4e0f644b21f4cace40e3777df83128d8f83f16c51c056ff0f9795373e274eb7c077711cb49c667f0184d8f32b575a34fea
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.810.0":
version: 3.810.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.810.0"
dependencies:
"@aws-sdk/core": "npm:3.810.0"
"@aws-sdk/nested-clients": "npm:3.810.0"
"@aws-sdk/types": "npm:3.804.0"
"@smithy/property-provider": "npm:^4.0.2"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 02249f3825acbaa838bf317a65885466d9a28cd8b92673436a4c54c43e219916f2a42aaa3c4cb2bd4b43814aa484ccdd371021513ca59146a477a8e2965a66ee
languageName: node
linkType: hard
"@aws-sdk/middleware-bucket-endpoint@npm:3.808.0":
version: 3.808.0
resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.808.0"
dependencies:
"@aws-sdk/types": "npm:3.804.0"
"@aws-sdk/util-arn-parser": "npm:3.804.0"
"@smithy/node-config-provider": "npm:^4.1.1"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/types": "npm:^4.2.0"
"@smithy/util-config-provider": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: bf0d3b9e70f58575b45fdd8483a874bd7400783bf0f3ab456a999de6b3e8ca100b6bb3e8462055e0ee8db628d367dba3e87fe3c201f89d342a875a419e49d275
languageName: node
linkType: hard
"@aws-sdk/middleware-expect-continue@npm:3.804.0":
version: 3.804.0
resolution: "@aws-sdk/middleware-expect-continue@npm:3.804.0"
dependencies:
"@aws-sdk/types": "npm:3.804.0"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 75298c41c39e5f54ea0e15419a06005c15ecec6bcc139a92ed374fdda291cb8a9a67f6d761c30f36ed25c5224159ae08cbe9cadc8a2599d365252d83c9bf350d
languageName: node
linkType: hard
"@aws-sdk/middleware-flexible-checksums@npm:3.810.0":
version: 3.810.0
resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.810.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.810.0"
"@aws-sdk/types": "npm:3.804.0"
"@smithy/is-array-buffer": "npm:^4.0.0"
"@smithy/node-config-provider": "npm:^4.1.1"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/types": "npm:^4.2.0"
"@smithy/util-middleware": "npm:^4.0.2"
"@smithy/util-stream": "npm:^4.2.0"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: c5a76dd164b37910c0ab87d0812673b50da0aece865bda600597278a536092d8afab5111e8bc095fb7286ec9b292da075d1b99401aaef266972f43e31fa2c558
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.804.0":
version: 3.804.0
resolution: "@aws-sdk/middleware-host-header@npm:3.804.0"
dependencies:
"@aws-sdk/types": "npm:3.804.0"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: e511fc88eabf44a88458a24ad134933a01cc44704db5f9baaa179e87a541da7fee2de55ea5d1e16daedb5cad40d270d4f2fab41dd0b16db7ffa812461409194d
languageName: node
linkType: hard
"@aws-sdk/middleware-location-constraint@npm:3.804.0":
version: 3.804.0
resolution: "@aws-sdk/middleware-location-constraint@npm:3.804.0"
dependencies:
"@aws-sdk/types": "npm:3.804.0"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: cd24059bb0fdfe23da619ce09dc154a862be574ae0912408963d3bfe648921136c8f9f795f69cbe2a62e9c855a2561098f7b66fa9695bbe3a36cf14bbd5acd37
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.804.0":
version: 3.804.0
resolution: "@aws-sdk/middleware-logger@npm:3.804.0"
dependencies:
"@aws-sdk/types": "npm:3.804.0"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 18097aae48558cf5d40bda906829b500693c9a22378babd9f177886cdb88eaf3da28cf38c09952502d9f951f50821a4f9082270c77329a12e61dc4d74905ec32
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.804.0":
version: 3.804.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.804.0"
dependencies:
"@aws-sdk/types": "npm:3.804.0"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 781b4fa873a10b2b058f66eb5e5ddb758695edc62a1e802f2cba6e845e1e5e578d59e6adad4e0978020271eec5d1974b044bd529798cec1105b93ecc077ffa7d
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-s3@npm:3.810.0":
version: 3.810.0
resolution: "@aws-sdk/middleware-sdk-s3@npm:3.810.0"
dependencies:
"@aws-sdk/core": "npm:3.810.0"
"@aws-sdk/types": "npm:3.804.0"
"@aws-sdk/util-arn-parser": "npm:3.804.0"
"@smithy/core": "npm:^3.3.3"
"@smithy/node-config-provider": "npm:^4.1.1"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/signature-v4": "npm:^5.1.0"
"@smithy/smithy-client": "npm:^4.2.6"
"@smithy/types": "npm:^4.2.0"
"@smithy/util-config-provider": "npm:^4.0.0"
"@smithy/util-middleware": "npm:^4.0.2"
"@smithy/util-stream": "npm:^4.2.0"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: b8060179a409af2320756c1c6a6a1d493544b4f7b6af53db20d59a09ecd461c0951701d73eb7f6e854a57cbe1e14d01dc97b56f9a1dc99390a37b6a03ee7e7a6
languageName: node
linkType: hard
"@aws-sdk/middleware-ssec@npm:3.804.0":
version: 3.804.0
resolution: "@aws-sdk/middleware-ssec@npm:3.804.0"
dependencies:
"@aws-sdk/types": "npm:3.804.0"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 05b0d392e7485113010ef61f2d47d5e6bc715bc2d2fa1d3dba26e059908a177e2119eb93e135bc5f471822c6aab411fa0122410142c3b4a92dfc9980d35e783f
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:3.810.0":
version: 3.810.0
resolution: "@aws-sdk/middleware-user-agent@npm:3.810.0"
dependencies:
"@aws-sdk/core": "npm:3.810.0"
"@aws-sdk/types": "npm:3.804.0"
"@aws-sdk/util-endpoints": "npm:3.808.0"
"@smithy/core": "npm:^3.3.3"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 8b71c16f5f18f16e918c21910c7a47b952d6895d8b03ed20b07abf53dea7fb0a1dcaa1b1a1f1f0805378e67c2b20a4d2fbdeeac0a25d2318c1bb9203ff30a89b
languageName: node
linkType: hard
"@aws-sdk/nested-clients@npm:3.810.0":
version: 3.810.0
resolution: "@aws-sdk/nested-clients@npm:3.810.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.810.0"
"@aws-sdk/middleware-host-header": "npm:3.804.0"
"@aws-sdk/middleware-logger": "npm:3.804.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.804.0"
"@aws-sdk/middleware-user-agent": "npm:3.810.0"
"@aws-sdk/region-config-resolver": "npm:3.808.0"
"@aws-sdk/types": "npm:3.804.0"
"@aws-sdk/util-endpoints": "npm:3.808.0"
"@aws-sdk/util-user-agent-browser": "npm:3.804.0"
"@aws-sdk/util-user-agent-node": "npm:3.810.0"
"@smithy/config-resolver": "npm:^4.1.2"
"@smithy/core": "npm:^3.3.3"
"@smithy/fetch-http-handler": "npm:^5.0.2"
"@smithy/hash-node": "npm:^4.0.2"
"@smithy/invalid-dependency": "npm:^4.0.2"
"@smithy/middleware-content-length": "npm:^4.0.2"
"@smithy/middleware-endpoint": "npm:^4.1.6"
"@smithy/middleware-retry": "npm:^4.1.7"
"@smithy/middleware-serde": "npm:^4.0.5"
"@smithy/middleware-stack": "npm:^4.0.2"
"@smithy/node-config-provider": "npm:^4.1.1"
"@smithy/node-http-handler": "npm:^4.0.4"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/smithy-client": "npm:^4.2.6"
"@smithy/types": "npm:^4.2.0"
"@smithy/url-parser": "npm:^4.0.2"
"@smithy/util-base64": "npm:^4.0.0"
"@smithy/util-body-length-browser": "npm:^4.0.0"
"@smithy/util-body-length-node": "npm:^4.0.0"
"@smithy/util-defaults-mode-browser": "npm:^4.0.14"
"@smithy/util-defaults-mode-node": "npm:^4.0.14"
"@smithy/util-endpoints": "npm:^3.0.4"
"@smithy/util-middleware": "npm:^4.0.2"
"@smithy/util-retry": "npm:^4.0.3"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 47a40f83e4ac2295941e7f9ca8e85930185744c76c7430d320c4865f819d1d73aea81d0f2da53c3c12172e9b177b7859e6d680298f21973e8bfb18a5039a088e
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:3.808.0":
version: 3.808.0
resolution: "@aws-sdk/region-config-resolver@npm:3.808.0"
dependencies:
"@aws-sdk/types": "npm:3.804.0"
"@smithy/node-config-provider": "npm:^4.1.1"
"@smithy/types": "npm:^4.2.0"
"@smithy/util-config-provider": "npm:^4.0.0"
"@smithy/util-middleware": "npm:^4.0.2"
tslib: "npm:^2.6.2"
checksum: b3710a568ba23af4169a87c497ffaebfa764f3439f3e515ec6ab4b6cd445b16901445b907fb8496a6175f86dccefbef396df23211cad5c75b899a473a8e3fda3
languageName: node
linkType: hard
"@aws-sdk/signature-v4-multi-region@npm:3.810.0":
version: 3.810.0
resolution: "@aws-sdk/signature-v4-multi-region@npm:3.810.0"
dependencies:
"@aws-sdk/middleware-sdk-s3": "npm:3.810.0"
"@aws-sdk/types": "npm:3.804.0"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/signature-v4": "npm:^5.1.0"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 6e8563b996b480d1a9ae5136f1a8cf78b608f7740479f4774030e5fba8f4fc90a22f33b6fc6e36ff6bc7dfb112c47d9a0947df6c8ca9c777484ce898e830a2c0
languageName: node
linkType: hard
"@aws-sdk/token-providers@npm:3.810.0":
version: 3.810.0
resolution: "@aws-sdk/token-providers@npm:3.810.0"
dependencies:
"@aws-sdk/nested-clients": "npm:3.810.0"
"@aws-sdk/types": "npm:3.804.0"
"@smithy/property-provider": "npm:^4.0.2"
"@smithy/shared-ini-file-loader": "npm:^4.0.2"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 716afc583c120ec0d7fbf92f233e498c13279e471dd5f4acef7d81628c274397293b560ada721a9311f2e13141b939c9175870046f1fe9c2c66421c79d9ffb93
languageName: node
linkType: hard
"@aws-sdk/types@npm:3.804.0":
version: 3.804.0
resolution: "@aws-sdk/types@npm:3.804.0"
dependencies:
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 832be8774a2322f2114c93a632876308edd94b4def2005facade754e0ada38a96dab0919444387440ae94f5b562c6b8195b93a70c401c3fa6541f1980224739d
languageName: node
linkType: hard
"@aws-sdk/types@npm:^3.222.0":
version: 3.496.0
resolution: "@aws-sdk/types@npm:3.496.0"
dependencies:
"@smithy/types": "npm:^2.9.1"
tslib: "npm:^2.5.0"
checksum: 98eba036198e697e1820627ab182a649c987b7c18fc57d401fa80702e1a0b1c829ae2db9fbec09219951c4b65d6efa1828c164d9174affdd4276bb0742c48fd1
languageName: node
linkType: hard
"@aws-sdk/util-arn-parser@npm:3.804.0":
version: 3.804.0
resolution: "@aws-sdk/util-arn-parser@npm:3.804.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 3a66cee522fd1de7693eaf9dd8c4bad9efdf0d42f1af86797c138af3f84d38e9e6e38f0dffd963a372a95c5e0de07c570f613c49bbf85f7e03cea6d985fdbe01
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:3.808.0":
version: 3.808.0
resolution: "@aws-sdk/util-endpoints@npm:3.808.0"
dependencies:
"@aws-sdk/types": "npm:3.804.0"
"@smithy/types": "npm:^4.2.0"
"@smithy/util-endpoints": "npm:^3.0.4"
tslib: "npm:^2.6.2"
checksum: bc735ac0d7c58d12e5ef820050879bba7300534ff9e05a3f0c3cb32ac5874e208b7e000e5cb4d04f407789cef0e48926e1564a5edc89f64a141b3494970f6ba4
languageName: node
linkType: hard
"@aws-sdk/util-locate-window@npm:^3.0.0":
version: 3.465.0
resolution: "@aws-sdk/util-locate-window@npm:3.465.0"
dependencies:
tslib: "npm:^2.5.0"
checksum: a8caa2a0052a7cac4038cb04e9e33d63e3524802e8d0a5865a22b8031f391537873a839e1bc7e1bb75f36f7b7fa590aed5b1bfcb02017177d0ba5a4088f584b1
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-browser@npm:3.804.0":
version: 3.804.0
resolution: "@aws-sdk/util-user-agent-browser@npm:3.804.0"
dependencies:
"@aws-sdk/types": "npm:3.804.0"
"@smithy/types": "npm:^4.2.0"
bowser: "npm:^2.11.0"
tslib: "npm:^2.6.2"
checksum: 6fe62a4625acc86cc018e6646b6737eec1aface0f0ae8215431eef740635cf3d2339e859f77d4030db696ac36a69a309fe2d2534b45e790feeb596f39c83e135
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-node@npm:3.810.0":
version: 3.810.0
resolution: "@aws-sdk/util-user-agent-node@npm:3.810.0"
dependencies:
"@aws-sdk/middleware-user-agent": "npm:3.810.0"
"@aws-sdk/types": "npm:3.804.0"
"@smithy/node-config-provider": "npm:^4.1.1"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
peerDependencies:
aws-crt: ">=1.0.0"
peerDependenciesMeta:
aws-crt:
optional: true
checksum: 6d0baaf25bff681bc1f62583d472bae0fd8a1b03a277e36e1f2dd0c229c6a1ef3be91ff761568f0d29a3705887c3dc703665ba965548bcaf23cd34a427122520
languageName: node
linkType: hard
"@aws-sdk/xml-builder@npm:3.804.0":
version: 3.804.0
resolution: "@aws-sdk/xml-builder@npm:3.804.0"
dependencies:
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: b319e2e55591dfbdc17c2697308a3a0fcbd53f24dbbbd022101b066bb2101d51afbee76699d0f71998a2008cadb545f36652fcf8f41fe14f87680e98fd5be7c3
languageName: node
linkType: hard
"@azure/abort-controller@npm:^1.0.0, @azure/abort-controller@npm:^1.0.4, @azure/abort-controller@npm:^1.1.0":
version: 1.1.0
resolution: "@azure/abort-controller@npm:1.1.0"
dependencies:
tslib: "npm:^2.2.0"
checksum: 1efe8735cfe6411f42ab9dda86be627073e0e3345a89bd5d0560175523ab3939db2c82fd17965a49fc70513377866539c91a5c73c871b5a0d771329ffae87dda
languageName: node
linkType: hard
"@azure/core-auth@npm:^1.3.0, @azure/core-auth@npm:^1.4.0":
version: 1.4.0
resolution: "@azure/core-auth@npm:1.4.0"
dependencies:
"@azure/abort-controller": "npm:^1.0.0"
tslib: "npm:^2.2.0"
checksum: c886661bcf3b3c777e35566218f7d48afb681b207c26d9785bb0e0be2826061bf1dda4a2c30f74530f8f54b3cb784b4287a5fefa1110527fa7bc3b4438d92c6a
languageName: node
linkType: hard
"@azure/core-auth@npm:^1.5.0":
version: 1.5.0
resolution: "@azure/core-auth@npm:1.5.0"
dependencies:
"@azure/abort-controller": "npm:^1.0.0"
"@azure/core-util": "npm:^1.1.0"
tslib: "npm:^2.2.0"
checksum: 07d93f672e9381c40c2c71ddbd9bbf9f0c6f617acd51ecf7d3481373076cb13921788512c5c5a8ad42ff3c1c9e610d56e0f6e02198924f4a3ec3b958b2dffc9f
languageName: node
linkType: hard
"@azure/core-client@npm:^1.3.0, @azure/core-client@npm:^1.5.0":
version: 1.7.2
resolution: "@azure/core-client@npm:1.7.2"
dependencies:
"@azure/abort-controller": "npm:^1.0.0"
"@azure/core-auth": "npm:^1.4.0"
"@azure/core-rest-pipeline": "npm:^1.9.1"
"@azure/core-tracing": "npm:^1.0.0"
"@azure/core-util": "npm:^1.0.0"
"@azure/logger": "npm:^1.0.0"
tslib: "npm:^2.2.0"
checksum: 15846d4fc7df49d3849dae304c196eeeb70bd7aa8d20358add180219473592b1bfd1e30d6fa4d816635c11f0d402d6330f87877f3c37e2c45404df0b84bf3796
languageName: node
linkType: hard
"@azure/core-client@npm:^1.4.0":
version: 1.7.3
resolution: "@azure/core-client@npm:1.7.3"
dependencies:
"@azure/abort-controller": "npm:^1.0.0"
"@azure/core-auth": "npm:^1.4.0"
"@azure/core-rest-pipeline": "npm:^1.9.1"
"@azure/core-tracing": "npm:^1.0.0"
"@azure/core-util": "npm:^1.0.0"
"@azure/logger": "npm:^1.0.0"
tslib: "npm:^2.2.0"
checksum: 8564d001b3edddb394b0a1a9590864748899aa512a4a12945cdc7e187dfd8a998acb98fd66ce3b830eda6e54f89107aea4f70aa7fd885b8bee1d9e14d4cb7150
languageName: node
linkType: hard
"@azure/core-http-compat@npm:^1.3.0":
version: 1.3.0
resolution: "@azure/core-http-compat@npm:1.3.0"
dependencies:
"@azure/abort-controller": "npm:^1.0.4"
"@azure/core-client": "npm:^1.3.0"
"@azure/core-rest-pipeline": "npm:^1.3.0"
checksum: cdbd71f7eba79963f97c7e09a5055a7f93d2255153f0c69b9846d9fe489bb92e34c9466de81f64892e1f4a3e6b64dc52bc4991aa6a68dbb68d7989a1b92e81c9
languageName: node
linkType: hard
"@azure/core-lro@npm:^2.2.0":
version: 2.5.2
resolution: "@azure/core-lro@npm:2.5.2"
dependencies:
"@azure/abort-controller": "npm:^1.0.0"
"@azure/core-util": "npm:^1.2.0"
"@azure/logger": "npm:^1.0.0"
tslib: "npm:^2.2.0"
checksum: 6036def8329deb902d3550b8d314f210d5399191e449838ef0129c7f93e8941aeee16d6bbe015e6ee010bdf52089b379da8452007c0a1cdbc3de9bc0cec94ed7
languageName: node
linkType: hard
"@azure/core-paging@npm:^1.1.1":
version: 1.5.0
resolution: "@azure/core-paging@npm:1.5.0"
dependencies:
tslib: "npm:^2.2.0"
checksum: b02bbd7b3b00e7bb86f7c1e1e4542d5fb6ebadd7bb33a03112a0b0608dc43a936e271d8a3535ba548f617fc675393bc3d2882e54979e9a05baa321cd109585fc
languageName: node
linkType: hard
"@azure/core-rest-pipeline@npm:^1.1.0, @azure/core-rest-pipeline@npm:^1.3.0, @azure/core-rest-pipeline@npm:^1.8.0, @azure/core-rest-pipeline@npm:^1.9.1":
version: 1.10.3
resolution: "@azure/core-rest-pipeline@npm:1.10.3"
dependencies:
"@azure/abort-controller": "npm:^1.0.0"
"@azure/core-auth": "npm:^1.4.0"
"@azure/core-tracing": "npm:^1.0.1"
"@azure/core-util": "npm:^1.3.0"
"@azure/logger": "npm:^1.0.0"
form-data: "npm:^4.0.0"
http-proxy-agent: "npm:^5.0.0"
https-proxy-agent: "npm:^5.0.0"
tslib: "npm:^2.2.0"
checksum: 4822fb83085d4a0d3050acd8e932d901e80f26acb5d1eb89c40070aa45efcaa707917d3e2b2256e7b5c228d3eab571edffb8fcc499566fe7452f533b5c353e75
languageName: node
linkType: hard
"@azure/core-rest-pipeline@npm:^1.8.1":
version: 1.13.0
resolution: "@azure/core-rest-pipeline@npm:1.13.0"
dependencies:
"@azure/abort-controller": "npm:^1.1.0"
"@azure/core-auth": "npm:^1.4.0"
"@azure/core-tracing": "npm:^1.0.1"
"@azure/core-util": "npm:^1.3.0"
"@azure/logger": "npm:^1.0.0"
http-proxy-agent: "npm:^5.0.0"
https-proxy-agent: "npm:^5.0.0"
tslib: "npm:^2.2.0"
checksum: 3d8909395f58aab7a6a849350fc73fa7672b69a313df78c55a41574be2dae5cc3e8ae2da6fee9f45a63ec1cb5a5df86efc7926ef5e8fb94ae96a837d591d3d92
languageName: node
linkType: hard
"@azure/core-tracing@npm:^1.0.0, @azure/core-tracing@npm:^1.0.1":
version: 1.0.1
resolution: "@azure/core-tracing@npm:1.0.1"
dependencies:
tslib: "npm:^2.2.0"
checksum: 13305f936d695d465df4f66bc259bf261ea81511d8c40f983b1aa198d04107342f210f5710ee53140cc6a5a4655af4e6a1b8aac3835632e1afc85ad40a097490
languageName: node
linkType: hard
"@azure/core-util@npm:^1.0.0, @azure/core-util@npm:^1.2.0, @azure/core-util@npm:^1.3.0":
version: 1.3.1
resolution: "@azure/core-util@npm:1.3.1"
dependencies:
"@azure/abort-controller": "npm:^1.0.0"
tslib: "npm:^2.2.0"
checksum: 2587834acf7857dac6c32f96ec74b956cae9e023fd262c1d2be2d43ca40d63abd37b79de06380e6e662d570e61b7204d51a5cb0fa89d212fd531a738cd4974ea
languageName: node
linkType: hard
"@azure/core-util@npm:^1.1.0":
version: 1.6.1
resolution: "@azure/core-util@npm:1.6.1"
dependencies:
"@azure/abort-controller": "npm:^1.0.0"
tslib: "npm:^2.2.0"
checksum: e6baec71813ca7f759e35311bdbcc9ac474db66b480658231575366dac5a7e1653a26b2bd4a7637ddc561d8751117b76eed51ab129b7985e6d5f46561d116072
languageName: node
linkType: hard
"@azure/identity@npm:^4.0.1":
version: 4.2.1
resolution: "@azure/identity@npm:4.2.1"
dependencies:
"@azure/abort-controller": "npm:^1.0.0"
"@azure/core-auth": "npm:^1.5.0"
"@azure/core-client": "npm:^1.4.0"
"@azure/core-rest-pipeline": "npm:^1.1.0"
"@azure/core-tracing": "npm:^1.0.0"
"@azure/core-util": "npm:^1.3.0"
"@azure/logger": "npm:^1.0.0"
"@azure/msal-browser": "npm:^3.11.1"
"@azure/msal-node": "npm:^2.9.2"
events: "npm:^3.0.0"
jws: "npm:^4.0.0"
open: "npm:^8.0.0"
stoppable: "npm:^1.1.0"
tslib: "npm:^2.2.0"
checksum: 56adf3313ae52410d15dc760fe41a56e07f08c7629a7f61d2788a49345e313037a70bc1c82b5beb950f1bbf50e79f9726c58aa7fe335b8785a4c542a88a9c5fa
languageName: node
linkType: hard
"@azure/keyvault-keys@npm:^4.7.2":
version: 4.7.2
resolution: "@azure/keyvault-keys@npm:4.7.2"
dependencies:
"@azure/abort-controller": "npm:^1.0.0"
"@azure/core-auth": "npm:^1.3.0"
"@azure/core-client": "npm:^1.5.0"
"@azure/core-http-compat": "npm:^1.3.0"
"@azure/core-lro": "npm:^2.2.0"
"@azure/core-paging": "npm:^1.1.1"
"@azure/core-rest-pipeline": "npm:^1.8.1"
"@azure/core-tracing": "npm:^1.0.0"
"@azure/core-util": "npm:^1.0.0"
"@azure/logger": "npm:^1.0.0"
tslib: "npm:^2.2.0"
checksum: ad16e04111ed430211a308cdd13be0af9792d2f0138eac3256445d410ae7a0511272e1b1287864577ca4a93821d83cc10a421e878a3b4117fe3454d3a6d5f56b
languageName: node
linkType: hard
"@azure/keyvault-secrets@npm:^4.7.0":
version: 4.7.0
resolution: "@azure/keyvault-secrets@npm:4.7.0"
dependencies:
"@azure/abort-controller": "npm:^1.0.0"
"@azure/core-auth": "npm:^1.3.0"
"@azure/core-client": "npm:^1.5.0"
"@azure/core-http-compat": "npm:^1.3.0"
"@azure/core-lro": "npm:^2.2.0"
"@azure/core-paging": "npm:^1.1.1"
"@azure/core-rest-pipeline": "npm:^1.8.0"
"@azure/core-tracing": "npm:^1.0.0"
"@azure/core-util": "npm:^1.0.0"
"@azure/logger": "npm:^1.0.0"
tslib: "npm:^2.2.0"
checksum: 4c3939cfb6bcac35fece8f6bc5225ab3cace6bb65e819c66631d6a66e6768f3d73b55c8d4c09a27f3aadb43b37546e09c4e405b5d77dd96e67e4e99cbcf86399
languageName: node
linkType: hard
"@azure/logger@npm:^1.0.0":
version: 1.0.4
resolution: "@azure/logger@npm:1.0.4"
dependencies:
tslib: "npm:^2.2.0"
checksum: 146359bf94d0049ae5da94f71b045a14fbd8e656db39639a57d0dda0f4dcd3c1cfdf9436f27e8ac9acd3b654d9d81d8dca437f13f78822b79e1b7d46d589ce9d
languageName: node
linkType: hard
"@azure/msal-browser@npm:^3.11.1":
version: 3.17.0
resolution: "@azure/msal-browser@npm:3.17.0"
dependencies:
"@azure/msal-common": "npm:14.12.0"
checksum: 0ff3c7e8abfdc2eed9cf22b72bae413d2e251025113789fec82564f4badfda7812a3d954029ffdbfa1aba48dcf4b2040ee6322d9125326e9aa1ed31f8ac08839
languageName: node
linkType: hard
"@azure/msal-common@npm:14.12.0":
version: 14.12.0
resolution: "@azure/msal-common@npm:14.12.0"
checksum: 5a0905beae17e20d66b352425dfd86d41ddf402f3c2c324aacf0590844e61c2c13ed439c3c63a1d7b4d3861b8d885ed11b7f257373facefe8fa3dc63455ee9c2
languageName: node
linkType: hard
"@azure/msal-node@npm:^2.9.2":
version: 2.9.2
resolution: "@azure/msal-node@npm:2.9.2"
dependencies:
"@azure/msal-common": "npm:14.12.0"
jsonwebtoken: "npm:^9.0.0"
uuid: "npm:^8.3.0"
checksum: 0cbaa209291a300515ab94883b9920ba7fa66b11e34428214e46384c3ab12c6e159904ed0a3190e2babf6509780f855f8c4345c07af9bafca0a94d68ff838ba5
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.12.13, @babel/code-frame@npm:^7.18.6, @babel/code-frame@npm:^7.21.4":
version: 7.21.4
resolution: "@babel/code-frame@npm:7.21.4"
dependencies:
"@babel/highlight": "npm:^7.18.6"
checksum: 99236ead98f215a6b144f2d1fe84163c2714614fa6b9cbe32a547ca289554770aac8c6a0c0fb6a7477b68cf17b9b7a7d0c81b50edfbe9e5c2c8f514cc2c09549
languageName: node
linkType: hard