-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage-lock.json
More file actions
5407 lines (5407 loc) · 216 KB
/
package-lock.json
File metadata and controls
5407 lines (5407 loc) · 216 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": "chess",
"version": "1.0.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "chess",
"version": "1.0.0",
"license": "ISC",
"dependencies": {
"@flamework/components": "latest",
"@flamework/core": "latest",
"@flamework/networking": "latest",
"@rbxts/better-react-components": "latest",
"@rbxts/charm": "latest",
"@rbxts/compiler-types": "latest",
"@rbxts/flamework-binary-serializer": "^0.7.0",
"@rbxts/flamework-react-utils": "^1.0.8",
"@rbxts/lapis": "^0.3.8",
"@rbxts/luau-polyfill": "^1.1.3",
"@rbxts/pretty-react-hooks": "^0.6.4",
"@rbxts/react": "latest",
"@rbxts/react-charm": "latest",
"@rbxts/react-reflex": "latest",
"@rbxts/react-roblox": "latest",
"@rbxts/ripple": "latest",
"@rbxts/services": "latest",
"@rbxts/ui-labs": "latest",
"typescript-eslint": "latest"
},
"devDependencies": {
"@rbxts/types": "latest",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"eslint": "latest",
"eslint-config-prettier": "latest",
"eslint-plugin-prettier": "latest",
"eslint-plugin-roblox-ts": "latest",
"prettier": "latest",
"rbxts-transform-debug": "latest",
"rbxts-transformer-flamework": "latest",
"roblox-ts": "latest",
"typescript": "latest"
}
},
"node_modules/@eslint-community/eslint-utils": {
"version": "4.9.1",
"resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.9.1.tgz",
"integrity": "sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==",
"dependencies": {
"eslint-visitor-keys": "^3.4.3"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"funding": {
"url": "https://opencollective.com/eslint"
},
"peerDependencies": {
"eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
}
},
"node_modules/@eslint-community/regexpp": {
"version": "4.12.2",
"resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.2.tgz",
"integrity": "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==",
"engines": {
"node": "^12.0.0 || ^14.0.0 || >=16.0.0"
}
},
"node_modules/@eslint/eslintrc": {
"version": "2.1.4",
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz",
"integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==",
"dependencies": {
"ajv": "^6.12.4",
"debug": "^4.3.2",
"espree": "^9.6.0",
"globals": "^13.19.0",
"ignore": "^5.2.0",
"import-fresh": "^3.2.1",
"js-yaml": "^4.1.0",
"minimatch": "^3.1.2",
"strip-json-comments": "^3.1.1"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"funding": {
"url": "https://opencollective.com/eslint"
}
},
"node_modules/@eslint/eslintrc/node_modules/brace-expansion": {
"version": "1.1.12",
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz",
"integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==",
"dependencies": {
"balanced-match": "^1.0.0",
"concat-map": "0.0.1"
}
},
"node_modules/@eslint/eslintrc/node_modules/ignore": {
"version": "5.3.2",
"resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz",
"integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==",
"engines": {
"node": ">= 4"
}
},
"node_modules/@eslint/eslintrc/node_modules/minimatch": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
"integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
"dependencies": {
"brace-expansion": "^1.1.7"
},
"engines": {
"node": "*"
}
},
"node_modules/@eslint/js": {
"version": "8.57.1",
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.1.tgz",
"integrity": "sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==",
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
}
},
"node_modules/@flamework/components": {
"version": "1.3.2",
"resolved": "https://registry.npmjs.org/@flamework/components/-/components-1.3.2.tgz",
"integrity": "sha512-u9a8vwrCiXpG2LXihogsEb5DzDOSTJwxBON6XdQyQmobm0lPOQzRjtwvWRB83wMLtJPjzIs6T2L1Ce00yXw+WA==",
"dependencies": {
"@rbxts/maid": "^1.0.0-ts.1",
"@rbxts/services": "^1.1.5",
"@rbxts/signal": "^1.0.3",
"@rbxts/t": "^2.1.4"
},
"peerDependencies": {
"@flamework/core": "*"
}
},
"node_modules/@flamework/components/node_modules/@rbxts/t": {
"version": "2.2.1",
"resolved": "https://registry.npmjs.org/@rbxts/t/-/t-2.2.1.tgz",
"integrity": "sha512-MoFLHRQdm1tpAviAVxgkQj/ktxtnGBund2HXQj5xRqgYUWuC3kYuLkctuxXiJHUd1o1JzfU/HvVHtZfpqp61tg=="
},
"node_modules/@flamework/core": {
"version": "1.3.2",
"resolved": "https://registry.npmjs.org/@flamework/core/-/core-1.3.2.tgz",
"integrity": "sha512-4/tY5plivbvr4vvwRtxzuym7Nl5eDHM3RAR2nZHuuNz31h2S2CIrCoGHjkod0I6qPpfs4eUw2TiIrvVN8iC8JQ==",
"dependencies": {
"@rbxts/maid": "^1.0.0-ts.1",
"@rbxts/object-utils": "^1.0.4",
"@rbxts/services": "^1.1.4",
"@rbxts/signal": "^1.0.3",
"@rbxts/t": "^3.2.1"
}
},
"node_modules/@flamework/networking": {
"version": "1.3.2",
"resolved": "https://registry.npmjs.org/@flamework/networking/-/networking-1.3.2.tgz",
"integrity": "sha512-ImIOe3PDiUjYZBElZOWCDtPmDXwxG0z8syerKRYWHkTWHc9cchRdh6213xoguRDRhmZZ0MVJsIVZ/pCiNq5IYg==",
"dependencies": {
"@rbxts/object-utils": "^1.0.4",
"@rbxts/services": "^1.1.5",
"@rbxts/signal": "^1.0.3",
"@rbxts/t": "^3.1.0"
},
"peerDependencies": {
"@flamework/core": "*"
}
},
"node_modules/@humanwhocodes/config-array": {
"version": "0.13.0",
"resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.13.0.tgz",
"integrity": "sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==",
"deprecated": "Use @eslint/config-array instead",
"dependencies": {
"@humanwhocodes/object-schema": "^2.0.3",
"debug": "^4.3.1",
"minimatch": "^3.0.5"
},
"engines": {
"node": ">=10.10.0"
}
},
"node_modules/@humanwhocodes/config-array/node_modules/brace-expansion": {
"version": "1.1.12",
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz",
"integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==",
"dependencies": {
"balanced-match": "^1.0.0",
"concat-map": "0.0.1"
}
},
"node_modules/@humanwhocodes/config-array/node_modules/minimatch": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
"integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
"dependencies": {
"brace-expansion": "^1.1.7"
},
"engines": {
"node": "*"
}
},
"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==",
"engines": {
"node": ">=12.22"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/nzakas"
}
},
"node_modules/@humanwhocodes/object-schema": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz",
"integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==",
"deprecated": "Use @eslint/object-schema instead"
},
"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==",
"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==",
"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==",
"dependencies": {
"@nodelib/fs.scandir": "2.1.5",
"fastq": "^1.6.0"
},
"engines": {
"node": ">= 8"
}
},
"node_modules/@pkgr/core": {
"version": "0.2.9",
"resolved": "https://registry.npmjs.org/@pkgr/core/-/core-0.2.9.tgz",
"integrity": "sha512-QNqXyfVS2wm9hweSYD2O7F0G06uurj9kZ96TRQE5Y9hU7+tgdZwIkbAKc5Ocy1HxEY2kuDQa6cQ1WRs/O5LFKA==",
"dev": true,
"engines": {
"node": "^12.20.0 || ^14.18.0 || >=16.0.0"
},
"funding": {
"url": "https://opencollective.com/pkgr"
}
},
"node_modules/@rbxts-js/boolean": {
"version": "1.2.3-ts.1",
"resolved": "https://registry.npmjs.org/@rbxts-js/boolean/-/boolean-1.2.3-ts.1.tgz",
"integrity": "sha512-IlYFG9uatXQKXOLR1mdptVeEcxudwBCierO+Vu6VZRRaI+/+JDxUClm+QFZyce/kitwnDTmtNvhqVAUtFvCU0Q==",
"dependencies": {
"@rbxts-js/collections": "^1.2.3-ts.1"
}
},
"node_modules/@rbxts-js/collections": {
"version": "1.2.3-ts.1",
"resolved": "https://registry.npmjs.org/@rbxts-js/collections/-/collections-1.2.3-ts.1.tgz",
"integrity": "sha512-RYT73QyEdsV+DCQMtyzT2bZ1P12j2b+JSHVdb1x6xrDq/KdVEkk/QAzW+o22vPrLXbHa6/jA5bmVlgVcOOrIjA==",
"dependencies": {
"@rbxts-js/es7-types": "^1.2.3-ts.1",
"@rbxts-js/instance-of": "^1.2.3-ts.1"
}
},
"node_modules/@rbxts-js/console": {
"version": "1.2.3-ts.1",
"resolved": "https://registry.npmjs.org/@rbxts-js/console/-/console-1.2.3-ts.1.tgz",
"integrity": "sha512-qacyJE7bYf4n9448F7mn9e8Y5qljZb7QkSmsmnbQT2HA9Mecvg3gqc9RwCIdVkBV6o1AGVAHbatNQ3a39zPjaw==",
"dependencies": {
"@rbxts-js/collections": "^1.2.3-ts.1"
}
},
"node_modules/@rbxts-js/es7-types": {
"version": "1.2.3-ts.1",
"resolved": "https://registry.npmjs.org/@rbxts-js/es7-types/-/es7-types-1.2.3-ts.1.tgz",
"integrity": "sha512-Z7NitBQp6tyzsr5eKlSX54rmopKXpzGu33lYikjF37llrnGFBpnRcZgCJwHKYciloRmjUtnR/UohUNwbWyG9Zg=="
},
"node_modules/@rbxts-js/instance-of": {
"version": "1.2.3-ts.1",
"resolved": "https://registry.npmjs.org/@rbxts-js/instance-of/-/instance-of-1.2.3-ts.1.tgz",
"integrity": "sha512-3fKvDPvxHuEZALNBP2XdbXfzjEfbgsXAheCm1Jf5kC2r+HgszW+yqg4zY6TjW0pcsJM2JjH+fM52oomSNu3LLQ=="
},
"node_modules/@rbxts-js/luau-polyfill": {
"version": "1.2.3-ts.1",
"resolved": "https://registry.npmjs.org/@rbxts-js/luau-polyfill/-/luau-polyfill-1.2.3-ts.1.tgz",
"integrity": "sha512-2asgvWrOhf311rNgEM/fxMO3+xOVI63Cz1K1PobyZVtDdd87ZJ6RGiZSFl1EAeU77SZc8280toJDVs9YSwxWnA==",
"dependencies": {
"@rbxts-js/boolean": "^1.2.3-ts.1",
"@rbxts-js/collections": "^1.2.3-ts.1",
"@rbxts-js/console": "^1.2.3-ts.1",
"@rbxts-js/es7-types": "^1.2.3-ts.1",
"@rbxts-js/instance-of": "^1.2.3-ts.1",
"@rbxts-js/math": "^1.2.3-ts.1",
"@rbxts-js/number": "^1.2.3-ts.1",
"@rbxts-js/string": "^1.2.3-ts.1",
"@rbxts-js/symbol-luau": "^1.0.0-ts.1",
"@rbxts-js/timers": "^1.2.3-ts.1"
}
},
"node_modules/@rbxts-js/math": {
"version": "1.2.3-ts.1",
"resolved": "https://registry.npmjs.org/@rbxts-js/math/-/math-1.2.3-ts.1.tgz",
"integrity": "sha512-mF7IMJJyxYE02cRNWJ1wsq4pPaAEXKX+CbGlmI0G3QBgWVHj+Oi02IR6pssyUyE6Y2BKvgvP3dcJuTO51OX25A=="
},
"node_modules/@rbxts-js/number": {
"version": "1.2.3-ts.1",
"resolved": "https://registry.npmjs.org/@rbxts-js/number/-/number-1.2.3-ts.1.tgz",
"integrity": "sha512-tPdt2s7fEBSxImVFBUvuSMtBKIvaZUCtlOjBl58Y0+GKB15VPXFIRW/5biVruXPnv9d4sDE3mh986ZxxN4UQ5w=="
},
"node_modules/@rbxts-js/react": {
"version": "17.3.7-ts.1",
"resolved": "https://registry.npmjs.org/@rbxts-js/react/-/react-17.3.7-ts.1.tgz",
"integrity": "sha512-nRHYoBzk9DSbOvk281jmN5EM3TlmKv2jOzLgSIGtmNMuwZKi9yEjjxdluS1wHmjSvus1YiPHhBUwrKnbu01Obg==",
"dependencies": {
"@rbxts-js/luau-polyfill": "^1.2.3-ts.1",
"@rbxts-js/react-globals": "^17.3.7-ts.1",
"@rbxts-js/shared": "^17.3.7-ts.1"
}
},
"node_modules/@rbxts-js/react-globals": {
"version": "17.3.7-ts.1",
"resolved": "https://registry.npmjs.org/@rbxts-js/react-globals/-/react-globals-17.3.7-ts.1.tgz",
"integrity": "sha512-vwMHsc3Oy2MDAw2M212nQJ8A7nEG5O/lyXDyMGzYJp4832awhrf34YCkU4dxBE4sdMDcoWykhmuPjmzwrcS9Eg==",
"dependencies": {
"@rbxts-js/safe-flags": "^17.3.7-ts.1"
}
},
"node_modules/@rbxts-js/react-reconciler": {
"version": "17.3.7-ts.1",
"resolved": "https://registry.npmjs.org/@rbxts-js/react-reconciler/-/react-reconciler-17.3.7-ts.1.tgz",
"integrity": "sha512-MxKU48i1gv4djcgHTq3geMvl6MzXPW85FO+itLg0YCvqT3WgE3jsMAc0nneOFi5Mwd5tqybQY6UFF1SbQtBopA==",
"dependencies": {
"@rbxts-js/luau-polyfill": "^1.2.3-ts.1",
"@rbxts-js/react": "^17.3.7-ts.1",
"@rbxts-js/react-globals": "^17.3.7-ts.1",
"@rbxts-js/roblox-lua-promise": "^3.5.0-ts.2",
"@rbxts-js/safe-flags": "^17.3.7-ts.1",
"@rbxts-js/scheduler": "^17.3.7-ts.1",
"@rbxts-js/shared": "^17.3.7-ts.1"
}
},
"node_modules/@rbxts-js/react-roblox": {
"version": "17.3.7-ts.1",
"resolved": "https://registry.npmjs.org/@rbxts-js/react-roblox/-/react-roblox-17.3.7-ts.1.tgz",
"integrity": "sha512-xiJQXmJAho/mStcWYC7AXFqgUqW78whUMacaNeODMimQXgoVqaIfo0sEhLtLtS/N3qZRs1KR64nsNG/0n1r/NQ==",
"dependencies": {
"@rbxts-js/luau-polyfill": "^1.2.3-ts.1",
"@rbxts-js/react": "^17.3.7-ts.1",
"@rbxts-js/react-globals": "^17.3.7-ts.1",
"@rbxts-js/react-reconciler": "^17.3.7-ts.1",
"@rbxts-js/scheduler": "^17.3.7-ts.1",
"@rbxts-js/shared": "^17.3.7-ts.1"
}
},
"node_modules/@rbxts-js/roblox-lua-promise": {
"version": "3.5.0-ts.2",
"resolved": "https://registry.npmjs.org/@rbxts-js/roblox-lua-promise/-/roblox-lua-promise-3.5.0-ts.2.tgz",
"integrity": "sha512-H8fxKVJkRnM60yTZ/riO4X43GZD/MViFm+ftCzzAALkAhE4vSaBDNv9E7IUjZZoWi21bG6vZ8mGIiYfavaljvw=="
},
"node_modules/@rbxts-js/safe-flags": {
"version": "17.3.7-ts.1",
"resolved": "https://registry.npmjs.org/@rbxts-js/safe-flags/-/safe-flags-17.3.7-ts.1.tgz",
"integrity": "sha512-aQ/5aQ/wQO5npifAbTEpR3jQRMeyGsVc91AQEyhBW461lPv6ZEg+Ad2HJFSzg4eeK2mb8Z9WyIMBrb01Jt+GnQ=="
},
"node_modules/@rbxts-js/scheduler": {
"version": "17.3.7-ts.1",
"resolved": "https://registry.npmjs.org/@rbxts-js/scheduler/-/scheduler-17.3.7-ts.1.tgz",
"integrity": "sha512-WCgGQqH9/+A5oJd6HpxMj7Vp1VGqhycnJK0CZTsJl/Ceyf/VH/vif8fo1FrBWkxYEgz/7y0q3LOeRj8ArhyDWQ==",
"dependencies": {
"@rbxts-js/luau-polyfill": "^1.2.3-ts.1",
"@rbxts-js/react-globals": "^17.3.7-ts.1",
"@rbxts-js/safe-flags": "^17.3.7-ts.1",
"@rbxts-js/shared": "^17.3.7-ts.1"
}
},
"node_modules/@rbxts-js/shared": {
"version": "17.3.7-ts.1",
"resolved": "https://registry.npmjs.org/@rbxts-js/shared/-/shared-17.3.7-ts.1.tgz",
"integrity": "sha512-B/OCkRmbR6ho1yuf0M0hQIb78coDY//2XdmNBaX2XCN5pKa7dquiX6ufk4dizJ/OMBoy9br/cnxqcI0PLvla3w==",
"dependencies": {
"@rbxts-js/luau-polyfill": "^1.2.3-ts.1",
"@rbxts-js/react-globals": "^17.3.7-ts.1",
"@rbxts-js/safe-flags": "^17.3.7-ts.1"
}
},
"node_modules/@rbxts-js/string": {
"version": "1.2.3-ts.1",
"resolved": "https://registry.npmjs.org/@rbxts-js/string/-/string-1.2.3-ts.1.tgz",
"integrity": "sha512-Je/WKgZbXF/sAHEsQPuns5n4rWzux327zjr0KRf9Gy62ieUzl2FRZZHjVYce3xdMtHif2JstIf/J3p513TUtRg==",
"dependencies": {
"@rbxts-js/es7-types": "^1.2.3-ts.1",
"@rbxts-js/number": "^1.2.3-ts.1"
}
},
"node_modules/@rbxts-js/symbol-luau": {
"version": "1.0.0-ts.1",
"resolved": "https://registry.npmjs.org/@rbxts-js/symbol-luau/-/symbol-luau-1.0.0-ts.1.tgz",
"integrity": "sha512-TQS/ImDCK5KPGvbmyScH5EZS0ELSCDvZEFR3W+ItPlsLl+bDRSI/0uaKtJ7rbwXgdGwBDKM1QXFPjqe+KOphIA=="
},
"node_modules/@rbxts-js/timers": {
"version": "1.2.3-ts.1",
"resolved": "https://registry.npmjs.org/@rbxts-js/timers/-/timers-1.2.3-ts.1.tgz",
"integrity": "sha512-HKP4ymFX3QLWbR/2Gy4LXwvkhjC9OzbwZ5bNunxu+M8Ocbi1cjRduiZK/y5ogLr9cNIfSoxs6e1DQ3soc8/hwA==",
"dependencies": {
"@rbxts-js/collections": "^1.2.3-ts.1"
}
},
"node_modules/@rbxts/better-react-components": {
"version": "2.9.1",
"resolved": "https://registry.npmjs.org/@rbxts/better-react-components/-/better-react-components-2.9.1.tgz",
"integrity": "sha512-O3mXDtpctUEwqpo+X7iK3MPk0xDHmZpAL4PvMA6sYjOT86mJGV/MPFmNvZfNZa0rqjMs8rsNqYQVSaVIArevPg==",
"dependencies": {
"@rbxts/object-utils": "^1.0.4",
"@rbxts/pretty-react-hooks": "^0.6.0",
"@rbxts/react": "^17.2.1",
"@rbxts/react-roblox": "^17.2.1",
"@rbxts/ripple": "^0.9.1",
"@rbxts/services": "^1.5.5"
}
},
"node_modules/@rbxts/better-react-components/node_modules/@rbxts/react": {
"version": "17.2.3",
"resolved": "https://registry.npmjs.org/@rbxts/react/-/react-17.2.3.tgz",
"integrity": "sha512-IoOB8e2W8MxT0MKWFf0Ls0vT61ImYL6ctHQgz5+oazma6z8bqFtJjgPxOuy6jmMSuyfBe7rYp/muou0kIjZT+Q==",
"dependencies": {
"@rbxts/react-vendor": "17.2.3"
}
},
"node_modules/@rbxts/better-react-components/node_modules/@rbxts/react-roblox": {
"version": "17.2.3",
"resolved": "https://registry.npmjs.org/@rbxts/react-roblox/-/react-roblox-17.2.3.tgz",
"integrity": "sha512-YgS+C3tf92iM1NTK1f6R2O2G8+nbcKFnblA0mTs2Nt878OsWLgxhnhkCBZ6wYv+yeDGD9/sssKHZ6s2LzUWTrQ==",
"dependencies": {
"@rbxts/react": "17.2.3",
"@rbxts/react-vendor": "17.2.3"
}
},
"node_modules/@rbxts/better-react-components/node_modules/@rbxts/ripple": {
"version": "0.9.3",
"resolved": "https://registry.npmjs.org/@rbxts/ripple/-/ripple-0.9.3.tgz",
"integrity": "sha512-GmwjQl7a8pvGPGQYLmaAcf2RBPpneOL5P1+U8CzTHt9tBhCdk0TEJ/MQoTv9JnHD62RMBE1jogQBvuGgl9VXAg=="
},
"node_modules/@rbxts/charm": {
"version": "0.10.0",
"resolved": "https://registry.npmjs.org/@rbxts/charm/-/charm-0.10.0.tgz",
"integrity": "sha512-pcGpNyqNOcJ7r9UbAjFaUqU0F9Q+wCr4/2kUs8L0hh4dVhUN7t6ur4P7zAMzNuMJQG8YP47a9rq0l0/LlhLuow=="
},
"node_modules/@rbxts/compiler-types": {
"version": "3.0.0-types.0",
"resolved": "https://registry.npmjs.org/@rbxts/compiler-types/-/compiler-types-3.0.0-types.0.tgz",
"integrity": "sha512-VGOHJPoL7+56NTatMGqQj3K7xWuzEV+aP4QD5vZiHu+bcff3kiTmtoadaF6NkJrmwfFAvbsd4Dg764ZjWNceag=="
},
"node_modules/@rbxts/flamework-binary-serializer": {
"version": "0.7.0",
"resolved": "https://registry.npmjs.org/@rbxts/flamework-binary-serializer/-/flamework-binary-serializer-0.7.0.tgz",
"integrity": "sha512-vpnSV7l3/4TFBR9eyk2xJEoTxAMTsQINten+PnQwZGM3/MI26zSLzDV3dzLhdfrwI5xGCn3l1465VGwxz3upfQ==",
"peerDependencies": {
"@flamework/core": "*",
"rbxts-transformer-flamework": "*"
}
},
"node_modules/@rbxts/flamework-react-utils": {
"version": "1.0.8",
"resolved": "https://registry.npmjs.org/@rbxts/flamework-react-utils/-/flamework-react-utils-1.0.8.tgz",
"integrity": "sha512-G3Bs3UuIPqa1Ul+cM+4x1hMNY5b3mipw4LCrbOu+xzPW8TT/v0pS8FH1VcxGcj6v4+zZ/Vl0o0viN1zMJHHKTQ==",
"peerDependencies": {
"@flamework/components": "*",
"@flamework/core": "*",
"@rbxts/pretty-react-hooks": "^0.6.1",
"@rbxts/react": "*"
}
},
"node_modules/@rbxts/lapis": {
"version": "0.3.8",
"resolved": "https://registry.npmjs.org/@rbxts/lapis/-/lapis-0.3.8.tgz",
"integrity": "sha512-SQTVdSp47Rh7nzuI/ArUsGssz2+KmciPlue4Qlj3i9iO2p3Xgf1ZsgfhvMemPih/kFdjSH47E8wHGA4dY/Y+AA==",
"peerDependencies": {
"@rbxts/t": "*"
}
},
"node_modules/@rbxts/luau-polyfill": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/@rbxts/luau-polyfill/-/luau-polyfill-1.1.3.tgz",
"integrity": "sha512-HhTeV1aeCDrr6PoTCc0khnAAxyBcDm0iXeu/t7l96u2Mr1fyA+0ugZd66A1xpThZwz/7YbTSFpiFp5SIFeu2Ug=="
},
"node_modules/@rbxts/maid": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@rbxts/maid/-/maid-1.1.0.tgz",
"integrity": "sha512-bVWXZ0p2M3OJzPzvN5fY0T4s37ezUMY7EX31Xspp7Ds4C/K9yE4MHMRXjtlNvsYVPmoc5tdhAbpZY02Veix5lg=="
},
"node_modules/@rbxts/object-utils": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/@rbxts/object-utils/-/object-utils-1.0.4.tgz",
"integrity": "sha512-dLLhf022ipV+9i910sOE7kl9losKHoon0WgeerHqVMQA5EYsLUsVT2AxhJuhk8MiDn5oJ2GiFofE/LadY9TpJQ=="
},
"node_modules/@rbxts/pretty-react-hooks": {
"version": "0.6.4",
"resolved": "https://registry.npmjs.org/@rbxts/pretty-react-hooks/-/pretty-react-hooks-0.6.4.tgz",
"integrity": "sha512-yiuM3kOD0s2x0GFCUVfFdeSDJRX2ZycS88WOvqydaYwPIZ5rYDjzHjOzRgSpAzGcTVOFXsO64QOtD6svAdadzg==",
"dependencies": {
"@rbxts/ripple": "^0.9.3",
"@rbxts/services": "^1.5.5",
"@rbxts/set-timeout": "^1.1.2"
},
"peerDependencies": {
"@rbxts/react": "*",
"@rbxts/react-roblox": "*"
}
},
"node_modules/@rbxts/pretty-react-hooks/node_modules/@rbxts/ripple": {
"version": "0.9.3",
"resolved": "https://registry.npmjs.org/@rbxts/ripple/-/ripple-0.9.3.tgz",
"integrity": "sha512-GmwjQl7a8pvGPGQYLmaAcf2RBPpneOL5P1+U8CzTHt9tBhCdk0TEJ/MQoTv9JnHD62RMBE1jogQBvuGgl9VXAg=="
},
"node_modules/@rbxts/react": {
"version": "17.3.7-ts.1",
"resolved": "https://registry.npmjs.org/@rbxts/react/-/react-17.3.7-ts.1.tgz",
"integrity": "sha512-/jqZ2TvyLSAPwC30h95loUmy4XN2PwPhv6fBARJKtZfyozFx2RuxC9FiQSjpEZ2uOOPzr60It0MBUf94D+tsMg==",
"dependencies": {
"@rbxts-js/react": "^17.3.7-ts.1"
}
},
"node_modules/@rbxts/react-charm": {
"version": "0.3.0",
"resolved": "https://registry.npmjs.org/@rbxts/react-charm/-/react-charm-0.3.0.tgz",
"integrity": "sha512-w64HoO6SxRSX86yNPiGazPQpR7cWBaWVATK9jkCphLQYmzdUV1BL9pRNN1Y1VMAk/PKiZ1mJdwX3PnwwvLXFvg==",
"peerDependencies": {
"@rbxts/charm": "0.10.0",
"@rbxts/react": "*"
}
},
"node_modules/@rbxts/react-reflex": {
"version": "0.3.7",
"resolved": "https://registry.npmjs.org/@rbxts/react-reflex/-/react-reflex-0.3.7.tgz",
"integrity": "sha512-2hSMSdhJweGi0l5/NkGrxw6rE8gAePb4cD1G6u8DW/9a93CBYEbiFevSkMRP0MqnNQAkyqWg048wSvJBcS0H/g==",
"peerDependencies": {
"@rbxts/react": "*",
"@rbxts/reflex": "*"
}
},
"node_modules/@rbxts/react-roblox": {
"version": "17.3.7-ts.1",
"resolved": "https://registry.npmjs.org/@rbxts/react-roblox/-/react-roblox-17.3.7-ts.1.tgz",
"integrity": "sha512-lsH3lP+X0JUS/6Fg5MJfP8OjMn7bjxapbg3r1ajrpvwZGPGU1WOFcFDS/xMMk/2RK/GNYRmkduNM8pQ9vHw54Q==",
"dependencies": {
"@rbxts-js/react-roblox": "^17.3.7-ts.1"
},
"peerDependencies": {
"@rbxts/react": "^17.3.7-ts.1"
}
},
"node_modules/@rbxts/react-vendor": {
"version": "17.2.3",
"resolved": "https://registry.npmjs.org/@rbxts/react-vendor/-/react-vendor-17.2.3.tgz",
"integrity": "sha512-dWCiVelvTK6h920geaFH/OQ5zoWHyhyqyfH51hKx2/iVZ6OiiyNVJ5UqEIkJMG4HsJ8JnkTORizV3+MtQ41BtA=="
},
"node_modules/@rbxts/reflex": {
"version": "4.3.1",
"resolved": "https://registry.npmjs.org/@rbxts/reflex/-/reflex-4.3.1.tgz",
"integrity": "sha512-S5MbEpHKeRh9NWhwGJ789WbUsmlAlpQziWaNK4+kz1EpaaQ7uHQMZAuN1DYl4+QkqmOSuPlj04COwmArBGWH1Q==",
"peer": true
},
"node_modules/@rbxts/ripple": {
"version": "0.10.1",
"resolved": "https://registry.npmjs.org/@rbxts/ripple/-/ripple-0.10.1.tgz",
"integrity": "sha512-nBxSQCg4PKbQbFg08UGx0tBxWiufP/G0WaJ8QAV64V1bGxIWjfRmtrcuABodC1soTRDdVqqMm7C/CkYWP5Cm/g=="
},
"node_modules/@rbxts/services": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@rbxts/services/-/services-1.6.0.tgz",
"integrity": "sha512-YH02E1/tGHeMXB0Mam8qPdAZa2fjQWdylEscSL4Zn0RIaQeByYImA2qUsXM3nBdhcyKHDwltzSznDKyCGfFEWA=="
},
"node_modules/@rbxts/set-timeout": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/@rbxts/set-timeout/-/set-timeout-1.1.2.tgz",
"integrity": "sha512-P/A0IiH9wuZdSJYr4Us0MDFm61nvIFR0acfKFHLkcOsgvIgELC90Up9ugiSsaMEHRIcIcO5UjE39LuS3xTzQHw==",
"dependencies": {
"@rbxts/services": "^1.5.1"
}
},
"node_modules/@rbxts/signal": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/@rbxts/signal/-/signal-1.1.1.tgz",
"integrity": "sha512-WX+ONE+ld4pG9PvRkR8OgDld9NpaV1RfXyUIw+Q2oXP/5rehkYzvt20NWtrLAP3NhMc5inYInLd+hnufey6nFw=="
},
"node_modules/@rbxts/t": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@rbxts/t/-/t-3.2.1.tgz",
"integrity": "sha512-/fnf2QSx+TI3HSJ6QW2ikvGQk0mlx/63UXo60pLAKGqbxXiAuTJh88bpKpHw6aCzfFLJAwrVIcgCUOokLMPcag=="
},
"node_modules/@rbxts/types": {
"version": "1.0.906",
"resolved": "https://registry.npmjs.org/@rbxts/types/-/types-1.0.906.tgz",
"integrity": "sha512-WmuBYq/EqFXi687DnaKMQOpXorypR2Kq2JEsiWxz1OBKTg9Vvcy7w8y9UV5JPaJK+GgVp5rw0MjnxYffKHsldA==",
"dev": true
},
"node_modules/@rbxts/ui-labs": {
"version": "2.4.2",
"resolved": "https://registry.npmjs.org/@rbxts/ui-labs/-/ui-labs-2.4.2.tgz",
"integrity": "sha512-9cyzDYN4mM7KSupZpbHRCUWCfSHzy8LCqa9Czys2jaKYUCn8oV4j5AE+5jTrHD/8RcltP5EvCSFIFwB0N/NfxA=="
},
"node_modules/@roblox-ts/luau-ast": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/@roblox-ts/luau-ast/-/luau-ast-2.0.1.tgz",
"integrity": "sha512-jej2mzRGwhR9wu4woAtgTwqsKADlegZYlQ+M5qVHRojvjoyJVFkLrSbhBKRr8HR+fVW5nCz0qX7kNa0tSpAY+A==",
"dev": true
},
"node_modules/@roblox-ts/path-translator": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@roblox-ts/path-translator/-/path-translator-1.1.0.tgz",
"integrity": "sha512-D0akTmnNYqBw+ZIek5JxocT3BjmbgGOuOy0x1nIIxHBPNLGCpzseToY8jyYs/0mlvnN2xnSP/k8Tv+jvGOQSwQ==",
"dev": true,
"dependencies": {
"ajv": "^8.12.0",
"fs-extra": "^11.2.0"
}
},
"node_modules/@roblox-ts/path-translator/node_modules/ajv": {
"version": "8.17.1",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz",
"integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==",
"dev": true,
"dependencies": {
"fast-deep-equal": "^3.1.3",
"fast-uri": "^3.0.1",
"json-schema-traverse": "^1.0.0",
"require-from-string": "^2.0.2"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/epoberezkin"
}
},
"node_modules/@roblox-ts/path-translator/node_modules/fs-extra": {
"version": "11.3.3",
"resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.3.3.tgz",
"integrity": "sha512-VWSRii4t0AFm6ixFFmLLx1t7wS1gh+ckoa84aOeapGum0h+EZd1EhEumSB+ZdDLnEPuucsVB9oB7cxJHap6Afg==",
"dev": true,
"dependencies": {
"graceful-fs": "^4.2.0",
"jsonfile": "^6.0.1",
"universalify": "^2.0.0"
},
"engines": {
"node": ">=14.14"
}
},
"node_modules/@roblox-ts/path-translator/node_modules/json-schema-traverse": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
"integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
"dev": true
},
"node_modules/@roblox-ts/rojo-resolver": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@roblox-ts/rojo-resolver/-/rojo-resolver-1.1.0.tgz",
"integrity": "sha512-QmvVryu1EeME+3QUoG5j/gHGJoJUaffCgZ92mhlG7cJSd1uyhgpY4CNWriZAwZJYkTlzd5Htkpn+18yDFbOFXA==",
"dependencies": {
"ajv": "^8.17.1",
"fs-extra": "^11.2.0"
}
},
"node_modules/@roblox-ts/rojo-resolver/node_modules/ajv": {
"version": "8.17.1",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz",
"integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==",
"dependencies": {
"fast-deep-equal": "^3.1.3",
"fast-uri": "^3.0.1",
"json-schema-traverse": "^1.0.0",
"require-from-string": "^2.0.2"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/epoberezkin"
}
},
"node_modules/@roblox-ts/rojo-resolver/node_modules/fs-extra": {
"version": "11.3.3",
"resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.3.3.tgz",
"integrity": "sha512-VWSRii4t0AFm6ixFFmLLx1t7wS1gh+ckoa84aOeapGum0h+EZd1EhEumSB+ZdDLnEPuucsVB9oB7cxJHap6Afg==",
"dependencies": {
"graceful-fs": "^4.2.0",
"jsonfile": "^6.0.1",
"universalify": "^2.0.0"
},
"engines": {
"node": ">=14.14"
}
},
"node_modules/@roblox-ts/rojo-resolver/node_modules/json-schema-traverse": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
"integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="
},
"node_modules/@typescript-eslint/eslint-plugin": {
"version": "8.55.0",
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.55.0.tgz",
"integrity": "sha512-1y/MVSz0NglV1ijHC8OT49mPJ4qhPYjiK08YUQVbIOyu+5k862LKUHFkpKHWu//zmr7hDR2rhwUm6gnCGNmGBQ==",
"dependencies": {
"@eslint-community/regexpp": "^4.12.2",
"@typescript-eslint/scope-manager": "8.55.0",
"@typescript-eslint/type-utils": "8.55.0",
"@typescript-eslint/utils": "8.55.0",
"@typescript-eslint/visitor-keys": "8.55.0",
"ignore": "^7.0.5",
"natural-compare": "^1.4.0",
"ts-api-utils": "^2.4.0"
},
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/typescript-eslint"
},
"peerDependencies": {
"@typescript-eslint/parser": "^8.55.0",
"eslint": "^8.57.0 || ^9.0.0",
"typescript": ">=4.8.4 <6.0.0"
}
},
"node_modules/@typescript-eslint/parser": {
"version": "8.55.0",
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.55.0.tgz",
"integrity": "sha512-4z2nCSBfVIMnbuu8uinj+f0o4qOeggYJLbjpPHka3KH1om7e+H9yLKTYgksTaHcGco+NClhhY2vyO3HsMH1RGw==",
"dependencies": {
"@typescript-eslint/scope-manager": "8.55.0",
"@typescript-eslint/types": "8.55.0",
"@typescript-eslint/typescript-estree": "8.55.0",
"@typescript-eslint/visitor-keys": "8.55.0",
"debug": "^4.4.3"
},
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/typescript-eslint"
},
"peerDependencies": {
"eslint": "^8.57.0 || ^9.0.0",
"typescript": ">=4.8.4 <6.0.0"
}
},
"node_modules/@typescript-eslint/project-service": {
"version": "8.55.0",
"resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.55.0.tgz",
"integrity": "sha512-zRcVVPFUYWa3kNnjaZGXSu3xkKV1zXy8M4nO/pElzQhFweb7PPtluDLQtKArEOGmjXoRjnUZ29NjOiF0eCDkcQ==",
"dependencies": {
"@typescript-eslint/tsconfig-utils": "^8.55.0",
"@typescript-eslint/types": "^8.55.0",
"debug": "^4.4.3"
},
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/typescript-eslint"
},
"peerDependencies": {
"typescript": ">=4.8.4 <6.0.0"
}
},
"node_modules/@typescript-eslint/scope-manager": {
"version": "8.55.0",
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.55.0.tgz",
"integrity": "sha512-fVu5Omrd3jeqeQLiB9f1YsuK/iHFOwb04bCtY4BSCLgjNbOD33ZdV6KyEqplHr+IlpgT0QTZ/iJ+wT7hvTx49Q==",
"dependencies": {
"@typescript-eslint/types": "8.55.0",
"@typescript-eslint/visitor-keys": "8.55.0"
},
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/typescript-eslint"
}
},
"node_modules/@typescript-eslint/tsconfig-utils": {
"version": "8.55.0",
"resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.55.0.tgz",
"integrity": "sha512-1R9cXqY7RQd7WuqSN47PK9EDpgFUK3VqdmbYrvWJZYDd0cavROGn+74ktWBlmJ13NXUQKlZ/iAEQHI/V0kKe0Q==",
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/typescript-eslint"
},
"peerDependencies": {
"typescript": ">=4.8.4 <6.0.0"
}
},
"node_modules/@typescript-eslint/type-utils": {
"version": "8.55.0",
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.55.0.tgz",
"integrity": "sha512-x1iH2unH4qAt6I37I2CGlsNs+B9WGxurP2uyZLRz6UJoZWDBx9cJL1xVN/FiOmHEONEg6RIufdvyT0TEYIgC5g==",
"dependencies": {
"@typescript-eslint/types": "8.55.0",
"@typescript-eslint/typescript-estree": "8.55.0",
"@typescript-eslint/utils": "8.55.0",
"debug": "^4.4.3",
"ts-api-utils": "^2.4.0"
},
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/typescript-eslint"
},
"peerDependencies": {
"eslint": "^8.57.0 || ^9.0.0",
"typescript": ">=4.8.4 <6.0.0"
}
},
"node_modules/@typescript-eslint/types": {
"version": "8.55.0",
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.55.0.tgz",
"integrity": "sha512-ujT0Je8GI5BJWi+/mMoR0wxwVEQaxM+pi30xuMiJETlX80OPovb2p9E8ss87gnSVtYXtJoU9U1Cowcr6w2FE0w==",
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/typescript-eslint"
}
},
"node_modules/@typescript-eslint/typescript-estree": {
"version": "8.55.0",
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.55.0.tgz",
"integrity": "sha512-EwrH67bSWdx/3aRQhCoxDaHM+CrZjotc2UCCpEDVqfCE+7OjKAGWNY2HsCSTEVvWH2clYQK8pdeLp42EVs+xQw==",
"dependencies": {
"@typescript-eslint/project-service": "8.55.0",
"@typescript-eslint/tsconfig-utils": "8.55.0",
"@typescript-eslint/types": "8.55.0",
"@typescript-eslint/visitor-keys": "8.55.0",
"debug": "^4.4.3",
"minimatch": "^9.0.5",
"semver": "^7.7.3",
"tinyglobby": "^0.2.15",
"ts-api-utils": "^2.4.0"
},
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/typescript-eslint"
},
"peerDependencies": {
"typescript": ">=4.8.4 <6.0.0"
}
},
"node_modules/@typescript-eslint/utils": {
"version": "8.55.0",
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.55.0.tgz",
"integrity": "sha512-BqZEsnPGdYpgyEIkDC1BadNY8oMwckftxBT+C8W0g1iKPdeqKZBtTfnvcq0nf60u7MkjFO8RBvpRGZBPw4L2ow==",
"dependencies": {
"@eslint-community/eslint-utils": "^4.9.1",
"@typescript-eslint/scope-manager": "8.55.0",
"@typescript-eslint/types": "8.55.0",
"@typescript-eslint/typescript-estree": "8.55.0"
},
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/typescript-eslint"
},
"peerDependencies": {
"eslint": "^8.57.0 || ^9.0.0",
"typescript": ">=4.8.4 <6.0.0"
}
},
"node_modules/@typescript-eslint/visitor-keys": {
"version": "8.55.0",
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.55.0.tgz",
"integrity": "sha512-AxNRwEie8Nn4eFS1FzDMJWIISMGoXMb037sgCBJ3UR6o0fQTzr2tqN9WT+DkWJPhIdQCfV7T6D387566VtnCJA==",
"dependencies": {
"@typescript-eslint/types": "8.55.0",
"eslint-visitor-keys": "^4.2.1"
},
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/typescript-eslint"
}
},
"node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": {
"version": "4.2.1",
"resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz",
"integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==",
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
},
"funding": {
"url": "https://opencollective.com/eslint"
}
},
"node_modules/@ungap/structured-clone": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.0.tgz",
"integrity": "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g=="
},
"node_modules/acorn": {
"version": "8.15.0",
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz",
"integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==",
"bin": {
"acorn": "bin/acorn"
},
"engines": {
"node": ">=0.4.0"
}
},
"node_modules/acorn-jsx": {
"version": "5.3.2",
"resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
"integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
"peerDependencies": {
"acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
}
},
"node_modules/ajv": {
"version": "6.12.6",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
"integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
"dependencies": {
"fast-deep-equal": "^3.1.1",
"fast-json-stable-stringify": "^2.0.0",
"json-schema-traverse": "^0.4.1",
"uri-js": "^4.2.2"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/epoberezkin"
}
},
"node_modules/ansi-regex": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
"engines": {
"node": ">=8"
}
},
"node_modules/ansi-styles": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"dependencies": {
"color-convert": "^2.0.1"
},
"engines": {
"node": ">=8"
},
"funding": {
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
"node_modules/anymatch": {
"version": "3.1.3",
"resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
"integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
"dev": true,
"dependencies": {
"normalize-path": "^3.0.0",
"picomatch": "^2.0.4"
},
"engines": {