-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage-lock.json
More file actions
10725 lines (10725 loc) · 448 KB
/
Copy pathpackage-lock.json
File metadata and controls
10725 lines (10725 loc) · 448 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": "@enormora/objectory",
"version": "0.0.1",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@enormora/objectory",
"version": "0.0.1",
"license": "MIT",
"devDependencies": {
"@enormora/eslint-config-base": "0.0.62",
"@enormora/eslint-config-node": "0.0.46",
"@enormora/eslint-config-node-assert": "0.0.7",
"@enormora/eslint-config-typescript": "0.0.70",
"@packtory/cli": "0.0.102",
"@packtory/github-release-gate": "0.0.64",
"@types/node": "24.13.3",
"eslint": "10.9.1",
"fast-check": "4.9.0",
"rust-just": "1.57.0",
"tstyche": "7.2.3",
"typescript": "6.0.3"
},
"engines": {
"node": ">=22.18.0"
}
},
"node_modules/@altano/repository-tools": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/@altano/repository-tools/-/repository-tools-2.1.0.tgz",
"integrity": "sha512-RGM8IimoK/RDlj+uG9sPgb9CSuHIAMVrtVVeslEMhc7yqDHpdmdKeMQcJfc0WveTtAmBdj/o9r1VW/A27SoPTg==",
"dev": true,
"license": "ISC"
},
"node_modules/@andrewbranch/untar.js": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/@andrewbranch/untar.js/-/untar.js-1.0.4.tgz",
"integrity": "sha512-pVXSwPsLuw8IGLo2Di0EaOfsk+ntVvpkk942J/sHYIkwvtKUakEcPh7HBgZ6tuimgzKSEHgCvO4XgQ05DEbwDw==",
"dev": true,
"license": "MIT"
},
"node_modules/@arethetypeswrong/core": {
"version": "0.18.5",
"resolved": "https://registry.npmjs.org/@arethetypeswrong/core/-/core-0.18.5.tgz",
"integrity": "sha512-9ytjzGwxjm9Uz7I9avfbt5vlQt6uk9uRRESzJjqrznl6WKvI6dwYTo+vJ3U02Wrq/mR3iql/PzhvHhKdJIAjDQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@andrewbranch/untar.js": "^1.0.3",
"@loaderkit/resolve": "^1.0.2",
"cjs-module-lexer": "^1.2.3",
"fflate": "^0.8.3",
"lru-cache": "^11.0.1",
"semver": "^7.5.4",
"typescript": "5.6.1-rc",
"validate-npm-package-name": "^5.0.0"
},
"engines": {
"node": ">=20"
}
},
"node_modules/@arethetypeswrong/core/node_modules/typescript": {
"version": "5.6.1-rc",
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.6.1-rc.tgz",
"integrity": "sha512-E3b2+1zEFu84jB0YQi9BORDjz9+jGbwwy1Zi3G0LUNw7a7cePUrHMRNy8aPh53nXpkFGVHSxIZo5vKTfYaFiBQ==",
"dev": true,
"license": "Apache-2.0",
"bin": {
"tsc": "bin/tsc",
"tsserver": "bin/tsserver"
},
"engines": {
"node": ">=14.17"
}
},
"node_modules/@arethetypeswrong/core/node_modules/validate-npm-package-name": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-5.0.1.tgz",
"integrity": "sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==",
"dev": true,
"license": "ISC",
"engines": {
"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
}
},
"node_modules/@babel/code-frame": {
"version": "7.29.7",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.7.tgz",
"integrity": "sha512-Aup7aUOfpbAUg2ROOJN6Iw5f9DMBlzu0mIkm/malLQFN/YQgO48wCj0Kxa3sEHJvPVFg7siR+qRInwXd2qhQKw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-validator-identifier": "^7.29.7",
"js-tokens": "^4.0.0",
"picocolors": "^1.1.1"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-validator-identifier": {
"version": "7.29.7",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.29.7.tgz",
"integrity": "sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@ben_12/eslint-plugin-dprint": {
"version": "1.23.0",
"resolved": "https://registry.npmjs.org/@ben_12/eslint-plugin-dprint/-/eslint-plugin-dprint-1.23.0.tgz",
"integrity": "sha512-WC1p7I4ehJ9QCyWVtOxgCkvFyUFyc/caL3Yp2jKmHe7oujZ6pNMZG7Oid/k4PgSYNpzMr6pywTV+5Ynqawo+PQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@dprint/formatter": "^0.5.1",
"debug": "^4.1.1",
"diff": "^9.0.0",
"jsonc-parser": "^3.2.0"
},
"engines": {
"node": ">=18.0.0"
},
"peerDependencies": {
"@dprint/dockerfile": "^0.5.0",
"@dprint/json": "^0.23.0",
"@dprint/markdown": "^0.22.1",
"@dprint/toml": "^0.7.0",
"@dprint/typescript": "^0.96.1",
"dprint-plugin-graphql": "^0.2.3",
"dprint-plugin-malva": "^0.16.0",
"dprint-plugin-markup": "^0.27.3",
"dprint-plugin-yaml": "^0.6.0",
"eslint": ">=7.0.0"
},
"peerDependenciesMeta": {
"@dprint/dockerfile": {
"optional": true
},
"@dprint/json": {
"optional": true
},
"@dprint/markdown": {
"optional": true
},
"@dprint/toml": {
"optional": true
},
"@dprint/typescript": {
"optional": true
},
"dprint-plugin-graphql": {
"optional": true
},
"dprint-plugin-malva": {
"optional": true
},
"dprint-plugin-markup": {
"optional": true
},
"dprint-plugin-yaml": {
"optional": true
}
}
},
"node_modules/@braidai/lang": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/@braidai/lang/-/lang-1.1.2.tgz",
"integrity": "sha512-qBcknbBufNHlui137Hft8xauQMTZDKdophmLFv05r2eNmdIv/MlPuP4TdUknHG68UdWLgVZwgxVe735HzJNIwA==",
"dev": true,
"license": "ISC"
},
"node_modules/@cspell/cspell-bundled-dicts": {
"version": "10.0.1",
"resolved": "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-10.0.1.tgz",
"integrity": "sha512-WvkSDNX4Uyyj/ZgbPO6L38iFNMfK1EqsH1FteRiI2qLz6QZMXRFrIt12OqiWIplzZDDaVpBH9FCJOPJll0fjCQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@cspell/dict-ada": "^4.1.1",
"@cspell/dict-al": "^1.1.1",
"@cspell/dict-aws": "^4.0.17",
"@cspell/dict-bash": "^4.2.2",
"@cspell/dict-companies": "^3.2.11",
"@cspell/dict-cpp": "^7.0.2",
"@cspell/dict-cryptocurrencies": "^5.0.5",
"@cspell/dict-csharp": "^4.0.8",
"@cspell/dict-css": "^4.1.1",
"@cspell/dict-dart": "^2.3.2",
"@cspell/dict-data-science": "^2.0.13",
"@cspell/dict-django": "^4.1.6",
"@cspell/dict-docker": "^1.1.17",
"@cspell/dict-dotnet": "^5.0.13",
"@cspell/dict-elixir": "^4.0.8",
"@cspell/dict-en_us": "^4.4.33",
"@cspell/dict-en-common-misspellings": "^2.1.12",
"@cspell/dict-en-gb-mit": "^3.1.22",
"@cspell/dict-filetypes": "^3.0.18",
"@cspell/dict-flutter": "^1.1.1",
"@cspell/dict-fonts": "^4.0.6",
"@cspell/dict-fsharp": "^1.1.1",
"@cspell/dict-fullstack": "^3.2.9",
"@cspell/dict-gaming-terms": "^1.1.2",
"@cspell/dict-git": "^3.1.0",
"@cspell/dict-golang": "^6.0.26",
"@cspell/dict-google": "^1.0.9",
"@cspell/dict-haskell": "^4.0.6",
"@cspell/dict-html": "^4.0.15",
"@cspell/dict-html-symbol-entities": "^4.0.5",
"@cspell/dict-java": "^5.0.12",
"@cspell/dict-julia": "^1.1.1",
"@cspell/dict-k8s": "^1.0.12",
"@cspell/dict-kotlin": "^1.1.1",
"@cspell/dict-latex": "^5.1.0",
"@cspell/dict-lorem-ipsum": "^4.0.5",
"@cspell/dict-lua": "^4.0.8",
"@cspell/dict-makefile": "^1.0.5",
"@cspell/dict-markdown": "^2.0.16",
"@cspell/dict-monkeyc": "^1.0.12",
"@cspell/dict-node": "^5.0.9",
"@cspell/dict-npm": "^5.2.38",
"@cspell/dict-php": "^4.1.1",
"@cspell/dict-powershell": "^5.0.15",
"@cspell/dict-public-licenses": "^2.0.16",
"@cspell/dict-python": "^4.2.26",
"@cspell/dict-r": "^2.1.1",
"@cspell/dict-ruby": "^5.1.1",
"@cspell/dict-rust": "^4.1.2",
"@cspell/dict-scala": "^5.0.9",
"@cspell/dict-shell": "^1.1.2",
"@cspell/dict-software-terms": "^5.2.2",
"@cspell/dict-sql": "^2.2.1",
"@cspell/dict-svelte": "^1.0.7",
"@cspell/dict-swift": "^2.0.6",
"@cspell/dict-terraform": "^1.1.3",
"@cspell/dict-typescript": "^3.2.3",
"@cspell/dict-vue": "^3.0.5",
"@cspell/dict-zig": "^1.0.0"
},
"engines": {
"node": ">=22.18.0"
}
},
"node_modules/@cspell/cspell-performance-monitor": {
"version": "10.0.1",
"resolved": "https://registry.npmjs.org/@cspell/cspell-performance-monitor/-/cspell-performance-monitor-10.0.1.tgz",
"integrity": "sha512-9tVcHXwRnbazUv4WSG0h3MqV4+LgmLNgSALAQUflPPW0EMxTf7C4Dmv9cgxJyCEQrdnVKCr58nPPaahhz9LJUg==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=22.18.0"
}
},
"node_modules/@cspell/cspell-pipe": {
"version": "10.0.1",
"resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-10.0.1.tgz",
"integrity": "sha512-HPeXMD9AZ3V/qPkvQaPcak+C7cJ2z7JTHN8smd6J8L2aThLRky2cHc2OyeaHPSHB7WA47b4z2n5u5nawZhv5VQ==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=22.18.0"
}
},
"node_modules/@cspell/cspell-resolver": {
"version": "10.0.1",
"resolved": "https://registry.npmjs.org/@cspell/cspell-resolver/-/cspell-resolver-10.0.1.tgz",
"integrity": "sha512-PIzkZHD1fGUQx1XteK2d1iQ0Mzq/maYcoB4jkvAiiR6WqP3MWYNKFdI9z+R5pOq5KgMfW+5Ig1q0oSR6h8irlA==",
"dev": true,
"license": "MIT",
"dependencies": {
"global-directory": "^5.0.0"
},
"engines": {
"node": ">=22.18.0"
}
},
"node_modules/@cspell/cspell-service-bus": {
"version": "10.0.1",
"resolved": "https://registry.npmjs.org/@cspell/cspell-service-bus/-/cspell-service-bus-10.0.1.tgz",
"integrity": "sha512-y6NcIGP2IdXaBL4PVH8vxsr7K27wzz3Ech87UtUtrDSXAiVEOvXgAIknEOUVp59rTlUE8Rn4IRURC6f/hgMyfw==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=22.18.0"
}
},
"node_modules/@cspell/cspell-types": {
"version": "10.0.1",
"resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-10.0.1.tgz",
"integrity": "sha512-kLgLShnWADDVreKC63pBrWkcvxgZzFIfO34Jhx/SWfuOIA3cD8AXT+HjyuLfoGJ7mUb58hv2kUziKzEy4INb1w==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=22.18.0"
}
},
"node_modules/@cspell/dict-ada": {
"version": "4.1.1",
"resolved": "https://registry.npmjs.org/@cspell/dict-ada/-/dict-ada-4.1.1.tgz",
"integrity": "sha512-E+0YW9RhZod/9Qy2gxfNZiHJjCYFlCdI69br1eviQQWB8yOTJX0JHXLs79kOYhSW0kINPVUdvddEBe6Lu6CjGQ==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-al": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/@cspell/dict-al/-/dict-al-1.1.1.tgz",
"integrity": "sha512-sD8GCaZetgQL4+MaJLXqbzWcRjfKVp8x+px3HuCaaiATAAtvjwUQ5/Iubiqwfd1boIh2Y1/3EgM3TLQ7Q8e0wQ==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-aws": {
"version": "4.0.17",
"resolved": "https://registry.npmjs.org/@cspell/dict-aws/-/dict-aws-4.0.17.tgz",
"integrity": "sha512-ORcblTWcdlGjIbWrgKF+8CNEBQiLVKdUOFoTn0KPNkAYnFcdPP0muT4892h7H4Xafh3j72wqB4/loQ6Nti9E/w==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-bash": {
"version": "4.2.3",
"resolved": "https://registry.npmjs.org/@cspell/dict-bash/-/dict-bash-4.2.3.tgz",
"integrity": "sha512-ljUZoKHbDqw5Sx0qpL2qTUlmkmr+vhZH/sCNrNaBZKTbdgiswErSnIF1jRbGmEitJNxHRHWsuZyVgnTGfVO1Yw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@cspell/dict-shell": "1.2.0"
}
},
"node_modules/@cspell/dict-companies": {
"version": "3.2.12",
"resolved": "https://registry.npmjs.org/@cspell/dict-companies/-/dict-companies-3.2.12.tgz",
"integrity": "sha512-mjiz/N3zWOCsz5VfwMUydSl7uW0OU9H2PnbCNc3RV44Vj6Q59CSp6EYGSGZQxrXU1gpsuZUrwr6QCjNjFOOg5A==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-cpp": {
"version": "7.1.0",
"resolved": "https://registry.npmjs.org/@cspell/dict-cpp/-/dict-cpp-7.1.0.tgz",
"integrity": "sha512-rcjycobioQUd9Jm/Y1n8U+sq6ytpZ0iV8AYIo+vyEFfutC5x7g6hL6Fh3bCdh6IporGHRqfEutGK/4sfopD2ZA==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-cryptocurrencies": {
"version": "5.0.5",
"resolved": "https://registry.npmjs.org/@cspell/dict-cryptocurrencies/-/dict-cryptocurrencies-5.0.5.tgz",
"integrity": "sha512-R68hYYF/rtlE6T/dsObStzN5QZw+0aQBinAXuWCVqwdS7YZo0X33vGMfChkHaiCo3Z2+bkegqHlqxZF4TD3rUA==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-csharp": {
"version": "4.0.8",
"resolved": "https://registry.npmjs.org/@cspell/dict-csharp/-/dict-csharp-4.0.8.tgz",
"integrity": "sha512-qmk45pKFHSxckl5mSlbHxmDitSsGMlk/XzFgt7emeTJWLNSTUK//MbYAkBNRtfzB4uD7pAFiKgpKgtJrTMRnrQ==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-css": {
"version": "4.1.2",
"resolved": "https://registry.npmjs.org/@cspell/dict-css/-/dict-css-4.1.2.tgz",
"integrity": "sha512-+ylGoKdwZ2sVOCOnU2Eq5wDZx+RaVX3HoKyNHGGsFvhSw6IidQ6tH/mAPKBDofViHJoWCPNlklE0lTr6MDG3QA==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-dart": {
"version": "2.3.2",
"resolved": "https://registry.npmjs.org/@cspell/dict-dart/-/dict-dart-2.3.2.tgz",
"integrity": "sha512-sUiLW56t9gfZcu8iR/5EUg+KYyRD83Cjl3yjDEA2ApVuJvK1HhX+vn4e4k4YfjpUQMag8XO2AaRhARE09+/rqw==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-data-science": {
"version": "2.0.16",
"resolved": "https://registry.npmjs.org/@cspell/dict-data-science/-/dict-data-science-2.0.16.tgz",
"integrity": "sha512-M72mxv5asuAnORurz4iXRJ+Tw9XBq6eu7D2Ne7biP0Z1RciKGNxXWu9JycA/KlVvK1hAlKj/fANlXhuEWpXKFg==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-django": {
"version": "4.1.6",
"resolved": "https://registry.npmjs.org/@cspell/dict-django/-/dict-django-4.1.6.tgz",
"integrity": "sha512-SdbSFDGy9ulETqNz15oWv2+kpWLlk8DJYd573xhIkeRdcXOjskRuxjSZPKfW7O3NxN/KEf3gm3IevVOiNuFS+w==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-docker": {
"version": "1.1.17",
"resolved": "https://registry.npmjs.org/@cspell/dict-docker/-/dict-docker-1.1.17.tgz",
"integrity": "sha512-OcnVTIpHIYYKhztNTyK8ShAnXTfnqs43hVH6p0py0wlcwRIXe5uj4f12n7zPf2CeBI7JAlPjEsV0Rlf4hbz/xQ==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-dotnet": {
"version": "5.0.13",
"resolved": "https://registry.npmjs.org/@cspell/dict-dotnet/-/dict-dotnet-5.0.13.tgz",
"integrity": "sha512-xPp7jMnFpOri7tzmqmm/dXMolXz1t2bhNqxYkOyMqXhvs08oc7BFs+EsbDY0X7hqiISgeFZGNqn0dOCr+ncPYw==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-elixir": {
"version": "4.0.8",
"resolved": "https://registry.npmjs.org/@cspell/dict-elixir/-/dict-elixir-4.0.8.tgz",
"integrity": "sha512-CyfphrbMyl4Ms55Vzuj+mNmd693HjBFr9hvU+B2YbFEZprE5AG+EXLYTMRWrXbpds4AuZcvN3deM2XVB80BN/Q==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-en_us": {
"version": "4.4.37",
"resolved": "https://registry.npmjs.org/@cspell/dict-en_us/-/dict-en_us-4.4.37.tgz",
"integrity": "sha512-rMKyPrk2SKmDU+Bj0U0ixsv4Du93oijwovc8XlUin0zwKOJZb0/PFG5Df4P8CrM2CrLeovpaFvhoI98DigxBLw==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-en-common-misspellings": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/@cspell/dict-en-common-misspellings/-/dict-en-common-misspellings-2.2.0.tgz",
"integrity": "sha512-5PmCHv+AhY0LVNo3bE1FdRKMmw1esKj83GPwLymnVPYNtlI2Jf6y27EjC0azg4zny5keWmku0GQiMf55Fi+qeA==",
"dev": true,
"license": "CC BY-SA 4.0"
},
"node_modules/@cspell/dict-en-gb-mit": {
"version": "3.1.26",
"resolved": "https://registry.npmjs.org/@cspell/dict-en-gb-mit/-/dict-en-gb-mit-3.1.26.tgz",
"integrity": "sha512-F9Y/45+1oIPzfL/pyWLp4kzX+vddHPAYpIpIF+45bdc65AebeEiQHKzSmKgGGTd3qbQc3fATw2kAFdLryiQpjQ==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-filetypes": {
"version": "3.0.18",
"resolved": "https://registry.npmjs.org/@cspell/dict-filetypes/-/dict-filetypes-3.0.18.tgz",
"integrity": "sha512-yU7RKD/x1IWmDLzWeiItMwgV+6bUcU/af23uS0+uGiFUbsY1qWV/D4rxlAAO6Z7no3J2z8aZOkYIOvUrJq0Rcw==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-flutter": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/@cspell/dict-flutter/-/dict-flutter-1.1.1.tgz",
"integrity": "sha512-UlOzRcH2tNbFhZmHJN48Za/2/MEdRHl2BMkCWZBYs+30b91mWvBfzaN4IJQU7dUZtowKayVIF9FzvLZtZokc5A==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-fonts": {
"version": "4.0.6",
"resolved": "https://registry.npmjs.org/@cspell/dict-fonts/-/dict-fonts-4.0.6.tgz",
"integrity": "sha512-aR/0csY01dNb0A1tw/UmN9rKgHruUxsYsvXu6YlSBJFu60s26SKr/k1o4LavpHTQ+lznlYMqAvuxGkE4Flliqw==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-fsharp": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/@cspell/dict-fsharp/-/dict-fsharp-1.1.1.tgz",
"integrity": "sha512-imhs0u87wEA4/cYjgzS0tAyaJpwG7vwtC8UyMFbwpmtw+/bgss+osNfyqhYRyS/ehVCWL17Ewx2UPkexjKyaBA==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-fullstack": {
"version": "3.2.9",
"resolved": "https://registry.npmjs.org/@cspell/dict-fullstack/-/dict-fullstack-3.2.9.tgz",
"integrity": "sha512-diZX+usW5aZ4/b2T0QM/H/Wl9aNMbdODa1Jq0ReBr/jazmNeWjd+PyqeVgzd1joEaHY+SAnjrf/i9CwKd2ZtWQ==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-gaming-terms": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/@cspell/dict-gaming-terms/-/dict-gaming-terms-1.1.2.tgz",
"integrity": "sha512-9XnOvaoTBscq0xuD6KTEIkk9hhdfBkkvJAIsvw3JMcnp1214OCGW8+kako5RqQ2vTZR3Tnf3pc57o7VgkM0q1Q==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-git": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/@cspell/dict-git/-/dict-git-3.1.0.tgz",
"integrity": "sha512-KEt9zGkxqGy2q1nwH4CbyqTSv5nadpn8BAlDnzlRcnL0Xb3LX9xTgSGShKvzb0bw35lHoYyLWN2ZKAqbC4pgGQ==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-golang": {
"version": "6.0.27",
"resolved": "https://registry.npmjs.org/@cspell/dict-golang/-/dict-golang-6.0.27.tgz",
"integrity": "sha512-rRDb2JL8EefaezHGTEclKXCs4eMOS0q/datk94Lm7KQOhlGlzS9FDVZiR1/guh0o+iJCmejQuf5NR2FQeQSWsg==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-google": {
"version": "1.0.9",
"resolved": "https://registry.npmjs.org/@cspell/dict-google/-/dict-google-1.0.9.tgz",
"integrity": "sha512-biL65POqialY0i4g6crj7pR6JnBkbsPovB2WDYkj3H4TuC/QXv7Pu5pdPxeUJA6TSCHI7T5twsO4VSVyRxD9CA==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-haskell": {
"version": "4.0.6",
"resolved": "https://registry.npmjs.org/@cspell/dict-haskell/-/dict-haskell-4.0.6.tgz",
"integrity": "sha512-ib8SA5qgftExpYNjWhpYIgvDsZ/0wvKKxSP+kuSkkak520iPvTJumEpIE+qPcmJQo4NzdKMN8nEfaeci4OcFAQ==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-html": {
"version": "4.0.16",
"resolved": "https://registry.npmjs.org/@cspell/dict-html/-/dict-html-4.0.16.tgz",
"integrity": "sha512-9B6/Cpb5YVcYgsEAlKudun1yd4ONllYS/ZibKLYea2apPR+l2vQdARnPrP9kTqa7NUNfRKl7m9Fb6k9rjimnow==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-html-symbol-entities": {
"version": "4.0.5",
"resolved": "https://registry.npmjs.org/@cspell/dict-html-symbol-entities/-/dict-html-symbol-entities-4.0.5.tgz",
"integrity": "sha512-429alTD4cE0FIwpMucvSN35Ld87HCyuM8mF731KU5Rm4Je2SG6hmVx7nkBsLyrmH3sQukTcr1GaiZsiEg8svPA==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-java": {
"version": "5.0.12",
"resolved": "https://registry.npmjs.org/@cspell/dict-java/-/dict-java-5.0.12.tgz",
"integrity": "sha512-qPSNhTcl7LGJ5Qp6VN71H8zqvRQK04S08T67knMq9hTA8U7G1sTKzLmBaDOFhq17vNX/+rT+rbRYp+B5Nwza1A==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-julia": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/@cspell/dict-julia/-/dict-julia-1.1.1.tgz",
"integrity": "sha512-WylJR9TQ2cgwd5BWEOfdO3zvDB+L7kYFm0I9u0s9jKHWQ6yKmfKeMjU9oXxTBxIufhCXm92SKwwVNAC7gjv+yA==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-k8s": {
"version": "1.0.13",
"resolved": "https://registry.npmjs.org/@cspell/dict-k8s/-/dict-k8s-1.0.13.tgz",
"integrity": "sha512-ELGkS13k7K/NEfVimBSrxVTfqXvOF/Kvxj4I62YxRm8bvHbfoXgrGaOx28lPiNRz+dmu+yYtvuXbnURKtYbC6g==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-kotlin": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/@cspell/dict-kotlin/-/dict-kotlin-1.1.1.tgz",
"integrity": "sha512-J3NzzfgmxRvEeOe3qUXnSJQCd38i/dpF9/t3quuWh6gXM+krsAXP75dY1CzDmS8mrJAlBdVBeAW5eAZTD8g86Q==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-latex": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/@cspell/dict-latex/-/dict-latex-5.1.0.tgz",
"integrity": "sha512-qxT4guhysyBt0gzoliXYEBYinkAdEtR2M7goRaUH0a7ltCsoqqAeEV8aXYRIdZGcV77gYSobvu3jJL038tlPAw==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-lorem-ipsum": {
"version": "4.0.5",
"resolved": "https://registry.npmjs.org/@cspell/dict-lorem-ipsum/-/dict-lorem-ipsum-4.0.5.tgz",
"integrity": "sha512-9a4TJYRcPWPBKkQAJ/whCu4uCAEgv/O2xAaZEI0n4y1/l18Yyx8pBKoIX5QuVXjjmKEkK7hi5SxyIsH7pFEK9Q==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-lua": {
"version": "4.0.8",
"resolved": "https://registry.npmjs.org/@cspell/dict-lua/-/dict-lua-4.0.8.tgz",
"integrity": "sha512-N4PkgNDMu9JVsRu7JBS/3E/dvfItRgk9w5ga2dKq+JupP2Y3lojNaAVFhXISh4Y0a6qXDn2clA6nvnavQ/jjLA==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-makefile": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/@cspell/dict-makefile/-/dict-makefile-1.0.5.tgz",
"integrity": "sha512-4vrVt7bGiK8Rx98tfRbYo42Xo2IstJkAF4tLLDMNQLkQ86msDlYSKG1ZCk8Abg+EdNcFAjNhXIiNO+w4KflGAQ==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-markdown": {
"version": "2.0.18",
"resolved": "https://registry.npmjs.org/@cspell/dict-markdown/-/dict-markdown-2.0.18.tgz",
"integrity": "sha512-KLRSwVrwKDz4n7bl2XQjzvaBZbGgx5QKkP5Ok1b24xaO3TpXsLhAbAn1mItvFlI2tF6Rkt83iYjQcYppywuf5Q==",
"dev": true,
"license": "MIT",
"peerDependencies": {
"@cspell/dict-css": "^4.1.2",
"@cspell/dict-html": "^4.0.16",
"@cspell/dict-html-symbol-entities": "^4.0.5",
"@cspell/dict-typescript": "^3.2.3"
}
},
"node_modules/@cspell/dict-monkeyc": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@cspell/dict-monkeyc/-/dict-monkeyc-1.1.0.tgz",
"integrity": "sha512-mc/hgvSy/emOIYtc8kuVEaLUlnaERunfAubfJ5plUXq6s0A69bcukJzUzSt9C0UTCwS28641ILRPv80m3L9QbA==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-node": {
"version": "5.0.9",
"resolved": "https://registry.npmjs.org/@cspell/dict-node/-/dict-node-5.0.9.tgz",
"integrity": "sha512-hO+ga+uYZ/WA4OtiMEyKt5rDUlUyu3nXMf8KVEeqq2msYvAPdldKBGH7lGONg6R/rPhv53Rb+0Y1SLdoK1+7wQ==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-npm": {
"version": "5.2.47",
"resolved": "https://registry.npmjs.org/@cspell/dict-npm/-/dict-npm-5.2.47.tgz",
"integrity": "sha512-r5ePbkmRtpMwiv+MHd6be1xIRLuXoEwaSLIZLu3mY+qtPVo0LUj/kVl4YeIxHONiwyef75zqS3gnT+s5UF7diQ==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-php": {
"version": "4.1.1",
"resolved": "https://registry.npmjs.org/@cspell/dict-php/-/dict-php-4.1.1.tgz",
"integrity": "sha512-EXelI+4AftmdIGtA8HL8kr4WlUE11OqCSVlnIgZekmTkEGSZdYnkFdiJ5IANSALtlQ1mghKjz+OFqVs6yowgWA==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-powershell": {
"version": "5.0.15",
"resolved": "https://registry.npmjs.org/@cspell/dict-powershell/-/dict-powershell-5.0.15.tgz",
"integrity": "sha512-l4S5PAcvCFcVDMJShrYD0X6Huv9dcsQPlsVsBGbH38wvuN7gS7+GxZFAjTNxDmTY1wrNi1cCatSg6Pu2BW4rgg==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-public-licenses": {
"version": "2.0.16",
"resolved": "https://registry.npmjs.org/@cspell/dict-public-licenses/-/dict-public-licenses-2.0.16.tgz",
"integrity": "sha512-EQRrPvEOmwhwWezV+W7LjXbIBjiy6y/shrET6Qcpnk3XANTzfvWflf9PnJ5kId/oKWvihFy0za0AV1JHd03pSQ==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-python": {
"version": "4.4.1",
"resolved": "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-4.4.1.tgz",
"integrity": "sha512-hyVRJ7RAN8j9fh6JLq4ihDeYNu2NiP6LrsYrjIy/0B2SW35zsFRMAZZJ9sz9ggs/plHMWAkOS85NjTyIi96VYw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@cspell/dict-data-science": "^2.0.16"
}
},
"node_modules/@cspell/dict-r": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/@cspell/dict-r/-/dict-r-2.1.1.tgz",
"integrity": "sha512-71Ka+yKfG4ZHEMEmDxc6+blFkeTTvgKbKAbwiwQAuKl3zpqs1Y0vUtwW2N4b3LgmSPhV3ODVY0y4m5ofqDuKMw==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-ruby": {
"version": "5.1.2",
"resolved": "https://registry.npmjs.org/@cspell/dict-ruby/-/dict-ruby-5.1.2.tgz",
"integrity": "sha512-f6Slf11N91ittf71AWlfVVG9GZPezVRBfcMPCTNTWhUsY/VEspkBRZYDhPXjV4df3jqHy5YJs8nlsFcFVF/bMA==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-rust": {
"version": "4.1.2",
"resolved": "https://registry.npmjs.org/@cspell/dict-rust/-/dict-rust-4.1.2.tgz",
"integrity": "sha512-O1FHrumYcO+HZti3dHfBPUdnDFkI+nbYK3pxYmiM1sr+G0ebOd6qchmswS0Wsc6ZdEVNiPYJY/gZQR6jfW3uOg==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-scala": {
"version": "5.0.9",
"resolved": "https://registry.npmjs.org/@cspell/dict-scala/-/dict-scala-5.0.9.tgz",
"integrity": "sha512-AjVcVAELgllybr1zk93CJ5wSUNu/Zb5kIubymR/GAYkMyBdYFCZ3Zbwn4Zz8GJlFFAbazABGOu0JPVbeY59vGg==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-shell": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/@cspell/dict-shell/-/dict-shell-1.2.0.tgz",
"integrity": "sha512-PVctvT22lJ49niMiakO8xieY7ELCAzjSqhejWR7bAMb5AZ9F4WDEs+XdGMnoVHWeXq7K5rcepLPmEJb+37zzIw==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-software-terms": {
"version": "5.4.1",
"resolved": "https://registry.npmjs.org/@cspell/dict-software-terms/-/dict-software-terms-5.4.1.tgz",
"integrity": "sha512-tY88gnOWj2ax6h+i7BjU7dIH1f3fvY4WypS0a+TpjBgXC318AdOMmy0zK1SzxGNOjhWJfCeCZNVoLFM/DuOG4g==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-sql": {
"version": "2.2.1",
"resolved": "https://registry.npmjs.org/@cspell/dict-sql/-/dict-sql-2.2.1.tgz",
"integrity": "sha512-qDHF8MpAYCf4pWU8NKbnVGzkoxMNrFqBHyG/dgrlic5EQiKANCLELYtGlX5auIMDLmTf1inA0eNtv74tyRJ/vg==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-svelte": {
"version": "1.0.7",
"resolved": "https://registry.npmjs.org/@cspell/dict-svelte/-/dict-svelte-1.0.7.tgz",
"integrity": "sha512-hGZsGqP0WdzKkdpeVLBivRuSNzOTvN036EBmpOwxH+FTY2DuUH7ecW+cSaMwOgmq5JFSdTcbTNFlNC8HN8lhaQ==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-swift": {
"version": "2.0.6",
"resolved": "https://registry.npmjs.org/@cspell/dict-swift/-/dict-swift-2.0.6.tgz",
"integrity": "sha512-PnpNbrIbex2aqU1kMgwEKvCzgbkHtj3dlFLPMqW1vSniop7YxaDTtvTUO4zA++ugYAEL+UK8vYrBwDPTjjvSnA==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-terraform": {
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/@cspell/dict-terraform/-/dict-terraform-1.1.4.tgz",
"integrity": "sha512-Ere42ilvMFvQA4GlcN0OKlruMPR6EsvaB+iTHzj2xc+NJGRK64V7yApUcWrOrSgTiM/vhWXPIsK3OMfiAiNdmA==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-typescript": {
"version": "3.2.3",
"resolved": "https://registry.npmjs.org/@cspell/dict-typescript/-/dict-typescript-3.2.3.tgz",
"integrity": "sha512-zXh1wYsNljQZfWWdSPYwQhpwiuW0KPW1dSd8idjMRvSD0aSvWWHoWlrMsmZeRl4qM4QCEAjua8+cjflm41cQBg==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-vue": {
"version": "3.0.5",
"resolved": "https://registry.npmjs.org/@cspell/dict-vue/-/dict-vue-3.0.5.tgz",
"integrity": "sha512-Mqutb8jbM+kIcywuPQCCaK5qQHTdaByoEO2J9LKFy3sqAdiBogNkrplqUK0HyyRFgCfbJUgjz3N85iCMcWH0JA==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-zig": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@cspell/dict-zig/-/dict-zig-1.0.0.tgz",
"integrity": "sha512-XibBIxBlVosU06+M6uHWkFeT0/pW5WajDRYdXG2CgHnq85b0TI/Ks0FuBJykmsgi2CAD3Qtx8UHFEtl/DSFnAQ==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dynamic-import": {
"version": "10.0.1",
"resolved": "https://registry.npmjs.org/@cspell/dynamic-import/-/dynamic-import-10.0.1.tgz",
"integrity": "sha512-mP1gdq00aIcH8HxNMqnH11X6BKxLcneDtFgl/ecjIKnaGKwi44m8AndP5Kr4ODaYdl8UUw9O3dJh7KaQXnLHZQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@cspell/url": "10.0.1",
"import-meta-resolve": "^4.2.0"
},
"engines": {
"node": ">=22.18.0"
}
},
"node_modules/@cspell/eslint-plugin": {
"version": "10.0.1",
"resolved": "https://registry.npmjs.org/@cspell/eslint-plugin/-/eslint-plugin-10.0.1.tgz",
"integrity": "sha512-VgRVWIWyM5bz2d7eC3/F4ON1fhMdrFB0R6slXmJewDDbJMDloSsMsWCSktiFET3a0TX/DTjOGGDzBN9tqGDGPw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@cspell/cspell-types": "10.0.1",
"@cspell/url": "10.0.1",
"cspell-lib": "10.0.1",
"synckit": "^0.11.13"
},
"engines": {
"node": ">=22.18.0"
},
"peerDependencies": {
"eslint": "^8 || ^9 || ^10"
}
},
"node_modules/@cspell/filetypes": {
"version": "10.0.1",
"resolved": "https://registry.npmjs.org/@cspell/filetypes/-/filetypes-10.0.1.tgz",
"integrity": "sha512-Z5S35giU5IW49fBBq6BksUbE8PC4IYPfaKuwl5Nl9jkf/OkAKiBmCowKX45NzRUQInwK/GSqqIUifrNeI6LdLw==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=22.18.0"
}
},
"node_modules/@cspell/rpc": {
"version": "10.0.1",
"resolved": "https://registry.npmjs.org/@cspell/rpc/-/rpc-10.0.1.tgz",
"integrity": "sha512-axSRKv3zEAmBm66iD/FV/MPmE4/Yf7c3PZiwTW894Yd3iEhtn3KPKeTrqQ2/tDrhB1Z2qTsap/Hue0MK4o5WXg==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=22.18.0"
}
},
"node_modules/@cspell/strong-weak-map": {
"version": "10.0.1",
"resolved": "https://registry.npmjs.org/@cspell/strong-weak-map/-/strong-weak-map-10.0.1.tgz",
"integrity": "sha512-lenN1DVyPi8nJLSMSJJ670ddTjyiruLueuSZO1qLcxBqUhgxDt/mALu9N/1m6WdOVcg6m/5cLiZVg2KOo2UzRw==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=22.18.0"
}
},
"node_modules/@cspell/url": {
"version": "10.0.1",
"resolved": "https://registry.npmjs.org/@cspell/url/-/url-10.0.1.tgz",
"integrity": "sha512-abYYgI29wJhWIfWTYrYuzRYDcHQUQ1N5ylnhxYn1NJnIQMqUWGLbDmt12JABtZ+R6h6UNatQrS7rhP86etvJyQ==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=22.18.0"
}
},
"node_modules/@dprint/formatter": {
"version": "0.5.1",
"resolved": "https://registry.npmjs.org/@dprint/formatter/-/formatter-0.5.1.tgz",
"integrity": "sha512-cdZUrm0iv/FnnY3CKE2dEcVhNEzrC551aE2h2mTFwQCRBrqyARLDnb7D+3PlXTUVp3s34ftlnGOVCmhLT9DeKA==",
"dev": true,
"license": "MIT"
},
"node_modules/@dprint/json": {
"version": "0.23.0",
"resolved": "https://registry.npmjs.org/@dprint/json/-/json-0.23.0.tgz",
"integrity": "sha512-FYFbZyrBr343JzCNkwa87+Lk2YnElpv0gzl+i5CXfMjixXzWWAKK2vEuzKoeCsJys4B3bfxmi0ByJ/xW2CY2jw==",
"dev": true,
"license": "MIT"
},
"node_modules/@dprint/markdown": {
"version": "0.22.1",
"resolved": "https://registry.npmjs.org/@dprint/markdown/-/markdown-0.22.1.tgz",
"integrity": "sha512-L5BYR66HNxs5vmGGYze/SP9wrIJnHIhbZGCbdP2N+o5gbukhau3ulFbaG/rB7u9H51LXGePue1sFXVgS5IiU2A==",
"dev": true,
"license": "MIT"
},
"node_modules/@dprint/toml": {
"version": "0.7.0",
"resolved": "https://registry.npmjs.org/@dprint/toml/-/toml-0.7.0.tgz",
"integrity": "sha512-eFaQTcfxKHB+YyTh83x7GEv+gDPuj9q5NFOTaoj5rZmQTbj6OgjjMxUicmS1R8zYcx8YAq5oA9J3YFa5U6x2gA==",
"dev": true,
"license": "MIT",
"optional": true,
"peer": true
},
"node_modules/@dprint/typescript": {
"version": "0.96.1",
"resolved": "https://registry.npmjs.org/@dprint/typescript/-/typescript-0.96.1.tgz",
"integrity": "sha512-mz/nINSFQh1R5i2Qy90SWOCCK4SgNGRkNhCZba7LYmUkE4Zi8/45p8l8pqc9yN1fb4XY5Muhrzdh5Q3jFsYimw==",
"dev": true,
"license": "MIT"
},
"node_modules/@emnapi/core": {
"version": "1.10.0",
"resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.10.0.tgz",
"integrity": "sha512-yq6OkJ4p82CAfPl0u9mQebQHKPJkY7WrIuk205cTYnYe+k2Z8YBh11FrbRG/H6ihirqcacOgl2BIO8oyMQLeXw==",
"dev": true,
"license": "MIT",
"optional": true,
"dependencies": {
"@emnapi/wasi-threads": "1.2.1",
"tslib": "^2.4.0"
}
},
"node_modules/@emnapi/runtime": {
"version": "1.10.0",
"resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.10.0.tgz",
"integrity": "sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA==",
"dev": true,
"license": "MIT",
"optional": true,
"dependencies": {
"tslib": "^2.4.0"
}
},
"node_modules/@emnapi/wasi-threads": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.1.tgz",
"integrity": "sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==",
"dev": true,
"license": "MIT",
"optional": true,
"dependencies": {
"tslib": "^2.4.0"
}
},
"node_modules/@enormora/eslint-config-base": {
"version": "0.0.62",
"resolved": "https://registry.npmjs.org/@enormora/eslint-config-base/-/eslint-config-base-0.0.62.tgz",
"integrity": "sha512-DWbUW2InsKakGfTwTzDIvtYxnoTjZSXapQCHd08YijH6flrfvGo1xSQlmkjxa8UoykIUVQH49x9Zta0OI+GL2g==",
"dev": true,
"license": "MIT",
"dependencies": {
"@ben_12/eslint-plugin-dprint": "1.23.0",
"@cspell/eslint-plugin": "10.0.1",
"@dprint/json": "0.23.0",
"@dprint/markdown": "0.22.1",
"@dprint/toml": "0.8.0",
"@dprint/typescript": "0.96.1",
"@eslint-community/eslint-plugin-eslint-comments": "4.7.2",
"@eslint/markdown": "8.0.3",
"@eslint/plugin-kit": "0.7.2",
"@stylistic/eslint-plugin": "5.10.0",
"@typescript-eslint/utils": "8.67.0",
"dprint-plugin-yaml": "0.6.0",
"eslint-plugin-array-func": "5.1.1",
"eslint-plugin-destructuring": "2.2.1",
"eslint-plugin-import-x": "4.17.1",
"eslint-plugin-json-schema-validator": "6.3.1",
"eslint-plugin-markdown-links": "0.9.1",
"eslint-plugin-markdown-preferences": "0.42.0",
"eslint-plugin-no-barrel-files": "2.2.0",
"eslint-plugin-no-secrets": "2.3.3",
"eslint-plugin-package-json": "1.7.1",
"eslint-plugin-promise": "7.3.0",
"eslint-plugin-regexp": "3.2.0",
"eslint-plugin-sonarjs": "4.2.0",
"eslint-plugin-unicorn": "73.0.0",
"jsonc-eslint-parser": "3.3.0"
},
"engines": {
"node": "^22.13.0 || >=24"
},
"peerDependencies": {
"eslint": "^10.0.0"
}
},
"node_modules/@enormora/eslint-config-base/node_modules/@dprint/toml": {
"version": "0.8.0",
"resolved": "https://registry.npmjs.org/@dprint/toml/-/toml-0.8.0.tgz",
"integrity": "sha512-7rJeNgy4AnA5NraBd0QG5uRpoaMUyNjWoIYZXx/yolzgc8YQSusTF4t42IDUxsBLhshiMOGI4xnSkLl19Ep8EQ==",
"dev": true,
"license": "MIT"
},
"node_modules/@enormora/eslint-config-node": {
"version": "0.0.46",
"resolved": "https://registry.npmjs.org/@enormora/eslint-config-node/-/eslint-config-node-0.0.46.tgz",
"integrity": "sha512-g14ieOhV/CMMiVh9kqYyluQ8tjmgXLt8+KHDYp2S3KaU3hyyUxsFszZpApQ3SKdiZno3ZlbSBnlCkSkhchrsLA==",
"dev": true,
"license": "MIT",
"dependencies": {
"eslint-plugin-n": "18.3.0",
"eslint-plugin-sonarjs": "4.2.0",
"globals": "17.11.0"
},
"engines": {
"node": "^22.13.0 || >=24"
}
},
"node_modules/@enormora/eslint-config-node-assert": {
"version": "0.0.7",
"resolved": "https://registry.npmjs.org/@enormora/eslint-config-node-assert/-/eslint-config-node-assert-0.0.7.tgz",
"integrity": "sha512-8IoyQg1+v82aSJaYjy6M5zw20feE98urmmyRA5++pghb4C+zfBoVnBD5ItYIAEjYTH9f7ECtZgeqoTreW4Y1eA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@enormora/eslint-plugin-node-assert": "0.0.1"
},
"engines": {
"node": "^22.13.0 || >=24"
}
},
"node_modules/@enormora/eslint-config-typescript": {
"version": "0.0.70",
"resolved": "https://registry.npmjs.org/@enormora/eslint-config-typescript/-/eslint-config-typescript-0.0.70.tgz",
"integrity": "sha512-56YUv+DFQrLIYzcEVjMYpQrPbd9YTy+R9tjmplRaRhRos8tqOVW+G4XCFavuOL+Zn/IHrQ8LtTf3VupYUFztVA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@typescript-eslint/eslint-plugin": "8.67.0",
"@typescript-eslint/parser": "8.67.0",
"@typescript-eslint/type-utils": "8.67.0",
"@typescript-eslint/utils": "8.67.0",
"eslint-import-resolver-typescript": "4.4.5",
"eslint-plugin-functional": "10.0.0",
"eslint-plugin-import-x": "4.17.1",
"eslint-plugin-perfectionist": "5.10.1"
},
"engines": {
"node": "^22.13.0 || >=24"
},
"peerDependencies": {
"@enormora/eslint-config-base": "0.0.62",
"typescript": ">=4.8.4 <6.1.0"
}
},
"node_modules/@enormora/eslint-config-typescript/node_modules/eslint-import-resolver-typescript": {
"version": "4.4.5",
"resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-4.4.5.tgz",
"integrity": "sha512-nbE5XLph6TLtGYcu/U6e6ZVXyKBhbDWK5cLGk76eJ7NdZpwf1P9EFkpt1Z01mNZNrrilsAYWKH6zUkL4reoXbw==",
"dev": true,
"license": "ISC",
"dependencies": {
"debug": "^4.4.1",
"eslint-import-context": "^0.1.8",
"get-tsconfig": "^4.10.1",
"is-bun-module": "^2.0.0",
"stable-hash-x": "^0.2.0",
"tinyglobby": "^0.2.14",
"unrs-resolver": "^1.7.11"
},
"engines": {
"node": "^16.17.0 || >=18.6.0"
},
"funding": {
"url": "https://opencollective.com/eslint-import-resolver-typescript"
},
"peerDependencies": {
"eslint": "*",
"eslint-plugin-import": "*",
"eslint-plugin-import-x": "*"
},
"peerDependenciesMeta": {
"eslint-plugin-import": {
"optional": true
},
"eslint-plugin-import-x": {
"optional": true