forked from be5invis/Iosevka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package-lock.json
6463 lines (6463 loc) · 244 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": "iosevka",
"version": "16.6.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "iosevka",
"version": "16.6.0",
"dependencies": {
"@iarna/toml": "^2.2.5",
"@msgpack/msgpack": "^2.8.0",
"deep-equal": "^2.1.0",
"ot-builder": "^1.5.5",
"otb-ttc-bundle": "^1.5.5",
"semver": "^7.3.8",
"spiro": "^3.0.0",
"toposort": "^2.0.2",
"typo-geom": "^0.12.1",
"uuid": "^9.0.0",
"wawoff2": "^2.0.1"
},
"devDependencies": {
"@unicode/unicode-14.0.0": "^1.3.1",
"cldr": "^7.3.0",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"patel": "^0.38.0",
"prettier": "^2.8.0",
"verda": "^1.11.0",
"which": "^3.0.0"
},
"engines": {
"node": ">=16.0.0"
}
},
"node_modules/@assemblyscript/loader": {
"version": "0.10.1",
"resolved": "https://registry.npmjs.org/@assemblyscript/loader/-/loader-0.10.1.tgz",
"integrity": "sha512-H71nDOOL8Y7kWRLqf6Sums+01Q5msqBW2KhDUTemh1tvY04eSkSXrK0uj/4mmY0Xr16/3zyZmsrxN7CKuRbNRg==",
"dev": true
},
"node_modules/@eslint/eslintrc": {
"version": "1.3.3",
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.3.3.tgz",
"integrity": "sha512-uj3pT6Mg+3t39fvLrj8iuCIJ38zKO9FpGtJ4BBJebJhEwjoT+KLVNCcHT5QC9NGRIEi7fZ0ZR8YRb884auB4Lg==",
"dev": true,
"dependencies": {
"ajv": "^6.12.4",
"debug": "^4.3.2",
"espree": "^9.4.0",
"globals": "^13.15.0",
"ignore": "^5.2.0",
"import-fresh": "^3.2.1",
"js-yaml": "^4.1.0",
"minimatch": "^3.1.2",
"strip-json-comments": "^3.1.1"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"funding": {
"url": "https://opencollective.com/eslint"
}
},
"node_modules/@humanwhocodes/config-array": {
"version": "0.11.7",
"resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.7.tgz",
"integrity": "sha512-kBbPWzN8oVMLb0hOUYXhmxggL/1cJE6ydvjDIGi9EnAGUyA7cLVKQg+d/Dsm+KZwx2czGHrCmMVLiyg8s5JPKw==",
"dev": true,
"dependencies": {
"@humanwhocodes/object-schema": "^1.2.1",
"debug": "^4.1.1",
"minimatch": "^3.0.5"
},
"engines": {
"node": ">=10.10.0"
}
},
"node_modules/@humanwhocodes/module-importer": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
"integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
"dev": true,
"engines": {
"node": ">=12.22"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/nzakas"
}
},
"node_modules/@humanwhocodes/object-schema": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz",
"integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==",
"dev": true
},
"node_modules/@iarna/toml": {
"version": "2.2.5",
"resolved": "https://registry.npmjs.org/@iarna/toml/-/toml-2.2.5.tgz",
"integrity": "sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg=="
},
"node_modules/@msgpack/msgpack": {
"version": "2.8.0",
"resolved": "https://registry.npmjs.org/@msgpack/msgpack/-/msgpack-2.8.0.tgz",
"integrity": "sha512-h9u4u/jiIRKbq25PM+zymTyW6bhTzELvOoUd+AvYriWOAKpLGnIamaET3pnHYoI5iYphAHBI4ayx0MehR+VVPQ==",
"engines": {
"node": ">= 10"
}
},
"node_modules/@nodelib/fs.scandir": {
"version": "2.1.5",
"resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
"integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
"dev": true,
"dependencies": {
"@nodelib/fs.stat": "2.0.5",
"run-parallel": "^1.1.9"
},
"engines": {
"node": ">= 8"
}
},
"node_modules/@nodelib/fs.stat": {
"version": "2.0.5",
"resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
"integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
"dev": true,
"engines": {
"node": ">= 8"
}
},
"node_modules/@nodelib/fs.walk": {
"version": "1.2.8",
"resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
"integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
"dev": true,
"dependencies": {
"@nodelib/fs.scandir": "2.1.5",
"fastq": "^1.6.0"
},
"engines": {
"node": ">= 8"
}
},
"node_modules/@ot-builder/bin-composite-types": {
"version": "1.5.5",
"resolved": "https://registry.npmjs.org/@ot-builder/bin-composite-types/-/bin-composite-types-1.5.5.tgz",
"integrity": "sha512-CK8DmpDC/BILM57mX5jq1aAKRGqHPIRknnBTOtr+kAEdyYPJ28ATAojk7jcBb+tw6WPCdDRmmAj9XvKkXfwTdg==",
"dependencies": {
"@ot-builder/bin-util": "1.5.5",
"@ot-builder/errors": "1.5.5",
"@ot-builder/prelude": "1.5.5",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/bin-util": {
"version": "1.5.5",
"resolved": "https://registry.npmjs.org/@ot-builder/bin-util/-/bin-util-1.5.5.tgz",
"integrity": "sha512-YilwtBHMAcqa+C/8gCqekM4nZkIGkdS64Sd/N4Q2aw68ly3l94hgPOioNRq7Ixju+reg1HHQrn6e/ug8UJ1F4A==",
"dependencies": {
"@ot-builder/common-impl": "1.5.5",
"@ot-builder/errors": "1.5.5",
"@ot-builder/prelude": "1.5.5",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/cli-help-shower": {
"version": "1.5.5",
"resolved": "https://registry.npmjs.org/@ot-builder/cli-help-shower/-/cli-help-shower-1.5.5.tgz",
"integrity": "sha512-TwopK3Xwhhsw8o9rEz4eV4Fov9AvAA4bWSfCpt7vv1E8Ri+oXGVGZKiStjnrQJSr2WaZ4KqZcEvZew8F+ZYDbQ==",
"dependencies": {
"chalk": "^4.1.1",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/cli-proc": {
"version": "1.5.5",
"resolved": "https://registry.npmjs.org/@ot-builder/cli-proc/-/cli-proc-1.5.5.tgz",
"integrity": "sha512-kxwViISxgMpK00eronqF+StDAfWcqF0nIm2l84zs4qJY6ddsBbhVgSNtY19DfDDjJPEEHDoNGEOJYAeyxquRIg==",
"dependencies": {
"@ot-builder/common-impl": "1.5.5",
"@ot-builder/io-bin-font": "1.5.5",
"@ot-builder/ot": "1.5.5",
"@ot-builder/prelude": "1.5.5",
"@ot-builder/primitive": "1.5.5",
"@ot-builder/rectify": "1.5.5",
"@ot-builder/trace": "1.5.5",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/cli-shared": {
"version": "1.5.5",
"resolved": "https://registry.npmjs.org/@ot-builder/cli-shared/-/cli-shared-1.5.5.tgz",
"integrity": "sha512-lqIaWGEJ+Xw3tJLF7faX5gH7GWaNLjRnnadiR/fK6o2wdRhjEiw+DQa4hmE9mXdBCNaAxPSDkRR3GA6hvsw4lA==",
"dependencies": {
"@ot-builder/io-bin-font": "1.5.5",
"@ot-builder/ot": "1.5.5",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/common-impl": {
"version": "1.5.5",
"resolved": "https://registry.npmjs.org/@ot-builder/common-impl/-/common-impl-1.5.5.tgz",
"integrity": "sha512-BhNB6m/dIaXMUbRlYLcmnEYwFoPVcvUD7fpij2wL/sbuSXh5IVj/wvcGqNDaRMJN7jWF1iApoWYb25s2cMI0eg==",
"dependencies": {
"@ot-builder/prelude": "1.5.5",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/errors": {
"version": "1.5.5",
"resolved": "https://registry.npmjs.org/@ot-builder/errors/-/errors-1.5.5.tgz",
"integrity": "sha512-r1/31jN6MXb+sUMgFa7fl7cvh6WbyUrWHtU2aWNXo+v3ANF02pAANm3kHRYeo1A5hbsPdpYGT59eA2wKsFv6pg==",
"dependencies": {
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/io-bin-cff": {
"version": "1.5.5",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-cff/-/io-bin-cff-1.5.5.tgz",
"integrity": "sha512-fZXVdnCsV2xGd12ixn/ZD7I73NUJty2RzAru0/SPcKh9+MM9+0WAaC8K2959JoK1k+uWTwkm9GfVFWBrqgkm1Q==",
"dependencies": {
"@ot-builder/bin-composite-types": "1.5.5",
"@ot-builder/bin-util": "1.5.5",
"@ot-builder/common-impl": "1.5.5",
"@ot-builder/errors": "1.5.5",
"@ot-builder/ot-glyphs": "1.5.5",
"@ot-builder/ot-metadata": "1.5.5",
"@ot-builder/prelude": "1.5.5",
"@ot-builder/primitive": "1.5.5",
"@ot-builder/stat-glyphs": "1.5.5",
"@ot-builder/var-store": "1.5.5",
"@ot-builder/variance": "1.5.5",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/io-bin-encoding": {
"version": "1.5.5",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-encoding/-/io-bin-encoding-1.5.5.tgz",
"integrity": "sha512-f9H94M2v3DaLQpWV9sG2e5vYubzI+I2AXlRCKplexfSWoIU7Wsusb3ZNXs+rWB3tFKTOVjwZ2c8prSNsKVPZWA==",
"dependencies": {
"@ot-builder/bin-util": "1.5.5",
"@ot-builder/errors": "1.5.5",
"@ot-builder/io-bin-sfnt": "1.5.5",
"@ot-builder/ot-encoding": "1.5.5",
"@ot-builder/ot-glyphs": "1.5.5",
"@ot-builder/ot-metadata": "1.5.5",
"@ot-builder/ot-sfnt": "1.5.5",
"@ot-builder/prelude": "1.5.5",
"@ot-builder/primitive": "1.5.5",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/io-bin-ext-private": {
"version": "1.5.5",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-ext-private/-/io-bin-ext-private-1.5.5.tgz",
"integrity": "sha512-kuybGd55HbVW+6E05yZLmR98IhH+BiwjHgyOq2+/DiD5iSE/SCqtqHJ7Gs94UfJp16PaCCnWDXjcJdkSPMhqKg==",
"dependencies": {
"@ot-builder/bin-util": "1.5.5",
"@ot-builder/errors": "1.5.5",
"@ot-builder/io-bin-sfnt": "1.5.5",
"@ot-builder/ot-ext-private": "1.5.5",
"@ot-builder/ot-glyphs": "1.5.5",
"@ot-builder/ot-metadata": "1.5.5",
"@ot-builder/ot-sfnt": "1.5.5",
"@ot-builder/prelude": "1.5.5",
"@ot-builder/primitive": "1.5.5",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/io-bin-font": {
"version": "1.5.5",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-font/-/io-bin-font-1.5.5.tgz",
"integrity": "sha512-JCAYsJIXiV0nYrWZHK9WV1YgGkz+nNbngziQyTNoO4qp8qmrvuc0cCwd6TOwuBapgfd7WJTyW2h5RVqbICxZ3g==",
"dependencies": {
"@ot-builder/bin-util": "1.5.5",
"@ot-builder/io-bin-encoding": "1.5.5",
"@ot-builder/io-bin-ext-private": "1.5.5",
"@ot-builder/io-bin-glyph-store": "1.5.5",
"@ot-builder/io-bin-layout": "1.5.5",
"@ot-builder/io-bin-metadata": "1.5.5",
"@ot-builder/io-bin-name": "1.5.5",
"@ot-builder/io-bin-sfnt": "1.5.5",
"@ot-builder/io-bin-vtt-private": "1.5.5",
"@ot-builder/ot": "1.5.5",
"@ot-builder/ot-encoding": "1.5.5",
"@ot-builder/ot-ext-private": "1.5.5",
"@ot-builder/ot-glyphs": "1.5.5",
"@ot-builder/ot-layout": "1.5.5",
"@ot-builder/ot-metadata": "1.5.5",
"@ot-builder/ot-name": "1.5.5",
"@ot-builder/ot-sfnt": "1.5.5",
"@ot-builder/ot-vtt-private": "1.5.5",
"@ot-builder/prelude": "1.5.5",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/io-bin-glyph-store": {
"version": "1.5.5",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-glyph-store/-/io-bin-glyph-store-1.5.5.tgz",
"integrity": "sha512-9NurbkwdnmlnHEKzFRcrwleTU2PL8T++Gjl8TqDUZ+O2+RoNDOjZ8j0JnARv6+yj7w1+uFZlrdDd2r+/Hox5bQ==",
"dependencies": {
"@ot-builder/bin-util": "1.5.5",
"@ot-builder/common-impl": "1.5.5",
"@ot-builder/errors": "1.5.5",
"@ot-builder/io-bin-cff": "1.5.5",
"@ot-builder/io-bin-metric": "1.5.5",
"@ot-builder/io-bin-sfnt": "1.5.5",
"@ot-builder/io-bin-ttf": "1.5.5",
"@ot-builder/ot-glyphs": "1.5.5",
"@ot-builder/ot-metadata": "1.5.5",
"@ot-builder/ot-sfnt": "1.5.5",
"@ot-builder/prelude": "1.5.5",
"@ot-builder/primitive": "1.5.5",
"@ot-builder/stat-glyphs": "1.5.5",
"@ot-builder/var-store": "1.5.5",
"@ot-builder/variance": "1.5.5",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/io-bin-layout": {
"version": "1.5.5",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-layout/-/io-bin-layout-1.5.5.tgz",
"integrity": "sha512-mbI3XHVw++lUJPxtiUEBP+Cxxr38cJ9fdENH00snSyBAaM4NifYUcVab51Hw1idYqGhtT+HdXUDql5fHqmGLrg==",
"dependencies": {
"@ot-builder/bin-composite-types": "1.5.5",
"@ot-builder/bin-util": "1.5.5",
"@ot-builder/common-impl": "1.5.5",
"@ot-builder/errors": "1.5.5",
"@ot-builder/io-bin-sfnt": "1.5.5",
"@ot-builder/ot-glyphs": "1.5.5",
"@ot-builder/ot-layout": "1.5.5",
"@ot-builder/ot-metadata": "1.5.5",
"@ot-builder/ot-sfnt": "1.5.5",
"@ot-builder/prelude": "1.5.5",
"@ot-builder/primitive": "1.5.5",
"@ot-builder/var-store": "1.5.5",
"@ot-builder/variance": "1.5.5",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/io-bin-metadata": {
"version": "1.5.5",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-metadata/-/io-bin-metadata-1.5.5.tgz",
"integrity": "sha512-avWLjS2IQ/g1qv+rDDuNovuu7lvmQSOr6rShk9uJNcSXU+w54n0auWquLyok42RFoW7YYmmPebgsJsTypSEUDQ==",
"dependencies": {
"@ot-builder/bin-composite-types": "1.5.5",
"@ot-builder/bin-util": "1.5.5",
"@ot-builder/common-impl": "1.5.5",
"@ot-builder/errors": "1.5.5",
"@ot-builder/io-bin-sfnt": "1.5.5",
"@ot-builder/ot-metadata": "1.5.5",
"@ot-builder/ot-sfnt": "1.5.5",
"@ot-builder/prelude": "1.5.5",
"@ot-builder/primitive": "1.5.5",
"@ot-builder/var-store": "1.5.5",
"@ot-builder/variance": "1.5.5",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/io-bin-metric": {
"version": "1.5.5",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-metric/-/io-bin-metric-1.5.5.tgz",
"integrity": "sha512-jjfyuHLwgQhyZEHP7hHVl3jX20i3dPbmDb2E7X3GbTmW+rTxodXrHN6OqnEzT+qluK+6RcQs5jdJ5GTW9r21wA==",
"dependencies": {
"@ot-builder/bin-util": "1.5.5",
"@ot-builder/common-impl": "1.5.5",
"@ot-builder/errors": "1.5.5",
"@ot-builder/ot-glyphs": "1.5.5",
"@ot-builder/ot-metadata": "1.5.5",
"@ot-builder/prelude": "1.5.5",
"@ot-builder/primitive": "1.5.5",
"@ot-builder/var-store": "1.5.5",
"@ot-builder/variance": "1.5.5",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/io-bin-name": {
"version": "1.5.5",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-name/-/io-bin-name-1.5.5.tgz",
"integrity": "sha512-pUjKYAXczvqsFfwki8IGJe6PkdxO28GR+4nLrIxyiK6ZSePtMjauDfTUC/mWAVHQZ0uI+tr7n9Un5BONM5PPOg==",
"dependencies": {
"@ot-builder/bin-util": "1.5.5",
"@ot-builder/common-impl": "1.5.5",
"@ot-builder/errors": "1.5.5",
"@ot-builder/io-bin-sfnt": "1.5.5",
"@ot-builder/ot-glyphs": "1.5.5",
"@ot-builder/ot-metadata": "1.5.5",
"@ot-builder/ot-name": "1.5.5",
"@ot-builder/ot-sfnt": "1.5.5",
"@ot-builder/prelude": "1.5.5",
"@ot-builder/primitive": "1.5.5",
"iconv-lite": "^0.6.3",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/io-bin-sfnt": {
"version": "1.5.5",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-sfnt/-/io-bin-sfnt-1.5.5.tgz",
"integrity": "sha512-SiZRMR1jXhFFPQvBZgJuOb4kSrpaWtwAOQaq13Atmxsc855rTbC5u/p7ll55lj8RGcLBsZjwsw9fe4l/0NEJDw==",
"dependencies": {
"@ot-builder/bin-util": "1.5.5",
"@ot-builder/common-impl": "1.5.5",
"@ot-builder/errors": "1.5.5",
"@ot-builder/ot-sfnt": "1.5.5",
"@ot-builder/prelude": "1.5.5",
"@ot-builder/primitive": "1.5.5",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/io-bin-ttf": {
"version": "1.5.5",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-ttf/-/io-bin-ttf-1.5.5.tgz",
"integrity": "sha512-6idmtX8UHM7mqUt4J2o/I/102RksvitKlinOrvUUNj64JtS/Mjy82ugFObLPDZAhXm0CjQIuIOYDS7ULHMtQqg==",
"dependencies": {
"@ot-builder/bin-util": "1.5.5",
"@ot-builder/common-impl": "1.5.5",
"@ot-builder/errors": "1.5.5",
"@ot-builder/ot-glyphs": "1.5.5",
"@ot-builder/ot-metadata": "1.5.5",
"@ot-builder/prelude": "1.5.5",
"@ot-builder/primitive": "1.5.5",
"@ot-builder/stat-glyphs": "1.5.5",
"@ot-builder/var-store": "1.5.5",
"@ot-builder/variance": "1.5.5",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/io-bin-vtt-private": {
"version": "1.5.5",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-vtt-private/-/io-bin-vtt-private-1.5.5.tgz",
"integrity": "sha512-TAdtW8L8iBOUY8L5HfiNo1fGVKbugw4Oy0k5jomA+nob4Jt87G1MCNof03Tzudw+ncTI0WfhqMAqpp/Z5DIqIw==",
"dependencies": {
"@ot-builder/bin-util": "1.5.5",
"@ot-builder/errors": "1.5.5",
"@ot-builder/io-bin-sfnt": "1.5.5",
"@ot-builder/io-bin-ttf": "1.5.5",
"@ot-builder/ot-glyphs": "1.5.5",
"@ot-builder/ot-metadata": "1.5.5",
"@ot-builder/ot-sfnt": "1.5.5",
"@ot-builder/ot-vtt-private": "1.5.5",
"@ot-builder/prelude": "1.5.5",
"@ot-builder/primitive": "1.5.5",
"@ot-builder/variance": "1.5.5",
"iconv-lite": "^0.6.3",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/ot": {
"version": "1.5.5",
"resolved": "https://registry.npmjs.org/@ot-builder/ot/-/ot-1.5.5.tgz",
"integrity": "sha512-Kbn1lGkQi/jfKdOU/72KZe5joNLtCIkuS/+RM37OimOGSBCZqrnHyldCBv3U+ANPXREUqoBsSug4ar53fwROIQ==",
"dependencies": {
"@ot-builder/common-impl": "1.5.5",
"@ot-builder/ot-encoding": "1.5.5",
"@ot-builder/ot-ext-private": "1.5.5",
"@ot-builder/ot-glyphs": "1.5.5",
"@ot-builder/ot-layout": "1.5.5",
"@ot-builder/ot-metadata": "1.5.5",
"@ot-builder/ot-name": "1.5.5",
"@ot-builder/ot-sfnt": "1.5.5",
"@ot-builder/ot-standard-glyph-namer": "1.5.5",
"@ot-builder/ot-vtt-private": "1.5.5",
"@ot-builder/prelude": "1.5.5",
"@ot-builder/variance": "1.5.5",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/ot-encoding": {
"version": "1.5.5",
"resolved": "https://registry.npmjs.org/@ot-builder/ot-encoding/-/ot-encoding-1.5.5.tgz",
"integrity": "sha512-WvtRzUCkYZ1t6hc6tBYFdgECuYGUT2sJ00qV0RHA/4k5KfofblavvduMD7DaTjMG+CP13lK1Hf2nZthY6Sjwvg==",
"dependencies": {
"@ot-builder/ot-glyphs": "1.5.5",
"@ot-builder/prelude": "1.5.5",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/ot-ext-private": {
"version": "1.5.5",
"resolved": "https://registry.npmjs.org/@ot-builder/ot-ext-private/-/ot-ext-private-1.5.5.tgz",
"integrity": "sha512-kJ7/bR83V73+WMDE59Uy22zb4po54/gCnrUDoWTDdo8jnhri9wHtFpuL5W1RMQSsegI9PnYTFgTXwAuCmX8EBg==",
"dependencies": {
"@ot-builder/ot-glyphs": "1.5.5",
"@ot-builder/prelude": "1.5.5",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/ot-glyphs": {
"version": "1.5.5",
"resolved": "https://registry.npmjs.org/@ot-builder/ot-glyphs/-/ot-glyphs-1.5.5.tgz",
"integrity": "sha512-8BIjHFzzsRjF0N+lRzna6mwmcQS61MIBFrRY2/hKzQVNqfmXfDRKPkFhbn/5tRb1mmvqNnLM7DrnQcz2r7sMew==",
"dependencies": {
"@ot-builder/common-impl": "1.5.5",
"@ot-builder/prelude": "1.5.5",
"@ot-builder/primitive": "1.5.5",
"@ot-builder/variance": "1.5.5",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/ot-layout": {
"version": "1.5.5",
"resolved": "https://registry.npmjs.org/@ot-builder/ot-layout/-/ot-layout-1.5.5.tgz",
"integrity": "sha512-ABRaW09S1ynrEa61ZF5LuznpDqv6Q/zWVocrU4zaO6v42b5ZR87shbXDuYBTu10Ho+ieveMJkIgomjWWHSW4OQ==",
"dependencies": {
"@ot-builder/ot-glyphs": "1.5.5",
"@ot-builder/prelude": "1.5.5",
"@ot-builder/primitive": "1.5.5",
"@ot-builder/variance": "1.5.5",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/ot-metadata": {
"version": "1.5.5",
"resolved": "https://registry.npmjs.org/@ot-builder/ot-metadata/-/ot-metadata-1.5.5.tgz",
"integrity": "sha512-PHg5FS/4ayQcbRL2leT5PfWj/tw7hQsCJGYL0RNg+QvkY/IeExq+fHKzbC5HwLYZFCsVKdi5++cWM1rSaPCJIQ==",
"dependencies": {
"@ot-builder/common-impl": "1.5.5",
"@ot-builder/prelude": "1.5.5",
"@ot-builder/primitive": "1.5.5",
"@ot-builder/variance": "1.5.5",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/ot-name": {
"version": "1.5.5",
"resolved": "https://registry.npmjs.org/@ot-builder/ot-name/-/ot-name-1.5.5.tgz",
"integrity": "sha512-HNHZbc2TFzFyJ1FHVlxV3sGQJqGQjdlTBW4CfgVxxHhbSe59/DMsX1oiplRQ3w7kYQ6SCfU2qp1JXVSXgVBPZw==",
"dependencies": {
"@ot-builder/prelude": "1.5.5",
"@ot-builder/primitive": "1.5.5",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/ot-sfnt": {
"version": "1.5.5",
"resolved": "https://registry.npmjs.org/@ot-builder/ot-sfnt/-/ot-sfnt-1.5.5.tgz",
"integrity": "sha512-B3vMza3hSdGyOlzhIKsNVUHe6knOKpQlWuAZUQXIQCTuKdLGcDAsYBFuTEZEtLhpRzm+jSfEyGZ87V0YV2nUBg==",
"dependencies": {
"@ot-builder/prelude": "1.5.5",
"@ot-builder/primitive": "1.5.5",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/ot-standard-glyph-namer": {
"version": "1.5.5",
"resolved": "https://registry.npmjs.org/@ot-builder/ot-standard-glyph-namer/-/ot-standard-glyph-namer-1.5.5.tgz",
"integrity": "sha512-L+quAs3jQ1I4U3byONrPp9i8jTf8YT7CuF4ONUiExGyJnK9WIvD5NaVKdI/MPkxVUb1Udc9SaBYtoUm9ImUHQQ==",
"dependencies": {
"@ot-builder/ot-glyphs": "1.5.5",
"@ot-builder/prelude": "1.5.5",
"aglfn": "^1.0.2",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/ot-vtt-private": {
"version": "1.5.5",
"resolved": "https://registry.npmjs.org/@ot-builder/ot-vtt-private/-/ot-vtt-private-1.5.5.tgz",
"integrity": "sha512-l8lY6BD1dzlHTW93TlBLcAxxRLHUjlRuFN7w+1Akmtfq/l15AWEW3OqxzxrGAw7TX7Q9Np7HhN0QGbTYjrul3g==",
"dependencies": {
"@ot-builder/ot-glyphs": "1.5.5",
"@ot-builder/prelude": "1.5.5",
"@ot-builder/variance": "1.5.5",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/prelude": {
"version": "1.5.5",
"resolved": "https://registry.npmjs.org/@ot-builder/prelude/-/prelude-1.5.5.tgz",
"integrity": "sha512-sTecdvnGlYdQ6Qbu4NSyYIzil72k7gwGaVJiFRZyudNouGiurijHt5F+RiWl05U83zrlcdpcN7iiXzHfr5NnWQ==",
"dependencies": {
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/primitive": {
"version": "1.5.5",
"resolved": "https://registry.npmjs.org/@ot-builder/primitive/-/primitive-1.5.5.tgz",
"integrity": "sha512-AKrFDof1e6r7K5EC71wGhOfAjujf9GuJ0g56CKGps4FfDw7CwFg77KFwpqsFWjyt6t1fmvFAlKdhVXuNyH4c2Q==",
"dependencies": {
"@ot-builder/bin-util": "1.5.5",
"@ot-builder/errors": "1.5.5",
"@ot-builder/prelude": "1.5.5",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/rectify": {
"version": "1.5.5",
"resolved": "https://registry.npmjs.org/@ot-builder/rectify/-/rectify-1.5.5.tgz",
"integrity": "sha512-nrx6Ubt7IX9IKUMJcAmNrHyi0kC83laGpnHKCGiBWGVfn/BdmFogRUGNR0NUpEImIVWTq0Y8Ae/tf/i9yI5eZQ==",
"dependencies": {
"@ot-builder/common-impl": "1.5.5",
"@ot-builder/ot": "1.5.5",
"@ot-builder/ot-glyphs": "1.5.5",
"@ot-builder/ot-metadata": "1.5.5",
"@ot-builder/prelude": "1.5.5",
"@ot-builder/variance": "1.5.5",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/stat-glyphs": {
"version": "1.5.5",
"resolved": "https://registry.npmjs.org/@ot-builder/stat-glyphs/-/stat-glyphs-1.5.5.tgz",
"integrity": "sha512-DgWbUPy5de/2fL0JJ94UXJ5fibvDAtVWtjHUmgy38i+3vHYcQ14WPjq3sLxyOKRrrvBQ7CK7Z92N9JjBN+a5ZQ==",
"dependencies": {
"@ot-builder/bin-composite-types": "1.5.5",
"@ot-builder/common-impl": "1.5.5",
"@ot-builder/ot-glyphs": "1.5.5",
"@ot-builder/ot-metadata": "1.5.5",
"@ot-builder/prelude": "1.5.5",
"@ot-builder/primitive": "1.5.5",
"@ot-builder/variance": "1.5.5",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/trace": {
"version": "1.5.5",
"resolved": "https://registry.npmjs.org/@ot-builder/trace/-/trace-1.5.5.tgz",
"integrity": "sha512-hOH55nKImSbq/5ZgZ8pya1/yIvC3IDRfqfWL/3Uz0Zp0StD6/9xhegK+9bM3Qs/llmDXZd7JYOsyWETw8f1iIg==",
"dependencies": {
"@ot-builder/common-impl": "1.5.5",
"@ot-builder/ot": "1.5.5",
"@ot-builder/ot-glyphs": "1.5.5",
"@ot-builder/ot-metadata": "1.5.5",
"@ot-builder/prelude": "1.5.5",
"@ot-builder/variance": "1.5.5",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/var-store": {
"version": "1.5.5",
"resolved": "https://registry.npmjs.org/@ot-builder/var-store/-/var-store-1.5.5.tgz",
"integrity": "sha512-H18j0yR9qrwXC665lHDq07DBRKkxxlB3mcjUXYX8xElkv/UcD42FOI5lTlvLYV39e3f8uBTf9IhVYPNTYtZHmg==",
"dependencies": {
"@ot-builder/bin-composite-types": "1.5.5",
"@ot-builder/bin-util": "1.5.5",
"@ot-builder/common-impl": "1.5.5",
"@ot-builder/errors": "1.5.5",
"@ot-builder/prelude": "1.5.5",
"@ot-builder/primitive": "1.5.5",
"@ot-builder/variance": "1.5.5",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/variance": {
"version": "1.5.5",
"resolved": "https://registry.npmjs.org/@ot-builder/variance/-/variance-1.5.5.tgz",
"integrity": "sha512-Jp20Ro43mLR32erJkLolduF1Q+jBYwDJitcEaGztVEmNGLbJNHb++jFIQSswIFDUrmj/3pKgret4ASiLc4WIkw==",
"dependencies": {
"@ot-builder/bin-composite-types": "1.5.5",
"@ot-builder/common-impl": "1.5.5",
"@ot-builder/prelude": "1.5.5",
"@ot-builder/primitive": "1.5.5",
"tslib": "^2.0.0"
}
},
"node_modules/@types/json5": {
"version": "0.0.29",
"resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz",
"integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==",
"dev": true
},
"node_modules/@unicode/unicode-14.0.0": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/@unicode/unicode-14.0.0/-/unicode-14.0.0-1.3.1.tgz",
"integrity": "sha512-VUfD/m7AK1VeJ46Y6iR5qRWLsnf8GYbl83MkRNQqVBSK3k05Xpax3emDtA14g8vjmW0vg0r1nf8n3fSnQciM3Q==",
"dev": true
},
"node_modules/@xmldom/xmldom": {
"version": "0.8.6",
"resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.6.tgz",
"integrity": "sha512-uRjjusqpoqfmRkTaNuLJ2VohVr67Q5YwDATW3VU7PfzTj6IRaihGrYI7zckGZjxQPBIp63nfvJbM+Yu5ICh0Bg==",
"dev": true,
"engines": {
"node": ">=10.0.0"
}
},
"node_modules/acorn": {
"version": "8.8.1",
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.1.tgz",
"integrity": "sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==",
"dev": true,
"bin": {
"acorn": "bin/acorn"
},
"engines": {
"node": ">=0.4.0"
}
},
"node_modules/acorn-jsx": {
"version": "5.3.2",
"resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
"integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
"dev": true,
"peerDependencies": {
"acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
}
},
"node_modules/aglfn": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/aglfn/-/aglfn-1.0.2.tgz",
"integrity": "sha512-HUvXd7sNFa1aHtYgJnln2jPwzq7UAAOXhYH/+AY6BMdfXxprMxG8IrczlZn6MjjIWpYhpKR5mHwDWTgehZKO4g=="
},
"node_modules/ajv": {
"version": "6.12.6",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
"integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
"dev": true,
"dependencies": {
"fast-deep-equal": "^3.1.1",
"fast-json-stable-stringify": "^2.0.0",
"json-schema-traverse": "^0.4.1",
"uri-js": "^4.2.2"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/epoberezkin"
}
},
"node_modules/amdefine": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz",
"integrity": "sha512-S2Hw0TtNkMJhIabBwIojKL9YHO5T0n5eNqWJ7Lrlel/zDbftQpxpapi8tZs3X1HWa+u+QeydGmzzNU0m09+Rcg==",
"dev": true,
"engines": {
"node": ">=0.4.2"
}
},
"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==",
"dev": true,
"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/argparse": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
"integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="
},
"node_modules/array-includes": {
"version": "3.1.6",
"resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz",
"integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==",
"dev": true,
"dependencies": {
"call-bind": "^1.0.2",
"define-properties": "^1.1.4",
"es-abstract": "^1.20.4",
"get-intrinsic": "^1.1.3",
"is-string": "^1.0.7"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/array.prototype.flat": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz",
"integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==",
"dev": true,
"dependencies": {
"call-bind": "^1.0.2",
"define-properties": "^1.1.4",
"es-abstract": "^1.20.4",
"es-shim-unscopables": "^1.0.0"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/available-typed-arrays": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz",
"integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==",
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"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==",
"dev": true
},
"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==",
"dev": true,
"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/brace-expansion": {
"version": "1.1.11",
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
"integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
"dev": true,
"dependencies": {
"balanced-match": "^1.0.0",
"concat-map": "0.0.1"
}
},
"node_modules/call-bind": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz",
"integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==",
"dependencies": {
"function-bind": "^1.1.1",
"get-intrinsic": "^1.0.2"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/callsites": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
"integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
"dev": true,
"engines": {
"node": ">=6"
}
},
"node_modules/chainsaw": {
"version": "0.0.9",
"resolved": "https://registry.npmjs.org/chainsaw/-/chainsaw-0.0.9.tgz",
"integrity": "sha512-nG8PYH+/4xB+8zkV4G844EtfvZ5tTiLFoX3dZ4nhF4t3OCKIb9UvaFyNmeZO2zOSmRWzBoTD+napN6hiL+EgcA==",
"dev": true,
"dependencies": {
"traverse": ">=0.3.0 <0.4"
},
"engines": {
"node": "*"
}
},
"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/cldr": {
"version": "7.3.0",
"resolved": "https://registry.npmjs.org/cldr/-/cldr-7.3.0.tgz",
"integrity": "sha512-qMkSKxqDZHVDOiYkJqRAJ5dZlcKg3gPCmeeqc2R9iopnIbR1ODv7nP1f8Sx0PcXcpehXOnwfVEH5Y3F68Z8J/w==",
"dev": true,
"dependencies": {
"@xmldom/xmldom": "^0.8.0",
"escodegen": "^2.0.0",
"esprima": "^4.0.1",
"memoizeasync": "^1.1.0",
"passerror": "^1.1.1",
"pegjs": "^0.10.0",
"seq": "^0.3.5",
"unicoderegexp": "^0.4.1",
"xpath": "^0.0.32"
}
},
"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==",
"dev": true,
"dependencies": {
"restore-cursor": "^3.1.0"
},
"engines": {
"node": ">=8"
}
},
"node_modules/clipper-lib": {
"version": "6.4.2",
"resolved": "https://registry.npmjs.org/clipper-lib/-/clipper-lib-6.4.2.tgz",
"integrity": "sha512-knglhjQX5ihNj/XCIs6zCHrTemdvHY3LPZP9XB2nq2/3igyYMFueFXtfp84baJvEE+f8pO1ZS4UVeEgmLnAprQ=="
},
"node_modules/cliui": {
"version": "7.0.4",
"resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz",
"integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==",
"dev": true,
"dependencies": {
"string-width": "^4.2.0",
"strip-ansi": "^6.0.0",
"wrap-ansi": "^7.0.0"
}
},
"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/concat-map": {
"version": "0.0.1",
"resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
"integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
"dev": true
},
"node_modules/cross-spawn": {
"version": "7.0.3",
"resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
"integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
"dev": true,
"dependencies": {
"path-key": "^3.1.0",
"shebang-command": "^2.0.0",
"which": "^2.0.1"
},
"engines": {
"node": ">= 8"
}
},
"node_modules/cross-spawn/node_modules/which": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
"integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
"dev": true,
"dependencies": {
"isexe": "^2.0.0"
},
"bin": {
"node-which": "bin/node-which"
},
"engines": {
"node": ">= 8"
}
},
"node_modules/debug": {
"version": "4.3.4",
"resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz",
"integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==",
"dev": true,
"dependencies": {
"ms": "2.1.2"
},
"engines": {
"node": ">=6.0"
},
"peerDependenciesMeta": {
"supports-color": {
"optional": true