-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.lock
4361 lines (4361 loc) · 164 KB
/
deno.lock
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
{
"version": "4",
"specifiers": {
"npm:@eslint-community/eslint-plugin-eslint-comments@^4.4.0": "4.4.0_eslint@9.13.0",
"npm:@eslint-react/eslint-plugin@^1.15.0": "1.15.0_eslint@9.13.0",
"npm:@stylistic/eslint-plugin@^2.9.0": "2.9.0_eslint@9.13.0",
"npm:@typescript-eslint/parser@^8.11.0": "8.11.0_eslint@9.13.0",
"npm:eslint-plugin-depend@0.11": "0.11.0",
"npm:eslint-plugin-disable-autofix@^5.0.1": "5.0.1_eslint@9.13.0",
"npm:eslint-plugin-func-params-args@4": "4.0.0_eslint@8.57.1",
"npm:eslint-plugin-import-x@^4.3.1": "4.3.1_eslint@9.13.0",
"npm:eslint-plugin-jsdoc@^50.4.3": "50.4.3_eslint@9.13.0",
"npm:eslint-plugin-no-secrets@^1.0.2": "1.0.2_eslint@9.13.0",
"npm:eslint-plugin-perfectionist@^3.9.1": "3.9.1_eslint@9.13.0",
"npm:eslint-plugin-promise@^7.1.0": "7.1.0_eslint@9.13.0",
"npm:eslint-plugin-react@^7.35.0": "7.37.1_eslint@9.13.0",
"npm:eslint-plugin-redos@^4.4.5": "4.4.5_eslint@9.13.0",
"npm:eslint-plugin-regexp@^2.6.0": "2.6.0_eslint@9.13.0",
"npm:eslint-plugin-security@^3.0.1": "3.0.1",
"npm:eslint-plugin-sonarjs@^2.0.4": "2.0.4_eslint@9.13.0_@babel+core@7.25.2_typescript@5.6.2",
"npm:eslint-plugin-tailwindcss@^3.17.5": "3.17.5_tailwindcss@3.4.14__postcss@8.4.47",
"npm:eslint-plugin-unicorn@56": "56.0.0_eslint@9.13.0",
"npm:eslint@*": "9.13.0",
"npm:eslint@^9.13.0": "9.13.0",
"npm:globals@^15.11.0": "15.11.0"
},
"npm": {
"@alloc/quick-lru@5.2.0": {
"integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw=="
},
"@ampproject/remapping@2.3.0": {
"integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==",
"dependencies": [
"@jridgewell/gen-mapping",
"@jridgewell/trace-mapping"
]
},
"@babel/code-frame@7.25.7": {
"integrity": "sha512-0xZJFNE5XMpENsgfHYTw8FbX4kv53mFLn2i3XPoq69LyhYSCBJtitaHx9QnsVTrsogI4Z3+HtEfZ2/GFPOtf5g==",
"dependencies": [
"@babel/highlight",
"picocolors"
]
},
"@babel/compat-data@7.25.8": {
"integrity": "sha512-ZsysZyXY4Tlx+Q53XdnOFmqwfB9QDTHYxaZYajWRoBLuLEAwI2UIbtxOjWh/cFaa9IKUlcB+DDuoskLuKu56JA=="
},
"@babel/core@7.25.2": {
"integrity": "sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==",
"dependencies": [
"@ampproject/remapping",
"@babel/code-frame",
"@babel/generator",
"@babel/helper-compilation-targets",
"@babel/helper-module-transforms",
"@babel/helpers",
"@babel/parser",
"@babel/template",
"@babel/traverse",
"@babel/types",
"convert-source-map",
"debug@4.3.7",
"gensync",
"json5@2.2.3",
"semver@6.3.1"
]
},
"@babel/eslint-parser@7.25.1_@babel+core@7.25.2_eslint@9.13.0": {
"integrity": "sha512-Y956ghgTT4j7rKesabkh5WeqgSFZVFwaPR0IWFm7KFHFmmJ4afbG49SmfW4S+GyRPx0Dy5jxEWA5t0rpxfElWg==",
"dependencies": [
"@babel/core",
"@nicolo-ribaudo/eslint-scope-5-internals",
"eslint@9.13.0",
"eslint-visitor-keys@2.1.0",
"semver@6.3.1"
]
},
"@babel/generator@7.25.7": {
"integrity": "sha512-5Dqpl5fyV9pIAD62yK9P7fcA768uVPUyrQmqpqstHWgMma4feF1x/oFysBCVZLY5wJ2GkMUCdsNDnGZrPoR6rA==",
"dependencies": [
"@babel/types",
"@jridgewell/gen-mapping",
"@jridgewell/trace-mapping",
"jsesc@3.0.2"
]
},
"@babel/helper-annotate-as-pure@7.25.7": {
"integrity": "sha512-4xwU8StnqnlIhhioZf1tqnVWeQ9pvH/ujS8hRfw/WOza+/a+1qv69BWNy+oY231maTCWgKWhfBU7kDpsds6zAA==",
"dependencies": [
"@babel/types"
]
},
"@babel/helper-builder-binary-assignment-operator-visitor@7.25.7": {
"integrity": "sha512-12xfNeKNH7jubQNm7PAkzlLwEmCs1tfuX3UjIw6vP6QXi+leKh6+LyC/+Ed4EIQermwd58wsyh070yjDHFlNGg==",
"dependencies": [
"@babel/traverse",
"@babel/types"
]
},
"@babel/helper-compilation-targets@7.25.7": {
"integrity": "sha512-DniTEax0sv6isaw6qSQSfV4gVRNtw2rte8HHM45t9ZR0xILaufBRNkpMifCRiAPyvL4ACD6v0gfCwCmtOQaV4A==",
"dependencies": [
"@babel/compat-data",
"@babel/helper-validator-option",
"browserslist",
"lru-cache@5.1.1",
"semver@6.3.1"
]
},
"@babel/helper-create-class-features-plugin@7.25.7_@babel+core@7.25.2": {
"integrity": "sha512-bD4WQhbkx80mAyj/WCm4ZHcF4rDxkoLFO6ph8/5/mQ3z4vAzltQXAmbc7GvVJx5H+lk5Mi5EmbTeox5nMGCsbw==",
"dependencies": [
"@babel/core",
"@babel/helper-annotate-as-pure",
"@babel/helper-member-expression-to-functions",
"@babel/helper-optimise-call-expression",
"@babel/helper-replace-supers",
"@babel/helper-skip-transparent-expression-wrappers",
"@babel/traverse",
"semver@6.3.1"
]
},
"@babel/helper-create-regexp-features-plugin@7.25.7_@babel+core@7.25.2": {
"integrity": "sha512-byHhumTj/X47wJ6C6eLpK7wW/WBEcnUeb7D0FNc/jFQnQVw7DOso3Zz5u9x/zLrFVkHa89ZGDbkAa1D54NdrCQ==",
"dependencies": [
"@babel/core",
"@babel/helper-annotate-as-pure",
"regexpu-core",
"semver@6.3.1"
]
},
"@babel/helper-define-polyfill-provider@0.6.2_@babel+core@7.25.2": {
"integrity": "sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==",
"dependencies": [
"@babel/core",
"@babel/helper-compilation-targets",
"@babel/helper-plugin-utils",
"debug@4.3.7",
"lodash.debounce",
"resolve@1.22.8"
]
},
"@babel/helper-member-expression-to-functions@7.25.7": {
"integrity": "sha512-O31Ssjd5K6lPbTX9AAYpSKrZmLeagt9uwschJd+Ixo6QiRyfpvgtVQp8qrDR9UNFjZ8+DO34ZkdrN+BnPXemeA==",
"dependencies": [
"@babel/traverse",
"@babel/types"
]
},
"@babel/helper-module-imports@7.25.7": {
"integrity": "sha512-o0xCgpNmRohmnoWKQ0Ij8IdddjyBFE4T2kagL/x6M3+4zUgc+4qTOUBoNe4XxDskt1HPKO007ZPiMgLDq2s7Kw==",
"dependencies": [
"@babel/traverse",
"@babel/types"
]
},
"@babel/helper-module-transforms@7.25.7_@babel+core@7.25.2": {
"integrity": "sha512-k/6f8dKG3yDz/qCwSM+RKovjMix563SLxQFo0UhRNo239SP6n9u5/eLtKD6EAjwta2JHJ49CsD8pms2HdNiMMQ==",
"dependencies": [
"@babel/core",
"@babel/helper-module-imports",
"@babel/helper-simple-access",
"@babel/helper-validator-identifier",
"@babel/traverse"
]
},
"@babel/helper-optimise-call-expression@7.25.7": {
"integrity": "sha512-VAwcwuYhv/AT+Vfr28c9y6SHzTan1ryqrydSTFGjU0uDJHw3uZ+PduI8plCLkRsDnqK2DMEDmwrOQRsK/Ykjng==",
"dependencies": [
"@babel/types"
]
},
"@babel/helper-plugin-utils@7.25.7": {
"integrity": "sha512-eaPZai0PiqCi09pPs3pAFfl/zYgGaE6IdXtYvmf0qlcDTd3WCtO7JWCcRd64e0EQrcYgiHibEZnOGsSY4QSgaw=="
},
"@babel/helper-remap-async-to-generator@7.25.7_@babel+core@7.25.2": {
"integrity": "sha512-kRGE89hLnPfcz6fTrlNU+uhgcwv0mBE4Gv3P9Ke9kLVJYpi4AMVVEElXvB5CabrPZW4nCM8P8UyyjrzCM0O2sw==",
"dependencies": [
"@babel/core",
"@babel/helper-annotate-as-pure",
"@babel/helper-wrap-function",
"@babel/traverse"
]
},
"@babel/helper-replace-supers@7.25.7_@babel+core@7.25.2": {
"integrity": "sha512-iy8JhqlUW9PtZkd4pHM96v6BdJ66Ba9yWSE4z0W4TvSZwLBPkyDsiIU3ENe4SmrzRBs76F7rQXTy1lYC49n6Lw==",
"dependencies": [
"@babel/core",
"@babel/helper-member-expression-to-functions",
"@babel/helper-optimise-call-expression",
"@babel/traverse"
]
},
"@babel/helper-simple-access@7.25.7": {
"integrity": "sha512-FPGAkJmyoChQeM+ruBGIDyrT2tKfZJO8NcxdC+CWNJi7N8/rZpSxK7yvBJ5O/nF1gfu5KzN7VKG3YVSLFfRSxQ==",
"dependencies": [
"@babel/traverse",
"@babel/types"
]
},
"@babel/helper-skip-transparent-expression-wrappers@7.25.7": {
"integrity": "sha512-pPbNbchZBkPMD50K0p3JGcFMNLVUCuU/ABybm/PGNj4JiHrpmNyqqCphBk4i19xXtNV0JhldQJJtbSW5aUvbyA==",
"dependencies": [
"@babel/traverse",
"@babel/types"
]
},
"@babel/helper-string-parser@7.25.7": {
"integrity": "sha512-CbkjYdsJNHFk8uqpEkpCvRs3YRp9tY6FmFY7wLMSYuGYkrdUi7r2lc4/wqsvlHoMznX3WJ9IP8giGPq68T/Y6g=="
},
"@babel/helper-validator-identifier@7.25.7": {
"integrity": "sha512-AM6TzwYqGChO45oiuPqwL2t20/HdMC1rTPAesnBCgPCSF1x3oN9MVUwQV2iyz4xqWrctwK5RNC8LV22kaQCNYg=="
},
"@babel/helper-validator-option@7.25.7": {
"integrity": "sha512-ytbPLsm+GjArDYXJ8Ydr1c/KJuutjF2besPNbIZnZ6MKUxi/uTA22t2ymmA4WFjZFpjiAMO0xuuJPqK2nvDVfQ=="
},
"@babel/helper-wrap-function@7.25.7": {
"integrity": "sha512-MA0roW3JF2bD1ptAaJnvcabsVlNQShUaThyJbCDD4bCp8NEgiFvpoqRI2YS22hHlc2thjO/fTg2ShLMC3jygAg==",
"dependencies": [
"@babel/template",
"@babel/traverse",
"@babel/types"
]
},
"@babel/helpers@7.25.7": {
"integrity": "sha512-Sv6pASx7Esm38KQpF/U/OXLwPPrdGHNKoeblRxgZRLXnAtnkEe4ptJPDtAZM7fBLadbc1Q07kQpSiGQ0Jg6tRA==",
"dependencies": [
"@babel/template",
"@babel/types"
]
},
"@babel/highlight@7.25.7": {
"integrity": "sha512-iYyACpW3iW8Fw+ZybQK+drQre+ns/tKpXbNESfrhNnPLIklLbXr7MYJ6gPEd0iETGLOK+SxMjVvKb/ffmk+FEw==",
"dependencies": [
"@babel/helper-validator-identifier",
"chalk@2.4.2",
"js-tokens",
"picocolors"
]
},
"@babel/parser@7.25.8": {
"integrity": "sha512-HcttkxzdPucv3nNFmfOOMfFf64KgdJVqm1KaCm25dPGMLElo9nsLvXeJECQg8UzPuBGLyTSA0ZzqCtDSzKTEoQ==",
"dependencies": [
"@babel/types"
]
},
"@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.7_@babel+core@7.25.2": {
"integrity": "sha512-UV9Lg53zyebzD1DwQoT9mzkEKa922LNUp5YkTJ6Uta0RbyXaQNUgcvSt7qIu1PpPzVb6rd10OVNTzkyBGeVmxQ==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils",
"@babel/traverse"
]
},
"@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.7_@babel+core@7.25.2": {
"integrity": "sha512-GDDWeVLNxRIkQTnJn2pDOM1pkCgYdSqPeT1a9vh9yIqu2uzzgw1zcqEb+IJOhy+dTBMlNdThrDIksr2o09qrrQ==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.7_@babel+core@7.25.2": {
"integrity": "sha512-wxyWg2RYaSUYgmd9MR0FyRGyeOMQE/Uzr1wzd/g5cf5bwi9A4v6HFdDm7y1MgDtod/fLOSTZY6jDgV0xU9d5bA==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.7_@babel+core@7.25.2": {
"integrity": "sha512-Xwg6tZpLxc4iQjorYsyGMyfJE7nP5MV8t/Ka58BgiA7Jw0fRqQNcANlLfdJ/yvBt9z9LD2We+BEkT7vLqZRWng==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils",
"@babel/helper-skip-transparent-expression-wrappers",
"@babel/plugin-transform-optional-chaining"
]
},
"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.7_@babel+core@7.25.2": {
"integrity": "sha512-UVATLMidXrnH+GMUIuxq55nejlj02HP7F5ETyBONzP6G87fPBogG4CH6kxrSrdIuAjdwNO9VzyaYsrZPscWUrw==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils",
"@babel/traverse"
]
},
"@babel/plugin-proposal-decorators@7.24.7_@babel+core@7.25.2": {
"integrity": "sha512-RL9GR0pUG5Kc8BUWLNDm2T5OpYwSX15r98I0IkgmRQTXuELq/OynH8xtMTMvTJFjXbMWFVTKtYkTaYQsuAwQlQ==",
"dependencies": [
"@babel/core",
"@babel/helper-create-class-features-plugin",
"@babel/helper-plugin-utils",
"@babel/plugin-syntax-decorators"
]
},
"@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2_@babel+core@7.25.2": {
"integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==",
"dependencies": [
"@babel/core"
]
},
"@babel/plugin-syntax-async-generators@7.8.4_@babel+core@7.25.2": {
"integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-syntax-class-properties@7.12.13_@babel+core@7.25.2": {
"integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-syntax-class-static-block@7.14.5_@babel+core@7.25.2": {
"integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-syntax-decorators@7.25.7_@babel+core@7.25.2": {
"integrity": "sha512-oXduHo642ZhstLVYTe2z2GSJIruU0c/W3/Ghr6A5yGMsVrvdnxO1z+3pbTcT7f3/Clnt+1z8D/w1r1f1SHaCHw==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-syntax-dynamic-import@7.8.3_@babel+core@7.25.2": {
"integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-syntax-export-namespace-from@7.8.3_@babel+core@7.25.2": {
"integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-syntax-flow@7.25.7_@babel+core@7.25.2": {
"integrity": "sha512-fyoj6/YdVtlv2ROig/J0fP7hh/wNO1MJGm1NR70Pg7jbkF+jOUL9joorqaCOQh06Y+LfgTagHzC8KqZ3MF782w==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-syntax-import-assertions@7.25.7_@babel+core@7.25.2": {
"integrity": "sha512-ZvZQRmME0zfJnDQnVBKYzHxXT7lYBB3Revz1GuS7oLXWMgqUPX4G+DDbT30ICClht9WKV34QVrZhSw6WdklwZQ==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-syntax-import-attributes@7.25.7_@babel+core@7.25.2": {
"integrity": "sha512-AqVo+dguCgmpi/3mYBdu9lkngOBlQ2w2vnNpa6gfiCxQZLzV4ZbhsXitJ2Yblkoe1VQwtHSaNmIaGll/26YWRw==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-syntax-import-meta@7.10.4_@babel+core@7.25.2": {
"integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-syntax-json-strings@7.8.3_@babel+core@7.25.2": {
"integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-syntax-jsx@7.25.7_@babel+core@7.25.2": {
"integrity": "sha512-ruZOnKO+ajVL/MVx+PwNBPOkrnXTXoWMtte1MBpegfCArhqOe3Bj52avVj1huLLxNKYKXYaSxZ2F+woK1ekXfw==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-syntax-logical-assignment-operators@7.10.4_@babel+core@7.25.2": {
"integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-syntax-nullish-coalescing-operator@7.8.3_@babel+core@7.25.2": {
"integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-syntax-numeric-separator@7.10.4_@babel+core@7.25.2": {
"integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-syntax-object-rest-spread@7.8.3_@babel+core@7.25.2": {
"integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-syntax-optional-catch-binding@7.8.3_@babel+core@7.25.2": {
"integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-syntax-optional-chaining@7.8.3_@babel+core@7.25.2": {
"integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-syntax-private-property-in-object@7.14.5_@babel+core@7.25.2": {
"integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-syntax-top-level-await@7.14.5_@babel+core@7.25.2": {
"integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-syntax-unicode-sets-regex@7.18.6_@babel+core@7.25.2": {
"integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==",
"dependencies": [
"@babel/core",
"@babel/helper-create-regexp-features-plugin",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-transform-arrow-functions@7.25.7_@babel+core@7.25.2": {
"integrity": "sha512-EJN2mKxDwfOUCPxMO6MUI58RN3ganiRAG/MS/S3HfB6QFNjroAMelQo/gybyYq97WerCBAZoyrAoW8Tzdq2jWg==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-transform-async-generator-functions@7.25.8_@babel+core@7.25.2": {
"integrity": "sha512-9ypqkozyzpG+HxlH4o4gdctalFGIjjdufzo7I2XPda0iBnZ6a+FO0rIEQcdSPXp02CkvGsII1exJhmROPQd5oA==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils",
"@babel/helper-remap-async-to-generator",
"@babel/traverse"
]
},
"@babel/plugin-transform-async-to-generator@7.25.7_@babel+core@7.25.2": {
"integrity": "sha512-ZUCjAavsh5CESCmi/xCpX1qcCaAglzs/7tmuvoFnJgA1dM7gQplsguljoTg+Ru8WENpX89cQyAtWoaE0I3X3Pg==",
"dependencies": [
"@babel/core",
"@babel/helper-module-imports",
"@babel/helper-plugin-utils",
"@babel/helper-remap-async-to-generator"
]
},
"@babel/plugin-transform-block-scoped-functions@7.25.7_@babel+core@7.25.2": {
"integrity": "sha512-xHttvIM9fvqW+0a3tZlYcZYSBpSWzGBFIt/sYG3tcdSzBB8ZeVgz2gBP7Df+sM0N1850jrviYSSeUuc+135dmQ==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-transform-block-scoping@7.25.7_@babel+core@7.25.2": {
"integrity": "sha512-ZEPJSkVZaeTFG/m2PARwLZQ+OG0vFIhPlKHK/JdIMy8DbRJ/htz6LRrTFtdzxi9EHmcwbNPAKDnadpNSIW+Aow==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-transform-class-properties@7.25.7_@babel+core@7.25.2": {
"integrity": "sha512-mhyfEW4gufjIqYFo9krXHJ3ElbFLIze5IDp+wQTxoPd+mwFb1NxatNAwmv8Q8Iuxv7Zc+q8EkiMQwc9IhyGf4g==",
"dependencies": [
"@babel/core",
"@babel/helper-create-class-features-plugin",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-transform-class-static-block@7.25.8_@babel+core@7.25.2": {
"integrity": "sha512-e82gl3TCorath6YLf9xUwFehVvjvfqFhdOo4+0iVIVju+6XOi5XHkqB3P2AXnSwoeTX0HBoXq5gJFtvotJzFnQ==",
"dependencies": [
"@babel/core",
"@babel/helper-create-class-features-plugin",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-transform-classes@7.25.7_@babel+core@7.25.2": {
"integrity": "sha512-9j9rnl+YCQY0IGoeipXvnk3niWicIB6kCsWRGLwX241qSXpbA4MKxtp/EdvFxsc4zI5vqfLxzOd0twIJ7I99zg==",
"dependencies": [
"@babel/core",
"@babel/helper-annotate-as-pure",
"@babel/helper-compilation-targets",
"@babel/helper-plugin-utils",
"@babel/helper-replace-supers",
"@babel/traverse",
"globals@11.12.0"
]
},
"@babel/plugin-transform-computed-properties@7.25.7_@babel+core@7.25.2": {
"integrity": "sha512-QIv+imtM+EtNxg/XBKL3hiWjgdLjMOmZ+XzQwSgmBfKbfxUjBzGgVPklUuE55eq5/uVoh8gg3dqlrwR/jw3ZeA==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils",
"@babel/template"
]
},
"@babel/plugin-transform-destructuring@7.25.7_@babel+core@7.25.2": {
"integrity": "sha512-xKcfLTlJYUczdaM1+epcdh1UGewJqr9zATgrNHcLBcV2QmfvPPEixo/sK/syql9cEmbr7ulu5HMFG5vbbt/sEA==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-transform-dotall-regex@7.25.7_@babel+core@7.25.2": {
"integrity": "sha512-kXzXMMRzAtJdDEgQBLF4oaiT6ZCU3oWHgpARnTKDAqPkDJ+bs3NrZb310YYevR5QlRo3Kn7dzzIdHbZm1VzJdQ==",
"dependencies": [
"@babel/core",
"@babel/helper-create-regexp-features-plugin",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-transform-duplicate-keys@7.25.7_@babel+core@7.25.2": {
"integrity": "sha512-by+v2CjoL3aMnWDOyCIg+yxU9KXSRa9tN6MbqggH5xvymmr9p4AMjYkNlQy4brMceBnUyHZ9G8RnpvT8wP7Cfg==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.7_@babel+core@7.25.2": {
"integrity": "sha512-HvS6JF66xSS5rNKXLqkk7L9c/jZ/cdIVIcoPVrnl8IsVpLggTjXs8OWekbLHs/VtYDDh5WXnQyeE3PPUGm22MA==",
"dependencies": [
"@babel/core",
"@babel/helper-create-regexp-features-plugin",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-transform-dynamic-import@7.25.8_@babel+core@7.25.2": {
"integrity": "sha512-gznWY+mr4ZQL/EWPcbBQUP3BXS5FwZp8RUOw06BaRn8tQLzN4XLIxXejpHN9Qo8x8jjBmAAKp6FoS51AgkSA/A==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-transform-exponentiation-operator@7.25.7_@babel+core@7.25.2": {
"integrity": "sha512-yjqtpstPfZ0h/y40fAXRv2snciYr0OAoMXY/0ClC7tm4C/nG5NJKmIItlaYlLbIVAWNfrYuy9dq1bE0SbX0PEg==",
"dependencies": [
"@babel/core",
"@babel/helper-builder-binary-assignment-operator-visitor",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-transform-export-namespace-from@7.25.8_@babel+core@7.25.2": {
"integrity": "sha512-sPtYrduWINTQTW7FtOy99VCTWp4H23UX7vYcut7S4CIMEXU+54zKX9uCoGkLsWXteyaMXzVHgzWbLfQ1w4GZgw==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-transform-flow-strip-types@7.25.7_@babel+core@7.25.2": {
"integrity": "sha512-q8Td2PPc6/6I73g96SreSUCKEcwMXCwcXSIAVTyTTN6CpJe0dMj8coxu1fg1T9vfBLi6Rsi6a4ECcFBbKabS5w==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils",
"@babel/plugin-syntax-flow"
]
},
"@babel/plugin-transform-for-of@7.25.7_@babel+core@7.25.2": {
"integrity": "sha512-n/TaiBGJxYFWvpJDfsxSj9lEEE44BFM1EPGz4KEiTipTgkoFVVcCmzAL3qA7fdQU96dpo4gGf5HBx/KnDvqiHw==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils",
"@babel/helper-skip-transparent-expression-wrappers"
]
},
"@babel/plugin-transform-function-name@7.25.7_@babel+core@7.25.2": {
"integrity": "sha512-5MCTNcjCMxQ63Tdu9rxyN6cAWurqfrDZ76qvVPrGYdBxIj+EawuuxTu/+dgJlhK5eRz3v1gLwp6XwS8XaX2NiQ==",
"dependencies": [
"@babel/core",
"@babel/helper-compilation-targets",
"@babel/helper-plugin-utils",
"@babel/traverse"
]
},
"@babel/plugin-transform-json-strings@7.25.8_@babel+core@7.25.2": {
"integrity": "sha512-4OMNv7eHTmJ2YXs3tvxAfa/I43di+VcF+M4Wt66c88EAED1RoGaf1D64cL5FkRpNL+Vx9Hds84lksWvd/wMIdA==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-transform-literals@7.25.7_@babel+core@7.25.2": {
"integrity": "sha512-fwzkLrSu2fESR/cm4t6vqd7ebNIopz2QHGtjoU+dswQo/P6lwAG04Q98lliE3jkz/XqnbGFLnUcE0q0CVUf92w==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-transform-logical-assignment-operators@7.25.8_@babel+core@7.25.2": {
"integrity": "sha512-f5W0AhSbbI+yY6VakT04jmxdxz+WsID0neG7+kQZbCOjuyJNdL5Nn4WIBm4hRpKnUcO9lP0eipUhFN12JpoH8g==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-transform-member-expression-literals@7.25.7_@babel+core@7.25.2": {
"integrity": "sha512-Std3kXwpXfRV0QtQy5JJcRpkqP8/wG4XL7hSKZmGlxPlDqmpXtEPRmhF7ztnlTCtUN3eXRUJp+sBEZjaIBVYaw==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-transform-modules-amd@7.25.7_@babel+core@7.25.2": {
"integrity": "sha512-CgselSGCGzjQvKzghCvDTxKHP3iooenLpJDO842ehn5D2G5fJB222ptnDwQho0WjEvg7zyoxb9P+wiYxiJX5yA==",
"dependencies": [
"@babel/core",
"@babel/helper-module-transforms",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-transform-modules-commonjs@7.25.7_@babel+core@7.25.2": {
"integrity": "sha512-L9Gcahi0kKFYXvweO6n0wc3ZG1ChpSFdgG+eV1WYZ3/dGbJK7vvk91FgGgak8YwRgrCuihF8tE/Xg07EkL5COg==",
"dependencies": [
"@babel/core",
"@babel/helper-module-transforms",
"@babel/helper-plugin-utils",
"@babel/helper-simple-access"
]
},
"@babel/plugin-transform-modules-systemjs@7.25.7_@babel+core@7.25.2": {
"integrity": "sha512-t9jZIvBmOXJsiuyOwhrIGs8dVcD6jDyg2icw1VL4A/g+FnWyJKwUfSSU2nwJuMV2Zqui856El9u+ElB+j9fV1g==",
"dependencies": [
"@babel/core",
"@babel/helper-module-transforms",
"@babel/helper-plugin-utils",
"@babel/helper-validator-identifier",
"@babel/traverse"
]
},
"@babel/plugin-transform-modules-umd@7.25.7_@babel+core@7.25.2": {
"integrity": "sha512-p88Jg6QqsaPh+EB7I9GJrIqi1Zt4ZBHUQtjw3z1bzEXcLh6GfPqzZJ6G+G1HBGKUNukT58MnKG7EN7zXQBCODw==",
"dependencies": [
"@babel/core",
"@babel/helper-module-transforms",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-transform-named-capturing-groups-regex@7.25.7_@babel+core@7.25.2": {
"integrity": "sha512-BtAT9LzCISKG3Dsdw5uso4oV1+v2NlVXIIomKJgQybotJY3OwCwJmkongjHgwGKoZXd0qG5UZ12JUlDQ07W6Ow==",
"dependencies": [
"@babel/core",
"@babel/helper-create-regexp-features-plugin",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-transform-new-target@7.25.7_@babel+core@7.25.2": {
"integrity": "sha512-CfCS2jDsbcZaVYxRFo2qtavW8SpdzmBXC2LOI4oO0rP+JSRDxxF3inF4GcPsLgfb5FjkhXG5/yR/lxuRs2pySA==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-transform-nullish-coalescing-operator@7.25.8_@babel+core@7.25.2": {
"integrity": "sha512-Z7WJJWdQc8yCWgAmjI3hyC+5PXIubH9yRKzkl9ZEG647O9szl9zvmKLzpbItlijBnVhTUf1cpyWBsZ3+2wjWPQ==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-transform-numeric-separator@7.25.8_@babel+core@7.25.2": {
"integrity": "sha512-rm9a5iEFPS4iMIy+/A/PiS0QN0UyjPIeVvbU5EMZFKJZHt8vQnasbpo3T3EFcxzCeYO0BHfc4RqooCZc51J86Q==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-transform-object-rest-spread@7.25.8_@babel+core@7.25.2": {
"integrity": "sha512-LkUu0O2hnUKHKE7/zYOIjByMa4VRaV2CD/cdGz0AxU9we+VA3kDDggKEzI0Oz1IroG+6gUP6UmWEHBMWZU316g==",
"dependencies": [
"@babel/core",
"@babel/helper-compilation-targets",
"@babel/helper-plugin-utils",
"@babel/plugin-transform-parameters"
]
},
"@babel/plugin-transform-object-super@7.25.7_@babel+core@7.25.2": {
"integrity": "sha512-pWT6UXCEW3u1t2tcAGtE15ornCBvopHj9Bps9D2DsH15APgNVOTwwczGckX+WkAvBmuoYKRCFa4DK+jM8vh5AA==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils",
"@babel/helper-replace-supers"
]
},
"@babel/plugin-transform-optional-catch-binding@7.25.8_@babel+core@7.25.2": {
"integrity": "sha512-EbQYweoMAHOn7iJ9GgZo14ghhb9tTjgOc88xFgYngifx7Z9u580cENCV159M4xDh3q/irbhSjZVpuhpC2gKBbg==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-transform-optional-chaining@7.25.8_@babel+core@7.25.2": {
"integrity": "sha512-q05Bk7gXOxpTHoQ8RSzGSh/LHVB9JEIkKnk3myAWwZHnYiTGYtbdrYkIsS8Xyh4ltKf7GNUSgzs/6P2bJtBAQg==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils",
"@babel/helper-skip-transparent-expression-wrappers"
]
},
"@babel/plugin-transform-parameters@7.25.7_@babel+core@7.25.2": {
"integrity": "sha512-FYiTvku63me9+1Nz7TOx4YMtW3tWXzfANZtrzHhUZrz4d47EEtMQhzFoZWESfXuAMMT5mwzD4+y1N8ONAX6lMQ==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-transform-private-methods@7.25.7_@babel+core@7.25.2": {
"integrity": "sha512-KY0hh2FluNxMLwOCHbxVOKfdB5sjWG4M183885FmaqWWiGMhRZq4DQRKH6mHdEucbJnyDyYiZNwNG424RymJjA==",
"dependencies": [
"@babel/core",
"@babel/helper-create-class-features-plugin",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-transform-private-property-in-object@7.25.8_@babel+core@7.25.2": {
"integrity": "sha512-8Uh966svuB4V8RHHg0QJOB32QK287NBksJOByoKmHMp1TAobNniNalIkI2i5IPj5+S9NYCG4VIjbEuiSN8r+ow==",
"dependencies": [
"@babel/core",
"@babel/helper-annotate-as-pure",
"@babel/helper-create-class-features-plugin",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-transform-property-literals@7.25.7_@babel+core@7.25.2": {
"integrity": "sha512-lQEeetGKfFi0wHbt8ClQrUSUMfEeI3MMm74Z73T9/kuz990yYVtfofjf3NuA42Jy3auFOpbjDyCSiIkTs1VIYw==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-transform-react-display-name@7.25.7_@babel+core@7.25.2": {
"integrity": "sha512-r0QY7NVU8OnrwE+w2IWiRom0wwsTbjx4+xH2RTd7AVdof3uurXOF+/mXHQDRk+2jIvWgSaCHKMgggfvM4dyUGA==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-transform-react-jsx-development@7.25.7_@babel+core@7.25.2": {
"integrity": "sha512-5yd3lH1PWxzW6IZj+p+Y4OLQzz0/LzlOG8vGqonHfVR3euf1vyzyMUJk9Ac+m97BH46mFc/98t9PmYLyvgL3qg==",
"dependencies": [
"@babel/core",
"@babel/plugin-transform-react-jsx"
]
},
"@babel/plugin-transform-react-jsx@7.25.7_@babel+core@7.25.2": {
"integrity": "sha512-vILAg5nwGlR9EXE8JIOX4NHXd49lrYbN8hnjffDtoULwpL9hUx/N55nqh2qd0q6FyNDfjl9V79ecKGvFbcSA0Q==",
"dependencies": [
"@babel/core",
"@babel/helper-annotate-as-pure",
"@babel/helper-module-imports",
"@babel/helper-plugin-utils",
"@babel/plugin-syntax-jsx",
"@babel/types"
]
},
"@babel/plugin-transform-react-pure-annotations@7.25.7_@babel+core@7.25.2": {
"integrity": "sha512-6YTHJ7yjjgYqGc8S+CbEXhLICODk0Tn92j+vNJo07HFk9t3bjFgAKxPLFhHwF2NjmQVSI1zBRfBWUeVBa2osfA==",
"dependencies": [
"@babel/core",
"@babel/helper-annotate-as-pure",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-transform-regenerator@7.25.7_@babel+core@7.25.2": {
"integrity": "sha512-mgDoQCRjrY3XK95UuV60tZlFCQGXEtMg8H+IsW72ldw1ih1jZhzYXbJvghmAEpg5UVhhnCeia1CkGttUvCkiMQ==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils",
"regenerator-transform"
]
},
"@babel/plugin-transform-reserved-words@7.25.7_@babel+core@7.25.2": {
"integrity": "sha512-3OfyfRRqiGeOvIWSagcwUTVk2hXBsr/ww7bLn6TRTuXnexA+Udov2icFOxFX9abaj4l96ooYkcNN1qi2Zvqwng==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-transform-shorthand-properties@7.25.7_@babel+core@7.25.2": {
"integrity": "sha512-uBbxNwimHi5Bv3hUccmOFlUy3ATO6WagTApenHz9KzoIdn0XeACdB12ZJ4cjhuB2WSi80Ez2FWzJnarccriJeA==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-transform-spread@7.25.7_@babel+core@7.25.2": {
"integrity": "sha512-Mm6aeymI0PBh44xNIv/qvo8nmbkpZze1KvR8MkEqbIREDxoiWTi18Zr2jryfRMwDfVZF9foKh060fWgni44luw==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils",
"@babel/helper-skip-transparent-expression-wrappers"
]
},
"@babel/plugin-transform-sticky-regex@7.25.7_@babel+core@7.25.2": {
"integrity": "sha512-ZFAeNkpGuLnAQ/NCsXJ6xik7Id+tHuS+NT+ue/2+rn/31zcdnupCdmunOizEaP0JsUmTFSTOPoQY7PkK2pttXw==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-transform-template-literals@7.25.7_@babel+core@7.25.2": {
"integrity": "sha512-SI274k0nUsFFmyQupiO7+wKATAmMFf8iFgq2O+vVFXZ0SV9lNfT1NGzBEhjquFmD8I9sqHLguH+gZVN3vww2AA==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-transform-typeof-symbol@7.25.7_@babel+core@7.25.2": {
"integrity": "sha512-OmWmQtTHnO8RSUbL0NTdtpbZHeNTnm68Gj5pA4Y2blFNh+V4iZR68V1qL9cI37J21ZN7AaCnkfdHtLExQPf2uA==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-transform-unicode-escapes@7.25.7_@babel+core@7.25.2": {
"integrity": "sha512-BN87D7KpbdiABA+t3HbVqHzKWUDN3dymLaTnPFAMyc8lV+KN3+YzNhVRNdinaCPA4AUqx7ubXbQ9shRjYBl3SQ==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-transform-unicode-property-regex@7.25.7_@babel+core@7.25.2": {
"integrity": "sha512-IWfR89zcEPQGB/iB408uGtSPlQd3Jpq11Im86vUgcmSTcoWAiQMCTOa2K2yNNqFJEBVICKhayctee65Ka8OB0w==",
"dependencies": [
"@babel/core",
"@babel/helper-create-regexp-features-plugin",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-transform-unicode-regex@7.25.7_@babel+core@7.25.2": {
"integrity": "sha512-8JKfg/hiuA3qXnlLx8qtv5HWRbgyFx2hMMtpDDuU2rTckpKkGu4ycK5yYHwuEa16/quXfoxHBIApEsNyMWnt0g==",
"dependencies": [
"@babel/core",
"@babel/helper-create-regexp-features-plugin",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-transform-unicode-sets-regex@7.25.7_@babel+core@7.25.2": {
"integrity": "sha512-YRW8o9vzImwmh4Q3Rffd09bH5/hvY0pxg+1H1i0f7APoUeg12G7+HhLj9ZFNIrYkgBXhIijPJ+IXypN0hLTIbw==",
"dependencies": [
"@babel/core",
"@babel/helper-create-regexp-features-plugin",
"@babel/helper-plugin-utils"
]
},
"@babel/preset-env@7.25.4_@babel+core@7.25.2": {
"integrity": "sha512-W9Gyo+KmcxjGahtt3t9fb14vFRWvPpu5pT6GBlovAK6BTBcxgjfVMSQCfJl4oi35ODrxP6xx2Wr8LNST57Mraw==",
"dependencies": [
"@babel/compat-data",
"@babel/core",
"@babel/helper-compilation-targets",
"@babel/helper-plugin-utils",
"@babel/helper-validator-option",
"@babel/plugin-bugfix-firefox-class-in-computed-class-key",
"@babel/plugin-bugfix-safari-class-field-initializer-scope",
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression",
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining",
"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly",
"@babel/plugin-proposal-private-property-in-object",
"@babel/plugin-syntax-async-generators",
"@babel/plugin-syntax-class-properties",
"@babel/plugin-syntax-class-static-block",
"@babel/plugin-syntax-dynamic-import",
"@babel/plugin-syntax-export-namespace-from",
"@babel/plugin-syntax-import-assertions",
"@babel/plugin-syntax-import-attributes",
"@babel/plugin-syntax-import-meta",
"@babel/plugin-syntax-json-strings",
"@babel/plugin-syntax-logical-assignment-operators",
"@babel/plugin-syntax-nullish-coalescing-operator",
"@babel/plugin-syntax-numeric-separator",
"@babel/plugin-syntax-object-rest-spread",
"@babel/plugin-syntax-optional-catch-binding",
"@babel/plugin-syntax-optional-chaining",
"@babel/plugin-syntax-private-property-in-object",
"@babel/plugin-syntax-top-level-await",
"@babel/plugin-syntax-unicode-sets-regex",
"@babel/plugin-transform-arrow-functions",
"@babel/plugin-transform-async-generator-functions",
"@babel/plugin-transform-async-to-generator",
"@babel/plugin-transform-block-scoped-functions",
"@babel/plugin-transform-block-scoping",
"@babel/plugin-transform-class-properties",
"@babel/plugin-transform-class-static-block",
"@babel/plugin-transform-classes",
"@babel/plugin-transform-computed-properties",
"@babel/plugin-transform-destructuring",
"@babel/plugin-transform-dotall-regex",
"@babel/plugin-transform-duplicate-keys",
"@babel/plugin-transform-duplicate-named-capturing-groups-regex",
"@babel/plugin-transform-dynamic-import",
"@babel/plugin-transform-exponentiation-operator",
"@babel/plugin-transform-export-namespace-from",
"@babel/plugin-transform-for-of",
"@babel/plugin-transform-function-name",
"@babel/plugin-transform-json-strings",
"@babel/plugin-transform-literals",
"@babel/plugin-transform-logical-assignment-operators",
"@babel/plugin-transform-member-expression-literals",
"@babel/plugin-transform-modules-amd",
"@babel/plugin-transform-modules-commonjs",
"@babel/plugin-transform-modules-systemjs",
"@babel/plugin-transform-modules-umd",
"@babel/plugin-transform-named-capturing-groups-regex",
"@babel/plugin-transform-new-target",
"@babel/plugin-transform-nullish-coalescing-operator",
"@babel/plugin-transform-numeric-separator",
"@babel/plugin-transform-object-rest-spread",
"@babel/plugin-transform-object-super",
"@babel/plugin-transform-optional-catch-binding",
"@babel/plugin-transform-optional-chaining",
"@babel/plugin-transform-parameters",
"@babel/plugin-transform-private-methods",
"@babel/plugin-transform-private-property-in-object",
"@babel/plugin-transform-property-literals",
"@babel/plugin-transform-regenerator",
"@babel/plugin-transform-reserved-words",
"@babel/plugin-transform-shorthand-properties",
"@babel/plugin-transform-spread",
"@babel/plugin-transform-sticky-regex",
"@babel/plugin-transform-template-literals",
"@babel/plugin-transform-typeof-symbol",
"@babel/plugin-transform-unicode-escapes",
"@babel/plugin-transform-unicode-property-regex",
"@babel/plugin-transform-unicode-regex",
"@babel/plugin-transform-unicode-sets-regex",
"@babel/preset-modules",
"babel-plugin-polyfill-corejs2",
"babel-plugin-polyfill-corejs3",
"babel-plugin-polyfill-regenerator",
"core-js-compat",
"semver@6.3.1"
]
},
"@babel/preset-flow@7.24.7_@babel+core@7.25.2": {
"integrity": "sha512-NL3Lo0NorCU607zU3NwRyJbpaB6E3t0xtd3LfAQKDfkeX4/ggcDXvkmkW42QWT5owUeW/jAe4hn+2qvkV1IbfQ==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils",
"@babel/helper-validator-option",
"@babel/plugin-transform-flow-strip-types"
]
},
"@babel/preset-modules@0.1.6-no-external-plugins_@babel+core@7.25.2": {
"integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils",
"@babel/types",
"esutils"
]
},
"@babel/preset-react@7.24.7_@babel+core@7.25.2": {
"integrity": "sha512-AAH4lEkpmzFWrGVlHaxJB7RLH21uPQ9+He+eFLWHmF9IuFQVugz8eAsamaW0DXRrTfco5zj1wWtpdcXJUOfsag==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils",
"@babel/helper-validator-option",
"@babel/plugin-transform-react-display-name",
"@babel/plugin-transform-react-jsx",
"@babel/plugin-transform-react-jsx-development",
"@babel/plugin-transform-react-pure-annotations"
]
},
"@babel/runtime@7.25.7": {
"integrity": "sha512-FjoyLe754PMiYsFaN5C94ttGiOmBNYTf6pLr4xXHAT5uctHb092PBszndLDR5XA/jghQvn4n7JMHl7dmTgbm9w==",
"dependencies": [
"regenerator-runtime"
]
},
"@babel/template@7.25.7": {
"integrity": "sha512-wRwtAgI3bAS+JGU2upWNL9lSlDcRCqD05BZ1n3X2ONLH1WilFP6O1otQjeMK/1g0pvYcXC7b/qVUB1keofjtZA==",
"dependencies": [
"@babel/code-frame",
"@babel/parser",