forked from be5invis/Iosevka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package-lock.json
3811 lines (3811 loc) · 139 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": "22.1.2",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "iosevka",
"version": "22.1.2",
"dependencies": {
"@iarna/toml": "^2.2.5",
"@msgpack/msgpack": "^2.8.0",
"deep-equal": "^2.2.0",
"ot-builder": "^1.6.4",
"otb-ttc-bundle": "^1.6.4",
"semver": "^7.5.0",
"spiro": "^3.0.0",
"toposort": "^2.0.2",
"typo-geom": "^0.13.0",
"uuid": "^9.0.0",
"wawoff2": "^2.0.1"
},
"devDependencies": {
"@unicode/unicode-15.0.0": "^1.3.1",
"cldr": "^7.4.0",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"patel": "^0.38.0",
"prettier": "^2.8.7",
"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-community/eslint-utils": {
"version": "4.4.0",
"resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz",
"integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==",
"dev": true,
"dependencies": {
"eslint-visitor-keys": "^3.3.0"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"peerDependencies": {
"eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
}
},
"node_modules/@eslint-community/regexpp": {
"version": "4.5.0",
"resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.5.0.tgz",
"integrity": "sha512-vITaYzIcNmjn5tF5uxcZ/ft7/RXGrMUIS9HalWckEOF6ESiwXKoMzAQf2UW0aVd6rnOeExTJVd5hmWXucBKGXQ==",
"dev": true,
"engines": {
"node": "^12.0.0 || ^14.0.0 || >=16.0.0"
}
},
"node_modules/@eslint/eslintrc": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.0.2.tgz",
"integrity": "sha512-3W4f5tDUra+pA+FzgugqL2pRimUTDJWKr7BINqOpkZrC0uYI0NIc0/JFgBROCU07HR6GieA5m3/rsPIhDmCXTQ==",
"dev": true,
"dependencies": {
"ajv": "^6.12.4",
"debug": "^4.3.2",
"espree": "^9.5.1",
"globals": "^13.19.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/@eslint/js": {
"version": "8.39.0",
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.39.0.tgz",
"integrity": "sha512-kf9RB0Fg7NZfap83B3QOqOGg9QmD9yBudqQXzzOtn3i4y7ZUXe5ONeW34Gwi+TxhH4mvj72R1Zc300KUMa9Bng==",
"dev": true,
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
}
},
"node_modules/@humanwhocodes/config-array": {
"version": "0.11.8",
"resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.8.tgz",
"integrity": "sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==",
"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.6.4",
"resolved": "https://registry.npmjs.org/@ot-builder/bin-composite-types/-/bin-composite-types-1.6.4.tgz",
"integrity": "sha512-3JnRQfGLTMYg6TBkb3MmfhCbqiG8kkJlvl4zYdZUvXWne2vtQVYtf7buen2CUG+eKHK4XxQgSvEr8M6/BF0GRw==",
"dependencies": {
"@ot-builder/bin-util": "1.6.4",
"@ot-builder/errors": "1.6.4",
"@ot-builder/prelude": "1.6.4",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/bin-util": {
"version": "1.6.4",
"resolved": "https://registry.npmjs.org/@ot-builder/bin-util/-/bin-util-1.6.4.tgz",
"integrity": "sha512-pRgcrhIDzGpXaI6Lyb4KcpGCsRd3Icz86F8LOyzBToQemFGf8RbCje93JOupvQ7FYevqiW181WnCxUJo79z0hw==",
"dependencies": {
"@ot-builder/common-impl": "1.6.4",
"@ot-builder/errors": "1.6.4",
"@ot-builder/prelude": "1.6.4",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/cli-help-shower": {
"version": "1.6.4",
"resolved": "https://registry.npmjs.org/@ot-builder/cli-help-shower/-/cli-help-shower-1.6.4.tgz",
"integrity": "sha512-e7Rns2zN5jD4/BIY7CzhWpMNC2DA+CXOuyQ5ykIxAlYGApwy5exCVLolF+CzcAqSM8puGqYKivU+3Gz7OFu31A==",
"dependencies": {
"chalk": "^4.1.1",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/cli-proc": {
"version": "1.6.4",
"resolved": "https://registry.npmjs.org/@ot-builder/cli-proc/-/cli-proc-1.6.4.tgz",
"integrity": "sha512-QKfRx7rApU737sCFG8aeJNiuegfSz6cs9bKYhGTgumLeeGot6ubUUry2zVudt7ZY7sKxktPUN0lZKCxf+JKQEQ==",
"dependencies": {
"@ot-builder/common-impl": "1.6.4",
"@ot-builder/io-bin-font": "1.6.4",
"@ot-builder/ot": "1.6.4",
"@ot-builder/prelude": "1.6.4",
"@ot-builder/primitive": "1.6.4",
"@ot-builder/rectify": "1.6.4",
"@ot-builder/trace": "1.6.4",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/cli-shared": {
"version": "1.6.4",
"resolved": "https://registry.npmjs.org/@ot-builder/cli-shared/-/cli-shared-1.6.4.tgz",
"integrity": "sha512-UJVEXwGcI8jsLypXYM+Ajk7EJbhmHE4OC2y/zCZoudTee4NQC0GcPveJSvMYwPHxwZaoVCq7StjhP4mAENpVGA==",
"dependencies": {
"@ot-builder/io-bin-font": "1.6.4",
"@ot-builder/ot": "1.6.4",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/common-impl": {
"version": "1.6.4",
"resolved": "https://registry.npmjs.org/@ot-builder/common-impl/-/common-impl-1.6.4.tgz",
"integrity": "sha512-bBKlf/parERI/u81J9Pg7OiF1oGiiZiyQLI4CDgal+KIYrfcH70XTPdbLZfq17ME4etHaiEqZ0oiajodWn5pEQ==",
"dependencies": {
"@ot-builder/prelude": "1.6.4",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/errors": {
"version": "1.6.4",
"resolved": "https://registry.npmjs.org/@ot-builder/errors/-/errors-1.6.4.tgz",
"integrity": "sha512-Aq/wfM5ewWH/za6KRdbZoX+B+c4vH0xjyDHMlc6zZCP38PZTAB7h0KwLZJR6vcrpxXTHsTFsANQ8L/EjkijvVQ==",
"dependencies": {
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/io-bin-cff": {
"version": "1.6.4",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-cff/-/io-bin-cff-1.6.4.tgz",
"integrity": "sha512-5fCVRKeOICmPCUgcUeF8AnskFSHzFCfMGEOpX4H1lDNgIGirL7mTqGNzG14xKWL/1LpiRJwe0hh8RpsZlVIoeA==",
"dependencies": {
"@ot-builder/bin-composite-types": "1.6.4",
"@ot-builder/bin-util": "1.6.4",
"@ot-builder/common-impl": "1.6.4",
"@ot-builder/errors": "1.6.4",
"@ot-builder/ot-glyphs": "1.6.4",
"@ot-builder/ot-metadata": "1.6.4",
"@ot-builder/prelude": "1.6.4",
"@ot-builder/primitive": "1.6.4",
"@ot-builder/stat-glyphs": "1.6.4",
"@ot-builder/var-store": "1.6.4",
"@ot-builder/variance": "1.6.4",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/io-bin-encoding": {
"version": "1.6.4",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-encoding/-/io-bin-encoding-1.6.4.tgz",
"integrity": "sha512-5PZPhXNydNPI1N9RsILQwrYa5iyaQNqvIi2EjjOyaTzAPvrs9KyVssSc4Df028h1u7MkgLxnafv/BmJDneOQyw==",
"dependencies": {
"@ot-builder/bin-util": "1.6.4",
"@ot-builder/errors": "1.6.4",
"@ot-builder/io-bin-sfnt": "1.6.4",
"@ot-builder/ot-encoding": "1.6.4",
"@ot-builder/ot-glyphs": "1.6.4",
"@ot-builder/ot-metadata": "1.6.4",
"@ot-builder/ot-sfnt": "1.6.4",
"@ot-builder/prelude": "1.6.4",
"@ot-builder/primitive": "1.6.4",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/io-bin-ext-private": {
"version": "1.6.4",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-ext-private/-/io-bin-ext-private-1.6.4.tgz",
"integrity": "sha512-nbDSxPHg8YzCVQVM9DASnlZiE+r12zdFgx3ZZfuOLmh5bqzwi8vWJDH+8OuzV04uCD8mPCulbux6Df8fvJ0yEQ==",
"dependencies": {
"@ot-builder/bin-util": "1.6.4",
"@ot-builder/errors": "1.6.4",
"@ot-builder/io-bin-sfnt": "1.6.4",
"@ot-builder/ot-ext-private": "1.6.4",
"@ot-builder/ot-glyphs": "1.6.4",
"@ot-builder/ot-metadata": "1.6.4",
"@ot-builder/ot-sfnt": "1.6.4",
"@ot-builder/prelude": "1.6.4",
"@ot-builder/primitive": "1.6.4",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/io-bin-font": {
"version": "1.6.4",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-font/-/io-bin-font-1.6.4.tgz",
"integrity": "sha512-1o7K36VV8CW3c02CWBwgO0/9hLLAs8NjWI4t6Rm11Y4qMkn1xfUd4vJPKlV9VoO8J5Z8nwAnEXthvj74YaqX0w==",
"dependencies": {
"@ot-builder/bin-util": "1.6.4",
"@ot-builder/io-bin-encoding": "1.6.4",
"@ot-builder/io-bin-ext-private": "1.6.4",
"@ot-builder/io-bin-glyph-store": "1.6.4",
"@ot-builder/io-bin-layout": "1.6.4",
"@ot-builder/io-bin-metadata": "1.6.4",
"@ot-builder/io-bin-name": "1.6.4",
"@ot-builder/io-bin-sfnt": "1.6.4",
"@ot-builder/io-bin-vtt-private": "1.6.4",
"@ot-builder/ot": "1.6.4",
"@ot-builder/ot-encoding": "1.6.4",
"@ot-builder/ot-ext-private": "1.6.4",
"@ot-builder/ot-glyphs": "1.6.4",
"@ot-builder/ot-layout": "1.6.4",
"@ot-builder/ot-metadata": "1.6.4",
"@ot-builder/ot-name": "1.6.4",
"@ot-builder/ot-sfnt": "1.6.4",
"@ot-builder/ot-vtt-private": "1.6.4",
"@ot-builder/prelude": "1.6.4",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/io-bin-glyph-store": {
"version": "1.6.4",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-glyph-store/-/io-bin-glyph-store-1.6.4.tgz",
"integrity": "sha512-/ecKwrTpDnvPhP41rSWUXSpaNkuixEHgPftqy9fIUqHBdAXkAaI6rkS/4ZUFYiTkeAkNzMxDork76JMDXpK+cg==",
"dependencies": {
"@ot-builder/bin-util": "1.6.4",
"@ot-builder/common-impl": "1.6.4",
"@ot-builder/errors": "1.6.4",
"@ot-builder/io-bin-cff": "1.6.4",
"@ot-builder/io-bin-metric": "1.6.4",
"@ot-builder/io-bin-sfnt": "1.6.4",
"@ot-builder/io-bin-ttf": "1.6.4",
"@ot-builder/ot-glyphs": "1.6.4",
"@ot-builder/ot-metadata": "1.6.4",
"@ot-builder/ot-sfnt": "1.6.4",
"@ot-builder/prelude": "1.6.4",
"@ot-builder/primitive": "1.6.4",
"@ot-builder/stat-glyphs": "1.6.4",
"@ot-builder/var-store": "1.6.4",
"@ot-builder/variance": "1.6.4",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/io-bin-layout": {
"version": "1.6.4",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-layout/-/io-bin-layout-1.6.4.tgz",
"integrity": "sha512-9EPaSEbOHNkmPFUJdUPuaMr/R94e3NSXy1HmaKdWXVyireEMj+kKfB/8tFzDZgcQzy4Z79xAAQuGJTC/QIkK0g==",
"dependencies": {
"@ot-builder/bin-composite-types": "1.6.4",
"@ot-builder/bin-util": "1.6.4",
"@ot-builder/common-impl": "1.6.4",
"@ot-builder/errors": "1.6.4",
"@ot-builder/io-bin-sfnt": "1.6.4",
"@ot-builder/ot-glyphs": "1.6.4",
"@ot-builder/ot-layout": "1.6.4",
"@ot-builder/ot-metadata": "1.6.4",
"@ot-builder/ot-sfnt": "1.6.4",
"@ot-builder/prelude": "1.6.4",
"@ot-builder/primitive": "1.6.4",
"@ot-builder/var-store": "1.6.4",
"@ot-builder/variance": "1.6.4",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/io-bin-metadata": {
"version": "1.6.4",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-metadata/-/io-bin-metadata-1.6.4.tgz",
"integrity": "sha512-AzeVpl/FhPvWmd/iSwI2Z/d/KTCV6o+gXioFjQvo+s7gnFVlc/CxXrw8sYlSJJ7NIrKMhya6oTqrexSPJ45W2A==",
"dependencies": {
"@ot-builder/bin-composite-types": "1.6.4",
"@ot-builder/bin-util": "1.6.4",
"@ot-builder/common-impl": "1.6.4",
"@ot-builder/errors": "1.6.4",
"@ot-builder/io-bin-sfnt": "1.6.4",
"@ot-builder/ot-metadata": "1.6.4",
"@ot-builder/ot-sfnt": "1.6.4",
"@ot-builder/prelude": "1.6.4",
"@ot-builder/primitive": "1.6.4",
"@ot-builder/var-store": "1.6.4",
"@ot-builder/variance": "1.6.4",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/io-bin-metric": {
"version": "1.6.4",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-metric/-/io-bin-metric-1.6.4.tgz",
"integrity": "sha512-EUo1f1rousmE2NBGCPQMSl3YXQI3009+GpQ9TzrCB9onsDsXno0GwlYidcU79vrc6ng3WH/WBVEb7wH/PUqUlg==",
"dependencies": {
"@ot-builder/bin-util": "1.6.4",
"@ot-builder/common-impl": "1.6.4",
"@ot-builder/errors": "1.6.4",
"@ot-builder/ot-glyphs": "1.6.4",
"@ot-builder/ot-metadata": "1.6.4",
"@ot-builder/prelude": "1.6.4",
"@ot-builder/primitive": "1.6.4",
"@ot-builder/var-store": "1.6.4",
"@ot-builder/variance": "1.6.4",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/io-bin-name": {
"version": "1.6.4",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-name/-/io-bin-name-1.6.4.tgz",
"integrity": "sha512-A6tOZw7s0wALMloRz+eMOY9z9ocGfK4LKoHZZXWwRBfbgOtd8AanUV1SAdivyiy76n4yrV5N1NM9CgxiZ1zsqw==",
"dependencies": {
"@ot-builder/bin-util": "1.6.4",
"@ot-builder/common-impl": "1.6.4",
"@ot-builder/errors": "1.6.4",
"@ot-builder/io-bin-sfnt": "1.6.4",
"@ot-builder/ot-glyphs": "1.6.4",
"@ot-builder/ot-metadata": "1.6.4",
"@ot-builder/ot-name": "1.6.4",
"@ot-builder/ot-sfnt": "1.6.4",
"@ot-builder/prelude": "1.6.4",
"@ot-builder/primitive": "1.6.4",
"iconv-lite": "^0.6.3",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/io-bin-sfnt": {
"version": "1.6.4",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-sfnt/-/io-bin-sfnt-1.6.4.tgz",
"integrity": "sha512-q2aToFpg51JODmKHfbwAmpB2Uu63w+jCLHEpcQq9MECfz40vAqT/XQCGcfOvH/YF4t588r61ZXgphw/2RVTfMA==",
"dependencies": {
"@ot-builder/bin-util": "1.6.4",
"@ot-builder/common-impl": "1.6.4",
"@ot-builder/errors": "1.6.4",
"@ot-builder/ot-sfnt": "1.6.4",
"@ot-builder/prelude": "1.6.4",
"@ot-builder/primitive": "1.6.4",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/io-bin-ttf": {
"version": "1.6.4",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-ttf/-/io-bin-ttf-1.6.4.tgz",
"integrity": "sha512-OvwzMuVQy4DNP3GznAir6QV2QksUvaaoBnal5dN9oAlQtaGTM4X1KQDZdLHUqt9yrKPjTHXPkeBn9Cog4KGXuQ==",
"dependencies": {
"@ot-builder/bin-util": "1.6.4",
"@ot-builder/common-impl": "1.6.4",
"@ot-builder/errors": "1.6.4",
"@ot-builder/ot-glyphs": "1.6.4",
"@ot-builder/ot-metadata": "1.6.4",
"@ot-builder/prelude": "1.6.4",
"@ot-builder/primitive": "1.6.4",
"@ot-builder/stat-glyphs": "1.6.4",
"@ot-builder/var-store": "1.6.4",
"@ot-builder/variance": "1.6.4",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/io-bin-vtt-private": {
"version": "1.6.4",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-vtt-private/-/io-bin-vtt-private-1.6.4.tgz",
"integrity": "sha512-skfwJmDLA0kJFF2Y96W3dEsxbRbJa4pp8nVRFqgl2eLefHVABDngl/M5yt2r/K0cWtK/poTLCnNLCbPXxRicAw==",
"dependencies": {
"@ot-builder/bin-util": "1.6.4",
"@ot-builder/errors": "1.6.4",
"@ot-builder/io-bin-sfnt": "1.6.4",
"@ot-builder/io-bin-ttf": "1.6.4",
"@ot-builder/ot-glyphs": "1.6.4",
"@ot-builder/ot-metadata": "1.6.4",
"@ot-builder/ot-sfnt": "1.6.4",
"@ot-builder/ot-vtt-private": "1.6.4",
"@ot-builder/prelude": "1.6.4",
"@ot-builder/primitive": "1.6.4",
"@ot-builder/variance": "1.6.4",
"iconv-lite": "^0.6.3",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/ot": {
"version": "1.6.4",
"resolved": "https://registry.npmjs.org/@ot-builder/ot/-/ot-1.6.4.tgz",
"integrity": "sha512-wiEL7rtMeaNTvOgoA4ffIKvbHxqHKasMTl+unmvQpYgfMMvlVfh/zOMQfP9VJmLZQQtHONLlp38DVli4C6IoNg==",
"dependencies": {
"@ot-builder/common-impl": "1.6.4",
"@ot-builder/ot-encoding": "1.6.4",
"@ot-builder/ot-ext-private": "1.6.4",
"@ot-builder/ot-glyphs": "1.6.4",
"@ot-builder/ot-layout": "1.6.4",
"@ot-builder/ot-metadata": "1.6.4",
"@ot-builder/ot-name": "1.6.4",
"@ot-builder/ot-sfnt": "1.6.4",
"@ot-builder/ot-standard-glyph-namer": "1.6.4",
"@ot-builder/ot-vtt-private": "1.6.4",
"@ot-builder/prelude": "1.6.4",
"@ot-builder/variance": "1.6.4",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/ot-encoding": {
"version": "1.6.4",
"resolved": "https://registry.npmjs.org/@ot-builder/ot-encoding/-/ot-encoding-1.6.4.tgz",
"integrity": "sha512-Ct6SL6zL6EqZeL1SAz3GTzNo/M0PQbX6M6s/a5WUiu7SDp7M1VJP/RYYYTJbF2U7s9nWFP79gI3iUlsaLFdBiQ==",
"dependencies": {
"@ot-builder/ot-glyphs": "1.6.4",
"@ot-builder/prelude": "1.6.4",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/ot-ext-private": {
"version": "1.6.4",
"resolved": "https://registry.npmjs.org/@ot-builder/ot-ext-private/-/ot-ext-private-1.6.4.tgz",
"integrity": "sha512-LYH6N19cN2L/0r3NQBtP0+KYvPXwjQXSnEm0p2uSIjC/5EdS/PDzJuI687qZIjnCXPVOkjvivi7JFFq2FD3rGQ==",
"dependencies": {
"@ot-builder/ot-glyphs": "1.6.4",
"@ot-builder/prelude": "1.6.4",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/ot-glyphs": {
"version": "1.6.4",
"resolved": "https://registry.npmjs.org/@ot-builder/ot-glyphs/-/ot-glyphs-1.6.4.tgz",
"integrity": "sha512-3DEdQhdZIjXriVvl3qgO3aITm7jOpeoM+dtn3oFPuFlC2msJ5LGDOgP7QSJKtNfmJMfydq/lpytd6axMWmt3Ug==",
"dependencies": {
"@ot-builder/common-impl": "1.6.4",
"@ot-builder/prelude": "1.6.4",
"@ot-builder/primitive": "1.6.4",
"@ot-builder/variance": "1.6.4",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/ot-layout": {
"version": "1.6.4",
"resolved": "https://registry.npmjs.org/@ot-builder/ot-layout/-/ot-layout-1.6.4.tgz",
"integrity": "sha512-ZwstlrBNV1CQ57WRxvXw4C0rRWNP4bbcOGufWRv2yUC/hNcEelADJ+XK2s0cIPtuv6heCrw6JlKvxlkv8Pdmaw==",
"dependencies": {
"@ot-builder/ot-glyphs": "1.6.4",
"@ot-builder/prelude": "1.6.4",
"@ot-builder/primitive": "1.6.4",
"@ot-builder/variance": "1.6.4",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/ot-metadata": {
"version": "1.6.4",
"resolved": "https://registry.npmjs.org/@ot-builder/ot-metadata/-/ot-metadata-1.6.4.tgz",
"integrity": "sha512-dEo1VNdSSJ/HuboDv9Ycz6Y4kEnzY2qwEdC8b6vfX6mm8OloVw2nRPHhdh7+JAFXCYAPY67fKfAvDe6/VZzzOw==",
"dependencies": {
"@ot-builder/common-impl": "1.6.4",
"@ot-builder/prelude": "1.6.4",
"@ot-builder/primitive": "1.6.4",
"@ot-builder/variance": "1.6.4",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/ot-name": {
"version": "1.6.4",
"resolved": "https://registry.npmjs.org/@ot-builder/ot-name/-/ot-name-1.6.4.tgz",
"integrity": "sha512-eD2f5NJi4JTHtV44BvttwJROoFKYsKA7AwGz3u1VTXpzcWlTMwpTeNChtJDoMGy4SAWFS7Npm82X83P4I71N4Q==",
"dependencies": {
"@ot-builder/prelude": "1.6.4",
"@ot-builder/primitive": "1.6.4",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/ot-sfnt": {
"version": "1.6.4",
"resolved": "https://registry.npmjs.org/@ot-builder/ot-sfnt/-/ot-sfnt-1.6.4.tgz",
"integrity": "sha512-HX5WWnPxgqDwFIzcaWIFYQyxc1IDl+BWrSLjQSg4uQvnhZqi2l1SdZIvwim9ksJAHvQf2VF9XHG/ZamBufcWxQ==",
"dependencies": {
"@ot-builder/prelude": "1.6.4",
"@ot-builder/primitive": "1.6.4",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/ot-standard-glyph-namer": {
"version": "1.6.4",
"resolved": "https://registry.npmjs.org/@ot-builder/ot-standard-glyph-namer/-/ot-standard-glyph-namer-1.6.4.tgz",
"integrity": "sha512-f+X+rg6GAwns7ypl+QqgHS1/T+V9UfnhBRdePIjNJkZqO0Ao+gQOTAiNRLlJrfrDeHfstJ3x0VO1OSj+Gxmq8g==",
"dependencies": {
"@ot-builder/ot-glyphs": "1.6.4",
"@ot-builder/prelude": "1.6.4",
"aglfn": "^1.0.2",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/ot-vtt-private": {
"version": "1.6.4",
"resolved": "https://registry.npmjs.org/@ot-builder/ot-vtt-private/-/ot-vtt-private-1.6.4.tgz",
"integrity": "sha512-0YhEcPLvZ1vxjrr354Ao9XpoE4+rTP/OECIg1/hdl9wfeXOMbakDChhO/EPOyZYeq7mKZs8o5rmyx0nHihK5Ag==",
"dependencies": {
"@ot-builder/ot-glyphs": "1.6.4",
"@ot-builder/prelude": "1.6.4",
"@ot-builder/variance": "1.6.4",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/prelude": {
"version": "1.6.4",
"resolved": "https://registry.npmjs.org/@ot-builder/prelude/-/prelude-1.6.4.tgz",
"integrity": "sha512-CzzjS5anctVw37ZFWS6uksmyG9WH4LppiTjDHwrCvHNXcqFtO95wL9tY8mOOaN1TwOPgMrsOo1MT2ESiZNB4rg==",
"dependencies": {
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/primitive": {
"version": "1.6.4",
"resolved": "https://registry.npmjs.org/@ot-builder/primitive/-/primitive-1.6.4.tgz",
"integrity": "sha512-gkyc3MU4sRCAAjShP3mLz2IGjRf7iv1/8ihPCsKygRRqx3uJztCMY35BHnzTkVTQzqZgQUGg97NE336HOTlZ4Q==",
"dependencies": {
"@ot-builder/bin-util": "1.6.4",
"@ot-builder/errors": "1.6.4",
"@ot-builder/prelude": "1.6.4",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/rectify": {
"version": "1.6.4",
"resolved": "https://registry.npmjs.org/@ot-builder/rectify/-/rectify-1.6.4.tgz",
"integrity": "sha512-SH7UDrpKAcBSkUjZRe+MOR5f2DQXYpTzr25ROl9I7Be4RezVHd7FHZLsCdPWm4MWl6cA2csri+LDWUCL1ahTsQ==",
"dependencies": {
"@ot-builder/common-impl": "1.6.4",
"@ot-builder/ot": "1.6.4",
"@ot-builder/ot-glyphs": "1.6.4",
"@ot-builder/ot-metadata": "1.6.4",
"@ot-builder/prelude": "1.6.4",
"@ot-builder/variance": "1.6.4",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/stat-glyphs": {
"version": "1.6.4",
"resolved": "https://registry.npmjs.org/@ot-builder/stat-glyphs/-/stat-glyphs-1.6.4.tgz",
"integrity": "sha512-zHl9wGChnIFU43WSDti1QRgoZ+t1rZGxYM7NY63KGS9QKuAPndLTSpZCwHKW/mgGR4IMMxkizz0ExqvEDDFQLw==",
"dependencies": {
"@ot-builder/bin-composite-types": "1.6.4",
"@ot-builder/common-impl": "1.6.4",
"@ot-builder/ot-glyphs": "1.6.4",
"@ot-builder/ot-metadata": "1.6.4",
"@ot-builder/prelude": "1.6.4",
"@ot-builder/primitive": "1.6.4",
"@ot-builder/variance": "1.6.4",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/trace": {
"version": "1.6.4",
"resolved": "https://registry.npmjs.org/@ot-builder/trace/-/trace-1.6.4.tgz",
"integrity": "sha512-nZ/EeO8/tLnKy1OA1rGJfkNfCzdUfDkHHcY+56IdRmWb4WN6E5b7FwkXTZyXkAQs2q9FU6YlQtH9q3TG0mGM5Q==",
"dependencies": {
"@ot-builder/common-impl": "1.6.4",
"@ot-builder/ot": "1.6.4",
"@ot-builder/ot-glyphs": "1.6.4",
"@ot-builder/ot-metadata": "1.6.4",
"@ot-builder/prelude": "1.6.4",
"@ot-builder/variance": "1.6.4",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/var-store": {
"version": "1.6.4",
"resolved": "https://registry.npmjs.org/@ot-builder/var-store/-/var-store-1.6.4.tgz",
"integrity": "sha512-ef16r5cEIQw1N6YUqDyNvo3Cg2lP8l1JUVHs9iSY43erc22Sdum+z3T29be8PaGUBIaiOhLCZ1/4lG2VVkcoBA==",
"dependencies": {
"@ot-builder/bin-composite-types": "1.6.4",
"@ot-builder/bin-util": "1.6.4",
"@ot-builder/common-impl": "1.6.4",
"@ot-builder/errors": "1.6.4",
"@ot-builder/prelude": "1.6.4",
"@ot-builder/primitive": "1.6.4",
"@ot-builder/variance": "1.6.4",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/variance": {
"version": "1.6.4",
"resolved": "https://registry.npmjs.org/@ot-builder/variance/-/variance-1.6.4.tgz",
"integrity": "sha512-tBsb4y09dZRzV8FIAJQHdry1UycB09LEOFSumKX7AcjFYhbGDDGZIXn3CxIzyV3MW+fABzLXt0JyrqKvqMvgpg==",
"dependencies": {
"@ot-builder/bin-composite-types": "1.6.4",
"@ot-builder/common-impl": "1.6.4",
"@ot-builder/prelude": "1.6.4",
"@ot-builder/primitive": "1.6.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-15.0.0": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/@unicode/unicode-15.0.0/-/unicode-15.0.0-1.3.1.tgz",
"integrity": "sha512-zxm5Cx0v9vGxFOM8tVuArWHxxJTk+stiLA+ZHKt2mJO3HHmM6uN8OFcDGuvcix3MqguQ75am0XvpUgEz4P4vFw==",
"dev": true
},
"node_modules/@xmldom/xmldom": {
"version": "0.8.7",
"resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.7.tgz",
"integrity": "sha512-sI1Ly2cODlWStkINzqGrZ8K6n+MTSbAeQnAipGyL+KZCXuHaRlj2gyyy8B/9MvsFFqN7XHryQnB2QwhzvJXovg==",
"dev": true,
"engines": {
"node": ">=10.0.0"
}
},
"node_modules/acorn": {
"version": "8.8.2",
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz",
"integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==",
"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-buffer-byte-length": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz",
"integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==",
"dev": true,
"dependencies": {
"call-bind": "^1.0.2",
"is-array-buffer": "^3.0.1"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"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/array.prototype.flatmap": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz",
"integrity": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==",
"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.4.0",
"resolved": "https://registry.npmjs.org/cldr/-/cldr-7.4.0.tgz",
"integrity": "sha512-S3TdLT1FOopmu1275Zbx5AaOeJ/q/tkL1zmkmfMUioCilGhVmukz+BmEh37iYP1nau5CUhPFRnf9T0+rtx8bLQ==",
"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": {