forked from be5invis/Iosevka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package-lock.json
4093 lines (4093 loc) · 148 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/monorepo",
"version": "28.1.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@iosevka/monorepo",
"version": "28.1.0",
"workspaces": [
"packages/*",
"tools/*"
],
"dependencies": {
"@iarna/toml": "^2.2.5",
"deep-equal": "^2.2.3",
"otb-ttc-bundle": "^1.7.3",
"semver": "^7.5.4",
"uuid": "^9.0.1",
"verda": "^1.11.2",
"which": "^4.0.0"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"patel": "^0.39.0",
"prettier": "^3.1.1"
},
"engines": {
"node": ">=16.0.0"
}
},
"node_modules/@aashutoshrathi/word-wrap": {
"version": "1.2.6",
"resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz",
"integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==",
"dev": true,
"engines": {
"node": ">=0.10.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=="
},
"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.10.0",
"resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz",
"integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==",
"dev": true,
"engines": {
"node": "^12.0.0 || ^14.0.0 || >=16.0.0"
}
},
"node_modules/@eslint/eslintrc": {
"version": "2.1.4",
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz",
"integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==",
"dev": true,
"dependencies": {
"ajv": "^6.12.4",
"debug": "^4.3.2",
"espree": "^9.6.0",
"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.56.0",
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.56.0.tgz",
"integrity": "sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==",
"dev": true,
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
}
},
"node_modules/@humanwhocodes/config-array": {
"version": "0.11.14",
"resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz",
"integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==",
"dev": true,
"dependencies": {
"@humanwhocodes/object-schema": "^2.0.2",
"debug": "^4.3.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": "2.0.2",
"resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.2.tgz",
"integrity": "sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==",
"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/@iosevka/amend-readme": {
"resolved": "tools/amend-readme",
"link": true
},
"node_modules/@iosevka/data-export": {
"resolved": "tools/data-export",
"link": true
},
"node_modules/@iosevka/font": {
"resolved": "packages/font",
"link": true
},
"node_modules/@iosevka/font-glyphs": {
"resolved": "packages/font-glyphs",
"link": true
},
"node_modules/@iosevka/font-kits": {
"resolved": "packages/font-kits",
"link": true
},
"node_modules/@iosevka/font-otl": {
"resolved": "packages/font-otl",
"link": true
},
"node_modules/@iosevka/generate-samples": {
"resolved": "tools/generate-samples",
"link": true
},
"node_modules/@iosevka/geometry": {
"resolved": "packages/geometry",
"link": true
},
"node_modules/@iosevka/geometry-cache": {
"resolved": "packages/geometry-cache",
"link": true
},
"node_modules/@iosevka/glyph": {
"resolved": "packages/glyph",
"link": true
},
"node_modules/@iosevka/misc": {
"resolved": "tools/misc",
"link": true
},
"node_modules/@iosevka/param": {
"resolved": "packages/param",
"link": true
},
"node_modules/@iosevka/util": {
"resolved": "packages/util",
"link": true
},
"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.7.3",
"resolved": "https://registry.npmjs.org/@ot-builder/bin-composite-types/-/bin-composite-types-1.7.3.tgz",
"integrity": "sha512-vPrWqYcs2Y8NSwH5d0G18dC2Vo0FMw4NE9jbhCN4Nhnm92Dje+pEw5WWVLcMDJvWQt3LLlcPfzvaMecwdtnbFQ==",
"dependencies": {
"@ot-builder/bin-util": "1.7.3",
"@ot-builder/errors": "1.7.3",
"@ot-builder/prelude": "1.7.3",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/bin-util": {
"version": "1.7.3",
"resolved": "https://registry.npmjs.org/@ot-builder/bin-util/-/bin-util-1.7.3.tgz",
"integrity": "sha512-4Fuf9bkF+Y1mzGaLO7Z8B/jeryWdgJ6f7GkaBGil2+qFt3nqqESmhFIJp/4g8FheZ3YK7vmRDZcdQ9QnasVFVA==",
"dependencies": {
"@ot-builder/common-impl": "1.7.3",
"@ot-builder/errors": "1.7.3",
"@ot-builder/prelude": "1.7.3",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/cli-help-shower": {
"version": "1.7.3",
"resolved": "https://registry.npmjs.org/@ot-builder/cli-help-shower/-/cli-help-shower-1.7.3.tgz",
"integrity": "sha512-IGPnlcEjIASs8NkYy5al9tBOorYy6w0MPbuNh43mcfNalH31Lm8l178Bp/q1gSbGqfLaJociRQdfoRz9movX+A==",
"dependencies": {
"chalk": "^4.1.1",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/cli-proc": {
"version": "1.7.3",
"resolved": "https://registry.npmjs.org/@ot-builder/cli-proc/-/cli-proc-1.7.3.tgz",
"integrity": "sha512-a6sLK4l2mJBSlOjaz5EF5olFRNmbzbx7g4smE5mPvs4TnGAGrtrZ+/g3k+UBZFlj1felqtnY/wLybhijt7IEkQ==",
"dependencies": {
"@ot-builder/common-impl": "1.7.3",
"@ot-builder/io-bin-font": "1.7.3",
"@ot-builder/ot": "1.7.3",
"@ot-builder/prelude": "1.7.3",
"@ot-builder/primitive": "1.7.3",
"@ot-builder/rectify": "1.7.3",
"@ot-builder/trace": "1.7.3",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/cli-shared": {
"version": "1.7.3",
"resolved": "https://registry.npmjs.org/@ot-builder/cli-shared/-/cli-shared-1.7.3.tgz",
"integrity": "sha512-u7fHnaUmS6QMVZ265KNUS9ugHBIgJ5vpVt5fQYPPd0XL1SS0YsJ/ydbyJICyFqVTGbXTRlcsd7y0woKNIVgLsw==",
"dependencies": {
"@ot-builder/io-bin-font": "1.7.3",
"@ot-builder/ot": "1.7.3",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/common-impl": {
"version": "1.7.3",
"resolved": "https://registry.npmjs.org/@ot-builder/common-impl/-/common-impl-1.7.3.tgz",
"integrity": "sha512-mfgaL+LVHdEzhtBojDXipzJJOmbspqSYNI24q6/cqMwg/baQbC9r11uC7eVGJje3/tdDbW5uXzMeIfk0htW/mg==",
"dependencies": {
"@ot-builder/prelude": "1.7.3",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/errors": {
"version": "1.7.3",
"resolved": "https://registry.npmjs.org/@ot-builder/errors/-/errors-1.7.3.tgz",
"integrity": "sha512-/dilt0VxoS/CFCwlL8MLEN9wPyrjVHBcCVesokWeOTXg6LFV33kSw7vCO+MbWlRjCdrM6fhlBgT6f+ag7U+CRw==",
"dependencies": {
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/io-bin-cff": {
"version": "1.7.3",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-cff/-/io-bin-cff-1.7.3.tgz",
"integrity": "sha512-bl5aDj9E/+fTlGoc+AEVANUHCMFZsIZzWFkjgqRY2Asn1CdkoLg+rBi/DcGhC0VFC4iGvrcCiRbcsw5ARDVo8Q==",
"dependencies": {
"@ot-builder/bin-composite-types": "1.7.3",
"@ot-builder/bin-util": "1.7.3",
"@ot-builder/common-impl": "1.7.3",
"@ot-builder/errors": "1.7.3",
"@ot-builder/ot-glyphs": "1.7.3",
"@ot-builder/ot-metadata": "1.7.3",
"@ot-builder/prelude": "1.7.3",
"@ot-builder/primitive": "1.7.3",
"@ot-builder/stat-glyphs": "1.7.3",
"@ot-builder/var-store": "1.7.3",
"@ot-builder/variance": "1.7.3",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/io-bin-encoding": {
"version": "1.7.3",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-encoding/-/io-bin-encoding-1.7.3.tgz",
"integrity": "sha512-98742ncQPAO5ei2sEjBVP1/CNVnVK+7ErhVZYYXAp3u3n2GWAMbFJA7pNV9e3XjdnjEjg2WNBUzCoe9IW/4b+g==",
"dependencies": {
"@ot-builder/bin-util": "1.7.3",
"@ot-builder/errors": "1.7.3",
"@ot-builder/io-bin-sfnt": "1.7.3",
"@ot-builder/ot-encoding": "1.7.3",
"@ot-builder/ot-glyphs": "1.7.3",
"@ot-builder/ot-metadata": "1.7.3",
"@ot-builder/ot-sfnt": "1.7.3",
"@ot-builder/prelude": "1.7.3",
"@ot-builder/primitive": "1.7.3",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/io-bin-ext-private": {
"version": "1.7.3",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-ext-private/-/io-bin-ext-private-1.7.3.tgz",
"integrity": "sha512-3OYsTte/n2RKeMK5kQ9ghywvzREIc37SlmOqenmbgQZgtHZagxS54VXN5tVdnpCB7jEPuCeVkTBZoHtt8MpE5Q==",
"dependencies": {
"@ot-builder/bin-util": "1.7.3",
"@ot-builder/errors": "1.7.3",
"@ot-builder/io-bin-sfnt": "1.7.3",
"@ot-builder/ot-ext-private": "1.7.3",
"@ot-builder/ot-glyphs": "1.7.3",
"@ot-builder/ot-metadata": "1.7.3",
"@ot-builder/ot-sfnt": "1.7.3",
"@ot-builder/prelude": "1.7.3",
"@ot-builder/primitive": "1.7.3",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/io-bin-font": {
"version": "1.7.3",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-font/-/io-bin-font-1.7.3.tgz",
"integrity": "sha512-rUetq6caDAjOFK+5QxIyzoAPKw45uCCqS9DtVg+BRsMY353Bb3aqYIJ/zwqk3dzjN5cwhDPAFDejW6b+Lt8rDw==",
"dependencies": {
"@ot-builder/bin-util": "1.7.3",
"@ot-builder/io-bin-encoding": "1.7.3",
"@ot-builder/io-bin-ext-private": "1.7.3",
"@ot-builder/io-bin-glyph-store": "1.7.3",
"@ot-builder/io-bin-layout": "1.7.3",
"@ot-builder/io-bin-metadata": "1.7.3",
"@ot-builder/io-bin-name": "1.7.3",
"@ot-builder/io-bin-sfnt": "1.7.3",
"@ot-builder/io-bin-vtt-private": "1.7.3",
"@ot-builder/ot": "1.7.3",
"@ot-builder/ot-encoding": "1.7.3",
"@ot-builder/ot-ext-private": "1.7.3",
"@ot-builder/ot-glyphs": "1.7.3",
"@ot-builder/ot-layout": "1.7.3",
"@ot-builder/ot-metadata": "1.7.3",
"@ot-builder/ot-name": "1.7.3",
"@ot-builder/ot-sfnt": "1.7.3",
"@ot-builder/ot-vtt-private": "1.7.3",
"@ot-builder/prelude": "1.7.3",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/io-bin-glyph-store": {
"version": "1.7.3",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-glyph-store/-/io-bin-glyph-store-1.7.3.tgz",
"integrity": "sha512-ZumjVaNogpdPT8RDdVLOkwOZjbBpE8I95nt17cV7acWp+f14lVfI++bC5M645XakN596kTqzX1bLujuTxcKAyg==",
"dependencies": {
"@ot-builder/bin-util": "1.7.3",
"@ot-builder/common-impl": "1.7.3",
"@ot-builder/errors": "1.7.3",
"@ot-builder/io-bin-cff": "1.7.3",
"@ot-builder/io-bin-metric": "1.7.3",
"@ot-builder/io-bin-sfnt": "1.7.3",
"@ot-builder/io-bin-ttf": "1.7.3",
"@ot-builder/ot-glyphs": "1.7.3",
"@ot-builder/ot-metadata": "1.7.3",
"@ot-builder/ot-sfnt": "1.7.3",
"@ot-builder/prelude": "1.7.3",
"@ot-builder/primitive": "1.7.3",
"@ot-builder/stat-glyphs": "1.7.3",
"@ot-builder/var-store": "1.7.3",
"@ot-builder/variance": "1.7.3",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/io-bin-layout": {
"version": "1.7.3",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-layout/-/io-bin-layout-1.7.3.tgz",
"integrity": "sha512-SXUibQ8PHTLrFaiHKmuo6iXj4RLS/omjhemDji3flvbtXfJTPh7uwMLlREcKM/+Pwa9BFE1jfJLp30bd2I04xw==",
"dependencies": {
"@ot-builder/bin-composite-types": "1.7.3",
"@ot-builder/bin-util": "1.7.3",
"@ot-builder/common-impl": "1.7.3",
"@ot-builder/errors": "1.7.3",
"@ot-builder/io-bin-sfnt": "1.7.3",
"@ot-builder/ot-glyphs": "1.7.3",
"@ot-builder/ot-layout": "1.7.3",
"@ot-builder/ot-metadata": "1.7.3",
"@ot-builder/ot-sfnt": "1.7.3",
"@ot-builder/prelude": "1.7.3",
"@ot-builder/primitive": "1.7.3",
"@ot-builder/var-store": "1.7.3",
"@ot-builder/variance": "1.7.3",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/io-bin-metadata": {
"version": "1.7.3",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-metadata/-/io-bin-metadata-1.7.3.tgz",
"integrity": "sha512-E2sxZo0OAkQVFJNPWiu5aDXHfreCTYccw919JEhlQzw1yrMnZixfXsqBcMP1vQ0q5khceehSCMa/U9n3HL7H4g==",
"dependencies": {
"@ot-builder/bin-composite-types": "1.7.3",
"@ot-builder/bin-util": "1.7.3",
"@ot-builder/common-impl": "1.7.3",
"@ot-builder/errors": "1.7.3",
"@ot-builder/io-bin-sfnt": "1.7.3",
"@ot-builder/ot-metadata": "1.7.3",
"@ot-builder/ot-sfnt": "1.7.3",
"@ot-builder/prelude": "1.7.3",
"@ot-builder/primitive": "1.7.3",
"@ot-builder/var-store": "1.7.3",
"@ot-builder/variance": "1.7.3",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/io-bin-metric": {
"version": "1.7.3",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-metric/-/io-bin-metric-1.7.3.tgz",
"integrity": "sha512-DR99lpcAY40RfJtPgAYPvD0O+3ukdQ5W08oyWKCtCqKRaVmHdvsB8HXpn/1u1jFUnFFdsaHKQpSQKXbwFM06sw==",
"dependencies": {
"@ot-builder/bin-util": "1.7.3",
"@ot-builder/common-impl": "1.7.3",
"@ot-builder/errors": "1.7.3",
"@ot-builder/ot-glyphs": "1.7.3",
"@ot-builder/ot-metadata": "1.7.3",
"@ot-builder/prelude": "1.7.3",
"@ot-builder/primitive": "1.7.3",
"@ot-builder/var-store": "1.7.3",
"@ot-builder/variance": "1.7.3",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/io-bin-name": {
"version": "1.7.3",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-name/-/io-bin-name-1.7.3.tgz",
"integrity": "sha512-LwgGiwtlsTlYiKichCEFBBFRRasn3Q/tIxPR6sL+P2bo1C90c+vhQV0qfKaG5UOO5KnFQnDAGCevW4DNSoegFg==",
"dependencies": {
"@ot-builder/bin-util": "1.7.3",
"@ot-builder/common-impl": "1.7.3",
"@ot-builder/errors": "1.7.3",
"@ot-builder/io-bin-sfnt": "1.7.3",
"@ot-builder/ot-glyphs": "1.7.3",
"@ot-builder/ot-metadata": "1.7.3",
"@ot-builder/ot-name": "1.7.3",
"@ot-builder/ot-sfnt": "1.7.3",
"@ot-builder/prelude": "1.7.3",
"@ot-builder/primitive": "1.7.3",
"iconv-lite": "^0.6.3",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/io-bin-sfnt": {
"version": "1.7.3",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-sfnt/-/io-bin-sfnt-1.7.3.tgz",
"integrity": "sha512-T1rxlb6w6/i9NGpBce4I8iWZdGPHP1K4cll7z6gJUNOOfK2ejeyDGwK0iiM/sCeYdpW73yEOKAsSVSa8VEA1gw==",
"dependencies": {
"@ot-builder/bin-util": "1.7.3",
"@ot-builder/common-impl": "1.7.3",
"@ot-builder/errors": "1.7.3",
"@ot-builder/ot-sfnt": "1.7.3",
"@ot-builder/prelude": "1.7.3",
"@ot-builder/primitive": "1.7.3",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/io-bin-ttf": {
"version": "1.7.3",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-ttf/-/io-bin-ttf-1.7.3.tgz",
"integrity": "sha512-bGoAnfUBgr7LV1Bo2DRCn4+BdbA/OlxM/NGY/n6gMllw1sZswLKCntiE67L0YkpVgGNNnt7gZcH2yRhc5ife1Q==",
"dependencies": {
"@ot-builder/bin-util": "1.7.3",
"@ot-builder/common-impl": "1.7.3",
"@ot-builder/errors": "1.7.3",
"@ot-builder/ot-glyphs": "1.7.3",
"@ot-builder/ot-metadata": "1.7.3",
"@ot-builder/prelude": "1.7.3",
"@ot-builder/primitive": "1.7.3",
"@ot-builder/stat-glyphs": "1.7.3",
"@ot-builder/var-store": "1.7.3",
"@ot-builder/variance": "1.7.3",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/io-bin-vtt-private": {
"version": "1.7.3",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-vtt-private/-/io-bin-vtt-private-1.7.3.tgz",
"integrity": "sha512-whUgnQtBXb8QnpJ3/znP6zeAtA+nxlnF9v8w5+Cwwhj0EtIaRf+s/3NsgQ4f6Tlb0I4AKXs4adATdwjZiPex/g==",
"dependencies": {
"@ot-builder/bin-util": "1.7.3",
"@ot-builder/errors": "1.7.3",
"@ot-builder/io-bin-sfnt": "1.7.3",
"@ot-builder/io-bin-ttf": "1.7.3",
"@ot-builder/ot-glyphs": "1.7.3",
"@ot-builder/ot-metadata": "1.7.3",
"@ot-builder/ot-sfnt": "1.7.3",
"@ot-builder/ot-vtt-private": "1.7.3",
"@ot-builder/prelude": "1.7.3",
"@ot-builder/primitive": "1.7.3",
"@ot-builder/variance": "1.7.3",
"iconv-lite": "^0.6.3",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/ot": {
"version": "1.7.3",
"resolved": "https://registry.npmjs.org/@ot-builder/ot/-/ot-1.7.3.tgz",
"integrity": "sha512-AHNA6+dMBhOnmrp4zVrdfVbyogFQQVegM6Ewvq5WruBhh+kmGs+66ymhy3NpGSd/VHTClH5AVLdIEt/Ig0Kc2w==",
"dependencies": {
"@ot-builder/common-impl": "1.7.3",
"@ot-builder/ot-encoding": "1.7.3",
"@ot-builder/ot-ext-private": "1.7.3",
"@ot-builder/ot-glyphs": "1.7.3",
"@ot-builder/ot-layout": "1.7.3",
"@ot-builder/ot-metadata": "1.7.3",
"@ot-builder/ot-name": "1.7.3",
"@ot-builder/ot-sfnt": "1.7.3",
"@ot-builder/ot-standard-glyph-namer": "1.7.3",
"@ot-builder/ot-vtt-private": "1.7.3",
"@ot-builder/prelude": "1.7.3",
"@ot-builder/variance": "1.7.3",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/ot-encoding": {
"version": "1.7.3",
"resolved": "https://registry.npmjs.org/@ot-builder/ot-encoding/-/ot-encoding-1.7.3.tgz",
"integrity": "sha512-nj1z6yebG9DWIDnUd4Yqm4c8mx03WX6Dzmd15xzqpdKVy0sy1nrTBCg7ikc/zmND4XUJZMD/pHNFSU+FmlCp5g==",
"dependencies": {
"@ot-builder/ot-glyphs": "1.7.3",
"@ot-builder/prelude": "1.7.3",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/ot-ext-private": {
"version": "1.7.3",
"resolved": "https://registry.npmjs.org/@ot-builder/ot-ext-private/-/ot-ext-private-1.7.3.tgz",
"integrity": "sha512-Td/yoTbK1gFGVbjHxz1Pl1cwyn6chb3GbBinXnO84gLAS5rwHU9EVJTR46Nn5iUfnZzdjgjEyLMPHCYHYaI+cw==",
"dependencies": {
"@ot-builder/ot-glyphs": "1.7.3",
"@ot-builder/prelude": "1.7.3",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/ot-glyphs": {
"version": "1.7.3",
"resolved": "https://registry.npmjs.org/@ot-builder/ot-glyphs/-/ot-glyphs-1.7.3.tgz",
"integrity": "sha512-G9T4jToN9Uv74ouVajvGMsRRoZMeFNBSOYqjGuML/Eo2NvwTFnI6sS5RWkdlC0C6pL+m+ajZVrDNvCA6E35xNQ==",
"dependencies": {
"@ot-builder/common-impl": "1.7.3",
"@ot-builder/prelude": "1.7.3",
"@ot-builder/primitive": "1.7.3",
"@ot-builder/variance": "1.7.3",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/ot-layout": {
"version": "1.7.3",
"resolved": "https://registry.npmjs.org/@ot-builder/ot-layout/-/ot-layout-1.7.3.tgz",
"integrity": "sha512-UXU9ZEfDr4tEviS7eE6jWSS0MRVEAs5/bkRyw4YjzWB5qvvlt3PRH4Z9EgaxmFe7JjE1wi5pwxms7jKYT+BcHw==",
"dependencies": {
"@ot-builder/ot-glyphs": "1.7.3",
"@ot-builder/prelude": "1.7.3",
"@ot-builder/primitive": "1.7.3",
"@ot-builder/variance": "1.7.3",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/ot-metadata": {
"version": "1.7.3",
"resolved": "https://registry.npmjs.org/@ot-builder/ot-metadata/-/ot-metadata-1.7.3.tgz",
"integrity": "sha512-8mKLPElSjSiTZS/5aXTFTAZtH7RB6VdSFhx0DrszC/fu82f5bBGCt3BidSADleDreo7zpFM28mSmHhlOK1juxg==",
"dependencies": {
"@ot-builder/common-impl": "1.7.3",
"@ot-builder/prelude": "1.7.3",
"@ot-builder/primitive": "1.7.3",
"@ot-builder/variance": "1.7.3",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/ot-name": {
"version": "1.7.3",
"resolved": "https://registry.npmjs.org/@ot-builder/ot-name/-/ot-name-1.7.3.tgz",
"integrity": "sha512-yfBjEoVlQ7bgNuEGQ7HAbecniaOR63hwPsQicunUD3RBO780QjjcYPhBJJ93ospiPlNeGvTRXyeuPTjY3JFY8w==",
"dependencies": {
"@ot-builder/prelude": "1.7.3",
"@ot-builder/primitive": "1.7.3",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/ot-sfnt": {
"version": "1.7.3",
"resolved": "https://registry.npmjs.org/@ot-builder/ot-sfnt/-/ot-sfnt-1.7.3.tgz",
"integrity": "sha512-D7Wzr6D3iCRgurapniXKwAT28zLuEhsBs+t2c3vi/Q8b0dkJhHpEIXIs/itAhnQi2ndK/TpVMh98Tis0cgDgOA==",
"dependencies": {
"@ot-builder/prelude": "1.7.3",
"@ot-builder/primitive": "1.7.3",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/ot-standard-glyph-namer": {
"version": "1.7.3",
"resolved": "https://registry.npmjs.org/@ot-builder/ot-standard-glyph-namer/-/ot-standard-glyph-namer-1.7.3.tgz",
"integrity": "sha512-rDhw84kvx1qgeamN9LFg1g41F8hBy3J8RHRR684f8eK1OY7RMRKQpiSuBOLk1kSlgfM+rFSOALlvDwdMG49yng==",
"dependencies": {
"@ot-builder/ot-glyphs": "1.7.3",
"@ot-builder/prelude": "1.7.3",
"aglfn": "^1.0.2",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/ot-vtt-private": {
"version": "1.7.3",
"resolved": "https://registry.npmjs.org/@ot-builder/ot-vtt-private/-/ot-vtt-private-1.7.3.tgz",
"integrity": "sha512-okwc3WA1pPH3RsN9xU9vSHnt85o27O70mBaKYBNNVY7q+MuIvn1akGevA71ejCkQayJEPeZpCNSPJaHZ6bb6Rg==",
"dependencies": {
"@ot-builder/ot-glyphs": "1.7.3",
"@ot-builder/prelude": "1.7.3",
"@ot-builder/variance": "1.7.3",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/prelude": {
"version": "1.7.3",
"resolved": "https://registry.npmjs.org/@ot-builder/prelude/-/prelude-1.7.3.tgz",
"integrity": "sha512-J+zxpnlPn6yYZzFEiUSNSw652g03q2YvTgv8rzgWks/L5ovETzLwOrqGkAMB4GHVDjLcDCiahi4ZS2KKqqfHwA==",
"dependencies": {
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/primitive": {
"version": "1.7.3",
"resolved": "https://registry.npmjs.org/@ot-builder/primitive/-/primitive-1.7.3.tgz",
"integrity": "sha512-bwNIUAT0J0yPSZPiUP5V5QGjeByjavzhqmYxaxGwk1qJsFq5CkrqW1BxqhS/JXAH6CWlTtpMMM3UA/y4NwuNVg==",
"dependencies": {
"@ot-builder/bin-util": "1.7.3",
"@ot-builder/errors": "1.7.3",
"@ot-builder/prelude": "1.7.3",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/rectify": {
"version": "1.7.3",
"resolved": "https://registry.npmjs.org/@ot-builder/rectify/-/rectify-1.7.3.tgz",
"integrity": "sha512-BEuyhQXLvWVz/9AqZj3Z0rlZicKXzMBPQuKWreJcb4lGhoio6j7NwPk92TP+GY+Kl52AO1R6s8I2R6ZodULq8Q==",
"dependencies": {
"@ot-builder/common-impl": "1.7.3",
"@ot-builder/ot": "1.7.3",
"@ot-builder/ot-glyphs": "1.7.3",
"@ot-builder/ot-metadata": "1.7.3",
"@ot-builder/prelude": "1.7.3",
"@ot-builder/variance": "1.7.3",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/stat-glyphs": {
"version": "1.7.3",
"resolved": "https://registry.npmjs.org/@ot-builder/stat-glyphs/-/stat-glyphs-1.7.3.tgz",
"integrity": "sha512-FtOQCdbEUgu1/En74xAK+AThtiJQte0E+VM28DqJb3rCMCcdcWJhs7N4Rh6BJlwalgKvGTrDMTx/9kNXcrkB+A==",
"dependencies": {
"@ot-builder/bin-composite-types": "1.7.3",
"@ot-builder/common-impl": "1.7.3",
"@ot-builder/ot-glyphs": "1.7.3",
"@ot-builder/ot-metadata": "1.7.3",
"@ot-builder/prelude": "1.7.3",
"@ot-builder/primitive": "1.7.3",
"@ot-builder/variance": "1.7.3",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/trace": {
"version": "1.7.3",
"resolved": "https://registry.npmjs.org/@ot-builder/trace/-/trace-1.7.3.tgz",
"integrity": "sha512-3LvmaNwGMnvfOpg/g4FyqWHJd7+QfUS6Gp9upFVaj5UpKho/0+WWWSJ7GHWhU5dooaIHxPG+sqRfM0zczMUjEQ==",
"dependencies": {
"@ot-builder/common-impl": "1.7.3",
"@ot-builder/ot": "1.7.3",
"@ot-builder/ot-glyphs": "1.7.3",
"@ot-builder/ot-metadata": "1.7.3",
"@ot-builder/prelude": "1.7.3",
"@ot-builder/variance": "1.7.3",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/var-store": {
"version": "1.7.3",
"resolved": "https://registry.npmjs.org/@ot-builder/var-store/-/var-store-1.7.3.tgz",
"integrity": "sha512-R7AbHMGXW+7bQ6JudbXzx1/BGxfCgM99fBWWuLkMJxWcga1oMviOAomP3LEyec2mew302uyQpsrtMNNnuf/rQQ==",
"dependencies": {
"@ot-builder/bin-composite-types": "1.7.3",
"@ot-builder/bin-util": "1.7.3",
"@ot-builder/common-impl": "1.7.3",
"@ot-builder/errors": "1.7.3",
"@ot-builder/prelude": "1.7.3",
"@ot-builder/primitive": "1.7.3",
"@ot-builder/variance": "1.7.3",
"tslib": "^2.0.0"
}
},
"node_modules/@ot-builder/variance": {
"version": "1.7.3",
"resolved": "https://registry.npmjs.org/@ot-builder/variance/-/variance-1.7.3.tgz",
"integrity": "sha512-T4fJVsqb3RzMV21eCRCZbVq/bZgZgye2voiJ+gSgyczXsIX/uUV/gdCnyqyRVijH2D2LdbAipxjCMAy+xjMLaw==",
"dependencies": {
"@ot-builder/bin-composite-types": "1.7.3",
"@ot-builder/common-impl": "1.7.3",
"@ot-builder/prelude": "1.7.3",
"@ot-builder/primitive": "1.7.3",
"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/@ungap/structured-clone": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz",
"integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==",
"dev": true
},
"node_modules/@unicode/unicode-15.1.0": {
"version": "1.5.2",
"resolved": "https://registry.npmjs.org/@unicode/unicode-15.1.0/-/unicode-15.1.0-1.5.2.tgz",
"integrity": "sha512-7PAgnShDr8ziK6XeHB/TUVFboDFEhaQKKyrw55/Kx9o6AQDy1s7dJ9KRpRerW9nrR5qMGUQvOqTXOAek6ZIXkg=="
},
"node_modules/@xmldom/xmldom": {
"version": "0.8.10",
"resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.10.tgz",
"integrity": "sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw==",
"engines": {
"node": ">=10.0.0"
}
},
"node_modules/acorn": {
"version": "8.11.3",
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz",
"integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==",
"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==",
"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==",
"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.7",
"resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.7.tgz",
"integrity": "sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==",
"dev": true,
"dependencies": {
"call-bind": "^1.0.2",
"define-properties": "^1.2.0",
"es-abstract": "^1.22.1",
"get-intrinsic": "^1.2.1",
"is-string": "^1.0.7"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/array.prototype.findlastindex": {
"version": "1.2.3",
"resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.3.tgz",
"integrity": "sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==",
"dev": true,
"dependencies": {
"call-bind": "^1.0.2",
"define-properties": "^1.2.0",
"es-abstract": "^1.22.1",
"es-shim-unscopables": "^1.0.0",
"get-intrinsic": "^1.2.1"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/array.prototype.flat": {
"version": "1.3.2",
"resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz",
"integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==",
"dev": true,
"dependencies": {
"call-bind": "^1.0.2",
"define-properties": "^1.2.0",
"es-abstract": "^1.22.1",
"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.2",
"resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz",
"integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==",
"dev": true,
"dependencies": {
"call-bind": "^1.0.2",
"define-properties": "^1.2.0",
"es-abstract": "^1.22.1",
"es-shim-unscopables": "^1.0.0"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/arraybuffer.prototype.slice": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.2.tgz",
"integrity": "sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==",
"dev": true,
"dependencies": {
"array-buffer-byte-length": "^1.0.0",
"call-bind": "^1.0.2",
"define-properties": "^1.2.0",
"es-abstract": "^1.22.1",
"get-intrinsic": "^1.2.1",
"is-array-buffer": "^3.0.2",
"is-shared-array-buffer": "^1.0.2"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/available-typed-arrays": {
"version": "1.0.6",
"resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.6.tgz",
"integrity": "sha512-j1QzY8iPNPG4o4xmO3ptzpRxTciqD3MgEHtifP/YnJpIo58Xu+ne4BejlbkuaLfXn/nz6HFiw29bLpj2PNMdGg==",
"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==",
"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",