-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage-lock.json
More file actions
8490 lines (8490 loc) · 314 KB
/
package-lock.json
File metadata and controls
8490 lines (8490 loc) · 314 KB
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": "zenn-docs",
"version": "1.0.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "zenn-docs",
"version": "1.0.0",
"license": "ISC",
"devDependencies": {
"@proofdict/textlint-rule-proofdict": "3.1.2",
"@textlint-ja/textlint-rule-no-dropping-i": "3.0.0",
"@textlint-ja/textlint-rule-no-insert-dropping-sa": "2.0.1",
"@textlint-rule/textlint-rule-no-unmatched-pair": "2.0.4",
"markdownlint-cli": "0.48.0",
"textlint": "15.5.2",
"textlint-filter-rule-comments": "1.3.0",
"textlint-rule-apostrophe": "3.0.0",
"textlint-rule-doubled-spaces": "1.0.2",
"textlint-rule-ja-hiragana-hojodoushi": "1.1.0",
"textlint-rule-ja-nakaguro-or-halfwidth-space-between-katakana": "2.4.3",
"textlint-rule-ja-no-abusage": "3.0.0",
"textlint-rule-ja-no-mixed-period": "3.0.2",
"textlint-rule-ja-no-redundant-expression": "4.0.1",
"textlint-rule-ja-no-space-around-parentheses": "2.4.2",
"textlint-rule-ja-no-space-between-full-width": "2.4.2",
"textlint-rule-ja-space-after-exclamation": "2.4.2",
"textlint-rule-ja-space-after-question": "2.4.2",
"textlint-rule-ja-space-around-code": "2.4.2",
"textlint-rule-ja-space-around-link": "2.4.2",
"textlint-rule-ja-space-between-half-and-full-width": "2.4.2",
"textlint-rule-ja-unnatural-alphabet": "2.0.1",
"textlint-rule-max-comma": "4.0.0",
"textlint-rule-max-kanji-continuous-len": "1.1.1",
"textlint-rule-max-ten": "5.0.0",
"textlint-rule-no-double-negative-ja": "2.0.1",
"textlint-rule-no-doubled-conjunction": "3.0.0",
"textlint-rule-no-doubled-conjunctive-particle-ga": "3.0.0",
"textlint-rule-no-doubled-joshi": "5.1.1",
"textlint-rule-no-dropping-the-ra": "3.0.0",
"textlint-rule-no-mixed-zenkaku-and-hankaku-alphabet": "1.0.1",
"textlint-rule-no-nfd": "2.0.2",
"textlint-rule-period-in-list-item": "1.0.1",
"textlint-rule-prefer-tari-tari": "1.0.3",
"textlint-rule-rousseau": "1.4.8",
"textlint-rule-sentence-length": "5.2.1",
"textlint-rule-spellcheck-tech-word": "5.0.0",
"textlint-rule-terminology": "5.2.16",
"textlint-rule-use-si-units": "2.0.0",
"zenn-cli": "0.4.6"
}
},
"node_modules/@azu/format-text": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@azu/format-text/-/format-text-1.0.2.tgz",
"integrity": "sha512-Swi4N7Edy1Eqq82GxgEECXSSLyn6GOb5htRFPzBDdUkECGXtlf12ynO5oJSpWKPwCaUssOu7NfhDcCWpIC6Ywg==",
"dev": true,
"license": "BSD-3-Clause"
},
"node_modules/@azu/style-format": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@azu/style-format/-/style-format-1.0.1.tgz",
"integrity": "sha512-AHcTojlNBdD/3/KxIKlg8sxIWHfOtQszLvOpagLTO+bjC3u7SAszu1lf//u7JJC50aUSH+BVWDD/KvaA6Gfn5g==",
"dev": true,
"license": "WTFPL",
"dependencies": {
"@azu/format-text": "^1.0.1"
}
},
"node_modules/@babel/code-frame": {
"version": "7.29.0",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.0.tgz",
"integrity": "sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-validator-identifier": "^7.28.5",
"js-tokens": "^4.0.0",
"picocolors": "^1.1.1"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-string-parser": {
"version": "7.27.1",
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
"integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-validator-identifier": {
"version": "7.28.5",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz",
"integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/parser": {
"version": "7.29.2",
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.2.tgz",
"integrity": "sha512-4GgRzy/+fsBa72/RZVJmGKPmZu9Byn8o4MoLpmNe1m8ZfYnz5emHLQz3U4gLud6Zwl0RZIcgiLD7Uq7ySFuDLA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/types": "^7.29.0"
},
"bin": {
"parser": "bin/babel-parser.js"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@babel/types": {
"version": "7.29.0",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.0.tgz",
"integrity": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-string-parser": "^7.27.1",
"@babel/helper-validator-identifier": "^7.28.5"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@cacheable/memory": {
"version": "2.0.8",
"resolved": "https://registry.npmjs.org/@cacheable/memory/-/memory-2.0.8.tgz",
"integrity": "sha512-FvEb29x5wVwu/Kf93IWwsOOEuhHh6dYCJF3vcKLzXc0KXIW181AOzv6ceT4ZpBHDvAfG60eqb+ekmrnLHIy+jw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@cacheable/utils": "^2.4.0",
"@keyv/bigmap": "^1.3.1",
"hookified": "^1.15.1",
"keyv": "^5.6.0"
}
},
"node_modules/@cacheable/utils": {
"version": "2.4.1",
"resolved": "https://registry.npmjs.org/@cacheable/utils/-/utils-2.4.1.tgz",
"integrity": "sha512-eiFgzCbIneyMlLOmNG4g9xzF7Hv3Mga4LjxjcSC/ues6VYq2+gUbQI8JqNuw/ZM8tJIeIaBGpswAsqV2V7ApgA==",
"dev": true,
"license": "MIT",
"dependencies": {
"hashery": "^1.5.1",
"keyv": "^5.6.0"
}
},
"node_modules/@hono/node-server": {
"version": "1.19.11",
"resolved": "https://registry.npmjs.org/@hono/node-server/-/node-server-1.19.11.tgz",
"integrity": "sha512-dr8/3zEaB+p0D2n/IUrlPF1HZm586qgJNXK1a9fhg/PzdtkK7Ksd5l312tJX2yBuALqDYBlG20QEbayqPyxn+g==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=18.14.1"
},
"peerDependencies": {
"hono": "^4"
}
},
"node_modules/@isaacs/cliui": {
"version": "9.0.0",
"resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-9.0.0.tgz",
"integrity": "sha512-AokJm4tuBHillT+FpMtxQ60n8ObyXBatq7jD2/JA9dxbDDokKQm8KMht5ibGzLVU9IJDIKK4TPKgMHEYMn3lMg==",
"dev": true,
"license": "BlueOak-1.0.0",
"engines": {
"node": ">=18"
}
},
"node_modules/@keyv/bigmap": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/@keyv/bigmap/-/bigmap-1.3.1.tgz",
"integrity": "sha512-WbzE9sdmQtKy8vrNPa9BRnwZh5UF4s1KTmSK0KUVLo3eff5BlQNNWDnFOouNpKfPKDnms9xynJjsMYjMaT/aFQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"hashery": "^1.4.0",
"hookified": "^1.15.0"
},
"engines": {
"node": ">= 18"
},
"peerDependencies": {
"keyv": "^5.6.0"
}
},
"node_modules/@keyv/serialize": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/@keyv/serialize/-/serialize-1.1.1.tgz",
"integrity": "sha512-dXn3FZhPv0US+7dtJsIi2R+c7qWYiReoEh5zUntWCf4oSpMNib8FDhSoed6m3QyZdx5hK7iLFkYk3rNxwt8vTA==",
"dev": true,
"license": "MIT"
},
"node_modules/@kvs/env": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/@kvs/env/-/env-1.2.0.tgz",
"integrity": "sha512-MJVudIYrHg1E0AKrognxK5EdqKFjYSsHsa47WQf8rIyzoeSK614mnqJ+2+ZJr7nY9nUYkYsFivxXbQffIzcqcg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@kvs/indexeddb": "^1.2.0",
"@kvs/node-localstorage": "^1.2.0"
}
},
"node_modules/@kvs/indexeddb": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/@kvs/indexeddb/-/indexeddb-1.2.0.tgz",
"integrity": "sha512-elB0vtvM33ayqHVSL2jl5TMtoW/YaESuJVGf9yEO+8KZjhs+xxSDoUIEJYn9qD7pZc/LyMXVFBglr5Pxf2vWAQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@kvs/types": "^1.2.0"
}
},
"node_modules/@kvs/node-localstorage": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/@kvs/node-localstorage/-/node-localstorage-1.2.0.tgz",
"integrity": "sha512-KJU0o2wjavwfTMpvfzA2vqPFOqb67n2UGvbsHi0bgwfVtkzd0fS/Ev/my9sayDHrXLx7SJJvXtqE8VM4nzEjqw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@kvs/storage": "^1.2.0",
"app-root-path": "^3.0.0",
"mkdirp": "^1.0.4",
"node-localstorage": "^2.1.6"
}
},
"node_modules/@kvs/storage": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/@kvs/storage/-/storage-1.2.0.tgz",
"integrity": "sha512-Zd9rA4U3/h8n3CxNUzMnsz5+UPOng1dXOc0MyEy0RQzF0XlWSTyOrxErn57bPbO0MHoHdw11MEzhDDRYsNj7ZA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@kvs/types": "^1.2.0"
}
},
"node_modules/@kvs/types": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/@kvs/types/-/types-1.2.0.tgz",
"integrity": "sha512-88x1wFRMYg6DyCuX2jeLx2s8q7H3ayRtPD+OVhsSC5v7ek+FP7cv9ooVCC/+Ib5QzNWzkZpd4Uap6O9HrAxq6g==",
"dev": true,
"license": "MIT"
},
"node_modules/@modelcontextprotocol/sdk": {
"version": "1.28.0",
"resolved": "https://registry.npmjs.org/@modelcontextprotocol/sdk/-/sdk-1.28.0.tgz",
"integrity": "sha512-gmloF+i+flI8ouQK7MWW4mOwuMh4RePBuPFAEPC6+pdqyWOUMDOixb6qZ69owLJpz6XmyllCouc4t8YWO+E2Nw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@hono/node-server": "^1.19.9",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"content-type": "^1.0.5",
"cors": "^2.8.5",
"cross-spawn": "^7.0.5",
"eventsource": "^3.0.2",
"eventsource-parser": "^3.0.0",
"express": "^5.2.1",
"express-rate-limit": "^8.2.1",
"hono": "^4.11.4",
"jose": "^6.1.3",
"json-schema-typed": "^8.0.2",
"pkce-challenge": "^5.0.0",
"raw-body": "^3.0.0",
"zod": "^3.25 || ^4.0",
"zod-to-json-schema": "^3.25.1"
},
"engines": {
"node": ">=18"
},
"peerDependencies": {
"@cfworker/json-schema": "^4.1.1",
"zod": "^3.25 || ^4.0"
},
"peerDependenciesMeta": {
"@cfworker/json-schema": {
"optional": true
},
"zod": {
"optional": false
}
}
},
"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,
"license": "MIT",
"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,
"license": "MIT",
"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,
"license": "MIT",
"dependencies": {
"@nodelib/fs.scandir": "2.1.5",
"fastq": "^1.6.0"
},
"engines": {
"node": ">= 8"
}
},
"node_modules/@proofdict/tester": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/@proofdict/tester/-/tester-3.1.0.tgz",
"integrity": "sha512-qzeYjOfNwpt4WF6rN9YHLUsGF3OEGD+Zt3ZfJ1KDw2tKH8e2lr9bVsEIbq7v3KBgoGo43zgx3bNsPM/CuE027w==",
"dev": true,
"license": "MIT",
"dependencies": {
"@proofdict/types": "^3.1.0",
"prh": "5.4.4"
}
},
"node_modules/@proofdict/textlint-rule-proofdict": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@proofdict/textlint-rule-proofdict/-/textlint-rule-proofdict-3.1.2.tgz",
"integrity": "sha512-UoAedRyxwbtWXbjLvxxSA0BcN5Ao5cNdM/kQUzs4ontygBxz2SON/4gg605RQa9VzF9yqURzk25nChRJXtCRzQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@kvs/env": "^1.0.0",
"@proofdict/tester": "^3.1.0",
"@textlint/kernel": "^3.3.6",
"@textlint/types": "^1.4.5",
"debug": "^4.1.1",
"fetch-ponyfill": "^6.1.0",
"globby": "^10.0.1",
"js-yaml": "^3.13.1",
"textlint-rule-helper": "^2.1.1",
"url-join": "^4.0.1"
}
},
"node_modules/@proofdict/types": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/@proofdict/types/-/types-3.1.0.tgz",
"integrity": "sha512-f8cxZ35ylr4n8TW/eUJ9KynEc484Tiocgl4a/ZZNS1dAH5G4vkJ+1AFw2ob/4dCiafy5tcue6TiZuWBFAmsS5g==",
"dev": true,
"license": "MIT"
},
"node_modules/@textlint-ja/textlint-rule-no-dropping-i": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/@textlint-ja/textlint-rule-no-dropping-i/-/textlint-rule-no-dropping-i-3.0.0.tgz",
"integrity": "sha512-M3o0XM7priXqTf7HQIDFuMS8WWd2cjNjKGuqHXMBGDd3QgEqdzb0YPy9Ch2OQmvnOTFVQl2o27SN4oXnGV7mIw==",
"dev": true,
"license": "MIT",
"dependencies": {
"kuromojin": "^3.0.0",
"textlint-rule-helper": "^2.3.1"
}
},
"node_modules/@textlint-ja/textlint-rule-no-insert-dropping-sa": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/@textlint-ja/textlint-rule-no-insert-dropping-sa/-/textlint-rule-no-insert-dropping-sa-2.0.1.tgz",
"integrity": "sha512-ayBSq7K54TeA23dJt/oZeC4532+IwJ6J7ejHvbLV3AgdqlyXEC3xkVsBFmxT90sUegWxpzJwu9qBeByfVXR2FA==",
"dev": true,
"license": "MIT",
"dependencies": {
"array-find-index": "^1.0.2",
"kuromojin": "^3.0.0",
"morpheme-match-all": "^2.0.5"
}
},
"node_modules/@textlint-rule/rousseau": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/@textlint-rule/rousseau/-/rousseau-2.0.4.tgz",
"integrity": "sha512-DH01/uT/ZOC6aomG+vCK6vd4kPFwFky2Snp47lFIn3oyC3f8KNIo/N5z97i5ZYZxbm/XwgU7cIcBepkt9nYMbQ==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@textlint-rule/tokenize-english": "^2.0.2",
"@textlint-rule/tokenize-htmltext": "^2.0.2",
"@textlint-rule/tokenize-text": "^2.0.2",
"bash-color": "^0.0.4",
"cli-table": "^0.3.11",
"crc": "^4.3.1",
"find-line-column": "0.5.2",
"lodash": "^4.17.21",
"simple-lru-cache": "^0.0.2"
},
"bin": {
"rousseau": "bin/rousseau.js"
}
},
"node_modules/@textlint-rule/textlint-rule-no-unmatched-pair": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/@textlint-rule/textlint-rule-no-unmatched-pair/-/textlint-rule-no-unmatched-pair-2.0.4.tgz",
"integrity": "sha512-g9Ge1xUV9xJy8T7nuutF/2J6Cg2mmPx4gKsC3dCdxVxuL0wMqOOnAi8l6psFpAQ5UFtQuAzwkdclrehPtBT5tg==",
"dev": true,
"license": "MIT",
"dependencies": {
"sentence-splitter": "^5.0.0",
"textlint-rule-helper": "^2.3.1"
}
},
"node_modules/@textlint-rule/tokenize-english": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/@textlint-rule/tokenize-english/-/tokenize-english-2.0.2.tgz",
"integrity": "sha512-cKhKdg/oUG5g5sLCoPWb8kLT4WeNvdDzICQhLUJVxXjkmKQFd8zoc8aXkLR5SUoFbldfCIuY4OaVUL2fKH0scg==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"lodash": "^4.17.21"
}
},
"node_modules/@textlint-rule/tokenize-htmltext": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/@textlint-rule/tokenize-htmltext/-/tokenize-htmltext-2.0.2.tgz",
"integrity": "sha512-kNjlzV+KA5xuSdMLYw6Jf8EcXgRUPivocwDrfFtL/JUv4/d2Sk8pJJ6BeMpjldDJojRWKQ03aFomnr6xk8YiqA==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"htmlparser2": "^8.0.1"
}
},
"node_modules/@textlint-rule/tokenize-text": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/@textlint-rule/tokenize-text/-/tokenize-text-2.0.2.tgz",
"integrity": "sha512-QtAP9fsz8P9JcnGiH//mZit05IZrX5qbABMAzsu6RU+AbxG9dccuQB5QVE9cGNZFQmvAPZ+2uvJqUonSW88AFg==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"lodash": "^4.17.21"
}
},
"node_modules/@textlint/ast-node-types": {
"version": "4.4.3",
"resolved": "https://registry.npmjs.org/@textlint/ast-node-types/-/ast-node-types-4.4.3.tgz",
"integrity": "sha512-qi2jjgO6Tn3KNPGnm6B7p6QTEPvY95NFsIAaJuwbulur8iJUEenp1OnoUfiDaC/g2WPPEFkcfXpmnu8XEMFo2A==",
"dev": true,
"license": "MIT"
},
"node_modules/@textlint/ast-tester": {
"version": "2.3.5",
"resolved": "https://registry.npmjs.org/@textlint/ast-tester/-/ast-tester-2.3.5.tgz",
"integrity": "sha512-sbw0Edx22/Fa9fwObpus5KyhCnGKhyP1tU7flA7kwTi9EqQq2KFztz1c/QQWpgqymbdSPWg7HpAvGf4ru4FDZg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@textlint/ast-node-types": "^4.4.3"
}
},
"node_modules/@textlint/ast-traverse": {
"version": "2.3.5",
"resolved": "https://registry.npmjs.org/@textlint/ast-traverse/-/ast-traverse-2.3.5.tgz",
"integrity": "sha512-yo1gIoXDx2bNs1JjC9viRxJpErNsfPtzb585KcVwWxxWmu3tXlT2iz13iKdjj5FMYPJe/PORe7lYqymkSUZ7kg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@textlint/ast-node-types": "^4.4.3"
}
},
"node_modules/@textlint/config-loader": {
"version": "15.5.2",
"resolved": "https://registry.npmjs.org/@textlint/config-loader/-/config-loader-15.5.2.tgz",
"integrity": "sha512-9DiYEyX4BUx8cNqnFyYv0yF/Ckt+A23pCOaAE13iWCmKXOMTyGLxr0CnqB+pB4cDmRUykYJgI9Rvp5jQyYCu/w==",
"dev": true,
"license": "MIT",
"dependencies": {
"@textlint/kernel": "15.5.2",
"@textlint/module-interop": "15.5.2",
"@textlint/resolver": "15.5.2",
"@textlint/types": "15.5.2",
"@textlint/utils": "15.5.2",
"debug": "^4.4.3",
"rc-config-loader": "^4.1.3"
}
},
"node_modules/@textlint/config-loader/node_modules/@textlint/ast-node-types": {
"version": "15.5.2",
"resolved": "https://registry.npmjs.org/@textlint/ast-node-types/-/ast-node-types-15.5.2.tgz",
"integrity": "sha512-fCaOxoup5LIyBEo7R1oYWE7V4bSX0KQeHh66twon9e9usaLE3ijgF8QjYsR6joCssdeCHVd0wHm7ppsEyTr6vg==",
"dev": true,
"license": "MIT"
},
"node_modules/@textlint/config-loader/node_modules/@textlint/ast-tester": {
"version": "15.5.2",
"resolved": "https://registry.npmjs.org/@textlint/ast-tester/-/ast-tester-15.5.2.tgz",
"integrity": "sha512-xlGt3fEUC9NkGNmd7WIzIoQvxs/fOISvrco6fedSCCji0iqVwc6fw4atb2iTM/eGg4IbPlBVpjnLBduB5FpekA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@textlint/ast-node-types": "15.5.2",
"debug": "^4.4.3"
}
},
"node_modules/@textlint/config-loader/node_modules/@textlint/ast-traverse": {
"version": "15.5.2",
"resolved": "https://registry.npmjs.org/@textlint/ast-traverse/-/ast-traverse-15.5.2.tgz",
"integrity": "sha512-8lpRDjFAN+I/4hGo+0YRIpsk1YfiI223oulFkb8gL0/PCGrdw798mfV+czKIS0/fr1Eq/fYbOzbHpoATDA4GBA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@textlint/ast-node-types": "15.5.2"
}
},
"node_modules/@textlint/config-loader/node_modules/@textlint/feature-flag": {
"version": "15.5.2",
"resolved": "https://registry.npmjs.org/@textlint/feature-flag/-/feature-flag-15.5.2.tgz",
"integrity": "sha512-1KYloMwk20rkrqES15O+wSVUIPk/Vg1ol3zdtp6vT3E43Yj7mlQPwHkTr0J/XSmoJdm/s8cn86ds/KgWrm+i+g==",
"dev": true,
"license": "MIT"
},
"node_modules/@textlint/config-loader/node_modules/@textlint/kernel": {
"version": "15.5.2",
"resolved": "https://registry.npmjs.org/@textlint/kernel/-/kernel-15.5.2.tgz",
"integrity": "sha512-UyDgebb5TQnZiFGGlF5yRIDXzvPa7TF+0ProCvrOp7/w88beZOkCx4YY53h5q69DdlKMOyUI9AdMjqLzpfzvnA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@textlint/ast-node-types": "15.5.2",
"@textlint/ast-tester": "15.5.2",
"@textlint/ast-traverse": "15.5.2",
"@textlint/feature-flag": "15.5.2",
"@textlint/source-code-fixer": "15.5.2",
"@textlint/types": "15.5.2",
"@textlint/utils": "15.5.2",
"debug": "^4.4.3",
"fast-equals": "^4.0.3",
"structured-source": "^4.0.0"
}
},
"node_modules/@textlint/config-loader/node_modules/@textlint/source-code-fixer": {
"version": "15.5.2",
"resolved": "https://registry.npmjs.org/@textlint/source-code-fixer/-/source-code-fixer-15.5.2.tgz",
"integrity": "sha512-9MMhrvX4uQOEYM+C3kbVsq1O2U7tOTc0l3rMiJzniwqq57AgP/AxDRz20ujh2OGE7Qw4E2y8KyM/3XMi0HvUHQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@textlint/types": "15.5.2",
"debug": "^4.4.3"
}
},
"node_modules/@textlint/config-loader/node_modules/@textlint/types": {
"version": "15.5.2",
"resolved": "https://registry.npmjs.org/@textlint/types/-/types-15.5.2.tgz",
"integrity": "sha512-sJOrlVLLXp4/EZtiWKWq9y2fWyZlI8GP+24rnU5avtPWBIMm/1w97yzKrAqYF8czx2MqR391z5akhnfhj2f/AQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@textlint/ast-node-types": "15.5.2"
}
},
"node_modules/@textlint/config-loader/node_modules/@textlint/utils": {
"version": "15.5.2",
"resolved": "https://registry.npmjs.org/@textlint/utils/-/utils-15.5.2.tgz",
"integrity": "sha512-g7Zs8QDZJspno9C7i5iGdwuJ07SxCHWIgxpAebwX503sup4w5IOo3q0X/LxRdl1F4sSAFw/m2glYZomOieNPCw==",
"dev": true,
"license": "MIT"
},
"node_modules/@textlint/config-loader/node_modules/boundary": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/boundary/-/boundary-2.0.0.tgz",
"integrity": "sha512-rJKn5ooC9u8q13IMCrW0RSp31pxBCHE3y9V/tp3TdWSLf8Em3p6Di4NBpfzbJge9YjjFEsD0RtFEjtvHL5VyEA==",
"dev": true,
"license": "BSD-2-Clause"
},
"node_modules/@textlint/config-loader/node_modules/structured-source": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/structured-source/-/structured-source-4.0.0.tgz",
"integrity": "sha512-qGzRFNJDjFieQkl/sVOI2dUjHKRyL9dAJi2gCPGJLbJHBIkyOHxjuocpIEfbLioX+qSJpvbYdT49/YCdMznKxA==",
"dev": true,
"license": "BSD-2-Clause",
"dependencies": {
"boundary": "^2.0.0"
}
},
"node_modules/@textlint/feature-flag": {
"version": "3.3.5",
"resolved": "https://registry.npmjs.org/@textlint/feature-flag/-/feature-flag-3.3.5.tgz",
"integrity": "sha512-S4JhbDQGu1Sutnvqs96nwxqwaErHrL49/QQDR8i/YNsINlurfKJbmktotb+w+qzeSibDibKzB8feOMVBXmO9Ww==",
"dev": true,
"license": "MIT",
"dependencies": {
"map-like": "^2.0.0"
}
},
"node_modules/@textlint/fixer-formatter": {
"version": "15.5.2",
"resolved": "https://registry.npmjs.org/@textlint/fixer-formatter/-/fixer-formatter-15.5.2.tgz",
"integrity": "sha512-zVJTrrsSRVnZULQAI7qbE8RIVPlpGKKkvCFVfm8jSOjgXdAz3gOy4VmYxLWPLlvihB4KT9y9PmvFv47q23iQnw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@textlint/module-interop": "15.5.2",
"@textlint/resolver": "15.5.2",
"@textlint/types": "15.5.2",
"chalk": "^4.1.2",
"debug": "^4.4.3",
"diff": "^8.0.3",
"string-width": "^4.2.3",
"strip-ansi": "^6.0.1",
"text-table": "^0.2.0"
}
},
"node_modules/@textlint/fixer-formatter/node_modules/@textlint/ast-node-types": {
"version": "15.5.2",
"resolved": "https://registry.npmjs.org/@textlint/ast-node-types/-/ast-node-types-15.5.2.tgz",
"integrity": "sha512-fCaOxoup5LIyBEo7R1oYWE7V4bSX0KQeHh66twon9e9usaLE3ijgF8QjYsR6joCssdeCHVd0wHm7ppsEyTr6vg==",
"dev": true,
"license": "MIT"
},
"node_modules/@textlint/fixer-formatter/node_modules/@textlint/types": {
"version": "15.5.2",
"resolved": "https://registry.npmjs.org/@textlint/types/-/types-15.5.2.tgz",
"integrity": "sha512-sJOrlVLLXp4/EZtiWKWq9y2fWyZlI8GP+24rnU5avtPWBIMm/1w97yzKrAqYF8czx2MqR391z5akhnfhj2f/AQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@textlint/ast-node-types": "15.5.2"
}
},
"node_modules/@textlint/fixer-formatter/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,
"license": "MIT",
"engines": {
"node": ">=8"
}
},
"node_modules/@textlint/fixer-formatter/node_modules/diff": {
"version": "8.0.4",
"resolved": "https://registry.npmjs.org/diff/-/diff-8.0.4.tgz",
"integrity": "sha512-DPi0FmjiSU5EvQV0++GFDOJ9ASQUVFh5kD+OzOnYdi7n3Wpm9hWWGfB/O2blfHcMVTL5WkQXSnRiK9makhrcnw==",
"dev": true,
"license": "BSD-3-Clause",
"engines": {
"node": ">=0.3.1"
}
},
"node_modules/@textlint/fixer-formatter/node_modules/emoji-regex": {
"version": "8.0.0",
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
"dev": true,
"license": "MIT"
},
"node_modules/@textlint/fixer-formatter/node_modules/string-width": {
"version": "4.2.3",
"resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
"dev": true,
"license": "MIT",
"dependencies": {
"emoji-regex": "^8.0.0",
"is-fullwidth-code-point": "^3.0.0",
"strip-ansi": "^6.0.1"
},
"engines": {
"node": ">=8"
}
},
"node_modules/@textlint/fixer-formatter/node_modules/strip-ansi": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
"dev": true,
"license": "MIT",
"dependencies": {
"ansi-regex": "^5.0.1"
},
"engines": {
"node": ">=8"
}
},
"node_modules/@textlint/kernel": {
"version": "3.4.5",
"resolved": "https://registry.npmjs.org/@textlint/kernel/-/kernel-3.4.5.tgz",
"integrity": "sha512-KGeOq4mbjPe3okDtPw7mbnTX/wP66ndmRKAoOz8gOKDIDRlH8nOG/av6k6xbVhdMk9+ZnomqU8jSSYwTZHzAnA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@textlint/ast-node-types": "^4.4.3",
"@textlint/ast-tester": "^2.3.5",
"@textlint/ast-traverse": "^2.3.5",
"@textlint/feature-flag": "^3.3.5",
"@textlint/source-code-fixer": "^3.4.5",
"@textlint/types": "^1.5.5",
"@textlint/utils": "^1.2.5",
"debug": "^4.3.1",
"deep-equal": "^1.1.1",
"map-like": "^2.0.0",
"structured-source": "^3.0.2"
}
},
"node_modules/@textlint/linter-formatter": {
"version": "15.5.2",
"resolved": "https://registry.npmjs.org/@textlint/linter-formatter/-/linter-formatter-15.5.2.tgz",
"integrity": "sha512-jAw7jWM8+wU9cG6Uu31jGyD1B+PAVePCvnPKC/oov+2iBPKk3ao30zc/Itmi7FvXo4oPaL9PmzPPQhyniPVgVg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@azu/format-text": "^1.0.2",
"@azu/style-format": "^1.0.1",
"@textlint/module-interop": "15.5.2",
"@textlint/resolver": "15.5.2",
"@textlint/types": "15.5.2",
"chalk": "^4.1.2",
"debug": "^4.4.3",
"js-yaml": "^4.1.1",
"lodash": "^4.17.23",
"pluralize": "^2.0.0",
"string-width": "^4.2.3",
"strip-ansi": "^6.0.1",
"table": "^6.9.0",
"text-table": "^0.2.0"
}
},
"node_modules/@textlint/linter-formatter/node_modules/@textlint/ast-node-types": {
"version": "15.5.2",
"resolved": "https://registry.npmjs.org/@textlint/ast-node-types/-/ast-node-types-15.5.2.tgz",
"integrity": "sha512-fCaOxoup5LIyBEo7R1oYWE7V4bSX0KQeHh66twon9e9usaLE3ijgF8QjYsR6joCssdeCHVd0wHm7ppsEyTr6vg==",
"dev": true,
"license": "MIT"
},
"node_modules/@textlint/linter-formatter/node_modules/@textlint/types": {
"version": "15.5.2",
"resolved": "https://registry.npmjs.org/@textlint/types/-/types-15.5.2.tgz",
"integrity": "sha512-sJOrlVLLXp4/EZtiWKWq9y2fWyZlI8GP+24rnU5avtPWBIMm/1w97yzKrAqYF8czx2MqR391z5akhnfhj2f/AQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@textlint/ast-node-types": "15.5.2"
}
},
"node_modules/@textlint/linter-formatter/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,
"license": "MIT",
"engines": {
"node": ">=8"
}
},
"node_modules/@textlint/linter-formatter/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==",
"dev": true,
"license": "Python-2.0"
},
"node_modules/@textlint/linter-formatter/node_modules/emoji-regex": {
"version": "8.0.0",
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
"dev": true,
"license": "MIT"
},
"node_modules/@textlint/linter-formatter/node_modules/js-yaml": {
"version": "4.1.1",
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.1.tgz",
"integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==",
"dev": true,
"license": "MIT",
"dependencies": {
"argparse": "^2.0.1"
},
"bin": {
"js-yaml": "bin/js-yaml.js"
}
},
"node_modules/@textlint/linter-formatter/node_modules/string-width": {
"version": "4.2.3",
"resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
"dev": true,
"license": "MIT",
"dependencies": {
"emoji-regex": "^8.0.0",
"is-fullwidth-code-point": "^3.0.0",
"strip-ansi": "^6.0.1"
},
"engines": {
"node": ">=8"
}
},
"node_modules/@textlint/linter-formatter/node_modules/strip-ansi": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
"dev": true,
"license": "MIT",
"dependencies": {
"ansi-regex": "^5.0.1"
},
"engines": {
"node": ">=8"
}
},
"node_modules/@textlint/markdown-to-ast": {
"version": "15.5.2",
"resolved": "https://registry.npmjs.org/@textlint/markdown-to-ast/-/markdown-to-ast-15.5.2.tgz",
"integrity": "sha512-eLEeIb7jcyWiG1jahr3pl3z8dEYEgLPdz7lBG3AP8aB4m8Sv0SdL0mCD0tfR5hNp8FrOEXldqh1g2PMuiXlN3w==",
"dev": true,
"license": "MIT",
"dependencies": {
"@textlint/ast-node-types": "15.5.2",
"debug": "^4.4.3",
"mdast-util-gfm-autolink-literal": "^0.1.3",
"neotraverse": "^0.6.18",
"remark-footnotes": "^3.0.0",
"remark-frontmatter": "^3.0.0",
"remark-gfm": "^1.0.0",
"remark-parse": "^9.0.0",
"structured-source": "^4.0.0",
"unified": "^9.2.2"
}
},
"node_modules/@textlint/markdown-to-ast/node_modules/@textlint/ast-node-types": {
"version": "15.5.2",
"resolved": "https://registry.npmjs.org/@textlint/ast-node-types/-/ast-node-types-15.5.2.tgz",
"integrity": "sha512-fCaOxoup5LIyBEo7R1oYWE7V4bSX0KQeHh66twon9e9usaLE3ijgF8QjYsR6joCssdeCHVd0wHm7ppsEyTr6vg==",
"dev": true,
"license": "MIT"
},
"node_modules/@textlint/markdown-to-ast/node_modules/boundary": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/boundary/-/boundary-2.0.0.tgz",
"integrity": "sha512-rJKn5ooC9u8q13IMCrW0RSp31pxBCHE3y9V/tp3TdWSLf8Em3p6Di4NBpfzbJge9YjjFEsD0RtFEjtvHL5VyEA==",
"dev": true,
"license": "BSD-2-Clause"
},
"node_modules/@textlint/markdown-to-ast/node_modules/structured-source": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/structured-source/-/structured-source-4.0.0.tgz",
"integrity": "sha512-qGzRFNJDjFieQkl/sVOI2dUjHKRyL9dAJi2gCPGJLbJHBIkyOHxjuocpIEfbLioX+qSJpvbYdT49/YCdMznKxA==",
"dev": true,
"license": "BSD-2-Clause",
"dependencies": {
"boundary": "^2.0.0"
}
},
"node_modules/@textlint/module-interop": {
"version": "15.5.2",
"resolved": "https://registry.npmjs.org/@textlint/module-interop/-/module-interop-15.5.2.tgz",
"integrity": "sha512-mg6rMQ3+YjwiXCYoQXbyVfDucpTa1q5mhspd/9qHBxUq4uY6W8GU42rmT3GW0V1yOfQ9z/iRrgPtkp71s8JzXg==",
"dev": true,
"license": "MIT"
},
"node_modules/@textlint/regexp-string-matcher": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/@textlint/regexp-string-matcher/-/regexp-string-matcher-2.0.2.tgz",
"integrity": "sha512-OXLD9XRxMhd3S0LWuPHpiARQOI7z9tCOs0FsynccW2lmyZzHHFJ9/eR6kuK9xF459Qf+740qI5h+/0cx+NljzA==",
"dev": true,
"license": "MIT",
"dependencies": {
"escape-string-regexp": "^4.0.0",
"lodash.sortby": "^4.7.0",
"lodash.uniq": "^4.5.0",
"lodash.uniqwith": "^4.5.0"
}
},
"node_modules/@textlint/resolver": {
"version": "15.5.2",
"resolved": "https://registry.npmjs.org/@textlint/resolver/-/resolver-15.5.2.tgz",
"integrity": "sha512-YEITdjRiJaQrGLUWxWXl4TEg+d2C7+TNNjbGPHPH7V7CCnXm+S9GTjGAL7Q2WSGJyFEKt88Jvx6XdJffRv4HEA==",
"dev": true,
"license": "MIT"
},
"node_modules/@textlint/source-code-fixer": {
"version": "3.4.5",
"resolved": "https://registry.npmjs.org/@textlint/source-code-fixer/-/source-code-fixer-3.4.5.tgz",
"integrity": "sha512-YUcBg6zs7H5ycLwWdfv5LHWlBx7iBAQL6vHY2uPw8AMPYgzU6/f91NGBU/QR7/FVw0e7v9zMngcRN1hMOxpFCw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@textlint/types": "^1.5.5",
"debug": "^4.3.1"
}
},
"node_modules/@textlint/text-to-ast": {
"version": "15.5.2",
"resolved": "https://registry.npmjs.org/@textlint/text-to-ast/-/text-to-ast-15.5.2.tgz",
"integrity": "sha512-7cFC1Em9W3g8ilrelDftGmRzlwG+5+jx2HLJ4h4uAl+Ib42bfCtDdBnvh3dRomgu4Z36Tj0F3qMBFgxNoQhZeA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@textlint/ast-node-types": "15.5.2"
}
},
"node_modules/@textlint/text-to-ast/node_modules/@textlint/ast-node-types": {
"version": "15.5.2",
"resolved": "https://registry.npmjs.org/@textlint/ast-node-types/-/ast-node-types-15.5.2.tgz",
"integrity": "sha512-fCaOxoup5LIyBEo7R1oYWE7V4bSX0KQeHh66twon9e9usaLE3ijgF8QjYsR6joCssdeCHVd0wHm7ppsEyTr6vg==",
"dev": true,
"license": "MIT"
},
"node_modules/@textlint/textlint-plugin-markdown": {
"version": "15.5.2",
"resolved": "https://registry.npmjs.org/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-15.5.2.tgz",
"integrity": "sha512-aaXWlFmhX+8uUibMX/+nUvqH2/C/SptW24YFUVMhCLPiEtfiYsZbT8qVtuYMH6L/MXAzjOgVSRuDcceoI7csJA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@textlint/markdown-to-ast": "15.5.2",
"@textlint/types": "15.5.2"
}
},
"node_modules/@textlint/textlint-plugin-markdown/node_modules/@textlint/ast-node-types": {
"version": "15.5.2",
"resolved": "https://registry.npmjs.org/@textlint/ast-node-types/-/ast-node-types-15.5.2.tgz",
"integrity": "sha512-fCaOxoup5LIyBEo7R1oYWE7V4bSX0KQeHh66twon9e9usaLE3ijgF8QjYsR6joCssdeCHVd0wHm7ppsEyTr6vg==",
"dev": true,
"license": "MIT"
},
"node_modules/@textlint/textlint-plugin-markdown/node_modules/@textlint/types": {
"version": "15.5.2",
"resolved": "https://registry.npmjs.org/@textlint/types/-/types-15.5.2.tgz",
"integrity": "sha512-sJOrlVLLXp4/EZtiWKWq9y2fWyZlI8GP+24rnU5avtPWBIMm/1w97yzKrAqYF8czx2MqR391z5akhnfhj2f/AQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@textlint/ast-node-types": "15.5.2"
}
},
"node_modules/@textlint/textlint-plugin-text": {
"version": "15.5.2",
"resolved": "https://registry.npmjs.org/@textlint/textlint-plugin-text/-/textlint-plugin-text-15.5.2.tgz",
"integrity": "sha512-KlXPdhz5AFoBAu0bYqBuwz0ws0P5ACmXs7BFoc8719o+nK+ONSgQ+UEyl89NzGepweIqQHnlxTGcibvxu0z8Ew==",
"dev": true,
"license": "MIT",
"dependencies": {
"@textlint/text-to-ast": "15.5.2",
"@textlint/types": "15.5.2"
}
},
"node_modules/@textlint/textlint-plugin-text/node_modules/@textlint/ast-node-types": {
"version": "15.5.2",
"resolved": "https://registry.npmjs.org/@textlint/ast-node-types/-/ast-node-types-15.5.2.tgz",
"integrity": "sha512-fCaOxoup5LIyBEo7R1oYWE7V4bSX0KQeHh66twon9e9usaLE3ijgF8QjYsR6joCssdeCHVd0wHm7ppsEyTr6vg==",
"dev": true,
"license": "MIT"
},
"node_modules/@textlint/textlint-plugin-text/node_modules/@textlint/types": {
"version": "15.5.2",
"resolved": "https://registry.npmjs.org/@textlint/types/-/types-15.5.2.tgz",
"integrity": "sha512-sJOrlVLLXp4/EZtiWKWq9y2fWyZlI8GP+24rnU5avtPWBIMm/1w97yzKrAqYF8czx2MqR391z5akhnfhj2f/AQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@textlint/ast-node-types": "15.5.2"
}
},
"node_modules/@textlint/types": {
"version": "1.5.5",
"resolved": "https://registry.npmjs.org/@textlint/types/-/types-1.5.5.tgz",
"integrity": "sha512-80P6fcqgsG9bP6JgR6W/E/oIx+71pplaicYCvvB4vMIeGk0OnWls4Q21kCpDYmq/C/ABtZ/Gy/Ov/8ExQPeQ7A==",
"dev": true,
"license": "MIT",
"dependencies": {
"@textlint/ast-node-types": "^4.4.3"
}
},
"node_modules/@textlint/utils": {
"version": "1.2.5",
"resolved": "https://registry.npmjs.org/@textlint/utils/-/utils-1.2.5.tgz",
"integrity": "sha512-2vgz4x3tKK+R9N0OlOovJClRCHubxZi86ki218cvRVpoU9pPrHwkwZud+rjItDl2xFBj7Gujww7c0W1wyytWVQ==",
"dev": true,
"license": "MIT"
},
"node_modules/@types/debug": {
"version": "4.1.13",
"resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.13.tgz",
"integrity": "sha512-KSVgmQmzMwPlmtljOomayoR89W4FynCAi3E8PPs7vmDVPe84hT+vGPKkJfThkmXs0x0jAaa9U8uW8bbfyS2fWw==",