-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
8970 lines (8051 loc) · 307 KB
/
yarn.lock
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 8
cacheKey: 10c0
"@aashutoshrathi/word-wrap@npm:^1.2.3":
version: 1.2.6
resolution: "@aashutoshrathi/word-wrap@npm:1.2.6"
checksum: 10c0/53c2b231a61a46792b39a0d43bc4f4f776bb4542aa57ee04930676802e5501282c2fc8aac14e4cd1f1120ff8b52616b6ff5ab539ad30aa2277d726444b71619f
languageName: node
linkType: hard
"@apidevtools/swagger-methods@npm:^3.0.2":
version: 3.0.2
resolution: "@apidevtools/swagger-methods@npm:3.0.2"
checksum: 10c0/8c390e8e50c0be7787ba0ba4c3758488bde7c66c2d995209b4b48c1f8bc988faf393cbb24a4bd1cd2d42ce5167c26538e8adea5c85eb922761b927e4dab9fa1c
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0":
version: 7.22.13
resolution: "@babel/code-frame@npm:7.22.13"
dependencies:
"@babel/highlight": "npm:^7.22.13"
chalk: "npm:^2.4.2"
checksum: 10c0/f4cc8ae1000265677daf4845083b72f88d00d311adb1a93c94eb4b07bf0ed6828a81ae4ac43ee7d476775000b93a28a9cddec18fbdc5796212d8dcccd5de72bd
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.16.0":
version: 7.24.7
resolution: "@babel/code-frame@npm:7.24.7"
dependencies:
"@babel/highlight": "npm:^7.24.7"
picocolors: "npm:^1.0.0"
checksum: 10c0/ab0af539473a9f5aeaac7047e377cb4f4edd255a81d84a76058595f8540784cc3fbe8acf73f1e073981104562490aabfb23008cd66dc677a456a4ed5390fdde6
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.22.20":
version: 7.22.20
resolution: "@babel/helper-validator-identifier@npm:7.22.20"
checksum: 10c0/dcad63db345fb110e032de46c3688384b0008a42a4845180ce7cd62b1a9c0507a1bed727c4d1060ed1a03ae57b4d918570259f81724aaac1a5b776056f37504e
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.24.7":
version: 7.24.7
resolution: "@babel/helper-validator-identifier@npm:7.24.7"
checksum: 10c0/87ad608694c9477814093ed5b5c080c2e06d44cb1924ae8320474a74415241223cc2a725eea2640dd783ff1e3390e5f95eede978bc540e870053152e58f1d651
languageName: node
linkType: hard
"@babel/highlight@npm:^7.22.13":
version: 7.22.20
resolution: "@babel/highlight@npm:7.22.20"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.22.20"
chalk: "npm:^2.4.2"
js-tokens: "npm:^4.0.0"
checksum: 10c0/f3c3a193afad23434297d88e81d1d6c0c2cf02423de2139ada7ce0a7fc62d8559abf4cc996533c1a9beca7fc990010eb8d544097f75e818ac113bf39ed810aa2
languageName: node
linkType: hard
"@babel/highlight@npm:^7.24.7":
version: 7.24.7
resolution: "@babel/highlight@npm:7.24.7"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.24.7"
chalk: "npm:^2.4.2"
js-tokens: "npm:^4.0.0"
picocolors: "npm:^1.0.0"
checksum: 10c0/674334c571d2bb9d1c89bdd87566383f59231e16bcdcf5bb7835babdf03c9ae585ca0887a7b25bdf78f303984af028df52831c7989fecebb5101cc132da9393a
languageName: node
linkType: hard
"@babel/runtime@npm:^7.21.0":
version: 7.24.7
resolution: "@babel/runtime@npm:7.24.7"
dependencies:
regenerator-runtime: "npm:^0.14.0"
checksum: 10c0/b6fa3ec61a53402f3c1d75f4d808f48b35e0dfae0ec8e2bb5c6fc79fb95935da75766e0ca534d0f1c84871f6ae0d2ebdd950727cfadb745a2cdbef13faef5513
languageName: node
linkType: hard
"@commitlint/cli@npm:^17.7.1":
version: 17.8.1
resolution: "@commitlint/cli@npm:17.8.1"
dependencies:
"@commitlint/format": "npm:^17.8.1"
"@commitlint/lint": "npm:^17.8.1"
"@commitlint/load": "npm:^17.8.1"
"@commitlint/read": "npm:^17.8.1"
"@commitlint/types": "npm:^17.8.1"
execa: "npm:^5.0.0"
lodash.isfunction: "npm:^3.0.9"
resolve-from: "npm:5.0.0"
resolve-global: "npm:1.0.0"
yargs: "npm:^17.0.0"
bin:
commitlint: cli.js
checksum: 10c0/d8f4f3d8601703271f6cef15f5a35864de1e4f949fba7a8bf5c8be786ed4d231208b7322068c5126d08d0885ecfec77cf0fcdc12ae59e72b514d68dbccd4451f
languageName: node
linkType: hard
"@commitlint/config-conventional@npm:^17.7.0":
version: 17.8.1
resolution: "@commitlint/config-conventional@npm:17.8.1"
dependencies:
conventional-changelog-conventionalcommits: "npm:^6.1.0"
checksum: 10c0/70abdc9f1361386060b30620decc376bc33ff0c27c6f2f89511df1d53127d238af7c3409db22651282caa614d54b91b1f5e35905d12b1f5db70603c351f6e482
languageName: node
linkType: hard
"@commitlint/config-validator@npm:^17.8.1":
version: 17.8.1
resolution: "@commitlint/config-validator@npm:17.8.1"
dependencies:
"@commitlint/types": "npm:^17.8.1"
ajv: "npm:^8.11.0"
checksum: 10c0/f60a000832c878cb2133aae34599f5b4a38d00bdbead9a07147b00b39a06a1aa59021268198795509a2bea69ddbf8c676c20209146b8d7a628405f5e6b6b9ee1
languageName: node
linkType: hard
"@commitlint/ensure@npm:^17.8.1":
version: 17.8.1
resolution: "@commitlint/ensure@npm:17.8.1"
dependencies:
"@commitlint/types": "npm:^17.8.1"
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: 10c0/35b3b754f290cec71fa5f76e1fde02eabd8b301c24a37f2309a994cd698416c00cc4d5abc591af95846b667db01943ede9817dcb3358d7dcb73e9da1410b5ebe
languageName: node
linkType: hard
"@commitlint/execute-rule@npm:^17.8.1":
version: 17.8.1
resolution: "@commitlint/execute-rule@npm:17.8.1"
checksum: 10c0/fa952f10caf48d934668227dcef257e406ea6c9ed0a710c1ec29984ef128c49c985f7d490ad0481dffc694da2d5bc171862e9a17feebab136b163cd92ee14f19
languageName: node
linkType: hard
"@commitlint/format@npm:^17.8.1":
version: 17.8.1
resolution: "@commitlint/format@npm:17.8.1"
dependencies:
"@commitlint/types": "npm:^17.8.1"
chalk: "npm:^4.1.0"
checksum: 10c0/2a42291cbff467b343a2c2c14fa049a04ba0c2913fd9e6cc7550ac31be9581c8c6d1ce4e7cadccf011228be6e1b513a704f793e5cdd82995c97a7629a68e806c
languageName: node
linkType: hard
"@commitlint/is-ignored@npm:^17.8.1":
version: 17.8.1
resolution: "@commitlint/is-ignored@npm:17.8.1"
dependencies:
"@commitlint/types": "npm:^17.8.1"
semver: "npm:7.5.4"
checksum: 10c0/7a7f90ffb25a16a3a2e08a53e0a8c08d4c5d9646a3e3bd8372fdd8f1f8bc260a97fcf4bf58420140da4d16675c13ecc007b41836d173d4efb71942173b0717e3
languageName: node
linkType: hard
"@commitlint/lint@npm:^17.8.1":
version: 17.8.1
resolution: "@commitlint/lint@npm:17.8.1"
dependencies:
"@commitlint/is-ignored": "npm:^17.8.1"
"@commitlint/parse": "npm:^17.8.1"
"@commitlint/rules": "npm:^17.8.1"
"@commitlint/types": "npm:^17.8.1"
checksum: 10c0/7cd6ab67d76d7cbacaf4adf80ca1785f12882c900222cb8e575df1b766bfbeaa022b5c9f59ee3ae6f99deb6ec884787c01e4e80b28867469c7fb08a968b5b495
languageName: node
linkType: hard
"@commitlint/load@npm:^17.8.1":
version: 17.8.1
resolution: "@commitlint/load@npm:17.8.1"
dependencies:
"@commitlint/config-validator": "npm:^17.8.1"
"@commitlint/execute-rule": "npm:^17.8.1"
"@commitlint/resolve-extends": "npm:^17.8.1"
"@commitlint/types": "npm:^17.8.1"
"@types/node": "npm:20.5.1"
chalk: "npm:^4.1.0"
cosmiconfig: "npm:^8.0.0"
cosmiconfig-typescript-loader: "npm:^4.0.0"
lodash.isplainobject: "npm:^4.0.6"
lodash.merge: "npm:^4.6.2"
lodash.uniq: "npm:^4.5.0"
resolve-from: "npm:^5.0.0"
ts-node: "npm:^10.8.1"
typescript: "npm:^4.6.4 || ^5.2.2"
checksum: 10c0/2a1345660e6deb3acd649c49487f7311d5678b8f09bd2bf9e8c6d0a1895b439c1811ff5524b0072dd251fbf751cffa199443bbb0a22a086520475227ca878bb6
languageName: node
linkType: hard
"@commitlint/message@npm:^17.8.1":
version: 17.8.1
resolution: "@commitlint/message@npm:17.8.1"
checksum: 10c0/e8d7e7874e38e599f17865ffb6a50461de2027b09593aed5cfacc3811f21a77448586c71f8c861357d4f27673a1f5293add09f9101105c73357cdb1e29595de0
languageName: node
linkType: hard
"@commitlint/parse@npm:^17.8.1":
version: 17.8.1
resolution: "@commitlint/parse@npm:17.8.1"
dependencies:
"@commitlint/types": "npm:^17.8.1"
conventional-changelog-angular: "npm:^6.0.0"
conventional-commits-parser: "npm:^4.0.0"
checksum: 10c0/cde1f35dbac72ac30ac9803d4342bc5784116b56e09bf1ff02738ffbaa54a43da3360bf7b10d2a6b98067eea1026ef561acef2bf762b77739e4edef0feaea318
languageName: node
linkType: hard
"@commitlint/read@npm:^17.8.1":
version: 17.8.1
resolution: "@commitlint/read@npm:17.8.1"
dependencies:
"@commitlint/top-level": "npm:^17.8.1"
"@commitlint/types": "npm:^17.8.1"
fs-extra: "npm:^11.0.0"
git-raw-commits: "npm:^2.0.11"
minimist: "npm:^1.2.6"
checksum: 10c0/700dcab7f83f27a8262a8ac09e4431f5a42a5e0b180eaed0b1707ae9252d74f4686ee4fef5d8cd928a06c57bf09e876a2196f0c32dd09e285420da492d00dafa
languageName: node
linkType: hard
"@commitlint/resolve-extends@npm:^17.8.1":
version: 17.8.1
resolution: "@commitlint/resolve-extends@npm:17.8.1"
dependencies:
"@commitlint/config-validator": "npm:^17.8.1"
"@commitlint/types": "npm:^17.8.1"
import-fresh: "npm:^3.0.0"
lodash.mergewith: "npm:^4.6.2"
resolve-from: "npm:^5.0.0"
resolve-global: "npm:^1.0.0"
checksum: 10c0/785fa1ed4675671383dd6ee55dabfba662d0f336a038ae6e84aacc6d8ffd03033df5f43c3d2daf4bc1047060a54efe1c1255517ca8eb6f50ec7f2874c6db182d
languageName: node
linkType: hard
"@commitlint/rules@npm:^17.8.1":
version: 17.8.1
resolution: "@commitlint/rules@npm:17.8.1"
dependencies:
"@commitlint/ensure": "npm:^17.8.1"
"@commitlint/message": "npm:^17.8.1"
"@commitlint/to-lines": "npm:^17.8.1"
"@commitlint/types": "npm:^17.8.1"
execa: "npm:^5.0.0"
checksum: 10c0/f8139c86d998a984cc9d873a8650cb28edf4b0da16351f6a0787d920b47209f8a346ce0c6405257a3cf1ab7e238805d93fd708dea63f82a25506a970a6fa350e
languageName: node
linkType: hard
"@commitlint/to-lines@npm:^17.8.1":
version: 17.8.1
resolution: "@commitlint/to-lines@npm:17.8.1"
checksum: 10c0/14d70d2f4826fd00236a2a36f8ab18ea44892d5fd82f50a99fe996f92a9efdedf50864dddaff7f266da8140eee6f2e255ce3f8b77bac04532c13b37d49761698
languageName: node
linkType: hard
"@commitlint/top-level@npm:^17.8.1":
version: 17.8.1
resolution: "@commitlint/top-level@npm:17.8.1"
dependencies:
find-up: "npm:^5.0.0"
checksum: 10c0/0b68105cad4762fb75a46643850e43c793b359233f11eafa3591cc944756cd906211ef17fb34ce8365723077c2025b1f5d240f1f02fc423b8aa9b69c7d20bdf2
languageName: node
linkType: hard
"@commitlint/types@npm:^17.8.1":
version: 17.8.1
resolution: "@commitlint/types@npm:17.8.1"
dependencies:
chalk: "npm:^4.1.0"
checksum: 10c0/303528008d4c8b2e5b9a4a8177a072ead740cfbc1bad47b5327466a78c4029730bfaf805181dd38e86f38f2981ad20e6d2195fb5fcb0aa91afb8e87c2c848383
languageName: node
linkType: hard
"@cspotcode/source-map-support@npm:^0.8.0":
version: 0.8.1
resolution: "@cspotcode/source-map-support@npm:0.8.1"
dependencies:
"@jridgewell/trace-mapping": "npm:0.3.9"
checksum: 10c0/05c5368c13b662ee4c122c7bfbe5dc0b613416672a829f3e78bc49a357a197e0218d6e74e7c66cfcd04e15a179acab080bd3c69658c9fbefd0e1ccd950a07fc6
languageName: node
linkType: hard
"@esbuild/aix-ppc64@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/aix-ppc64@npm:0.20.2"
conditions: os=aix & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.19.7":
version: 0.19.7
resolution: "@esbuild/android-arm64@npm:0.19.7"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/android-arm64@npm:0.20.2"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.19.7":
version: 0.19.7
resolution: "@esbuild/android-arm@npm:0.19.7"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/android-arm@npm:0.20.2"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.19.7":
version: 0.19.7
resolution: "@esbuild/android-x64@npm:0.19.7"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/android-x64@npm:0.20.2"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.19.7":
version: 0.19.7
resolution: "@esbuild/darwin-arm64@npm:0.19.7"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/darwin-arm64@npm:0.20.2"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.19.7":
version: 0.19.7
resolution: "@esbuild/darwin-x64@npm:0.19.7"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/darwin-x64@npm:0.20.2"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/freebsd-arm64@npm:0.19.7":
version: 0.19.7
resolution: "@esbuild/freebsd-arm64@npm:0.19.7"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/freebsd-arm64@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/freebsd-arm64@npm:0.20.2"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/freebsd-x64@npm:0.19.7":
version: 0.19.7
resolution: "@esbuild/freebsd-x64@npm:0.19.7"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/freebsd-x64@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/freebsd-x64@npm:0.20.2"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/linux-arm64@npm:0.19.7":
version: 0.19.7
resolution: "@esbuild/linux-arm64@npm:0.19.7"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@esbuild/linux-arm64@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/linux-arm64@npm:0.20.2"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@esbuild/linux-arm@npm:0.19.7":
version: 0.19.7
resolution: "@esbuild/linux-arm@npm:0.19.7"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@esbuild/linux-arm@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/linux-arm@npm:0.20.2"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@esbuild/linux-ia32@npm:0.19.7":
version: 0.19.7
resolution: "@esbuild/linux-ia32@npm:0.19.7"
conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
"@esbuild/linux-ia32@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/linux-ia32@npm:0.20.2"
conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.19.7":
version: 0.19.7
resolution: "@esbuild/linux-loong64@npm:0.19.7"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/linux-loong64@npm:0.20.2"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
"@esbuild/linux-mips64el@npm:0.19.7":
version: 0.19.7
resolution: "@esbuild/linux-mips64el@npm:0.19.7"
conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
"@esbuild/linux-mips64el@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/linux-mips64el@npm:0.20.2"
conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
"@esbuild/linux-ppc64@npm:0.19.7":
version: 0.19.7
resolution: "@esbuild/linux-ppc64@npm:0.19.7"
conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/linux-ppc64@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/linux-ppc64@npm:0.20.2"
conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/linux-riscv64@npm:0.19.7":
version: 0.19.7
resolution: "@esbuild/linux-riscv64@npm:0.19.7"
conditions: os=linux & cpu=riscv64
languageName: node
linkType: hard
"@esbuild/linux-riscv64@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/linux-riscv64@npm:0.20.2"
conditions: os=linux & cpu=riscv64
languageName: node
linkType: hard
"@esbuild/linux-s390x@npm:0.19.7":
version: 0.19.7
resolution: "@esbuild/linux-s390x@npm:0.19.7"
conditions: os=linux & cpu=s390x
languageName: node
linkType: hard
"@esbuild/linux-s390x@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/linux-s390x@npm:0.20.2"
conditions: os=linux & cpu=s390x
languageName: node
linkType: hard
"@esbuild/linux-x64@npm:0.19.7":
version: 0.19.7
resolution: "@esbuild/linux-x64@npm:0.19.7"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@esbuild/linux-x64@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/linux-x64@npm:0.20.2"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@esbuild/netbsd-x64@npm:0.19.7":
version: 0.19.7
resolution: "@esbuild/netbsd-x64@npm:0.19.7"
conditions: os=netbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/netbsd-x64@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/netbsd-x64@npm:0.20.2"
conditions: os=netbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/openbsd-x64@npm:0.19.7":
version: 0.19.7
resolution: "@esbuild/openbsd-x64@npm:0.19.7"
conditions: os=openbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/openbsd-x64@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/openbsd-x64@npm:0.20.2"
conditions: os=openbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/sunos-x64@npm:0.19.7":
version: 0.19.7
resolution: "@esbuild/sunos-x64@npm:0.19.7"
conditions: os=sunos & cpu=x64
languageName: node
linkType: hard
"@esbuild/sunos-x64@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/sunos-x64@npm:0.20.2"
conditions: os=sunos & cpu=x64
languageName: node
linkType: hard
"@esbuild/win32-arm64@npm:0.19.7":
version: 0.19.7
resolution: "@esbuild/win32-arm64@npm:0.19.7"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@esbuild/win32-arm64@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/win32-arm64@npm:0.20.2"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@esbuild/win32-ia32@npm:0.19.7":
version: 0.19.7
resolution: "@esbuild/win32-ia32@npm:0.19.7"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@esbuild/win32-ia32@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/win32-ia32@npm:0.20.2"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@esbuild/win32-x64@npm:0.19.7":
version: 0.19.7
resolution: "@esbuild/win32-x64@npm:0.19.7"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@esbuild/win32-x64@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/win32-x64@npm:0.20.2"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@eslint-community/eslint-utils@npm:^4.2.0, @eslint-community/eslint-utils@npm:^4.4.0":
version: 4.4.0
resolution: "@eslint-community/eslint-utils@npm:4.4.0"
dependencies:
eslint-visitor-keys: "npm:^3.3.0"
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
checksum: 10c0/7e559c4ce59cd3a06b1b5a517b593912e680a7f981ae7affab0d01d709e99cd5647019be8fafa38c350305bc32f1f7d42c7073edde2ab536c745e365f37b607e
languageName: node
linkType: hard
"@eslint-community/regexpp@npm:^4.5.1, @eslint-community/regexpp@npm:^4.6.1":
version: 4.9.1
resolution: "@eslint-community/regexpp@npm:4.9.1"
checksum: 10c0/d0e1bd1a37cb2cb6bbac88dfe97b62b412d4b6ea3a4bb1c4e1e503be03125063db5d80999cef9728f57b19b49979aa902ac68182bcf5f80dfce6fa9a9d34eee1
languageName: node
linkType: hard
"@eslint/eslintrc@npm:^2.1.2":
version: 2.1.2
resolution: "@eslint/eslintrc@npm:2.1.2"
dependencies:
ajv: "npm:^6.12.4"
debug: "npm:^4.3.2"
espree: "npm:^9.6.0"
globals: "npm:^13.19.0"
ignore: "npm:^5.2.0"
import-fresh: "npm:^3.2.1"
js-yaml: "npm:^4.1.0"
minimatch: "npm:^3.1.2"
strip-json-comments: "npm:^3.1.1"
checksum: 10c0/00efdc3797e6f05518060522b7788e5f5aff02f13facbd0c83b176c3dee86554023283a5f68542df379c5137685d2d29745c87f62bf2406a1d38d95471f44ce6
languageName: node
linkType: hard
"@eslint/js@npm:8.52.0":
version: 8.52.0
resolution: "@eslint/js@npm:8.52.0"
checksum: 10c0/cdcf8f9b54994fe1a5dc086c714a75dca5fe5899f9b362986abd12b3b5bec9c9755f7608e663ce072edd3fa3910cc752afef8d149fda0288a477652b65865a1c
languageName: node
linkType: hard
"@figma/rest-api-spec@npm:0.17.0":
version: 0.17.0
resolution: "@figma/rest-api-spec@npm:0.17.0"
checksum: 10c0/7e5475b00ba3bbceeb6e213db07ed2ae45f2900732742cac5861672130c33a37361dfb6893da2719460bf74f646541ca6f9af897b8482f81964777514b5034d6
languageName: node
linkType: hard
"@figma/rest-api-spec@patch:@figma/rest-api-spec@npm%3A0.17.0#~/.yarn/patches/@figma-rest-api-spec-npm-0.17.0-1e290570d1.patch":
version: 0.17.0
resolution: "@figma/rest-api-spec@patch:@figma/rest-api-spec@npm%3A0.17.0#~/.yarn/patches/@figma-rest-api-spec-npm-0.17.0-1e290570d1.patch::version=0.17.0&hash=6a980f"
checksum: 10c0/4852cceebb21cef701ac5369855d381f3c2ac79a5fa546ab211bfb79884b4cc2ac549ae2e927d9cb221a7cfdc149eb006bdb6405c601ec3b6ff70aed820cb37d
languageName: node
linkType: hard
"@humanwhocodes/config-array@npm:^0.11.13":
version: 0.11.13
resolution: "@humanwhocodes/config-array@npm:0.11.13"
dependencies:
"@humanwhocodes/object-schema": "npm:^2.0.1"
debug: "npm:^4.1.1"
minimatch: "npm:^3.0.5"
checksum: 10c0/d76ca802d853366094d0e98ff0d0994117fc8eff96649cd357b15e469e428228f597cd2e929d54ab089051684949955f16ee905bb19f7b2f0446fb377157be7a
languageName: node
linkType: hard
"@humanwhocodes/module-importer@npm:^1.0.1":
version: 1.0.1
resolution: "@humanwhocodes/module-importer@npm:1.0.1"
checksum: 10c0/909b69c3b86d482c26b3359db16e46a32e0fb30bd306a3c176b8313b9e7313dba0f37f519de6aa8b0a1921349e505f259d19475e123182416a506d7f87e7f529
languageName: node
linkType: hard
"@humanwhocodes/momoa@npm:^2.0.3":
version: 2.0.4
resolution: "@humanwhocodes/momoa@npm:2.0.4"
checksum: 10c0/ff081fb5239eb23ae40c59bd51e8128d34b043be3b7c2adb2522cdff51b01ec3129e57d5a24a1eb3a082159d5b41fddfbaffc4cf46cae4fe11a51393f60424fd
languageName: node
linkType: hard
"@humanwhocodes/object-schema@npm:^2.0.1":
version: 2.0.1
resolution: "@humanwhocodes/object-schema@npm:2.0.1"
checksum: 10c0/9dba24e59fdb4041829d92b693aacb778add3b6f612aaa9c0774f3b650c11a378cc64f042a59da85c11dae33df456580a3c36837b953541aed6ff94294f97fac
languageName: node
linkType: hard
"@hutson/parse-repository-url@npm:^3.0.0":
version: 3.0.2
resolution: "@hutson/parse-repository-url@npm:3.0.2"
checksum: 10c0/d9197757ecad2df18d29d3e1d1fe0716d458fd88b849c71cbec9e78239f911074c97e8d764dfd8ed890431c1137e52dd7a337207fd65be20ce0784f7860ae4d1
languageName: node
linkType: hard
"@isaacs/cliui@npm:^8.0.2":
version: 8.0.2
resolution: "@isaacs/cliui@npm:8.0.2"
dependencies:
string-width: "npm:^5.1.2"
string-width-cjs: "npm:string-width@^4.2.0"
strip-ansi: "npm:^7.0.1"
strip-ansi-cjs: "npm:strip-ansi@^6.0.1"
wrap-ansi: "npm:^8.1.0"
wrap-ansi-cjs: "npm:wrap-ansi@^7.0.0"
checksum: 10c0/b1bf42535d49f11dc137f18d5e4e63a28c5569de438a221c369483731e9dac9fb797af554e8bf02b6192d1e5eba6e6402cf93900c3d0ac86391d00d04876789e
languageName: node
linkType: hard
"@jest/schemas@npm:^29.6.3":
version: 29.6.3
resolution: "@jest/schemas@npm:29.6.3"
dependencies:
"@sinclair/typebox": "npm:^0.27.8"
checksum: 10c0/b329e89cd5f20b9278ae1233df74016ebf7b385e0d14b9f4c1ad18d096c4c19d1e687aa113a9c976b16ec07f021ae53dea811fb8c1248a50ac34fbe009fdf6be
languageName: node
linkType: hard
"@jest/types@npm:^24.9.0":
version: 24.9.0
resolution: "@jest/types@npm:24.9.0"
dependencies:
"@types/istanbul-lib-coverage": "npm:^2.0.0"
"@types/istanbul-reports": "npm:^1.1.1"
"@types/yargs": "npm:^13.0.0"
checksum: 10c0/990b03f5e27de292a7fea6b12cd87256dd281263afe37020cad5dceb0b775945a528bafdbc2e41bf8a29c346f94a7aa5580517c5c65a2b33f245f43d3b9b4694
languageName: node
linkType: hard
"@jridgewell/resolve-uri@npm:^3.0.3":
version: 3.1.1
resolution: "@jridgewell/resolve-uri@npm:3.1.1"
checksum: 10c0/0dbc9e29bc640bbbdc5b9876d2859c69042bfcf1423c1e6421bcca53e826660bff4e41c7d4bcb8dbea696404231a6f902f76ba41835d049e20f2dd6cffb713bf
languageName: node
linkType: hard
"@jridgewell/sourcemap-codec@npm:^1.4.10, @jridgewell/sourcemap-codec@npm:^1.4.15":
version: 1.4.15
resolution: "@jridgewell/sourcemap-codec@npm:1.4.15"
checksum: 10c0/0c6b5ae663087558039052a626d2d7ed5208da36cfd707dcc5cea4a07cfc918248403dcb5989a8f7afaf245ce0573b7cc6fd94c4a30453bd10e44d9363940ba5
languageName: node
linkType: hard
"@jridgewell/trace-mapping@npm:0.3.9":
version: 0.3.9
resolution: "@jridgewell/trace-mapping@npm:0.3.9"
dependencies:
"@jridgewell/resolve-uri": "npm:^3.0.3"
"@jridgewell/sourcemap-codec": "npm:^1.4.10"
checksum: 10c0/fa425b606d7c7ee5bfa6a31a7b050dd5814b4082f318e0e4190f991902181b4330f43f4805db1dd4f2433fd0ed9cc7a7b9c2683f1deeab1df1b0a98b1e24055b
languageName: node
linkType: hard
"@jsdevtools/ono@npm:^7.1.3":
version: 7.1.3
resolution: "@jsdevtools/ono@npm:7.1.3"
checksum: 10c0/a9f7e3e8e3bc315a34959934a5e2f874c423cf4eae64377d3fc9de0400ed9f36cb5fd5ebce3300d2e8f4085f557c4a8b591427a583729a87841fda46e6c216b9
languageName: node
linkType: hard
"@lerna/child-process@npm:7.4.1":
version: 7.4.1
resolution: "@lerna/child-process@npm:7.4.1"
dependencies:
chalk: "npm:^4.1.0"
execa: "npm:^5.0.0"
strong-log-transformer: "npm:^2.1.0"
checksum: 10c0/f5b751aa02f0708f0f951f9bd9d52d0307f8c4915e3df77a5b8414d06596e06cb2a7755a21c541093f4980fa2ff18e8b432ffb29794fa8948d1916504afb3684
languageName: node
linkType: hard
"@lerna/create@npm:7.4.1":
version: 7.4.1
resolution: "@lerna/create@npm:7.4.1"
dependencies:
"@lerna/child-process": "npm:7.4.1"
"@npmcli/run-script": "npm:6.0.2"
"@nx/devkit": "npm:>=16.5.1 < 17"
"@octokit/plugin-enterprise-rest": "npm:6.0.1"
"@octokit/rest": "npm:19.0.11"
byte-size: "npm:8.1.1"
chalk: "npm:4.1.0"
clone-deep: "npm:4.0.1"
cmd-shim: "npm:6.0.1"
columnify: "npm:1.6.0"
conventional-changelog-core: "npm:5.0.1"
conventional-recommended-bump: "npm:7.0.1"
cosmiconfig: "npm:^8.2.0"
dedent: "npm:0.7.0"
execa: "npm:5.0.0"
fs-extra: "npm:^11.1.1"
get-stream: "npm:6.0.0"
git-url-parse: "npm:13.1.0"
glob-parent: "npm:5.1.2"
globby: "npm:11.1.0"
graceful-fs: "npm:4.2.11"
has-unicode: "npm:2.0.1"
ini: "npm:^1.3.8"
init-package-json: "npm:5.0.0"
inquirer: "npm:^8.2.4"
is-ci: "npm:3.0.1"
is-stream: "npm:2.0.0"
js-yaml: "npm:4.1.0"
libnpmpublish: "npm:7.3.0"
load-json-file: "npm:6.2.0"
lodash: "npm:^4.17.21"
make-dir: "npm:4.0.0"
minimatch: "npm:3.0.5"
multimatch: "npm:5.0.0"
node-fetch: "npm:2.6.7"
npm-package-arg: "npm:8.1.1"
npm-packlist: "npm:5.1.1"
npm-registry-fetch: "npm:^14.0.5"
npmlog: "npm:^6.0.2"
nx: "npm:>=16.5.1 < 17"
p-map: "npm:4.0.0"
p-map-series: "npm:2.1.0"
p-queue: "npm:6.6.2"
p-reduce: "npm:^2.1.0"
pacote: "npm:^15.2.0"
pify: "npm:5.0.0"
read-cmd-shim: "npm:4.0.0"
read-package-json: "npm:6.0.4"
resolve-from: "npm:5.0.0"
rimraf: "npm:^4.4.1"
semver: "npm:^7.3.4"
signal-exit: "npm:3.0.7"
slash: "npm:^3.0.0"
ssri: "npm:^9.0.1"
strong-log-transformer: "npm:2.1.0"
tar: "npm:6.1.11"
temp-dir: "npm:1.0.0"
upath: "npm:2.0.1"
uuid: "npm:^9.0.0"
validate-npm-package-license: "npm:^3.0.4"
validate-npm-package-name: "npm:5.0.0"
write-file-atomic: "npm:5.0.1"
write-pkg: "npm:4.0.0"
yargs: "npm:16.2.0"
yargs-parser: "npm:20.2.4"
checksum: 10c0/6569bfaaaaaeeb08417362d9692233f4db7f6af4a70877e73811997fe15023f0e6f351a7365e73fefa8f7075c24eccc6663375289fa9091874a2380bf736429f
languageName: node
linkType: hard
"@ltd-toolbox/figma-node-classes@workspace:packages/figma-node-classes":
version: 0.0.0-use.local
resolution: "@ltd-toolbox/figma-node-classes@workspace:packages/figma-node-classes"
dependencies:
"@figma/rest-api-spec": "patch:@figma/rest-api-spec@npm%3A0.17.0#~/.yarn/patches/@figma-rest-api-spec-npm-0.17.0-1e290570d1.patch"
"@readme/openapi-parser": "npm:^2.6.0"
"@types/ejs": "npm:^3"
consola: "npm:^3.2.3"
ejs: "npm:^3.1.10"
openapi-types: "npm:^12.1.3"
pkgroll: "npm:^2.1.1"
prettier: "npm:^3.3.1"
tsx: "npm:^4.13.2"
languageName: unknown
linkType: soft
"@ltd-toolbox/figma-parser@workspace:packages/figma-parser":
version: 0.0.0-use.local
resolution: "@ltd-toolbox/figma-parser@workspace:packages/figma-parser"
dependencies:
"@figma/rest-api-spec": "patch:@figma/rest-api-spec@npm%3A0.17.0#~/.yarn/patches/@figma-rest-api-spec-npm-0.17.0-1e290570d1.patch"
"@types/node": "npm:^20.8.0"
"@types/picomatch": "npm:^2.3.2"
"@types/unist": "npm:^3.0.2"
"@typescript-eslint/eslint-plugin": "npm:^6.13.2"
"@typescript-eslint/parser": "npm:^6.13.2"
consola: "npm:^3.2.3"
hastscript: "npm:^9.0.0"
pkgroll: "npm:^2.1.1"
type-fest: "npm:^4.12.0"
typedoc: "npm:^0.25.12"
typedoc-plugin-markdown: "npm:^3.17.1"
typescript: "npm:^5.0.2"
vitest: "npm:^0.34.6"
wsrun: "npm:^5.2.4"
languageName: unknown
linkType: soft
"@ltd-toolbox/test@workspace:packages/test":
version: 0.0.0-use.local
resolution: "@ltd-toolbox/test@workspace:packages/test"
dependencies:
tsx: "npm:^4.11.0"
languageName: unknown
linkType: soft
"@nodelib/fs.scandir@npm:2.1.5":
version: 2.1.5
resolution: "@nodelib/fs.scandir@npm:2.1.5"
dependencies:
"@nodelib/fs.stat": "npm:2.0.5"
run-parallel: "npm:^1.1.9"
checksum: 10c0/732c3b6d1b1e967440e65f284bd06e5821fedf10a1bea9ed2bb75956ea1f30e08c44d3def9d6a230666574edbaf136f8cfd319c14fd1f87c66e6a44449afb2eb
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: 10c0/88dafe5e3e29a388b07264680dc996c17f4bda48d163a9d4f5c1112979f0ce8ec72aa7116122c350b4e7976bc5566dc3ddb579be1ceaacc727872eb4ed93926d
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": "npm:2.1.5"
fastq: "npm:^1.6.0"
checksum: 10c0/db9de047c3bb9b51f9335a7bb46f4fcfb6829fb628318c12115fbaf7d369bfce71c15b103d1fc3b464812d936220ee9bc1c8f762d032c9f6be9acc99249095b1
languageName: node
linkType: hard
"@npmcli/agent@npm:^2.0.0":
version: 2.2.2
resolution: "@npmcli/agent@npm:2.2.2"
dependencies:
agent-base: "npm:^7.1.0"
http-proxy-agent: "npm:^7.0.0"
https-proxy-agent: "npm:^7.0.1"
lru-cache: "npm:^10.0.1"
socks-proxy-agent: "npm:^8.0.3"
checksum: 10c0/325e0db7b287d4154ecd164c0815c08007abfb07653cc57bceded17bb7fd240998a3cbdbe87d700e30bef494885eccc725ab73b668020811d56623d145b524ae
languageName: node
linkType: hard
"@npmcli/fs@npm:^3.1.0":
version: 3.1.0
resolution: "@npmcli/fs@npm:3.1.0"
dependencies:
semver: "npm:^7.3.5"
checksum: 10c0/162b4a0b8705cd6f5c2470b851d1dc6cd228c86d2170e1769d738c1fbb69a87160901411c3c035331e9e99db72f1f1099a8b734bf1637cc32b9a5be1660e4e1e
languageName: node
linkType: hard
"@npmcli/git@npm:^4.0.0":
version: 4.1.0
resolution: "@npmcli/git@npm:4.1.0"
dependencies:
"@npmcli/promise-spawn": "npm:^6.0.0"
lru-cache: "npm:^7.4.4"
npm-pick-manifest: "npm:^8.0.0"
proc-log: "npm:^3.0.0"
promise-inflight: "npm:^1.0.1"
promise-retry: "npm:^2.0.1"
semver: "npm:^7.3.5"
which: "npm:^3.0.0"
checksum: 10c0/78591ba8f03de3954a5b5b83533455696635a8f8140c74038685fec4ee28674783a5b34a3d43840b2c5f9aa37fd0dce57eaf4ef136b52a8ec2ee183af2e40724
languageName: node
linkType: hard
"@npmcli/installed-package-contents@npm:^2.0.1":
version: 2.0.2
resolution: "@npmcli/installed-package-contents@npm:2.0.2"
dependencies:
npm-bundled: "npm:^3.0.0"
npm-normalize-package-bin: "npm:^3.0.0"
bin:
installed-package-contents: lib/index.js
checksum: 10c0/03efadb365997e3b54d1d1ea30ef3555729a68939ab2b7b7800a4a2750afb53da222f52be36bd7c44950434c3e26cbe7be28dac093efdf7b1bbe9e025ab62a07
languageName: node
linkType: hard
"@npmcli/node-gyp@npm:^3.0.0":
version: 3.0.0
resolution: "@npmcli/node-gyp@npm:3.0.0"
checksum: 10c0/5d0ac17dacf2dd6e45312af2c1ae2749bb0730fcc82da101c37d3a4fd963a5e1c5d39781e5e1e5e5828df4ab1ad4e3fdbab1d69b7cd0abebad9983efb87df985
languageName: node
linkType: hard
"@npmcli/promise-spawn@npm:^6.0.0, @npmcli/promise-spawn@npm:^6.0.1":
version: 6.0.2
resolution: "@npmcli/promise-spawn@npm:6.0.2"
dependencies:
which: "npm:^3.0.0"
checksum: 10c0/d0696b8d9f7e16562cd1e520e4919000164be042b5c9998a45b4e87d41d9619fcecf2a343621c6fa85ed2671cbe87ab07e381a7faea4e5132c371dbb05893f31
languageName: node
linkType: hard
"@npmcli/run-script@npm:6.0.2, @npmcli/run-script@npm:^6.0.0":
version: 6.0.2
resolution: "@npmcli/run-script@npm:6.0.2"
dependencies:
"@npmcli/node-gyp": "npm:^3.0.0"
"@npmcli/promise-spawn": "npm:^6.0.0"
node-gyp: "npm:^9.0.0"
read-package-json-fast: "npm:^3.0.0"
which: "npm:^3.0.0"