forked from Dashlane/dashlane-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
5632 lines (5038 loc) Β· 194 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
"@aashutoshrathi/word-wrap@npm:^1.2.3":
version: 1.2.6
resolution: "@aashutoshrathi/word-wrap@npm:1.2.6"
checksum: 6eebd12a5cd03cee38fcb915ef9f4ea557df6a06f642dfc7fe8eb4839eb5c9ca55a382f3604d52c14200b0c214c12af5e1f23d2a6d8e23ef2d016b105a9d6c0a
languageName: node
linkType: hard
"@babel/generator@npm:7.23.0":
version: 7.23.0
resolution: "@babel/generator@npm:7.23.0"
dependencies:
"@babel/types": "npm:^7.23.0"
"@jridgewell/gen-mapping": "npm:^0.3.2"
"@jridgewell/trace-mapping": "npm:^0.3.17"
jsesc: "npm:^2.5.1"
checksum: bd1598bd356756065d90ce26968dd464ac2b915c67623f6f071fb487da5f9eb454031a380e20e7c9a7ce5c4a49d23be6cb9efde404952b0b3f3c0c3a9b73d68a
languageName: node
linkType: hard
"@babel/helper-string-parser@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-string-parser@npm:7.22.5"
checksum: 7f275a7f1a9504da06afc33441e219796352a4a3d0288a961bc14d1e30e06833a71621b33c3e60ee3ac1ff3c502d55e392bcbc0665f6f9d2629809696fab7cdd
languageName: node
linkType: hard
"@babel/helper-string-parser@npm:^7.23.4":
version: 7.23.4
resolution: "@babel/helper-string-parser@npm:7.23.4"
checksum: c352082474a2ee1d2b812bd116a56b2e8b38065df9678a32a535f151ec6f58e54633cc778778374f10544b930703cca6ddf998803888a636afa27e2658068a9c
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.22.15":
version: 7.22.15
resolution: "@babel/helper-validator-identifier@npm:7.22.15"
checksum: 4c142549ab5a1235c638d89b52b612a32a123ae19b7da70708385b1e2522530b3c90c85e38604dc6a5fee6a7928b447edacd55176f48a70e103d232eb0da31e5
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: df882d2675101df2d507b95b195ca2f86a3ef28cb711c84f37e79ca23178e13b9f0d8b522774211f51e40168bf5142be4c1c9776a150cddb61a0d5bf3e95750b
languageName: node
linkType: hard
"@babel/parser@npm:7.23.0":
version: 7.23.0
resolution: "@babel/parser@npm:7.23.0"
bin:
parser: ./bin/babel-parser.js
checksum: 201641e068f8cca1ff12b141fcba32d7ccbabc586961bd1b85ae89d9695867f84d57fc2e1176dc4981fd28e5e97ca0e7c32cd688bd5eabb641a302abc0cb5040
languageName: node
linkType: hard
"@babel/types@npm:7.23.0":
version: 7.23.0
resolution: "@babel/types@npm:7.23.0"
dependencies:
"@babel/helper-string-parser": "npm:^7.22.5"
"@babel/helper-validator-identifier": "npm:^7.22.20"
to-fast-properties: "npm:^2.0.0"
checksum: ca5b896a26c91c5672254725c4c892a35567d2122afc47bd5331d1611a7f9230c19fc9ef591a5a6f80bf0d80737e104a9ac205c96447c74bee01d4319db58001
languageName: node
linkType: hard
"@babel/types@npm:^7.23.0":
version: 7.23.6
resolution: "@babel/types@npm:7.23.6"
dependencies:
"@babel/helper-string-parser": "npm:^7.23.4"
"@babel/helper-validator-identifier": "npm:^7.22.20"
to-fast-properties: "npm:^2.0.0"
checksum: 07e70bb94d30b0231396b5e9a7726e6d9227a0a62e0a6830c0bd3232f33b024092e3d5a7d1b096a65bbf2bb43a9ab4c721bf618e115bfbb87b454fa060f88cbf
languageName: node
linkType: hard
"@babel/types@npm:^7.8.3":
version: 7.22.15
resolution: "@babel/types@npm:7.22.15"
dependencies:
"@babel/helper-string-parser": "npm:^7.22.5"
"@babel/helper-validator-identifier": "npm:^7.22.15"
to-fast-properties: "npm:^2.0.0"
checksum: 9f96fce455ca5c0b754b2bdf3894b77659b32f12168b06ac57cfde6fd374d1c746577bac76ad7848174bb2ae29dd48f4f1c4eae63cabac551431d1a7d5d830e6
languageName: node
linkType: hard
"@colors/colors@npm:1.5.0":
version: 1.5.0
resolution: "@colors/colors@npm:1.5.0"
checksum: 9d226461c1e91e95f067be2bdc5e6f99cfe55a721f45afb44122e23e4b8602eeac4ff7325af6b5a369f36396ee1514d3809af3f57769066d80d83790d8e53339
languageName: node
linkType: hard
"@colors/colors@npm:^1.6.0":
version: 1.6.0
resolution: "@colors/colors@npm:1.6.0"
checksum: 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: 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: 14e449a7f42f063f959b472f6ce02d16457a756e852a1910aaa831b63fc21d86f6c32b2a1aa98a4835b856548c926643b51062d241fb6e9b2b7117996053e6b9
languageName: node
linkType: hard
"@dashlane/cli@workspace:.":
version: 0.0.0-use.local
resolution: "@dashlane/cli@workspace:."
dependencies:
"@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.3"
"@node-rs/argon2": "npm:^1.8.0"
"@types/async": "npm:^3.2.24"
"@types/better-sqlite3": "npm:^7.6.9"
"@types/chai": "npm:^4.3.12"
"@types/inquirer": "npm:^8.2.10"
"@types/mocha": "npm:^10.0.6"
"@types/node": "npm:^18.19.24"
"@typescript-eslint/eslint-plugin": "npm:^7.2.0"
"@typescript-eslint/parser": "npm:^7.2.0"
"@yao-pkg/pkg": "npm:^5.11.5"
better-sqlite3: "npm:^9.4.3"
chai: "npm:^4.4.1"
commander: "npm:^11.1.0"
eslint: "npm:^8.57.0"
eslint-config-prettier: "npm:^9.1.0"
eslint-plugin-import: "npm:^2.29.1"
got: "npm:^11.8.6"
husky: "npm:^9.0.11"
inquirer: "npm:^8.2.6"
inquirer-search-list: "npm:^1.2.6"
jsonpath-plus: "npm:^8.1.0"
mocha: "npm:^10.3.0"
node-mac-auth: "npm:^1.0.0"
otplib: "npm:^12.0.1"
playwright-core: "npm:^1.42.1"
prettier: "npm:^3.2.5"
ts-node: "npm:^10.9.2"
typescript: "npm:^5.4.2"
winston: "npm:^3.12.0"
xml-js: "npm:^1.6.11"
zlib: "npm:^1.0.5"
bin:
dcli: dist/index.js
languageName: unknown
linkType: soft
"@emnapi/core@npm:^0.45.0":
version: 0.45.0
resolution: "@emnapi/core@npm:0.45.0"
dependencies:
tslib: "npm:^2.4.0"
checksum: 7736e53b6af05fe6e3bb49a7f59f93e7951a546704154e3758a408f8e1b2af9a0c88bab4508c02a023eb2baeefaab7fa9f666c4acd549be95684307886a5fadf
languageName: node
linkType: hard
"@emnapi/runtime@npm:^0.45.0":
version: 0.45.0
resolution: "@emnapi/runtime@npm:0.45.0"
dependencies:
tslib: "npm:^2.4.0"
checksum: be9f794e7c52bff178975c7287e48c84bdab63ed7d4f21f9239f8101fcc04f059bff9b1c5d730cf0c7a6d812231a46749208c315bc085bb5170882c1c9163676
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: 8d70bcdcd8cd279049183aca747d6c2ed7092a5cf0cf5916faac1ef37ffa74f0c245c2a3a3d3b9979d9dfdd4ca59257b4c5621db699d637b847a2c5e02f491c2
languageName: node
linkType: hard
"@eslint-community/regexpp@npm:^4.5.1, @eslint-community/regexpp@npm:^4.6.1":
version: 4.8.0
resolution: "@eslint-community/regexpp@npm:4.8.0"
checksum: bca98aff5fd4236ef6030e91bd323e57b8d42705d4ddcdd56041e3c1ff7f4d9eb4a3f1fffcbf0e0400cba0703ea9e496f521ae0ad65f269024d07c56edfa5e08
languageName: node
linkType: hard
"@eslint/eslintrc@npm:^2.1.4":
version: 2.1.4
resolution: "@eslint/eslintrc@npm:2.1.4"
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: 7a3b14f4b40fc1a22624c3f84d9f467a3d9ea1ca6e9a372116cb92507e485260359465b58e25bcb6c9981b155416b98c9973ad9b796053fd7b3f776a6946bce8
languageName: node
linkType: hard
"@eslint/js@npm:8.57.0":
version: 8.57.0
resolution: "@eslint/js@npm:8.57.0"
checksum: 3c501ce8a997cf6cbbaf4ed358af5492875e3550c19b9621413b82caa9ae5382c584b0efa79835639e6e0ddaa568caf3499318e5bdab68643ef4199dce5eb0a0
languageName: node
linkType: hard
"@humanwhocodes/config-array@npm:^0.11.14":
version: 0.11.14
resolution: "@humanwhocodes/config-array@npm:0.11.14"
dependencies:
"@humanwhocodes/object-schema": "npm:^2.0.2"
debug: "npm:^4.3.1"
minimatch: "npm:^3.0.5"
checksum: 3ffb24ecdfab64014a230e127118d50a1a04d11080cbb748bc21629393d100850496456bbcb4e8c438957fe0934430d731042f1264d6a167b62d32fc2863580a
languageName: node
linkType: hard
"@humanwhocodes/module-importer@npm:^1.0.1":
version: 1.0.1
resolution: "@humanwhocodes/module-importer@npm:1.0.1"
checksum: e993950e346331e5a32eefb27948ecdee2a2c4ab3f072b8f566cd213ef485dd50a3ca497050608db91006f5479e43f91a439aef68d2a313bd3ded06909c7c5b3
languageName: node
linkType: hard
"@humanwhocodes/object-schema@npm:^2.0.2":
version: 2.0.2
resolution: "@humanwhocodes/object-schema@npm:2.0.2"
checksum: ef915e3e2f34652f3d383b28a9a99cfea476fa991482370889ab14aac8ecd2b38d47cc21932526c6d949da0daf4a4a6bf629d30f41b0caca25e146819cbfa70e
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: e9ed5fd27c3aec1095e3a16e0c0cf148d1fee55a38665c35f7b3f86a9b5d00d042ddaabc98e8a1cb7463b9378c15f22a94eb35e99469c201453eb8375191f243
languageName: node
linkType: hard
"@jridgewell/gen-mapping@npm:^0.3.2":
version: 0.3.3
resolution: "@jridgewell/gen-mapping@npm:0.3.3"
dependencies:
"@jridgewell/set-array": "npm:^1.0.1"
"@jridgewell/sourcemap-codec": "npm:^1.4.10"
"@jridgewell/trace-mapping": "npm:^0.3.9"
checksum: 072ace159c39ab85944bdabe017c3de15c5e046a4a4a772045b00ff05e2ebdcfa3840b88ae27e897d473eb4d4845b37be3c78e28910c779f5aeeeae2fb7f0cc2
languageName: node
linkType: hard
"@jridgewell/resolve-uri@npm:^3.0.3, @jridgewell/resolve-uri@npm:^3.1.0":
version: 3.1.1
resolution: "@jridgewell/resolve-uri@npm:3.1.1"
checksum: 64d59df8ae1a4e74315eb1b61e012f1c7bc8aac47a3a1e683f6fe7008eab07bc512a742b7aa7c0405685d1421206de58c9c2e6adbfe23832f8bd69408ffc183e
languageName: node
linkType: hard
"@jridgewell/set-array@npm:^1.0.1":
version: 1.1.2
resolution: "@jridgewell/set-array@npm:1.1.2"
checksum: 69a84d5980385f396ff60a175f7177af0b8da4ddb81824cb7016a9ef914eee9806c72b6b65942003c63f7983d4f39a5c6c27185bbca88eb4690b62075602e28e
languageName: node
linkType: hard
"@jridgewell/sourcemap-codec@npm:^1.4.10, @jridgewell/sourcemap-codec@npm:^1.4.14":
version: 1.4.15
resolution: "@jridgewell/sourcemap-codec@npm:1.4.15"
checksum: 89960ac087781b961ad918978975bcdf2051cd1741880469783c42de64239703eab9db5230d776d8e6a09d73bb5e4cb964e07d93ee6e2e7aea5a7d726e865c09
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: 83deafb8e7a5ca98993c2c6eeaa93c270f6f647a4c0dc00deb38c9cf9b2d3b7bf15e8839540155247ef034a052c0ec4466f980bf0c9e2ab63b97d16c0cedd3ff
languageName: node
linkType: hard
"@jridgewell/trace-mapping@npm:^0.3.17":
version: 0.3.22
resolution: "@jridgewell/trace-mapping@npm:0.3.22"
dependencies:
"@jridgewell/resolve-uri": "npm:^3.1.0"
"@jridgewell/sourcemap-codec": "npm:^1.4.14"
checksum: 48d3e3db00dbecb211613649a1849876ba5544a3f41cf5e6b99ea1130272d6cf18591b5b67389bce20f1c871b4ede5900c3b6446a7aab6d0a3b2fe806a834db7
languageName: node
linkType: hard
"@jridgewell/trace-mapping@npm:^0.3.9":
version: 0.3.19
resolution: "@jridgewell/trace-mapping@npm:0.3.19"
dependencies:
"@jridgewell/resolve-uri": "npm:^3.1.0"
"@jridgewell/sourcemap-codec": "npm:^1.4.14"
checksum: 06a2a4e26e3cc369c41144fad7cbee29ba9ea6aca85acc565ec8f2110e298fdbf93986e17da815afae94539dcc03115cdbdbb575d3bea356e167da6987531e4d
languageName: node
linkType: hard
"@json2csv/formatters@npm:^7.0.6":
version: 7.0.6
resolution: "@json2csv/formatters@npm:7.0.6"
checksum: 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: 261cce8eb0f0b8c91dee75ce1b70924a4c8bb7dc7068ede89811c20025b46a903b2e23054f31102543dad73e05072aa652a94f45a47f86e0879c63f557b296e4
languageName: node
linkType: hard
"@json2csv/transforms@npm:^7.0.6":
version: 7.0.6
resolution: "@json2csv/transforms@npm:7.0.6"
checksum: 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: 858e0600409787ba8e3c823afb8b1cc8ea44bd096d223477bd2405298c95e3f0c3a717fc2dbb61b67553b19e887abf340112d484994339096f396bdb0a1e385c
languageName: node
linkType: hard
"@napi-rs/keyring-darwin-arm64@npm:1.1.3":
version: 1.1.3
resolution: "@napi-rs/keyring-darwin-arm64@npm:1.1.3"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@napi-rs/keyring-darwin-x64@npm:1.1.3":
version: 1.1.3
resolution: "@napi-rs/keyring-darwin-x64@npm:1.1.3"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@napi-rs/keyring-freebsd-x64@npm:1.1.3":
version: 1.1.3
resolution: "@napi-rs/keyring-freebsd-x64@npm:1.1.3"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@napi-rs/keyring-linux-arm-gnueabihf@npm:1.1.3":
version: 1.1.3
resolution: "@napi-rs/keyring-linux-arm-gnueabihf@npm:1.1.3"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@napi-rs/keyring-linux-arm64-gnu@npm:1.1.3":
version: 1.1.3
resolution: "@napi-rs/keyring-linux-arm64-gnu@npm:1.1.3"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@napi-rs/keyring-linux-arm64-musl@npm:1.1.3":
version: 1.1.3
resolution: "@napi-rs/keyring-linux-arm64-musl@npm:1.1.3"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
"@napi-rs/keyring-linux-x64-gnu@npm:1.1.3":
version: 1.1.3
resolution: "@napi-rs/keyring-linux-x64-gnu@npm:1.1.3"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@napi-rs/keyring-linux-x64-musl@npm:1.1.3":
version: 1.1.3
resolution: "@napi-rs/keyring-linux-x64-musl@npm:1.1.3"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@napi-rs/keyring-win32-arm64-msvc@npm:1.1.3":
version: 1.1.3
resolution: "@napi-rs/keyring-win32-arm64-msvc@npm:1.1.3"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@napi-rs/keyring-win32-ia32-msvc@npm:1.1.3":
version: 1.1.3
resolution: "@napi-rs/keyring-win32-ia32-msvc@npm:1.1.3"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@napi-rs/keyring-win32-x64-msvc@npm:1.1.3":
version: 1.1.3
resolution: "@napi-rs/keyring-win32-x64-msvc@npm:1.1.3"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@napi-rs/keyring@npm:^1.1.3":
version: 1.1.3
resolution: "@napi-rs/keyring@npm:1.1.3"
dependencies:
"@napi-rs/keyring-darwin-arm64": "npm:1.1.3"
"@napi-rs/keyring-darwin-x64": "npm:1.1.3"
"@napi-rs/keyring-freebsd-x64": "npm:1.1.3"
"@napi-rs/keyring-linux-arm-gnueabihf": "npm:1.1.3"
"@napi-rs/keyring-linux-arm64-gnu": "npm:1.1.3"
"@napi-rs/keyring-linux-arm64-musl": "npm:1.1.3"
"@napi-rs/keyring-linux-x64-gnu": "npm:1.1.3"
"@napi-rs/keyring-linux-x64-musl": "npm:1.1.3"
"@napi-rs/keyring-win32-arm64-msvc": "npm:1.1.3"
"@napi-rs/keyring-win32-ia32-msvc": "npm:1.1.3"
"@napi-rs/keyring-win32-x64-msvc": "npm:1.1.3"
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-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":
optional: true
checksum: cb03a678a23314fe929e47f8489051dc4a988e4bb41c80957a06a789f1d3895f719bd8bd4ed63e16987c7c023c85973cc9b792faea7a967fe62b089bcaf0a516
languageName: node
linkType: hard
"@napi-rs/wasm-runtime@npm:^0.1.1":
version: 0.1.1
resolution: "@napi-rs/wasm-runtime@npm:0.1.1"
dependencies:
"@emnapi/core": "npm:^0.45.0"
"@emnapi/runtime": "npm:^0.45.0"
"@tybys/wasm-util": "npm:^0.8.1"
checksum: 243b07483553ad73265aa8bd591047d28864672a22f3c61848509d1d3fb360b10eb1a012429fdca0eb7d88ef453d2fdfa34ead020e3a2317fbbd4ff35ae41917
languageName: node
linkType: hard
"@node-rs/argon2-android-arm-eabi@npm:1.8.0":
version: 1.8.0
resolution: "@node-rs/argon2-android-arm-eabi@npm:1.8.0"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@node-rs/argon2-android-arm64@npm:1.8.0":
version: 1.8.0
resolution: "@node-rs/argon2-android-arm64@npm:1.8.0"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@node-rs/argon2-darwin-arm64@npm:1.8.0":
version: 1.8.0
resolution: "@node-rs/argon2-darwin-arm64@npm:1.8.0"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@node-rs/argon2-darwin-x64@npm:1.8.0":
version: 1.8.0
resolution: "@node-rs/argon2-darwin-x64@npm:1.8.0"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@node-rs/argon2-freebsd-x64@npm:1.8.0":
version: 1.8.0
resolution: "@node-rs/argon2-freebsd-x64@npm:1.8.0"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@node-rs/argon2-linux-arm-gnueabihf@npm:1.8.0":
version: 1.8.0
resolution: "@node-rs/argon2-linux-arm-gnueabihf@npm:1.8.0"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@node-rs/argon2-linux-arm64-gnu@npm:1.8.0":
version: 1.8.0
resolution: "@node-rs/argon2-linux-arm64-gnu@npm:1.8.0"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@node-rs/argon2-linux-arm64-musl@npm:1.8.0":
version: 1.8.0
resolution: "@node-rs/argon2-linux-arm64-musl@npm:1.8.0"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
"@node-rs/argon2-linux-x64-gnu@npm:1.8.0":
version: 1.8.0
resolution: "@node-rs/argon2-linux-x64-gnu@npm:1.8.0"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@node-rs/argon2-linux-x64-musl@npm:1.8.0":
version: 1.8.0
resolution: "@node-rs/argon2-linux-x64-musl@npm:1.8.0"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@node-rs/argon2-wasm32-wasi@npm:1.8.0":
version: 1.8.0
resolution: "@node-rs/argon2-wasm32-wasi@npm:1.8.0"
dependencies:
"@napi-rs/wasm-runtime": "npm:^0.1.1"
conditions: cpu=wasm32
languageName: node
linkType: hard
"@node-rs/argon2-win32-arm64-msvc@npm:1.8.0":
version: 1.8.0
resolution: "@node-rs/argon2-win32-arm64-msvc@npm:1.8.0"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@node-rs/argon2-win32-ia32-msvc@npm:1.8.0":
version: 1.8.0
resolution: "@node-rs/argon2-win32-ia32-msvc@npm:1.8.0"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@node-rs/argon2-win32-x64-msvc@npm:1.8.0":
version: 1.8.0
resolution: "@node-rs/argon2-win32-x64-msvc@npm:1.8.0"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@node-rs/argon2@npm:^1.8.0":
version: 1.8.0
resolution: "@node-rs/argon2@npm:1.8.0"
dependencies:
"@node-rs/argon2-android-arm-eabi": "npm:1.8.0"
"@node-rs/argon2-android-arm64": "npm:1.8.0"
"@node-rs/argon2-darwin-arm64": "npm:1.8.0"
"@node-rs/argon2-darwin-x64": "npm:1.8.0"
"@node-rs/argon2-freebsd-x64": "npm:1.8.0"
"@node-rs/argon2-linux-arm-gnueabihf": "npm:1.8.0"
"@node-rs/argon2-linux-arm64-gnu": "npm:1.8.0"
"@node-rs/argon2-linux-arm64-musl": "npm:1.8.0"
"@node-rs/argon2-linux-x64-gnu": "npm:1.8.0"
"@node-rs/argon2-linux-x64-musl": "npm:1.8.0"
"@node-rs/argon2-wasm32-wasi": "npm:1.8.0"
"@node-rs/argon2-win32-arm64-msvc": "npm:1.8.0"
"@node-rs/argon2-win32-ia32-msvc": "npm:1.8.0"
"@node-rs/argon2-win32-x64-msvc": "npm:1.8.0"
dependenciesMeta:
"@node-rs/argon2-android-arm-eabi":
optional: true
"@node-rs/argon2-android-arm64":
optional: true
"@node-rs/argon2-darwin-arm64":
optional: true
"@node-rs/argon2-darwin-x64":
optional: true
"@node-rs/argon2-freebsd-x64":
optional: true
"@node-rs/argon2-linux-arm-gnueabihf":
optional: true
"@node-rs/argon2-linux-arm64-gnu":
optional: true
"@node-rs/argon2-linux-arm64-musl":
optional: true
"@node-rs/argon2-linux-x64-gnu":
optional: true
"@node-rs/argon2-linux-x64-musl":
optional: true
"@node-rs/argon2-wasm32-wasi":
optional: true
"@node-rs/argon2-win32-arm64-msvc":
optional: true
"@node-rs/argon2-win32-ia32-msvc":
optional: true
"@node-rs/argon2-win32-x64-msvc":
optional: true
checksum: b6bf4a14e29ae9b2b27326639c4710412971683128dc206001d2d6c6b1dfcc6e2da77f2ce0fc30fda7e44261cacdbabead9f2a478a100f37c2ddeb41a1ff6aa5
languageName: node
linkType: hard
"@nodelib/fs.scandir@npm:2.1.5":
version: 2.1.5
resolution: "@nodelib/fs.scandir@npm:2.1.5"
dependencies:
"@nodelib/fs.stat": "npm:2.0.5"
run-parallel: "npm:^1.1.9"
checksum: 6ab2a9b8a1d67b067922c36f259e3b3dfd6b97b219c540877a4944549a4d49ea5ceba5663905ab5289682f1f3c15ff441d02f0447f620a42e1cb5e1937174d4b
languageName: node
linkType: hard
"@nodelib/fs.stat@npm:2.0.5, @nodelib/fs.stat@npm:^2.0.2":
version: 2.0.5
resolution: "@nodelib/fs.stat@npm:2.0.5"
checksum: 012480b5ca9d97bff9261571dbbec7bbc6033f69cc92908bc1ecfad0792361a5a1994bc48674b9ef76419d056a03efadfce5a6cf6dbc0a36559571a7a483f6f0
languageName: node
linkType: hard
"@nodelib/fs.walk@npm:^1.2.3, @nodelib/fs.walk@npm:^1.2.8":
version: 1.2.8
resolution: "@nodelib/fs.walk@npm:1.2.8"
dependencies:
"@nodelib/fs.scandir": "npm:2.1.5"
fastq: "npm:^1.6.0"
checksum: 40033e33e96e97d77fba5a238e4bba4487b8284678906a9f616b5579ddaf868a18874c0054a75402c9fbaaa033a25ceae093af58c9c30278e35c23c9479e79b0
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: f3a7ab3a31de65e42aeb6ed03ed035ef123d2de7af4deb9d4a003d27acc8618b57d9fb9d259fe6c28ca538032a028f37337264388ba27d26d37fff7dde22476e
languageName: node
linkType: hard
"@otplib/core@npm:^12.0.1":
version: 12.0.1
resolution: "@otplib/core@npm:12.0.1"
checksum: d6edc1ed5fd744cd7be5fd0886e627f42f5e25f9593c7c6f4cac6a64a078eeaf1f70a190f1bb7f366f4eafdabe445c272e699292daa84da266e43b89bb40a6c0
languageName: node
linkType: hard
"@otplib/plugin-crypto@npm:^12.0.1":
version: 12.0.1
resolution: "@otplib/plugin-crypto@npm:12.0.1"
dependencies:
"@otplib/core": "npm:^12.0.1"
checksum: 6867c74ee8aca6c2db9670362cf51e44f3648602c39318bf537421242e33f0012a172acd43bbed9a21d706e535dc4c66aff965380673391e9fd74cf685b5b13a
languageName: node
linkType: hard
"@otplib/plugin-thirty-two@npm:^12.0.1":
version: 12.0.1
resolution: "@otplib/plugin-thirty-two@npm:12.0.1"
dependencies:
"@otplib/core": "npm:^12.0.1"
thirty-two: "npm:^1.0.2"
checksum: 920099e40d3e8c2941291c84c70064c2d86d0d1ed17230d650445d5463340e406bc413ddf2e40c374ddc4ee988ef1e3facacab9b5248b1ff361fd13df52bf88f
languageName: node
linkType: hard
"@otplib/preset-default@npm:^12.0.1":
version: 12.0.1
resolution: "@otplib/preset-default@npm:12.0.1"
dependencies:
"@otplib/core": "npm:^12.0.1"
"@otplib/plugin-crypto": "npm:^12.0.1"
"@otplib/plugin-thirty-two": "npm:^12.0.1"
checksum: 8133231384f6277f77eb8e42ef83bc32a8b01059bef147d1c358d9e9bfd292e1c239f581fe008367a48489dd68952b7ac0948e6c41412fc06079da2c91b71d16
languageName: node
linkType: hard
"@otplib/preset-v11@npm:^12.0.1":
version: 12.0.1
resolution: "@otplib/preset-v11@npm:12.0.1"
dependencies:
"@otplib/core": "npm:^12.0.1"
"@otplib/plugin-crypto": "npm:^12.0.1"
"@otplib/plugin-thirty-two": "npm:^12.0.1"
checksum: 367cb09397e617c21ec748d54e920ab43f1c5dfba70cbfd88edf73aecca399cf0c09fefe32518f79c7ee8a06e7058d14b200da378cc7d46af3cac4e22a153e2f
languageName: node
linkType: hard
"@pkgjs/parseargs@npm:^0.11.0":
version: 0.11.0
resolution: "@pkgjs/parseargs@npm:0.11.0"
checksum: 115e8ceeec6bc69dff2048b35c0ab4f8bbee12d8bb6c1f4af758604586d802b6e669dcb02dda61d078de42c2b4ddce41b3d9e726d7daa6b4b850f4adbf7333ff
languageName: node
linkType: hard
"@sindresorhus/is@npm:^4.0.0":
version: 4.6.0
resolution: "@sindresorhus/is@npm:4.6.0"
checksum: e7f36ed72abfcd5e0355f7423a72918b9748bb1ef370a59f3e5ad8d40b728b85d63b272f65f63eec1faf417cda89dcb0aeebe94015647b6054659c1442fe5ce0
languageName: node
linkType: hard
"@streamparser/json@npm:^0.0.20":
version: 0.0.20
resolution: "@streamparser/json@npm:0.0.20"
checksum: 03220090dcc7a8d9ad9d58fd80e0248c4d9ffdf66626aaa134b1f2d43f190e541c576913952f144461f6a3daf7fe71f73d459d6ec7b5699cdd24614b636e16c8
languageName: node
linkType: hard
"@szmarczak/http-timer@npm:^4.0.5":
version: 4.0.6
resolution: "@szmarczak/http-timer@npm:4.0.6"
dependencies:
defer-to-connect: "npm:^2.0.0"
checksum: c29df3bcec6fc3bdec2b17981d89d9c9fc9bd7d0c9bcfe92821dc533f4440bc890ccde79971838b4ceed1921d456973c4180d7175ee1d0023ad0562240a58d95
languageName: node
linkType: hard
"@tootallnate/once@npm:2":
version: 2.0.0
resolution: "@tootallnate/once@npm:2.0.0"
checksum: ad87447820dd3f24825d2d947ebc03072b20a42bfc96cbafec16bff8bbda6c1a81fcb0be56d5b21968560c5359a0af4038a68ba150c3e1694fe4c109a063bed8
languageName: node
linkType: hard
"@tsconfig/node10@npm:^1.0.7":
version: 1.0.9
resolution: "@tsconfig/node10@npm:1.0.9"
checksum: a33ae4dc2a621c0678ac8ac4bceb8e512ae75dac65417a2ad9b022d9b5411e863c4c198b6ba9ef659e14b9fb609bbec680841a2e84c1172df7a5ffcf076539df
languageName: node
linkType: hard
"@tsconfig/node12@npm:^1.0.7":
version: 1.0.11
resolution: "@tsconfig/node12@npm:1.0.11"
checksum: 5ce29a41b13e7897a58b8e2df11269c5395999e588b9a467386f99d1d26f6c77d1af2719e407621412520ea30517d718d5192a32403b8dfcc163bf33e40a338a
languageName: node
linkType: hard
"@tsconfig/node14@npm:^1.0.0":
version: 1.0.3
resolution: "@tsconfig/node14@npm:1.0.3"
checksum: 19275fe80c4c8d0ad0abed6a96dbf00642e88b220b090418609c4376e1cef81bf16237bf170ad1b341452feddb8115d8dd2e5acdfdea1b27422071163dc9ba9d
languageName: node
linkType: hard
"@tsconfig/node16@npm:^1.0.2":
version: 1.0.4
resolution: "@tsconfig/node16@npm:1.0.4"
checksum: 202319785901f942a6e1e476b872d421baec20cf09f4b266a1854060efbf78cde16a4d256e8bc949d31e6cd9a90f1e8ef8fb06af96a65e98338a2b6b0de0a0ff
languageName: node
linkType: hard
"@tybys/wasm-util@npm:^0.8.1":
version: 0.8.1
resolution: "@tybys/wasm-util@npm:0.8.1"
dependencies:
tslib: "npm:^2.4.0"
checksum: 4e1bb353313225e6c6901b49e969f7963e7802ddad0f79148f759c898d4fcb6761225c9dd622343810b6108a95ae3dfc9a716628dc5c1e40acb776d36d885bc4
languageName: node
linkType: hard
"@types/async@npm:^3.2.24":
version: 3.2.24
resolution: "@types/async@npm:3.2.24"
checksum: 9f330a2fbaa93672a343e456cb81ddd8e5034056116afeafaa04019d20643c4443b4bb03801a24d265c0bc89ffacf1fb8301f2ed62f8f3331682c317fa75d6a5
languageName: node
linkType: hard
"@types/better-sqlite3@npm:^7.6.9":
version: 7.6.9
resolution: "@types/better-sqlite3@npm:7.6.9"
dependencies:
"@types/node": "npm:*"
checksum: 4aab425e51314028f969e543d0c87b5cb93b21c9f584f679817d62f9cbb4afd524f5e026df27315d68f5952e2c2f88f86a1434a1fc377283925a90450be28531
languageName: node
linkType: hard
"@types/cacheable-request@npm:^6.0.1":
version: 6.0.3
resolution: "@types/cacheable-request@npm:6.0.3"
dependencies:
"@types/http-cache-semantics": "npm:*"
"@types/keyv": "npm:^3.1.4"
"@types/node": "npm:*"
"@types/responselike": "npm:^1.0.0"
checksum: 159f9fdb2a1b7175eef453ae2ced5ea04c0d2b9610cc9ccd9f9abb066d36dacb1f37acd879ace10ad7cbb649490723feb396fb7307004c9670be29636304b988
languageName: node
linkType: hard
"@types/chai@npm:^4.3.12":
version: 4.3.12
resolution: "@types/chai@npm:4.3.12"
checksum: cf465151048f438b11e562ac431842f440b50817e74516f1fb349860a0db4fcdd665197f9fbee4387250d8d077496a1167fe2c75af88372bac6d8f093ee07b3a
languageName: node
linkType: hard
"@types/http-cache-semantics@npm:*":
version: 4.0.1
resolution: "@types/http-cache-semantics@npm:4.0.1"
checksum: d059bf8a15d5163cc60da51ba00d17620507f968d0b792cd55f62043016344a5f0e1aa94fa411089d41114035fcd0ea656f968bda7eabb6663a97787e3445a1c
languageName: node
linkType: hard
"@types/inquirer@npm:^8.2.10":
version: 8.2.10
resolution: "@types/inquirer@npm:8.2.10"
dependencies:
"@types/through": "npm:*"
rxjs: "npm:^7.2.0"
checksum: d7c0c5ec95af583191942ac33f8af2eb1fe839da6b4560277a8c251fa289f2dd3a5d14850baf910343700646200258ecff89dc9e1d57df29c16a1082d91a5ae3
languageName: node
linkType: hard
"@types/json-schema@npm:^7.0.12":
version: 7.0.12
resolution: "@types/json-schema@npm:7.0.12"
checksum: 7a72ba9cb7d2b45d7bb032e063c9eeb1ce4102d62551761e84c91f99f8273ba5aaffd34be835869456ec7c40761b4389009d9e777c0020a7227ca0f5e3238e94
languageName: node
linkType: hard
"@types/json5@npm:^0.0.29":
version: 0.0.29
resolution: "@types/json5@npm:0.0.29"
checksum: 4e5aed58cabb2bbf6f725da13421aa50a49abb6bc17bfab6c31b8774b073fa7b50d557c61f961a09a85f6056151190f8ac95f13f5b48136ba5841f7d4484ec56
languageName: node
linkType: hard
"@types/keyv@npm:^3.1.4":
version: 3.1.4
resolution: "@types/keyv@npm:3.1.4"
dependencies:
"@types/node": "npm:*"
checksum: e009a2bfb50e90ca9b7c6e8f648f8464067271fd99116f881073fa6fa76dc8d0133181dd65e6614d5fb1220d671d67b0124aef7d97dc02d7e342ab143a47779d
languageName: node
linkType: hard
"@types/mocha@npm:^10.0.6":
version: 10.0.6
resolution: "@types/mocha@npm:10.0.6"
checksum: fc73626e81e89c32d06b7ff9b72c4177b46d579cdd932f796614adc026852d84cb849d743473ba572cb4d9ea6d8c04e3749552d326c26495ec1c4b46e6e0a0c0
languageName: node
linkType: hard
"@types/node@npm:*":
version: 20.5.9
resolution: "@types/node@npm:20.5.9"
checksum: bb3bf17d7583cfe6b0fca796d20e6b70513fedbe5ed7801789ab39d3f75f8783900595471cedc26eb8989cb54a8026506004764ed2c180f77ecac84c60e0075f
languageName: node
linkType: hard
"@types/node@npm:^18.19.24":
version: 18.19.24
resolution: "@types/node@npm:18.19.24"
dependencies: