forked from be5invis/Sarasa-Gothic
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage-lock.json
2550 lines (2550 loc) · 90.2 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": "judou-sans",
"version": "2.0-beta-1",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "judou-sans",
"version": "2.0-beta-1",
"hasInstallScript": true,
"dependencies": {
"@chlorophytum/cli": "^0.50.0",
"@chlorophytum/font-format-ttf": "^0.50.0",
"@chlorophytum/hint-store-provider-file": "^0.50.0",
"@chlorophytum/hm-combine": "^0.50.0",
"@chlorophytum/hm-ideograph": "^0.50.0",
"@chlorophytum/hm-select-glyphs": "^0.50.0",
"fs-extra": "^11.2.0",
"ot-builder": "^1.7.4",
"otb-ttc-bundle": "^1.7.4",
"verda": "^1.12.2",
"which": "^4.0.0"
},
"devDependencies": {
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3"
},
"engines": {
"node": ">=20.0.0"
}
},
"node_modules/@chlorophytum/arch": {
"version": "0.50.0",
"resolved": "https://registry.npmjs.org/@chlorophytum/arch/-/arch-0.50.0.tgz",
"integrity": "sha512-64yjIQfxx5qt3noIIo9mBcVdwwNaT4BeqXFcCik/HUuX7JHdDTihPcMpC2DDz6ofuJgv4r1UBRCLSvQrIjQ0Bw==",
"dependencies": {
"tslib": "^2.0.1",
"typable": "^1.0.0"
}
},
"node_modules/@chlorophytum/cli": {
"version": "0.50.0",
"resolved": "https://registry.npmjs.org/@chlorophytum/cli/-/cli-0.50.0.tgz",
"integrity": "sha512-Yt1q7dkfrTpYm7eTW6FqOAPRCCkHKkdPKqzLIceLYxML+LXObAWH+9wjYH53k3ApOznLI4pWUBbMWHqOMYqD/Q==",
"dependencies": {
"@chlorophytum/arch": "0.50.0",
"@chlorophytum/cli-proc": "0.50.0",
"@chlorophytum/hint-store-memory": "0.50.0",
"@chlorophytum/util-json": "0.50.0",
"commander": "^4.1.0",
"json5": "^2.1.1",
"lodash": "^4.17.14",
"tslib": "^2.0.1"
},
"bin": {
"chlorophytum": "bin/_startup"
}
},
"node_modules/@chlorophytum/cli-proc": {
"version": "0.50.0",
"resolved": "https://registry.npmjs.org/@chlorophytum/cli-proc/-/cli-proc-0.50.0.tgz",
"integrity": "sha512-Cv4rjMjKrdv7GVTq4r/x5XMGcomwepZvsGelJQRb1Z746+FkmM3xCl/YhCx178krfteuuPOvcXoSK4mPkiuT0w==",
"dependencies": {
"@chlorophytum/arch": "0.50.0",
"@chlorophytum/hint-store-memory": "0.50.0",
"@chlorophytum/util-json": "0.50.0",
"lodash": "^4.17.14",
"tslib": "^2.0.1"
}
},
"node_modules/@chlorophytum/final-hint-format-hltt": {
"version": "0.50.0",
"resolved": "https://registry.npmjs.org/@chlorophytum/final-hint-format-hltt/-/final-hint-format-hltt-0.50.0.tgz",
"integrity": "sha512-+37l2fZNHB5yNPT4k578dQbXhK5AMcQ0rrRhKlijcV9Xm09rISEemiLHMuPQK5U4z6U9BtGQYsK05T7pOcVstw==",
"dependencies": {
"@chlorophytum/arch": "0.50.0",
"@chlorophytum/hltt-next": "0.50.0",
"@chlorophytum/hltt-next-backend": "0.50.0",
"@chlorophytum/hltt-next-expr": "0.50.0",
"@chlorophytum/hltt-next-expr-impl": "0.50.0",
"@chlorophytum/hltt-next-stmt": "0.50.0",
"@chlorophytum/hltt-next-tr": "0.50.0",
"@chlorophytum/hltt-next-type-system": "0.50.0",
"tslib": "^2.0.1",
"typable": "^1.0.0"
}
},
"node_modules/@chlorophytum/font-format-ttf": {
"version": "0.50.0",
"resolved": "https://registry.npmjs.org/@chlorophytum/font-format-ttf/-/font-format-ttf-0.50.0.tgz",
"integrity": "sha512-65TITvT7np/28yrsEScSGrA2Lau1cyxEGGbFOb/Y5UZegxc/ZqV5u80U/aCnnrXDA1Wd8r61iQy3qVEPRjC5Gw==",
"dependencies": {
"@chlorophytum/arch": "0.50.0",
"@chlorophytum/final-hint-format-hltt": "0.50.0",
"@chlorophytum/font-opentype": "0.50.0",
"@chlorophytum/hltt-next": "0.50.0",
"@chlorophytum/hltt-next-backend": "0.50.0",
"@chlorophytum/hltt-next-tr": "0.50.0",
"@chlorophytum/util-json": "0.50.0",
"fs-extra": "^9.0.1",
"ot-builder": "^1.5.0",
"tslib": "^2.0.1"
}
},
"node_modules/@chlorophytum/font-format-ttf/node_modules/fs-extra": {
"version": "9.1.0",
"resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz",
"integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==",
"dependencies": {
"at-least-node": "^1.0.0",
"graceful-fs": "^4.2.0",
"jsonfile": "^6.0.1",
"universalify": "^2.0.0"
},
"engines": {
"node": ">=10"
}
},
"node_modules/@chlorophytum/font-opentype": {
"version": "0.50.0",
"resolved": "https://registry.npmjs.org/@chlorophytum/font-opentype/-/font-opentype-0.50.0.tgz",
"integrity": "sha512-PDfJ3Hi+ONpv0pXNa2OtF5wuJZGOkjS1u6ozoBBoKmxqyYDJodQNng3+p62muCMciHnypD4vT9tTHpgxApclzA==",
"dependencies": {
"@chlorophytum/arch": "0.50.0",
"tslib": "^2.0.1"
}
},
"node_modules/@chlorophytum/hint-common": {
"version": "0.50.0",
"resolved": "https://registry.npmjs.org/@chlorophytum/hint-common/-/hint-common-0.50.0.tgz",
"integrity": "sha512-mD7ExuSx7W42ANxq4R6p56r/Gs1uyI42NaRLGx1CLENxrSU7Ws7TJYARvPMtmZ+sSak/Owq/yblweXEpCVx1YA==",
"dependencies": {
"@chlorophytum/arch": "0.50.0",
"@chlorophytum/final-hint-format-hltt": "0.50.0",
"@chlorophytum/hltt-next": "0.50.0",
"@chlorophytum/hltt-next-expr": "0.50.0",
"@chlorophytum/hltt-next-stmt": "0.50.0",
"tslib": "^2.0.1",
"typable": "^1.0.0"
}
},
"node_modules/@chlorophytum/hint-embox": {
"version": "0.50.1",
"resolved": "https://registry.npmjs.org/@chlorophytum/hint-embox/-/hint-embox-0.50.1.tgz",
"integrity": "sha512-M3Xw4coYI/JQrB/8v8aA9BeeiapbJdiGaE5M+t9xGZmP9ZJaJTZxuYA4WcRuyaGaxbXVMBSIwMoYsaYCnqw+7Q==",
"dependencies": {
"@chlorophytum/arch": "^0.50.0",
"@chlorophytum/final-hint-format-hltt": "^0.50.0",
"@chlorophytum/hint-programs-stroke-adjust": "0.50.1",
"@chlorophytum/hltt-next": "^0.50.0",
"@chlorophytum/hltt-next-expr": "^0.50.0",
"@chlorophytum/hltt-next-stmt": "^0.50.0",
"@chlorophytum/hltt-next-type-system": "^0.50.0",
"tslib": "^2.0.1",
"typable": "^1.0.0"
}
},
"node_modules/@chlorophytum/hint-multi-stroke": {
"version": "0.50.1",
"resolved": "https://registry.npmjs.org/@chlorophytum/hint-multi-stroke/-/hint-multi-stroke-0.50.1.tgz",
"integrity": "sha512-V8QsOjRGxAOTg5fWNcqJjbi2UOEUFR9J1a4X/z+klgjJmmuc8hPLc2xN3M+ErFYN2eY8vT2QvRt43w1PQkyhvA==",
"dependencies": {
"@chlorophytum/arch": "^0.50.0",
"@chlorophytum/final-hint-format-hltt": "^0.50.0",
"@chlorophytum/hint-embox": "0.50.1",
"@chlorophytum/hint-programs-stroke-adjust": "0.50.1",
"@chlorophytum/hltt-next": "^0.50.0",
"@chlorophytum/hltt-next-expr": "^0.50.0",
"@chlorophytum/hltt-next-stmt": "^0.50.0",
"@chlorophytum/hltt-next-type-system": "^0.50.0",
"lodash": "^4.17.11",
"tslib": "^2.0.1"
}
},
"node_modules/@chlorophytum/hint-programs-stroke-adjust": {
"version": "0.50.1",
"resolved": "https://registry.npmjs.org/@chlorophytum/hint-programs-stroke-adjust/-/hint-programs-stroke-adjust-0.50.1.tgz",
"integrity": "sha512-ecrP+RRWujHtR7XIbHwVoZT4Fg5+qkkK/OYlrMIABpC3djDssGqBLOY93J34b4nw1vLzeSeIuMuSR0N8Mx9lDQ==",
"dependencies": {
"@chlorophytum/arch": "^0.50.0",
"@chlorophytum/hltt-next": "^0.50.0",
"@chlorophytum/hltt-next-expr": "^0.50.0",
"@chlorophytum/hltt-next-stmt": "^0.50.0",
"@chlorophytum/hltt-next-type-system": "^0.50.0",
"tslib": "^2.0.1"
}
},
"node_modules/@chlorophytum/hint-store-memory": {
"version": "0.50.0",
"resolved": "https://registry.npmjs.org/@chlorophytum/hint-store-memory/-/hint-store-memory-0.50.0.tgz",
"integrity": "sha512-0g7Ts2Wwll66hu0lSa6oStdPYbxziM71wDIvuekAt70MRPb2oosV+CpI1scwBLCAlIBX4miggE9PNacw8aYRdw==",
"dependencies": {
"@chlorophytum/arch": "0.50.0",
"tslib": "^2.0.1"
}
},
"node_modules/@chlorophytum/hint-store-provider-file": {
"version": "0.50.0",
"resolved": "https://registry.npmjs.org/@chlorophytum/hint-store-provider-file/-/hint-store-provider-file-0.50.0.tgz",
"integrity": "sha512-Fk9mas/kXvK4P+UGVSGAIObSPPHSxcpvOoS3YH1U8esdBtCkudAy1M3JhW7S72+v0zhnwk08KroH+ZFtnBMSOQ==",
"dependencies": {
"@chlorophytum/arch": "0.50.0",
"@chlorophytum/hint-store-memory": "0.50.0",
"@chlorophytum/util-json": "0.50.0",
"tslib": "^2.0.1"
}
},
"node_modules/@chlorophytum/hltt-next": {
"version": "0.50.0",
"resolved": "https://registry.npmjs.org/@chlorophytum/hltt-next/-/hltt-next-0.50.0.tgz",
"integrity": "sha512-fiVWxRe7SiIjyXEUMK+hFx2JwTNL65ijiHL971pVxH/dsV/u4UJX3z2Mdwpvp2F6s9zE2yiwHS4a474nkEIv6w==",
"dependencies": {
"@chlorophytum/hltt-next-backend": "0.50.0",
"@chlorophytum/hltt-next-expr": "0.50.0",
"@chlorophytum/hltt-next-expr-impl": "0.50.0",
"@chlorophytum/hltt-next-stmt": "0.50.0",
"@chlorophytum/hltt-next-tr": "0.50.0",
"@chlorophytum/hltt-next-type-system": "0.50.0",
"tslib": "^2.0.1"
}
},
"node_modules/@chlorophytum/hltt-next-backend": {
"version": "0.50.0",
"resolved": "https://registry.npmjs.org/@chlorophytum/hltt-next-backend/-/hltt-next-backend-0.50.0.tgz",
"integrity": "sha512-OMKks4PhJYa1WZAhAYsUwbsCKWSz9uNjyD50+EWQDzGtOnysY9/PECgQ8rtILhxRh0jswaJ7EEsqGEMIMf5e3w==",
"dependencies": {
"tslib": "^2.0.1"
}
},
"node_modules/@chlorophytum/hltt-next-expr": {
"version": "0.50.0",
"resolved": "https://registry.npmjs.org/@chlorophytum/hltt-next-expr/-/hltt-next-expr-0.50.0.tgz",
"integrity": "sha512-Od6VnixuJBjZHjd9e3bIwe/Isw6yPcTzBnhaThd0MbvguBLB1zQlkeq72CpU8hbYqMJt/dRa3am7YicIYzbsxQ==",
"dependencies": {
"@chlorophytum/hltt-next-backend": "0.50.0",
"@chlorophytum/hltt-next-expr-impl": "0.50.0",
"@chlorophytum/hltt-next-tr": "0.50.0",
"@chlorophytum/hltt-next-type-system": "0.50.0",
"tslib": "^2.0.1"
}
},
"node_modules/@chlorophytum/hltt-next-expr-impl": {
"version": "0.50.0",
"resolved": "https://registry.npmjs.org/@chlorophytum/hltt-next-expr-impl/-/hltt-next-expr-impl-0.50.0.tgz",
"integrity": "sha512-tg9KhwG+0EWmrJMfxKKyxOlEIUOKqFes7eJtZ7SPt+kxJ9GzynIlQES/2ZoclJQFwfWg4RSPOT1XI0dO6xdiqQ==",
"dependencies": {
"@chlorophytum/hltt-next-backend": "0.50.0",
"@chlorophytum/hltt-next-tr": "0.50.0",
"@chlorophytum/hltt-next-type-system": "0.50.0",
"tslib": "^2.0.1"
}
},
"node_modules/@chlorophytum/hltt-next-stmt": {
"version": "0.50.0",
"resolved": "https://registry.npmjs.org/@chlorophytum/hltt-next-stmt/-/hltt-next-stmt-0.50.0.tgz",
"integrity": "sha512-lP6kCF7ynz3hTJOCUSKtWngicJUhEx2KSJHw8e6wz0ey0fAQtGVRGq10s/RKN8LufxwnsJMQCGnmJF4ZuPHApA==",
"dependencies": {
"@chlorophytum/hltt-next-backend": "0.50.0",
"@chlorophytum/hltt-next-expr-impl": "0.50.0",
"@chlorophytum/hltt-next-tr": "0.50.0",
"@chlorophytum/hltt-next-type-system": "0.50.0",
"tslib": "^2.0.1"
}
},
"node_modules/@chlorophytum/hltt-next-tr": {
"version": "0.50.0",
"resolved": "https://registry.npmjs.org/@chlorophytum/hltt-next-tr/-/hltt-next-tr-0.50.0.tgz",
"integrity": "sha512-8ETa67mhmpdpHx77XrKIOEaigVkkMPnz1meu+1wF0JCUf0ViMAWgTeEhRx0OdMoJVRvo9SqGIoaAV8sG+Vq90Q==",
"dependencies": {
"@chlorophytum/hltt-next-backend": "0.50.0",
"tslib": "^2.0.1"
}
},
"node_modules/@chlorophytum/hltt-next-type-system": {
"version": "0.50.0",
"resolved": "https://registry.npmjs.org/@chlorophytum/hltt-next-type-system/-/hltt-next-type-system-0.50.0.tgz",
"integrity": "sha512-RGpeonjYEyMk8MPUvD7bJDU5HbdCx9tZgM8KUDkRvXk19bbiAeHljC576UQ33cYVwbV7TlP1zgo123qEZsn8xw==",
"dependencies": {
"tslib": "^2.0.1"
}
},
"node_modules/@chlorophytum/hm-combine": {
"version": "0.50.0",
"resolved": "https://registry.npmjs.org/@chlorophytum/hm-combine/-/hm-combine-0.50.0.tgz",
"integrity": "sha512-BMY3WNNgHG8C6iD8qVcgoIDEysDbbqIX/nIMhtg//wtSVh0RTEb9ZHZjMxsY8ycVDzIaspawyL6Ni/AhB9u7Cw==",
"dependencies": {
"@chlorophytum/arch": "0.50.0",
"@chlorophytum/hint-store-memory": "0.50.0",
"lodash": "^4.17.14",
"tslib": "^2.0.1"
}
},
"node_modules/@chlorophytum/hm-ideograph": {
"version": "0.50.1",
"resolved": "https://registry.npmjs.org/@chlorophytum/hm-ideograph/-/hm-ideograph-0.50.1.tgz",
"integrity": "sha512-NCSUlwJ4dgC8gOWHEYIe5WARd4vWy4bnzi8j1Vm9lriW2OuyZzN6PdAwEGSKrPUId+Ps9FUIu9pzqKGrG0aRjA==",
"dependencies": {
"@chlorophytum/arch": "^0.50.0",
"@chlorophytum/ideograph-hint-generator-1": "0.50.1",
"@chlorophytum/ideograph-shape-analyzer-1": "0.50.1",
"@chlorophytum/ideograph-shape-analyzer-shared": "0.50.1",
"tslib": "^2.0.1"
}
},
"node_modules/@chlorophytum/hm-select-glyphs": {
"version": "0.50.0",
"resolved": "https://registry.npmjs.org/@chlorophytum/hm-select-glyphs/-/hm-select-glyphs-0.50.0.tgz",
"integrity": "sha512-2xqLzVpce3JuFb4H7Dy9PcwRasfVGU9+729TGo9CZDUln9M3BLyqoHoJAylZ4MpCd16aj5BM0aE5Ztj8XQxvVg==",
"dependencies": {
"@chlorophytum/arch": "0.50.0",
"@unicode/unicode-13.0.0": "^1.0.6",
"lodash": "^4.17.14",
"tslib": "^2.0.1"
}
},
"node_modules/@chlorophytum/ideograph-hint-generator-1": {
"version": "0.50.1",
"resolved": "https://registry.npmjs.org/@chlorophytum/ideograph-hint-generator-1/-/ideograph-hint-generator-1-0.50.1.tgz",
"integrity": "sha512-r7wS8dJ2EYXllKQ12BgLpgrpC2rvmnmMxQ5iXatN0MLbHCUVZPzd9pVeRbOBykkb7VvFKmaMkmsS5KOJBpyNQg==",
"dependencies": {
"@chlorophytum/arch": "^0.50.0",
"@chlorophytum/hint-common": "^0.50.0",
"@chlorophytum/hint-embox": "0.50.1",
"@chlorophytum/hint-multi-stroke": "0.50.1",
"@chlorophytum/ideograph-shape-analyzer-1": "0.50.1",
"@chlorophytum/ideograph-shape-analyzer-shared": "0.50.1",
"tslib": "^2.0.1"
}
},
"node_modules/@chlorophytum/ideograph-shape-analyzer-1": {
"version": "0.50.1",
"resolved": "https://registry.npmjs.org/@chlorophytum/ideograph-shape-analyzer-1/-/ideograph-shape-analyzer-1-0.50.1.tgz",
"integrity": "sha512-g7srgrYF3e7dg9WQ/hE4G9rCwb/GXAlRf61W8NbB1EYBtnaOsN3GyyYNUy5vBB7gyyPyw4/OgIhSrhhHLTh9qQ==",
"dependencies": {
"@chlorophytum/arch": "^0.50.0",
"@chlorophytum/ideograph-shape-analyzer-shared": "0.50.1",
"lodash": "^4.17.11",
"tslib": "^2.0.1"
}
},
"node_modules/@chlorophytum/ideograph-shape-analyzer-shared": {
"version": "0.50.1",
"resolved": "https://registry.npmjs.org/@chlorophytum/ideograph-shape-analyzer-shared/-/ideograph-shape-analyzer-shared-0.50.1.tgz",
"integrity": "sha512-07bb/ozteZKD+cP5yd3si6XxtttAW1gNIJMBbNgys/rywx1rmyEQgjbHGyH3XMbGtQ0t3NGJVsyjxLhQ9nV9bw==",
"dependencies": {
"@chlorophytum/arch": "^0.50.0",
"lodash": "^4.17.11",
"tslib": "^2.0.1"
}
},
"node_modules/@chlorophytum/util-json": {
"version": "0.50.0",
"resolved": "https://registry.npmjs.org/@chlorophytum/util-json/-/util-json-0.50.0.tgz",
"integrity": "sha512-QWl5Kn0Ur1XWKfWVy28SRfS0F0abhcZCYY5fEa4r2dIpQkq0O1JN2AQph57ntzLFk+3Kd94QCr9NvPj/e3Az9w==",
"dependencies": {
"JSONStream": "^1.3.5",
"strip-bom-stream": "^4.0.0",
"tslib": "^2.0.1"
}
},
"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/eslint-utils/node_modules/eslint-visitor-keys": {
"version": "3.4.3",
"resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz",
"integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==",
"dev": true,
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"funding": {
"url": "https://opencollective.com/eslint"
}
},
"node_modules/@eslint-community/regexpp": {
"version": "4.11.0",
"resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.11.0.tgz",
"integrity": "sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==",
"dev": true,
"engines": {
"node": "^12.0.0 || ^14.0.0 || >=16.0.0"
}
},
"node_modules/@eslint/config-array": {
"version": "0.17.1",
"resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.17.1.tgz",
"integrity": "sha512-BlYOpej8AQ8Ev9xVqroV7a02JK3SkBAaN9GfMMH9W6Ch8FlQlkjGw4Ir7+FgYwfirivAf4t+GtzuAxqfukmISA==",
"dev": true,
"dependencies": {
"@eslint/object-schema": "^2.1.4",
"debug": "^4.3.1",
"minimatch": "^3.1.2"
},
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
}
},
"node_modules/@eslint/eslintrc": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.1.0.tgz",
"integrity": "sha512-4Bfj15dVJdoy3RfZmmo86RK1Fwzn6SstsvK9JS+BaVKqC6QQQQyXekNaC+g+LKNgkQ+2VhGAzm6hO40AhMR3zQ==",
"dev": true,
"dependencies": {
"ajv": "^6.12.4",
"debug": "^4.3.2",
"espree": "^10.0.1",
"globals": "^14.0.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": "^18.18.0 || ^20.9.0 || >=21.1.0"
},
"funding": {
"url": "https://opencollective.com/eslint"
}
},
"node_modules/@eslint/js": {
"version": "9.8.0",
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.8.0.tgz",
"integrity": "sha512-MfluB7EUfxXtv3i/++oh89uzAr4PDI4nn201hsp+qaXqsjAWzinlZEHEfPgAX4doIlKvPG/i0A9dpKxOLII8yA==",
"dev": true,
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
}
},
"node_modules/@eslint/object-schema": {
"version": "2.1.4",
"resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.4.tgz",
"integrity": "sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==",
"dev": true,
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.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/retry": {
"version": "0.3.0",
"resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.3.0.tgz",
"integrity": "sha512-d2CGZR2o7fS6sWB7DG/3a95bGKQyHMACZ5aW8qGkkqQpUoZV6C0X7Pc7l4ZNMZkfNBf4VWNe9E1jRsf0G146Ew==",
"dev": true,
"engines": {
"node": ">=18.18"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/nzakas"
}
},
"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.4",
"resolved": "https://registry.npmjs.org/@ot-builder/bin-composite-types/-/bin-composite-types-1.7.4.tgz",
"integrity": "sha512-XaSxfufTFTBG9n7NHBapyqj3m7gy4vO2O6C6F1wvd3lAmTjGrIix1oCTXbKAH6XYdqYbkrcJ637ksRgssOyj0g==",
"dependencies": {
"@ot-builder/bin-util": "1.7.4",
"@ot-builder/errors": "1.7.4",
"@ot-builder/prelude": "1.7.4",
"tslib": "^2.6.3"
}
},
"node_modules/@ot-builder/bin-util": {
"version": "1.7.4",
"resolved": "https://registry.npmjs.org/@ot-builder/bin-util/-/bin-util-1.7.4.tgz",
"integrity": "sha512-+AMUGJBMdCAQPrSV4yA4QPi1qzS/wb8BaSsFswd6GkhTze4UWMCbiu1yjoLSV7XzMC2toCXlY2YnxT120IScJw==",
"dependencies": {
"@ot-builder/common-impl": "1.7.4",
"@ot-builder/errors": "1.7.4",
"@ot-builder/prelude": "1.7.4",
"tslib": "^2.6.3"
}
},
"node_modules/@ot-builder/cli-help-shower": {
"version": "1.7.4",
"resolved": "https://registry.npmjs.org/@ot-builder/cli-help-shower/-/cli-help-shower-1.7.4.tgz",
"integrity": "sha512-twEW4Iz93apHrvb9ZOmc3Y7K1wYGRhjfT99OvLqgH1M+os8f+f2AQIWibW18e2Vro4GcNTqwvEna+uyIkrNVbQ==",
"dependencies": {
"picocolors": "^1.0.1",
"tslib": "^2.6.3"
}
},
"node_modules/@ot-builder/cli-proc": {
"version": "1.7.4",
"resolved": "https://registry.npmjs.org/@ot-builder/cli-proc/-/cli-proc-1.7.4.tgz",
"integrity": "sha512-tAcIgAEDYGazOTcaErZhQ9SGU4ufRL+pZe7nokce8pbzPGXfu+sQ8puJcpGRgSQ2MAoiW52RCaZOi0t2kdtZCg==",
"dependencies": {
"@ot-builder/common-impl": "1.7.4",
"@ot-builder/io-bin-font": "1.7.4",
"@ot-builder/ot": "1.7.4",
"@ot-builder/prelude": "1.7.4",
"@ot-builder/primitive": "1.7.4",
"@ot-builder/rectify": "1.7.4",
"@ot-builder/trace": "1.7.4",
"tslib": "^2.6.3"
}
},
"node_modules/@ot-builder/cli-shared": {
"version": "1.7.4",
"resolved": "https://registry.npmjs.org/@ot-builder/cli-shared/-/cli-shared-1.7.4.tgz",
"integrity": "sha512-eZocU2bGwvutOT51X21yV0FNt68JHxEdG0j+gP/vhdqoC/UZTQ06kBAAmzNy+d7yGS5nZ8NYcY/qKTKJpbqzTw==",
"dependencies": {
"@ot-builder/io-bin-font": "1.7.4",
"@ot-builder/ot": "1.7.4",
"tslib": "^2.6.3"
}
},
"node_modules/@ot-builder/common-impl": {
"version": "1.7.4",
"resolved": "https://registry.npmjs.org/@ot-builder/common-impl/-/common-impl-1.7.4.tgz",
"integrity": "sha512-lwcVk8VEKy3i2j9JxZjFJjA7QA8jbZk9ZoYKmEqcLWFEd7p+mGN9qUI0QU8joGp1w2bOfmEFm0MDTNVwz6CNuw==",
"dependencies": {
"@ot-builder/prelude": "1.7.4",
"tslib": "^2.6.3"
}
},
"node_modules/@ot-builder/errors": {
"version": "1.7.4",
"resolved": "https://registry.npmjs.org/@ot-builder/errors/-/errors-1.7.4.tgz",
"integrity": "sha512-/AKwI0jwi7t02Y3Nqe11mGIQta4hQijFDhIpwu9TcZmM1+S/8CjDRSntMQBIPQ+W2IKTNsuBH5WHWXsYAnxnyg==",
"dependencies": {
"tslib": "^2.6.3"
}
},
"node_modules/@ot-builder/io-bin-cff": {
"version": "1.7.4",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-cff/-/io-bin-cff-1.7.4.tgz",
"integrity": "sha512-x6LdH3X6dovUaoJtLmfxxaygNrbeyftq8pcKD8eswW5XF7Lc52a8fe7yHKR+x3p7PQAUemX0qXURduTKJIym6A==",
"dependencies": {
"@ot-builder/bin-composite-types": "1.7.4",
"@ot-builder/bin-util": "1.7.4",
"@ot-builder/common-impl": "1.7.4",
"@ot-builder/errors": "1.7.4",
"@ot-builder/ot-glyphs": "1.7.4",
"@ot-builder/ot-metadata": "1.7.4",
"@ot-builder/prelude": "1.7.4",
"@ot-builder/primitive": "1.7.4",
"@ot-builder/stat-glyphs": "1.7.4",
"@ot-builder/var-store": "1.7.4",
"@ot-builder/variance": "1.7.4",
"tslib": "^2.6.3"
}
},
"node_modules/@ot-builder/io-bin-encoding": {
"version": "1.7.4",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-encoding/-/io-bin-encoding-1.7.4.tgz",
"integrity": "sha512-67K5TQvtkbGR3LdeHaa0MNZ7FCksssPOQ5BbFw+fsTVw/1Xjo7mFbttEPYdhD3zN+C+vsVcJgKYmFQ0mmAA1ew==",
"dependencies": {
"@ot-builder/bin-util": "1.7.4",
"@ot-builder/errors": "1.7.4",
"@ot-builder/io-bin-sfnt": "1.7.4",
"@ot-builder/ot-encoding": "1.7.4",
"@ot-builder/ot-glyphs": "1.7.4",
"@ot-builder/ot-metadata": "1.7.4",
"@ot-builder/ot-sfnt": "1.7.4",
"@ot-builder/prelude": "1.7.4",
"@ot-builder/primitive": "1.7.4",
"tslib": "^2.6.3"
}
},
"node_modules/@ot-builder/io-bin-ext-private": {
"version": "1.7.4",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-ext-private/-/io-bin-ext-private-1.7.4.tgz",
"integrity": "sha512-wnMueaaBhK2OPh8HPqIKbQt1FfRPg3rm4H7MDftgMZ7snxo+P6xCYuM9bQzfn1Lvn1JbsOg8rH93Q/HDVnjw+g==",
"dependencies": {
"@ot-builder/bin-util": "1.7.4",
"@ot-builder/errors": "1.7.4",
"@ot-builder/io-bin-sfnt": "1.7.4",
"@ot-builder/ot-ext-private": "1.7.4",
"@ot-builder/ot-glyphs": "1.7.4",
"@ot-builder/ot-metadata": "1.7.4",
"@ot-builder/ot-sfnt": "1.7.4",
"@ot-builder/prelude": "1.7.4",
"@ot-builder/primitive": "1.7.4",
"tslib": "^2.6.3"
}
},
"node_modules/@ot-builder/io-bin-font": {
"version": "1.7.4",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-font/-/io-bin-font-1.7.4.tgz",
"integrity": "sha512-5spp+1WI9uCMk0fdmLPTaEun0N1NxbCcPglsdf/PBEjWAasDaOdZoQueCx9x+xwdKaleQSnmQAFhs1v2JHusqg==",
"dependencies": {
"@ot-builder/bin-util": "1.7.4",
"@ot-builder/io-bin-encoding": "1.7.4",
"@ot-builder/io-bin-ext-private": "1.7.4",
"@ot-builder/io-bin-glyph-store": "1.7.4",
"@ot-builder/io-bin-layout": "1.7.4",
"@ot-builder/io-bin-metadata": "1.7.4",
"@ot-builder/io-bin-name": "1.7.4",
"@ot-builder/io-bin-sfnt": "1.7.4",
"@ot-builder/io-bin-vtt-private": "1.7.4",
"@ot-builder/ot": "1.7.4",
"@ot-builder/ot-encoding": "1.7.4",
"@ot-builder/ot-ext-private": "1.7.4",
"@ot-builder/ot-glyphs": "1.7.4",
"@ot-builder/ot-layout": "1.7.4",
"@ot-builder/ot-metadata": "1.7.4",
"@ot-builder/ot-name": "1.7.4",
"@ot-builder/ot-sfnt": "1.7.4",
"@ot-builder/ot-vtt-private": "1.7.4",
"@ot-builder/prelude": "1.7.4",
"tslib": "^2.6.3"
}
},
"node_modules/@ot-builder/io-bin-glyph-store": {
"version": "1.7.4",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-glyph-store/-/io-bin-glyph-store-1.7.4.tgz",
"integrity": "sha512-KYRXubuiEYdcdkf8mBKyjaDhSqdWn8ryGHAdlTtuk9NdeQZJMqa9dRFPB+eD72Oh6XYm+f4Xrk8xhXL/f6FCeA==",
"dependencies": {
"@ot-builder/bin-util": "1.7.4",
"@ot-builder/common-impl": "1.7.4",
"@ot-builder/errors": "1.7.4",
"@ot-builder/io-bin-cff": "1.7.4",
"@ot-builder/io-bin-metric": "1.7.4",
"@ot-builder/io-bin-sfnt": "1.7.4",
"@ot-builder/io-bin-ttf": "1.7.4",
"@ot-builder/ot-glyphs": "1.7.4",
"@ot-builder/ot-metadata": "1.7.4",
"@ot-builder/ot-sfnt": "1.7.4",
"@ot-builder/prelude": "1.7.4",
"@ot-builder/primitive": "1.7.4",
"@ot-builder/stat-glyphs": "1.7.4",
"@ot-builder/var-store": "1.7.4",
"@ot-builder/variance": "1.7.4",
"tslib": "^2.6.3"
}
},
"node_modules/@ot-builder/io-bin-layout": {
"version": "1.7.4",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-layout/-/io-bin-layout-1.7.4.tgz",
"integrity": "sha512-f80FpvrKs93eXg0+EJEr86nz4gIMsN/SqueH0/ulNsrhpwVULqvgSrrpcObveQrBTpybU0vVPb68l8WnzTVsQw==",
"dependencies": {
"@ot-builder/bin-composite-types": "1.7.4",
"@ot-builder/bin-util": "1.7.4",
"@ot-builder/common-impl": "1.7.4",
"@ot-builder/errors": "1.7.4",
"@ot-builder/io-bin-sfnt": "1.7.4",
"@ot-builder/ot-glyphs": "1.7.4",
"@ot-builder/ot-layout": "1.7.4",
"@ot-builder/ot-metadata": "1.7.4",
"@ot-builder/ot-sfnt": "1.7.4",
"@ot-builder/prelude": "1.7.4",
"@ot-builder/primitive": "1.7.4",
"@ot-builder/var-store": "1.7.4",
"@ot-builder/variance": "1.7.4",
"tslib": "^2.6.3"
}
},
"node_modules/@ot-builder/io-bin-metadata": {
"version": "1.7.4",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-metadata/-/io-bin-metadata-1.7.4.tgz",
"integrity": "sha512-2IYM5UPOe0ThcyF2bF4W5eZR8immdAecpE7DDh5ApBxJ8w3kaWpOy5hwtfSNeZ5M8ruB7M9ccFbRQMMtNJCMCQ==",
"dependencies": {
"@ot-builder/bin-composite-types": "1.7.4",
"@ot-builder/bin-util": "1.7.4",
"@ot-builder/common-impl": "1.7.4",
"@ot-builder/errors": "1.7.4",
"@ot-builder/io-bin-sfnt": "1.7.4",
"@ot-builder/ot-metadata": "1.7.4",
"@ot-builder/ot-sfnt": "1.7.4",
"@ot-builder/prelude": "1.7.4",
"@ot-builder/primitive": "1.7.4",
"@ot-builder/var-store": "1.7.4",
"@ot-builder/variance": "1.7.4",
"tslib": "^2.6.3"
}
},
"node_modules/@ot-builder/io-bin-metric": {
"version": "1.7.4",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-metric/-/io-bin-metric-1.7.4.tgz",
"integrity": "sha512-/aUSlKXDRwLjzcAayf+QvLfGQodCVYTlWORoxlHrSjN+uQcRqnKGPc/shgqd1qADeO+3Slv1VNFFyIURyCxfSg==",
"dependencies": {
"@ot-builder/bin-util": "1.7.4",
"@ot-builder/common-impl": "1.7.4",
"@ot-builder/errors": "1.7.4",
"@ot-builder/ot-glyphs": "1.7.4",
"@ot-builder/ot-metadata": "1.7.4",
"@ot-builder/prelude": "1.7.4",
"@ot-builder/primitive": "1.7.4",
"@ot-builder/var-store": "1.7.4",
"@ot-builder/variance": "1.7.4",
"tslib": "^2.6.3"
}
},
"node_modules/@ot-builder/io-bin-name": {
"version": "1.7.4",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-name/-/io-bin-name-1.7.4.tgz",
"integrity": "sha512-YCcvHOvdPpgsJHbGnE1WyZOUuUUImfXjKSAKX2PruHaE6tmly0s9rpLkx0FVPg7mIhyS4+UZ3qkk67FcgNHiiQ==",
"dependencies": {
"@ot-builder/bin-util": "1.7.4",
"@ot-builder/common-impl": "1.7.4",
"@ot-builder/errors": "1.7.4",
"@ot-builder/io-bin-sfnt": "1.7.4",
"@ot-builder/ot-glyphs": "1.7.4",
"@ot-builder/ot-metadata": "1.7.4",
"@ot-builder/ot-name": "1.7.4",
"@ot-builder/ot-sfnt": "1.7.4",
"@ot-builder/prelude": "1.7.4",
"@ot-builder/primitive": "1.7.4",
"iconv-lite": "^0.6.3",
"tslib": "^2.6.3"
}
},
"node_modules/@ot-builder/io-bin-sfnt": {
"version": "1.7.4",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-sfnt/-/io-bin-sfnt-1.7.4.tgz",
"integrity": "sha512-PB2d04G1SEU4jaO0BHMHGgxLklXGXNRwjENlzQobZ+VtlpgbbXAkwcLSgWUDxeQIso1PoTESALDD9TeodEgFOQ==",
"dependencies": {
"@ot-builder/bin-util": "1.7.4",
"@ot-builder/common-impl": "1.7.4",
"@ot-builder/errors": "1.7.4",
"@ot-builder/ot-sfnt": "1.7.4",
"@ot-builder/prelude": "1.7.4",
"@ot-builder/primitive": "1.7.4",
"tslib": "^2.6.3"
}
},
"node_modules/@ot-builder/io-bin-ttf": {
"version": "1.7.4",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-ttf/-/io-bin-ttf-1.7.4.tgz",
"integrity": "sha512-FG34A/H6jhvLAZy5SnjzWWqaN6KlJYyfGjnJXR5licsSYGhbH7Qqc84fYJIByqWE7M0QnHcihjFQd8awi5ZPnA==",
"dependencies": {
"@ot-builder/bin-util": "1.7.4",
"@ot-builder/common-impl": "1.7.4",
"@ot-builder/errors": "1.7.4",
"@ot-builder/ot-glyphs": "1.7.4",
"@ot-builder/ot-metadata": "1.7.4",
"@ot-builder/prelude": "1.7.4",
"@ot-builder/primitive": "1.7.4",
"@ot-builder/stat-glyphs": "1.7.4",
"@ot-builder/var-store": "1.7.4",
"@ot-builder/variance": "1.7.4",
"tslib": "^2.6.3"
}
},
"node_modules/@ot-builder/io-bin-vtt-private": {
"version": "1.7.4",
"resolved": "https://registry.npmjs.org/@ot-builder/io-bin-vtt-private/-/io-bin-vtt-private-1.7.4.tgz",
"integrity": "sha512-MlxloArXsecQ3VVjCxixdYXVkmZO8S8OGrQIfQawwVlKyO1tmBgDtJ0pwwMXiSf6WNQnh7AuLrVAPg6mZ9Ew0w==",
"dependencies": {
"@ot-builder/bin-util": "1.7.4",
"@ot-builder/errors": "1.7.4",
"@ot-builder/io-bin-sfnt": "1.7.4",
"@ot-builder/io-bin-ttf": "1.7.4",
"@ot-builder/ot-glyphs": "1.7.4",
"@ot-builder/ot-metadata": "1.7.4",
"@ot-builder/ot-sfnt": "1.7.4",
"@ot-builder/ot-vtt-private": "1.7.4",
"@ot-builder/prelude": "1.7.4",
"@ot-builder/primitive": "1.7.4",
"@ot-builder/variance": "1.7.4",
"iconv-lite": "^0.6.3",
"tslib": "^2.6.3"
}
},
"node_modules/@ot-builder/ot": {
"version": "1.7.4",
"resolved": "https://registry.npmjs.org/@ot-builder/ot/-/ot-1.7.4.tgz",
"integrity": "sha512-TRJrEiFGStlgQB3/eJSAIJd0I5Kza1aNff8jcfmxtgUh2TPYDtHeMtpsNxzIOAVJ5RD8GlKzqTCiDVQerc17UA==",
"dependencies": {
"@ot-builder/common-impl": "1.7.4",
"@ot-builder/ot-encoding": "1.7.4",
"@ot-builder/ot-ext-private": "1.7.4",
"@ot-builder/ot-glyphs": "1.7.4",
"@ot-builder/ot-layout": "1.7.4",
"@ot-builder/ot-metadata": "1.7.4",
"@ot-builder/ot-name": "1.7.4",
"@ot-builder/ot-sfnt": "1.7.4",
"@ot-builder/ot-standard-glyph-namer": "1.7.4",
"@ot-builder/ot-vtt-private": "1.7.4",
"@ot-builder/prelude": "1.7.4",
"@ot-builder/variance": "1.7.4",
"tslib": "^2.6.3"
}
},
"node_modules/@ot-builder/ot-encoding": {
"version": "1.7.4",
"resolved": "https://registry.npmjs.org/@ot-builder/ot-encoding/-/ot-encoding-1.7.4.tgz",
"integrity": "sha512-VCb4yPuEciEoVUcVb5rzBioGvYZtq8del1DgfOFGE1XVpfN2B+5jPqII9VLgFxjsHnjuEf4l7o6XtphVwYw+mA==",
"dependencies": {
"@ot-builder/ot-glyphs": "1.7.4",
"@ot-builder/prelude": "1.7.4",
"tslib": "^2.6.3"
}
},
"node_modules/@ot-builder/ot-ext-private": {
"version": "1.7.4",
"resolved": "https://registry.npmjs.org/@ot-builder/ot-ext-private/-/ot-ext-private-1.7.4.tgz",
"integrity": "sha512-aPtn3of2pqTwkpS+tbzV76tNjwgwNCNe9M16/8z14r7GxUjwfWyj3rqw8Qbp1eilZJRpkEKLFTvOYguZdvvtYA==",
"dependencies": {
"@ot-builder/ot-glyphs": "1.7.4",
"@ot-builder/prelude": "1.7.4",
"tslib": "^2.6.3"
}
},
"node_modules/@ot-builder/ot-glyphs": {
"version": "1.7.4",
"resolved": "https://registry.npmjs.org/@ot-builder/ot-glyphs/-/ot-glyphs-1.7.4.tgz",
"integrity": "sha512-2LaJzBgZxhE0o7ohrVXYT1LCuK5d79BwXJbv5NEftrMmvmr1ppBLOiwpaVbAT8t2K8QDOr0AwuEcWU4QBGqzrw==",
"dependencies": {
"@ot-builder/common-impl": "1.7.4",
"@ot-builder/prelude": "1.7.4",
"@ot-builder/primitive": "1.7.4",
"@ot-builder/variance": "1.7.4",
"tslib": "^2.6.3"
}
},
"node_modules/@ot-builder/ot-layout": {
"version": "1.7.4",
"resolved": "https://registry.npmjs.org/@ot-builder/ot-layout/-/ot-layout-1.7.4.tgz",
"integrity": "sha512-rYgZZRPsrzGHRujAisBOWU1vD5AaPOTWiwnFdlPJGSX+LQu5TJJM+26i63eR/45SS1BrCwUzQFTRr+/m0Xue7Q==",
"dependencies": {
"@ot-builder/ot-glyphs": "1.7.4",
"@ot-builder/prelude": "1.7.4",
"@ot-builder/primitive": "1.7.4",
"@ot-builder/variance": "1.7.4",
"tslib": "^2.6.3"
}
},
"node_modules/@ot-builder/ot-metadata": {
"version": "1.7.4",
"resolved": "https://registry.npmjs.org/@ot-builder/ot-metadata/-/ot-metadata-1.7.4.tgz",
"integrity": "sha512-yMM0xDz7bD8KduIWEezd5m/2sD6W6fGcJGANObBdmekxNcwj1gSKs2+RJL+7BPHZdB348kgWfZ8OAXHCxoO8kQ==",
"dependencies": {
"@ot-builder/common-impl": "1.7.4",
"@ot-builder/prelude": "1.7.4",
"@ot-builder/primitive": "1.7.4",
"@ot-builder/variance": "1.7.4",
"tslib": "^2.6.3"
}
},
"node_modules/@ot-builder/ot-name": {
"version": "1.7.4",
"resolved": "https://registry.npmjs.org/@ot-builder/ot-name/-/ot-name-1.7.4.tgz",
"integrity": "sha512-DCaQt7Cga5oDiq3sbkMLCSWkqL8OIYCcEkbouC86cO84lYwx3OmImMFJwKeFnMLuDFn+oL8IhQuE7ndMsY7mGg==",
"dependencies": {
"@ot-builder/prelude": "1.7.4",
"@ot-builder/primitive": "1.7.4",
"tslib": "^2.6.3"
}
},
"node_modules/@ot-builder/ot-sfnt": {
"version": "1.7.4",
"resolved": "https://registry.npmjs.org/@ot-builder/ot-sfnt/-/ot-sfnt-1.7.4.tgz",
"integrity": "sha512-qgw20yD04OXwn0QlUgrMYAsLjQt++JaivL2hjoQH+UBDRPMwYMYoUDzQL9covU9x/lvU6bESHIUbd/oPUPI12Q==",
"dependencies": {
"@ot-builder/prelude": "1.7.4",
"@ot-builder/primitive": "1.7.4",
"tslib": "^2.6.3"
}
},
"node_modules/@ot-builder/ot-standard-glyph-namer": {
"version": "1.7.4",
"resolved": "https://registry.npmjs.org/@ot-builder/ot-standard-glyph-namer/-/ot-standard-glyph-namer-1.7.4.tgz",
"integrity": "sha512-o9nB/vTR/NuMSJSkyOKG51jSd7s34m+fb41kZfZd3i9z2SLWRzjo3FwN+LRxwWhDtpR3L/bPOR8Y1KmhJYxtXw==",
"dependencies": {
"@ot-builder/ot-glyphs": "1.7.4",
"@ot-builder/prelude": "1.7.4",
"aglfn": "^1.0.2",
"tslib": "^2.6.3"
}
},
"node_modules/@ot-builder/ot-vtt-private": {
"version": "1.7.4",
"resolved": "https://registry.npmjs.org/@ot-builder/ot-vtt-private/-/ot-vtt-private-1.7.4.tgz",
"integrity": "sha512-UWgGJOVtboW6B0VKul5eK7HtSskUEZoxHzYQ0/YTKXzLmL8yqsMkIROC+5WFk+9KyzYWE81byWRJj6N46hH2Yg==",
"dependencies": {
"@ot-builder/ot-glyphs": "1.7.4",
"@ot-builder/prelude": "1.7.4",
"@ot-builder/variance": "1.7.4",
"tslib": "^2.6.3"
}
},
"node_modules/@ot-builder/prelude": {
"version": "1.7.4",
"resolved": "https://registry.npmjs.org/@ot-builder/prelude/-/prelude-1.7.4.tgz",
"integrity": "sha512-cCI/PbHYOpa0kaGeLuDPjjaVzQoSAK8WdrwbaIgbKTEf9e2IwNsgMdPsfvZIQTbKumJuTFQPcIbGMmJNbi2EYg==",
"dependencies": {
"tslib": "^2.6.3"
}
},
"node_modules/@ot-builder/primitive": {
"version": "1.7.4",
"resolved": "https://registry.npmjs.org/@ot-builder/primitive/-/primitive-1.7.4.tgz",
"integrity": "sha512-/FOpU9JozQV4uctZ7NQGHOeDIlgK86AaOrtCNhcp2drDV3vOz7qDrxerzcdKaJMAkYMC2BEENOy5aogd6IzbcQ==",
"dependencies": {
"@ot-builder/bin-util": "1.7.4",
"@ot-builder/errors": "1.7.4",
"@ot-builder/prelude": "1.7.4",
"tslib": "^2.6.3"
}
},
"node_modules/@ot-builder/rectify": {
"version": "1.7.4",
"resolved": "https://registry.npmjs.org/@ot-builder/rectify/-/rectify-1.7.4.tgz",
"integrity": "sha512-gfuQIF35jIcSNAbk3wp6T2Wmyyea/cK0NhLFo2rJ57YCowjAYt8WbwUYSEr4MEEKjYgQOM0TP2brYRpTy/jnbg==",
"dependencies": {
"@ot-builder/common-impl": "1.7.4",
"@ot-builder/ot": "1.7.4",
"@ot-builder/ot-glyphs": "1.7.4",
"@ot-builder/ot-metadata": "1.7.4",
"@ot-builder/prelude": "1.7.4",
"@ot-builder/variance": "1.7.4",
"tslib": "^2.6.3"
}
},
"node_modules/@ot-builder/stat-glyphs": {
"version": "1.7.4",
"resolved": "https://registry.npmjs.org/@ot-builder/stat-glyphs/-/stat-glyphs-1.7.4.tgz",
"integrity": "sha512-RJf4CGhEgRbb1GBBdsx+cMZcUH+QFVp+y0iHq76iP5v9DBMC+A4I9cW9ZxODsdNsdhbtTh0bhQMt1ENQfnY+2Q==",
"dependencies": {
"@ot-builder/bin-composite-types": "1.7.4",
"@ot-builder/common-impl": "1.7.4",
"@ot-builder/ot-glyphs": "1.7.4",
"@ot-builder/ot-metadata": "1.7.4",
"@ot-builder/prelude": "1.7.4",
"@ot-builder/primitive": "1.7.4",
"@ot-builder/variance": "1.7.4",
"tslib": "^2.6.3"
}
},
"node_modules/@ot-builder/trace": {
"version": "1.7.4",
"resolved": "https://registry.npmjs.org/@ot-builder/trace/-/trace-1.7.4.tgz",
"integrity": "sha512-G2cBpg4uqG1uxG3dnX3isqwDGI0ok+g5ebeMiGh7BbgfSZEB7POU7kMOtKmnJaN889mWgr4e8i3yKgfqo9cX7w==",
"dependencies": {
"@ot-builder/common-impl": "1.7.4",
"@ot-builder/ot": "1.7.4",
"@ot-builder/ot-glyphs": "1.7.4",
"@ot-builder/ot-metadata": "1.7.4",
"@ot-builder/prelude": "1.7.4",
"@ot-builder/variance": "1.7.4",
"tslib": "^2.6.3"
}
},
"node_modules/@ot-builder/var-store": {
"version": "1.7.4",