-
Notifications
You must be signed in to change notification settings - Fork 283
Expand file tree
/
Copy pathyarn.lock
More file actions
5751 lines (5192 loc) · 200 KB
/
yarn.lock
File metadata and controls
5751 lines (5192 loc) · 200 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
"@aashutoshrathi/word-wrap@npm:^1.2.3":
version: 1.2.6
resolution: "@aashutoshrathi/word-wrap@npm:1.2.6"
checksum: 10/6eebd12a5cd03cee38fcb915ef9f4ea557df6a06f642dfc7fe8eb4839eb5c9ca55a382f3604d52c14200b0c214c12af5e1f23d2a6d8e23ef2d016b105a9d6c0a
languageName: node
linkType: hard
"@actions/artifact@npm:^6.2.0":
version: 6.2.0
resolution: "@actions/artifact@npm:6.2.0"
dependencies:
"@actions/core": "npm:^3.0.0"
"@actions/github": "npm:^9.0.0"
"@actions/http-client": "npm:^4.0.0"
"@azure/storage-blob": "npm:^12.30.0"
"@octokit/core": "npm:^7.0.6"
"@octokit/plugin-request-log": "npm:^6.0.0"
"@octokit/plugin-retry": "npm:^8.0.0"
"@octokit/request": "npm:^10.0.7"
"@octokit/request-error": "npm:^7.1.0"
"@protobuf-ts/plugin": "npm:^2.2.3-alpha.1"
"@protobuf-ts/runtime": "npm:^2.9.4"
archiver: "npm:^7.0.1"
jwt-decode: "npm:^4.0.0"
unzip-stream: "npm:^0.3.1"
checksum: 10/fa931b1222c0e08bca85d3cb18c2cd5ae912cce3f09ab3acd4ec3486e864337d65177089a14aef124d9696b9dd5309b273a9251e230172c79c2444af2c43443e
languageName: node
linkType: hard
"@actions/cache@npm:^6.0.0":
version: 6.0.0
resolution: "@actions/cache@npm:6.0.0"
dependencies:
"@actions/core": "npm:^3.0.0"
"@actions/exec": "npm:^3.0.0"
"@actions/glob": "npm:^0.6.1"
"@actions/http-client": "npm:^4.0.0"
"@actions/io": "npm:^3.0.0"
"@azure/core-rest-pipeline": "npm:^1.22.0"
"@azure/storage-blob": "npm:^12.30.0"
"@protobuf-ts/runtime-rpc": "npm:^2.11.1"
semver: "npm:^7.7.3"
checksum: 10/91609983f6ed5829018c6afea9b692762acd34604e44479be3ff25c76f5b869d6727766847193ab9f0724de84cd6043759a55553c500c3538af9951494ca14b6
languageName: node
linkType: hard
"@actions/core@npm:^3.0.0":
version: 3.0.0
resolution: "@actions/core@npm:3.0.0"
dependencies:
"@actions/exec": "npm:^3.0.0"
"@actions/http-client": "npm:^4.0.0"
checksum: 10/fddeebfaf6dfd199d9267a33a97d57e2f7afed7605a54e4a3c35a5a1455a5a8f29f1837bf6ac1711b223a457ba15339189f344c57629c52dbf3a216e96c728d6
languageName: node
linkType: hard
"@actions/exec@npm:^3.0.0":
version: 3.0.0
resolution: "@actions/exec@npm:3.0.0"
dependencies:
"@actions/io": "npm:^3.0.2"
checksum: 10/c1904163e326cbe27f887514b4837e357d46e7a6c5eeda66c0e2efffd2772cb34d8ef0a2a48c65eb0e3b6ec72beb9b049eaba343c9f55978d3f45b09d09d2c54
languageName: node
linkType: hard
"@actions/github@npm:^9.0.0":
version: 9.0.0
resolution: "@actions/github@npm:9.0.0"
dependencies:
"@actions/http-client": "npm:^3.0.2"
"@octokit/core": "npm:^7.0.6"
"@octokit/plugin-paginate-rest": "npm:^14.0.0"
"@octokit/plugin-rest-endpoint-methods": "npm:^17.0.0"
"@octokit/request": "npm:^10.0.7"
"@octokit/request-error": "npm:^7.1.0"
undici: "npm:^6.23.0"
checksum: 10/5d3b2790f7b67cb7b0ec4416e8b666fde69621bac5fff5e59737c8233f8ad09829471b5cab2c50faea60da39554c69d5e7e51e5ffc8e2c899fba32f47db15b9b
languageName: node
linkType: hard
"@actions/glob@npm:^0.6.1":
version: 0.6.1
resolution: "@actions/glob@npm:0.6.1"
dependencies:
"@actions/core": "npm:^3.0.0"
minimatch: "npm:^3.0.4"
checksum: 10/343ca2ef8343fd5488fe277dc268b84017bb8b0c5e352215c4ce7181d07c86f0e1951b97e273b5a133a39596a6a8f1a5f06dbc87214fc440d729d3f03daa3b61
languageName: node
linkType: hard
"@actions/http-client@npm:^3.0.2":
version: 3.0.2
resolution: "@actions/http-client@npm:3.0.2"
dependencies:
tunnel: "npm:^0.0.6"
undici: "npm:^6.23.0"
checksum: 10/36431245545cd54e2e2b25b333732801a904170a426cdcb6611423b9da70daeba2742d7258e7fb5a370e216082d3a416d04f47ea810d5e9d6cda8e6928466079
languageName: node
linkType: hard
"@actions/http-client@npm:^4.0.0":
version: 4.0.0
resolution: "@actions/http-client@npm:4.0.0"
dependencies:
tunnel: "npm:^0.0.6"
undici: "npm:^6.23.0"
checksum: 10/05f606174577cae62f563361326cc81ee4c83c468dd75e87ac93f59e8d53369a6479c3fc28a4e8ea1bfbb50c8ed7db941629b5dd9f6e3855fe5f639a2ccdabc5
languageName: node
linkType: hard
"@actions/io@npm:^3.0.0, @actions/io@npm:^3.0.2":
version: 3.0.2
resolution: "@actions/io@npm:3.0.2"
checksum: 10/ef17cb4ec0a2b640d5f4851446ad1c12bf4b2b1cf83741c5eecee4e8f50b3ca3ac9ae4084027dcaa1bf0c016d653dbc0e5fe20daedd39ee5fb6edb671f6e45b5
languageName: node
linkType: hard
"@actions/tool-cache@npm:^4.0.0":
version: 4.0.0
resolution: "@actions/tool-cache@npm:4.0.0"
dependencies:
"@actions/core": "npm:^3.0.0"
"@actions/exec": "npm:^3.0.0"
"@actions/http-client": "npm:^4.0.0"
"@actions/io": "npm:^3.0.0"
semver: "npm:^7.7.3"
checksum: 10/a01b2739843096a894d51c3f77c69a93d88597a0d3cf001f3dac2178087e590bdb1052261b43c36cbc45b0fdeeb060a44bbb8408739697a3ae98efdc4acb302b
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-ecr-public@npm:^3.1000.0":
version: 3.1000.0
resolution: "@aws-sdk/client-ecr-public@npm:3.1000.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.973.15"
"@aws-sdk/credential-provider-node": "npm:^3.972.14"
"@aws-sdk/middleware-host-header": "npm:^3.972.6"
"@aws-sdk/middleware-logger": "npm:^3.972.6"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.6"
"@aws-sdk/middleware-user-agent": "npm:^3.972.15"
"@aws-sdk/region-config-resolver": "npm:^3.972.6"
"@aws-sdk/types": "npm:^3.973.4"
"@aws-sdk/util-endpoints": "npm:^3.996.3"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.6"
"@aws-sdk/util-user-agent-node": "npm:^3.973.0"
"@smithy/config-resolver": "npm:^4.4.9"
"@smithy/core": "npm:^3.23.6"
"@smithy/fetch-http-handler": "npm:^5.3.11"
"@smithy/hash-node": "npm:^4.2.10"
"@smithy/invalid-dependency": "npm:^4.2.10"
"@smithy/middleware-content-length": "npm:^4.2.10"
"@smithy/middleware-endpoint": "npm:^4.4.20"
"@smithy/middleware-retry": "npm:^4.4.37"
"@smithy/middleware-serde": "npm:^4.2.11"
"@smithy/middleware-stack": "npm:^4.2.10"
"@smithy/node-config-provider": "npm:^4.3.10"
"@smithy/node-http-handler": "npm:^4.4.12"
"@smithy/protocol-http": "npm:^5.3.10"
"@smithy/smithy-client": "npm:^4.12.0"
"@smithy/types": "npm:^4.13.0"
"@smithy/url-parser": "npm:^4.2.10"
"@smithy/util-base64": "npm:^4.3.1"
"@smithy/util-body-length-browser": "npm:^4.2.1"
"@smithy/util-body-length-node": "npm:^4.2.2"
"@smithy/util-defaults-mode-browser": "npm:^4.3.36"
"@smithy/util-defaults-mode-node": "npm:^4.2.39"
"@smithy/util-endpoints": "npm:^3.3.1"
"@smithy/util-middleware": "npm:^4.2.10"
"@smithy/util-retry": "npm:^4.2.10"
"@smithy/util-utf8": "npm:^4.2.1"
tslib: "npm:^2.6.2"
checksum: 10/76e31a87e10c1e48c36bf14b8e2bda46cb270903b542f6e14523e3752d1b14e2e13593a4520c00f8d6d66625e715a2f87c863b74d3c1f1f8c4a7eca4bb6694a0
languageName: node
linkType: hard
"@aws-sdk/client-ecr@npm:^3.1000.0":
version: 3.1000.0
resolution: "@aws-sdk/client-ecr@npm:3.1000.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.973.15"
"@aws-sdk/credential-provider-node": "npm:^3.972.14"
"@aws-sdk/middleware-host-header": "npm:^3.972.6"
"@aws-sdk/middleware-logger": "npm:^3.972.6"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.6"
"@aws-sdk/middleware-user-agent": "npm:^3.972.15"
"@aws-sdk/region-config-resolver": "npm:^3.972.6"
"@aws-sdk/types": "npm:^3.973.4"
"@aws-sdk/util-endpoints": "npm:^3.996.3"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.6"
"@aws-sdk/util-user-agent-node": "npm:^3.973.0"
"@smithy/config-resolver": "npm:^4.4.9"
"@smithy/core": "npm:^3.23.6"
"@smithy/fetch-http-handler": "npm:^5.3.11"
"@smithy/hash-node": "npm:^4.2.10"
"@smithy/invalid-dependency": "npm:^4.2.10"
"@smithy/middleware-content-length": "npm:^4.2.10"
"@smithy/middleware-endpoint": "npm:^4.4.20"
"@smithy/middleware-retry": "npm:^4.4.37"
"@smithy/middleware-serde": "npm:^4.2.11"
"@smithy/middleware-stack": "npm:^4.2.10"
"@smithy/node-config-provider": "npm:^4.3.10"
"@smithy/node-http-handler": "npm:^4.4.12"
"@smithy/protocol-http": "npm:^5.3.10"
"@smithy/smithy-client": "npm:^4.12.0"
"@smithy/types": "npm:^4.13.0"
"@smithy/url-parser": "npm:^4.2.10"
"@smithy/util-base64": "npm:^4.3.1"
"@smithy/util-body-length-browser": "npm:^4.2.1"
"@smithy/util-body-length-node": "npm:^4.2.2"
"@smithy/util-defaults-mode-browser": "npm:^4.3.36"
"@smithy/util-defaults-mode-node": "npm:^4.2.39"
"@smithy/util-endpoints": "npm:^3.3.1"
"@smithy/util-middleware": "npm:^4.2.10"
"@smithy/util-retry": "npm:^4.2.10"
"@smithy/util-utf8": "npm:^4.2.1"
"@smithy/util-waiter": "npm:^4.2.10"
tslib: "npm:^2.6.2"
checksum: 10/c1cc77d938208bc04040deae84c94f5d3a511d8617ba122f020ed1b8b0a8e02ed8c47cb4ac8da120772cb1021c1bdd36feb12cf090fdc14b26658b221feac993
languageName: node
linkType: hard
"@aws-sdk/core@npm:^3.973.15":
version: 3.973.15
resolution: "@aws-sdk/core@npm:3.973.15"
dependencies:
"@aws-sdk/types": "npm:^3.973.4"
"@aws-sdk/xml-builder": "npm:^3.972.8"
"@smithy/core": "npm:^3.23.6"
"@smithy/node-config-provider": "npm:^4.3.10"
"@smithy/property-provider": "npm:^4.2.10"
"@smithy/protocol-http": "npm:^5.3.10"
"@smithy/signature-v4": "npm:^5.3.10"
"@smithy/smithy-client": "npm:^4.12.0"
"@smithy/types": "npm:^4.13.0"
"@smithy/util-base64": "npm:^4.3.1"
"@smithy/util-middleware": "npm:^4.2.10"
"@smithy/util-utf8": "npm:^4.2.1"
tslib: "npm:^2.6.2"
checksum: 10/65b10efa3b511bce9be0738f60dd8b373e4ccb8269b128ceea31536b6ddd0447d22984f7f43b2ac44f973f74945c60996d224d497ad657323d6b5dd4bef4c727
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:^3.972.13":
version: 3.972.13
resolution: "@aws-sdk/credential-provider-env@npm:3.972.13"
dependencies:
"@aws-sdk/core": "npm:^3.973.15"
"@aws-sdk/types": "npm:^3.973.4"
"@smithy/property-provider": "npm:^4.2.10"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10/306c35e37abafd2f3a95cb3f1e666ee46f0dc35260b6a96ab85222f1133f3fa53734355e803f199b1857c28489caee7fce1cbc9cc11ce1dfdb172781f5696147
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:^3.972.15":
version: 3.972.15
resolution: "@aws-sdk/credential-provider-http@npm:3.972.15"
dependencies:
"@aws-sdk/core": "npm:^3.973.15"
"@aws-sdk/types": "npm:^3.973.4"
"@smithy/fetch-http-handler": "npm:^5.3.11"
"@smithy/node-http-handler": "npm:^4.4.12"
"@smithy/property-provider": "npm:^4.2.10"
"@smithy/protocol-http": "npm:^5.3.10"
"@smithy/smithy-client": "npm:^4.12.0"
"@smithy/types": "npm:^4.13.0"
"@smithy/util-stream": "npm:^4.5.15"
tslib: "npm:^2.6.2"
checksum: 10/8d933acd8c8ca80a5a86b02bbf6a5455c6d3215a247f103e88ab44569288fe03ee0a716ef0cdd7017a4c80415f584ce992c3055a069b76942a1e5f2b41d0918b
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:^3.972.13":
version: 3.972.13
resolution: "@aws-sdk/credential-provider-ini@npm:3.972.13"
dependencies:
"@aws-sdk/core": "npm:^3.973.15"
"@aws-sdk/credential-provider-env": "npm:^3.972.13"
"@aws-sdk/credential-provider-http": "npm:^3.972.15"
"@aws-sdk/credential-provider-login": "npm:^3.972.13"
"@aws-sdk/credential-provider-process": "npm:^3.972.13"
"@aws-sdk/credential-provider-sso": "npm:^3.972.13"
"@aws-sdk/credential-provider-web-identity": "npm:^3.972.13"
"@aws-sdk/nested-clients": "npm:^3.996.3"
"@aws-sdk/types": "npm:^3.973.4"
"@smithy/credential-provider-imds": "npm:^4.2.10"
"@smithy/property-provider": "npm:^4.2.10"
"@smithy/shared-ini-file-loader": "npm:^4.4.5"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10/e2840eafd28350727a0685f281c9f52cc0eea5633a31b53b702003a4d005d4c19010e82fe895fb3e7afe3fd280c568cfbf15c440a2c1f61fe1c0ab541981b15e
languageName: node
linkType: hard
"@aws-sdk/credential-provider-login@npm:^3.972.13":
version: 3.972.13
resolution: "@aws-sdk/credential-provider-login@npm:3.972.13"
dependencies:
"@aws-sdk/core": "npm:^3.973.15"
"@aws-sdk/nested-clients": "npm:^3.996.3"
"@aws-sdk/types": "npm:^3.973.4"
"@smithy/property-provider": "npm:^4.2.10"
"@smithy/protocol-http": "npm:^5.3.10"
"@smithy/shared-ini-file-loader": "npm:^4.4.5"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10/d4c871cc6b384e5b25bc821bef4e1042e4e856011dcaf08b6b1843f6a7d7edd89221d7c3b475580f1fe08edcdecc6c20e7c546e713c124902d23788ff5d69c9f
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:^3.972.14":
version: 3.972.14
resolution: "@aws-sdk/credential-provider-node@npm:3.972.14"
dependencies:
"@aws-sdk/credential-provider-env": "npm:^3.972.13"
"@aws-sdk/credential-provider-http": "npm:^3.972.15"
"@aws-sdk/credential-provider-ini": "npm:^3.972.13"
"@aws-sdk/credential-provider-process": "npm:^3.972.13"
"@aws-sdk/credential-provider-sso": "npm:^3.972.13"
"@aws-sdk/credential-provider-web-identity": "npm:^3.972.13"
"@aws-sdk/types": "npm:^3.973.4"
"@smithy/credential-provider-imds": "npm:^4.2.10"
"@smithy/property-provider": "npm:^4.2.10"
"@smithy/shared-ini-file-loader": "npm:^4.4.5"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10/f36ef21fa7932a06fa8065f3e306c6b61de92251a41e471af1193e99f408bd970fe1baab4e28533b964a5ac712b5268e7f9422f22772e5cb25029c68f4ab23a5
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:^3.972.13":
version: 3.972.13
resolution: "@aws-sdk/credential-provider-process@npm:3.972.13"
dependencies:
"@aws-sdk/core": "npm:^3.973.15"
"@aws-sdk/types": "npm:^3.973.4"
"@smithy/property-provider": "npm:^4.2.10"
"@smithy/shared-ini-file-loader": "npm:^4.4.5"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10/e9e946d1bd19af521b1ba4695598345fab0052e9c55444db8c423df6bc965a41f5d02eef56e72ec9c9dcd314a510f798c3baf0d63ee8054f9220ce3864e8578b
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:^3.972.13":
version: 3.972.13
resolution: "@aws-sdk/credential-provider-sso@npm:3.972.13"
dependencies:
"@aws-sdk/core": "npm:^3.973.15"
"@aws-sdk/nested-clients": "npm:^3.996.3"
"@aws-sdk/token-providers": "npm:3.999.0"
"@aws-sdk/types": "npm:^3.973.4"
"@smithy/property-provider": "npm:^4.2.10"
"@smithy/shared-ini-file-loader": "npm:^4.4.5"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10/184f97b6f3b9510678fb509ef947dfc9350e186ad6961d0ed2369b24cfdf9e5ef2cd220f956e7b9b6986b63b383df8f4b2dd1be01347a5e014670f9f417fc8f9
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:^3.972.13":
version: 3.972.13
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.972.13"
dependencies:
"@aws-sdk/core": "npm:^3.973.15"
"@aws-sdk/nested-clients": "npm:^3.996.3"
"@aws-sdk/types": "npm:^3.973.4"
"@smithy/property-provider": "npm:^4.2.10"
"@smithy/shared-ini-file-loader": "npm:^4.4.5"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10/d2260502b2f90382d91c2ebbb197cab399a3903a4f54c4d62f8145a823f44a8e1899bdf231a5c9d77ec6d9efa132a26fb367e653596946c012914b7c91cee7a0
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:^3.972.6":
version: 3.972.6
resolution: "@aws-sdk/middleware-host-header@npm:3.972.6"
dependencies:
"@aws-sdk/types": "npm:^3.973.4"
"@smithy/protocol-http": "npm:^5.3.10"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10/9c62beeb1e59cb80699870086370409b9c80d3fc269d4dedbb9b74e0f7996d6dc3036039641747a9679ecc71a2837e39f0250d59dd60ed2f8c76ed0d3c452b3d
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:^3.972.6":
version: 3.972.6
resolution: "@aws-sdk/middleware-logger@npm:3.972.6"
dependencies:
"@aws-sdk/types": "npm:^3.973.4"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10/b914002e1f246669c1570a607a6e8c6cc326a5d1d210e7c2ad5cb9a30b2b1b2bfbe34f4903396ec899be4e525d3b9194c3a8552321ed333b9f26e3c3f6cc5994
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:^3.972.6":
version: 3.972.6
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.972.6"
dependencies:
"@aws-sdk/types": "npm:^3.973.4"
"@aws/lambda-invoke-store": "npm:^0.2.2"
"@smithy/protocol-http": "npm:^5.3.10"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10/34ac5af8425b24f6b9c16eafaa24d0ac64e2a0eec5a8203a0b27b207cb0e72075717c5711ad979a3321dd76949330595467293ac702f5d1dd7b03468e2fd40f4
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:^3.972.15":
version: 3.972.15
resolution: "@aws-sdk/middleware-user-agent@npm:3.972.15"
dependencies:
"@aws-sdk/core": "npm:^3.973.15"
"@aws-sdk/types": "npm:^3.973.4"
"@aws-sdk/util-endpoints": "npm:^3.996.3"
"@smithy/core": "npm:^3.23.6"
"@smithy/protocol-http": "npm:^5.3.10"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10/4b11fe292c12e3d1cda095110d9c8e6a3a08593845b49f8be37032eb9a5f798b2384d64f10b0b2be4aa8cd4eb8326a7fcde7f5572f91da0698b604f8482b86f9
languageName: node
linkType: hard
"@aws-sdk/nested-clients@npm:^3.996.3":
version: 3.996.3
resolution: "@aws-sdk/nested-clients@npm:3.996.3"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.973.15"
"@aws-sdk/middleware-host-header": "npm:^3.972.6"
"@aws-sdk/middleware-logger": "npm:^3.972.6"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.6"
"@aws-sdk/middleware-user-agent": "npm:^3.972.15"
"@aws-sdk/region-config-resolver": "npm:^3.972.6"
"@aws-sdk/types": "npm:^3.973.4"
"@aws-sdk/util-endpoints": "npm:^3.996.3"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.6"
"@aws-sdk/util-user-agent-node": "npm:^3.973.0"
"@smithy/config-resolver": "npm:^4.4.9"
"@smithy/core": "npm:^3.23.6"
"@smithy/fetch-http-handler": "npm:^5.3.11"
"@smithy/hash-node": "npm:^4.2.10"
"@smithy/invalid-dependency": "npm:^4.2.10"
"@smithy/middleware-content-length": "npm:^4.2.10"
"@smithy/middleware-endpoint": "npm:^4.4.20"
"@smithy/middleware-retry": "npm:^4.4.37"
"@smithy/middleware-serde": "npm:^4.2.11"
"@smithy/middleware-stack": "npm:^4.2.10"
"@smithy/node-config-provider": "npm:^4.3.10"
"@smithy/node-http-handler": "npm:^4.4.12"
"@smithy/protocol-http": "npm:^5.3.10"
"@smithy/smithy-client": "npm:^4.12.0"
"@smithy/types": "npm:^4.13.0"
"@smithy/url-parser": "npm:^4.2.10"
"@smithy/util-base64": "npm:^4.3.1"
"@smithy/util-body-length-browser": "npm:^4.2.1"
"@smithy/util-body-length-node": "npm:^4.2.2"
"@smithy/util-defaults-mode-browser": "npm:^4.3.36"
"@smithy/util-defaults-mode-node": "npm:^4.2.39"
"@smithy/util-endpoints": "npm:^3.3.1"
"@smithy/util-middleware": "npm:^4.2.10"
"@smithy/util-retry": "npm:^4.2.10"
"@smithy/util-utf8": "npm:^4.2.1"
tslib: "npm:^2.6.2"
checksum: 10/200708dad4219ead519809a49da9fb6e78028bdcd215731a27085b9341956a72886c45d9103646254c7ccee7426901b9199df729186fda12badfc14f166b65e1
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:^3.972.6":
version: 3.972.6
resolution: "@aws-sdk/region-config-resolver@npm:3.972.6"
dependencies:
"@aws-sdk/types": "npm:^3.973.4"
"@smithy/config-resolver": "npm:^4.4.9"
"@smithy/node-config-provider": "npm:^4.3.10"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10/d3541c865b0f2816adae45345716bb0271f5eeb4f4389bcb33f467e85dad2460aac6b768185c85f32d386b5bffda92a59366d87a052dda8aa53d85d155ed98ed
languageName: node
linkType: hard
"@aws-sdk/token-providers@npm:3.999.0":
version: 3.999.0
resolution: "@aws-sdk/token-providers@npm:3.999.0"
dependencies:
"@aws-sdk/core": "npm:^3.973.15"
"@aws-sdk/nested-clients": "npm:^3.996.3"
"@aws-sdk/types": "npm:^3.973.4"
"@smithy/property-provider": "npm:^4.2.10"
"@smithy/shared-ini-file-loader": "npm:^4.4.5"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10/1edabf8766e273121df8498df2c7ac8965f5c14ba2ef66700162aab1050fc1491a62fbef220c99cbdab4e883b9dafbedd7d014421e7fc4a2587a4b9fbadcdc7f
languageName: node
linkType: hard
"@aws-sdk/types@npm:^3.222.0":
version: 3.523.0
resolution: "@aws-sdk/types@npm:3.523.0"
dependencies:
"@smithy/types": "npm:^2.10.1"
tslib: "npm:^2.5.0"
checksum: 10/2a33cc1a68d259de199526efde22da2551bd4b6f0f1265d4d378a83b87a22eb88fb3c5b26aa6d649392c04e22aadfd88e56e86d37c304260a6ccb7275d76ed27
languageName: node
linkType: hard
"@aws-sdk/types@npm:^3.973.4":
version: 3.973.4
resolution: "@aws-sdk/types@npm:3.973.4"
dependencies:
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10/285f75ec183d799363d7f756b9e6f67dab230bff09b027f5dac0145f97de73e72b0fa6affa9ce2b6f5c97ab5f0ec8059436fd2ea1784398c07aacf3648c93705
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:^3.996.3":
version: 3.996.3
resolution: "@aws-sdk/util-endpoints@npm:3.996.3"
dependencies:
"@aws-sdk/types": "npm:^3.973.4"
"@smithy/types": "npm:^4.13.0"
"@smithy/url-parser": "npm:^4.2.10"
"@smithy/util-endpoints": "npm:^3.3.1"
tslib: "npm:^2.6.2"
checksum: 10/d8380467ce615d31ef6e10b4dee22e470cc46c6a7dedb4c9b263ba4ac10270d69d41d44e26ff5c2543b1690365f38f85b66a109d1ab8627ac695aa87e9571a81
languageName: node
linkType: hard
"@aws-sdk/util-locate-window@npm:^3.0.0":
version: 3.37.0
resolution: "@aws-sdk/util-locate-window@npm:3.37.0"
dependencies:
tslib: "npm:^2.3.0"
checksum: 10/c8c8905bda0dd7381f64bffc4e40448ce859b3b094f54ea4d0ed23b7dbded6e12e5e2c7b8a459c0eca6dfdbe18830f2dfd1b11c3d9e95a3b715f38d6b37b45c8
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-browser@npm:^3.972.6":
version: 3.972.6
resolution: "@aws-sdk/util-user-agent-browser@npm:3.972.6"
dependencies:
"@aws-sdk/types": "npm:^3.973.4"
"@smithy/types": "npm:^4.13.0"
bowser: "npm:^2.11.0"
tslib: "npm:^2.6.2"
checksum: 10/acf17f80518e5385738c18c0494563e6d138ab0c11b03cfe0a5aa15bf71995998dac463295c36f42790bd38151a53edd6f35b99dfc5fc28578b1e4a7caaa7ffe
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-node@npm:^3.973.0":
version: 3.973.0
resolution: "@aws-sdk/util-user-agent-node@npm:3.973.0"
dependencies:
"@aws-sdk/middleware-user-agent": "npm:^3.972.15"
"@aws-sdk/types": "npm:^3.973.4"
"@smithy/node-config-provider": "npm:^4.3.10"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
peerDependencies:
aws-crt: ">=1.0.0"
peerDependenciesMeta:
aws-crt:
optional: true
checksum: 10/a99926ca970ecb45990723e716b11997afbd56f828498c4f838d748c56784fb5484bffcacb6e6e256d3a511400fe6ed8548996d672c058ab5ed96e4a0d6e52c4
languageName: node
linkType: hard
"@aws-sdk/xml-builder@npm:^3.972.8":
version: 3.972.8
resolution: "@aws-sdk/xml-builder@npm:3.972.8"
dependencies:
"@smithy/types": "npm:^4.13.0"
fast-xml-parser: "npm:5.3.6"
tslib: "npm:^2.6.2"
checksum: 10/12d924f5b808e965c91410b1362878863cc0d79c4c5d08e264f63c92a23198b3d35e610bbca3beb1bbaeb3ba596746b81812edd9131b4de29195ae0e46583e65
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:^1.0.0":
version: 1.1.0
resolution: "@azure/abort-controller@npm:1.1.0"
dependencies:
tslib: "npm:^2.2.0"
checksum: 10/1efe8735cfe6411f42ab9dda86be627073e0e3345a89bd5d0560175523ab3939db2c82fd17965a49fc70513377866539c91a5c73c871b5a0d771329ffae87dda
languageName: node
linkType: hard
"@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/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.10.0, @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-http-compat@npm:^2.2.0":
version: 2.3.1
resolution: "@azure/core-http-compat@npm:2.3.1"
dependencies:
"@azure/abort-controller": "npm:^2.1.2"
"@azure/core-client": "npm:^1.10.0"
"@azure/core-rest-pipeline": "npm:^1.22.0"
checksum: 10/4f573a2f90a149f380aecea02ed960c39dd4e122b52347f77694536726894cfdeb05458f9f76541a5382e109b481390e42497207b2252f61634b652161e92bbf
languageName: node
linkType: hard
"@azure/core-lro@npm:^2.2.0":
version: 2.5.3
resolution: "@azure/core-lro@npm:2.5.3"
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: 10/13386edafbd643b29060263be3807ecf9741041a6c99023dafa02bc5e36b542519ba6b81e8464c1a84d49b67bc9a9692cae0e734d217becf5024d3fa84bba5ff
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.19.1, @azure/core-rest-pipeline@npm:^1.22.0":
version: 1.22.2
resolution: "@azure/core-rest-pipeline@npm:1.22.2"
dependencies:
"@azure/abort-controller": "npm:^2.1.2"
"@azure/core-auth": "npm:^1.10.0"
"@azure/core-tracing": "npm:^1.3.0"
"@azure/core-util": "npm:^1.13.0"
"@azure/logger": "npm:^1.3.0"
"@typespec/ts-http-runtime": "npm:^0.3.0"
tslib: "npm:^2.6.2"
checksum: 10/3164869c5d169af5b3c1b0ae40e661ce641f834ec9e03c70aba6700381d9087929b5a278ae5144fd2a9ac4dcdffb3e60b76727470769566137c22fc4950810b6
languageName: node
linkType: hard
"@azure/core-tracing@npm:^1.2.0, @azure/core-tracing@npm:^1.3.0":
version: 1.3.1
resolution: "@azure/core-tracing@npm:1.3.1"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10/7ef179e0ceb58c76d99c22bb5c5faade6fceaa62a265dcdaf09456e979be716e0249bb952d8000b9502b2194aeccb01454d60b497d4a18755e933cf7b1df919d
languageName: node
linkType: hard
"@azure/core-util@npm:^1.11.0, @azure/core-util@npm:^1.13.0":
version: 1.13.1
resolution: "@azure/core-util@npm:1.13.1"
dependencies:
"@azure/abort-controller": "npm:^2.1.2"
"@typespec/ts-http-runtime": "npm:^0.3.0"
tslib: "npm:^2.6.2"
checksum: 10/81ba529bed2fb615836be9425608e012f9bd243881f861c7ac086ea618c5f91129d3088216eee588323ffc3dfc0013706069830c03810f8a0f4591553ef5843b
languageName: node
linkType: hard
"@azure/core-util@npm:^1.2.0":
version: 1.3.2
resolution: "@azure/core-util@npm:1.3.2"
dependencies:
"@azure/abort-controller": "npm:^1.0.0"
tslib: "npm:^2.2.0"
checksum: 10/a3420b22827f100f3b60b3080b8189efec9633a4deda71384b374ff71e7211f69369682c9716f74bd1fc4d7a20bb96b55dcc4a2590b7c04cf3510972f38860c8
languageName: node
linkType: hard
"@azure/core-xml@npm:^1.4.5":
version: 1.5.0
resolution: "@azure/core-xml@npm:1.5.0"
dependencies:
fast-xml-parser: "npm:^5.0.7"
tslib: "npm:^2.8.1"
checksum: 10/b7bdf6617c5268da49087cb7220ec9333f8bed6a6b903f7e427c0e2275e02ae9cbcd2515b4fe2098868b9e6c6e11e7e0792091758ff8c7a6461232f7915acd76
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: 10/146359bf94d0049ae5da94f71b045a14fbd8e656db39639a57d0dda0f4dcd3c1cfdf9436f27e8ac9acd3b654d9d81d8dca437f13f78822b79e1b7d46d589ce9d
languageName: node
linkType: hard
"@azure/logger@npm:^1.1.4, @azure/logger@npm:^1.3.0":
version: 1.3.0
resolution: "@azure/logger@npm:1.3.0"
dependencies:
"@typespec/ts-http-runtime": "npm:^0.3.0"
tslib: "npm:^2.6.2"
checksum: 10/7df11bf3b4952207d7355fde3cee223df2e4a64eaafff05a1fcbcb5c870350f1ef726866b771a7520b0e2bb33bfa9c96415b823c4b74e04ad4b755e961634528
languageName: node
linkType: hard
"@azure/storage-blob@npm:^12.30.0":
version: 12.31.0
resolution: "@azure/storage-blob@npm:12.31.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-http-compat": "npm:^2.2.0"
"@azure/core-lro": "npm:^2.2.0"
"@azure/core-paging": "npm:^1.6.2"
"@azure/core-rest-pipeline": "npm:^1.19.1"
"@azure/core-tracing": "npm:^1.2.0"
"@azure/core-util": "npm:^1.11.0"
"@azure/core-xml": "npm:^1.4.5"
"@azure/logger": "npm:^1.1.4"
"@azure/storage-common": "npm:^12.3.0"
events: "npm:^3.0.0"
tslib: "npm:^2.8.1"
checksum: 10/19d5f48b62b54e8789bc87b90ec95efea74830c2088b4582de34abced873c5a7441d5c73bee4f12345f46600d1b1bba7ff1baf7566aa8afe385eb16d9a1308e6
languageName: node
linkType: hard
"@azure/storage-common@npm:^12.3.0":
version: 12.3.0
resolution: "@azure/storage-common@npm:12.3.0"
dependencies:
"@azure/abort-controller": "npm:^2.1.2"
"@azure/core-auth": "npm:^1.9.0"
"@azure/core-http-compat": "npm:^2.2.0"
"@azure/core-rest-pipeline": "npm:^1.19.1"
"@azure/core-tracing": "npm:^1.2.0"
"@azure/core-util": "npm:^1.11.0"
"@azure/logger": "npm:^1.1.4"
events: "npm:^3.3.0"
tslib: "npm:^2.8.1"
checksum: 10/e5bb4c9395a9f5d390e0766f2b9c64b7d223c1b12704e4557025396f65c680150d36e9ebb9d85a3801337d8e09b6f2dca571233ddc5e71e8887d917b4ce17bb5
languageName: node
linkType: hard
"@babel/helper-string-parser@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/helper-string-parser@npm:7.27.1"
checksum: 10/0ae29cc2005084abdae2966afdb86ed14d41c9c37db02c3693d5022fba9f5d59b011d039380b8e537c34daf117c549f52b452398f576e908fb9db3c7abbb3a00
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.28.5":
version: 7.28.5
resolution: "@babel/helper-validator-identifier@npm:7.28.5"
checksum: 10/8e5d9b0133702cfacc7f368bf792f0f8ac0483794877c6dca5fcb73810ee138e27527701826fb58a40a004f3a5ec0a2f3c3dd5e326d262530b119918f3132ba7
languageName: node
linkType: hard
"@babel/parser@npm:^7.29.0":
version: 7.29.0
resolution: "@babel/parser@npm:7.29.0"
dependencies:
"@babel/types": "npm:^7.29.0"
bin:
parser: ./bin/babel-parser.js
checksum: 10/b1576dca41074997a33ee740d87b330ae2e647f4b7da9e8d2abd3772b18385d303b0cee962b9b88425e0f30d58358dbb8d63792c1a2d005c823d335f6a029747
languageName: node
linkType: hard
"@babel/types@npm:^7.29.0":
version: 7.29.0
resolution: "@babel/types@npm:7.29.0"
dependencies:
"@babel/helper-string-parser": "npm:^7.27.1"
"@babel/helper-validator-identifier": "npm:^7.28.5"
checksum: 10/bfc2b211210f3894dcd7e6a33b2d1c32c93495dc1e36b547376aa33441abe551ab4bc1640d4154ee2acd8e46d3bbc925c7224caae02fcaf0e6a771e97fccc661
languageName: node
linkType: hard
"@bcoe/v8-coverage@npm:^1.0.2":
version: 1.0.2
resolution: "@bcoe/v8-coverage@npm:1.0.2"
checksum: 10/46600b2dde460269b07a8e4f12b72e418eae1337b85c979f43af3336c9a1c65b04e42508ab6b245f1e0e3c64328e1c38d8cd733e4a7cebc4fbf9cf65c6e59937
languageName: node
linkType: hard
"@docker/actions-toolkit@npm:^0.79.0":
version: 0.79.0
resolution: "@docker/actions-toolkit@npm:0.79.0"
dependencies:
"@actions/artifact": "npm:^6.2.0"
"@actions/cache": "npm:^6.0.0"
"@actions/core": "npm:^3.0.0"
"@actions/exec": "npm:^3.0.0"
"@actions/github": "npm:^9.0.0"
"@actions/http-client": "npm:^4.0.0"
"@actions/io": "npm:^3.0.2"
"@actions/tool-cache": "npm:^4.0.0"
"@sigstore/bundle": "npm:^4.0.0"
"@sigstore/sign": "npm:^4.1.0"
"@sigstore/tuf": "npm:^4.0.1"
"@sigstore/verify": "npm:^3.1.0"
async-retry: "npm:^1.3.3"
csv-parse: "npm:^6.1.0"
gunzip-maybe: "npm:^1.4.2"
handlebars: "npm:^4.7.8"
he: "npm:^1.2.0"
js-yaml: "npm:^4.1.1"
jwt-decode: "npm:^4.0.0"
semver: "npm:^7.7.4"
tar-stream: "npm:^3.1.7"
tmp: "npm:^0.2.5"
checksum: 10/d64849ba49b2b59e2e93237a70be03fd7c43b1f7f01bac3f7557616ba5f59be785cb12a273bbb6a71c1e0d959f1bc6c673111b587c57bd2d6da105dcc500921a
languageName: node
linkType: hard
"@esbuild/aix-ppc64@npm:0.27.3":
version: 0.27.3
resolution: "@esbuild/aix-ppc64@npm:0.27.3"
conditions: os=aix & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.27.3":
version: 0.27.3
resolution: "@esbuild/android-arm64@npm:0.27.3"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.27.3":
version: 0.27.3
resolution: "@esbuild/android-arm@npm:0.27.3"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.27.3":
version: 0.27.3
resolution: "@esbuild/android-x64@npm:0.27.3"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.27.3":
version: 0.27.3
resolution: "@esbuild/darwin-arm64@npm:0.27.3"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.27.3":
version: 0.27.3
resolution: "@esbuild/darwin-x64@npm:0.27.3"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/freebsd-arm64@npm:0.27.3":
version: 0.27.3
resolution: "@esbuild/freebsd-arm64@npm:0.27.3"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/freebsd-x64@npm:0.27.3":
version: 0.27.3
resolution: "@esbuild/freebsd-x64@npm:0.27.3"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/linux-arm64@npm:0.27.3":
version: 0.27.3
resolution: "@esbuild/linux-arm64@npm:0.27.3"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@esbuild/linux-arm@npm:0.27.3":
version: 0.27.3
resolution: "@esbuild/linux-arm@npm:0.27.3"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@esbuild/linux-ia32@npm:0.27.3":
version: 0.27.3
resolution: "@esbuild/linux-ia32@npm:0.27.3"
conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.27.3":
version: 0.27.3
resolution: "@esbuild/linux-loong64@npm:0.27.3"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
"@esbuild/linux-mips64el@npm:0.27.3":
version: 0.27.3
resolution: "@esbuild/linux-mips64el@npm:0.27.3"
conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard