-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathyarn.lock
15806 lines (14245 loc) · 561 KB
/
yarn.lock
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 8
cacheKey: 10c0
"@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: 10c0/b88c5708271bb64ce132fc80dac8d5b87fc1699bf3abfdf10ecae40dbb56ab82460818f5746ecdd9870a00be9854e039d5cb3a121b808d0ff6f5bc7d0146cb38
languageName: node
linkType: hard
"@artilleryio/int-commons@npm:2.13.0":
version: 2.13.0
resolution: "@artilleryio/int-commons@npm:2.13.0"
dependencies:
async: "npm:^2.6.4"
cheerio: "npm:^1.0.0-rc.10"
debug: "npm:^4.3.1"
deep-for-each: "npm:^3.0.0"
espree: "npm:^9.4.1"
jsonpath-plus: "npm:^10.0.0"
lodash: "npm:^4.17.19"
ms: "npm:^2.1.3"
checksum: 10c0/cb043caf06ed9b9f8427a1e982f337b00fa05af2d5083acb1dda66b25c131d11051b2fdc487413b615fbbed0c40e4393b13d92e4285353ce3124c4c7d7d15c8f
languageName: node
linkType: hard
"@artilleryio/int-core@npm:2.17.0":
version: 2.17.0
resolution: "@artilleryio/int-core@npm:2.17.0"
dependencies:
"@artilleryio/int-commons": "npm:2.13.0"
"@artilleryio/sketches-js": "npm:^2.1.1"
agentkeepalive: "npm:^4.1.0"
arrivals: "npm:^2.1.2"
async: "npm:^2.6.4"
chalk: "npm:^2.4.2"
cheerio: "npm:^1.0.0-rc.10"
cookie-parser: "npm:^1.4.3"
csv-parse: "npm:^4.16.3"
debug: "npm:^4.3.1"
decompress-response: "npm:^6.0.0"
deep-for-each: "npm:^3.0.0"
driftless: "npm:^2.0.3"
esprima: "npm:^4.0.0"
eventemitter3: "npm:^4.0.4"
fast-deep-equal: "npm:^3.1.3"
filtrex: "npm:^0.5.4"
form-data: "npm:^3.0.0"
got: "npm:^11.8.5"
hpagent: "npm:^0.1.1"
https-proxy-agent: "npm:^5.0.0"
lodash: "npm:^4.17.19"
ms: "npm:^2.1.3"
protobufjs: "npm:^7.2.4"
socket.io-client: "npm:^4.5.1"
socketio-wildcard: "npm:^2.0.0"
tough-cookie: "npm:^5.0.0-rc.2"
uuid: "npm:^8.0.0"
ws: "npm:^7.5.7"
checksum: 10c0/cf7bb93ab8fddf080d2f66d9073f1cbeff944eae55583a36ae8e1eb10acc66e27d7900f78f3401d1ef50b23a0ae8fa76000f29cd2bcd26d81619e3032814bb2b
languageName: node
linkType: hard
"@artilleryio/sketches-js@npm:^2.1.1":
version: 2.1.1
resolution: "@artilleryio/sketches-js@npm:2.1.1"
checksum: 10c0/682cc50eaf3e80e1bfb42c8714294ecfd931849f713114e4696015d8bec3791d4d33019cf8b95ddbeaa0208a70d4020648bcf596416430364e34c70f5fe0e880
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/client-cloudwatch@npm:^3.370.0":
version: 3.654.0
resolution: "@aws-sdk/client-cloudwatch@npm:3.654.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/client-sso-oidc": "npm:3.654.0"
"@aws-sdk/client-sts": "npm:3.654.0"
"@aws-sdk/core": "npm:3.654.0"
"@aws-sdk/credential-provider-node": "npm:3.654.0"
"@aws-sdk/middleware-host-header": "npm:3.654.0"
"@aws-sdk/middleware-logger": "npm:3.654.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.654.0"
"@aws-sdk/middleware-user-agent": "npm:3.654.0"
"@aws-sdk/region-config-resolver": "npm:3.654.0"
"@aws-sdk/types": "npm:3.654.0"
"@aws-sdk/util-endpoints": "npm:3.654.0"
"@aws-sdk/util-user-agent-browser": "npm:3.654.0"
"@aws-sdk/util-user-agent-node": "npm:3.654.0"
"@smithy/config-resolver": "npm:^3.0.8"
"@smithy/core": "npm:^2.4.3"
"@smithy/fetch-http-handler": "npm:^3.2.7"
"@smithy/hash-node": "npm:^3.0.6"
"@smithy/invalid-dependency": "npm:^3.0.6"
"@smithy/middleware-compression": "npm:^3.0.10"
"@smithy/middleware-content-length": "npm:^3.0.8"
"@smithy/middleware-endpoint": "npm:^3.1.3"
"@smithy/middleware-retry": "npm:^3.0.18"
"@smithy/middleware-serde": "npm:^3.0.6"
"@smithy/middleware-stack": "npm:^3.0.6"
"@smithy/node-config-provider": "npm:^3.1.7"
"@smithy/node-http-handler": "npm:^3.2.2"
"@smithy/protocol-http": "npm:^4.1.3"
"@smithy/smithy-client": "npm:^3.3.2"
"@smithy/types": "npm:^3.4.2"
"@smithy/url-parser": "npm:^3.0.6"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.18"
"@smithy/util-defaults-mode-node": "npm:^3.0.18"
"@smithy/util-endpoints": "npm:^2.1.2"
"@smithy/util-middleware": "npm:^3.0.6"
"@smithy/util-retry": "npm:^3.0.6"
"@smithy/util-utf8": "npm:^3.0.0"
"@smithy/util-waiter": "npm:^3.1.5"
tslib: "npm:^2.6.2"
checksum: 10c0/c3d163df3303fa71e31b02ec48d7296319258f1677d2210a2c06b4d868c43b01dd4e0bf0a6c019d6884c15eee2f5e925740f80981d49e0f78586d9d030b9f2cd
languageName: node
linkType: hard
"@aws-sdk/client-cognito-identity@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/client-cognito-identity@npm:3.654.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/client-sso-oidc": "npm:3.654.0"
"@aws-sdk/client-sts": "npm:3.654.0"
"@aws-sdk/core": "npm:3.654.0"
"@aws-sdk/credential-provider-node": "npm:3.654.0"
"@aws-sdk/middleware-host-header": "npm:3.654.0"
"@aws-sdk/middleware-logger": "npm:3.654.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.654.0"
"@aws-sdk/middleware-user-agent": "npm:3.654.0"
"@aws-sdk/region-config-resolver": "npm:3.654.0"
"@aws-sdk/types": "npm:3.654.0"
"@aws-sdk/util-endpoints": "npm:3.654.0"
"@aws-sdk/util-user-agent-browser": "npm:3.654.0"
"@aws-sdk/util-user-agent-node": "npm:3.654.0"
"@smithy/config-resolver": "npm:^3.0.8"
"@smithy/core": "npm:^2.4.3"
"@smithy/fetch-http-handler": "npm:^3.2.7"
"@smithy/hash-node": "npm:^3.0.6"
"@smithy/invalid-dependency": "npm:^3.0.6"
"@smithy/middleware-content-length": "npm:^3.0.8"
"@smithy/middleware-endpoint": "npm:^3.1.3"
"@smithy/middleware-retry": "npm:^3.0.18"
"@smithy/middleware-serde": "npm:^3.0.6"
"@smithy/middleware-stack": "npm:^3.0.6"
"@smithy/node-config-provider": "npm:^3.1.7"
"@smithy/node-http-handler": "npm:^3.2.2"
"@smithy/protocol-http": "npm:^4.1.3"
"@smithy/smithy-client": "npm:^3.3.2"
"@smithy/types": "npm:^3.4.2"
"@smithy/url-parser": "npm:^3.0.6"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.18"
"@smithy/util-defaults-mode-node": "npm:^3.0.18"
"@smithy/util-endpoints": "npm:^2.1.2"
"@smithy/util-middleware": "npm:^3.0.6"
"@smithy/util-retry": "npm:^3.0.6"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/f00c2f5a55dcbaec328841b5c690c92dfbf01ae2c3c855e0a807f66b79e620e831cbe07cc6c035de2fcb8566c9cf1cf40f2d9f7bb90d6c7bdf269245a34770d6
languageName: node
linkType: hard
"@aws-sdk/client-sso-oidc@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/client-sso-oidc@npm:3.654.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.654.0"
"@aws-sdk/credential-provider-node": "npm:3.654.0"
"@aws-sdk/middleware-host-header": "npm:3.654.0"
"@aws-sdk/middleware-logger": "npm:3.654.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.654.0"
"@aws-sdk/middleware-user-agent": "npm:3.654.0"
"@aws-sdk/region-config-resolver": "npm:3.654.0"
"@aws-sdk/types": "npm:3.654.0"
"@aws-sdk/util-endpoints": "npm:3.654.0"
"@aws-sdk/util-user-agent-browser": "npm:3.654.0"
"@aws-sdk/util-user-agent-node": "npm:3.654.0"
"@smithy/config-resolver": "npm:^3.0.8"
"@smithy/core": "npm:^2.4.3"
"@smithy/fetch-http-handler": "npm:^3.2.7"
"@smithy/hash-node": "npm:^3.0.6"
"@smithy/invalid-dependency": "npm:^3.0.6"
"@smithy/middleware-content-length": "npm:^3.0.8"
"@smithy/middleware-endpoint": "npm:^3.1.3"
"@smithy/middleware-retry": "npm:^3.0.18"
"@smithy/middleware-serde": "npm:^3.0.6"
"@smithy/middleware-stack": "npm:^3.0.6"
"@smithy/node-config-provider": "npm:^3.1.7"
"@smithy/node-http-handler": "npm:^3.2.2"
"@smithy/protocol-http": "npm:^4.1.3"
"@smithy/smithy-client": "npm:^3.3.2"
"@smithy/types": "npm:^3.4.2"
"@smithy/url-parser": "npm:^3.0.6"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.18"
"@smithy/util-defaults-mode-node": "npm:^3.0.18"
"@smithy/util-endpoints": "npm:^2.1.2"
"@smithy/util-middleware": "npm:^3.0.6"
"@smithy/util-retry": "npm:^3.0.6"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.654.0
checksum: 10c0/0b377b7c1fb9913d58817dab8bbcefe9361a74b9a512a50315173547ade3e84b4f101cee7415ba90985c67419edc1542938cae8e5ef0ed83a44ae9a687c88eb1
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/client-sso@npm:3.654.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.654.0"
"@aws-sdk/middleware-host-header": "npm:3.654.0"
"@aws-sdk/middleware-logger": "npm:3.654.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.654.0"
"@aws-sdk/middleware-user-agent": "npm:3.654.0"
"@aws-sdk/region-config-resolver": "npm:3.654.0"
"@aws-sdk/types": "npm:3.654.0"
"@aws-sdk/util-endpoints": "npm:3.654.0"
"@aws-sdk/util-user-agent-browser": "npm:3.654.0"
"@aws-sdk/util-user-agent-node": "npm:3.654.0"
"@smithy/config-resolver": "npm:^3.0.8"
"@smithy/core": "npm:^2.4.3"
"@smithy/fetch-http-handler": "npm:^3.2.7"
"@smithy/hash-node": "npm:^3.0.6"
"@smithy/invalid-dependency": "npm:^3.0.6"
"@smithy/middleware-content-length": "npm:^3.0.8"
"@smithy/middleware-endpoint": "npm:^3.1.3"
"@smithy/middleware-retry": "npm:^3.0.18"
"@smithy/middleware-serde": "npm:^3.0.6"
"@smithy/middleware-stack": "npm:^3.0.6"
"@smithy/node-config-provider": "npm:^3.1.7"
"@smithy/node-http-handler": "npm:^3.2.2"
"@smithy/protocol-http": "npm:^4.1.3"
"@smithy/smithy-client": "npm:^3.3.2"
"@smithy/types": "npm:^3.4.2"
"@smithy/url-parser": "npm:^3.0.6"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.18"
"@smithy/util-defaults-mode-node": "npm:^3.0.18"
"@smithy/util-endpoints": "npm:^2.1.2"
"@smithy/util-middleware": "npm:^3.0.6"
"@smithy/util-retry": "npm:^3.0.6"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/962958406a0a396133681e1a0d4d2ed9103ee0a1ef7ca55d728b04bf70e601c054b71d3a44aca1319cbe0eb2d4f026be5eef5f56bc262c98f5a1f71ebf46e7b6
languageName: node
linkType: hard
"@aws-sdk/client-sts@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/client-sts@npm:3.654.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/client-sso-oidc": "npm:3.654.0"
"@aws-sdk/core": "npm:3.654.0"
"@aws-sdk/credential-provider-node": "npm:3.654.0"
"@aws-sdk/middleware-host-header": "npm:3.654.0"
"@aws-sdk/middleware-logger": "npm:3.654.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.654.0"
"@aws-sdk/middleware-user-agent": "npm:3.654.0"
"@aws-sdk/region-config-resolver": "npm:3.654.0"
"@aws-sdk/types": "npm:3.654.0"
"@aws-sdk/util-endpoints": "npm:3.654.0"
"@aws-sdk/util-user-agent-browser": "npm:3.654.0"
"@aws-sdk/util-user-agent-node": "npm:3.654.0"
"@smithy/config-resolver": "npm:^3.0.8"
"@smithy/core": "npm:^2.4.3"
"@smithy/fetch-http-handler": "npm:^3.2.7"
"@smithy/hash-node": "npm:^3.0.6"
"@smithy/invalid-dependency": "npm:^3.0.6"
"@smithy/middleware-content-length": "npm:^3.0.8"
"@smithy/middleware-endpoint": "npm:^3.1.3"
"@smithy/middleware-retry": "npm:^3.0.18"
"@smithy/middleware-serde": "npm:^3.0.6"
"@smithy/middleware-stack": "npm:^3.0.6"
"@smithy/node-config-provider": "npm:^3.1.7"
"@smithy/node-http-handler": "npm:^3.2.2"
"@smithy/protocol-http": "npm:^4.1.3"
"@smithy/smithy-client": "npm:^3.3.2"
"@smithy/types": "npm:^3.4.2"
"@smithy/url-parser": "npm:^3.0.6"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.18"
"@smithy/util-defaults-mode-node": "npm:^3.0.18"
"@smithy/util-endpoints": "npm:^2.1.2"
"@smithy/util-middleware": "npm:^3.0.6"
"@smithy/util-retry": "npm:^3.0.6"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/14325d58391c5c66b253c22db01da784590d9575624a1ad54eec0375787e47201fa5d986cbb5c021371f3d9494a738edc4a463056d7b2dc23a2644054926617b
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/core@npm:3.654.0"
dependencies:
"@smithy/core": "npm:^2.4.3"
"@smithy/node-config-provider": "npm:^3.1.7"
"@smithy/property-provider": "npm:^3.1.6"
"@smithy/protocol-http": "npm:^4.1.3"
"@smithy/signature-v4": "npm:^4.1.3"
"@smithy/smithy-client": "npm:^3.3.2"
"@smithy/types": "npm:^3.4.2"
"@smithy/util-middleware": "npm:^3.0.6"
fast-xml-parser: "npm:4.4.1"
tslib: "npm:^2.6.2"
checksum: 10c0/da28677ed50051abd1acaa5b17481b1da328bfb472d3e9b3ddc29ec090081dd044f97bef9ae2b1d6666db83351812fcb5b426f7d07e9d5845884089485dbb922
languageName: node
linkType: hard
"@aws-sdk/credential-provider-cognito-identity@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/credential-provider-cognito-identity@npm:3.654.0"
dependencies:
"@aws-sdk/client-cognito-identity": "npm:3.654.0"
"@aws-sdk/types": "npm:3.654.0"
"@smithy/property-provider": "npm:^3.1.6"
"@smithy/types": "npm:^3.4.2"
tslib: "npm:^2.6.2"
checksum: 10c0/67de78bceb378031e3c29b4cef315914f515b45f53667b50e6931036f0a02fd884ce7f29dd3b12693fafe9375443dc07eb33c88803639adf9fa6d29b60e37db7
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/credential-provider-env@npm:3.654.0"
dependencies:
"@aws-sdk/types": "npm:3.654.0"
"@smithy/property-provider": "npm:^3.1.6"
"@smithy/types": "npm:^3.4.2"
tslib: "npm:^2.6.2"
checksum: 10c0/2ecce2029c7b304450bd5564cb17934b71140fb8fe57bf990c49047b19c434ce820b6d6e169377029ab3260d0d03af2fa976e7cc157f34e50136b71b6f3543f7
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/credential-provider-http@npm:3.654.0"
dependencies:
"@aws-sdk/types": "npm:3.654.0"
"@smithy/fetch-http-handler": "npm:^3.2.7"
"@smithy/node-http-handler": "npm:^3.2.2"
"@smithy/property-provider": "npm:^3.1.6"
"@smithy/protocol-http": "npm:^4.1.3"
"@smithy/smithy-client": "npm:^3.3.2"
"@smithy/types": "npm:^3.4.2"
"@smithy/util-stream": "npm:^3.1.6"
tslib: "npm:^2.6.2"
checksum: 10c0/525c13f872c7ff3d923cf5125ed434ce8ec07b14e395712aa014ecfef361fe0029301d2e234771425d7e94ca946f83b1c493c65cb38c41fc2424371f70f9516a
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.654.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.654.0"
"@aws-sdk/credential-provider-http": "npm:3.654.0"
"@aws-sdk/credential-provider-process": "npm:3.654.0"
"@aws-sdk/credential-provider-sso": "npm:3.654.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.654.0"
"@aws-sdk/types": "npm:3.654.0"
"@smithy/credential-provider-imds": "npm:^3.2.3"
"@smithy/property-provider": "npm:^3.1.6"
"@smithy/shared-ini-file-loader": "npm:^3.1.7"
"@smithy/types": "npm:^3.4.2"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.654.0
checksum: 10c0/1b8767645e1db257d0861b600a1d5121790aa922bd88716997567933d3b8c55c8c10d2a99058ec4efd6cbffc855f1d666b40e3bccbe072e1f3a9571700ae1712
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/credential-provider-node@npm:3.654.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.654.0"
"@aws-sdk/credential-provider-http": "npm:3.654.0"
"@aws-sdk/credential-provider-ini": "npm:3.654.0"
"@aws-sdk/credential-provider-process": "npm:3.654.0"
"@aws-sdk/credential-provider-sso": "npm:3.654.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.654.0"
"@aws-sdk/types": "npm:3.654.0"
"@smithy/credential-provider-imds": "npm:^3.2.3"
"@smithy/property-provider": "npm:^3.1.6"
"@smithy/shared-ini-file-loader": "npm:^3.1.7"
"@smithy/types": "npm:^3.4.2"
tslib: "npm:^2.6.2"
checksum: 10c0/a18bd7157006143db7c785067965cb22e834bdf9497c9fb471ec9d16359a1ba65b4285162fda545838d6b1850fc07d03bfaa4621881d4c2c3835fe924f376b84
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/credential-provider-process@npm:3.654.0"
dependencies:
"@aws-sdk/types": "npm:3.654.0"
"@smithy/property-provider": "npm:^3.1.6"
"@smithy/shared-ini-file-loader": "npm:^3.1.7"
"@smithy/types": "npm:^3.4.2"
tslib: "npm:^2.6.2"
checksum: 10c0/388f6dcf7522dd3fdec125e164414253b937513365ffe5a4274237e83990153f33014013562ca5d4aa38d9510d2fc747ccee81b369fca6461b0f926a049aeaef
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.654.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.654.0"
"@aws-sdk/token-providers": "npm:3.654.0"
"@aws-sdk/types": "npm:3.654.0"
"@smithy/property-provider": "npm:^3.1.6"
"@smithy/shared-ini-file-loader": "npm:^3.1.7"
"@smithy/types": "npm:^3.4.2"
tslib: "npm:^2.6.2"
checksum: 10c0/5b8eb3931f747203c12049361a2cea08bdb6aa6e05a266715fe19cbed5b6c5b029b87a0261ae6fcaa878f1d0a59b52c93ce7e7def99385fca75729e098f256e4
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.654.0"
dependencies:
"@aws-sdk/types": "npm:3.654.0"
"@smithy/property-provider": "npm:^3.1.6"
"@smithy/types": "npm:^3.4.2"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.654.0
checksum: 10c0/6bafd02301ff2f5d030bb2242056be7fb02713d0ab70a43e18ac7a77d6d08460b36b7c833d9446388d93e16158fdcbb6b463754a131a962a8b14a639e01da3b2
languageName: node
linkType: hard
"@aws-sdk/credential-providers@npm:^3.127.0":
version: 3.654.0
resolution: "@aws-sdk/credential-providers@npm:3.654.0"
dependencies:
"@aws-sdk/client-cognito-identity": "npm:3.654.0"
"@aws-sdk/client-sso": "npm:3.654.0"
"@aws-sdk/client-sts": "npm:3.654.0"
"@aws-sdk/credential-provider-cognito-identity": "npm:3.654.0"
"@aws-sdk/credential-provider-env": "npm:3.654.0"
"@aws-sdk/credential-provider-http": "npm:3.654.0"
"@aws-sdk/credential-provider-ini": "npm:3.654.0"
"@aws-sdk/credential-provider-node": "npm:3.654.0"
"@aws-sdk/credential-provider-process": "npm:3.654.0"
"@aws-sdk/credential-provider-sso": "npm:3.654.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.654.0"
"@aws-sdk/types": "npm:3.654.0"
"@smithy/credential-provider-imds": "npm:^3.2.3"
"@smithy/property-provider": "npm:^3.1.6"
"@smithy/types": "npm:^3.4.2"
tslib: "npm:^2.6.2"
checksum: 10c0/1cfcd0d2230ff045b946b0f6c794aa55b79e82c7d5aa1864bcaa155e9baa8d52257bef1ed664e8db4ce36e57e5eee470ca8d8b348afcc2a8adc3fa43061aaa89
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/middleware-host-header@npm:3.654.0"
dependencies:
"@aws-sdk/types": "npm:3.654.0"
"@smithy/protocol-http": "npm:^4.1.3"
"@smithy/types": "npm:^3.4.2"
tslib: "npm:^2.6.2"
checksum: 10c0/4d027e87f8ee18424ae326a7484bf1a52258cc89037641bc7fcd9e9e34bc936e754ec4cc6ccdfa545e1ec1e1ba5361dbd539de9b0e525161d7a70433ef475802
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/middleware-logger@npm:3.654.0"
dependencies:
"@aws-sdk/types": "npm:3.654.0"
"@smithy/types": "npm:^3.4.2"
tslib: "npm:^2.6.2"
checksum: 10c0/cab9e99eef8a205f6d9c0dc5db14797e8f983a32604658f517ad3f5f62f0d427784b9f11ed686024c7b2c4265d8ef3c346ccb65a7a2733449c142678b56dcaef
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.654.0"
dependencies:
"@aws-sdk/types": "npm:3.654.0"
"@smithy/protocol-http": "npm:^4.1.3"
"@smithy/types": "npm:^3.4.2"
tslib: "npm:^2.6.2"
checksum: 10c0/52752ca2cbc23fb29af27f58c6218b3714770898d06535da61586c4335b31b40d8c82fa05a5412aa731b65f149f496604fbe1615acdaaec989eba41116d5a48c
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/middleware-user-agent@npm:3.654.0"
dependencies:
"@aws-sdk/types": "npm:3.654.0"
"@aws-sdk/util-endpoints": "npm:3.654.0"
"@smithy/protocol-http": "npm:^4.1.3"
"@smithy/types": "npm:^3.4.2"
tslib: "npm:^2.6.2"
checksum: 10c0/f6678b1d6bc045d97c52520c381e88bec6d449d7be4f2751d68cd26ed743045b5af60aa2e26326c9a86cec9045d6c7b8711ae31e611bff09b367aa70b5d14710
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/region-config-resolver@npm:3.654.0"
dependencies:
"@aws-sdk/types": "npm:3.654.0"
"@smithy/node-config-provider": "npm:^3.1.7"
"@smithy/types": "npm:^3.4.2"
"@smithy/util-config-provider": "npm:^3.0.0"
"@smithy/util-middleware": "npm:^3.0.6"
tslib: "npm:^2.6.2"
checksum: 10c0/77daa7139977b991db77945a2b6fc5fc642ff780ee4dfa6269687a007730bd1af2e21a49bcd7f82ddd893d79fafccd5621d24324619588acca8fd66dd642946e
languageName: node
linkType: hard
"@aws-sdk/token-providers@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/token-providers@npm:3.654.0"
dependencies:
"@aws-sdk/types": "npm:3.654.0"
"@smithy/property-provider": "npm:^3.1.6"
"@smithy/shared-ini-file-loader": "npm:^3.1.7"
"@smithy/types": "npm:^3.4.2"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sso-oidc": ^3.654.0
checksum: 10c0/b49c7eb1e6cde2c0c8728c46a9a0f9f55a4b54c14afeccf90aff72b30c1a7320bc472c5dd35a32d61734ba6533b745065194ef4fe18f69241b4d1b96532224c2
languageName: node
linkType: hard
"@aws-sdk/types@npm:3.654.0, @aws-sdk/types@npm:^3.222.0":
version: 3.654.0
resolution: "@aws-sdk/types@npm:3.654.0"
dependencies:
"@smithy/types": "npm:^3.4.2"
tslib: "npm:^2.6.2"
checksum: 10c0/24c31b3685ada211a5a6ab35c95fdc6120189a8766fc02dafcf749febb895ee806a055c04c4a023146dc587bce3cf1053a23029285d6d3b3e8c197937d6a7843
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/util-endpoints@npm:3.654.0"
dependencies:
"@aws-sdk/types": "npm:3.654.0"
"@smithy/types": "npm:^3.4.2"
"@smithy/util-endpoints": "npm:^2.1.2"
tslib: "npm:^2.6.2"
checksum: 10c0/12b06f3b9f46bb4a1c0a77baf4d5b295a835d46f5d8eacc7a148ce036013fb29109c458746457e88653a3d32db97fd655ec04e37abaa193c713d4d71e003f53c
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: 10c0/cb1d0919498206fe266542a635cd05909456a06f007a6a550ff897a01390b239e51c2a50e47509e23c179f8df8001bd5fecd900045da5ec989c3f934c3fd3d56
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-browser@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/util-user-agent-browser@npm:3.654.0"
dependencies:
"@aws-sdk/types": "npm:3.654.0"
"@smithy/types": "npm:^3.4.2"
bowser: "npm:^2.11.0"
tslib: "npm:^2.6.2"
checksum: 10c0/b3d317ffad06e5d3167699f5afe89339d6d51d8ce882e3db142f6da4331b485f0fa641dc0e80c4fe695643918cfa6ad5892f0412e368819e796f3fae19f5a811
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-node@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/util-user-agent-node@npm:3.654.0"
dependencies:
"@aws-sdk/types": "npm:3.654.0"
"@smithy/node-config-provider": "npm:^3.1.7"
"@smithy/types": "npm:^3.4.2"
tslib: "npm:^2.6.2"
peerDependencies:
aws-crt: ">=1.0.0"
peerDependenciesMeta:
aws-crt:
optional: true
checksum: 10c0/3744c81a91f994a56ac8990729ea1560b0f5778917ddf38dacb5d3f28604aa8d6c595351225107852a49e3f47e4e9b274caec97a32ba6c91b87e807294f9218b
languageName: node
linkType: hard
"@azure/abort-controller@npm:^1.0.0":
version: 1.1.0
resolution: "@azure/abort-controller@npm:1.1.0"
dependencies:
tslib: "npm:^2.2.0"
checksum: 10c0/bb79f0faaa9e9c1ae3c4ec2523ea23ee0879cc491abb4b3ac2dd56c2cc2dfe4b7e8522ffa866d39c7145c0dd61387711368afe0d4eb6534daba7b67ed0a2a730
languageName: node
linkType: hard
"@azure/abort-controller@npm:^2.0.0":
version: 2.1.2
resolution: "@azure/abort-controller@npm:2.1.2"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10c0/3771b6820e33ebb56e79c7c68e2288296b8c2529556fbd29cf4cf2fbff7776e7ce1120072972d8df9f1bf50e2c3224d71a7565362b589595563f710b8c3d7b79
languageName: node
linkType: hard
"@azure/arm-containerinstance@npm:^9.1.0":
version: 9.1.0
resolution: "@azure/arm-containerinstance@npm:9.1.0"
dependencies:
"@azure/abort-controller": "npm:^1.0.0"
"@azure/core-auth": "npm:^1.3.0"
"@azure/core-client": "npm:^1.7.0"
"@azure/core-lro": "npm:^2.5.0"
"@azure/core-paging": "npm:^1.2.0"
"@azure/core-rest-pipeline": "npm:^1.8.0"
tslib: "npm:^2.2.0"
checksum: 10c0/78aa6c766b7ae77a6041152bc7fa093e5fc8be58991cad56fa804754178542aff905b7f2761fe51c7bcf92c401ced28ad69fe4a205b66d009d84c0f9c6af8aa6
languageName: node
linkType: hard
"@azure/core-auth@npm:^1.3.0, @azure/core-auth@npm:^1.4.0, @azure/core-auth@npm:^1.5.0, @azure/core-auth@npm:^1.8.0":
version: 1.8.0
resolution: "@azure/core-auth@npm:1.8.0"
dependencies:
"@azure/abort-controller": "npm:^2.0.0"
"@azure/core-util": "npm:^1.1.0"
tslib: "npm:^2.6.2"
checksum: 10c0/db9d78da0ae9c43258bc735c7eeda598370559c0d0146293cdfc096191712ee6e0fcc1b1da105bd095df0d034603eead949a8598b2209880a14bad822a5f81d2
languageName: node
linkType: hard
"@azure/core-client@npm:^1.3.0, @azure/core-client@npm:^1.6.2, @azure/core-client@npm:^1.7.0, @azure/core-client@npm:^1.9.2":
version: 1.9.2
resolution: "@azure/core-client@npm:1.9.2"
dependencies:
"@azure/abort-controller": "npm:^2.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.6.1"
"@azure/logger": "npm:^1.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/4dab1f3b070f7c2c5a8390f81c7afdf31c030ad0599e75e16b9684959fb666cb57d34b63977639a60a7535f63f30a8a708210e8e48ff68a30732b7518044ebce
languageName: node
linkType: hard
"@azure/core-http-compat@npm:^2.0.0":
version: 2.1.2
resolution: "@azure/core-http-compat@npm:2.1.2"
dependencies:
"@azure/abort-controller": "npm:^2.0.0"
"@azure/core-client": "npm:^1.3.0"
"@azure/core-rest-pipeline": "npm:^1.3.0"
checksum: 10c0/e7b5374819d740c96c075956c756a753b7e9f6d7774bbadcc5000c3c4f808554e4d7146ccde7b94bcb21c39ed4a7e5b043b2a3b7d208b959310ea7e1440decca
languageName: node
linkType: hard
"@azure/core-lro@npm:^2.2.0, @azure/core-lro@npm:^2.5.0":
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: 10c0/bee809e47661b40021bbbedf88de54019715fdfcc95ac552b1d901719c29d78e293eeab51257b8f5155aac768eb4ea420715004d00d6e32109f5f97db5960d39
languageName: node
linkType: hard
"@azure/core-paging@npm:^1.1.1, @azure/core-paging@npm:^1.2.0":
version: 1.6.2
resolution: "@azure/core-paging@npm:1.6.2"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10c0/c727782f8dc66eff50c03421af2ca55f497f33e14ec845f5918d76661c57bc8e3a7ca9fa3d39181287bfbfa45f28cb3d18b67c31fd36bbe34146387dbd07b440
languageName: node
linkType: hard
"@azure/core-rest-pipeline@npm:^1.1.0, @azure/core-rest-pipeline@npm:^1.10.1, @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.17.0
resolution: "@azure/core-rest-pipeline@npm:1.17.0"
dependencies:
"@azure/abort-controller": "npm:^2.0.0"
"@azure/core-auth": "npm:^1.8.0"
"@azure/core-tracing": "npm:^1.0.1"
"@azure/core-util": "npm:^1.9.0"
"@azure/logger": "npm:^1.0.0"
http-proxy-agent: "npm:^7.0.0"
https-proxy-agent: "npm:^7.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/5dabbdbe0ccf1f500d0c2c43f74c9bedee23d0fca749697001ddf656e895364bc3a468eecc4a2a0b144c1d428ee001376c65fb99fbccf118f7a0219c6be9c206
languageName: node
linkType: hard
"@azure/core-tracing@npm:^1.0.0, @azure/core-tracing@npm:^1.0.1, @azure/core-tracing@npm:^1.1.2":
version: 1.1.2
resolution: "@azure/core-tracing@npm:1.1.2"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10c0/0e844d581117ae81318a503ddfc143146b847ed9152d0c84f20fdc4cb0b2187a4e9da29aed13d5b7a201f39fe601a59c4db6455005ed8e0d3b5aab0ee77a56e1
languageName: node
linkType: hard
"@azure/core-util@npm:^1.1.0, @azure/core-util@npm:^1.2.0, @azure/core-util@npm:^1.3.0, @azure/core-util@npm:^1.6.1, @azure/core-util@npm:^1.9.0":
version: 1.10.0
resolution: "@azure/core-util@npm:1.10.0"
dependencies:
"@azure/abort-controller": "npm:^2.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/94c89ca7b4d44f85cd39e1ce77b4f4b2c2aa2bdc8230454816ba98fb5333bacd648d5ffcd73518b1d1f40405a40c3411987cfed4d260c62a07b740c7f1d77792
languageName: node
linkType: hard
"@azure/core-xml@npm:^1.3.2":
version: 1.4.3
resolution: "@azure/core-xml@npm:1.4.3"
dependencies:
fast-xml-parser: "npm:^4.3.2"
tslib: "npm:^2.6.2"
checksum: 10c0/44c8305cf6a67a44dfa5635672146c0dcdd64547556a17b92a791ba7fd53b60df140cbf5a70e01cc8d264acb91ffe1186b2e25e04b9be1e011885c8dee67bb89
languageName: node
linkType: hard
"@azure/identity@npm:^4.2.0":
version: 4.4.1
resolution: "@azure/identity@npm:4.4.1"
dependencies:
"@azure/abort-controller": "npm:^1.0.0"
"@azure/core-auth": "npm:^1.5.0"
"@azure/core-client": "npm:^1.9.2"
"@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.14.0"
"@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: 10c0/7c660404387ee4f13dea226053868b2e58d1797898a583cf0a8877809f5a50fce1d0fbc93e1b740f57f8bc258a7586487ab0de2ecb7186e743326a5b99c99bdb
languageName: node
linkType: hard
"@azure/logger@npm:^1.0.0":
version: 1.1.4
resolution: "@azure/logger@npm:1.1.4"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10c0/5bc7792ef334e18f4893814e83cc61780a0effb927ba898095c75df1a01e1f3093dc7a63b6de549694cef76c25f43db850b82a48ec0fab5f9f1c1d2053af791d
languageName: node
linkType: hard
"@azure/msal-browser@npm:^3.14.0":
version: 3.23.0
resolution: "@azure/msal-browser@npm:3.23.0"
dependencies:
"@azure/msal-common": "npm:14.14.2"
checksum: 10c0/ced1f98b09d638915c50f436802bd5c5ac127d7c4aa73f901605d1e5fba7f813588295dfb97d5f3895c866883d8da0bd17c4e593fa00e1f1041876d2b1d9513f
languageName: node
linkType: hard
"@azure/msal-common@npm:14.14.2":
version: 14.14.2
resolution: "@azure/msal-common@npm:14.14.2"
checksum: 10c0/b2b7cd72a7748ce3f8df4dd3bc7ab9b0faac3f292923459779a1263ccc0ceb251a48e7244919ac4f4cbb6cc73eaac7e196dbea0d865c2bf9d40a02a570239b30
languageName: node
linkType: hard
"@azure/msal-node@npm:^2.9.2":
version: 2.13.1
resolution: "@azure/msal-node@npm:2.13.1"
dependencies:
"@azure/msal-common": "npm:14.14.2"
jsonwebtoken: "npm:^9.0.0"
uuid: "npm:^8.3.0"
checksum: 10c0/9781a2a20f103090ab0ce60a4ca690a6ae2f1f1e7f55d5d1e188032a4e8c1242bc254d34a116e3df343a537b3807b53ead49267bdfb6bbb423e4c7f326dbe558
languageName: node
linkType: hard
"@azure/storage-blob@npm:^12.18.0":
version: 12.24.0
resolution: "@azure/storage-blob@npm:12.24.0"
dependencies:
"@azure/abort-controller": "npm:^1.0.0"
"@azure/core-auth": "npm:^1.4.0"
"@azure/core-client": "npm:^1.6.2"
"@azure/core-http-compat": "npm:^2.0.0"
"@azure/core-lro": "npm:^2.2.0"
"@azure/core-paging": "npm:^1.1.1"
"@azure/core-rest-pipeline": "npm:^1.10.1"
"@azure/core-tracing": "npm:^1.1.2"
"@azure/core-util": "npm:^1.6.1"
"@azure/core-xml": "npm:^1.3.2"
"@azure/logger": "npm:^1.0.0"
events: "npm:^3.0.0"
tslib: "npm:^2.2.0"
checksum: 10c0/d42d476ff54b6a24172d487dc7c05543a9f6402ee85bc3e7a68356159d70821d2db8f0f4e2238c6004c91c11b6ee4d8b573ac9f198dcbd0ee76f87eac13f13ff
languageName: node
linkType: hard
"@azure/storage-queue@npm:^12.22.0":
version: 12.23.0
resolution: "@azure/storage-queue@npm:12.23.0"
dependencies:
"@azure/abort-controller": "npm:^1.0.0"
"@azure/core-auth": "npm:^1.4.0"
"@azure/core-client": "npm:^1.6.2"
"@azure/core-http-compat": "npm:^2.0.0"
"@azure/core-paging": "npm:^1.1.1"
"@azure/core-rest-pipeline": "npm:^1.10.1"
"@azure/core-tracing": "npm:^1.1.2"
"@azure/core-util": "npm:^1.6.1"
"@azure/core-xml": "npm:^1.3.2"
"@azure/logger": "npm:^1.0.0"
tslib: "npm:^2.2.0"
checksum: 10c0/c5a70d30d86959e0669b7fb23583acdba832f40001d123ef58e50d453e107fbb62c77d96f6750702a3bb7978475367d077983337055f07fc1496bf4aff536bd6
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.22.13":
version: 7.24.7
resolution: "@babel/code-frame@npm:7.24.7"
dependencies:
"@babel/highlight": "npm:^7.24.7"
picocolors: "npm:^1.0.0"
checksum: 10c0/ab0af539473a9f5aeaac7047e377cb4f4edd255a81d84a76058595f8540784cc3fbe8acf73f1e073981104562490aabfb23008cd66dc677a456a4ed5390fdde6
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.25.9, @babel/code-frame@npm:^7.26.2":
version: 7.26.2
resolution: "@babel/code-frame@npm:7.26.2"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.25.9"
js-tokens: "npm:^4.0.0"
picocolors: "npm:^1.0.0"
checksum: 10c0/7d79621a6849183c415486af99b1a20b84737e8c11cd55b6544f688c51ce1fd710e6d869c3dd21232023da272a79b91efb3e83b5bc2dc65c1187c5fcd1b72ea8
languageName: node
linkType: hard
"@babel/generator@npm:^7.26.2, @babel/generator@npm:^7.26.3":
version: 7.26.3
resolution: "@babel/generator@npm:7.26.3"
dependencies:
"@babel/parser": "npm:^7.26.3"
"@babel/types": "npm:^7.26.3"
"@jridgewell/gen-mapping": "npm:^0.3.5"
"@jridgewell/trace-mapping": "npm:^0.3.25"
jsesc: "npm:^3.0.2"
checksum: 10c0/54f260558e3e4ec8942da3cde607c35349bb983c3a7c5121243f96893fba3e8cd62e1f1773b2051f936f8c8a10987b758d5c7d76dbf2784e95bb63ab4843fa00
languageName: node
linkType: hard
"@babel/helper-string-parser@npm:^7.24.8":
version: 7.24.8
resolution: "@babel/helper-string-parser@npm:7.24.8"
checksum: 10c0/6361f72076c17fabf305e252bf6d580106429014b3ab3c1f5c4eb3e6d465536ea6b670cc0e9a637a77a9ad40454d3e41361a2909e70e305116a23d68ce094c08
languageName: node
linkType: hard
"@babel/helper-string-parser@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-string-parser@npm:7.25.9"
checksum: 10c0/7244b45d8e65f6b4338a6a68a8556f2cb161b782343e97281a5f2b9b93e420cad0d9f5773a59d79f61d0c448913d06f6a2358a87f2e203cf112e3c5b53522ee6
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.24.7":
version: 7.24.7
resolution: "@babel/helper-validator-identifier@npm:7.24.7"
checksum: 10c0/87ad608694c9477814093ed5b5c080c2e06d44cb1924ae8320474a74415241223cc2a725eea2640dd783ff1e3390e5f95eede978bc540e870053152e58f1d651
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-validator-identifier@npm:7.25.9"
checksum: 10c0/4fc6f830177b7b7e887ad3277ddb3b91d81e6c4a24151540d9d1023e8dc6b1c0505f0f0628ae653601eb4388a8db45c1c14b2c07a9173837aef7e4116456259d
languageName: node
linkType: hard
"@babel/highlight@npm:^7.24.7":
version: 7.24.7
resolution: "@babel/highlight@npm:7.24.7"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.24.7"
chalk: "npm:^2.4.2"
js-tokens: "npm:^4.0.0"
picocolors: "npm:^1.0.0"
checksum: 10c0/674334c571d2bb9d1c89bdd87566383f59231e16bcdcf5bb7835babdf03c9ae585ca0887a7b25bdf78f303984af028df52831c7989fecebb5101cc132da9393a
languageName: node
linkType: hard
"@babel/parser@npm:^7.21.8":
version: 7.25.6
resolution: "@babel/parser@npm:7.25.6"
dependencies:
"@babel/types": "npm:^7.25.6"
bin:
parser: ./bin/babel-parser.js
checksum: 10c0/f88a0e895dbb096fd37c4527ea97d12b5fc013720602580a941ac3a339698872f0c911e318c292b184c36b5fbe23b612f05aff9d24071bc847c7b1c21552c41d
languageName: node
linkType: hard
"@babel/parser@npm:^7.25.9, @babel/parser@npm:^7.26.2, @babel/parser@npm:^7.26.3":
version: 7.26.3
resolution: "@babel/parser@npm:7.26.3"
dependencies:
"@babel/types": "npm:^7.26.3"
bin:
parser: ./bin/babel-parser.js
checksum: 10c0/48f736374e61cfd10ddbf7b80678514ae1f16d0e88bc793d2b505d73d9b987ea786fc8c2f7ee8f8b8c467df062030eb07fd0eb2168f0f541ca1f542775852cad
languageName: node
linkType: hard