-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage-lock.json
More file actions
3530 lines (3530 loc) · 120 KB
/
package-lock.json
File metadata and controls
3530 lines (3530 loc) · 120 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": "@rbxts/backpack-plus",
"version": "1.2.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@rbxts/backpack-plus",
"version": "1.2.0",
"license": "MIT",
"dependencies": {
"@rbxts/charm": "^0.10.0",
"@rbxts/charm-sync": "^0.3.0",
"@rbxts/fuzzy-search": "^1.0.4",
"@rbxts/pretty-react-hooks": "^0.6.4",
"@rbxts/react": "^17.3.7-ts.1",
"@rbxts/react-charm": "^0.3.0",
"@rbxts/react-ripple": "^3.0.1",
"@rbxts/react-roblox": "^17.3.7-ts.1",
"@rbxts/remo": "^1.5.3",
"@rbxts/ripple": "^0.10.2",
"@rbxts/services": "^1.6.0",
"@rbxts/sift": "^0.0.11",
"@rbxts/t": "^3.2.1"
},
"devDependencies": {
"@rbxts/compiler-types": "^3.0.0-types.0",
"@rbxts/coverage": "^0.1.3",
"@rbxts/jest": "^3.13.3-ts.1",
"@rbxts/jest-globals": "^3.13.3-ts.1",
"@rbxts/topbarplus": "^1.0.9",
"@rbxts/types": "^1.0.903",
"@typescript-eslint/eslint-plugin": "^8.53.1",
"@typescript-eslint/parser": "^8.53.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-roblox-ts": "^1.3.1",
"prettier": "^3.8.1",
"roblox-ts": "^3.0.0",
"typescript": "^5.9.3"
}
},
"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==",
"dev": true,
"license": "MIT",
"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==",
"dev": true,
"license": "MIT",
"engines": {
"node": "^12.0.0 || ^14.0.0 || >=16.0.0"
}
},
"node_modules/@eslint/config-array": {
"version": "0.21.1",
"resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.21.1.tgz",
"integrity": "sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@eslint/object-schema": "^2.1.7",
"debug": "^4.3.1",
"minimatch": "^3.1.2"
},
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
}
},
"node_modules/@eslint/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==",
"dev": true,
"license": "MIT",
"dependencies": {
"balanced-match": "^1.0.0",
"concat-map": "0.0.1"
}
},
"node_modules/@eslint/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==",
"dev": true,
"license": "ISC",
"dependencies": {
"brace-expansion": "^1.1.7"
},
"engines": {
"node": "*"
}
},
"node_modules/@eslint/config-helpers": {
"version": "0.4.2",
"resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.4.2.tgz",
"integrity": "sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@eslint/core": "^0.17.0"
},
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
}
},
"node_modules/@eslint/core": {
"version": "0.17.0",
"resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.17.0.tgz",
"integrity": "sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@types/json-schema": "^7.0.15"
},
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
}
},
"node_modules/@eslint/eslintrc": {
"version": "3.3.3",
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.3.tgz",
"integrity": "sha512-Kr+LPIUVKz2qkx1HAMH8q1q6azbqBAsXJUxBl/ODDuVPX45Z9DfwB8tPjTi6nNZ8BuM3nbJxC5zCAg5elnBUTQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"ajv": "^6.12.4",
"debug": "^4.3.2",
"espree": "^10.0.1",
"globals": "^14.0.0",
"ignore": "^5.2.0",
"import-fresh": "^3.2.1",
"js-yaml": "^4.1.1",
"minimatch": "^3.1.2",
"strip-json-comments": "^3.1.1"
},
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
},
"funding": {
"url": "https://opencollective.com/eslint"
}
},
"node_modules/@eslint/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==",
"dev": true,
"license": "MIT",
"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==",
"dev": true,
"license": "MIT",
"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==",
"dev": true,
"license": "ISC",
"dependencies": {
"brace-expansion": "^1.1.7"
},
"engines": {
"node": "*"
}
},
"node_modules/@eslint/js": {
"version": "9.39.2",
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.39.2.tgz",
"integrity": "sha512-q1mjIoW1VX4IvSocvM/vbTiveKC4k9eLrajNEuSsmjymSDEbpGddtpfOoN7YGAqBK3NG+uqo8ia4PDTt8buCYA==",
"dev": true,
"license": "MIT",
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
},
"funding": {
"url": "https://eslint.org/donate"
}
},
"node_modules/@eslint/object-schema": {
"version": "2.1.7",
"resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.7.tgz",
"integrity": "sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==",
"dev": true,
"license": "Apache-2.0",
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
}
},
"node_modules/@eslint/plugin-kit": {
"version": "0.4.1",
"resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.4.1.tgz",
"integrity": "sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@eslint/core": "^0.17.0",
"levn": "^0.4.1"
},
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
}
},
"node_modules/@humanfs/core": {
"version": "0.19.1",
"resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz",
"integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==",
"dev": true,
"license": "Apache-2.0",
"engines": {
"node": ">=18.18.0"
}
},
"node_modules/@humanfs/node": {
"version": "0.16.7",
"resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.7.tgz",
"integrity": "sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@humanfs/core": "^0.19.1",
"@humanwhocodes/retry": "^0.4.0"
},
"engines": {
"node": ">=18.18.0"
}
},
"node_modules/@humanwhocodes/module-importer": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
"integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
"dev": true,
"license": "Apache-2.0",
"engines": {
"node": ">=12.22"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/nzakas"
}
},
"node_modules/@humanwhocodes/retry": {
"version": "0.4.3",
"resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.3.tgz",
"integrity": "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==",
"dev": true,
"license": "Apache-2.0",
"engines": {
"node": ">=18.18"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/nzakas"
}
},
"node_modules/@nodelib/fs.scandir": {
"version": "2.1.5",
"resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
"integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
"dev": true,
"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/@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,
"license": "MIT",
"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==",
"license": "MIT",
"dependencies": {
"@rbxts-js/collections": "^1.2.3-ts.1"
}
},
"node_modules/@rbxts-js/chalk-lua": {
"version": "0.2.2-ts.2",
"resolved": "https://registry.npmjs.org/@rbxts-js/chalk-lua/-/chalk-lua-0.2.2-ts.2.tgz",
"integrity": "sha512-UCMkX/ufijrQyEt20SJ/Qxe4vLMEwimVYty2l3kkly0InTC0SRFPRUIarZWwyff8z6LoHB479UUX6wfACm/CXA==",
"dev": true,
"license": "MIT"
},
"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==",
"license": "MIT",
"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==",
"license": "MIT",
"dependencies": {
"@rbxts-js/collections": "^1.2.3-ts.1"
}
},
"node_modules/@rbxts-js/diff-sequences": {
"version": "3.13.3-ts.3",
"resolved": "https://registry.npmjs.org/@rbxts-js/diff-sequences/-/diff-sequences-3.13.3-ts.3.tgz",
"integrity": "sha512-rYbBZrtoymMKZcP9qawJ86a1o/VJOvQTLir40Hzjk+l7jsgiLr+bNnn3ryIGqWR61FTLlZFHMcf+DSHU4mQA0Q==",
"dev": true,
"license": "MIT",
"dependencies": {
"@rbxts-js/luau-polyfill": "1.2.3-ts.1"
}
},
"node_modules/@rbxts-js/emittery": {
"version": "3.13.3-ts.3",
"resolved": "https://registry.npmjs.org/@rbxts-js/emittery/-/emittery-3.13.3-ts.3.tgz",
"integrity": "sha512-WDHiwHC3T2x/qPDq/O4Ml8d2ZZnSjABzye+Vc3ksVdiqC/BxOg7GghEI8PV0R9zoC1XagrQPX8DF1PMeD8AMOQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@rbxts-js/luau-polyfill": "1.2.3-ts.1",
"@rbxts-js/roblox-lua-promise": "3.5.0-ts.2"
}
},
"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==",
"license": "MIT"
},
"node_modules/@rbxts-js/expect": {
"version": "3.13.3-ts.3",
"resolved": "https://registry.npmjs.org/@rbxts-js/expect/-/expect-3.13.3-ts.3.tgz",
"integrity": "sha512-OSqlZ/XZMuR1BwHXL/QPQjMKYjokMXkQQ3E2jTA91dd1OtWj5zp3+6sXj5z+BThldES0YKC7GVeK/E7bLfxGZA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@rbxts-js/jest-get-type": "^3.13.3-ts.3",
"@rbxts-js/jest-matcher-utils": "^3.13.3-ts.3",
"@rbxts-js/jest-message-util": "3.13.3-ts.3",
"@rbxts-js/jest-snapshot": "^3.13.3-ts.3",
"@rbxts-js/jest-util": "^3.13.3-ts.3",
"@rbxts-js/luau-polyfill": "1.2.3-ts.1",
"@rbxts-js/luau-regexp": "0.2.2-ts.1",
"@rbxts-js/roblox-lua-promise": "3.5.0-ts.2",
"@rbxts-js/roblox-shared": "^3.13.3-ts.3"
}
},
"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==",
"license": "MIT"
},
"node_modules/@rbxts-js/jest": {
"version": "3.13.3-ts.3",
"resolved": "https://registry.npmjs.org/@rbxts-js/jest/-/jest-3.13.3-ts.3.tgz",
"integrity": "sha512-8zB3G7WbWuLXKZGKgvoS2XQ3zJhK1xvDrdSPDfo0J2yW4dHbge4609kjQWcDH1gjMrueBIk/YZl72PSVcJAdzQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@rbxts-js/jest-core": "3.13.3-ts.3"
}
},
"node_modules/@rbxts-js/jest-circus": {
"version": "3.13.3-ts.3",
"resolved": "https://registry.npmjs.org/@rbxts-js/jest-circus/-/jest-circus-3.13.3-ts.3.tgz",
"integrity": "sha512-8uGcRoEAYHd2BtW3RhkwFjRxtzb3Hni4ZYSoxp0pXhQbP5RE6W7o64du0Pd+8y/iK93OIQ1ebn38gsrtBOANOQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@rbxts-js/chalk-lua": "0.2.2-ts.2",
"@rbxts-js/expect": "^3.13.3-ts.3",
"@rbxts-js/jest-each": "^3.13.3-ts.3",
"@rbxts-js/jest-environment": "^3.13.3-ts.3",
"@rbxts-js/jest-matcher-utils": "^3.13.3-ts.3",
"@rbxts-js/jest-message-util": "^3.13.3-ts.3",
"@rbxts-js/jest-runtime": "^3.13.3-ts.3",
"@rbxts-js/jest-snapshot": "^3.13.3-ts.3",
"@rbxts-js/jest-test-result": "^3.13.3-ts.3",
"@rbxts-js/jest-types": "^3.13.3-ts.3",
"@rbxts-js/jest-util": "^3.13.3-ts.3",
"@rbxts-js/luau-polyfill": "1.2.3-ts.1",
"@rbxts-js/luau-regexp": "0.2.2-ts.1",
"@rbxts-js/pretty-format": "^3.13.3-ts.3",
"@rbxts-js/roblox-lua-promise": "3.5.0-ts.2",
"@rbxts-js/roblox-shared": "^3.13.3-ts.3",
"@rbxts-js/throat": "^3.13.3-ts.3"
}
},
"node_modules/@rbxts-js/jest-config": {
"version": "3.13.3-ts.3",
"resolved": "https://registry.npmjs.org/@rbxts-js/jest-config/-/jest-config-3.13.3-ts.3.tgz",
"integrity": "sha512-rhtgGZDj0kT6bsUopBL+REUrPk7YCt6+lcTOXgjbYWGMM6sI5NdEuXVeyw+/TrNziIPWodYVlortCslPhGJDFQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@rbxts-js/chalk-lua": "0.2.2-ts.2",
"@rbxts-js/jest-environment-luau": "^3.13.3-ts.3",
"@rbxts-js/jest-get-type": "^3.13.3-ts.3",
"@rbxts-js/jest-types": "^3.13.3-ts.3",
"@rbxts-js/jest-util": "^3.13.3-ts.3",
"@rbxts-js/jest-validate": "^3.13.3-ts.3",
"@rbxts-js/luau-polyfill": "1.2.3-ts.1",
"@rbxts-js/luau-regexp": "0.2.2-ts.1",
"@rbxts-js/roblox-lua-promise": "3.5.0-ts.2",
"@rbxts-js/roblox-shared": "^3.13.3-ts.3"
}
},
"node_modules/@rbxts-js/jest-console": {
"version": "3.13.3-ts.3",
"resolved": "https://registry.npmjs.org/@rbxts-js/jest-console/-/jest-console-3.13.3-ts.3.tgz",
"integrity": "sha512-RjesqK+M0sMixSgCgzaZ52PjBb2cNZK0PpstwMyZ0c8eQHdyYEOEz87yjOy1OQkz8rCV1rmmPq0lb3MCAVQxfA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@rbxts-js/chalk-lua": "0.2.2-ts.2",
"@rbxts-js/jest-each": "^3.13.3-ts.3",
"@rbxts-js/jest-message-util": "^3.13.3-ts.3",
"@rbxts-js/jest-mock": "^3.13.3-ts.3",
"@rbxts-js/jest-types": "^3.13.3-ts.3",
"@rbxts-js/jest-util": "^3.13.3-ts.3",
"@rbxts-js/luau-polyfill": "1.2.3-ts.1",
"@rbxts-js/roblox-shared": "^3.13.3-ts.3"
}
},
"node_modules/@rbxts-js/jest-core": {
"version": "3.13.3-ts.3",
"resolved": "https://registry.npmjs.org/@rbxts-js/jest-core/-/jest-core-3.13.3-ts.3.tgz",
"integrity": "sha512-WppXwA1lp3Z8teHUo8LbC0Vrnbt4Txcx+vrrjZ/yRX5bYoMQfV5s8UQLOXqFyNvbANPBoQq8buBZdV9xK1E1MA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@rbxts-js/chalk-lua": "0.2.2-ts.2",
"@rbxts-js/emittery": "^3.13.3-ts.3",
"@rbxts-js/jest-config": "^3.13.3-ts.3",
"@rbxts-js/jest-console": "^3.13.3-ts.3",
"@rbxts-js/jest-message-util": "^3.13.3-ts.3",
"@rbxts-js/jest-reporters": "^3.13.3-ts.3",
"@rbxts-js/jest-runner": "^3.13.3-ts.3",
"@rbxts-js/jest-runtime": "^3.13.3-ts.3",
"@rbxts-js/jest-snapshot": "^3.13.3-ts.3",
"@rbxts-js/jest-test-result": "^3.13.3-ts.3",
"@rbxts-js/jest-types": "^3.13.3-ts.3",
"@rbxts-js/jest-util": "^3.13.3-ts.3",
"@rbxts-js/luau-polyfill": "1.2.3-ts.1",
"@rbxts-js/luau-regexp": "0.2.2-ts.1",
"@rbxts-js/pretty-format": "^3.13.3-ts.3",
"@rbxts-js/roblox-lua-promise": "3.5.0-ts.2",
"@rbxts-js/roblox-shared": "^3.13.3-ts.3"
}
},
"node_modules/@rbxts-js/jest-diff": {
"version": "3.13.3-ts.3",
"resolved": "https://registry.npmjs.org/@rbxts-js/jest-diff/-/jest-diff-3.13.3-ts.3.tgz",
"integrity": "sha512-btqG8C6dUZmGYNWE3v3gzqaoqZuJc2nMQw/rpWNtDpCabhIwypMiz8YOnKSRWpJYdrS2kr0C+MDpVotdg8HKaQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@rbxts-js/chalk-lua": "0.2.2-ts.2",
"@rbxts-js/diff-sequences": "^3.13.3-ts.3",
"@rbxts-js/jest-get-type": "^3.13.3-ts.3",
"@rbxts-js/jest-types": "^3.13.3-ts.3",
"@rbxts-js/luau-polyfill": "1.2.3-ts.1",
"@rbxts-js/pretty-format": "^3.13.3-ts.3"
}
},
"node_modules/@rbxts-js/jest-each": {
"version": "3.13.3-ts.3",
"resolved": "https://registry.npmjs.org/@rbxts-js/jest-each/-/jest-each-3.13.3-ts.3.tgz",
"integrity": "sha512-Y2gra3EpR9zT/rB/RVT06K6r8E18Uos99fnw8HfitBY5ZzobBLLN7C9So69+Bk3rH2yTBywN0ARcZKULst/9Zw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@rbxts-js/chalk-lua": "0.2.2-ts.2",
"@rbxts-js/jest-get-type": "^3.13.3-ts.3",
"@rbxts-js/jest-types": "^3.13.3-ts.3",
"@rbxts-js/jest-util": "^3.13.3-ts.3",
"@rbxts-js/luau-polyfill": "1.2.3-ts.1",
"@rbxts-js/luau-regexp": "0.2.2-ts.1",
"@rbxts-js/pretty-format": "^3.13.3-ts.3"
}
},
"node_modules/@rbxts-js/jest-environment": {
"version": "3.13.3-ts.3",
"resolved": "https://registry.npmjs.org/@rbxts-js/jest-environment/-/jest-environment-3.13.3-ts.3.tgz",
"integrity": "sha512-NQDvJx93VqqYyzw81YwnnNKd9bVRzYM/4z6evpOFmuwcWT37FntQVHty74mWpe/GyuvgS0RYwVr5+eK0DuzDTQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@rbxts-js/jest-fake-timers": "^3.13.3-ts.3",
"@rbxts-js/jest-mock": "^3.13.3-ts.3",
"@rbxts-js/jest-mock-genv": "^3.13.3-ts.3",
"@rbxts-js/jest-types": "^3.13.3-ts.3",
"@rbxts-js/luau-polyfill": "1.2.3-ts.1"
}
},
"node_modules/@rbxts-js/jest-environment-luau": {
"version": "3.13.3-ts.3",
"resolved": "https://registry.npmjs.org/@rbxts-js/jest-environment-luau/-/jest-environment-luau-3.13.3-ts.3.tgz",
"integrity": "sha512-83pYuwuRrmB9Sepu1SHcvohyBE5WWtsMrVSPO6WnGwUEc1qUikEXq0MHU88/JXAvpggs3qFovKxX2bjNPgAfAQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@rbxts-js/jest-environment": "^3.13.3-ts.3",
"@rbxts-js/jest-fake-timers": "^3.13.3-ts.3",
"@rbxts-js/jest-mock": "^3.13.3-ts.3",
"@rbxts-js/jest-types": "^3.13.3-ts.3",
"@rbxts-js/luau-polyfill": "1.2.3-ts.1",
"@rbxts-js/roblox-lua-promise": "3.5.0-ts.2"
}
},
"node_modules/@rbxts-js/jest-fake-timers": {
"version": "3.13.3-ts.3",
"resolved": "https://registry.npmjs.org/@rbxts-js/jest-fake-timers/-/jest-fake-timers-3.13.3-ts.3.tgz",
"integrity": "sha512-1VCYyhZDG1u2k+MRLXYnsPOQ03pyF8Alf4nPedqlSkK1ppw5PTJE5G5Amhh59aTYKc88jHsgOAsmVts8GoCAfQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@rbxts-js/jest-get-type": "^3.13.3-ts.3",
"@rbxts-js/jest-mock": "^3.13.3-ts.3",
"@rbxts-js/luau-polyfill": "1.2.3-ts.1"
}
},
"node_modules/@rbxts-js/jest-get-type": {
"version": "3.13.3-ts.3",
"resolved": "https://registry.npmjs.org/@rbxts-js/jest-get-type/-/jest-get-type-3.13.3-ts.3.tgz",
"integrity": "sha512-Ny3K+6uRW5daj+bZf6xy2gFd6lv38r8q9maDuBClPPbZOD9tqEwvkwv/9Ofgm7eIGg+ap/HHCD5fsMQroXCgcw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@rbxts-js/luau-polyfill": "1.2.3-ts.1",
"@rbxts-js/luau-regexp": "0.2.2-ts.1"
}
},
"node_modules/@rbxts-js/jest-globals": {
"version": "3.13.3-ts.3",
"resolved": "https://registry.npmjs.org/@rbxts-js/jest-globals/-/jest-globals-3.13.3-ts.3.tgz",
"integrity": "sha512-2A8y10qFtr76RRUW/o7vEooDnn7pg6qk2IyJ8gOLJDlqohAIulEVLMPyOOeATqLauJ8YrW/nXvKfOJLmJBbrLQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@rbxts-js/expect": "^3.13.3-ts.3",
"@rbxts-js/jest-environment": "^3.13.3-ts.3",
"@rbxts-js/jest-types": "^3.13.3-ts.3",
"@rbxts-js/luau-polyfill": "1.2.3-ts.1"
}
},
"node_modules/@rbxts-js/jest-matcher-utils": {
"version": "3.13.3-ts.3",
"resolved": "https://registry.npmjs.org/@rbxts-js/jest-matcher-utils/-/jest-matcher-utils-3.13.3-ts.3.tgz",
"integrity": "sha512-sYu38TNcGeprncpE8RGcFOvF3BZ4fJrTOYyA62LS1qylJ2gJPF/Ggc04sjRuMUPSU/WEF4zYSfsPzm0Q2z/1oA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@rbxts-js/chalk-lua": "0.2.2-ts.2",
"@rbxts-js/jest-diff": "^3.13.3-ts.3",
"@rbxts-js/jest-get-type": "^3.13.3-ts.3",
"@rbxts-js/luau-polyfill": "1.2.3-ts.1",
"@rbxts-js/luau-regexp": "0.2.2-ts.1",
"@rbxts-js/pretty-format": "^3.13.3-ts.3"
}
},
"node_modules/@rbxts-js/jest-message-util": {
"version": "3.13.3-ts.3",
"resolved": "https://registry.npmjs.org/@rbxts-js/jest-message-util/-/jest-message-util-3.13.3-ts.3.tgz",
"integrity": "sha512-fv0ChOhfL+Yu/pwFIZEMyVyX/77WWXd6ug5nExoiGRQRyX1MUlnqtrh1VsPc1S4058AMqMtoRea5kLE7N+yA+A==",
"dev": true,
"license": "MIT",
"dependencies": {
"@rbxts-js/chalk-lua": "0.2.2-ts.2",
"@rbxts-js/jest-types": "^3.13.3-ts.3",
"@rbxts-js/luau-polyfill": "1.2.3-ts.1",
"@rbxts-js/luau-regexp": "0.2.2-ts.1",
"@rbxts-js/pretty-format": "^3.13.3-ts.3",
"@rbxts-js/roblox-shared": "^3.13.3-ts.3"
}
},
"node_modules/@rbxts-js/jest-mock": {
"version": "3.13.3-ts.3",
"resolved": "https://registry.npmjs.org/@rbxts-js/jest-mock/-/jest-mock-3.13.3-ts.3.tgz",
"integrity": "sha512-CfcP5HrHP0xw6Q+hUPaqz0Lfi8lhvNcLAidu/a1f8W5zv2d1fYXfN8eHCK8z3/OMgJud7yI7QptH0/zGex5mKA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@rbxts-js/jest-mock-genv": "^3.13.3-ts.3",
"@rbxts-js/jest-mock-rbx": "^3.13.3-ts.3",
"@rbxts-js/jest-types": "^3.13.3-ts.3",
"@rbxts-js/luau-polyfill": "1.2.3-ts.1"
}
},
"node_modules/@rbxts-js/jest-mock-genv": {
"version": "3.13.3-ts.3",
"resolved": "https://registry.npmjs.org/@rbxts-js/jest-mock-genv/-/jest-mock-genv-3.13.3-ts.3.tgz",
"integrity": "sha512-bZJpvCE0uoT61xPuanIxcfsaKlGM62Q5RSADeSSZCY/jIrhuQz4DN0DT8MvrWqpQNmHmiHgCUaFDAC8sY19Eng==",
"dev": true,
"license": "MIT",
"dependencies": {
"@rbxts-js/luau-polyfill": "1.2.3-ts.1"
}
},
"node_modules/@rbxts-js/jest-mock-rbx": {
"version": "3.13.3-ts.3",
"resolved": "https://registry.npmjs.org/@rbxts-js/jest-mock-rbx/-/jest-mock-rbx-3.13.3-ts.3.tgz",
"integrity": "sha512-iG2s3FUQR1PQES2JtI0iffPlJWc/79hLFCpuUhU8dQr58jauMLQfdCA2U58vG2I5HjhMqOD8knTEf2nea/CYBQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@rbxts-js/jest-types": "^3.13.3-ts.3",
"@rbxts-js/luau-polyfill": "1.2.3-ts.1"
}
},
"node_modules/@rbxts-js/jest-reporters": {
"version": "3.13.3-ts.3",
"resolved": "https://registry.npmjs.org/@rbxts-js/jest-reporters/-/jest-reporters-3.13.3-ts.3.tgz",
"integrity": "sha512-HT7Ij/IKQ5HusmXD3Z38lTTaqLVYGmKqDrh6RVbZFa5Bdzi19ZYJSEbuBQ0tAe3VsCJQZ/33hnCbIq4y3WJmng==",
"dev": true,
"license": "MIT",
"dependencies": {
"@rbxts-js/chalk-lua": "0.2.2-ts.2",
"@rbxts-js/jest-console": "^3.13.3-ts.3",
"@rbxts-js/jest-message-util": "^3.13.3-ts.3",
"@rbxts-js/jest-mock": "^3.13.3-ts.3",
"@rbxts-js/jest-test-result": "^3.13.3-ts.3",
"@rbxts-js/jest-types": "^3.13.3-ts.3",
"@rbxts-js/jest-util": "^3.13.3-ts.3",
"@rbxts-js/luau-polyfill": "1.2.3-ts.1",
"@rbxts-js/luau-regexp": "0.2.2-ts.1",
"@rbxts-js/path": "^3.13.3-ts.3",
"@rbxts-js/roblox-shared": "^3.13.3-ts.3",
"@rbxts-js/test-utils": "^3.13.3-ts.3"
}
},
"node_modules/@rbxts-js/jest-runner": {
"version": "3.13.3-ts.3",
"resolved": "https://registry.npmjs.org/@rbxts-js/jest-runner/-/jest-runner-3.13.3-ts.3.tgz",
"integrity": "sha512-CHkQveuJfv3ZtnX5+5fzB1BzIfvVFxwHQdKMJoUUklxxgWYxzbbwV70+KfubFaFx5pqT3+WBtClji4ilyB6/eQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@rbxts-js/chalk-lua": "0.2.2-ts.2",
"@rbxts-js/emittery": "^3.13.3-ts.3",
"@rbxts-js/jest-circus": "^3.13.3-ts.3",
"@rbxts-js/jest-console": "^3.13.3-ts.3",
"@rbxts-js/jest-environment": "^3.13.3-ts.3",
"@rbxts-js/jest-message-util": "^3.13.3-ts.3",
"@rbxts-js/jest-runtime": "^3.13.3-ts.3",
"@rbxts-js/jest-test-result": "^3.13.3-ts.3",
"@rbxts-js/jest-types": "^3.13.3-ts.3",
"@rbxts-js/jest-util": "^3.13.3-ts.3",
"@rbxts-js/luau-polyfill": "1.2.3-ts.1",
"@rbxts-js/roblox-lua-promise": "3.5.0-ts.2",
"@rbxts-js/roblox-shared": "^3.13.3-ts.3",
"@rbxts-js/throat": "^3.13.3-ts.3"
}
},
"node_modules/@rbxts-js/jest-runtime": {
"version": "3.13.3-ts.3",
"resolved": "https://registry.npmjs.org/@rbxts-js/jest-runtime/-/jest-runtime-3.13.3-ts.3.tgz",
"integrity": "sha512-U0V0Wj8gkcBgW8/4DmKtJbhPojzsBn+h8qSFyCyMLLoXp3V6OqR4MPZ+yl/PIhO/QcbKV0PKjeahaAJaqzhjCA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@rbxts-js/expect": "^3.13.3-ts.3",
"@rbxts-js/jest-fake-timers": "^3.13.3-ts.3",
"@rbxts-js/jest-mock": "^3.13.3-ts.3",
"@rbxts-js/jest-mock-genv": "^3.13.3-ts.3",
"@rbxts-js/jest-snapshot": "^3.13.3-ts.3",
"@rbxts-js/jest-types": "^3.13.3-ts.3",
"@rbxts-js/luau-polyfill": "1.2.3-ts.1",
"@rbxts-js/roblox-lua-promise": "3.5.0-ts.2"
}
},
"node_modules/@rbxts-js/jest-snapshot": {
"version": "3.13.3-ts.3",
"resolved": "https://registry.npmjs.org/@rbxts-js/jest-snapshot/-/jest-snapshot-3.13.3-ts.3.tgz",
"integrity": "sha512-MyNd/AbUsmTPKueZe+OCZZ48tobuU7Ar6jauyXcjmNHGYxNXUuLs0K4sSWL4WBcvGmUxN4vR8g+Oq5cw4eXr5Q==",
"dev": true,
"license": "MIT",
"dependencies": {
"@rbxts-js/chalk-lua": "0.2.2-ts.2",
"@rbxts-js/jest-diff": "^3.13.3-ts.3",
"@rbxts-js/jest-get-type": "^3.13.3-ts.3",
"@rbxts-js/jest-matcher-utils": "^3.13.3-ts.3",
"@rbxts-js/jest-types": "^3.13.3-ts.3",
"@rbxts-js/luau-polyfill": "1.2.3-ts.1",
"@rbxts-js/pretty-format": "^3.13.3-ts.3",
"@rbxts-js/roblox-lua-promise": "3.5.0-ts.2",
"@rbxts-js/roblox-shared": "^3.13.3-ts.3"
}
},
"node_modules/@rbxts-js/jest-test-result": {
"version": "3.13.3-ts.3",
"resolved": "https://registry.npmjs.org/@rbxts-js/jest-test-result/-/jest-test-result-3.13.3-ts.3.tgz",
"integrity": "sha512-jDnXee8OAzNktDyMSuTuQH8m9rn6+/i6xkh8gLNyQwfKcwEiFfT7V2uc7/hILmVV+WF1LG4Xbhpcmci/xs7qeQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@rbxts-js/jest-types": "^3.13.3-ts.3",
"@rbxts-js/luau-polyfill": "1.2.3-ts.1"
}
},
"node_modules/@rbxts-js/jest-types": {
"version": "3.13.3-ts.3",
"resolved": "https://registry.npmjs.org/@rbxts-js/jest-types/-/jest-types-3.13.3-ts.3.tgz",
"integrity": "sha512-X0I/bKUCa4X79kJF4+DB2RfegDNauVyCDBKPNqPjRl7JJpV75Aqdgcof//93Qq+PytQznXumfVNNf4FiIR8OFA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@rbxts-js/luau-polyfill": "1.2.3-ts.1",
"@rbxts-js/luau-regexp": "0.2.2-ts.1"
}
},
"node_modules/@rbxts-js/jest-util": {
"version": "3.13.3-ts.3",
"resolved": "https://registry.npmjs.org/@rbxts-js/jest-util/-/jest-util-3.13.3-ts.3.tgz",
"integrity": "sha512-B6/Cq3jJmKJw3jfVAVlZd3sn+SuO2vdKEq+eLmPjOGUUbQ7qe5fe9yRDrkQHsZynOgEO4GIbL5KxrcsVj0xZ3Q==",
"dev": true,
"license": "MIT",
"dependencies": {
"@rbxts-js/chalk-lua": "0.2.2-ts.2",
"@rbxts-js/jest-types": "^3.13.3-ts.3",
"@rbxts-js/luau-polyfill": "1.2.3-ts.1",
"@rbxts-js/luau-regexp": "0.2.2-ts.1",
"@rbxts-js/picomatch-lua": "0.4.0-ts.1",
"@rbxts-js/roblox-lua-promise": "3.5.0-ts.2",
"@rbxts-js/roblox-shared": "^3.13.3-ts.3"
}
},
"node_modules/@rbxts-js/jest-validate": {
"version": "3.13.3-ts.3",
"resolved": "https://registry.npmjs.org/@rbxts-js/jest-validate/-/jest-validate-3.13.3-ts.3.tgz",
"integrity": "sha512-ZNPMcV8OBKneFtM10DpTVNpa0kMyRWRGlXtAf0Na9XbHrQeXJKiHifXJx+JU+fEl7pJi5msDNFaUmbh/9vJYUA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@rbxts-js/chalk-lua": "0.2.2-ts.2",
"@rbxts-js/luau-polyfill": "1.2.3-ts.1"
}
},
"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==",
"license": "MIT",
"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/luau-regexp": {
"version": "0.2.2-ts.1",
"resolved": "https://registry.npmjs.org/@rbxts-js/luau-regexp/-/luau-regexp-0.2.2-ts.1.tgz",
"integrity": "sha512-tsgz3LS0l5GE2vOb+A+bJj2mIwAQTKr43d2Ua7k142R4WKwG9WocOLHzwLKosqwoqLjKcmrya2TFGSFzmDZz5A==",
"dev": true,
"license": "MIT"
},
"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==",
"license": "MIT"
},
"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==",
"license": "MIT"
},
"node_modules/@rbxts-js/path": {
"version": "3.13.3-ts.3",
"resolved": "https://registry.npmjs.org/@rbxts-js/path/-/path-3.13.3-ts.3.tgz",
"integrity": "sha512-d9ctZ21LMqv+97RdNF+0ltPDWxrcOBPTTd0nfuBXL6dJ4h+5y69BAo6A0RfxIQ6X59tbRdRZBOSY8Wn4KFqTUA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@rbxts-js/luau-polyfill": "1.2.3-ts.1"
}
},
"node_modules/@rbxts-js/picomatch-lua": {
"version": "0.4.0-ts.1",
"resolved": "https://registry.npmjs.org/@rbxts-js/picomatch-lua/-/picomatch-lua-0.4.0-ts.1.tgz",
"integrity": "sha512-QqALRJ5FPxQTiJgkpElHtxnQOKgtAXlTLxM4vSt3m6Zw7mGQaHyOUSXfLX+A2TZ6jTPFQVmxH+Gax2cRjBZgAw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@rbxts-js/luau-polyfill": "^1.2.3-ts.1",
"@rbxts-js/luau-regexp": "^0.2.2-ts.1",
"@rbxts-js/roblox-lua-promise": "^3.5.0-ts.2"
}
},
"node_modules/@rbxts-js/pretty-format": {
"version": "3.13.3-ts.3",
"resolved": "https://registry.npmjs.org/@rbxts-js/pretty-format/-/pretty-format-3.13.3-ts.3.tgz",
"integrity": "sha512-uH6y4fYf7C4GXWBd3wIlR7GzT/sZgyl2yNBpewrBXp4rdI7J9RMhTuGVN1ZqXrzlqv1E0e9+oA5AYVRiJWLwpA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@rbxts-js/chalk-lua": "0.2.2-ts.2",
"@rbxts-js/jest-get-type": "^3.13.3-ts.3",
"@rbxts-js/luau-polyfill": "1.2.3-ts.1",
"@rbxts-js/luau-regexp": "0.2.2-ts.1",
"@rbxts-js/react-is": "17.3.7-ts.1",
"@rbxts-js/roblox-shared": "^3.13.3-ts.3"
}
},
"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==",
"license": "MIT",
"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==",
"license": "MIT",
"dependencies": {
"@rbxts-js/safe-flags": "^17.3.7-ts.1"
}
},
"node_modules/@rbxts-js/react-is": {
"version": "17.3.7-ts.1",
"resolved": "https://registry.npmjs.org/@rbxts-js/react-is/-/react-is-17.3.7-ts.1.tgz",
"integrity": "sha512-jTGn3lJWCrFhQ2kMogQXb430+JMSZhsD0VgM1HDYDGwmQpNQhnal5/ERa4Fa0B40HrZFvUbDvZsDX2tB6mqO+w==",
"dev": true,
"license": "MIT",
"dependencies": {
"@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/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==",
"license": "MIT",
"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==",
"license": "MIT",
"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==",
"license": "MIT"
},
"node_modules/@rbxts-js/roblox-shared": {
"version": "3.13.3-ts.3",
"resolved": "https://registry.npmjs.org/@rbxts-js/roblox-shared/-/roblox-shared-3.13.3-ts.3.tgz",
"integrity": "sha512-DFI6StnUVQXvVXFrpgUU2DcW5/K61WB9/3waz/zXKLxYSJtGdPc2ghdRRpFdYBde6XmgmDy7X/267RGDcEsu1Q==",
"dev": true,
"license": "MIT",
"dependencies": {
"@rbxts-js/jest-get-type": "^3.13.3-ts.3",
"@rbxts-js/jest-mock": "^3.13.3-ts.3",
"@rbxts-js/luau-polyfill": "1.2.3-ts.1"
}
},
"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==",
"license": "MIT"
},
"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==",
"license": "MIT",
"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==",
"license": "MIT",
"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==",
"license": "MIT",
"dependencies": {
"@rbxts-js/es7-types": "^1.2.3-ts.1",
"@rbxts-js/number": "^1.2.3-ts.1"
}
},
"node_modules/@rbxts-js/symbol-luau": {