-
Notifications
You must be signed in to change notification settings - Fork 52
/
yarn.lock
5379 lines (4809 loc) Β· 183 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
"@aivenio/tsc-output-parser@npm:^2.1.1":
version: 2.1.1
resolution: "@aivenio/tsc-output-parser@npm:2.1.1"
bin:
tsc-output-parser: dist/cli.js
checksum: 10/87125352e7e85c77efa3c90083db072ae6a93a8c0d02e6b8174f5faaf87f1efedc1de082f8711969b4f089688a159edb117f6b063d1f43a5948f16fe53d45264
languageName: node
linkType: hard
"@babel/generator@npm:^7.23.0":
version: 7.26.2
resolution: "@babel/generator@npm:7.26.2"
dependencies:
"@babel/parser": "npm:^7.26.2"
"@babel/types": "npm:^7.26.0"
"@jridgewell/gen-mapping": "npm:^0.3.5"
"@jridgewell/trace-mapping": "npm:^0.3.25"
jsesc: "npm:^3.0.2"
checksum: 10/71ace82b5b07a554846a003624bfab93275ccf73cdb9f1a37a4c1094bf9dc94bb677c67e8b8c939dbd6c5f0eda2e8f268aa2b0d9c3b9511072565660e717e045
languageName: node
linkType: hard
"@babel/helper-string-parser@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-string-parser@npm:7.25.9"
checksum: 10/c28656c52bd48e8c1d9f3e8e68ecafd09d949c57755b0d353739eb4eae7ba4f7e67e92e4036f1cd43378cc1397a2c943ed7bcaf5949b04ab48607def0258b775
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-validator-identifier@npm:7.25.9"
checksum: 10/3f9b649be0c2fd457fa1957b694b4e69532a668866b8a0d81eabfa34ba16dbf3107b39e0e7144c55c3c652bf773ec816af8df4a61273a2bb4eb3145ca9cf478e
languageName: node
linkType: hard
"@babel/parser@npm:^7.23.0, @babel/parser@npm:^7.26.2":
version: 7.26.2
resolution: "@babel/parser@npm:7.26.2"
dependencies:
"@babel/types": "npm:^7.26.0"
bin:
parser: ./bin/babel-parser.js
checksum: 10/8baee43752a3678ad9f9e360ec845065eeee806f1fdc8e0f348a8a0e13eef0959dabed4a197c978896c493ea205c804d0a1187cc52e4a1ba017c7935bab4983d
languageName: node
linkType: hard
"@babel/types@npm:^7.23.0, @babel/types@npm:^7.26.0":
version: 7.26.0
resolution: "@babel/types@npm:7.26.0"
dependencies:
"@babel/helper-string-parser": "npm:^7.25.9"
"@babel/helper-validator-identifier": "npm:^7.25.9"
checksum: 10/40780741ecec886ed9edae234b5eb4976968cc70d72b4e5a40d55f83ff2cc457de20f9b0f4fe9d858350e43dab0ea496e7ef62e2b2f08df699481a76df02cd6e
languageName: node
linkType: hard
"@colors/colors@npm:1.6.0, @colors/colors@npm:^1.6.0":
version: 1.6.0
resolution: "@colors/colors@npm:1.6.0"
checksum: 10/66d00284a3a9a21e5e853b256942e17edbb295f4bd7b9aa7ef06bbb603568d5173eb41b0f64c1e51748bc29d382a23a67d99956e57e7431c64e47e74324182d9
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
"@dabh/diagnostics@npm:^2.0.2":
version: 2.0.3
resolution: "@dabh/diagnostics@npm:2.0.3"
dependencies:
colorspace: "npm:1.1.x"
enabled: "npm:2.0.x"
kuler: "npm:^2.0.0"
checksum: 10/14e449a7f42f063f959b472f6ce02d16457a756e852a1910aaa831b63fc21d86f6c32b2a1aa98a4835b856548c926643b51062d241fb6e9b2b7117996053e6b9
languageName: node
linkType: hard
"@dashlane/cli@workspace:.":
version: 0.0.0-use.local
resolution: "@dashlane/cli@workspace:."
dependencies:
"@aivenio/tsc-output-parser": "npm:^2.1.1"
"@dashlane/nsm-attestation": "npm:^1.0.2"
"@eslint/eslintrc": "npm:^3.2.0"
"@eslint/js": "npm:^9.15.0"
"@inquirer/prompts": "npm:^7.1.0"
"@json2csv/plainjs": "npm:^7.0.6"
"@json2csv/transforms": "npm:^7.0.6"
"@napi-rs/clipboard": "npm:^1.1.2"
"@napi-rs/keyring": "npm:^1.1.6"
"@node-rs/argon2": "npm:^2.0.0"
"@types/async": "npm:^3.2.24"
"@types/better-sqlite3": "npm:^7.6.11"
"@types/chai": "npm:^5.0.1"
"@types/eslint__js": "npm:^8.42.3"
"@types/inquirer": "npm:^9.0.7"
"@types/libsodium-wrappers": "npm:^0.7.14"
"@types/mocha": "npm:^10.0.9"
"@types/node": "npm:^22.9.0"
"@yao-pkg/pkg": "npm:^6.1.1"
ajv: "npm:^8.17.1"
ajv-formats: "npm:^3.0.1"
better-sqlite3: "npm:^11.5.0"
chai: "npm:^5.1.2"
commander: "npm:^12.1.0"
esbuild: "npm:^0.24.0"
eslint: "npm:^9.15.0"
eslint-config-prettier: "npm:^9.1.0"
eslint-plugin-prettier: "npm:^5.2.1"
execa: "npm:^9.5.1"
got: "npm:^14.4.4"
husky: "npm:^9.1.7"
jsonpath-plus: "npm:^10.2.0"
libsodium-wrappers: "npm:^0.7.15"
mocha: "npm:^10.8.2"
node-mac-auth: "npm:^1.1.0"
otplib: "npm:^12.0.1"
playwright-core: "npm:^1.49.0"
prettier: "npm:^3.3.3"
ts-node: "npm:^10.9.2"
typescript: "npm:^5.6.3"
typescript-eslint: "npm:^8.15.0"
winston: "npm:^3.17.0"
xml-js: "npm:^1.6.11"
zlib: "npm:^1.0.5"
bin:
dcli: dist/index.cjs
languageName: unknown
linkType: soft
"@dashlane/nsm-attestation@npm:^1.0.2":
version: 1.0.2
resolution: "@dashlane/nsm-attestation@npm:1.0.2"
dependencies:
cbor: "npm:9.0.2"
cose-js: "npm:0.9.0"
pem: "npm:1.14.8"
checksum: 10/1c64e592a081a50cd0e0e108145d8f7d1cf309cd19f86a05360b8b442557b6effb103812bb140393c377f603affd890bdfa01bcf3450daaa054c67a80df3bb56
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.24.0":
version: 0.24.0
resolution: "@esbuild/aix-ppc64@npm:0.24.0"
conditions: os=aix & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/android-arm64@npm:0.24.0"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/android-arm@npm:0.24.0"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/android-x64@npm:0.24.0"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/darwin-arm64@npm:0.24.0"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/darwin-x64@npm:0.24.0"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/freebsd-arm64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/freebsd-arm64@npm:0.24.0"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/freebsd-x64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/freebsd-x64@npm:0.24.0"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/linux-arm64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/linux-arm64@npm:0.24.0"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@esbuild/linux-arm@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/linux-arm@npm:0.24.0"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@esbuild/linux-ia32@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/linux-ia32@npm:0.24.0"
conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/linux-loong64@npm:0.24.0"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
"@esbuild/linux-mips64el@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/linux-mips64el@npm:0.24.0"
conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
"@esbuild/linux-ppc64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/linux-ppc64@npm:0.24.0"
conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/linux-riscv64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/linux-riscv64@npm:0.24.0"
conditions: os=linux & cpu=riscv64
languageName: node
linkType: hard
"@esbuild/linux-s390x@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/linux-s390x@npm:0.24.0"
conditions: os=linux & cpu=s390x
languageName: node
linkType: hard
"@esbuild/linux-x64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/linux-x64@npm:0.24.0"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@esbuild/netbsd-x64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/netbsd-x64@npm:0.24.0"
conditions: os=netbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/openbsd-arm64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/openbsd-arm64@npm:0.24.0"
conditions: os=openbsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/openbsd-x64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/openbsd-x64@npm:0.24.0"
conditions: os=openbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/sunos-x64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/sunos-x64@npm:0.24.0"
conditions: os=sunos & cpu=x64
languageName: node
linkType: hard
"@esbuild/win32-arm64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/win32-arm64@npm:0.24.0"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@esbuild/win32-ia32@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/win32-ia32@npm:0.24.0"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@esbuild/win32-x64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/win32-x64@npm:0.24.0"
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.1
resolution: "@eslint-community/eslint-utils@npm:4.4.1"
dependencies:
eslint-visitor-keys: "npm:^3.4.3"
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
checksum: 10/ae92a11412674329b4bd38422518601ec9ceae28e251104d1cad83715da9d38e321f68c817c39b64e66d0af7d98df6f9a10ad2dc638911254b47fb8932df00ef
languageName: node
linkType: hard
"@eslint-community/regexpp@npm:^4.10.0, @eslint-community/regexpp@npm:^4.12.1":
version: 4.12.1
resolution: "@eslint-community/regexpp@npm:4.12.1"
checksum: 10/c08f1dd7dd18fbb60bdd0d85820656d1374dd898af9be7f82cb00451313402a22d5e30569c150315b4385907cdbca78c22389b2a72ab78883b3173be317620cc
languageName: node
linkType: hard
"@eslint/config-array@npm:^0.19.0":
version: 0.19.0
resolution: "@eslint/config-array@npm:0.19.0"
dependencies:
"@eslint/object-schema": "npm:^2.1.4"
debug: "npm:^4.3.1"
minimatch: "npm:^3.1.2"
checksum: 10/16e4ec468ebcb10255ab8c61234c1b3e7ac5506016e432fb489a1c5528cace7a60ddb07515516e7fc166b1dbe6c407d8a6bfbaa2e7531d445d8feb845c989913
languageName: node
linkType: hard
"@eslint/core@npm:^0.9.0":
version: 0.9.0
resolution: "@eslint/core@npm:0.9.0"
checksum: 10/2d11e9c6fac14cfa817c7a9939fd6b79f2120928e4933952d061651db93797e0fcd67c858a14980ac26e90f6e0e49051436aefa4a4b06a26f24e3028366f73d9
languageName: node
linkType: hard
"@eslint/eslintrc@npm:^3.2.0":
version: 3.2.0
resolution: "@eslint/eslintrc@npm:3.2.0"
dependencies:
ajv: "npm:^6.12.4"
debug: "npm:^4.3.2"
espree: "npm:^10.0.1"
globals: "npm:^14.0.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: 10/b32dd90ce7da68e89b88cd729db46b27aac79a2e6cb1fa75d25a6b766d586b443bfbf59622489efbd3c6f696f147b51111e81ec7cd23d70f215c5d474cad0261
languageName: node
linkType: hard
"@eslint/js@npm:9.15.0, @eslint/js@npm:^9.15.0":
version: 9.15.0
resolution: "@eslint/js@npm:9.15.0"
checksum: 10/cdea71574a8be164147f426ffa5eca05a9c7fbfbae98387ed0cf772292fc9fb5ded69ce96eac110aaa633f6b7504ec551e1d33f2d6690ae95b11ec395553bae1
languageName: node
linkType: hard
"@eslint/object-schema@npm:^2.1.4":
version: 2.1.4
resolution: "@eslint/object-schema@npm:2.1.4"
checksum: 10/221e8d9f281c605948cd6e030874aacce83fe097f8f9c1964787037bccf08e82b7aa9eff1850a30fffac43f1d76555727ec22a2af479d91e268e89d1e035131e
languageName: node
linkType: hard
"@eslint/plugin-kit@npm:^0.2.3":
version: 0.2.3
resolution: "@eslint/plugin-kit@npm:0.2.3"
dependencies:
levn: "npm:^0.4.1"
checksum: 10/0d0653ef840823fd5c0354ef8f1937e7763dbe830173eb6d2d55a19374bf04a06dff0e5214330c10a9425cf38655f632bb0d7d0666249b366e506ae291d82f7e
languageName: node
linkType: hard
"@humanfs/core@npm:^0.19.1":
version: 0.19.1
resolution: "@humanfs/core@npm:0.19.1"
checksum: 10/270d936be483ab5921702623bc74ce394bf12abbf57d9145a69e8a0d1c87eb1c768bd2d93af16c5705041e257e6d9cc7529311f63a1349f3678abc776fc28523
languageName: node
linkType: hard
"@humanfs/node@npm:^0.16.6":
version: 0.16.6
resolution: "@humanfs/node@npm:0.16.6"
dependencies:
"@humanfs/core": "npm:^0.19.1"
"@humanwhocodes/retry": "npm:^0.3.0"
checksum: 10/6d43c6727463772d05610aa05c83dab2bfbe78291022ee7a92cb50999910b8c720c76cc312822e2dea2b497aa1b3fef5fe9f68803fc45c9d4ed105874a65e339
languageName: node
linkType: hard
"@humanwhocodes/module-importer@npm:^1.0.1":
version: 1.0.1
resolution: "@humanwhocodes/module-importer@npm:1.0.1"
checksum: 10/e993950e346331e5a32eefb27948ecdee2a2c4ab3f072b8f566cd213ef485dd50a3ca497050608db91006f5479e43f91a439aef68d2a313bd3ded06909c7c5b3
languageName: node
linkType: hard
"@humanwhocodes/retry@npm:^0.3.0":
version: 0.3.1
resolution: "@humanwhocodes/retry@npm:0.3.1"
checksum: 10/eb457f699529de7f07649679ec9e0353055eebe443c2efe71c6dd950258892475a038e13c6a8c5e13ed1fb538cdd0a8794faa96b24b6ffc4c87fb1fc9f70ad7f
languageName: node
linkType: hard
"@humanwhocodes/retry@npm:^0.4.1":
version: 0.4.1
resolution: "@humanwhocodes/retry@npm:0.4.1"
checksum: 10/39fafc7319e88f61befebd5e1b4f0136534ea6a9bd10d74366698187bd63544210ec5d79a87ed4d91297f1cc64c4c53d45fb0077a2abfdce212cf0d3862d5f04
languageName: node
linkType: hard
"@inquirer/checkbox@npm:^4.0.2":
version: 4.0.2
resolution: "@inquirer/checkbox@npm:4.0.2"
dependencies:
"@inquirer/core": "npm:^10.1.0"
"@inquirer/figures": "npm:^1.0.8"
"@inquirer/type": "npm:^3.0.1"
ansi-escapes: "npm:^4.3.2"
yoctocolors-cjs: "npm:^2.1.2"
peerDependencies:
"@types/node": ">=18"
checksum: 10/1d3e7133a428312610fab7f6462c85c8e38c04dd6ef2360e66d9606017e79664b43b18920a459d23bfcde834741ea34963b0279a3ba44ebc3906e06f9d508275
languageName: node
linkType: hard
"@inquirer/confirm@npm:^5.0.2":
version: 5.0.2
resolution: "@inquirer/confirm@npm:5.0.2"
dependencies:
"@inquirer/core": "npm:^10.1.0"
"@inquirer/type": "npm:^3.0.1"
peerDependencies:
"@types/node": ">=18"
checksum: 10/4e775b80b689adeb0b2852ed79b368ef23a82fe3d5f580a562f4af7cdf002a19e0ec1b3b95acc6d49427a72c0fcb5b6548e0cdcafe2f0d3f3d6a923e04aabd0c
languageName: node
linkType: hard
"@inquirer/core@npm:^10.1.0":
version: 10.1.0
resolution: "@inquirer/core@npm:10.1.0"
dependencies:
"@inquirer/figures": "npm:^1.0.8"
"@inquirer/type": "npm:^3.0.1"
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/5d097d0484c1b758f788b792d29395199bdc84af3e8cd4d9273e31de2c5202839b6edf299056956044ba7fb097c4cee7b5c0288e094a380c045082b044f9946e
languageName: node
linkType: hard
"@inquirer/editor@npm:^4.1.0":
version: 4.1.0
resolution: "@inquirer/editor@npm:4.1.0"
dependencies:
"@inquirer/core": "npm:^10.1.0"
"@inquirer/type": "npm:^3.0.1"
external-editor: "npm:^3.1.0"
peerDependencies:
"@types/node": ">=18"
checksum: 10/926de508799a9a76003eb95d8877168d51ae40b1bebccb0dceaad47f97f965f2c24b54f0b083d8ceb85f33643b24bd967f40c7ad9e15aa1f6b07417f106caedf
languageName: node
linkType: hard
"@inquirer/expand@npm:^4.0.2":
version: 4.0.2
resolution: "@inquirer/expand@npm:4.0.2"
dependencies:
"@inquirer/core": "npm:^10.1.0"
"@inquirer/type": "npm:^3.0.1"
yoctocolors-cjs: "npm:^2.1.2"
peerDependencies:
"@types/node": ">=18"
checksum: 10/9c5f2e01bf12684bddb4ce88c6afbf41bf8b9057ac17565173b2225d691aad0e044be204e21ecedd5cc76907af76ab34678a2d519c890cf0ea3a1a83473faa12
languageName: node
linkType: hard
"@inquirer/figures@npm:^1.0.8":
version: 1.0.8
resolution: "@inquirer/figures@npm:1.0.8"
checksum: 10/0e5e4fbb15e799e818c598fcc3558ef076daf78662149711b046723fd6316381e95f7d5573d6ef0062095ad22c6ac98833033f0948df5c722932107a567fd9c3
languageName: node
linkType: hard
"@inquirer/input@npm:^4.0.2":
version: 4.0.2
resolution: "@inquirer/input@npm:4.0.2"
dependencies:
"@inquirer/core": "npm:^10.1.0"
"@inquirer/type": "npm:^3.0.1"
peerDependencies:
"@types/node": ">=18"
checksum: 10/06ec535b90ebfc230b616df6f5058fdea9fdd00c9b965448c5d569fea7d76b67e8ad6427e0aa16d2b31c107f0e9a5ef93ac3224da59ff2e11b5fecfa2987e10e
languageName: node
linkType: hard
"@inquirer/number@npm:^3.0.2":
version: 3.0.2
resolution: "@inquirer/number@npm:3.0.2"
dependencies:
"@inquirer/core": "npm:^10.1.0"
"@inquirer/type": "npm:^3.0.1"
peerDependencies:
"@types/node": ">=18"
checksum: 10/88b85a3510fe7ab83f34d7338593ae2747ab805faacfcd116c34b50e03467b46ff0535b64191574ab08d1822b44d8ab758ee9fddf51f15ef5fb7fb8e9326bf8a
languageName: node
linkType: hard
"@inquirer/password@npm:^4.0.2":
version: 4.0.2
resolution: "@inquirer/password@npm:4.0.2"
dependencies:
"@inquirer/core": "npm:^10.1.0"
"@inquirer/type": "npm:^3.0.1"
ansi-escapes: "npm:^4.3.2"
peerDependencies:
"@types/node": ">=18"
checksum: 10/9fc602e2bcb03bed180e15dd3c1bf8a78dbb99d91ac2f1dc01402a105522c847b4530a25fbec64865a058999f9b5bd6b6693776c9ef7277da0e605f15b1114fb
languageName: node
linkType: hard
"@inquirer/prompts@npm:^7.1.0":
version: 7.1.0
resolution: "@inquirer/prompts@npm:7.1.0"
dependencies:
"@inquirer/checkbox": "npm:^4.0.2"
"@inquirer/confirm": "npm:^5.0.2"
"@inquirer/editor": "npm:^4.1.0"
"@inquirer/expand": "npm:^4.0.2"
"@inquirer/input": "npm:^4.0.2"
"@inquirer/number": "npm:^3.0.2"
"@inquirer/password": "npm:^4.0.2"
"@inquirer/rawlist": "npm:^4.0.2"
"@inquirer/search": "npm:^3.0.2"
"@inquirer/select": "npm:^4.0.2"
peerDependencies:
"@types/node": ">=18"
checksum: 10/a5f9c08936a2ba245d80f90e681fd8a4f3cef7123257c029ae597649a4b623c388ecb52c394d0b8b14a3eda43ec413bf57a0da7e9ba484d59beabd7d0bdfe767
languageName: node
linkType: hard
"@inquirer/rawlist@npm:^4.0.2":
version: 4.0.2
resolution: "@inquirer/rawlist@npm:4.0.2"
dependencies:
"@inquirer/core": "npm:^10.1.0"
"@inquirer/type": "npm:^3.0.1"
yoctocolors-cjs: "npm:^2.1.2"
peerDependencies:
"@types/node": ">=18"
checksum: 10/942cd87d217659ecb304c266a8ec186e7de03a523ed2eaac5fe8458ab7b48ac884f1383e41c83231af1b68c1a2e448448234495ab06477ce0900421723c15d1d
languageName: node
linkType: hard
"@inquirer/search@npm:^3.0.2":
version: 3.0.2
resolution: "@inquirer/search@npm:3.0.2"
dependencies:
"@inquirer/core": "npm:^10.1.0"
"@inquirer/figures": "npm:^1.0.8"
"@inquirer/type": "npm:^3.0.1"
yoctocolors-cjs: "npm:^2.1.2"
peerDependencies:
"@types/node": ">=18"
checksum: 10/45b27c6cb311ce990443516f37a5a102974aae0ac7936321a9311a09b3cda2c4d59035398584193cee5b5aab5b5b8b3903404498223a577b2bf170049797331b
languageName: node
linkType: hard
"@inquirer/select@npm:^4.0.2":
version: 4.0.2
resolution: "@inquirer/select@npm:4.0.2"
dependencies:
"@inquirer/core": "npm:^10.1.0"
"@inquirer/figures": "npm:^1.0.8"
"@inquirer/type": "npm:^3.0.1"
ansi-escapes: "npm:^4.3.2"
yoctocolors-cjs: "npm:^2.1.2"
peerDependencies:
"@types/node": ">=18"
checksum: 10/d8dfa5217d8baca958a80cfbad14eb51ee53606c47b228318934744284317cd11c36579be8cacced2ba77782c2878fb9b13936ac1a05af25598f2f3063baa318
languageName: node
linkType: hard
"@inquirer/type@npm:^3.0.1":
version: 3.0.1
resolution: "@inquirer/type@npm:3.0.1"
peerDependencies:
"@types/node": ">=18"
checksum: 10/af412f1e7541d43554b02199ae71a2039a1bff5dc51ceefd87de9ece55b199682733b28810fb4b6cb3ed4a159af4cc4a26d4bb29c58dd127e7d9dbda0797d8e7
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
"@isaacs/fs-minipass@npm:^4.0.0":
version: 4.0.1
resolution: "@isaacs/fs-minipass@npm:4.0.1"
dependencies:
minipass: "npm:^7.0.4"
checksum: 10/4412e9e6713c89c1e66d80bb0bb5a2a93192f10477623a27d08f228ba0316bb880affabc5bfe7f838f58a34d26c2c190da726e576cdfc18c49a72e89adabdcf5
languageName: node
linkType: hard
"@jridgewell/gen-mapping@npm:^0.3.5":
version: 0.3.5
resolution: "@jridgewell/gen-mapping@npm:0.3.5"
dependencies:
"@jridgewell/set-array": "npm:^1.2.1"
"@jridgewell/sourcemap-codec": "npm:^1.4.10"
"@jridgewell/trace-mapping": "npm:^0.3.24"
checksum: 10/81587b3c4dd8e6c60252122937cea0c637486311f4ed208b52b62aae2e7a87598f63ec330e6cd0984af494bfb16d3f0d60d3b21d7e5b4aedd2602ff3fe9d32e2
languageName: node
linkType: hard
"@jridgewell/resolve-uri@npm:^3.0.3, @jridgewell/resolve-uri@npm:^3.1.0":
version: 3.1.2
resolution: "@jridgewell/resolve-uri@npm:3.1.2"
checksum: 10/97106439d750a409c22c8bff822d648f6a71f3aa9bc8e5129efdc36343cd3096ddc4eeb1c62d2fe48e9bdd4db37b05d4646a17114ecebd3bbcacfa2de51c3c1d
languageName: node
linkType: hard
"@jridgewell/set-array@npm:^1.2.1":
version: 1.2.1
resolution: "@jridgewell/set-array@npm:1.2.1"
checksum: 10/832e513a85a588f8ed4f27d1279420d8547743cc37fcad5a5a76fc74bb895b013dfe614d0eed9cb860048e6546b798f8f2652020b4b2ba0561b05caa8c654b10
languageName: node
linkType: hard
"@jridgewell/sourcemap-codec@npm:^1.4.10, @jridgewell/sourcemap-codec@npm:^1.4.14":
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
"@jridgewell/trace-mapping@npm:^0.3.24, @jridgewell/trace-mapping@npm:^0.3.25":
version: 0.3.25
resolution: "@jridgewell/trace-mapping@npm:0.3.25"
dependencies:
"@jridgewell/resolve-uri": "npm:^3.1.0"
"@jridgewell/sourcemap-codec": "npm:^1.4.14"
checksum: 10/dced32160a44b49d531b80a4a2159dceab6b3ddf0c8e95a0deae4b0e894b172defa63d5ac52a19c2068e1fe7d31ea4ba931fbeec103233ecb4208953967120fc
languageName: node
linkType: hard
"@jsep-plugin/assignment@npm:^1.3.0":
version: 1.3.0
resolution: "@jsep-plugin/assignment@npm:1.3.0"
peerDependencies:
jsep: ^0.4.0||^1.0.0
checksum: 10/0c93b703d84af95b4be9fb6c23fbdbe7c7b6985b41c98fd10386cd54686ed1eb751cb39f5d54abcb621e4da2a0900a3b2a852e5bf7f2d322b756db3b22e42a45
languageName: node
linkType: hard
"@jsep-plugin/regex@npm:^1.0.4":
version: 1.0.4
resolution: "@jsep-plugin/regex@npm:1.0.4"
peerDependencies:
jsep: ^0.4.0||^1.0.0
checksum: 10/0ea6ba81f03955972b762fd9fbc8e3fd7e1c1c12e52ce3d4366e23c0a63c8bff8528687b8b3d8f641cf9f626f8bf5a7841efcd31a2489fe967e1900e5738ee3a
languageName: node
linkType: hard
"@json2csv/formatters@npm:^7.0.6":
version: 7.0.6
resolution: "@json2csv/formatters@npm:7.0.6"
checksum: 10/7a103acae1f2625996612495fef938478931a5b580b4920804b26c1256c5f5341b4faac233b968c9ce82f3cd8d764e56bbd1fcebec1fbbda344883eb7ce36ddd
languageName: node
linkType: hard
"@json2csv/plainjs@npm:^7.0.6":
version: 7.0.6
resolution: "@json2csv/plainjs@npm:7.0.6"
dependencies:
"@json2csv/formatters": "npm:^7.0.6"
"@streamparser/json": "npm:^0.0.20"
checksum: 10/261cce8eb0f0b8c91dee75ce1b70924a4c8bb7dc7068ede89811c20025b46a903b2e23054f31102543dad73e05072aa652a94f45a47f86e0879c63f557b296e4
languageName: node
linkType: hard
"@json2csv/transforms@npm:^7.0.6":
version: 7.0.6
resolution: "@json2csv/transforms@npm:7.0.6"
checksum: 10/1b5b11a6d78cd24632af71c29e82da389e42b645687f25227168aa8120527994ba4a2f52f503d23d0b905e412b3e008939c47fed5ec595b316266dc0de8b3739
languageName: node
linkType: hard
"@napi-rs/clipboard-darwin-arm64@npm:1.1.2":
version: 1.1.2
resolution: "@napi-rs/clipboard-darwin-arm64@npm:1.1.2"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@napi-rs/clipboard-darwin-x64@npm:1.1.2":
version: 1.1.2
resolution: "@napi-rs/clipboard-darwin-x64@npm:1.1.2"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@napi-rs/clipboard-linux-arm-gnueabihf@npm:1.1.2":
version: 1.1.2
resolution: "@napi-rs/clipboard-linux-arm-gnueabihf@npm:1.1.2"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@napi-rs/clipboard-linux-arm64-gnu@npm:1.1.2":
version: 1.1.2
resolution: "@napi-rs/clipboard-linux-arm64-gnu@npm:1.1.2"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@napi-rs/clipboard-linux-arm64-musl@npm:1.1.2":
version: 1.1.2
resolution: "@napi-rs/clipboard-linux-arm64-musl@npm:1.1.2"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
"@napi-rs/clipboard-linux-x64-gnu@npm:1.1.2":
version: 1.1.2
resolution: "@napi-rs/clipboard-linux-x64-gnu@npm:1.1.2"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@napi-rs/clipboard-linux-x64-musl@npm:1.1.2":
version: 1.1.2
resolution: "@napi-rs/clipboard-linux-x64-musl@npm:1.1.2"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@napi-rs/clipboard-win32-arm64-msvc@npm:1.1.2":
version: 1.1.2
resolution: "@napi-rs/clipboard-win32-arm64-msvc@npm:1.1.2"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@napi-rs/clipboard-win32-ia32-msvc@npm:1.1.2":
version: 1.1.2
resolution: "@napi-rs/clipboard-win32-ia32-msvc@npm:1.1.2"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@napi-rs/clipboard-win32-x64-msvc@npm:1.1.2":
version: 1.1.2
resolution: "@napi-rs/clipboard-win32-x64-msvc@npm:1.1.2"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@napi-rs/clipboard@npm:^1.1.2":
version: 1.1.2
resolution: "@napi-rs/clipboard@npm:1.1.2"
dependencies:
"@napi-rs/clipboard-darwin-arm64": "npm:1.1.2"
"@napi-rs/clipboard-darwin-x64": "npm:1.1.2"
"@napi-rs/clipboard-linux-arm-gnueabihf": "npm:1.1.2"
"@napi-rs/clipboard-linux-arm64-gnu": "npm:1.1.2"
"@napi-rs/clipboard-linux-arm64-musl": "npm:1.1.2"
"@napi-rs/clipboard-linux-x64-gnu": "npm:1.1.2"
"@napi-rs/clipboard-linux-x64-musl": "npm:1.1.2"
"@napi-rs/clipboard-win32-arm64-msvc": "npm:1.1.2"
"@napi-rs/clipboard-win32-ia32-msvc": "npm:1.1.2"
"@napi-rs/clipboard-win32-x64-msvc": "npm:1.1.2"
dependenciesMeta:
"@napi-rs/clipboard-darwin-arm64":
optional: true
"@napi-rs/clipboard-darwin-x64":
optional: true
"@napi-rs/clipboard-linux-arm-gnueabihf":
optional: true
"@napi-rs/clipboard-linux-arm64-gnu":
optional: true
"@napi-rs/clipboard-linux-arm64-musl":
optional: true
"@napi-rs/clipboard-linux-x64-gnu":
optional: true
"@napi-rs/clipboard-linux-x64-musl":
optional: true
"@napi-rs/clipboard-win32-arm64-msvc":
optional: true
"@napi-rs/clipboard-win32-ia32-msvc":
optional: true
"@napi-rs/clipboard-win32-x64-msvc":
optional: true
checksum: 10/858e0600409787ba8e3c823afb8b1cc8ea44bd096d223477bd2405298c95e3f0c3a717fc2dbb61b67553b19e887abf340112d484994339096f396bdb0a1e385c
languageName: node
linkType: hard
"@napi-rs/keyring-darwin-arm64@npm:1.1.6":
version: 1.1.6
resolution: "@napi-rs/keyring-darwin-arm64@npm:1.1.6"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@napi-rs/keyring-darwin-x64@npm:1.1.6":
version: 1.1.6
resolution: "@napi-rs/keyring-darwin-x64@npm:1.1.6"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@napi-rs/keyring-freebsd-x64@npm:1.1.6":
version: 1.1.6
resolution: "@napi-rs/keyring-freebsd-x64@npm:1.1.6"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@napi-rs/keyring-linux-arm-gnueabihf@npm:1.1.6":
version: 1.1.6
resolution: "@napi-rs/keyring-linux-arm-gnueabihf@npm:1.1.6"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@napi-rs/keyring-linux-arm64-gnu@npm:1.1.6":
version: 1.1.6
resolution: "@napi-rs/keyring-linux-arm64-gnu@npm:1.1.6"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@napi-rs/keyring-linux-arm64-musl@npm:1.1.6":
version: 1.1.6
resolution: "@napi-rs/keyring-linux-arm64-musl@npm:1.1.6"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
"@napi-rs/keyring-linux-riscv64-gnu@npm:1.1.6":
version: 1.1.6
resolution: "@napi-rs/keyring-linux-riscv64-gnu@npm:1.1.6"
conditions: os=linux & cpu=riscv64 & libc=glibc
languageName: node
linkType: hard
"@napi-rs/keyring-linux-x64-gnu@npm:1.1.6":
version: 1.1.6
resolution: "@napi-rs/keyring-linux-x64-gnu@npm:1.1.6"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@napi-rs/keyring-linux-x64-musl@npm:1.1.6":
version: 1.1.6
resolution: "@napi-rs/keyring-linux-x64-musl@npm:1.1.6"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@napi-rs/keyring-win32-arm64-msvc@npm:1.1.6":
version: 1.1.6
resolution: "@napi-rs/keyring-win32-arm64-msvc@npm:1.1.6"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@napi-rs/keyring-win32-ia32-msvc@npm:1.1.6":
version: 1.1.6
resolution: "@napi-rs/keyring-win32-ia32-msvc@npm:1.1.6"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@napi-rs/keyring-win32-x64-msvc@npm:1.1.6":
version: 1.1.6
resolution: "@napi-rs/keyring-win32-x64-msvc@npm:1.1.6"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@napi-rs/keyring@npm:^1.1.6":
version: 1.1.6
resolution: "@napi-rs/keyring@npm:1.1.6"
dependencies:
"@napi-rs/keyring-darwin-arm64": "npm:1.1.6"
"@napi-rs/keyring-darwin-x64": "npm:1.1.6"
"@napi-rs/keyring-freebsd-x64": "npm:1.1.6"
"@napi-rs/keyring-linux-arm-gnueabihf": "npm:1.1.6"
"@napi-rs/keyring-linux-arm64-gnu": "npm:1.1.6"
"@napi-rs/keyring-linux-arm64-musl": "npm:1.1.6"
"@napi-rs/keyring-linux-riscv64-gnu": "npm:1.1.6"
"@napi-rs/keyring-linux-x64-gnu": "npm:1.1.6"
"@napi-rs/keyring-linux-x64-musl": "npm:1.1.6"
"@napi-rs/keyring-win32-arm64-msvc": "npm:1.1.6"
"@napi-rs/keyring-win32-ia32-msvc": "npm:1.1.6"
"@napi-rs/keyring-win32-x64-msvc": "npm:1.1.6"
dependenciesMeta:
"@napi-rs/keyring-darwin-arm64":
optional: true
"@napi-rs/keyring-darwin-x64":
optional: true
"@napi-rs/keyring-freebsd-x64":
optional: true
"@napi-rs/keyring-linux-arm-gnueabihf":
optional: true
"@napi-rs/keyring-linux-arm64-gnu":
optional: true
"@napi-rs/keyring-linux-arm64-musl":
optional: true
"@napi-rs/keyring-linux-riscv64-gnu":
optional: true
"@napi-rs/keyring-linux-x64-gnu":
optional: true
"@napi-rs/keyring-linux-x64-musl":
optional: true
"@napi-rs/keyring-win32-arm64-msvc":
optional: true
"@napi-rs/keyring-win32-ia32-msvc":
optional: true
"@napi-rs/keyring-win32-x64-msvc":