-
Notifications
You must be signed in to change notification settings - Fork 2
/
yarn.lock
9322 lines (8377 loc) · 327 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: 10
"@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@npm:^3.675.0":
version: 3.675.0
resolution: "@aws-sdk/client-ecr@npm:3.675.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.675.0"
"@aws-sdk/client-sts": "npm:3.675.0"
"@aws-sdk/core": "npm:3.667.0"
"@aws-sdk/credential-provider-node": "npm:3.675.0"
"@aws-sdk/middleware-host-header": "npm:3.667.0"
"@aws-sdk/middleware-logger": "npm:3.667.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.667.0"
"@aws-sdk/middleware-user-agent": "npm:3.669.0"
"@aws-sdk/region-config-resolver": "npm:3.667.0"
"@aws-sdk/types": "npm:3.667.0"
"@aws-sdk/util-endpoints": "npm:3.667.0"
"@aws-sdk/util-user-agent-browser": "npm:3.675.0"
"@aws-sdk/util-user-agent-node": "npm:3.669.0"
"@smithy/config-resolver": "npm:^3.0.9"
"@smithy/core": "npm:^2.4.8"
"@smithy/fetch-http-handler": "npm:^3.2.9"
"@smithy/hash-node": "npm:^3.0.7"
"@smithy/invalid-dependency": "npm:^3.0.7"
"@smithy/middleware-content-length": "npm:^3.0.9"
"@smithy/middleware-endpoint": "npm:^3.1.4"
"@smithy/middleware-retry": "npm:^3.0.23"
"@smithy/middleware-serde": "npm:^3.0.7"
"@smithy/middleware-stack": "npm:^3.0.7"
"@smithy/node-config-provider": "npm:^3.1.8"
"@smithy/node-http-handler": "npm:^3.2.4"
"@smithy/protocol-http": "npm:^4.1.4"
"@smithy/smithy-client": "npm:^3.4.0"
"@smithy/types": "npm:^3.5.0"
"@smithy/url-parser": "npm:^3.0.7"
"@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.23"
"@smithy/util-defaults-mode-node": "npm:^3.0.23"
"@smithy/util-endpoints": "npm:^2.1.3"
"@smithy/util-middleware": "npm:^3.0.7"
"@smithy/util-retry": "npm:^3.0.7"
"@smithy/util-utf8": "npm:^3.0.0"
"@smithy/util-waiter": "npm:^3.1.6"
tslib: "npm:^2.6.2"
checksum: 10/4d2ebd8ec69445c09b4c921650ccc77d18bcee59ee3121b99f588800f042a089b56a98db3261e5c1c2ddb72991c4655cae84bd22803a3b90316dedc3186c0d82
languageName: node
linkType: hard
"@aws-sdk/client-sso-oidc@npm:3.675.0":
version: 3.675.0
resolution: "@aws-sdk/client-sso-oidc@npm:3.675.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.667.0"
"@aws-sdk/credential-provider-node": "npm:3.675.0"
"@aws-sdk/middleware-host-header": "npm:3.667.0"
"@aws-sdk/middleware-logger": "npm:3.667.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.667.0"
"@aws-sdk/middleware-user-agent": "npm:3.669.0"
"@aws-sdk/region-config-resolver": "npm:3.667.0"
"@aws-sdk/types": "npm:3.667.0"
"@aws-sdk/util-endpoints": "npm:3.667.0"
"@aws-sdk/util-user-agent-browser": "npm:3.675.0"
"@aws-sdk/util-user-agent-node": "npm:3.669.0"
"@smithy/config-resolver": "npm:^3.0.9"
"@smithy/core": "npm:^2.4.8"
"@smithy/fetch-http-handler": "npm:^3.2.9"
"@smithy/hash-node": "npm:^3.0.7"
"@smithy/invalid-dependency": "npm:^3.0.7"
"@smithy/middleware-content-length": "npm:^3.0.9"
"@smithy/middleware-endpoint": "npm:^3.1.4"
"@smithy/middleware-retry": "npm:^3.0.23"
"@smithy/middleware-serde": "npm:^3.0.7"
"@smithy/middleware-stack": "npm:^3.0.7"
"@smithy/node-config-provider": "npm:^3.1.8"
"@smithy/node-http-handler": "npm:^3.2.4"
"@smithy/protocol-http": "npm:^4.1.4"
"@smithy/smithy-client": "npm:^3.4.0"
"@smithy/types": "npm:^3.5.0"
"@smithy/url-parser": "npm:^3.0.7"
"@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.23"
"@smithy/util-defaults-mode-node": "npm:^3.0.23"
"@smithy/util-endpoints": "npm:^2.1.3"
"@smithy/util-middleware": "npm:^3.0.7"
"@smithy/util-retry": "npm:^3.0.7"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.675.0
checksum: 10/c59cd5fce6471272add58daf9813741b57dbd21faf5fe6b4f0329628c06c5fcfa86870d4298c5b93dc5fd94ee99102055c62fbe2ad2bf20d2aae38af66a19fe1
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.675.0":
version: 3.675.0
resolution: "@aws-sdk/client-sso@npm:3.675.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.667.0"
"@aws-sdk/middleware-host-header": "npm:3.667.0"
"@aws-sdk/middleware-logger": "npm:3.667.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.667.0"
"@aws-sdk/middleware-user-agent": "npm:3.669.0"
"@aws-sdk/region-config-resolver": "npm:3.667.0"
"@aws-sdk/types": "npm:3.667.0"
"@aws-sdk/util-endpoints": "npm:3.667.0"
"@aws-sdk/util-user-agent-browser": "npm:3.675.0"
"@aws-sdk/util-user-agent-node": "npm:3.669.0"
"@smithy/config-resolver": "npm:^3.0.9"
"@smithy/core": "npm:^2.4.8"
"@smithy/fetch-http-handler": "npm:^3.2.9"
"@smithy/hash-node": "npm:^3.0.7"
"@smithy/invalid-dependency": "npm:^3.0.7"
"@smithy/middleware-content-length": "npm:^3.0.9"
"@smithy/middleware-endpoint": "npm:^3.1.4"
"@smithy/middleware-retry": "npm:^3.0.23"
"@smithy/middleware-serde": "npm:^3.0.7"
"@smithy/middleware-stack": "npm:^3.0.7"
"@smithy/node-config-provider": "npm:^3.1.8"
"@smithy/node-http-handler": "npm:^3.2.4"
"@smithy/protocol-http": "npm:^4.1.4"
"@smithy/smithy-client": "npm:^3.4.0"
"@smithy/types": "npm:^3.5.0"
"@smithy/url-parser": "npm:^3.0.7"
"@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.23"
"@smithy/util-defaults-mode-node": "npm:^3.0.23"
"@smithy/util-endpoints": "npm:^2.1.3"
"@smithy/util-middleware": "npm:^3.0.7"
"@smithy/util-retry": "npm:^3.0.7"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10/8923117dc6083ad956ade7a912ae47b98b3bc17d9b1f23304b6ecd89585a2e99647f3de46e6689660aa48d344374633f1d6aa3c172253818378db3551a80cf40
languageName: node
linkType: hard
"@aws-sdk/client-sts@npm:3.675.0":
version: 3.675.0
resolution: "@aws-sdk/client-sts@npm:3.675.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.675.0"
"@aws-sdk/core": "npm:3.667.0"
"@aws-sdk/credential-provider-node": "npm:3.675.0"
"@aws-sdk/middleware-host-header": "npm:3.667.0"
"@aws-sdk/middleware-logger": "npm:3.667.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.667.0"
"@aws-sdk/middleware-user-agent": "npm:3.669.0"
"@aws-sdk/region-config-resolver": "npm:3.667.0"
"@aws-sdk/types": "npm:3.667.0"
"@aws-sdk/util-endpoints": "npm:3.667.0"
"@aws-sdk/util-user-agent-browser": "npm:3.675.0"
"@aws-sdk/util-user-agent-node": "npm:3.669.0"
"@smithy/config-resolver": "npm:^3.0.9"
"@smithy/core": "npm:^2.4.8"
"@smithy/fetch-http-handler": "npm:^3.2.9"
"@smithy/hash-node": "npm:^3.0.7"
"@smithy/invalid-dependency": "npm:^3.0.7"
"@smithy/middleware-content-length": "npm:^3.0.9"
"@smithy/middleware-endpoint": "npm:^3.1.4"
"@smithy/middleware-retry": "npm:^3.0.23"
"@smithy/middleware-serde": "npm:^3.0.7"
"@smithy/middleware-stack": "npm:^3.0.7"
"@smithy/node-config-provider": "npm:^3.1.8"
"@smithy/node-http-handler": "npm:^3.2.4"
"@smithy/protocol-http": "npm:^4.1.4"
"@smithy/smithy-client": "npm:^3.4.0"
"@smithy/types": "npm:^3.5.0"
"@smithy/url-parser": "npm:^3.0.7"
"@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.23"
"@smithy/util-defaults-mode-node": "npm:^3.0.23"
"@smithy/util-endpoints": "npm:^2.1.3"
"@smithy/util-middleware": "npm:^3.0.7"
"@smithy/util-retry": "npm:^3.0.7"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10/f72a729b83da3456b79c78eb3225b8419150365b7058510f902ebeef7db086a6f71d84587800f7449446cd1bfdf75b5e7b2eea930313584eb95fd0d2e34e8f8b
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.667.0":
version: 3.667.0
resolution: "@aws-sdk/core@npm:3.667.0"
dependencies:
"@aws-sdk/types": "npm:3.667.0"
"@smithy/core": "npm:^2.4.8"
"@smithy/node-config-provider": "npm:^3.1.8"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/protocol-http": "npm:^4.1.4"
"@smithy/signature-v4": "npm:^4.2.0"
"@smithy/smithy-client": "npm:^3.4.0"
"@smithy/types": "npm:^3.5.0"
"@smithy/util-middleware": "npm:^3.0.7"
fast-xml-parser: "npm:4.4.1"
tslib: "npm:^2.6.2"
checksum: 10/9eb6ffe976b2b24f0a5fc665e67b05f010de61ebbfbe3746c207fa12146c21bb34326cb52361d48ad8f8702f2624163b93c64a19e4740d3d04524b1aa4458e12
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.667.0":
version: 3.667.0
resolution: "@aws-sdk/credential-provider-env@npm:3.667.0"
dependencies:
"@aws-sdk/core": "npm:3.667.0"
"@aws-sdk/types": "npm:3.667.0"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
checksum: 10/d2e22f427a58d615adfeaea53c2b02508b339e6080927c55da6d62c1c09f92ab32971dcf96eb012da49468b80661d72d2124879b0d4a6694180868b571055b2b
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.667.0":
version: 3.667.0
resolution: "@aws-sdk/credential-provider-http@npm:3.667.0"
dependencies:
"@aws-sdk/core": "npm:3.667.0"
"@aws-sdk/types": "npm:3.667.0"
"@smithy/fetch-http-handler": "npm:^3.2.9"
"@smithy/node-http-handler": "npm:^3.2.4"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/protocol-http": "npm:^4.1.4"
"@smithy/smithy-client": "npm:^3.4.0"
"@smithy/types": "npm:^3.5.0"
"@smithy/util-stream": "npm:^3.1.9"
tslib: "npm:^2.6.2"
checksum: 10/f4d8543807e7aa9951ca8ba8e1cdcf0523eaa13c81b7ff0b0212fd32ef6fc7ca54bd3a06117f949f30b99e768ef0d3562ba9ffdbdc469933481833cab0fc239b
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.675.0":
version: 3.675.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.675.0"
dependencies:
"@aws-sdk/core": "npm:3.667.0"
"@aws-sdk/credential-provider-env": "npm:3.667.0"
"@aws-sdk/credential-provider-http": "npm:3.667.0"
"@aws-sdk/credential-provider-process": "npm:3.667.0"
"@aws-sdk/credential-provider-sso": "npm:3.675.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.667.0"
"@aws-sdk/types": "npm:3.667.0"
"@smithy/credential-provider-imds": "npm:^3.2.4"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/shared-ini-file-loader": "npm:^3.1.8"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.675.0
checksum: 10/554906ba63e1c70b2348316b831ad9f37e44ab9f14f0f4709e5d404e6038c8cca92a5b8578c29b97488e1730e2267045636c75f613c982a3078f67b3711da2c9
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.675.0":
version: 3.675.0
resolution: "@aws-sdk/credential-provider-node@npm:3.675.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.667.0"
"@aws-sdk/credential-provider-http": "npm:3.667.0"
"@aws-sdk/credential-provider-ini": "npm:3.675.0"
"@aws-sdk/credential-provider-process": "npm:3.667.0"
"@aws-sdk/credential-provider-sso": "npm:3.675.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.667.0"
"@aws-sdk/types": "npm:3.667.0"
"@smithy/credential-provider-imds": "npm:^3.2.4"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/shared-ini-file-loader": "npm:^3.1.8"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
checksum: 10/64b03578dfc7dd50a665ea32ccf0e2c4a4365f1d3c4b6458b800ea35029ed13c20a25c782ebcd68de15a9c81247a5dba4609d3d27356459979558ffbeba0711e
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.667.0":
version: 3.667.0
resolution: "@aws-sdk/credential-provider-process@npm:3.667.0"
dependencies:
"@aws-sdk/core": "npm:3.667.0"
"@aws-sdk/types": "npm:3.667.0"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/shared-ini-file-loader": "npm:^3.1.8"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
checksum: 10/321c2b18d923d18a68667a85ba321330f8fe78b3368c7451069841c27b20799559d6a9b8301d39712e00f2dc63ddbc2695b9709d9017229fe62d12216fa286cf
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.675.0":
version: 3.675.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.675.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.675.0"
"@aws-sdk/core": "npm:3.667.0"
"@aws-sdk/token-providers": "npm:3.667.0"
"@aws-sdk/types": "npm:3.667.0"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/shared-ini-file-loader": "npm:^3.1.8"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
checksum: 10/3394bcdb7d0bca8927c7df615016424fdaa5cec7d80bfb278ed642db96a80662a0693ee87a49cea21c5319e4ac5fa90a2900310b12c629d79428844efa2e7fda
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.667.0":
version: 3.667.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.667.0"
dependencies:
"@aws-sdk/core": "npm:3.667.0"
"@aws-sdk/types": "npm:3.667.0"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.667.0
checksum: 10/a8f50f878119a748a84731e772e958feae281e667071d08acb47632b1572f4f275aa7b3e38efde6cb143817e1d3ed43b8061cb60e2608ea670dbcb0d8865415c
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.667.0":
version: 3.667.0
resolution: "@aws-sdk/middleware-host-header@npm:3.667.0"
dependencies:
"@aws-sdk/types": "npm:3.667.0"
"@smithy/protocol-http": "npm:^4.1.4"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
checksum: 10/85f3588f2028b9974fac2d629ab15b183156963d9b75f469424ecf470a2f8cc43f2c123bf21019e0a3ccbe15e1540d86f0f8938204727c0681269e4c4374b7a5
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.667.0":
version: 3.667.0
resolution: "@aws-sdk/middleware-logger@npm:3.667.0"
dependencies:
"@aws-sdk/types": "npm:3.667.0"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
checksum: 10/954b5324483e9f84f28162c45106ea83bf46f5738555ebfe333398668ed3dd871586d717da533aabf02ed0cd6616a4ee375af90b9ca68101332e0fb6c121e7b7
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.667.0":
version: 3.667.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.667.0"
dependencies:
"@aws-sdk/types": "npm:3.667.0"
"@smithy/protocol-http": "npm:^4.1.4"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
checksum: 10/4095a1f04a7dd7a6e639d0e1c01b1542caa99f5b72cf128abdecbe4431a4c13e2969e478ddbdc6d4aa6fd8bd7310d311d27f1d63b89af9b105e1a7d2cdbe8fc1
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:3.669.0":
version: 3.669.0
resolution: "@aws-sdk/middleware-user-agent@npm:3.669.0"
dependencies:
"@aws-sdk/core": "npm:3.667.0"
"@aws-sdk/types": "npm:3.667.0"
"@aws-sdk/util-endpoints": "npm:3.667.0"
"@smithy/core": "npm:^2.4.8"
"@smithy/protocol-http": "npm:^4.1.4"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
checksum: 10/b20db01e559b7dccc8675b36ac4a5df6a0e7e6fbbc3622cfa83f734d909c1e334ba650151ce037b3094add0a5f6086251a9d993fe69fc297b905594383a21a2d
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:3.667.0":
version: 3.667.0
resolution: "@aws-sdk/region-config-resolver@npm:3.667.0"
dependencies:
"@aws-sdk/types": "npm:3.667.0"
"@smithy/node-config-provider": "npm:^3.1.8"
"@smithy/types": "npm:^3.5.0"
"@smithy/util-config-provider": "npm:^3.0.0"
"@smithy/util-middleware": "npm:^3.0.7"
tslib: "npm:^2.6.2"
checksum: 10/1d2f1b5e82f050f44802a33fe2ea452baf51d4c36f6051a1f8e15f425b46c3959b5e2dc9d183140f910e7fdec01b8aec1dc5d3ede12130ab8fbc335998735b38
languageName: node
linkType: hard
"@aws-sdk/token-providers@npm:3.667.0":
version: 3.667.0
resolution: "@aws-sdk/token-providers@npm:3.667.0"
dependencies:
"@aws-sdk/types": "npm:3.667.0"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/shared-ini-file-loader": "npm:^3.1.8"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sso-oidc": ^3.667.0
checksum: 10/aa1f332c477192cdac982ea99f768fe406d29defcca64a036b812082eb15709e34011b9a085754045e69635c0d04e833b8f77c6c22f5ca293c36d1cc5b1b99f0
languageName: node
linkType: hard
"@aws-sdk/types@npm:3.667.0":
version: 3.667.0
resolution: "@aws-sdk/types@npm:3.667.0"
dependencies:
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
checksum: 10/b1c4c58a8d27ba4e809d6ff721ebe5104dd2aac87ca1837319ae2c4d588dcdeb352b3ff65a38353b302569e3568874272df6847792f240b7aa2a692a67e421e3
languageName: node
linkType: hard
"@aws-sdk/types@npm:^3.222.0":
version: 3.310.0
resolution: "@aws-sdk/types@npm:3.310.0"
dependencies:
tslib: "npm:^2.5.0"
checksum: 10/2304a4affb13a5a748a67c57ba7c7f138d9ae048ba767f8d0a22cde46527cf395d0c9dbd43085a100c4ddaa7ee580b79104e34a26d8c2f741e7d37cc20cc42c0
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:3.667.0":
version: 3.667.0
resolution: "@aws-sdk/util-endpoints@npm:3.667.0"
dependencies:
"@aws-sdk/types": "npm:3.667.0"
"@smithy/types": "npm:^3.5.0"
"@smithy/util-endpoints": "npm:^2.1.3"
tslib: "npm:^2.6.2"
checksum: 10/45a92752409cc77a00c217328f6f0b77d497714ff9e8b1eb2225a1706b75dd803f28adf71fe7b81e683923df42f27d49df85160027ca4ff84ccc14a97e6f4605
languageName: node
linkType: hard
"@aws-sdk/util-locate-window@npm:^3.0.0":
version: 3.310.0
resolution: "@aws-sdk/util-locate-window@npm:3.310.0"
dependencies:
tslib: "npm:^2.5.0"
checksum: 10/163f27aad377c3f798b814bea57bfe1388fbc8a8411407e4c0c23328e32d171645645ac3f4c72e14bf2430a4794b5a5966d9b40c675256b23fa6299a2eb976aa
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-browser@npm:3.675.0":
version: 3.675.0
resolution: "@aws-sdk/util-user-agent-browser@npm:3.675.0"
dependencies:
"@aws-sdk/types": "npm:3.667.0"
"@smithy/types": "npm:^3.5.0"
bowser: "npm:^2.11.0"
tslib: "npm:^2.6.2"
checksum: 10/0d667cf4e1561071d29488495bba5225db9eb4c645f7447842c0341f176dc8ba44ed27405fb433020a4c5f4b80f2a9415bbac86513bb5c8d7961a710ddbb1a5f
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-node@npm:3.669.0":
version: 3.669.0
resolution: "@aws-sdk/util-user-agent-node@npm:3.669.0"
dependencies:
"@aws-sdk/middleware-user-agent": "npm:3.669.0"
"@aws-sdk/types": "npm:3.667.0"
"@smithy/node-config-provider": "npm:^3.1.8"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
peerDependencies:
aws-crt: ">=1.0.0"
peerDependenciesMeta:
aws-crt:
optional: true
checksum: 10/decd56771f52cdd6d563cd5d796eb04e88c3db56ee95aa4f6461dd3130f80ff14f84a378748d7e9559fdde7feea59b3aacbc0f34b9a9b2364cb6a639f7e988fe
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0":
version: 7.16.7
resolution: "@babel/code-frame@npm:7.16.7"
dependencies:
"@babel/highlight": "npm:^7.16.7"
checksum: 10/db2f7faa31bc2c9cf63197b481b30ea57147a5fc1a6fab60e5d6c02cdfbf6de8e17b5121f99917b3dabb5eeb572da078312e70697415940383efc140d4e0808b
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.22.13":
version: 7.23.4
resolution: "@babel/code-frame@npm:7.23.4"
dependencies:
"@babel/highlight": "npm:^7.23.4"
chalk: "npm:^2.4.2"
checksum: 10/5a210e42b0c3138f3870e452c7b6d06ddcfc43cba824231ef3023fffd1cb0613d00ea07c7d87d0718e14e830f891b86de56aac5cd034d41128383919c84ff4f6
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/helper-validator-identifier@npm:7.16.7"
checksum: 10/42b9b56c3543ded08992e8c118cb017dbde258895bd6a2e69186cb98f4f5811cd94ceedf4b5ace4877e7be07a7280aa9b9de65d1cb416064a1e0e1fd5a89fcca
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.22.20":
version: 7.22.20
resolution: "@babel/helper-validator-identifier@npm:7.22.20"
checksum: 10/df882d2675101df2d507b95b195ca2f86a3ef28cb711c84f37e79ca23178e13b9f0d8b522774211f51e40168bf5142be4c1c9776a150cddb61a0d5bf3e95750b
languageName: node
linkType: hard
"@babel/highlight@npm:^7.16.7":
version: 7.16.10
resolution: "@babel/highlight@npm:7.16.10"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.16.7"
chalk: "npm:^2.0.0"
js-tokens: "npm:^4.0.0"
checksum: 10/1f1bdd752a90844f4efc22166a46303fb651ba0fd75a06daba3ebae2575ab3edc1da9827c279872a3aaf305f50a18473c5fa1966752726a2b253065fd4c0745e
languageName: node
linkType: hard
"@babel/highlight@npm:^7.23.4":
version: 7.23.4
resolution: "@babel/highlight@npm:7.23.4"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.22.20"
chalk: "npm:^2.4.2"
js-tokens: "npm:^4.0.0"
checksum: 10/62fef9b5bcea7131df4626d009029b1ae85332042f4648a4ce6e740c3fd23112603c740c45575caec62f260c96b11054d3be5987f4981a5479793579c3aac71f
languageName: node
linkType: hard
"@biomejs/biome@npm:^1.9.4":
version: 1.9.4
resolution: "@biomejs/biome@npm:1.9.4"
dependencies:
"@biomejs/cli-darwin-arm64": "npm:1.9.4"
"@biomejs/cli-darwin-x64": "npm:1.9.4"
"@biomejs/cli-linux-arm64": "npm:1.9.4"
"@biomejs/cli-linux-arm64-musl": "npm:1.9.4"
"@biomejs/cli-linux-x64": "npm:1.9.4"
"@biomejs/cli-linux-x64-musl": "npm:1.9.4"
"@biomejs/cli-win32-arm64": "npm:1.9.4"
"@biomejs/cli-win32-x64": "npm:1.9.4"
dependenciesMeta:
"@biomejs/cli-darwin-arm64":
optional: true
"@biomejs/cli-darwin-x64":
optional: true
"@biomejs/cli-linux-arm64":
optional: true
"@biomejs/cli-linux-arm64-musl":
optional: true
"@biomejs/cli-linux-x64":
optional: true
"@biomejs/cli-linux-x64-musl":
optional: true
"@biomejs/cli-win32-arm64":
optional: true
"@biomejs/cli-win32-x64":
optional: true
bin:
biome: bin/biome
checksum: 10/bd8ff8fb4dc0581bd60a9b9ac28d0cd03ba17c6a1de2ab6228b7fda582079594ceee774f47e41aac2fc6d35de1637def2e32ef2e58fa24e22d1b24ef9ee5cefa
languageName: node
linkType: hard
"@biomejs/cli-darwin-arm64@npm:1.9.4":
version: 1.9.4
resolution: "@biomejs/cli-darwin-arm64@npm:1.9.4"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@biomejs/cli-darwin-x64@npm:1.9.4":
version: 1.9.4
resolution: "@biomejs/cli-darwin-x64@npm:1.9.4"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@biomejs/cli-linux-arm64-musl@npm:1.9.4":
version: 1.9.4
resolution: "@biomejs/cli-linux-arm64-musl@npm:1.9.4"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
"@biomejs/cli-linux-arm64@npm:1.9.4":
version: 1.9.4
resolution: "@biomejs/cli-linux-arm64@npm:1.9.4"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@biomejs/cli-linux-x64-musl@npm:1.9.4":
version: 1.9.4
resolution: "@biomejs/cli-linux-x64-musl@npm:1.9.4"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@biomejs/cli-linux-x64@npm:1.9.4":
version: 1.9.4
resolution: "@biomejs/cli-linux-x64@npm:1.9.4"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@biomejs/cli-win32-arm64@npm:1.9.4":
version: 1.9.4
resolution: "@biomejs/cli-win32-arm64@npm:1.9.4"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@biomejs/cli-win32-x64@npm:1.9.4":
version: 1.9.4
resolution: "@biomejs/cli-win32-x64@npm:1.9.4"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@colors/colors@npm:1.5.0":
version: 1.5.0
resolution: "@colors/colors@npm:1.5.0"
checksum: 10/9d226461c1e91e95f067be2bdc5e6f99cfe55a721f45afb44122e23e4b8602eeac4ff7325af6b5a369f36396ee1514d3809af3f57769066d80d83790d8e53339
languageName: node
linkType: hard
"@commitlint/cli@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/cli@npm:19.5.0"
dependencies:
"@commitlint/format": "npm:^19.5.0"
"@commitlint/lint": "npm:^19.5.0"
"@commitlint/load": "npm:^19.5.0"
"@commitlint/read": "npm:^19.5.0"
"@commitlint/types": "npm:^19.5.0"
tinyexec: "npm:^0.3.0"
yargs: "npm:^17.0.0"
bin:
commitlint: cli.js
checksum: 10/1d3384cc9823462da3a35308a145dc4fcf92025f7af976e1ceb9cbe9cbd7b7b83703fe0e9ca12fc7f4903ea2fe68c8c1492c18409ba301894c01cb2264a00795
languageName: node
linkType: hard
"@commitlint/config-conventional@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/config-conventional@npm:19.5.0"
dependencies:
"@commitlint/types": "npm:^19.5.0"
conventional-changelog-conventionalcommits: "npm:^7.0.2"
checksum: 10/5844fb51347677dd28f970a50528fbc44b9b415a8a5fd6fea6c7f6a2a11357956748eda9d1d6ae499430659b0aa78bfa7dcf8abf599951e7f34a581e60bf57da
languageName: node
linkType: hard
"@commitlint/config-validator@npm:^16.2.1":
version: 16.2.1
resolution: "@commitlint/config-validator@npm:16.2.1"
dependencies:
"@commitlint/types": "npm:^16.2.1"
ajv: "npm:^6.12.6"
checksum: 10/1b86832dc03fc7f9442f9358c6c73d42974e9006944b8524bc4b4cd2ce946e50f3eca972737844dc7765a874c465ff5f18dad210f979491f9ee07c831b0eb8d3
languageName: node
linkType: hard
"@commitlint/config-validator@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/config-validator@npm:19.5.0"
dependencies:
"@commitlint/types": "npm:^19.5.0"
ajv: "npm:^8.11.0"
checksum: 10/681bfdcabcb0ff794ea65d95128083869c97039c3a352219d6d88a2d4f3d0412b8ec515db77433fc6b0fce072051beb103d16889d42e76ea97873191ec191b23
languageName: node
linkType: hard
"@commitlint/ensure@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/ensure@npm:19.5.0"
dependencies:
"@commitlint/types": "npm:^19.5.0"
lodash.camelcase: "npm:^4.3.0"
lodash.kebabcase: "npm:^4.1.1"
lodash.snakecase: "npm:^4.1.1"
lodash.startcase: "npm:^4.4.0"
lodash.upperfirst: "npm:^4.3.1"
checksum: 10/a9d575637121221cb63232ee96024a63614052ccc205ec8fdab53feed70104b85608e31b4632f280d2876f10a2243474191d96e448b222abfc8d8ab48f9f8e7e
languageName: node
linkType: hard
"@commitlint/execute-rule@npm:^16.2.1":
version: 16.2.1
resolution: "@commitlint/execute-rule@npm:16.2.1"
checksum: 10/6b7db2c3ab8c91b3318371f5ced2471b802e2c9f28c63b39273b3a58a1e9953fce6396a319420ee018ae3b87b91089012ac9c595907003114b1b5f61803f89d1
languageName: node
linkType: hard
"@commitlint/execute-rule@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/execute-rule@npm:19.5.0"
checksum: 10/ff05568c3a287ef8564171d5bc5d4510b2e00b552e4703f79db3d62f3cba9d669710717695d199e04c2117d41f9e72d7e43a342d5c1b62d456bc8e8bb7dda1e9
languageName: node
linkType: hard
"@commitlint/format@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/format@npm:19.5.0"
dependencies:
"@commitlint/types": "npm:^19.5.0"
chalk: "npm:^5.3.0"
checksum: 10/685b64ebee936d71bbbf66276b11d50b0227f2ad0df3c00317d5b7e25bce8b1b8dbc65cc7c5c7fafc76cad11a83ad4378a666bf8f12a3eb1c7d6a2a6c6cb25aa
languageName: node
linkType: hard
"@commitlint/is-ignored@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/is-ignored@npm:19.5.0"
dependencies:
"@commitlint/types": "npm:^19.5.0"
semver: "npm:^7.6.0"
checksum: 10/1c7ee34686fd098587f9717763473477d49e847f470a317903f922d13091271d013a046f61b43b31b34eba4e4b0f76369b7427588269bbdc4c5f622d3ace2c95
languageName: node
linkType: hard
"@commitlint/lint@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/lint@npm:19.5.0"
dependencies:
"@commitlint/is-ignored": "npm:^19.5.0"
"@commitlint/parse": "npm:^19.5.0"
"@commitlint/rules": "npm:^19.5.0"
"@commitlint/types": "npm:^19.5.0"
checksum: 10/bba8cd17a90876b6b2cd2f869ee4d08cd3e5ad8a10f2c273d379d3b6602da30c46c2d9d0925710d7b9ebf180b3d1f02409adfc0f1a888cc566d88c9ee5862bdd
languageName: node
linkType: hard
"@commitlint/load@npm:>6.1.1":
version: 16.2.3
resolution: "@commitlint/load@npm:16.2.3"
dependencies:
"@commitlint/config-validator": "npm:^16.2.1"
"@commitlint/execute-rule": "npm:^16.2.1"
"@commitlint/resolve-extends": "npm:^16.2.1"
"@commitlint/types": "npm:^16.2.1"
"@types/node": "npm:>=12"
chalk: "npm:^4.0.0"
cosmiconfig: "npm:^7.0.0"
cosmiconfig-typescript-loader: "npm:^1.0.0"
lodash: "npm:^4.17.19"
resolve-from: "npm:^5.0.0"
typescript: "npm:^4.4.3"
checksum: 10/ea69cef04c957adc658c6815f6c6739f6db48b18256c912a1efd6fe5fe39112bb0684da34c412e813fedc68ce93bf62274e66fce2aab1b30c799fcbe18095f3b
languageName: node
linkType: hard
"@commitlint/load@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/load@npm:19.5.0"
dependencies:
"@commitlint/config-validator": "npm:^19.5.0"
"@commitlint/execute-rule": "npm:^19.5.0"
"@commitlint/resolve-extends": "npm:^19.5.0"
"@commitlint/types": "npm:^19.5.0"
chalk: "npm:^5.3.0"
cosmiconfig: "npm:^9.0.0"
cosmiconfig-typescript-loader: "npm:^5.0.0"
lodash.isplainobject: "npm:^4.0.6"
lodash.merge: "npm:^4.6.2"
lodash.uniq: "npm:^4.5.0"
checksum: 10/87a9450c768632c09e9d98993752a5622aee698642eee5a9b31c3c48625455e043406b7ea6e02a8f41d86c524c9ecbdb9b823caf67da3048f0d96531177fda28
languageName: node
linkType: hard
"@commitlint/message@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/message@npm:19.5.0"
checksum: 10/ad6993476ce3e6ed6ed7ae5327ac8d5116ca70168d9de6dff656a7e6f2b9f01a1c3ac7a13418831b5cdc3148ea9bcd78c32bdb7aa863280108e176ff803f7a51
languageName: node
linkType: hard
"@commitlint/parse@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/parse@npm:19.5.0"
dependencies:
"@commitlint/types": "npm:^19.5.0"
conventional-changelog-angular: "npm:^7.0.0"
conventional-commits-parser: "npm:^5.0.0"
checksum: 10/2a6f8bbbd79aa36a7e1128c60cecb322557110aa4aa8757c741c2f79071c540ba56957cef81fb64f4a304535e462d0c48b5c1ef1b2766fea7971d38ec5ad6384
languageName: node
linkType: hard
"@commitlint/read@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/read@npm:19.5.0"
dependencies:
"@commitlint/top-level": "npm:^19.5.0"
"@commitlint/types": "npm:^19.5.0"
git-raw-commits: "npm:^4.0.0"
minimist: "npm:^1.2.8"
tinyexec: "npm:^0.3.0"
checksum: 10/0ea2da48ae1bab9add9e831a1659306567755c20ec74cf04e6e50ef1e520970decd259af652995f55eef422a3f1382f0e64e5fbc23606176f766f71076ad872b
languageName: node
linkType: hard
"@commitlint/resolve-extends@npm:^16.2.1":
version: 16.2.1
resolution: "@commitlint/resolve-extends@npm:16.2.1"
dependencies:
"@commitlint/config-validator": "npm:^16.2.1"
"@commitlint/types": "npm:^16.2.1"
import-fresh: "npm:^3.0.0"
lodash: "npm:^4.17.19"
resolve-from: "npm:^5.0.0"
resolve-global: "npm:^1.0.0"
checksum: 10/f3a14a73d7fb0de3db5a8962680d48ba38c1417ccfb65f30cff20e349631326c162b8542211e3ec3ede57e381f5bd796ef174fcb7039f5e494cdc2a4e3aaaa8a
languageName: node
linkType: hard
"@commitlint/resolve-extends@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/resolve-extends@npm:19.5.0"
dependencies:
"@commitlint/config-validator": "npm:^19.5.0"
"@commitlint/types": "npm:^19.5.0"
global-directory: "npm:^4.0.1"
import-meta-resolve: "npm:^4.0.0"
lodash.mergewith: "npm:^4.6.2"
resolve-from: "npm:^5.0.0"
checksum: 10/71a1c9423570dedb55809f4ad7c35962607cb06921364116e8f2d8c3d37a7ff2a43747ad5a9cd924b58614e6880a42a3fa1510244748bb6997469b52b0fecd78
languageName: node
linkType: hard
"@commitlint/rules@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/rules@npm:19.5.0"
dependencies:
"@commitlint/ensure": "npm:^19.5.0"
"@commitlint/message": "npm:^19.5.0"
"@commitlint/to-lines": "npm:^19.5.0"
"@commitlint/types": "npm:^19.5.0"
checksum: 10/2c879d2cd50a3b4572cea41f044cc3091f0a11ef5ead0bb54bfa564ea637e0d93e08ae322ec4c99bb5b379b82835ace595d1c8dab6e35c1b68b63292160a61b3
languageName: node
linkType: hard
"@commitlint/to-lines@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/to-lines@npm:19.5.0"
checksum: 10/68aaca7bf1331b5f2f604e814d57f483ead81a8296f8cff5667249510a5601825dfbbaccade3d02e0aca580b973c01419276d693cc9aa888cbe11022daa9dce6
languageName: node
linkType: hard
"@commitlint/top-level@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/top-level@npm:19.5.0"
dependencies:
find-up: "npm:^7.0.0"
checksum: 10/f6b5a3746c458e12c7a9e93f7c856ba90fba6e61db614ea1201e6b6e92cb8161dd13e88d8c9b408709ea0c19bc949cffcd1dd356cb6f51fc2ede8df48c1fd410
languageName: node
linkType: hard
"@commitlint/types@npm:^16.2.1":
version: 16.2.1
resolution: "@commitlint/types@npm:16.2.1"
dependencies:
chalk: "npm:^4.0.0"
checksum: 10/6aca865599efeadd2297a8f89a2cf228d5aa5de65f060eeceb98cb21e1b18c1f6b9a803ae61d27cff6ecb64c63d46d6b3adf116eaba83594853acc9097ea53b1
languageName: node
linkType: hard
"@commitlint/types@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/types@npm:19.5.0"
dependencies:
"@types/conventional-commits-parser": "npm:^5.0.0"
chalk: "npm:^5.3.0"
checksum: 10/a26f33ec6987d7d93bdbd7e1b177cfac30ca056ea383faf343c6a09c0441aa057a24be1459c3d4e7e91edd2ecf8d6c4dd670948c9d22646d64767137c6db098a
languageName: node
linkType: hard
"@cspell/cspell-bundled-dicts@npm:8.15.4":
version: 8.15.4
resolution: "@cspell/cspell-bundled-dicts@npm:8.15.4"
dependencies:
"@cspell/dict-ada": "npm:^4.0.5"
"@cspell/dict-aws": "npm:^4.0.7"
"@cspell/dict-bash": "npm:^4.1.8"
"@cspell/dict-companies": "npm:^3.1.7"
"@cspell/dict-cpp": "npm:^5.1.22"
"@cspell/dict-cryptocurrencies": "npm:^5.0.3"
"@cspell/dict-csharp": "npm:^4.0.5"
"@cspell/dict-css": "npm:^4.0.16"
"@cspell/dict-dart": "npm:^2.2.4"
"@cspell/dict-django": "npm:^4.1.3"
"@cspell/dict-docker": "npm:^1.1.11"
"@cspell/dict-dotnet": "npm:^5.0.8"
"@cspell/dict-elixir": "npm:^4.0.6"
"@cspell/dict-en-common-misspellings": "npm:^2.0.7"
"@cspell/dict-en-gb": "npm:1.1.33"
"@cspell/dict-en_us": "npm:^4.3.26"
"@cspell/dict-filetypes": "npm:^3.0.7"
"@cspell/dict-flutter": "npm:^1.0.3"
"@cspell/dict-fonts": "npm:^4.0.3"
"@cspell/dict-fsharp": "npm:^1.0.4"
"@cspell/dict-fullstack": "npm:^3.2.3"
"@cspell/dict-gaming-terms": "npm:^1.0.8"
"@cspell/dict-git": "npm:^3.0.3"
"@cspell/dict-golang": "npm:^6.0.16"
"@cspell/dict-google": "npm:^1.0.4"
"@cspell/dict-haskell": "npm:^4.0.4"
"@cspell/dict-html": "npm:^4.0.9"
"@cspell/dict-html-symbol-entities": "npm:^4.0.3"
"@cspell/dict-java": "npm:^5.0.10"
"@cspell/dict-julia": "npm:^1.0.4"
"@cspell/dict-k8s": "npm:^1.0.9"
"@cspell/dict-latex": "npm:^4.0.3"
"@cspell/dict-lorem-ipsum": "npm:^4.0.3"
"@cspell/dict-lua": "npm:^4.0.6"
"@cspell/dict-makefile": "npm:^1.0.3"
"@cspell/dict-monkeyc": "npm:^1.0.9"
"@cspell/dict-node": "npm:^5.0.4"
"@cspell/dict-npm": "npm:^5.1.8"
"@cspell/dict-php": "npm:^4.0.13"
"@cspell/dict-powershell": "npm:^5.0.13"
"@cspell/dict-public-licenses": "npm:^2.0.11"
"@cspell/dict-python": "npm:^4.2.12"
"@cspell/dict-r": "npm:^2.0.4"
"@cspell/dict-ruby": "npm:^5.0.7"
"@cspell/dict-rust": "npm:^4.0.9"
"@cspell/dict-scala": "npm:^5.0.6"
"@cspell/dict-software-terms": "npm:^4.1.11"
"@cspell/dict-sql": "npm:^2.1.8"
"@cspell/dict-svelte": "npm:^1.0.5"
"@cspell/dict-swift": "npm:^2.0.4"
"@cspell/dict-terraform": "npm:^1.0.5"
"@cspell/dict-typescript": "npm:^3.1.10"
"@cspell/dict-vue": "npm:^3.0.3"
checksum: 10/2f425d5160ecd0d302425694997b9fae4c5990b581b5a673ffe6fc932ade0d7ec258d20d638e003414e6b0bf155c16b40e6dd2124f84e5e7e2e71e47ff0091bf
languageName: node
linkType: hard
"@cspell/cspell-json-reporter@npm:8.15.4":
version: 8.15.4
resolution: "@cspell/cspell-json-reporter@npm:8.15.4"
dependencies: