forked from be5invis/Iosevka
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package-lock.json
6635 lines (6635 loc) · 250 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.5.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "iosevka",
"version": "16.5.0",
"dependencies": {
"@iarna/toml": "^2.2.5",
"@msgpack/msgpack": "^2.8.0",
"deep-equal": "^2.0.5",
"ot-builder": "^1.5.4",
"otb-ttc-bundle": "^1.5.4",
"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.2.0",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"patel": "^0.38.0",
"prettier": "^2.7.1",
"verda": "^1.11.0",
"which": "^2.0.2"
},
"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.10.7",
"resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.10.7.tgz",
"integrity": "sha512-MDl6D6sBsaV452/QSdX+4CXIjZhIcI0PELsxUjk4U828yd58vk3bTIvk/6w5FY+4hIy9sLW0sfrV7K7Kc++j/w==",
"dev": true,
"dependencies": {
"@humanwhocodes/object-schema": "^1.2.1",
"debug": "^4.1.1",
"minimatch": "^3.0.4"
},
"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.4",
"resolved": "https://registry.npmjs.org/@ot-builder/bin-composite-types/-/bin-composite-types-1.5.4.tgz",
"integrity": "sha512-BGa0e3eN9ZLfwcJWcD/htPjbBadTYse42aLItPbpVhIc2HEClFFmrtwVR1AyYIHX08Iru9P6ExK2c5JcOtAxFw==",
"dependencies": {
"@ot-builder/bin-util": "1.5.4",
"@ot-builder/errors": "1.5.4",
"@ot-builder/prelude": "1.5.4",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/bin-util": {
"version": "1.5.4",
"resolved": "https://registry.npmjs.org/@ot-builder/bin-util/-/bin-util-1.5.4.tgz",
"integrity": "sha512-VSMqaiNu1tbdyXFJObLuhLjfwp4CgrwHBG8y2EyoG6ipyxon345tvtsSdyW71N/t2nfS4IZHxxNmgoiEyTGjew==",
"dependencies": {
"@ot-builder/common-impl": "1.5.4",
"@ot-builder/errors": "1.5.4",
"@ot-builder/prelude": "1.5.4",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/cli-help-shower": {
"version": "1.5.4",
"resolved": "https://registry.npmjs.org/@ot-builder/cli-help-shower/-/cli-help-shower-1.5.4.tgz",
"integrity": "sha512-dgDXk5A2W+BXdscJ9V//X/oRCesFj5X8elv0Ks3hyGsb+HEnVmmpGqYD+yNvsh7DCB+VabHTRI9HIhjx52DYeA==",
"dependencies": {
"chalk": "^4.1.1",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/cli-proc": {
"version": "1.5.4",
"resolved": "https://registry.npmjs.org/@ot-builder/cli-proc/-/cli-proc-1.5.4.tgz",
"integrity": "sha512-9IhKDfSat06iroaGHQG8x4cpzoctoBwKu3AA6xUE5PEEb7xImcGaZ0hDaNEZGJd/yYEvatBbytzI5NAJfdvSjA==",
"dependencies": {
"@ot-builder/common-impl": "1.5.4",
"@ot-builder/io-bin-font": "1.5.4",
"@ot-builder/ot": "1.5.4",
"@ot-builder/prelude": "1.5.4",
"@ot-builder/primitive": "1.5.4",
"@ot-builder/rectify": "1.5.4",
"@ot-builder/trace": "1.5.4",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/cli-shared": {
"version": "1.5.4",
"resolved": "https://registry.npmjs.org/@ot-builder/cli-shared/-/cli-shared-1.5.4.tgz",
"integrity": "sha512-QALOu8sjBrVhA7rrHNX3CgQTMUokC0GHnOTMcyqep1ogLOAKPvmmM0vmqPHVrolWLoEVgKI1bs3nFfZmtZC/cA==",
"dependencies": {
"@ot-builder/io-bin-font": "1.5.4",
"@ot-builder/ot": "1.5.4",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/common-impl": {
"version": "1.5.4",
"resolved": "https://registry.npmjs.org/@ot-builder/common-impl/-/common-impl-1.5.4.tgz",
"integrity": "sha512-B6j9Fv9iXGSim7dNlZkfD5gWJ+VK57wmlb9SwNlxTI8M0JBfTaWVkajyEz+GPn4BEvVOBJ95PFnecO43K552aA==",
"dependencies": {
"@ot-builder/prelude": "1.5.4",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/errors": {
"version": "1.5.4",
"resolved": "https://registry.npmjs.org/@ot-builder/errors/-/errors-1.5.4.tgz",
"integrity": "sha512-2xo+cpRrK93JLyfxORekkpslavILzX7c+AOlf754otRN8UK0rfVSNcFUifN7BobpHCaHuBgJtbYiq+zBnjMbew==",
"dependencies": {
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/io-bin-cff": {
"version": "1.5.4",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-cff/-/io-bin-cff-1.5.4.tgz",
"integrity": "sha512-CuEbsQwDoKF2/tonyy6J+cEtY8yzPZ7aCl/+Y5X+ZdYN9BmYZ64V1W1Qyc6wEwik78fDdgzsBni15YsUCTvGnA==",
"dependencies": {
"@ot-builder/bin-composite-types": "1.5.4",
"@ot-builder/bin-util": "1.5.4",
"@ot-builder/common-impl": "1.5.4",
"@ot-builder/errors": "1.5.4",
"@ot-builder/ot-glyphs": "1.5.4",
"@ot-builder/ot-metadata": "1.5.4",
"@ot-builder/prelude": "1.5.4",
"@ot-builder/primitive": "1.5.4",
"@ot-builder/stat-glyphs": "1.5.4",
"@ot-builder/var-store": "1.5.4",
"@ot-builder/variance": "1.5.4",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/io-bin-encoding": {
"version": "1.5.4",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-encoding/-/io-bin-encoding-1.5.4.tgz",
"integrity": "sha512-5O5E7941ScCmzoxtyK/KT1D3Wl3vHUWZY784no97e6udCndngPuvVI1UZck2lmLrrrn/EvNU0eJCHN7neHsSXw==",
"dependencies": {
"@ot-builder/bin-util": "1.5.4",
"@ot-builder/errors": "1.5.4",
"@ot-builder/io-bin-sfnt": "1.5.4",
"@ot-builder/ot-encoding": "1.5.4",
"@ot-builder/ot-glyphs": "1.5.4",
"@ot-builder/ot-metadata": "1.5.4",
"@ot-builder/ot-sfnt": "1.5.4",
"@ot-builder/prelude": "1.5.4",
"@ot-builder/primitive": "1.5.4",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/io-bin-ext-private": {
"version": "1.5.4",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-ext-private/-/io-bin-ext-private-1.5.4.tgz",
"integrity": "sha512-r0NEJHb+3XduOnjr9qOuTkUiOM+eJVSGZ1pvPumQXDlMJlz+VQsHop7MD1pSCKS/modXN1hKBo6BBki3gty7/A==",
"dependencies": {
"@ot-builder/bin-util": "1.5.4",
"@ot-builder/errors": "1.5.4",
"@ot-builder/io-bin-sfnt": "1.5.4",
"@ot-builder/ot-ext-private": "1.5.4",
"@ot-builder/ot-glyphs": "1.5.4",
"@ot-builder/ot-metadata": "1.5.4",
"@ot-builder/ot-sfnt": "1.5.4",
"@ot-builder/prelude": "1.5.4",
"@ot-builder/primitive": "1.5.4",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/io-bin-font": {
"version": "1.5.4",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-font/-/io-bin-font-1.5.4.tgz",
"integrity": "sha512-rcJ9qe0S4dBWMRXYh3Gi9lqgiW1qWCmNOAyjEoNYOcAUoXFasRuP+JNMu3sUM/Yi8eOGtkrnU2nq+T392/4nZA==",
"dependencies": {
"@ot-builder/bin-util": "1.5.4",
"@ot-builder/io-bin-encoding": "1.5.4",
"@ot-builder/io-bin-ext-private": "1.5.4",
"@ot-builder/io-bin-glyph-store": "1.5.4",
"@ot-builder/io-bin-layout": "1.5.4",
"@ot-builder/io-bin-metadata": "1.5.4",
"@ot-builder/io-bin-name": "1.5.4",
"@ot-builder/io-bin-sfnt": "1.5.4",
"@ot-builder/io-bin-vtt-private": "1.5.4",
"@ot-builder/ot": "1.5.4",
"@ot-builder/ot-encoding": "1.5.4",
"@ot-builder/ot-ext-private": "1.5.4",
"@ot-builder/ot-glyphs": "1.5.4",
"@ot-builder/ot-layout": "1.5.4",
"@ot-builder/ot-metadata": "1.5.4",
"@ot-builder/ot-name": "1.5.4",
"@ot-builder/ot-sfnt": "1.5.4",
"@ot-builder/ot-vtt-private": "1.5.4",
"@ot-builder/prelude": "1.5.4",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/io-bin-glyph-store": {
"version": "1.5.4",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-glyph-store/-/io-bin-glyph-store-1.5.4.tgz",
"integrity": "sha512-/lv2HLCSOlpPKctycCz+PAoUL8jZ2Ysk7XD9g2oi/eu7N5Tc9OKMQ38Xb9uR8AVSWUKb/COUcflCg3PCgwaQJA==",
"dependencies": {
"@ot-builder/bin-util": "1.5.4",
"@ot-builder/common-impl": "1.5.4",
"@ot-builder/errors": "1.5.4",
"@ot-builder/io-bin-cff": "1.5.4",
"@ot-builder/io-bin-metric": "1.5.4",
"@ot-builder/io-bin-sfnt": "1.5.4",
"@ot-builder/io-bin-ttf": "1.5.4",
"@ot-builder/ot-glyphs": "1.5.4",
"@ot-builder/ot-metadata": "1.5.4",
"@ot-builder/ot-sfnt": "1.5.4",
"@ot-builder/prelude": "1.5.4",
"@ot-builder/primitive": "1.5.4",
"@ot-builder/stat-glyphs": "1.5.4",
"@ot-builder/var-store": "1.5.4",
"@ot-builder/variance": "1.5.4",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/io-bin-layout": {
"version": "1.5.4",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-layout/-/io-bin-layout-1.5.4.tgz",
"integrity": "sha512-5KJb4MTnpxbr9W9hCJWzYRw3OM9f6x5TeZPZMHDS1XL9L0dvq2+SxGBWjB5BgpLMpJ6mlY1LRj9FmNiFXL/CJQ==",
"dependencies": {
"@ot-builder/bin-composite-types": "1.5.4",
"@ot-builder/bin-util": "1.5.4",
"@ot-builder/common-impl": "1.5.4",
"@ot-builder/errors": "1.5.4",
"@ot-builder/io-bin-sfnt": "1.5.4",
"@ot-builder/ot-glyphs": "1.5.4",
"@ot-builder/ot-layout": "1.5.4",
"@ot-builder/ot-metadata": "1.5.4",
"@ot-builder/ot-sfnt": "1.5.4",
"@ot-builder/prelude": "1.5.4",
"@ot-builder/primitive": "1.5.4",
"@ot-builder/var-store": "1.5.4",
"@ot-builder/variance": "1.5.4",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/io-bin-metadata": {
"version": "1.5.4",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-metadata/-/io-bin-metadata-1.5.4.tgz",
"integrity": "sha512-hjg8S/Xn8Vj9wUfksGehqjFkqXfJV6OSZGg7cmJrTwhCQEIwOnD9rtzlAKhPKjrPp2eEC2hlKIzdowWsSQS0nw==",
"dependencies": {
"@ot-builder/bin-composite-types": "1.5.4",
"@ot-builder/bin-util": "1.5.4",
"@ot-builder/common-impl": "1.5.4",
"@ot-builder/errors": "1.5.4",
"@ot-builder/io-bin-sfnt": "1.5.4",
"@ot-builder/ot-metadata": "1.5.4",
"@ot-builder/ot-sfnt": "1.5.4",
"@ot-builder/prelude": "1.5.4",
"@ot-builder/primitive": "1.5.4",
"@ot-builder/var-store": "1.5.4",
"@ot-builder/variance": "1.5.4",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/io-bin-metric": {
"version": "1.5.4",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-metric/-/io-bin-metric-1.5.4.tgz",
"integrity": "sha512-KEoSB0AswO8pfFT0rSiXUJak3K1g66ZGI50jf9GKOvK9V6nG9apOqAPwIc6ZnMAXfl9Air62dgrvF6QbL7iO+Q==",
"dependencies": {
"@ot-builder/bin-util": "1.5.4",
"@ot-builder/common-impl": "1.5.4",
"@ot-builder/errors": "1.5.4",
"@ot-builder/ot-glyphs": "1.5.4",
"@ot-builder/ot-metadata": "1.5.4",
"@ot-builder/prelude": "1.5.4",
"@ot-builder/primitive": "1.5.4",
"@ot-builder/var-store": "1.5.4",
"@ot-builder/variance": "1.5.4",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/io-bin-name": {
"version": "1.5.4",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-name/-/io-bin-name-1.5.4.tgz",
"integrity": "sha512-pZ0TXgyr4kVMcbyVo9qjn3Epx//ykoUInZHmE3R2f6/u3NjXBvCmLM+WrbKf7fc+oBX2nkWacgkRrMf4L03P/w==",
"dependencies": {
"@ot-builder/bin-util": "1.5.4",
"@ot-builder/common-impl": "1.5.4",
"@ot-builder/errors": "1.5.4",
"@ot-builder/io-bin-sfnt": "1.5.4",
"@ot-builder/ot-glyphs": "1.5.4",
"@ot-builder/ot-metadata": "1.5.4",
"@ot-builder/ot-name": "1.5.4",
"@ot-builder/ot-sfnt": "1.5.4",
"@ot-builder/prelude": "1.5.4",
"@ot-builder/primitive": "1.5.4",
"iconv-lite": "^0.6.3",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/io-bin-sfnt": {
"version": "1.5.4",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-sfnt/-/io-bin-sfnt-1.5.4.tgz",
"integrity": "sha512-PbWoy8aqphUpU50hgsyB/wjscrR/OjN+P68O7fTXc/DsdyZUJP4ncetor1dOfAJf1zEOBr33VFc8rABDrFhPvw==",
"dependencies": {
"@ot-builder/bin-util": "1.5.4",
"@ot-builder/common-impl": "1.5.4",
"@ot-builder/errors": "1.5.4",
"@ot-builder/ot-sfnt": "1.5.4",
"@ot-builder/prelude": "1.5.4",
"@ot-builder/primitive": "1.5.4",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/io-bin-ttf": {
"version": "1.5.4",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-ttf/-/io-bin-ttf-1.5.4.tgz",
"integrity": "sha512-HSTw8DXhqfBWWfk9yToKHMUwSZZv3AAxt0LIaYHSo3Lr4HG2tqgTtpk62gc6hyiMR0d1U4JdYA5mbYPnSWMMdw==",
"dependencies": {
"@ot-builder/bin-util": "1.5.4",
"@ot-builder/common-impl": "1.5.4",
"@ot-builder/errors": "1.5.4",
"@ot-builder/ot-glyphs": "1.5.4",
"@ot-builder/ot-metadata": "1.5.4",
"@ot-builder/prelude": "1.5.4",
"@ot-builder/primitive": "1.5.4",
"@ot-builder/stat-glyphs": "1.5.4",
"@ot-builder/var-store": "1.5.4",
"@ot-builder/variance": "1.5.4",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/io-bin-vtt-private": {
"version": "1.5.4",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-vtt-private/-/io-bin-vtt-private-1.5.4.tgz",
"integrity": "sha512-OllpfHLq63mBNxdHRuZu3UztPcBEFfA67W5S/lCQZhyay0VcMbNc/7jcRdyZXmgjkZNO+Szg82msZxookW/OBg==",
"dependencies": {
"@ot-builder/bin-util": "1.5.4",
"@ot-builder/errors": "1.5.4",
"@ot-builder/io-bin-sfnt": "1.5.4",
"@ot-builder/io-bin-ttf": "1.5.4",
"@ot-builder/ot-glyphs": "1.5.4",
"@ot-builder/ot-metadata": "1.5.4",
"@ot-builder/ot-sfnt": "1.5.4",
"@ot-builder/ot-vtt-private": "1.5.4",
"@ot-builder/prelude": "1.5.4",
"@ot-builder/primitive": "1.5.4",
"@ot-builder/variance": "1.5.4",
"iconv-lite": "^0.6.3",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/ot": {
"version": "1.5.4",
"resolved": "https://registry.npmjs.org/@ot-builder/ot/-/ot-1.5.4.tgz",
"integrity": "sha512-x/92wj1hk0MG8rmuUFwmyV5YJYEUJ6HiAgR8FPS2hQK2Ut7do5z0Ttc/eog3qBiVjnPS3Dzh1C6qLLSY3RR+mQ==",
"dependencies": {
"@ot-builder/common-impl": "1.5.4",
"@ot-builder/ot-encoding": "1.5.4",
"@ot-builder/ot-ext-private": "1.5.4",
"@ot-builder/ot-glyphs": "1.5.4",
"@ot-builder/ot-layout": "1.5.4",
"@ot-builder/ot-metadata": "1.5.4",
"@ot-builder/ot-name": "1.5.4",
"@ot-builder/ot-sfnt": "1.5.4",
"@ot-builder/ot-standard-glyph-namer": "1.5.4",
"@ot-builder/ot-vtt-private": "1.5.4",
"@ot-builder/prelude": "1.5.4",
"@ot-builder/variance": "1.5.4",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/ot-encoding": {
"version": "1.5.4",
"resolved": "https://registry.npmjs.org/@ot-builder/ot-encoding/-/ot-encoding-1.5.4.tgz",
"integrity": "sha512-XbEuxSkNKd8eguFv1Qut175Xl14Gja035Aci4Vw3979AtuT2QO7wDrjLhlfbn7Xob98dXcE180r7Zpc86iP53g==",
"dependencies": {
"@ot-builder/ot-glyphs": "1.5.4",
"@ot-builder/prelude": "1.5.4",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/ot-ext-private": {
"version": "1.5.4",
"resolved": "https://registry.npmjs.org/@ot-builder/ot-ext-private/-/ot-ext-private-1.5.4.tgz",
"integrity": "sha512-L2L2dPhMxaqEhuDW8tMaLJnR/BAnOWvqJE16Kkm8BwLxCbVuUlznvbfLaKOQj0UmTAXhLNkOLz2ZXJ7UGBCJ7g==",
"dependencies": {
"@ot-builder/ot-glyphs": "1.5.4",
"@ot-builder/prelude": "1.5.4",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/ot-glyphs": {
"version": "1.5.4",
"resolved": "https://registry.npmjs.org/@ot-builder/ot-glyphs/-/ot-glyphs-1.5.4.tgz",
"integrity": "sha512-mH0i6sVOseqiz84RTMZqNxFcOT+dSfShHAc4Sx9gAfelFyIWcYI8djdhWeSsdDu1n9G2mGZSpbPAH+6+ZA+7+Q==",
"dependencies": {
"@ot-builder/common-impl": "1.5.4",
"@ot-builder/prelude": "1.5.4",
"@ot-builder/primitive": "1.5.4",
"@ot-builder/variance": "1.5.4",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/ot-layout": {
"version": "1.5.4",
"resolved": "https://registry.npmjs.org/@ot-builder/ot-layout/-/ot-layout-1.5.4.tgz",
"integrity": "sha512-XgmO0vQ0MRg3KD/T11q0KQGgUiUAjod8J6LoMMkHs0/CevP4gjJr7xf21Sy1+cjxYQ1ltY9W4u2lcTgxAmS59w==",
"dependencies": {
"@ot-builder/ot-glyphs": "1.5.4",
"@ot-builder/prelude": "1.5.4",
"@ot-builder/primitive": "1.5.4",
"@ot-builder/variance": "1.5.4",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/ot-metadata": {
"version": "1.5.4",
"resolved": "https://registry.npmjs.org/@ot-builder/ot-metadata/-/ot-metadata-1.5.4.tgz",
"integrity": "sha512-KegFbpqN9DBx5IgYtMnhxpjg5s1YqNK+y6lZs7lutLLY8Y8wHddhcPcaISho7/yqS0/rCy3NiYwDZd3hJF3n2g==",
"dependencies": {
"@ot-builder/common-impl": "1.5.4",
"@ot-builder/prelude": "1.5.4",
"@ot-builder/primitive": "1.5.4",
"@ot-builder/variance": "1.5.4",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/ot-name": {
"version": "1.5.4",
"resolved": "https://registry.npmjs.org/@ot-builder/ot-name/-/ot-name-1.5.4.tgz",
"integrity": "sha512-qLq/atnsaBqZegvwJiTzhGxO6gVrQaohwT9V+gvNmnN/cd2V/+V+kNCOoyJM+mIphnijEAmXG5E4dqSzs+gvwA==",
"dependencies": {
"@ot-builder/prelude": "1.5.4",
"@ot-builder/primitive": "1.5.4",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/ot-sfnt": {
"version": "1.5.4",
"resolved": "https://registry.npmjs.org/@ot-builder/ot-sfnt/-/ot-sfnt-1.5.4.tgz",
"integrity": "sha512-VFRA5rh23YAxckk+N1oBkt68Z2VYhZqMCh36nNBbw6C2I4P4Cqzj9I6EBncqJ+mzXnxYULx/lz+HzpHAqKMN+Q==",
"dependencies": {
"@ot-builder/prelude": "1.5.4",
"@ot-builder/primitive": "1.5.4",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/ot-standard-glyph-namer": {
"version": "1.5.4",
"resolved": "https://registry.npmjs.org/@ot-builder/ot-standard-glyph-namer/-/ot-standard-glyph-namer-1.5.4.tgz",
"integrity": "sha512-TIOS1RlJKgRhuvFF8XX7Rr3nPvhw15yXJC5iVyuBJgJcoiQOQHg3gKAL0rHDXEHLU6nISL2q5iE8IJiahpP+UA==",
"dependencies": {
"@ot-builder/ot-glyphs": "1.5.4",
"@ot-builder/prelude": "1.5.4",
"aglfn": "^1.0.2",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/ot-vtt-private": {
"version": "1.5.4",
"resolved": "https://registry.npmjs.org/@ot-builder/ot-vtt-private/-/ot-vtt-private-1.5.4.tgz",
"integrity": "sha512-GTDN4M2MBudjSUuCSw9FVQUmOSZG5OGU2XIPBHFmUi0VwX/DNML3BwaQT7CpFh0MJHsGko+1PZOYlgENjO+tWA==",
"dependencies": {
"@ot-builder/ot-glyphs": "1.5.4",
"@ot-builder/prelude": "1.5.4",
"@ot-builder/variance": "1.5.4",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/prelude": {
"version": "1.5.4",
"resolved": "https://registry.npmjs.org/@ot-builder/prelude/-/prelude-1.5.4.tgz",
"integrity": "sha512-A0US/TENKS5VjW6haBkMRn7VNl0NS9h9Lok4H1/s0fMdB/o5e8mOueTHCfke6wmzdPB+pQIvCvA/JYS0QBNboQ==",
"dependencies": {
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/primitive": {
"version": "1.5.4",
"resolved": "https://registry.npmjs.org/@ot-builder/primitive/-/primitive-1.5.4.tgz",
"integrity": "sha512-aXr4ZjbqVwpmv7Yg/MXy+6TuNUqjAchtQ4Z9P3wmWRv90cY7J0wUJi6W1XLKICCYlB3PffS5fto0qi2uMu84sg==",
"dependencies": {
"@ot-builder/bin-util": "1.5.4",
"@ot-builder/errors": "1.5.4",
"@ot-builder/prelude": "1.5.4",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/rectify": {
"version": "1.5.4",
"resolved": "https://registry.npmjs.org/@ot-builder/rectify/-/rectify-1.5.4.tgz",
"integrity": "sha512-mv1AvjDYgV9HHbMJGS2zSGBW6ngeXLxjx4fUX3csN8I+8j8X7ghcpQ0Bnk/AnR+GjEpQfSRZ4pNWoVcsGD1pSw==",
"dependencies": {
"@ot-builder/common-impl": "1.5.4",
"@ot-builder/ot": "1.5.4",
"@ot-builder/ot-glyphs": "1.5.4",
"@ot-builder/ot-metadata": "1.5.4",
"@ot-builder/prelude": "1.5.4",
"@ot-builder/variance": "1.5.4",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/stat-glyphs": {
"version": "1.5.4",
"resolved": "https://registry.npmjs.org/@ot-builder/stat-glyphs/-/stat-glyphs-1.5.4.tgz",
"integrity": "sha512-bX9p/wrqKk/XQpYBwzru67XHjFYgAHsAemtgVCKSEOx795yMFJCJ/G6Nlic/4Hoia17feDcf0jy1bVrL2NkJww==",
"dependencies": {
"@ot-builder/bin-composite-types": "1.5.4",
"@ot-builder/common-impl": "1.5.4",
"@ot-builder/ot-glyphs": "1.5.4",
"@ot-builder/ot-metadata": "1.5.4",
"@ot-builder/prelude": "1.5.4",
"@ot-builder/primitive": "1.5.4",
"@ot-builder/variance": "1.5.4",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/trace": {
"version": "1.5.4",
"resolved": "https://registry.npmjs.org/@ot-builder/trace/-/trace-1.5.4.tgz",
"integrity": "sha512-5gwLOL311REuWB+2iCNLCPAqc9SBtWHTJATy3S2Dp0SVB8h+yn+pEkW/QxGdXNyM233JKTSuHElN+fN5/8abKw==",
"dependencies": {
"@ot-builder/common-impl": "1.5.4",
"@ot-builder/ot": "1.5.4",
"@ot-builder/ot-glyphs": "1.5.4",
"@ot-builder/ot-metadata": "1.5.4",
"@ot-builder/prelude": "1.5.4",
"@ot-builder/variance": "1.5.4",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/var-store": {
"version": "1.5.4",
"resolved": "https://registry.npmjs.org/@ot-builder/var-store/-/var-store-1.5.4.tgz",
"integrity": "sha512-0RL9S+OCfeQrh1eC1yh8BaQiyvdLmbCN7uBaFS5KrUz2V2XO5kQCwzz6NERETWXmieUfzFbfqyFKcBIinLTz0A==",
"dependencies": {
"@ot-builder/bin-composite-types": "1.5.4",
"@ot-builder/bin-util": "1.5.4",
"@ot-builder/common-impl": "1.5.4",
"@ot-builder/errors": "1.5.4",
"@ot-builder/prelude": "1.5.4",
"@ot-builder/primitive": "1.5.4",
"@ot-builder/variance": "1.5.4",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/variance": {
"version": "1.5.4",
"resolved": "https://registry.npmjs.org/@ot-builder/variance/-/variance-1.5.4.tgz",
"integrity": "sha512-t/DabVMo+uzZgf3ZQCy5++ZVvqTgpKU+5bG/nXWSkmX8vfJz4onJh4ded9kgjcb+nmbT0j3avS91lVPq5g6hWQ==",
"dependencies": {
"@ot-builder/bin-composite-types": "1.5.4",
"@ot-builder/common-impl": "1.5.4",
"@ot-builder/prelude": "1.5.4",
"@ot-builder/primitive": "1.5.4",
"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.3",
"resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.3.tgz",
"integrity": "sha512-Lv2vySXypg4nfa51LY1nU8yDAGo/5YwF+EY/rUZgIbfvwVARcd67ttCM8SMsTeJy51YhHYavEq+FS6R0hW9PFQ==",
"dev": true,
"engines": {
"node": ">=10.0.0"
}
},
"node_modules/acorn": {
"version": "8.8.0",
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz",
"integrity": "sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==",
"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.5",
"resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.5.tgz",
"integrity": "sha512-iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ==",
"dev": true,
"dependencies": {
"call-bind": "^1.0.2",
"define-properties": "^1.1.4",
"es-abstract": "^1.19.5",
"get-intrinsic": "^1.1.1",
"is-string": "^1.0.7"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/array-union": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz",
"integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==",
"dev": true,
"engines": {
"node": ">=8"
}
},
"node_modules/array.prototype.flat": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.0.tgz",
"integrity": "sha512-12IUEkHsAhA4DY5s0FPgNXIdc8VRSqD9Zp78a5au9abH/SOBrsp082JOWFNTjkMozh8mqcdiKuaLGhPeYztxSw==",
"dev": true,
"dependencies": {
"call-bind": "^1.0.2",
"define-properties": "^1.1.3",
"es-abstract": "^1.19.2",
"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/braces": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
"integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
"dev": true,
"dependencies": {
"fill-range": "^7.0.1"
},
"engines": {
"node": ">=8"
}
},
"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.2.0",
"resolved": "https://registry.npmjs.org/cldr/-/cldr-7.2.0.tgz",
"integrity": "sha512-NJB6wpFlIVrS4BhA/Q1a6UuS6MuFr5o2XhfosM6a+W+rad/Rt0HLLX3kuXdRrwHQZvla25iuzTkRnxOKjS+VhQ==",
"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/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"
},