-
Notifications
You must be signed in to change notification settings - Fork 0
/
package-lock.json
2255 lines (2255 loc) · 82.9 KB
/
package-lock.json
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
{
"name": "music-theory",
"version": "0.1.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "music-theory",
"version": "0.1.0",
"license": "ISC",
"dependencies": {
"@tonaljs/tonal": "^4.8.0",
"@types/readline-sync": "^1.4.4",
"ascii-table": "^0.0.9",
"ascii-table3": "^0.7.8",
"chalk": "^4.1.2",
"commander": "^11.0.0",
"easymidi": "^3.0.1",
"inquirer": "^8.2.5",
"inquirer-interrupted-prompt": "^2.0.1",
"nodemon": "^2.0.15",
"readline-sync": "^1.4.10",
"vitest": "^0.32.2"
},
"devDependencies": {
"@type-challenges/utils": "^0.1.1",
"@types/inquirer": "^9.0.3",
"@types/node": "^18.11.9",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
},
"node_modules/@cspotcode/source-map-support": {
"version": "0.8.1",
"resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz",
"integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==",
"dev": true,
"dependencies": {
"@jridgewell/trace-mapping": "0.3.9"
},
"engines": {
"node": ">=12"
}
},
"node_modules/@jest/schemas": {
"version": "29.6.3",
"resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz",
"integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==",
"dependencies": {
"@sinclair/typebox": "^0.27.8"
},
"engines": {
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
"node_modules/@jridgewell/resolve-uri": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz",
"integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==",
"dev": true,
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@jridgewell/sourcemap-codec": {
"version": "1.4.15",
"resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz",
"integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg=="
},
"node_modules/@jridgewell/trace-mapping": {
"version": "0.3.9",
"resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz",
"integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==",
"dev": true,
"dependencies": {
"@jridgewell/resolve-uri": "^3.0.3",
"@jridgewell/sourcemap-codec": "^1.4.10"
}
},
"node_modules/@julusian/midi": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/@julusian/midi/-/midi-3.2.0.tgz",
"integrity": "sha512-BvyzzHYkbIz72y8Ay8Od2PgG1/QNOUk0yd57ra71PaNJbFhwlAWas57TIi2YTeeNolrQE72B3DkLRs5COcTWeg==",
"hasInstallScript": true,
"dependencies": {
"node-addon-api": "^6.1.0",
"pkg-prebuilds": "^0.2.1"
},
"engines": {
"node": ">=14.15"
}
},
"node_modules/@sinclair/typebox": {
"version": "0.27.8",
"resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz",
"integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA=="
},
"node_modules/@tonaljs/abc-notation": {
"version": "4.8.1",
"resolved": "https://registry.npmjs.org/@tonaljs/abc-notation/-/abc-notation-4.8.1.tgz",
"integrity": "sha512-eTU5pttxr0WFT65LtkFJlHW4R4T6WLqDqCF1qtfinNrldbWlM+nK5eR+WTlvPsOLeTJsAkU6YhHKdC0E6dRz6Q==",
"dependencies": {
"@tonaljs/core": "^4.10.3"
}
},
"node_modules/@tonaljs/array": {
"version": "4.8.1",
"resolved": "https://registry.npmjs.org/@tonaljs/array/-/array-4.8.1.tgz",
"integrity": "sha512-kCSCGB0bQg9jIx5hORsduUFEQQ6TiiYT2sN4nMLlc1Pd3nq4Kj/OO3c9sJ7PJ1NIOmCXBkDyaCEjcmWOtQ05Hw==",
"dependencies": {
"@tonaljs/core": "^4.10.3"
}
},
"node_modules/@tonaljs/chord": {
"version": "4.10.2",
"resolved": "https://registry.npmjs.org/@tonaljs/chord/-/chord-4.10.2.tgz",
"integrity": "sha512-Zlqtq6c6T4y+EqvwHRQp9icEjHqyniCpnIwwCFg5amgAQwXmWzarouOOSmcdJ1Is92eEvcPVuCoLiVUtajS30A==",
"dependencies": {
"@tonaljs/chord-detect": "^4.8.1",
"@tonaljs/chord-type": "^4.8.2",
"@tonaljs/collection": "^4.8.0",
"@tonaljs/core": "^4.10.0",
"@tonaljs/pcset": "^4.8.2",
"@tonaljs/scale-type": "^4.8.2"
}
},
"node_modules/@tonaljs/chord-detect": {
"version": "4.8.3",
"resolved": "https://registry.npmjs.org/@tonaljs/chord-detect/-/chord-detect-4.8.3.tgz",
"integrity": "sha512-UrXddrt7/CUeqU+flh1wRPpvqBWYx1JN59OGCV9LMEdoYx2kaVq8b3vTl85eJ2R9HY5b/i/99qEjHAsi21RnnQ==",
"dependencies": {
"@tonaljs/chord-type": "^5.0.3",
"@tonaljs/core": "^4.10.3",
"@tonaljs/pcset": "^4.8.3"
}
},
"node_modules/@tonaljs/chord-detect/node_modules/@tonaljs/chord-type": {
"version": "5.0.3",
"resolved": "https://registry.npmjs.org/@tonaljs/chord-type/-/chord-type-5.0.3.tgz",
"integrity": "sha512-M4+gCmmOFwmwvFlb0rvXcWW0P4KxHU61lNgSVMCKQ7TPbBJPl2hWYuur2Yx3bYVdTvm3lwsx2lv5nzVlxB6GGg==",
"dependencies": {
"@tonaljs/core": "^4.10.3",
"@tonaljs/pcset": "^4.8.3"
}
},
"node_modules/@tonaljs/chord-type": {
"version": "4.8.2",
"resolved": "https://registry.npmjs.org/@tonaljs/chord-type/-/chord-type-4.8.2.tgz",
"integrity": "sha512-GzSTjQmZjkUdPhyesFDeJbxpW8R7L/bAE34E8ApGAh9FMcKYpRdX3Tn+gkluRsXOiRMfW07p3E0Adx4bjtyN+Q==",
"dependencies": {
"@tonaljs/core": "^4.8.0",
"@tonaljs/pcset": "^4.8.2"
}
},
"node_modules/@tonaljs/collection": {
"version": "4.8.1",
"resolved": "https://registry.npmjs.org/@tonaljs/collection/-/collection-4.8.1.tgz",
"integrity": "sha512-2TaiK9QEjOCkV7jW2B9uo5FPetNoiS9//nNPWXOWjB/E9KGd2SV1THEuxLx1Ew3uXUQpezup5adNljbZtOHbrA=="
},
"node_modules/@tonaljs/core": {
"version": "4.10.3",
"resolved": "https://registry.npmjs.org/@tonaljs/core/-/core-4.10.3.tgz",
"integrity": "sha512-8J/RcIYLRS1tYG/ZLUdW234HhWNwMKrH+clrGBwOnu8qTiB7eHj97oPiPleW9UfjHmAAw3bA/S9dCvKD9UONGg==",
"dependencies": {
"@tonaljs/pitch": "^5.0.1",
"@tonaljs/pitch-distance": "^5.0.1",
"@tonaljs/pitch-interval": "^5.0.1",
"@tonaljs/pitch-note": "^5.0.1"
}
},
"node_modules/@tonaljs/duration-value": {
"version": "4.8.1",
"resolved": "https://registry.npmjs.org/@tonaljs/duration-value/-/duration-value-4.8.1.tgz",
"integrity": "sha512-/jP8Q+z2h+2+IBeTsyF9KWedqu8Jffhvp17/H6pxUJ7b1U+HNdn5G7KfXbblEqhykYSKTSKK/m+86M7j4RnAgw=="
},
"node_modules/@tonaljs/interval": {
"version": "4.8.1",
"resolved": "https://registry.npmjs.org/@tonaljs/interval/-/interval-4.8.1.tgz",
"integrity": "sha512-sB119Oz0oWTwpP4Rhkqgk2P/jmdmO8nWW0uEWTF1GHarg8t/txusEAwGmh4qnBGJpVGUVKVwI//njYvJR4bdEg==",
"dependencies": {
"@tonaljs/core": "^4.10.3"
}
},
"node_modules/@tonaljs/key": {
"version": "4.9.2",
"resolved": "https://registry.npmjs.org/@tonaljs/key/-/key-4.9.2.tgz",
"integrity": "sha512-XSE8RffAf1BKVE9R0Q54OZe30QxnPvaI+yhteHZcyL961s1GomD0E1B+bDS1/lxXYcXAt97vKKE4f9OKlRvRgQ==",
"dependencies": {
"@tonaljs/core": "^4.10.3",
"@tonaljs/note": "^4.10.1",
"@tonaljs/roman-numeral": "^4.8.1"
}
},
"node_modules/@tonaljs/midi": {
"version": "4.9.1",
"resolved": "https://registry.npmjs.org/@tonaljs/midi/-/midi-4.9.1.tgz",
"integrity": "sha512-hAsjaN71ZVRu1MHrnsWt/Vjtb8sbYs9AVuz1YNAMggSAsw8OJm3gydO0FiovzPlCQAwBs9mbAx9umxYypUNNPw==",
"dependencies": {
"@tonaljs/core": "^4.10.3"
}
},
"node_modules/@tonaljs/mode": {
"version": "4.8.2",
"resolved": "https://registry.npmjs.org/@tonaljs/mode/-/mode-4.8.2.tgz",
"integrity": "sha512-wkjxrfgtfk1Gdj9pRIbHMQat+/VU2Fqb/zlC1EIhmbR/al0Vom7m0RGD1gujyOv4niObpGTSPavhVInhvIlWmA==",
"dependencies": {
"@tonaljs/collection": "^4.8.1",
"@tonaljs/core": "^4.10.3",
"@tonaljs/interval": "^4.8.1",
"@tonaljs/pcset": "^4.8.3",
"@tonaljs/scale-type": "^4.8.3"
}
},
"node_modules/@tonaljs/note": {
"version": "4.10.1",
"resolved": "https://registry.npmjs.org/@tonaljs/note/-/note-4.10.1.tgz",
"integrity": "sha512-IxjwHwINDR8HB1S+qhKXPz/N5glljh41GJpRnBr34LzjrRugrkb1tmST23d0RXzSlhvbDDU9oUReskhE12wybQ==",
"dependencies": {
"@tonaljs/core": "^4.10.3",
"@tonaljs/midi": "^4.9.1"
}
},
"node_modules/@tonaljs/pcset": {
"version": "4.9.0",
"resolved": "https://registry.npmjs.org/@tonaljs/pcset/-/pcset-4.9.0.tgz",
"integrity": "sha512-KitobE64ufgQmxhlUNnp303sSGCINIC2OQteV/+LLxZjz7o6WjVaYwfYaO8GCJUtuGMt+4IEsc9VY/Y8llRBNQ==",
"dependencies": {
"@tonaljs/collection": "^4.8.1",
"@tonaljs/core": "^4.10.3"
}
},
"node_modules/@tonaljs/pitch": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/@tonaljs/pitch/-/pitch-5.0.1.tgz",
"integrity": "sha512-5HYkF4hGY0jS2y5V3Hf5gNFXX46kT4cAcI7JLEn+qQb9N1dU9Gz9koI9di0mD1Tbam+kviceiCsJl4WX/FqYjA=="
},
"node_modules/@tonaljs/pitch-distance": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/@tonaljs/pitch-distance/-/pitch-distance-5.0.1.tgz",
"integrity": "sha512-9v/R5xtph3XavGLsL16/FuJiMUAcczT0q9tctFkGl73cTxdHzLYwsflzVV5zeWBG3MNp7IekDegn+uV6B+EKcA==",
"dependencies": {
"@tonaljs/pitch": "^5.0.1",
"@tonaljs/pitch-interval": "^5.0.1",
"@tonaljs/pitch-note": "^5.0.1"
}
},
"node_modules/@tonaljs/pitch-interval": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/@tonaljs/pitch-interval/-/pitch-interval-5.0.1.tgz",
"integrity": "sha512-tr+De3H7dN5v0NHlVTFOD8nodbuvUf6Mn3kCLMFrc1OucHXKZiD+dMTEC62iexjHMFi9ZAlYF08ZRJzmDlpJtw==",
"dependencies": {
"@tonaljs/pitch": "^5.0.1"
}
},
"node_modules/@tonaljs/pitch-note": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/@tonaljs/pitch-note/-/pitch-note-5.0.1.tgz",
"integrity": "sha512-hRpyU06BOp4UYKZBpfS751o88WWbs3VX6sGqmhm0ggyQZpSeCi+DNQqL4eUG/0SfHivbW4HTmblA8b+tyQu0DQ==",
"dependencies": {
"@tonaljs/pitch": "^5.0.1"
}
},
"node_modules/@tonaljs/progression": {
"version": "4.8.2",
"resolved": "https://registry.npmjs.org/@tonaljs/progression/-/progression-4.8.2.tgz",
"integrity": "sha512-29JvmLzI8tnJ9oA++FcuFB/HEMeHPPgNMHdlre/uxG94foaiPgfTcIV1omQ6GGCuvSCeBHwaIK8JEcfFTJAW1g==",
"dependencies": {
"@tonaljs/chord": "^5.0.1",
"@tonaljs/core": "^4.10.3",
"@tonaljs/roman-numeral": "^4.8.1"
}
},
"node_modules/@tonaljs/progression/node_modules/@tonaljs/chord": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/@tonaljs/chord/-/chord-5.0.1.tgz",
"integrity": "sha512-d35G2fXRKc7A0If6iN7CR0pNWmsUv4nUfLvInt2qfQ0Bykqk+VBntgWFg2LT4guPICFPXjY8ljF4PeLgEKbsGA==",
"dependencies": {
"@tonaljs/chord-detect": "^4.8.3",
"@tonaljs/chord-type": "^5.0.3",
"@tonaljs/collection": "^4.8.1",
"@tonaljs/core": "^4.10.3",
"@tonaljs/pcset": "^4.8.3",
"@tonaljs/scale-type": "^4.8.3"
}
},
"node_modules/@tonaljs/progression/node_modules/@tonaljs/chord-type": {
"version": "5.0.3",
"resolved": "https://registry.npmjs.org/@tonaljs/chord-type/-/chord-type-5.0.3.tgz",
"integrity": "sha512-M4+gCmmOFwmwvFlb0rvXcWW0P4KxHU61lNgSVMCKQ7TPbBJPl2hWYuur2Yx3bYVdTvm3lwsx2lv5nzVlxB6GGg==",
"dependencies": {
"@tonaljs/core": "^4.10.3",
"@tonaljs/pcset": "^4.8.3"
}
},
"node_modules/@tonaljs/range": {
"version": "4.8.2",
"resolved": "https://registry.npmjs.org/@tonaljs/range/-/range-4.8.2.tgz",
"integrity": "sha512-RscCk3HD3oqLdJ38guGOXbVg3ykbmqwwx6txsqeI2aB34txTIByohh5ZlF4fR5wITFbQpRgXyX9mQ3V0bsx7fw==",
"dependencies": {
"@tonaljs/collection": "^4.8.1",
"@tonaljs/midi": "^4.9.1"
}
},
"node_modules/@tonaljs/roman-numeral": {
"version": "4.8.1",
"resolved": "https://registry.npmjs.org/@tonaljs/roman-numeral/-/roman-numeral-4.8.1.tgz",
"integrity": "sha512-M7OAxtdpbLO3Ewd7g72HrPbjbyeXp65WQxuqwhDOLxSsK9cLSEg47l36PmKgbQi2Vy0mBDNC5WFaKH2ywiWzUQ==",
"dependencies": {
"@tonaljs/core": "^4.10.3"
}
},
"node_modules/@tonaljs/scale": {
"version": "4.12.3",
"resolved": "https://registry.npmjs.org/@tonaljs/scale/-/scale-4.12.3.tgz",
"integrity": "sha512-sl2BgfyToxvvbkeyKyhBAB3SrlhrUOXwacvtMwzNfq0dPGpVMbQKlT4w5tP0xjre7+bqHrfUGI2and/TBBffmA==",
"dependencies": {
"@tonaljs/chord-type": "^5.0.3",
"@tonaljs/collection": "^4.8.1",
"@tonaljs/core": "^4.10.3",
"@tonaljs/note": "^4.10.1",
"@tonaljs/pcset": "^4.8.3",
"@tonaljs/scale-type": "^4.8.3"
}
},
"node_modules/@tonaljs/scale-type": {
"version": "4.8.3",
"resolved": "https://registry.npmjs.org/@tonaljs/scale-type/-/scale-type-4.8.3.tgz",
"integrity": "sha512-UKh4O23lnQYEgJt1t9dujR+NC1fI2zBJyPG93tYWf+GIe2qJHCxkScUWgNfRuoxlqwv+a8OdxUttxKTgSfg5rw==",
"dependencies": {
"@tonaljs/core": "^4.10.3",
"@tonaljs/pcset": "^4.8.3"
}
},
"node_modules/@tonaljs/scale/node_modules/@tonaljs/chord-type": {
"version": "5.0.3",
"resolved": "https://registry.npmjs.org/@tonaljs/chord-type/-/chord-type-5.0.3.tgz",
"integrity": "sha512-M4+gCmmOFwmwvFlb0rvXcWW0P4KxHU61lNgSVMCKQ7TPbBJPl2hWYuur2Yx3bYVdTvm3lwsx2lv5nzVlxB6GGg==",
"dependencies": {
"@tonaljs/core": "^4.10.3",
"@tonaljs/pcset": "^4.8.3"
}
},
"node_modules/@tonaljs/time-signature": {
"version": "4.8.1",
"resolved": "https://registry.npmjs.org/@tonaljs/time-signature/-/time-signature-4.8.1.tgz",
"integrity": "sha512-P3h2S1M006LpmPkwuAVS/pP02Hns6pSzKP2ghyit4Lszj4ppwNwcyJ1hgT/TVkiwMbUVbNltTKDraonG+2Xe/g=="
},
"node_modules/@tonaljs/tonal": {
"version": "4.8.0",
"resolved": "https://registry.npmjs.org/@tonaljs/tonal/-/tonal-4.8.0.tgz",
"integrity": "sha512-uAgu7WLnYJVr8xQ0FqO9okSC2amgDfe26oiFmHXaarNtjynKXp8gnH8jUTML0/ijnPYl9rLjzY6Zq2UhZvxFjg==",
"dependencies": {
"@tonaljs/abc-notation": "^4.8.0",
"@tonaljs/array": "^4.8.0",
"@tonaljs/chord": "^4.8.0",
"@tonaljs/chord-type": "^4.8.0",
"@tonaljs/collection": "^4.8.0",
"@tonaljs/core": "^4.8.0",
"@tonaljs/duration-value": "^4.8.0",
"@tonaljs/interval": "^4.8.0",
"@tonaljs/key": "^4.8.0",
"@tonaljs/midi": "^4.8.0",
"@tonaljs/mode": "^4.8.0",
"@tonaljs/note": "^4.8.0",
"@tonaljs/pcset": "^4.8.0",
"@tonaljs/progression": "^4.8.0",
"@tonaljs/range": "^4.8.0",
"@tonaljs/roman-numeral": "^4.8.0",
"@tonaljs/scale": "^4.8.0",
"@tonaljs/scale-type": "^4.8.0",
"@tonaljs/time-signature": "^4.8.0"
}
},
"node_modules/@tsconfig/node10": {
"version": "1.0.9",
"resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz",
"integrity": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==",
"dev": true
},
"node_modules/@tsconfig/node12": {
"version": "1.0.11",
"resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz",
"integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==",
"dev": true
},
"node_modules/@tsconfig/node14": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz",
"integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==",
"dev": true
},
"node_modules/@tsconfig/node16": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz",
"integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==",
"dev": true
},
"node_modules/@type-challenges/utils": {
"version": "0.1.1",
"resolved": "https://registry.npmjs.org/@type-challenges/utils/-/utils-0.1.1.tgz",
"integrity": "sha512-A7ljYfBM+FLw+NDyuYvGBJiCEV9c0lPWEAdzfOAkb3JFqfLl0Iv/WhWMMARHiRKlmmiD1g8gz/507yVvHdQUYA==",
"dev": true
},
"node_modules/@types/chai": {
"version": "4.3.11",
"resolved": "https://registry.npmjs.org/@types/chai/-/chai-4.3.11.tgz",
"integrity": "sha512-qQR1dr2rGIHYlJulmr8Ioq3De0Le9E4MJ5AiaeAETJJpndT1uUNHsGFK3L/UIu+rbkQSdj8J/w2bCsBZc/Y5fQ=="
},
"node_modules/@types/chai-subset": {
"version": "1.3.5",
"resolved": "https://registry.npmjs.org/@types/chai-subset/-/chai-subset-1.3.5.tgz",
"integrity": "sha512-c2mPnw+xHtXDoHmdtcCXGwyLMiauiAyxWMzhGpqHC4nqI/Y5G2XhTampslK2rb59kpcuHon03UH8W6iYUzw88A==",
"dependencies": {
"@types/chai": "*"
}
},
"node_modules/@types/inquirer": {
"version": "9.0.7",
"resolved": "https://registry.npmjs.org/@types/inquirer/-/inquirer-9.0.7.tgz",
"integrity": "sha512-Q0zyBupO6NxGRZut/JdmqYKOnN95Eg5V8Csg3PGKkP+FnvsUZx1jAyK7fztIszxxMuoBA6E3KXWvdZVXIpx60g==",
"dev": true,
"dependencies": {
"@types/through": "*",
"rxjs": "^7.2.0"
}
},
"node_modules/@types/node": {
"version": "18.19.12",
"resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.12.tgz",
"integrity": "sha512-uLcpWEAvatBEubmgCMzWforZbAu1dT9syweWnU3/DNwbeUBq2miP5nG8Y4JL9MDMKWt+7Yv1CSvA8xELdEl54w==",
"dependencies": {
"undici-types": "~5.26.4"
}
},
"node_modules/@types/readline-sync": {
"version": "1.4.8",
"resolved": "https://registry.npmjs.org/@types/readline-sync/-/readline-sync-1.4.8.tgz",
"integrity": "sha512-BL7xOf0yKLA6baAX6MMOnYkoflUyj/c7y3pqMRfU0va7XlwHAOTOIo4x55P/qLfMsuaYdJJKubToLqRVmRtRZA=="
},
"node_modules/@types/through": {
"version": "0.0.33",
"resolved": "https://registry.npmjs.org/@types/through/-/through-0.0.33.tgz",
"integrity": "sha512-HsJ+z3QuETzP3cswwtzt2vEIiHBk/dCcHGhbmG5X3ecnwFD/lPrMpliGXxSCg03L9AhrdwA4Oz/qfspkDW+xGQ==",
"dev": true,
"dependencies": {
"@types/node": "*"
}
},
"node_modules/@vitest/expect": {
"version": "0.32.4",
"resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-0.32.4.tgz",
"integrity": "sha512-m7EPUqmGIwIeoU763N+ivkFjTzbaBn0n9evsTOcde03ugy2avPs3kZbYmw3DkcH1j5mxhMhdamJkLQ6dM1bk/A==",
"dependencies": {
"@vitest/spy": "0.32.4",
"@vitest/utils": "0.32.4",
"chai": "^4.3.7"
},
"funding": {
"url": "https://opencollective.com/vitest"
}
},
"node_modules/@vitest/runner": {
"version": "0.32.4",
"resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-0.32.4.tgz",
"integrity": "sha512-cHOVCkiRazobgdKLnczmz2oaKK9GJOw6ZyRcaPdssO1ej+wzHVIkWiCiNacb3TTYPdzMddYkCgMjZ4r8C0JFCw==",
"dependencies": {
"@vitest/utils": "0.32.4",
"p-limit": "^4.0.0",
"pathe": "^1.1.1"
},
"funding": {
"url": "https://opencollective.com/vitest"
}
},
"node_modules/@vitest/snapshot": {
"version": "0.32.4",
"resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-0.32.4.tgz",
"integrity": "sha512-IRpyqn9t14uqsFlVI2d7DFMImGMs1Q9218of40bdQQgMePwVdmix33yMNnebXcTzDU5eiV3eUsoxxH5v0x/IQA==",
"dependencies": {
"magic-string": "^0.30.0",
"pathe": "^1.1.1",
"pretty-format": "^29.5.0"
},
"funding": {
"url": "https://opencollective.com/vitest"
}
},
"node_modules/@vitest/spy": {
"version": "0.32.4",
"resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-0.32.4.tgz",
"integrity": "sha512-oA7rCOqVOOpE6rEoXuCOADX7Lla1LIa4hljI2MSccbpec54q+oifhziZIJXxlE/CvI2E+ElhBHzVu0VEvJGQKQ==",
"dependencies": {
"tinyspy": "^2.1.1"
},
"funding": {
"url": "https://opencollective.com/vitest"
}
},
"node_modules/@vitest/utils": {
"version": "0.32.4",
"resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-0.32.4.tgz",
"integrity": "sha512-Gwnl8dhd1uJ+HXrYyV0eRqfmk9ek1ASE/LWfTCuWMw+d07ogHqp4hEAV28NiecimK6UY9DpSEPh+pXBA5gtTBg==",
"dependencies": {
"diff-sequences": "^29.4.3",
"loupe": "^2.3.6",
"pretty-format": "^29.5.0"
},
"funding": {
"url": "https://opencollective.com/vitest"
}
},
"node_modules/abbrev": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz",
"integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q=="
},
"node_modules/acorn": {
"version": "8.11.3",
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz",
"integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==",
"bin": {
"acorn": "bin/acorn"
},
"engines": {
"node": ">=0.4.0"
}
},
"node_modules/acorn-walk": {
"version": "8.3.2",
"resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.2.tgz",
"integrity": "sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==",
"engines": {
"node": ">=0.4.0"
}
},
"node_modules/ansi-escapes": {
"version": "4.3.2",
"resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz",
"integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==",
"dependencies": {
"type-fest": "^0.21.3"
},
"engines": {
"node": ">=8"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/ansi-regex": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
"engines": {
"node": ">=8"
}
},
"node_modules/ansi-styles": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"dependencies": {
"color-convert": "^2.0.1"
},
"engines": {
"node": ">=8"
},
"funding": {
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
"node_modules/anymatch": {
"version": "3.1.3",
"resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
"integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
"dependencies": {
"normalize-path": "^3.0.0",
"picomatch": "^2.0.4"
},
"engines": {
"node": ">= 8"
}
},
"node_modules/arg": {
"version": "4.1.3",
"resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz",
"integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==",
"dev": true
},
"node_modules/ascii-table": {
"version": "0.0.9",
"resolved": "https://registry.npmjs.org/ascii-table/-/ascii-table-0.0.9.tgz",
"integrity": "sha512-xpkr6sCDIYTPqzvjG8M3ncw1YOTaloWZOyrUmicoEifBEKzQzt+ooUpRpQ/AbOoJfO/p2ZKiyp79qHThzJDulQ=="
},
"node_modules/ascii-table3": {
"version": "0.7.8",
"resolved": "https://registry.npmjs.org/ascii-table3/-/ascii-table3-0.7.8.tgz",
"integrity": "sha512-jFvoTMn25FkKDKXNZb2loTp/8VE7lL+azEOlTVk5aBE1gMU8tmw7yGwNyDCbmSHl+ECvry4lwr7BD1cQe3BUeQ==",
"dependencies": {
"printable-characters": "^1.0.42"
},
"engines": {
"node": ">=11.14.0"
}
},
"node_modules/assertion-error": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz",
"integrity": "sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==",
"engines": {
"node": "*"
}
},
"node_modules/balanced-match": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
"integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
},
"node_modules/base64-js": {
"version": "1.5.1",
"resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
"integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/feross"
},
{
"type": "patreon",
"url": "https://www.patreon.com/feross"
},
{
"type": "consulting",
"url": "https://feross.org/support"
}
]
},
"node_modules/binary-extensions": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz",
"integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==",
"engines": {
"node": ">=8"
}
},
"node_modules/bl": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz",
"integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==",
"dependencies": {
"buffer": "^5.5.0",
"inherits": "^2.0.4",
"readable-stream": "^3.4.0"
}
},
"node_modules/brace-expansion": {
"version": "1.1.11",
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
"integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
"dependencies": {
"balanced-match": "^1.0.0",
"concat-map": "0.0.1"
}
},
"node_modules/braces": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
"integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
"dependencies": {
"fill-range": "^7.0.1"
},
"engines": {
"node": ">=8"
}
},
"node_modules/buffer": {
"version": "5.7.1",
"resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
"integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/feross"
},
{
"type": "patreon",
"url": "https://www.patreon.com/feross"
},
{
"type": "consulting",
"url": "https://feross.org/support"
}
],
"dependencies": {
"base64-js": "^1.3.1",
"ieee754": "^1.1.13"
}
},
"node_modules/cac": {
"version": "6.7.14",
"resolved": "https://registry.npmjs.org/cac/-/cac-6.7.14.tgz",
"integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==",
"engines": {
"node": ">=8"
}
},
"node_modules/chai": {
"version": "4.4.1",
"resolved": "https://registry.npmjs.org/chai/-/chai-4.4.1.tgz",
"integrity": "sha512-13sOfMv2+DWduEU+/xbun3LScLoqN17nBeTLUsmDfKdoiC1fr0n9PU4guu4AhRcOVFk/sW8LyZWHuhWtQZiF+g==",
"dependencies": {
"assertion-error": "^1.1.0",
"check-error": "^1.0.3",
"deep-eql": "^4.1.3",
"get-func-name": "^2.0.2",
"loupe": "^2.3.6",
"pathval": "^1.1.1",
"type-detect": "^4.0.8"
},
"engines": {
"node": ">=4"
}
},
"node_modules/chalk": {
"version": "4.1.2",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
"dependencies": {
"ansi-styles": "^4.1.0",
"supports-color": "^7.1.0"
},
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/chalk/chalk?sponsor=1"
}
},
"node_modules/chardet": {
"version": "0.7.0",
"resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz",
"integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA=="
},
"node_modules/check-error": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/check-error/-/check-error-1.0.3.tgz",
"integrity": "sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==",
"dependencies": {
"get-func-name": "^2.0.2"
},
"engines": {
"node": "*"
}
},
"node_modules/chokidar": {
"version": "3.5.3",
"resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz",
"integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==",
"funding": [
{
"type": "individual",
"url": "https://paulmillr.com/funding/"
}
],
"dependencies": {
"anymatch": "~3.1.2",
"braces": "~3.0.2",
"glob-parent": "~5.1.2",
"is-binary-path": "~2.1.0",
"is-glob": "~4.0.1",
"normalize-path": "~3.0.0",
"readdirp": "~3.6.0"
},
"engines": {
"node": ">= 8.10.0"
},
"optionalDependencies": {
"fsevents": "~2.3.2"
}
},
"node_modules/cli-cursor": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz",
"integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==",
"dependencies": {
"restore-cursor": "^3.1.0"
},
"engines": {
"node": ">=8"
}
},
"node_modules/cli-spinners": {
"version": "2.9.2",
"resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz",
"integrity": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==",
"engines": {
"node": ">=6"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/cli-width": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz",
"integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==",
"engines": {
"node": ">= 10"
}
},
"node_modules/cliui": {
"version": "8.0.1",
"resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz",
"integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==",
"dependencies": {
"string-width": "^4.2.0",
"strip-ansi": "^6.0.1",
"wrap-ansi": "^7.0.0"
},
"engines": {
"node": ">=12"
}
},
"node_modules/cliui/node_modules/wrap-ansi": {
"version": "7.0.0",
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
"integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
"dependencies": {
"ansi-styles": "^4.0.0",
"string-width": "^4.1.0",
"strip-ansi": "^6.0.0"
},
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
}
},
"node_modules/clone": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz",
"integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==",
"engines": {
"node": ">=0.8"
}
},
"node_modules/color-convert": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
"dependencies": {
"color-name": "~1.1.4"
},
"engines": {
"node": ">=7.0.0"
}
},
"node_modules/color-name": {
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
},
"node_modules/commander": {
"version": "11.1.0",
"resolved": "https://registry.npmjs.org/commander/-/commander-11.1.0.tgz",
"integrity": "sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==",
"engines": {
"node": ">=16"
}
},
"node_modules/concat-map": {
"version": "0.0.1",
"resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
"integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg=="
},
"node_modules/create-require": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz",
"integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==",
"dev": true
},
"node_modules/debug": {
"version": "3.2.7",
"resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
"integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
"dependencies": {
"ms": "^2.1.1"
}
},
"node_modules/deep-eql": {
"version": "4.1.3",
"resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-4.1.3.tgz",
"integrity": "sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==",
"dependencies": {
"type-detect": "^4.0.0"
},
"engines": {
"node": ">=6"
}
},
"node_modules/defaults": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz",
"integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==",
"dependencies": {
"clone": "^1.0.2"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/diff": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz",
"integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==",
"dev": true,
"engines": {
"node": ">=0.3.1"
}
},
"node_modules/diff-sequences": {
"version": "29.6.3",
"resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz",
"integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==",
"engines": {
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
"node_modules/easymidi": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/easymidi/-/easymidi-3.1.0.tgz",
"integrity": "sha512-bxEwfPysM1L+SO/qwHaYu9dvTxw2QHFjGV9EMzqGQJbhEP2MupKpg6eJMkj+uoXN0Ep1JhVPLbNLPmt3UkZRTw==",
"dependencies": {
"@julusian/midi": "^3.0.0-3"
},
"engines": {
"node": ">=14.15"
}
},
"node_modules/emoji-regex": {
"version": "8.0.0",
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="
},
"node_modules/escalade": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz",
"integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==",
"engines": {
"node": ">=6"
}
},
"node_modules/escape-string-regexp": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
"integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==",
"engines": {
"node": ">=0.8.0"
}
},
"node_modules/external-editor": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz",
"integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==",
"dependencies": {
"chardet": "^0.7.0",
"iconv-lite": "^0.4.24",
"tmp": "^0.0.33"
},
"engines": {
"node": ">=4"
}
},
"node_modules/figures": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz",
"integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==",
"dependencies": {
"escape-string-regexp": "^1.0.5"
},
"engines": {
"node": ">=8"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/fill-range": {
"version": "7.0.1",
"resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
"integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
"dependencies": {
"to-regex-range": "^5.0.1"
},
"engines": {
"node": ">=8"
}
},
"node_modules/get-caller-file": {