-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyarn.lock
6340 lines (5678 loc) · 209 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: 6
cacheKey: 8
"@babel/code-frame@npm:^7.0.0":
version: 7.18.6
resolution: "@babel/code-frame@npm:7.18.6"
dependencies:
"@babel/highlight": ^7.18.6
checksum: 195e2be3172d7684bf95cff69ae3b7a15a9841ea9d27d3c843662d50cdd7d6470fd9c8e64be84d031117e4a4083486effba39f9aef6bbb2c89f7f21bcfba33ba
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.18.6, @babel/helper-validator-identifier@npm:^7.19.1":
version: 7.19.1
resolution: "@babel/helper-validator-identifier@npm:7.19.1"
checksum: 0eca5e86a729162af569b46c6c41a63e18b43dbe09fda1d2a3c8924f7d617116af39cac5e4cd5d431bb760b4dca3c0970e0c444789b1db42bcf1fa41fbad0a3a
languageName: node
linkType: hard
"@babel/highlight@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/highlight@npm:7.18.6"
dependencies:
"@babel/helper-validator-identifier": ^7.18.6
chalk: ^2.0.0
js-tokens: ^4.0.0
checksum: 92d8ee61549de5ff5120e945e774728e5ccd57fd3b2ed6eace020ec744823d4a98e242be1453d21764a30a14769ecd62170fba28539b211799bbaf232bbb2789
languageName: node
linkType: hard
"@cspell/cspell-bundled-dicts@npm:6.24.0":
version: 6.24.0
resolution: "@cspell/cspell-bundled-dicts@npm:6.24.0"
dependencies:
"@cspell/dict-ada": ^4.0.1
"@cspell/dict-aws": ^3.0.0
"@cspell/dict-bash": ^4.1.1
"@cspell/dict-companies": ^3.0.6
"@cspell/dict-cpp": ^4.0.1
"@cspell/dict-cryptocurrencies": ^3.0.1
"@cspell/dict-csharp": ^4.0.2
"@cspell/dict-css": ^4.0.2
"@cspell/dict-dart": ^2.0.1
"@cspell/dict-django": ^4.0.1
"@cspell/dict-docker": ^1.1.5
"@cspell/dict-dotnet": ^4.0.1
"@cspell/dict-elixir": ^4.0.1
"@cspell/dict-en-gb": 1.1.33
"@cspell/dict-en_us": ^4.2.2
"@cspell/dict-filetypes": ^3.0.0
"@cspell/dict-fonts": ^3.0.0
"@cspell/dict-fullstack": ^3.1.1
"@cspell/dict-gaming-terms": ^1.0.4
"@cspell/dict-git": ^2.0.0
"@cspell/dict-golang": ^5.0.1
"@cspell/dict-haskell": ^4.0.1
"@cspell/dict-html": ^4.0.2
"@cspell/dict-html-symbol-entities": ^4.0.0
"@cspell/dict-java": ^5.0.4
"@cspell/dict-k8s": ^1.0.0
"@cspell/dict-latex": ^3.1.0
"@cspell/dict-lorem-ipsum": ^3.0.0
"@cspell/dict-lua": ^4.0.0
"@cspell/dict-node": ^4.0.2
"@cspell/dict-npm": ^5.0.3
"@cspell/dict-php": ^3.0.4
"@cspell/dict-powershell": ^4.0.0
"@cspell/dict-public-licenses": ^2.0.1
"@cspell/dict-python": ^4.0.1
"@cspell/dict-r": ^2.0.1
"@cspell/dict-ruby": ^4.0.1
"@cspell/dict-rust": ^4.0.0
"@cspell/dict-scala": ^4.0.0
"@cspell/dict-software-terms": ^3.1.2
"@cspell/dict-sql": ^2.0.1
"@cspell/dict-svelte": ^1.0.2
"@cspell/dict-swift": ^2.0.1
"@cspell/dict-typescript": ^3.1.0
"@cspell/dict-vue": ^3.0.0
checksum: deb3d1aad5796bda46a5dbf36b59b5bcaee163426158a23ad2496bf600f3014a096bf84f10c22d97039fbc917b7bdfd2fcdd662bd7da32b78bae481d0c0b4052
languageName: node
linkType: hard
"@cspell/cspell-bundled-dicts@npm:6.26.3":
version: 6.26.3
resolution: "@cspell/cspell-bundled-dicts@npm:6.26.3"
dependencies:
"@cspell/dict-ada": ^4.0.1
"@cspell/dict-aws": ^3.0.0
"@cspell/dict-bash": ^4.1.1
"@cspell/dict-companies": ^3.0.6
"@cspell/dict-cpp": ^4.0.2
"@cspell/dict-cryptocurrencies": ^3.0.1
"@cspell/dict-csharp": ^4.0.2
"@cspell/dict-css": ^4.0.3
"@cspell/dict-dart": ^2.0.1
"@cspell/dict-django": ^4.0.1
"@cspell/dict-docker": ^1.1.5
"@cspell/dict-dotnet": ^4.0.1
"@cspell/dict-elixir": ^4.0.1
"@cspell/dict-en-common-misspellings": ^1.0.2
"@cspell/dict-en-gb": 1.1.33
"@cspell/dict-en_us": ^4.2.2
"@cspell/dict-filetypes": ^3.0.0
"@cspell/dict-fonts": ^3.0.0
"@cspell/dict-fullstack": ^3.1.1
"@cspell/dict-gaming-terms": ^1.0.4
"@cspell/dict-git": ^2.0.0
"@cspell/dict-golang": ^5.0.1
"@cspell/dict-haskell": ^4.0.1
"@cspell/dict-html": ^4.0.2
"@cspell/dict-html-symbol-entities": ^4.0.0
"@cspell/dict-java": ^5.0.4
"@cspell/dict-k8s": ^1.0.0
"@cspell/dict-latex": ^3.1.0
"@cspell/dict-lorem-ipsum": ^3.0.0
"@cspell/dict-lua": ^4.0.0
"@cspell/dict-node": ^4.0.2
"@cspell/dict-npm": ^5.0.3
"@cspell/dict-php": ^3.0.4
"@cspell/dict-powershell": ^4.0.0
"@cspell/dict-public-licenses": ^2.0.1
"@cspell/dict-python": ^4.0.1
"@cspell/dict-r": ^2.0.1
"@cspell/dict-ruby": ^4.0.1
"@cspell/dict-rust": ^4.0.0
"@cspell/dict-scala": ^4.0.0
"@cspell/dict-software-terms": ^3.1.3
"@cspell/dict-sql": ^2.0.1
"@cspell/dict-svelte": ^1.0.2
"@cspell/dict-swift": ^2.0.1
"@cspell/dict-typescript": ^3.1.0
"@cspell/dict-vue": ^3.0.0
checksum: dc1727e205c7a8a74190f27bc0877c01fdfa12923d5874a07b5dafcfc15a04593efdd2bf6e65e7ab1102e13923bbe8256c40099ff7645079b0353fae124d3ea2
languageName: node
linkType: hard
"@cspell/cspell-pipe@npm:6.24.0":
version: 6.24.0
resolution: "@cspell/cspell-pipe@npm:6.24.0"
checksum: 29014cf47d591a003f832e359cdb2579e39aca08b9695da9794f0a1c21866366f2904954e0445a6dcabd130616068357313c0bd566e14f9110da35d1bcb0f459
languageName: node
linkType: hard
"@cspell/cspell-pipe@npm:6.26.3":
version: 6.26.3
resolution: "@cspell/cspell-pipe@npm:6.26.3"
checksum: 7d12f6607bbac1520aa70184cd8f5d4281d620833d9af2fb7441ffbf6245bbd8e0fd014cf5573fe86a6c79bc63bdfe91eccbb37b913956ad5e48502760646d14
languageName: node
linkType: hard
"@cspell/cspell-service-bus@npm:6.24.0":
version: 6.24.0
resolution: "@cspell/cspell-service-bus@npm:6.24.0"
checksum: c831e4777a6921958ce6be9acc1a21b0cd35f44b45593be73a1759490ecd5972152fd06467f14abd5449d36a628d73ee5884c8704d093d12132267ee55dcba3e
languageName: node
linkType: hard
"@cspell/cspell-service-bus@npm:6.26.3":
version: 6.26.3
resolution: "@cspell/cspell-service-bus@npm:6.26.3"
checksum: 38ec923864dfeea7379baa99fc63f1e95d8f90b509f0db77396276ff2a72c9d0f0846e6e00157aad79a6f62444ba312a4e41a178f902bf1fdb1ced9bb73ab1fd
languageName: node
linkType: hard
"@cspell/cspell-types@npm:6.24.0":
version: 6.24.0
resolution: "@cspell/cspell-types@npm:6.24.0"
checksum: 3921e9865da7ba30d051370edd3c996bc2f18c5499b7d9d89fe09066e1494d69b4d0b6f10f9f319779d4bc6c84db346f25b77d0b6e52afe1e6599383f4964c6b
languageName: node
linkType: hard
"@cspell/cspell-types@npm:6.26.3":
version: 6.26.3
resolution: "@cspell/cspell-types@npm:6.26.3"
checksum: 8e6f3bf39aad681f16887911cd7c4acc13af28352272a800348a189b312982bf34a824382b976c1f93c392b93125c68bd24017cdfd8003672cda9814398b624f
languageName: node
linkType: hard
"@cspell/dict-ada@npm:^4.0.1":
version: 4.0.1
resolution: "@cspell/dict-ada@npm:4.0.1"
checksum: 3422487c8decf01d9dd14e666dcbe29557d730085f60fcd859d03fc5c177359d12df19171368cd105dad29f315d0decfa56f29eeb7c594a300d47c65805c4349
languageName: node
linkType: hard
"@cspell/dict-aws@npm:^3.0.0":
version: 3.0.0
resolution: "@cspell/dict-aws@npm:3.0.0"
checksum: d06284d5cc438c18175c26e4f5d450f3235d603dbc989fa2d7515bb01d1c7a8b303ce054d532ca4f814fc6cd7c65ef9558d46bf5bacb06d35504b3c259ebe95c
languageName: node
linkType: hard
"@cspell/dict-bash@npm:^4.1.1":
version: 4.1.1
resolution: "@cspell/dict-bash@npm:4.1.1"
checksum: 5b6fbb597c53fa6b9957213aa77688c6e0231f8d59eed02f0eecda456f3606855fc0f4c0c5121a909e9055c164de83e3f151b32a9abd1ccd4a161634ffee6691
languageName: node
linkType: hard
"@cspell/dict-companies@npm:^3.0.6":
version: 3.0.6
resolution: "@cspell/dict-companies@npm:3.0.6"
checksum: b56d20632f2e953c2b1a199701b4af4c1b5c5d6ea56c889b68bbac8f3e8f8645eb0386b3198274f14491fccf9608586ebdbe94c0835723934966682ffdc0c8f7
languageName: node
linkType: hard
"@cspell/dict-cpp@npm:^4.0.1":
version: 4.0.1
resolution: "@cspell/dict-cpp@npm:4.0.1"
checksum: 53db5515d046bc1be80031f82be801edb9c349a5487f894db7fc54d45a86142f01476b35fe8453605a3402ba6dd850353bf628eba8223fbac8d6f9e7d002827e
languageName: node
linkType: hard
"@cspell/dict-cpp@npm:^4.0.2":
version: 4.0.2
resolution: "@cspell/dict-cpp@npm:4.0.2"
checksum: 2645af9785a5c55ab79ce6818131280d35893b5f0374349607a6a344b7b4499007bbed38c63c31fa8eb683e15fbd2f93ffb8128cfbc98a463b889fafe2a69e78
languageName: node
linkType: hard
"@cspell/dict-cryptocurrencies@npm:^3.0.1":
version: 3.0.1
resolution: "@cspell/dict-cryptocurrencies@npm:3.0.1"
checksum: 5d646f569e8dc5998de8a508ff3de39db5f5a5db0a846ee4fc750ea3880080d922d5c28fdce38f93910eaacde2723e2fe4c305d50b3f9d53b817ce33a3bed66a
languageName: node
linkType: hard
"@cspell/dict-csharp@npm:^4.0.2":
version: 4.0.2
resolution: "@cspell/dict-csharp@npm:4.0.2"
checksum: d2ecb2aada51c5f0d6d557fd4f0c6eddb5b299e0955e066c49cd2afe96a1c6fe0afde699fdb885dd3183603a1efbd1d793b6a490b8d039256445b4b154b7375b
languageName: node
linkType: hard
"@cspell/dict-css@npm:^4.0.2":
version: 4.0.2
resolution: "@cspell/dict-css@npm:4.0.2"
checksum: 633dca714f4d7afaac3e3e4a2c4d417c68365521b414897d5a311369589f00f2adeb3a366e9588585134cea8a5ff62b1fceb63bf19813676a7d475817371f58b
languageName: node
linkType: hard
"@cspell/dict-css@npm:^4.0.3":
version: 4.0.3
resolution: "@cspell/dict-css@npm:4.0.3"
checksum: 8354e209a2ffa62b06aae97f55cccd57f5e64d46eb06fe0c90df6e1cafa116d6af8bb19b6a8a3ed7a69b5dbdf667d970d0902acf3d46244903ec9285e4fadfb0
languageName: node
linkType: hard
"@cspell/dict-dart@npm:^2.0.1":
version: 2.0.1
resolution: "@cspell/dict-dart@npm:2.0.1"
checksum: 6536a47450ebcbaad90253802791e69567565ecab89d0eb00d8be8b8b2d94d3971fcd92c6e013e25e0f06e1994591fb5ae6b5674798d74e3f449ffa1ea556f3e
languageName: node
linkType: hard
"@cspell/dict-django@npm:^4.0.1":
version: 4.0.1
resolution: "@cspell/dict-django@npm:4.0.1"
checksum: 1954c4b96c05bb2c6aad3a76dcd9963912ed177c49d2bcfb10992af83143c1d644f4306d79acb175eda7767a75444007c9c4d94ba10245aeb256613ae10f0306
languageName: node
linkType: hard
"@cspell/dict-docker@npm:^1.1.5":
version: 1.1.5
resolution: "@cspell/dict-docker@npm:1.1.5"
checksum: a983e3587cbe6f741dfbf40c509ca06d9489f1fb64f902128f9d738acb747b3a8651a73d256f2a7ef7750a54897eb76776403a47e4b55d84d785c7efa3a90e5e
languageName: node
linkType: hard
"@cspell/dict-dotnet@npm:^4.0.1":
version: 4.0.1
resolution: "@cspell/dict-dotnet@npm:4.0.1"
checksum: 176b25bc36ea4407439852be685a421d0ea0be19d8c4eb48b897a1aa2bdde3f71731b94f33b6ae1260546260343d7ee1f2c1c1087848cd2ceac0c635c009e370
languageName: node
linkType: hard
"@cspell/dict-elixir@npm:^4.0.1":
version: 4.0.1
resolution: "@cspell/dict-elixir@npm:4.0.1"
checksum: 080a71b4c3ffa98dafbad851aed31fe2f58c3cb1ca5f3cf7eee1f203168c2f9440076c2fe5970fd92a968af3f36255a3e633aa5962a32bba16c4b7095a0ef0bf
languageName: node
linkType: hard
"@cspell/dict-en-common-misspellings@npm:^1.0.2":
version: 1.0.2
resolution: "@cspell/dict-en-common-misspellings@npm:1.0.2"
checksum: 6f818f9fe3b76ae3d0c71c109d3543f01607ffbd605d9ecb0b6884e6ffa795adba25fd1206b1c85c089d4ffaab20171f5aa803de49a8eadf2bc5b7f5c326917c
languageName: node
linkType: hard
"@cspell/dict-en-gb@npm:1.1.33":
version: 1.1.33
resolution: "@cspell/dict-en-gb@npm:1.1.33"
checksum: 09a9e7a3ee4cad75c87cc7adf6b5981b3ec52d4e3707e8de2e1a2a55cd5c8539057a7742d9c7035e23eb0aeff80a95b9599696c7192c9b3b9d8f14440fe01938
languageName: node
linkType: hard
"@cspell/dict-en_us@npm:^4.2.2":
version: 4.2.2
resolution: "@cspell/dict-en_us@npm:4.2.2"
checksum: d77148e2f7c69149a1585ec83be833f2f22c803ba263b47715ca9bebd6d41cffeceedb95b4d33d879f601d5e9cc9c34e846cad0520c2e37a84486b808c1acfb6
languageName: node
linkType: hard
"@cspell/dict-filetypes@npm:^3.0.0":
version: 3.0.0
resolution: "@cspell/dict-filetypes@npm:3.0.0"
checksum: 8afd0785583f913c8d6ad1a2b56a527600258b291fc6ed8e83f543ba70a5273095195495601aca7d80fdeb17cab6a10e8a8aa44bea3083962cd42af130260d8a
languageName: node
linkType: hard
"@cspell/dict-fonts@npm:^3.0.0":
version: 3.0.0
resolution: "@cspell/dict-fonts@npm:3.0.0"
checksum: 3cd3574c2f32d761775ddd1bb68360488f400cf310c0499e6fac53641596a51708719e57426c97e183b528ad142ee04c90af93bb38a016ceecb921d76a00e9d9
languageName: node
linkType: hard
"@cspell/dict-fullstack@npm:^3.1.1":
version: 3.1.1
resolution: "@cspell/dict-fullstack@npm:3.1.1"
checksum: 4fbbfd55f202d7c05291e072aed37dc0435ca5559dd8c3a4d30734e73a03f60944a5530167368a478b49df62fa212f3ce3011a11eaee4645abc39acf54ee63e5
languageName: node
linkType: hard
"@cspell/dict-gaming-terms@npm:^1.0.4":
version: 1.0.4
resolution: "@cspell/dict-gaming-terms@npm:1.0.4"
checksum: 3e57f5567747a8598b3e4de4f63a3b8090cccf7688f3e91f0a9e005e916645db1224ea600afd5b497b7e8c6a1f9291dfd4cb932278dfd423657107203a2ace0b
languageName: node
linkType: hard
"@cspell/dict-git@npm:^2.0.0":
version: 2.0.0
resolution: "@cspell/dict-git@npm:2.0.0"
checksum: eb3985f1f8717ad4e41e146f1b011e0476d7625ab1ebee55364575b727323300773a89a8dd5a20466c74c57b7d2678e0c92446453bd484a44203be737bc07964
languageName: node
linkType: hard
"@cspell/dict-golang@npm:^5.0.1":
version: 5.0.1
resolution: "@cspell/dict-golang@npm:5.0.1"
checksum: 5a82060a2cc87a129174c648e2b52db8af4b9de25d5c18d138299dba3c2783003c68883d5dc9623bca2eb7e35d95783d1af3f0fd5b577a965de934deb36e8578
languageName: node
linkType: hard
"@cspell/dict-haskell@npm:^4.0.1":
version: 4.0.1
resolution: "@cspell/dict-haskell@npm:4.0.1"
checksum: cfb51e415b60c5eb266a5782d0a4b19a37f1389b9b018d1bbb2ff4358bd739af1f76f68f26a138d4b4bd0ab67146d6eb9032fc3d3c212695237c134e05339c79
languageName: node
linkType: hard
"@cspell/dict-html-symbol-entities@npm:^4.0.0":
version: 4.0.0
resolution: "@cspell/dict-html-symbol-entities@npm:4.0.0"
checksum: 79f05f9080f39dbde703980eb587ed6624b8fc2f5cedc297327bc1b9b7e6022a7c382e6013149b1afe00609b96003ab5c8d18d378979f76f336ab626317183f4
languageName: node
linkType: hard
"@cspell/dict-html@npm:^4.0.2":
version: 4.0.2
resolution: "@cspell/dict-html@npm:4.0.2"
checksum: f4967d362a661408fcfc284292dd64280e4abda06ded0da95a5083473ea921043718b1694e9f0cec852d90e750d7d495fd639a57ce0d1dbd7097bb92c3b3e1b0
languageName: node
linkType: hard
"@cspell/dict-java@npm:^5.0.4":
version: 5.0.4
resolution: "@cspell/dict-java@npm:5.0.4"
checksum: 1bbb0acc81a6af5a8e0e0e09768b1b52bfac7412e02292b6dd663949cdf33d7245e0a4018148a7d10aae8e5436714191809623a342e7cb1d42a8484dba85d8f7
languageName: node
linkType: hard
"@cspell/dict-k8s@npm:^1.0.0":
version: 1.0.0
resolution: "@cspell/dict-k8s@npm:1.0.0"
checksum: ef6d12cfd81b41c843773f61fc923a0a48b18d871ae0b8e9cd7e1bca28fba543c4bcd6964b34e2ac760336a86abdf7c8bc81a7b94bfdb274e39244a5c016fc3c
languageName: node
linkType: hard
"@cspell/dict-latex@npm:^3.1.0":
version: 3.1.0
resolution: "@cspell/dict-latex@npm:3.1.0"
checksum: 90dafd4c1d0f9a9bd9e36734e624ca3d891023a5477ca9df62037a4297c8f751be5b33cbf4def9356d8bcec65a4e1ae89862d80ebe30675e91d10d69e0852de6
languageName: node
linkType: hard
"@cspell/dict-lorem-ipsum@npm:^3.0.0":
version: 3.0.0
resolution: "@cspell/dict-lorem-ipsum@npm:3.0.0"
checksum: 145a79ec536bee3ec515b189be3f4a5347a28c563060ac5da6f6783a288e63cb0662fc918be008e1a377bdeb48cfa7a2aa1f9e9f8aef6371109f95f4b049731d
languageName: node
linkType: hard
"@cspell/dict-lua@npm:^4.0.0":
version: 4.0.0
resolution: "@cspell/dict-lua@npm:4.0.0"
checksum: a126021ab43157518710416e3741a145f87a0ba67b134f24854c01690a0a5c7932feedd1a1b4721e1137bff7586945782fa6578bdf58cd4f0e1167f8e3e71a20
languageName: node
linkType: hard
"@cspell/dict-node@npm:^4.0.2":
version: 4.0.2
resolution: "@cspell/dict-node@npm:4.0.2"
checksum: 7a63ee44c4c493b429c821eb9e5fdcd1d0f549a2ada64d8ce3f7f0a88e2d26f82daada8801ee6f09a582502a1500d63985aa47204757b39014dff747211539d5
languageName: node
linkType: hard
"@cspell/dict-npm@npm:^5.0.3":
version: 5.0.3
resolution: "@cspell/dict-npm@npm:5.0.3"
checksum: f250a7d67436f23965c04028eb39395595574ef4a2250c0c30ee736b32fb583ad285d0dc383cb2ac1a9a941caaa329eeb4f2e04fe6e253e6196746d77a980880
languageName: node
linkType: hard
"@cspell/dict-php@npm:^3.0.4":
version: 3.0.4
resolution: "@cspell/dict-php@npm:3.0.4"
checksum: ba3dcb8afcf214e331d1ee26c61130efb6192aaf62d24655582edf23d543605d42818fb146a3b13ae203a1b70b362d3f9f5c0e793984dafb3156aff979aa6a35
languageName: node
linkType: hard
"@cspell/dict-powershell@npm:^4.0.0":
version: 4.0.0
resolution: "@cspell/dict-powershell@npm:4.0.0"
checksum: 93ae5813324858e3fb93572f74d83c28c11c7758088b97b9e6362e31da83e10bcdefad0e50be4b2de3d4b5979b1fca44e3df4c3132f8eb45d7ab81b9d8f51aa4
languageName: node
linkType: hard
"@cspell/dict-public-licenses@npm:^2.0.1":
version: 2.0.1
resolution: "@cspell/dict-public-licenses@npm:2.0.1"
checksum: ce563b482df6f931290c0ba752417aedc993a173ae896002a4a30de9cd68418fa6a01664fe61239423388de09f17d8f68430f3ff95979a7e6e2090987aa7d968
languageName: node
linkType: hard
"@cspell/dict-python@npm:^4.0.1":
version: 4.0.1
resolution: "@cspell/dict-python@npm:4.0.1"
checksum: 83ceb2779c64fb8370dfb6070015cea6337905a7066d38e69508a20976236a5e691b9926f11f4a2391ad5676a9245b5bf981a9118db2ad483baab04741467956
languageName: node
linkType: hard
"@cspell/dict-r@npm:^2.0.1":
version: 2.0.1
resolution: "@cspell/dict-r@npm:2.0.1"
checksum: fe85939ad4c8ada34284a673918be711cca60b6d6f1c48ee98602c27905228dfbaea3462a350094633032c1d6b6bba9548df7019e0b21673cf1cf887c57ca228
languageName: node
linkType: hard
"@cspell/dict-ruby@npm:^4.0.1":
version: 4.0.1
resolution: "@cspell/dict-ruby@npm:4.0.1"
checksum: e802d322d67edd63fe7fec5f3aa95cc472711752675aa9d5ad3987ec7f17f3bb2ad537df60bdc54bed035a83b3b062eb072ddad6b15f7999b044309d8dac027e
languageName: node
linkType: hard
"@cspell/dict-rust@npm:^4.0.0":
version: 4.0.0
resolution: "@cspell/dict-rust@npm:4.0.0"
checksum: 99dcc7009e1204fcabdb7caeca37d4eadf0963f6727e19860a1e7a2310598fd39729b89c87684c7067620b1679688fd57bf8f73a3e4b46216bdc755889a20da3
languageName: node
linkType: hard
"@cspell/dict-scala@npm:^4.0.0":
version: 4.0.0
resolution: "@cspell/dict-scala@npm:4.0.0"
checksum: 811805e3a36e94dcd180bf299646df5ca672fd6a29a9ba13c08c8ed0135b59157e9685a72c66131aa8334a80491038198aaf7d1c430b4aa51ab0e9a1a6d01a6d
languageName: node
linkType: hard
"@cspell/dict-software-terms@npm:^3.1.2":
version: 3.1.2
resolution: "@cspell/dict-software-terms@npm:3.1.2"
checksum: 6e1ee01f3f9b8d9ea668f91cee693dd7a1dbf165484fee14a19af0b6e8015337328dba1eeb28123a7d7d8ef6979049d4cdbf0d2497e0dc520b954f3ef17efbc5
languageName: node
linkType: hard
"@cspell/dict-software-terms@npm:^3.1.3":
version: 3.1.3
resolution: "@cspell/dict-software-terms@npm:3.1.3"
checksum: de493832c3d44b6fc74d85230939e18b4eb8be2a0e69de735990d400dd7843d634dc4f516f80377ede1e3eee74b616b05910c913658539172c01a09a47669ce3
languageName: node
linkType: hard
"@cspell/dict-sql@npm:^2.0.1":
version: 2.0.1
resolution: "@cspell/dict-sql@npm:2.0.1"
checksum: c92d2c9f3b22de02be5353dfe17e84ba3e562f463128fdcd46959ac9eacd9affb531a64ca374af159eeb8b1d3314a3a530d86ddaf35d972a76e0042614cb2d38
languageName: node
linkType: hard
"@cspell/dict-svelte@npm:^1.0.2":
version: 1.0.2
resolution: "@cspell/dict-svelte@npm:1.0.2"
checksum: 5b42989bc6743a26ca5172cc23ebc1449d930695b10c908376048ce1835bf57fef7a0004f02ec5e43219f24a97f154e125041df470441199a045ed0be9e654fc
languageName: node
linkType: hard
"@cspell/dict-swift@npm:^2.0.1":
version: 2.0.1
resolution: "@cspell/dict-swift@npm:2.0.1"
checksum: 0bbb106266205c5f5e12886a73ebf0db2078bab1bdd2e1f304fe28445cd72d847a4c5072bf4fe8f9e8cdb4bc69d52fffec0806aea19ea9b64b7a87c67ee01175
languageName: node
linkType: hard
"@cspell/dict-typescript@npm:^3.1.0":
version: 3.1.0
resolution: "@cspell/dict-typescript@npm:3.1.0"
checksum: b34a9f394a9426d0ec7ff6ee378b973b7e5a4483add7a19686cf923dd7047c0195e8ac155529c4a38e0bda4f48e50f7efe8de8df6ad71f875a29d28e64c8c01c
languageName: node
linkType: hard
"@cspell/dict-vue@npm:^3.0.0":
version: 3.0.0
resolution: "@cspell/dict-vue@npm:3.0.0"
checksum: 4db58b1d6f9be1a523a35678877f2cca2bb04548b136ec5ec4e7186500978dbc32cc8747ced80ade3cad3acc3c80eb23afe980679165810f8f8f26802e952e2f
languageName: node
linkType: hard
"@cspell/dynamic-import@npm:6.24.0":
version: 6.24.0
resolution: "@cspell/dynamic-import@npm:6.24.0"
dependencies:
import-meta-resolve: ^2.2.1
checksum: 336e5b9e710d80dfb545990d270413dc4542fc8165b247b8edd015d995cc78e139100884140ec996559f53aaa887b6dcb195c62d346c2799cd154f0505e3a40e
languageName: node
linkType: hard
"@cspell/strong-weak-map@npm:6.24.0":
version: 6.24.0
resolution: "@cspell/strong-weak-map@npm:6.24.0"
checksum: 7317012b7c7f65e3f9cfb3ea9aac03104590fc803d8c4d538db56d02d19a1bc63ac66b98784a6e0d916883f9aa1bc881bcc0f498f0c12c9e7e9d9c86a2f81f53
languageName: node
linkType: hard
"@cspell/strong-weak-map@npm:6.26.3":
version: 6.26.3
resolution: "@cspell/strong-weak-map@npm:6.26.3"
checksum: c62105f264e953e5d41d56ab78f6fc79b67baad1d948e87d5fd3f819d47a54e14e96f22049d02d960f6c58fc36290ea2efad69466233f6f6ce2e6cbd87183a12
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.16.17":
version: 0.16.17
resolution: "@esbuild/android-arm64@npm:0.16.17"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.17.8":
version: 0.17.8
resolution: "@esbuild/android-arm64@npm:0.17.8"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.16.17":
version: 0.16.17
resolution: "@esbuild/android-arm@npm:0.16.17"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.17.8":
version: 0.17.8
resolution: "@esbuild/android-arm@npm:0.17.8"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.16.17":
version: 0.16.17
resolution: "@esbuild/android-x64@npm:0.16.17"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.17.8":
version: 0.17.8
resolution: "@esbuild/android-x64@npm:0.17.8"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.16.17":
version: 0.16.17
resolution: "@esbuild/darwin-arm64@npm:0.16.17"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.17.8":
version: 0.17.8
resolution: "@esbuild/darwin-arm64@npm:0.17.8"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.16.17":
version: 0.16.17
resolution: "@esbuild/darwin-x64@npm:0.16.17"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.17.8":
version: 0.17.8
resolution: "@esbuild/darwin-x64@npm:0.17.8"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/freebsd-arm64@npm:0.16.17":
version: 0.16.17
resolution: "@esbuild/freebsd-arm64@npm:0.16.17"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/freebsd-arm64@npm:0.17.8":
version: 0.17.8
resolution: "@esbuild/freebsd-arm64@npm:0.17.8"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/freebsd-x64@npm:0.16.17":
version: 0.16.17
resolution: "@esbuild/freebsd-x64@npm:0.16.17"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/freebsd-x64@npm:0.17.8":
version: 0.17.8
resolution: "@esbuild/freebsd-x64@npm:0.17.8"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/linux-arm64@npm:0.16.17":
version: 0.16.17
resolution: "@esbuild/linux-arm64@npm:0.16.17"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@esbuild/linux-arm64@npm:0.17.8":
version: 0.17.8
resolution: "@esbuild/linux-arm64@npm:0.17.8"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@esbuild/linux-arm@npm:0.16.17":
version: 0.16.17
resolution: "@esbuild/linux-arm@npm:0.16.17"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@esbuild/linux-arm@npm:0.17.8":
version: 0.17.8
resolution: "@esbuild/linux-arm@npm:0.17.8"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@esbuild/linux-ia32@npm:0.16.17":
version: 0.16.17
resolution: "@esbuild/linux-ia32@npm:0.16.17"
conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
"@esbuild/linux-ia32@npm:0.17.8":
version: 0.17.8
resolution: "@esbuild/linux-ia32@npm:0.17.8"
conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.16.17":
version: 0.16.17
resolution: "@esbuild/linux-loong64@npm:0.16.17"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.17.8":
version: 0.17.8
resolution: "@esbuild/linux-loong64@npm:0.17.8"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
"@esbuild/linux-mips64el@npm:0.16.17":
version: 0.16.17
resolution: "@esbuild/linux-mips64el@npm:0.16.17"
conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
"@esbuild/linux-mips64el@npm:0.17.8":
version: 0.17.8
resolution: "@esbuild/linux-mips64el@npm:0.17.8"
conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
"@esbuild/linux-ppc64@npm:0.16.17":
version: 0.16.17
resolution: "@esbuild/linux-ppc64@npm:0.16.17"
conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/linux-ppc64@npm:0.17.8":
version: 0.17.8
resolution: "@esbuild/linux-ppc64@npm:0.17.8"
conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/linux-riscv64@npm:0.16.17":
version: 0.16.17
resolution: "@esbuild/linux-riscv64@npm:0.16.17"
conditions: os=linux & cpu=riscv64
languageName: node
linkType: hard
"@esbuild/linux-riscv64@npm:0.17.8":
version: 0.17.8
resolution: "@esbuild/linux-riscv64@npm:0.17.8"
conditions: os=linux & cpu=riscv64
languageName: node
linkType: hard
"@esbuild/linux-s390x@npm:0.16.17":
version: 0.16.17
resolution: "@esbuild/linux-s390x@npm:0.16.17"
conditions: os=linux & cpu=s390x
languageName: node
linkType: hard
"@esbuild/linux-s390x@npm:0.17.8":
version: 0.17.8
resolution: "@esbuild/linux-s390x@npm:0.17.8"
conditions: os=linux & cpu=s390x
languageName: node
linkType: hard
"@esbuild/linux-x64@npm:0.16.17":
version: 0.16.17
resolution: "@esbuild/linux-x64@npm:0.16.17"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@esbuild/linux-x64@npm:0.17.8":
version: 0.17.8
resolution: "@esbuild/linux-x64@npm:0.17.8"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@esbuild/netbsd-x64@npm:0.16.17":
version: 0.16.17
resolution: "@esbuild/netbsd-x64@npm:0.16.17"
conditions: os=netbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/netbsd-x64@npm:0.17.8":
version: 0.17.8
resolution: "@esbuild/netbsd-x64@npm:0.17.8"
conditions: os=netbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/openbsd-x64@npm:0.16.17":
version: 0.16.17
resolution: "@esbuild/openbsd-x64@npm:0.16.17"
conditions: os=openbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/openbsd-x64@npm:0.17.8":
version: 0.17.8
resolution: "@esbuild/openbsd-x64@npm:0.17.8"
conditions: os=openbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/sunos-x64@npm:0.16.17":
version: 0.16.17
resolution: "@esbuild/sunos-x64@npm:0.16.17"
conditions: os=sunos & cpu=x64
languageName: node
linkType: hard
"@esbuild/sunos-x64@npm:0.17.8":
version: 0.17.8
resolution: "@esbuild/sunos-x64@npm:0.17.8"
conditions: os=sunos & cpu=x64
languageName: node
linkType: hard
"@esbuild/win32-arm64@npm:0.16.17":
version: 0.16.17
resolution: "@esbuild/win32-arm64@npm:0.16.17"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@esbuild/win32-arm64@npm:0.17.8":
version: 0.17.8
resolution: "@esbuild/win32-arm64@npm:0.17.8"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@esbuild/win32-ia32@npm:0.16.17":
version: 0.16.17
resolution: "@esbuild/win32-ia32@npm:0.16.17"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@esbuild/win32-ia32@npm:0.17.8":
version: 0.17.8
resolution: "@esbuild/win32-ia32@npm:0.17.8"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@esbuild/win32-x64@npm:0.16.17":
version: 0.16.17
resolution: "@esbuild/win32-x64@npm:0.16.17"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@esbuild/win32-x64@npm:0.17.8":
version: 0.17.8
resolution: "@esbuild/win32-x64@npm:0.17.8"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@eslint/eslintrc@npm:^1.4.1":
version: 1.4.1
resolution: "@eslint/eslintrc@npm:1.4.1"
dependencies:
ajv: ^6.12.4
debug: ^4.3.2
espree: ^9.4.0
globals: ^13.19.0
ignore: ^5.2.0
import-fresh: ^3.2.1
js-yaml: ^4.1.0
minimatch: ^3.1.2
strip-json-comments: ^3.1.1
checksum: cd3e5a8683db604739938b1c1c8b77927dc04fce3e28e0c88e7f2cd4900b89466baf83dfbad76b2b9e4d2746abdd00dd3f9da544d3e311633d8693f327d04cd7
languageName: node
linkType: hard
"@gar/promisify@npm:^1.1.3":
version: 1.1.3
resolution: "@gar/promisify@npm:1.1.3"
checksum: 4059f790e2d07bf3c3ff3e0fec0daa8144fe35c1f6e0111c9921bd32106adaa97a4ab096ad7dab1e28ee6a9060083c4d1a4ada42a7f5f3f7a96b8812e2b757c1
languageName: node
linkType: hard
"@humanwhocodes/config-array@npm:^0.11.8":
version: 0.11.8
resolution: "@humanwhocodes/config-array@npm:0.11.8"
dependencies:
"@humanwhocodes/object-schema": ^1.2.1
debug: ^4.1.1
minimatch: ^3.0.5
checksum: 0fd6b3c54f1674ce0a224df09b9c2f9846d20b9e54fabae1281ecfc04f2e6ad69bf19e1d6af6a28f88e8aa3990168b6cb9e1ef755868c3256a630605ec2cb1d3
languageName: node
linkType: hard
"@humanwhocodes/module-importer@npm:^1.0.1":
version: 1.0.1
resolution: "@humanwhocodes/module-importer@npm:1.0.1"
checksum: 0fd22007db8034a2cdf2c764b140d37d9020bbfce8a49d3ec5c05290e77d4b0263b1b972b752df8c89e5eaa94073408f2b7d977aed131faf6cf396ebb5d7fb61
languageName: node
linkType: hard
"@humanwhocodes/object-schema@npm:^1.2.1":
version: 1.2.1
resolution: "@humanwhocodes/object-schema@npm:1.2.1"
checksum: a824a1ec31591231e4bad5787641f59e9633827d0a2eaae131a288d33c9ef0290bd16fda8da6f7c0fcb014147865d12118df10db57f27f41e20da92369fcb3f1
languageName: node
linkType: hard
"@lioness100/configs@npm:^1.0.23":
version: 1.0.23
resolution: "@lioness100/configs@npm:1.0.23"
dependencies:
"@typescript-eslint/eslint-plugin": ^5.43.0
"@typescript-eslint/parser": ^5.43.0
eslint-config-prettier: ^8.5.0
eslint-import-resolver-typescript: ^3.5.2
eslint-plugin-import: ^2.26.0
eslint-plugin-n: ^15.5.1
eslint-plugin-prettier: ^4.2.1
eslint-plugin-sonarjs: ^0.16.0
eslint-plugin-typescript-sort-keys: ^2.1.0
eslint-plugin-unicorn: ^44.0.2
tslib: ^2.4.1
peerDependencies:
eslint: "*"
prettier: "*"
tsup: "*"
typescript: "*"
checksum: 1cb1448ed115ed6dab67bda40e3bdd308018a8931d235230562b83d35f2b0da1e8c0d9c9e7e34f1b8b7f4a03e27110fe701eb43ca72ee3421f3583170092fe9e
languageName: node
linkType: hard
"@nodelib/fs.scandir@npm:2.1.5":
version: 2.1.5
resolution: "@nodelib/fs.scandir@npm:2.1.5"
dependencies:
"@nodelib/fs.stat": 2.0.5
run-parallel: ^1.1.9
checksum: a970d595bd23c66c880e0ef1817791432dbb7acbb8d44b7e7d0e7a22f4521260d4a83f7f9fd61d44fda4610105577f8f58a60718105fb38352baed612fd79e59
languageName: node
linkType: hard
"@nodelib/fs.stat@npm:2.0.5, @nodelib/fs.stat@npm:^2.0.2":
version: 2.0.5
resolution: "@nodelib/fs.stat@npm:2.0.5"
checksum: 012480b5ca9d97bff9261571dbbec7bbc6033f69cc92908bc1ecfad0792361a5a1994bc48674b9ef76419d056a03efadfce5a6cf6dbc0a36559571a7a483f6f0
languageName: node
linkType: hard
"@nodelib/fs.walk@npm:^1.2.3, @nodelib/fs.walk@npm:^1.2.8":
version: 1.2.8
resolution: "@nodelib/fs.walk@npm:1.2.8"
dependencies:
"@nodelib/fs.scandir": 2.1.5
fastq: ^1.6.0
checksum: 190c643f156d8f8f277bf2a6078af1ffde1fd43f498f187c2db24d35b4b4b5785c02c7dc52e356497b9a1b65b13edc996de08de0b961c32844364da02986dc53
languageName: node
linkType: hard
"@npmcli/fs@npm:^2.1.0":
version: 2.1.2
resolution: "@npmcli/fs@npm:2.1.2"
dependencies:
"@gar/promisify": ^1.1.3
semver: ^7.3.5
checksum: 405074965e72d4c9d728931b64d2d38e6ea12066d4fad651ac253d175e413c06fe4350970c783db0d749181da8fe49c42d3880bd1cbc12cd68e3a7964d820225
languageName: node
linkType: hard
"@npmcli/move-file@npm:^2.0.0":
version: 2.0.1
resolution: "@npmcli/move-file@npm:2.0.1"
dependencies:
mkdirp: ^1.0.4
rimraf: ^3.0.2
checksum: 52dc02259d98da517fae4cb3a0a3850227bdae4939dda1980b788a7670636ca2b4a01b58df03dd5f65c1e3cb70c50fa8ce5762b582b3f499ec30ee5ce1fd9380
languageName: node
linkType: hard
"@pkgr/utils@npm:^2.3.1":
version: 2.3.1
resolution: "@pkgr/utils@npm:2.3.1"
dependencies:
cross-spawn: ^7.0.3
is-glob: ^4.0.3
open: ^8.4.0
picocolors: ^1.0.0
tiny-glob: ^0.2.9
tslib: ^2.4.0
checksum: 118a1971120253740121a1db0a6658c21195b7da962acf9c124b507a3df707cfc97b0b84a16edcbd4352853b182e8337da9fc6e8e3d06c60d75ae4fb42321c75
languageName: node
linkType: hard
"@sapphire/result@npm:^2.6.0":
version: 2.6.0
resolution: "@sapphire/result@npm:2.6.0"
checksum: bab9e963c85c7ea0a410c36617b7d32fca8749739b7fbb61bf7a2eff566d002af78606c379b1a71f2857bf9c04d3f5f1af67f02278da75ac660f2f6ddfef26b5
languageName: node
linkType: hard
"@tootallnate/once@npm:2":
version: 2.0.0