-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
4587 lines (4115 loc) · 153 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
"@babel/runtime@npm:^7.5.5":
version: 7.26.0
resolution: "@babel/runtime@npm:7.26.0"
dependencies:
regenerator-runtime: "npm:^0.14.0"
checksum: 10/9f4ea1c1d566c497c052d505587554e782e021e6ccd302c2ad7ae8291c8e16e3f19d4a7726fb64469e057779ea2081c28b7dbefec6d813a22f08a35712c0f699
languageName: node
linkType: hard
"@changesets/apply-release-plan@npm:^7.0.5":
version: 7.0.5
resolution: "@changesets/apply-release-plan@npm:7.0.5"
dependencies:
"@changesets/config": "npm:^3.0.3"
"@changesets/get-version-range-type": "npm:^0.4.0"
"@changesets/git": "npm:^3.0.1"
"@changesets/should-skip-package": "npm:^0.1.1"
"@changesets/types": "npm:^6.0.0"
"@manypkg/get-packages": "npm:^1.1.3"
detect-indent: "npm:^6.0.0"
fs-extra: "npm:^7.0.1"
lodash.startcase: "npm:^4.4.0"
outdent: "npm:^0.5.0"
prettier: "npm:^2.7.1"
resolve-from: "npm:^5.0.0"
semver: "npm:^7.5.3"
checksum: 10/4a983e3afb6c3dcd885820eba96189c9e77173ccae94e291cf2eb2264bd9000b4264d1c5295d62f490731beead30dcb6830fcc69e401d3eb80bdd425fb6413c4
languageName: node
linkType: hard
"@changesets/assemble-release-plan@npm:^6.0.4":
version: 6.0.4
resolution: "@changesets/assemble-release-plan@npm:6.0.4"
dependencies:
"@changesets/errors": "npm:^0.2.0"
"@changesets/get-dependents-graph": "npm:^2.1.2"
"@changesets/should-skip-package": "npm:^0.1.1"
"@changesets/types": "npm:^6.0.0"
"@manypkg/get-packages": "npm:^1.1.3"
semver: "npm:^7.5.3"
checksum: 10/280f31625bf39763136814a7cf2c0eefa3099c9048a6cdb8ac346fc3c420b111f62186ac436f83fe005ed8384afb3f7e2e88651511c4d9270fcea79ad66bdde7
languageName: node
linkType: hard
"@changesets/changelog-git@npm:^0.2.0":
version: 0.2.0
resolution: "@changesets/changelog-git@npm:0.2.0"
dependencies:
"@changesets/types": "npm:^6.0.0"
checksum: 10/631fcb73cab584fefad30f0e7cc8f7624b36be0f199e526c0d53538da16df2776bef8f8eb6511247b8040d011a2582bdb4840275d3f90a046bacbbd717da6c83
languageName: node
linkType: hard
"@changesets/cli@npm:^2.27.9":
version: 2.27.9
resolution: "@changesets/cli@npm:2.27.9"
dependencies:
"@changesets/apply-release-plan": "npm:^7.0.5"
"@changesets/assemble-release-plan": "npm:^6.0.4"
"@changesets/changelog-git": "npm:^0.2.0"
"@changesets/config": "npm:^3.0.3"
"@changesets/errors": "npm:^0.2.0"
"@changesets/get-dependents-graph": "npm:^2.1.2"
"@changesets/get-release-plan": "npm:^4.0.4"
"@changesets/git": "npm:^3.0.1"
"@changesets/logger": "npm:^0.1.1"
"@changesets/pre": "npm:^2.0.1"
"@changesets/read": "npm:^0.6.1"
"@changesets/should-skip-package": "npm:^0.1.1"
"@changesets/types": "npm:^6.0.0"
"@changesets/write": "npm:^0.3.2"
"@manypkg/get-packages": "npm:^1.1.3"
ansi-colors: "npm:^4.1.3"
ci-info: "npm:^3.7.0"
enquirer: "npm:^2.3.0"
external-editor: "npm:^3.1.0"
fs-extra: "npm:^7.0.1"
mri: "npm:^1.2.0"
p-limit: "npm:^2.2.0"
package-manager-detector: "npm:^0.2.0"
picocolors: "npm:^1.1.0"
resolve-from: "npm:^5.0.0"
semver: "npm:^7.5.3"
spawndamnit: "npm:^2.0.0"
term-size: "npm:^2.1.0"
bin:
changeset: bin.js
checksum: 10/3bb61ae64d6a7740f96a7bc32676eca8180aa2b17b321f66ed889f8a5f805c7dc351ce7b66a6982065e5c7e4faba131d03deb4ac393c68d7d0b9fd0a86c94de2
languageName: node
linkType: hard
"@changesets/config@npm:^3.0.3":
version: 3.0.3
resolution: "@changesets/config@npm:3.0.3"
dependencies:
"@changesets/errors": "npm:^0.2.0"
"@changesets/get-dependents-graph": "npm:^2.1.2"
"@changesets/logger": "npm:^0.1.1"
"@changesets/types": "npm:^6.0.0"
"@manypkg/get-packages": "npm:^1.1.3"
fs-extra: "npm:^7.0.1"
micromatch: "npm:^4.0.2"
checksum: 10/4c5bc9f4ea3c8f086a2cf1d83d3b949560ccbc988107d53d4515186373d0c25112d531b2f661fd913a85c8b0b4173a2c4ddae528f70fbd5efacc6e5f652896c5
languageName: node
linkType: hard
"@changesets/errors@npm:^0.2.0":
version: 0.2.0
resolution: "@changesets/errors@npm:0.2.0"
dependencies:
extendable-error: "npm:^0.1.5"
checksum: 10/4b79373f92287af4f723e8dbbccaf0299aa8735fc043243d0ad587f04a7614615ea50180be575d4438b9f00aa82d1cf85e902b77a55bdd3e0a8dd97e77b18c60
languageName: node
linkType: hard
"@changesets/get-dependents-graph@npm:^2.1.2":
version: 2.1.2
resolution: "@changesets/get-dependents-graph@npm:2.1.2"
dependencies:
"@changesets/types": "npm:^6.0.0"
"@manypkg/get-packages": "npm:^1.1.3"
picocolors: "npm:^1.1.0"
semver: "npm:^7.5.3"
checksum: 10/36d9877b0b071183b253d894e0dbef56f764fe2ff592064489d4f122c419ab97f0d023c9e078849d0f48b4129f5018c7c81cb380b02d975db5e0768ab29226c1
languageName: node
linkType: hard
"@changesets/get-release-plan@npm:^4.0.4":
version: 4.0.4
resolution: "@changesets/get-release-plan@npm:4.0.4"
dependencies:
"@changesets/assemble-release-plan": "npm:^6.0.4"
"@changesets/config": "npm:^3.0.3"
"@changesets/pre": "npm:^2.0.1"
"@changesets/read": "npm:^0.6.1"
"@changesets/types": "npm:^6.0.0"
"@manypkg/get-packages": "npm:^1.1.3"
checksum: 10/d371f557556d5d8a4cb35f403304581bc8c236cd3fd9d848246382052fe37ec34d741b107f7f1bd6b76f47cf74e66377bf1d3919db61f64647dce34d365818a7
languageName: node
linkType: hard
"@changesets/get-version-range-type@npm:^0.4.0":
version: 0.4.0
resolution: "@changesets/get-version-range-type@npm:0.4.0"
checksum: 10/9868e99b31af652d3fa08fc33d55b9636f2feed1f4efdb318a6dbb4bb061281868de089b93041ce7f2775ab9cf454b92b1199767d0f4f228d8bbc483e61d2fd8
languageName: node
linkType: hard
"@changesets/git@npm:^3.0.1":
version: 3.0.1
resolution: "@changesets/git@npm:3.0.1"
dependencies:
"@changesets/errors": "npm:^0.2.0"
"@manypkg/get-packages": "npm:^1.1.3"
is-subdir: "npm:^1.1.1"
micromatch: "npm:^4.0.2"
spawndamnit: "npm:^2.0.0"
checksum: 10/19831196f5e3138dcbb037fd19d641fe1e428e3e4efac3cb25888e3cf8f3f269fab2b1ed270b173a0104b5d1a76d3599232836c75fbc60f4104f8f30141ed9ed
languageName: node
linkType: hard
"@changesets/logger@npm:^0.1.1":
version: 0.1.1
resolution: "@changesets/logger@npm:0.1.1"
dependencies:
picocolors: "npm:^1.1.0"
checksum: 10/bbfc050ddd0afdaa95bb790e81894b7548a2def059deeaed1685e22c10ede245ec2264df42bb2200cc0c8bd040e427bcd68a7afcca2633dc263a28e923d7c175
languageName: node
linkType: hard
"@changesets/parse@npm:^0.4.0":
version: 0.4.0
resolution: "@changesets/parse@npm:0.4.0"
dependencies:
"@changesets/types": "npm:^6.0.0"
js-yaml: "npm:^3.13.1"
checksum: 10/0a824582306b198cd775048876e62bd39193b921515608504777407d78f1dcc700ec15e1a6bccd8a3514c5acc6c3fb060238fbfeae94e698aa17dad1121c2d43
languageName: node
linkType: hard
"@changesets/pre@npm:^2.0.1":
version: 2.0.1
resolution: "@changesets/pre@npm:2.0.1"
dependencies:
"@changesets/errors": "npm:^0.2.0"
"@changesets/types": "npm:^6.0.0"
"@manypkg/get-packages": "npm:^1.1.3"
fs-extra: "npm:^7.0.1"
checksum: 10/e26ca45a1accc4c79890220acf4c85ff716bc09a8e534c91f08bf7d5272408bd76f54ddf6a01765a1aab2517b7447285ae0a9787a6f2135011ad37bcf3f70e48
languageName: node
linkType: hard
"@changesets/read@npm:^0.6.1":
version: 0.6.1
resolution: "@changesets/read@npm:0.6.1"
dependencies:
"@changesets/git": "npm:^3.0.1"
"@changesets/logger": "npm:^0.1.1"
"@changesets/parse": "npm:^0.4.0"
"@changesets/types": "npm:^6.0.0"
fs-extra: "npm:^7.0.1"
p-filter: "npm:^2.1.0"
picocolors: "npm:^1.1.0"
checksum: 10/022e4162e3491144549d9e1e1c2dda92ba7b3bbe9ea5552359b75e52d93e6ad0750f9e5215681a18850178e46fe493bb024b84026ac10ede5c6cddd54aa4c9d0
languageName: node
linkType: hard
"@changesets/should-skip-package@npm:^0.1.1":
version: 0.1.1
resolution: "@changesets/should-skip-package@npm:0.1.1"
dependencies:
"@changesets/types": "npm:^6.0.0"
"@manypkg/get-packages": "npm:^1.1.3"
checksum: 10/d187ef22495deb63e678d0ff65e8627701e2b52c25bd59dde10ce8646be8d605c0ed0a6af020dd825b137c2fc748fdc6cef52e7774bad4c7a4f404bf182a85cf
languageName: node
linkType: hard
"@changesets/types@npm:^4.0.1":
version: 4.1.0
resolution: "@changesets/types@npm:4.1.0"
checksum: 10/4d7c65a447400ac474b2dc2d79bc1a5341c305fbce4a648ef59d9939bc1bbbbd6852684c417a9a4ef0226468b9cb522b9ac2b5393f21fa5f20f1b12bee94eab5
languageName: node
linkType: hard
"@changesets/types@npm:^6.0.0":
version: 6.0.0
resolution: "@changesets/types@npm:6.0.0"
checksum: 10/214c58ff3e3da019c578b94815ec6748729a38b665d950acddf53f3a23073ac7a57dce45812c4bec0cbcd6902c84a482c804457d4c903602005b2399de8a4021
languageName: node
linkType: hard
"@changesets/write@npm:^0.3.2":
version: 0.3.2
resolution: "@changesets/write@npm:0.3.2"
dependencies:
"@changesets/types": "npm:^6.0.0"
fs-extra: "npm:^7.0.1"
human-id: "npm:^1.0.2"
prettier: "npm:^2.7.1"
checksum: 10/c16b0a731fa43ae0028fd1f956c7b080030c42ff763f8dac74da8b178a4ea65632831c30550b784286277bdc75a3c44dda46aad8db97f43bb1eb4d61922152aa
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: 10/b6e38a1712fab242c86a241c229cf562195aad985d0564bd352ac404be583029e89e93028ffd2c251d2c407ecac5fb0cbdca94a2d5c10f29ac806ede0508b3ff
languageName: node
linkType: hard
"@emnapi/core@npm:^1.1.0":
version: 1.3.1
resolution: "@emnapi/core@npm:1.3.1"
dependencies:
"@emnapi/wasi-threads": "npm:1.0.1"
tslib: "npm:^2.4.0"
checksum: 10/00dbc2ae1b9682c3afadb39e0de4e69c7223b06df59b975c2a2ef58d6cbd91f5a7cfd666a97831c958737c5ec110735c6164bf0ac6f56b60477a933bd9ce793c
languageName: node
linkType: hard
"@emnapi/runtime@npm:^1.1.0":
version: 1.3.1
resolution: "@emnapi/runtime@npm:1.3.1"
dependencies:
tslib: "npm:^2.4.0"
checksum: 10/619915ee44682356f77f60455025e667b0b04ad3c95ced36c03782aea9ebc066fa73e86c4a59d221177eba5e5533d40b3a6dbff4e58ee5d81db4270185c21e22
languageName: node
linkType: hard
"@emnapi/wasi-threads@npm:1.0.1":
version: 1.0.1
resolution: "@emnapi/wasi-threads@npm:1.0.1"
dependencies:
tslib: "npm:^2.4.0"
checksum: 10/949f8bdcb11153d530652516b11d4b11d8c6ed48a692b4a59cbaa4305327aed59a61f0d87c366085c20ad0b0336c3b50eaddbddeeb3e8c55e7e82b583b9d98fb
languageName: node
linkType: hard
"@esbuild/aix-ppc64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/aix-ppc64@npm:0.21.5"
conditions: os=aix & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/android-arm64@npm:0.21.5"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/android-arm@npm:0.21.5"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/android-x64@npm:0.21.5"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/darwin-arm64@npm:0.21.5"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/darwin-x64@npm:0.21.5"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/freebsd-arm64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/freebsd-arm64@npm:0.21.5"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/freebsd-x64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/freebsd-x64@npm:0.21.5"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/linux-arm64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/linux-arm64@npm:0.21.5"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@esbuild/linux-arm@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/linux-arm@npm:0.21.5"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@esbuild/linux-ia32@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/linux-ia32@npm:0.21.5"
conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/linux-loong64@npm:0.21.5"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
"@esbuild/linux-mips64el@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/linux-mips64el@npm:0.21.5"
conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
"@esbuild/linux-ppc64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/linux-ppc64@npm:0.21.5"
conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/linux-riscv64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/linux-riscv64@npm:0.21.5"
conditions: os=linux & cpu=riscv64
languageName: node
linkType: hard
"@esbuild/linux-s390x@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/linux-s390x@npm:0.21.5"
conditions: os=linux & cpu=s390x
languageName: node
linkType: hard
"@esbuild/linux-x64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/linux-x64@npm:0.21.5"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@esbuild/netbsd-x64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/netbsd-x64@npm:0.21.5"
conditions: os=netbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/openbsd-x64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/openbsd-x64@npm:0.21.5"
conditions: os=openbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/sunos-x64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/sunos-x64@npm:0.21.5"
conditions: os=sunos & cpu=x64
languageName: node
linkType: hard
"@esbuild/win32-arm64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/win32-arm64@npm:0.21.5"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@esbuild/win32-ia32@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/win32-ia32@npm:0.21.5"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@esbuild/win32-x64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/win32-x64@npm:0.21.5"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@inquirer/checkbox@npm:^4.0.1":
version: 4.0.1
resolution: "@inquirer/checkbox@npm:4.0.1"
dependencies:
"@inquirer/core": "npm:^10.0.1"
"@inquirer/figures": "npm:^1.0.7"
"@inquirer/type": "npm:^3.0.0"
ansi-escapes: "npm:^4.3.2"
yoctocolors-cjs: "npm:^2.1.2"
peerDependencies:
"@types/node": ">=18"
checksum: 10/a22b3c9330ee58a40d7a49f38949d1c8111fec21dd1dffae8c025f1cb1414d7d6beb06254c0de8442ab09c686a0a7059f9ff15986e94f1b62e7828f91362f6b6
languageName: node
linkType: hard
"@inquirer/confirm@npm:^5.0.1":
version: 5.0.1
resolution: "@inquirer/confirm@npm:5.0.1"
dependencies:
"@inquirer/core": "npm:^10.0.1"
"@inquirer/type": "npm:^3.0.0"
peerDependencies:
"@types/node": ">=18"
checksum: 10/da640d36ce32350e9982bbaa5a19efac4a879bc1192f93e0ec284031e6dd82e9cf26c6e0caf777c051e200581aa4bcf0a6ece4118fd05352c5d5e2f1d7160c72
languageName: node
linkType: hard
"@inquirer/core@npm:^10.0.1":
version: 10.0.1
resolution: "@inquirer/core@npm:10.0.1"
dependencies:
"@inquirer/figures": "npm:^1.0.7"
"@inquirer/type": "npm:^3.0.0"
ansi-escapes: "npm:^4.3.2"
cli-width: "npm:^4.1.0"
mute-stream: "npm:^2.0.0"
signal-exit: "npm:^4.1.0"
strip-ansi: "npm:^6.0.1"
wrap-ansi: "npm:^6.2.0"
yoctocolors-cjs: "npm:^2.1.2"
checksum: 10/368f78110e3b9f1370a45047a24b5cc4ef41fe2b7f2d82080de15d9bfb7ee3ff90494e0c138d1cca1b480c2cfb21914da8e9706b09620ea2e314860f98938393
languageName: node
linkType: hard
"@inquirer/editor@npm:^4.0.1":
version: 4.0.1
resolution: "@inquirer/editor@npm:4.0.1"
dependencies:
"@inquirer/core": "npm:^10.0.1"
"@inquirer/type": "npm:^3.0.0"
external-editor: "npm:^3.1.0"
peerDependencies:
"@types/node": ">=18"
checksum: 10/c25083ffe6f3be1cf7a83e7f2ed7a9bdbdefd187589226acd0ae1e76038a5b5157567e2fb3449bd205e0f2ed7630a381c5a6a3da4e2ea00b07b9a463d848c2f3
languageName: node
linkType: hard
"@inquirer/expand@npm:^4.0.1":
version: 4.0.1
resolution: "@inquirer/expand@npm:4.0.1"
dependencies:
"@inquirer/core": "npm:^10.0.1"
"@inquirer/type": "npm:^3.0.0"
yoctocolors-cjs: "npm:^2.1.2"
peerDependencies:
"@types/node": ">=18"
checksum: 10/cc5ca752ce0d37118aab0937a2eb58c8caff6c94f11272bb11ff88101fc87df37b853e1725faf76d9faea0fec670813d54d82487fb688d0f04b10b1f6e1ee8f4
languageName: node
linkType: hard
"@inquirer/figures@npm:^1.0.7":
version: 1.0.7
resolution: "@inquirer/figures@npm:1.0.7"
checksum: 10/ce896860de9d822a7c2a212667bcfd0f04cf2ce86d9a2411cc9c077bb59cd61732cb5f72ac66e88d52912466eec433f005bf8a25efa658f41e1a32f3977080bd
languageName: node
linkType: hard
"@inquirer/input@npm:^4.0.1":
version: 4.0.1
resolution: "@inquirer/input@npm:4.0.1"
dependencies:
"@inquirer/core": "npm:^10.0.1"
"@inquirer/type": "npm:^3.0.0"
peerDependencies:
"@types/node": ">=18"
checksum: 10/120051d9b18a09d2c820f520896a0f58a1685f85f230f1a8649dc2f836f4fa477c50603af437c3ddc5d8837c77edafe4d3f7a254c105dbbdb919cd0ff6cedce1
languageName: node
linkType: hard
"@inquirer/number@npm:^3.0.1":
version: 3.0.1
resolution: "@inquirer/number@npm:3.0.1"
dependencies:
"@inquirer/core": "npm:^10.0.1"
"@inquirer/type": "npm:^3.0.0"
peerDependencies:
"@types/node": ">=18"
checksum: 10/b8fd76284a362302d3f658183f48585603d02df1aaf869f4179ed11d4cc9d2f3324b66264178d936d52a967187d276cab91dabbfbf6f1cfcac01a4ad013c5ad4
languageName: node
linkType: hard
"@inquirer/password@npm:^4.0.1":
version: 4.0.1
resolution: "@inquirer/password@npm:4.0.1"
dependencies:
"@inquirer/core": "npm:^10.0.1"
"@inquirer/type": "npm:^3.0.0"
ansi-escapes: "npm:^4.3.2"
peerDependencies:
"@types/node": ">=18"
checksum: 10/a8f5e22a93892109e9ccc576024f0ebca105263078a3c3512af8409207d224a12db53d9a2dbcdffd99fe08007c17089919a229fb9de365ac5d898f5b6dbe0856
languageName: node
linkType: hard
"@inquirer/prompts@npm:^7.0.0":
version: 7.0.1
resolution: "@inquirer/prompts@npm:7.0.1"
dependencies:
"@inquirer/checkbox": "npm:^4.0.1"
"@inquirer/confirm": "npm:^5.0.1"
"@inquirer/editor": "npm:^4.0.1"
"@inquirer/expand": "npm:^4.0.1"
"@inquirer/input": "npm:^4.0.1"
"@inquirer/number": "npm:^3.0.1"
"@inquirer/password": "npm:^4.0.1"
"@inquirer/rawlist": "npm:^4.0.1"
"@inquirer/search": "npm:^3.0.1"
"@inquirer/select": "npm:^4.0.1"
peerDependencies:
"@types/node": ">=18"
checksum: 10/56feca4e00396817caf3b718b0688f2118bce13b5e97897294540aaf560274be1862bd3d14c6c628928459da126b4e6cc8146a3b0b9f680e99d7dfb4d08a1b33
languageName: node
linkType: hard
"@inquirer/rawlist@npm:^4.0.1":
version: 4.0.1
resolution: "@inquirer/rawlist@npm:4.0.1"
dependencies:
"@inquirer/core": "npm:^10.0.1"
"@inquirer/type": "npm:^3.0.0"
yoctocolors-cjs: "npm:^2.1.2"
peerDependencies:
"@types/node": ">=18"
checksum: 10/a8c3f61d7999727a52521a61988786402810db3d96a1f39ad56961e84913b9535d35997796361246e9558525d725920f13ee5035a2eda1e2fe97ad64190408db
languageName: node
linkType: hard
"@inquirer/search@npm:^3.0.1":
version: 3.0.1
resolution: "@inquirer/search@npm:3.0.1"
dependencies:
"@inquirer/core": "npm:^10.0.1"
"@inquirer/figures": "npm:^1.0.7"
"@inquirer/type": "npm:^3.0.0"
yoctocolors-cjs: "npm:^2.1.2"
peerDependencies:
"@types/node": ">=18"
checksum: 10/bdea5b2659ccd91b9c91ee355d32d92061127b5f871837c91e709e8b8dfbd531b3dac312d4d0fe7454594ff6d9fbda4194edce6e52ba6bb4b91a65850e0948bb
languageName: node
linkType: hard
"@inquirer/select@npm:^4.0.1":
version: 4.0.1
resolution: "@inquirer/select@npm:4.0.1"
dependencies:
"@inquirer/core": "npm:^10.0.1"
"@inquirer/figures": "npm:^1.0.7"
"@inquirer/type": "npm:^3.0.0"
ansi-escapes: "npm:^4.3.2"
yoctocolors-cjs: "npm:^2.1.2"
peerDependencies:
"@types/node": ">=18"
checksum: 10/5ceadb983c66caa365b38fc6abeea63c9d45bc0443a3bba565e76681a6c94065d185729e5f253e995e001f864dd6a443db58e53b85d695b8bdb64c2a322ead53
languageName: node
linkType: hard
"@inquirer/type@npm:^3.0.0":
version: 3.0.0
resolution: "@inquirer/type@npm:3.0.0"
peerDependencies:
"@types/node": ">=18"
checksum: 10/fd4c265f0ed03e8da7ae2972c4e6b81932f535d9dd1e039e9e52b027cb8b72ae3c3309a3383ba513a8d3ae626de7dd3634387775cbdcbd100155ecbcaa65a657
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: 10/e9ed5fd27c3aec1095e3a16e0c0cf148d1fee55a38665c35f7b3f86a9b5d00d042ddaabc98e8a1cb7463b9378c15f22a94eb35e99469c201453eb8375191f243
languageName: node
linkType: hard
"@jimp/core@npm:1.6.0, @jimp/core@npm:^1.6.0":
version: 1.6.0
resolution: "@jimp/core@npm:1.6.0"
dependencies:
"@jimp/file-ops": "npm:1.6.0"
"@jimp/types": "npm:1.6.0"
"@jimp/utils": "npm:1.6.0"
await-to-js: "npm:^3.0.0"
exif-parser: "npm:^0.1.12"
file-type: "npm:^16.0.0"
mime: "npm:3"
checksum: 10/02a12c937e1d7a9054bdc57fa3d97385599eafcba4fa42a0f56b5c7bdd1bc2e2f2ddac176968d2f30c4b4817b68b86bdbb02598739ab9a616a4d49e0f6b995a8
languageName: node
linkType: hard
"@jimp/file-ops@npm:1.6.0":
version: 1.6.0
resolution: "@jimp/file-ops@npm:1.6.0"
checksum: 10/dd27c6a178731f7a6d5e315086665daccdc0504f9e97784e4255bfdbebcb24bb01acd865debd66e7348248dd6a1d2994af080905d1e29593e3af0f722fd69c18
languageName: node
linkType: hard
"@jimp/js-png@npm:^1.6.0":
version: 1.6.0
resolution: "@jimp/js-png@npm:1.6.0"
dependencies:
"@jimp/core": "npm:1.6.0"
"@jimp/types": "npm:1.6.0"
pngjs: "npm:^7.0.0"
checksum: 10/ad5d4a8935c63c8c72fa9815c8fec6e3ae7232709c3adf51c78c4c6f40eba4046515a19813cc3e6a128fbf09f2c667d355cfe5396448c38d489e59757ddb38e2
languageName: node
linkType: hard
"@jimp/types@npm:1.6.0":
version: 1.6.0
resolution: "@jimp/types@npm:1.6.0"
dependencies:
zod: "npm:^3.23.8"
checksum: 10/b600ca2077bcb0f07873240e9c16d496baf7dcd5aafbc14b2dab4ad4402eea7d3c8300336ed772ed5c4a0c2504de5ef181da88cb110faeb616aa742171cbb56f
languageName: node
linkType: hard
"@jimp/utils@npm:1.6.0":
version: 1.6.0
resolution: "@jimp/utils@npm:1.6.0"
dependencies:
"@jimp/types": "npm:1.6.0"
tinycolor2: "npm:^1.6.0"
checksum: 10/dc9740e8ad21bc1911ce1562824c3e8a04fcf97781156b1baff691dca1df7e960b4e4071ba606d180f768086f48822c37751904436f882c45befc0febb3ddabc
languageName: node
linkType: hard
"@jridgewell/resolve-uri@npm:^3.0.3":
version: 3.1.2
resolution: "@jridgewell/resolve-uri@npm:3.1.2"
checksum: 10/97106439d750a409c22c8bff822d648f6a71f3aa9bc8e5129efdc36343cd3096ddc4eeb1c62d2fe48e9bdd4db37b05d4646a17114ecebd3bbcacfa2de51c3c1d
languageName: node
linkType: hard
"@jridgewell/sourcemap-codec@npm:^1.4.10, @jridgewell/sourcemap-codec@npm:^1.5.0":
version: 1.5.0
resolution: "@jridgewell/sourcemap-codec@npm:1.5.0"
checksum: 10/4ed6123217569a1484419ac53f6ea0d9f3b57e5b57ab30d7c267bdb27792a27eb0e4b08e84a2680aa55cc2f2b411ffd6ec3db01c44fdc6dc43aca4b55f8374fd
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: 10/83deafb8e7a5ca98993c2c6eeaa93c270f6f647a4c0dc00deb38c9cf9b2d3b7bf15e8839540155247ef034a052c0ec4466f980bf0c9e2ab63b97d16c0cedd3ff
languageName: node
linkType: hard
"@manypkg/find-root@npm:^1.1.0":
version: 1.1.0
resolution: "@manypkg/find-root@npm:1.1.0"
dependencies:
"@babel/runtime": "npm:^7.5.5"
"@types/node": "npm:^12.7.1"
find-up: "npm:^4.1.0"
fs-extra: "npm:^8.1.0"
checksum: 10/31e7dde82612a0e37ebb07876d76b1bf2aedc5b285b5e50d94cdf63edbf1fa3970349b84a5837a3c687e5b643e9a4f4588ae1f4b4ae9d412516d57bf977a08db
languageName: node
linkType: hard
"@manypkg/get-packages@npm:^1.1.3":
version: 1.1.3
resolution: "@manypkg/get-packages@npm:1.1.3"
dependencies:
"@babel/runtime": "npm:^7.5.5"
"@changesets/types": "npm:^4.0.1"
"@manypkg/find-root": "npm:^1.1.0"
fs-extra: "npm:^8.1.0"
globby: "npm:^11.0.0"
read-yaml-file: "npm:^1.1.0"
checksum: 10/4912e002199ff3974ec48586376a04c5f1815a4faa5f4d36b0698838eec143c9d4e3d42c41e0de009f48a1e2251802ed63c1311ab44de225b50102f85919a248
languageName: node
linkType: hard
"@napi-rs/cli@npm:3.0.0-alpha.64":
version: 3.0.0-alpha.64
resolution: "@napi-rs/cli@npm:3.0.0-alpha.64"
dependencies:
"@inquirer/prompts": "npm:^7.0.0"
"@napi-rs/cross-toolchain": "npm:^0.0.16"
"@napi-rs/wasm-tools": "npm:^0.0.2"
"@octokit/rest": "npm:^21.0.2"
clipanion: "npm:^3.2.1"
colorette: "npm:^2.0.20"
debug: "npm:^4.3.7"
emnapi: "npm:^1.3.1"
js-yaml: "npm:^4.1.0"
lodash-es: "npm:^4.17.21"
semver: "npm:^7.6.3"
toml: "npm:^3.0.0"
typanion: "npm:^3.14.0"
wasm-sjlj: "npm:^1.0.5"
peerDependencies:
"@emnapi/runtime": ^1.1.0
emnapi: ^1.1.0
peerDependenciesMeta:
"@emnapi/runtime":
optional: true
emnapi:
optional: true
bin:
napi: ./dist/cli.js
napi-raw: ./cli.mjs
checksum: 10/7f9f800e2eed5ad1476a7dcdf7ab024fd056cff3f036e34b6c057fc0f92c7f4c9c521cb85396f1326ef511c452ce0c46f68860a5d4a8a9fde356ef89795cda11
languageName: node
linkType: hard
"@napi-rs/cross-toolchain@npm:^0.0.16":
version: 0.0.16
resolution: "@napi-rs/cross-toolchain@npm:0.0.16"
dependencies:
"@napi-rs/lzma": "npm:^1.3.1"
"@napi-rs/tar": "npm:^0.1.1"
debug: "npm:^4.3.4"
peerDependencies:
"@napi-rs/cross-toolchain-arm64-target-aarch64": ^0.0.16
"@napi-rs/cross-toolchain-arm64-target-armv7": ^0.0.16
"@napi-rs/cross-toolchain-arm64-target-x86_64": ^0.0.16
"@napi-rs/cross-toolchain-x64-target-aarch64": ^0.0.16
"@napi-rs/cross-toolchain-x64-target-armv7": ^0.0.16
"@napi-rs/cross-toolchain-x64-target-x86_64": ^0.0.16
peerDependenciesMeta:
"@napi-rs/cross-toolchain-arm64-target-aarch64":
optional: true
"@napi-rs/cross-toolchain-arm64-target-armv7":
optional: true
"@napi-rs/cross-toolchain-arm64-target-x86_64":
optional: true
"@napi-rs/cross-toolchain-x64-target-aarch64":
optional: true
"@napi-rs/cross-toolchain-x64-target-armv7":
optional: true
"@napi-rs/cross-toolchain-x64-target-x86_64":
optional: true
checksum: 10/4c721d460f347085c4009185ad500b1f7fd66332f3d575f6fbfb877528f6d603d52a3bb79c61f854b177d8b525843d86bd3b85b8a92f84ae2dea27fc5a6981ff
languageName: node
linkType: hard
"@napi-rs/lzma-android-arm-eabi@npm:1.4.1":
version: 1.4.1
resolution: "@napi-rs/lzma-android-arm-eabi@npm:1.4.1"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@napi-rs/lzma-android-arm64@npm:1.4.1":
version: 1.4.1
resolution: "@napi-rs/lzma-android-arm64@npm:1.4.1"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@napi-rs/lzma-darwin-arm64@npm:1.4.1":
version: 1.4.1
resolution: "@napi-rs/lzma-darwin-arm64@npm:1.4.1"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@napi-rs/lzma-darwin-x64@npm:1.4.1":
version: 1.4.1
resolution: "@napi-rs/lzma-darwin-x64@npm:1.4.1"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@napi-rs/lzma-freebsd-x64@npm:1.4.1":
version: 1.4.1
resolution: "@napi-rs/lzma-freebsd-x64@npm:1.4.1"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@napi-rs/lzma-linux-arm-gnueabihf@npm:1.4.1":
version: 1.4.1
resolution: "@napi-rs/lzma-linux-arm-gnueabihf@npm:1.4.1"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@napi-rs/lzma-linux-arm64-gnu@npm:1.4.1":
version: 1.4.1
resolution: "@napi-rs/lzma-linux-arm64-gnu@npm:1.4.1"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@napi-rs/lzma-linux-arm64-musl@npm:1.4.1":
version: 1.4.1
resolution: "@napi-rs/lzma-linux-arm64-musl@npm:1.4.1"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
"@napi-rs/lzma-linux-ppc64-gnu@npm:1.4.1":
version: 1.4.1
resolution: "@napi-rs/lzma-linux-ppc64-gnu@npm:1.4.1"
conditions: os=linux & cpu=ppc64 & libc=glibc
languageName: node
linkType: hard
"@napi-rs/lzma-linux-riscv64-gnu@npm:1.4.1":
version: 1.4.1
resolution: "@napi-rs/lzma-linux-riscv64-gnu@npm:1.4.1"
conditions: os=linux & cpu=riscv64 & libc=glibc
languageName: node
linkType: hard
"@napi-rs/lzma-linux-s390x-gnu@npm:1.4.1":
version: 1.4.1
resolution: "@napi-rs/lzma-linux-s390x-gnu@npm:1.4.1"
conditions: os=linux & cpu=s390x & libc=glibc
languageName: node
linkType: hard
"@napi-rs/lzma-linux-x64-gnu@npm:1.4.1":
version: 1.4.1
resolution: "@napi-rs/lzma-linux-x64-gnu@npm:1.4.1"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@napi-rs/lzma-linux-x64-musl@npm:1.4.1":
version: 1.4.1
resolution: "@napi-rs/lzma-linux-x64-musl@npm:1.4.1"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@napi-rs/lzma-wasm32-wasi@npm:1.4.1":
version: 1.4.1
resolution: "@napi-rs/lzma-wasm32-wasi@npm:1.4.1"
dependencies:
"@napi-rs/wasm-runtime": "npm:^0.2.4"
conditions: cpu=wasm32
languageName: node
linkType: hard
"@napi-rs/lzma-win32-arm64-msvc@npm:1.4.1":
version: 1.4.1
resolution: "@napi-rs/lzma-win32-arm64-msvc@npm:1.4.1"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@napi-rs/lzma-win32-ia32-msvc@npm:1.4.1":
version: 1.4.1
resolution: "@napi-rs/lzma-win32-ia32-msvc@npm:1.4.1"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@napi-rs/lzma-win32-x64-msvc@npm:1.4.1":
version: 1.4.1
resolution: "@napi-rs/lzma-win32-x64-msvc@npm:1.4.1"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@napi-rs/lzma@npm:^1.3.1":
version: 1.4.1
resolution: "@napi-rs/lzma@npm:1.4.1"
dependencies:
"@napi-rs/lzma-android-arm-eabi": "npm:1.4.1"
"@napi-rs/lzma-android-arm64": "npm:1.4.1"
"@napi-rs/lzma-darwin-arm64": "npm:1.4.1"
"@napi-rs/lzma-darwin-x64": "npm:1.4.1"
"@napi-rs/lzma-freebsd-x64": "npm:1.4.1"
"@napi-rs/lzma-linux-arm-gnueabihf": "npm:1.4.1"
"@napi-rs/lzma-linux-arm64-gnu": "npm:1.4.1"
"@napi-rs/lzma-linux-arm64-musl": "npm:1.4.1"
"@napi-rs/lzma-linux-ppc64-gnu": "npm:1.4.1"
"@napi-rs/lzma-linux-riscv64-gnu": "npm:1.4.1"
"@napi-rs/lzma-linux-s390x-gnu": "npm:1.4.1"
"@napi-rs/lzma-linux-x64-gnu": "npm:1.4.1"
"@napi-rs/lzma-linux-x64-musl": "npm:1.4.1"
"@napi-rs/lzma-wasm32-wasi": "npm:1.4.1"
"@napi-rs/lzma-win32-arm64-msvc": "npm:1.4.1"
"@napi-rs/lzma-win32-ia32-msvc": "npm:1.4.1"
"@napi-rs/lzma-win32-x64-msvc": "npm:1.4.1"
dependenciesMeta:
"@napi-rs/lzma-android-arm-eabi":
optional: true
"@napi-rs/lzma-android-arm64":
optional: true
"@napi-rs/lzma-darwin-arm64":
optional: true
"@napi-rs/lzma-darwin-x64":
optional: true
"@napi-rs/lzma-freebsd-x64":
optional: true
"@napi-rs/lzma-linux-arm-gnueabihf":
optional: true
"@napi-rs/lzma-linux-arm64-gnu":
optional: true
"@napi-rs/lzma-linux-arm64-musl":
optional: true
"@napi-rs/lzma-linux-ppc64-gnu":
optional: true
"@napi-rs/lzma-linux-riscv64-gnu":
optional: true
"@napi-rs/lzma-linux-s390x-gnu":
optional: true
"@napi-rs/lzma-linux-x64-gnu":
optional: true
"@napi-rs/lzma-linux-x64-musl":
optional: true
"@napi-rs/lzma-wasm32-wasi":
optional: true
"@napi-rs/lzma-win32-arm64-msvc":
optional: true
"@napi-rs/lzma-win32-ia32-msvc":
optional: true
"@napi-rs/lzma-win32-x64-msvc":
optional: true
checksum: 10/70131088ba34e3a6b4286331f22c09dd64516b8aa8d7f94487161066fe1574861d2cd83bb73f8ad5138db62bf911fe714ecb8c42830ea96121f124ff7f289f9b
languageName: node
linkType: hard
"@napi-rs/tar-android-arm-eabi@npm:0.1.4":
version: 0.1.4
resolution: "@napi-rs/tar-android-arm-eabi@npm:0.1.4"
conditions: os=android & cpu=arm
languageName: node
linkType: hard