-
Notifications
You must be signed in to change notification settings - Fork 50
/
pnpm-lock.yaml
14461 lines (12775 loc) · 490 KB
/
pnpm-lock.yaml
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
863
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
lockfileVersion: '6.0'
settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
importers:
.:
devDependencies:
'@changesets/cli':
specifier: ^2.27.1
version: 2.27.1
'@playwright/test':
specifier: ^1.41.1
version: 1.41.1
'@types/node':
specifier: ^20.11.11
version: 20.11.11
prettier:
specifier: ^3.2.5
version: 3.2.5
turbo:
specifier: ^1.13.3
version: 1.13.3
apps/nextjs-app-router:
dependencies:
'@formatjs/intl-localematcher':
specifier: ^0.5.4
version: 0.5.4
'@makeswift/runtime':
specifier: workspace:^
version: link:../../packages/runtime
negotiator:
specifier: ^0.6.3
version: 0.6.3
next:
specifier: 15.0.2
react:
specifier: 19.0.0-rc-02c0e824-20241028
version: 19.0.0-rc-02c0e824-20241028
react-dom:
specifier: 19.0.0-rc-02c0e824-20241028
version: 19.0.0-rc-02c0e824-20241028([email protected])
devDependencies:
'@types/negotiator':
specifier: ^0.6.3
version: 0.6.3
'@types/node':
specifier: ^20
version: 20.11.11
'@types/react':
specifier: ^18
version: 18.2.14
'@types/react-dom':
specifier: ^18
version: 18.2.6
autoprefixer:
specifier: ^10.0.1
version: 10.4.17([email protected])
eslint:
specifier: ^9.13.0
version: 9.13.0
eslint-config-next:
specifier: 15.0.2
version: 15.0.2([email protected])([email protected])
postcss:
specifier: ^8
version: 8.4.33
tailwindcss:
specifier: ^3.3.0
version: 3.4.1
typescript:
specifier: ^5
version: 5.1.6
apps/nextjs-pages-router:
dependencies:
'@makeswift/runtime':
specifier: workspace:^
version: link:../../packages/runtime
next:
specifier: 15.0.2
version: 15.0.2(@babel/[email protected])(@playwright/[email protected])([email protected])([email protected])
react:
specifier: ^18
version: 18.2.0
react-dom:
specifier: ^18
version: 18.2.0([email protected])
devDependencies:
'@types/node':
specifier: ^20
version: 20.11.11
'@types/react':
specifier: ^18
version: 18.2.14
'@types/react-dom':
specifier: ^18
version: 18.2.6
autoprefixer:
specifier: ^10.0.1
version: 10.4.17([email protected])
eslint:
specifier: ^8
version: 8.56.0
eslint-config-next:
specifier: 14.1.0
version: 14.1.0([email protected])([email protected])
postcss:
specifier: ^8
version: 8.4.33
tailwindcss:
specifier: ^3.3.0
version: 3.4.1
typescript:
specifier: ^5
version: 5.1.6
packages/controls:
dependencies:
color:
specifier: ^3.1.3
version: 3.2.1
css-box-model:
specifier: ^1.2.1
version: 1.2.1
slate:
specifier: 0.91.4
version: 0.91.4
ts-pattern:
specifier: ^5.0.8
version: 5.0.8
uuid:
specifier: ^9.0.0
version: 9.0.0
zod:
specifier: ^3.21.4
version: 3.21.4
devDependencies:
'@ianvs/prettier-plugin-sort-imports':
specifier: ^4.3.1
version: 4.3.1([email protected])
'@swc/jest':
specifier: ^0.2.36
version: 0.2.36(@swc/[email protected])
'@types/color':
specifier: ^3.0.2
version: 3.0.3
'@types/jest':
specifier: ^29.5.12
version: 29.5.12
'@types/uuid':
specifier: ^9.0.1
version: 9.0.1
concurrently:
specifier: ^8.2.2
version: 8.2.2
expect-type:
specifier: ^0.19.0
version: 0.19.0
jest:
specifier: ^29.7.0
version: 29.7.0(@types/[email protected])
tsup:
specifier: ^8.0.2
version: 8.0.2(@swc/[email protected])([email protected])
typescript:
specifier: ^5.1.6
version: 5.1.6
packages/makeswift:
dependencies:
'@babel/core':
specifier: ^7.18.13
version: 7.18.13
'@babel/generator':
specifier: ^7.18.13
version: 7.18.13
'@babel/template':
specifier: ^7.18.10
version: 7.18.10
'@babel/traverse':
specifier: ^7.18.13
version: 7.18.13
chalk:
specifier: ^4.1.2
version: 4.1.2
commander:
specifier: ^9.4.0
version: 9.5.0
create-next-app:
specifier: ^13.1.6
version: 13.1.6
cross-spawn:
specifier: ^7.0.3
version: 7.0.3
detect-port:
specifier: ^1.3.0
version: 1.3.0
fs-extra:
specifier: ^10.1.0
version: 10.1.0
glob:
specifier: ^8.0.3
version: 8.0.3
inquirer:
specifier: ^8.0.0
version: 8.2.1
open:
specifier: ^8.4.0
version: 8.4.0
devDependencies:
'@babel/types':
specifier: ^7.23.0
version: 7.23.0
'@types/babel__core':
specifier: ^7.1.19
version: 7.1.19
'@types/babel__generator':
specifier: ^7.6.4
version: 7.6.4
'@types/babel__template':
specifier: ^7.4.1
version: 7.4.1
'@types/babel__traverse':
specifier: ^7.18.0
version: 7.18.1
'@types/cross-spawn':
specifier: ^6.0.2
version: 6.0.2
'@types/detect-port':
specifier: ^1.3.2
version: 1.3.2
'@types/fs-extra':
specifier: ^9.0.13
version: 9.0.13
'@types/glob':
specifier: ^8.0.0
version: 8.0.0
'@types/inquirer':
specifier: ^8.0.8
version: 8.2.3
'@types/jest':
specifier: ^28.1.8
version: 28.1.8
jest:
specifier: ^29.0.1
version: 29.0.1(@types/[email protected])
ts-jest:
specifier: ^29.1.0
typescript:
specifier: ^5.0.4
version: 5.1.6
packages/makeswift-next-plugin:
dependencies:
enhanced-resolve:
specifier: 5.10.0
version: 5.10.0
escalade:
specifier: 3.1.1
version: 3.1.1
semver:
specifier: ^7.3.8
version: 7.5.1
devDependencies:
next:
specifier: 14.1.0
version: 14.1.0([email protected])([email protected])
packages/prop-controllers:
dependencies:
'@makeswift/controls':
specifier: workspace:*
version: link:../controls
ts-pattern:
specifier: ^5.0.8
version: 5.0.8
zod:
specifier: ^3.21.4
version: 3.21.4
devDependencies:
'@swc/jest':
specifier: ^0.2.36
version: 0.2.36(@swc/[email protected])
'@types/jest':
specifier: ^29.5.12
version: 29.5.12
concurrently:
specifier: ^8.2.2
version: 8.2.2
jest:
specifier: ^29.7.0
version: 29.7.0(@types/[email protected])
tsup:
specifier: ^8.0.2
version: 8.0.2(@swc/[email protected])([email protected])
typescript:
specifier: ^5.1.6
version: 5.1.6
packages/runtime:
dependencies:
'@emotion/cache':
specifier: ^11.11.0
version: 11.11.0
'@emotion/css':
specifier: ^11.9.0
version: 11.9.0(@babel/[email protected])
'@emotion/serialize':
specifier: ^1.0.3
version: 1.0.3
'@emotion/server':
specifier: ^11.4.0
version: 11.4.0(@emotion/[email protected])
'@emotion/sheet':
specifier: ^1.0.3
version: 1.1.0
'@emotion/utils':
specifier: ^1.0.0
version: 1.1.0
'@makeswift/controls':
specifier: workspace:*
version: link:../controls
'@makeswift/next-plugin':
specifier: workspace:*
version: link:../makeswift-next-plugin
'@makeswift/prop-controllers':
specifier: workspace:*
version: link:../prop-controllers
'@popmotion/popcorn':
specifier: ^0.4.4
version: 0.4.4
'@types/is-hotkey':
specifier: ^0.1.7
version: 0.1.7
'@types/use-sync-external-store':
specifier: ^0.0.3
version: 0.0.3
'@types/uuid':
specifier: ^9.0.1
version: 9.0.1
'@use-gesture/react':
specifier: ^10.2.24
version: 10.2.24([email protected])
color:
specifier: ^3.1.3
version: 3.2.1
corporate-ipsum:
specifier: ^1.0.1
version: 1.0.1
cors:
specifier: ^2.8.5
version: 2.8.5
css-box-model:
specifier: ^1.2.1
version: 1.2.1
csstype:
specifier: ^2.6.5
version: 2.6.20
escape-html:
specifier: ^1.0.3
version: 1.0.3
formik:
specifier: ^2.2.9
version: 2.2.9([email protected])
framer-motion:
specifier: ^10.16.16
version: 10.16.16([email protected])([email protected])
graphql:
specifier: ^16.3.0
version: 16.3.0
html-react-parser:
specifier: ^5.0.10
version: 5.0.10([email protected])
immutable:
specifier: ^4.0.0-rc.12
version: 4.0.0
is-hotkey:
specifier: ^0.1.4
version: 0.1.8
ot-json0:
specifier: ^1.1.0
version: 1.1.0
parse5:
specifier: ^7.1.2
version: 7.1.2
path-to-regexp:
specifier: ^6.2.1
version: 6.2.1
polished:
specifier: 3.0.3
version: 3.0.3
react-player:
specifier: ^1.12.0
version: 1.15.3([email protected])
redux:
specifier: ^4.0.5
version: 4.1.2
redux-thunk:
specifier: ^2.3.0
version: 2.4.1([email protected])
reselect:
specifier: ^5.1.1
version: 5.1.1
scroll-into-view-if-needed:
specifier: ^2.2.20
version: 2.2.29
slate:
specifier: ^0.91.4
version: 0.91.4
slate-hyperscript:
specifier: ^0.77.0
version: 0.77.0([email protected])
slate-react:
specifier: ^0.91.7
ts-pattern:
specifier: ^5.0.5
version: 5.0.5
use-sync-external-store:
specifier: ^1.0.0-rc.0
version: 1.0.0-rc.0([email protected])
uuid:
specifier: ^9.0.0
version: 9.0.0
zod:
specifier: ^3.21.4
version: 3.21.4
devDependencies:
'@emotion/jest':
specifier: ^11.11.0
version: 11.11.0(@types/[email protected])
'@graphql-codegen/add':
specifier: ^3.1.0
version: 3.1.1([email protected])
'@graphql-codegen/cli':
specifier: 2.6.2
'@graphql-codegen/typescript-document-nodes':
specifier: ^2.3.12
version: 2.3.12([email protected])
'@graphql-codegen/typescript-operations':
specifier: 2.3.4
version: 2.3.4([email protected])
'@swc/core':
specifier: ^1.4.15
version: 1.4.15
'@swc/jest':
specifier: ^0.2.36
version: 0.2.36(@swc/[email protected])
'@testing-library/jest-dom':
specifier: ^6.4.2
version: 6.4.2(@types/[email protected])([email protected])
'@testing-library/react':
specifier: ^15.0.2
version: 15.0.2([email protected])([email protected])
'@types/color':
specifier: ^3.0.2
version: 3.0.3
'@types/cors':
specifier: ^2.8.12
version: 2.8.12
'@types/escape-html':
specifier: ^1.0.2
version: 1.0.2
'@types/jest':
specifier: ^29.5.12
version: 29.5.12
'@types/node':
specifier: ^17.0.21
version: 17.0.21
'@types/react':
specifier: ^18.2.14
version: 18.2.14
'@types/react-dom':
specifier: ^18.2.6
version: 18.2.6
concurrently:
specifier: ^5.3.0
version: 5.3.0
expect-type:
specifier: ^0.19.0
version: 0.19.0
jest:
specifier: ^29.7.0
version: 29.7.0(@types/[email protected])
jest-environment-jsdom:
specifier: ^29.7.0
version: 29.7.0
madge:
specifier: ^6.0.0
version: 6.0.0
msw:
specifier: ^2.3.1
version: 2.3.1([email protected])
next:
specifier: 15.0.2
version: 15.0.2(@babel/[email protected])(@playwright/[email protected])([email protected])([email protected])
react:
specifier: 18.2.0
version: 18.2.0
react-dom:
specifier: 18.2.0
version: 18.2.0([email protected])
tsup:
specifier: ^8.0.1
typescript:
specifier: ^5.1.6
version: 5.1.6
undici:
specifier: ^6.19.2
version: 6.19.2
packages/tsconfig: {}
packages:
/@aashutoshrathi/[email protected]:
resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl XFhQG2bjy4Pu1I EAlCNUzRDYDdFwFYUKvXcIA==}
engines: {node: '>=0.10.0'}
dev: true
/@adobe/[email protected]:
resolution: {integrity: sha512-rE0Pygv0sEZ4vBWHlAgJLGDU7Pm8xoO6p3wsEceb7GYAjScrOHpEo8KK/eVkAcnSM slAEtXjA2JpdjLp4fJQQ==}
dev: true
/@alloc/[email protected]:
resolution: {integrity: sha512-UrcABB 4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3 z5TsKLw==}
engines: {node: '>=10'}
dev: true
/@ampproject/[email protected]:
resolution: {integrity: sha512-hoyByceqwKirw7w3Z7gnIIZC3Wx3J484Y3L/cMpXFbr7d9ZQj2mODrirNzcJa SM3UlpWXYvKV4RlRpFXlWgXg==}
engines: {node: '>=6.0.0'}
dependencies:
'@jridgewell/trace-mapping': 0.3.15
/@ampproject/[email protected]:
resolution: {integrity: sha512-30iZtAPgz LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
dependencies:
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
/@ardatan/[email protected]([email protected]):
resolution: {integrity: sha512-9anThAaj1dQr6IGmzBMcfzOQKTa5artjuPmw8NYK/fiGEMjADbSguBY2FMDykt QhilR3wc9VA/3yVju7JHg7Q==}
hasBin: true
peerDependencies:
graphql: '*'
dependencies:
'@babel/core': 7.24.9
'@babel/generator': 7.24.10
'@babel/parser': 7.24.8
'@babel/runtime': 7.23.9
'@babel/traverse': 7.24.8
'@babel/types': 7.24.9
babel-preset-fbjs: 3.4.0(@babel/[email protected])
chalk: 4.1.2
fb-watchman: 2.0.1
fbjs: 3.0.4
glob: 7.2.3
graphql: 16.3.0
immutable: 3.7.6
invariant: 2.2.4
nullthrows: 1.1.1
relay-runtime: 12.0.0
signedsource: 1.0.0
yargs: 15.4.1
transitivePeerDependencies:
- encoding
- supports-color
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-TDCmlK5eOvH eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3 70Q==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/highlight': 7.18.6
/@babel/[email protected]:
resolution: {integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/highlight': 7.23.4
chalk: 2.4.2
/@babel/[email protected]:
resolution: {integrity: sha512-y5 tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL CRT FTsBlBjcIan6PGsLcBN0m3ClUyQ==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/highlight': 7.24.7
picocolors: 1.0.1
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx eppDEBq/g47Ayw RqNFE URvOShmf f/qwAlA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/highlight': 7.24.7
picocolors: 1.0.1
/@babel/[email protected]:
resolution: {integrity: sha512-5yUzC5LqyTFp2HLmDoxGQelcdYgSpP9xsnMWBphAscOdFrHSAVbLNzWiy32sVNDqJRDiJK6klfDnAgu6PAGSHw==}
engines: {node: '>=6.9.0'}
/@babel/[email protected]:
resolution: {integrity: sha512-e701mcfApCJqMMueQI0Fb68Amflj83 dvAvHawoBpAz GDjCIyGHzNwnefjsWJ3xiYAqqiQFoWbspGYBdb2/ng==}
engines: {node: '>=6.9.0'}
/@babel/[email protected]:
resolution: {integrity: sha512-ZisbOvRRusFktksHSG6pjj1CSvkPkcZq/KHD45LAkVP/oiHJkNBZWfpvlLmX8OtHDG8IuzsFlVRWo08w7Qxn0A==}
engines: {node: '>=6.9.0'}
dependencies:
'@ampproject/remapping': 2.1.2
'@babel/code-frame': 7.23.5
'@babel/generator': 7.18.13
'@babel/helper-compilation-targets': 7.18.9(@babel/[email protected])
'@babel/helper-module-transforms': 7.18.9
'@babel/helpers': 7.18.9
'@babel/parser': 7.21.9
'@babel/template': 7.18.10
'@babel/traverse': 7.18.13
'@babel/types': 7.23.0
convert-source-map: 1.8.0
debug: 4.3.4
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
transitivePeerDependencies:
- supports-color
/@babel/[email protected]:
resolution: {integrity: sha512-5e3FI4Q3M3Pbr21 5xJwCv6ZT6KmGkI0vw3Tozy5ODAQFTIWe37iT8Cr7Ice2Ntb M3iSKCEWMB1MBgKrW3whg==}
engines: {node: '>=6.9.0'}
dependencies:
'@ampproject/remapping': 2.3.0
'@babel/code-frame': 7.24.7
'@babel/generator': 7.24.10
'@babel/helper-compilation-targets': 7.24.8
'@babel/helper-module-transforms': 7.24.9(@babel/[email protected])
'@babel/helpers': 7.24.8
'@babel/parser': 7.24.8
'@babel/template': 7.24.7
'@babel/traverse': 7.24.8
'@babel/types': 7.24.9
convert-source-map: 2.0.0
debug: 4.3.5
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
transitivePeerDependencies:
- supports-color
/@babel/[email protected]:
resolution: {integrity: sha512-CkPg8ySSPuHTYPJYo7IRALdqyjM9HCbt/3uOBEFbzyGVP6Mn8bwFPB0jX6982JVNBlYzM1nnPkfjuXSOPtQeEQ==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.23.0
'@jridgewell/gen-mapping': 0.3.2
jsesc: 2.5.2
/@babel/[email protected]:
resolution: {integrity: sha512-o9HBZL1G2129luEUlG1hB4N/nlYNWHnpwlND9eOMclRqqu1YDy2sSYVCFUZwl8I1Gxh QSRrP2vD7EpUmFVXxg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.24.9
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
jsesc: 2.5.2
/@babel/[email protected]:
resolution: {integrity: sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.24.9
dev: true
/@babel/[email protected](@babel/[email protected]):
resolution: {integrity: sha512-tzLCyVmqUiFlcFoAPLA/gL9TeYrF61VLNtb hvkuVaB5SUjW7jcfrglBIX1vUIoT7CLP3bBlIMeyEsIl2eFQNg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/compat-data': 7.18.13
'@babel/core': 7.18.13
'@babel/helper-validator-option': 7.18.6
browserslist: 4.22.2
semver: 6.3.1
/@babel/[email protected]:
resolution: {integrity: sha512-oU UoqCHdp nWVDkpldqIQL/i/bvAv53tRqLG/s cOXxe66zOYLU7ar/Xs3LdmBihrUMEUhwu6dMZwbNOYDwvw==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/compat-data': 7.24.9
'@babel/helper-validator-option': 7.24.8
browserslist: 4.23.2
lru-cache: 5.1.1
semver: 6.3.1
/@babel/[email protected](@babel/[email protected]):
resolution: {integrity: sha512-SogLLSxXm2OkBbSsHZMM4tUi8fUzjs63AT/d0YQIzr6GSd8Hxsbk2KYDX0k0DweAzGMj/YWeiCsorIdtdcW8Eg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.24.9
'@babel/helper-annotate-as-pure': 7.16.7
'@babel/helper-environment-visitor': 7.24.7
'@babel/helper-function-name': 7.24.7
'@babel/helper-member-expression-to-functions': 7.17.7
'@babel/helper-optimise-call-expression': 7.16.7
'@babel/helper-replace-supers': 7.16.7
'@babel/helper-split-export-declaration': 7.24.7
transitivePeerDependencies:
- supports-color
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw S9Ipg==}
engines: {node: '>=6.9.0'}
/@babel/[email protected]:
resolution: {integrity: sha512-DoiN84 4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn BRXHLkkklZ51ecPKmI1CQ==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.24.9
/@babel/[email protected]:
resolution: {integrity: sha512-fJgWlZt7nxGksJS9a0XdSaI4XvpExnNIgRP rVefWh5U7BL8pPuir6SJUmFKRfjWQ51OtWSzwOxhaH/EBWWc0A==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.18.10
'@babel/types': 7.23.0
/@babel/[email protected]:
resolution: {integrity: sha512-FyoJTsj/PEUWu1/TYRiXTIHc8lbw TDYkZuoE43opPS5TrI7MyONBE1oNvfguEXAD9yhQRrVBnXdXzSLQl9XnA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.24.7
'@babel/types': 7.24.9
/@babel/[email protected]:
resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8 LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.23.0
/@babel/[email protected]:
resolution: {integrity: sha512-MJJwhkoGy5c4ehfoRyrJ/owKeMl19U54h27YYftT0o2teQ3FJ3nQUf/I3LlJsX4l3qlw7WRXUmiyajvHXoTubQ==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.24.9
/@babel/[email protected]:
resolution: {integrity: sha512-thxXgnQ8qQ11W2wVUObIqDL4p148VMxkt5T/qpN5k2fboRyzFGFmKsTGViquyM5QHKUy48OZoca8kw4ajaDPyw==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.24.9
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT nkxuuZFVlA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.24.9
/@babel/[email protected]:
resolution: {integrity: sha512-8AyH3C 74cgCVVXow/myrynrAGv nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/traverse': 7.24.8
'@babel/types': 7.24.9
transitivePeerDependencies:
- supports-color
/@babel/[email protected]:
resolution: {integrity: sha512-KYNqY0ICwfv19b31XzvmI/mfcylOzbLtowkw mfvGPAQ3kfCnMLYbED3YecL5tPd8nAYFQFAd6JHp2LxZk/J1g==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-environment-visitor': 7.18.9
'@babel/helper-module-imports': 7.18.6
'@babel/helper-simple-access': 7.18.6
'@babel/helper-split-export-declaration': 7.18.6
'@babel/helper-validator-identifier': 7.18.6
'@babel/template': 7.18.10
'@babel/traverse': 7.18.13
'@babel/types': 7.23.0
transitivePeerDependencies:
- supports-color
/@babel/[email protected](@babel/[email protected]):
resolution: {integrity: sha512-oYbh rtFKj/HwBQkFlUzvcybzklmVdVV3UU mN7n2t/q3yGHbuVdNxyFvSBO1tfvjyArpHNcWMAzsSPdyI46hw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.24.9
'@babel/helper-environment-visitor': 7.24.7
'@babel/helper-module-imports': 7.24.7
'@babel/helper-simple-access': 7.24.7
'@babel/helper-split-export-declaration': 7.24.7
'@babel/helper-validator-identifier': 7.24.7
transitivePeerDependencies:
- supports-color
/@babel/[email protected]:
resolution: {integrity: sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z 1w==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.24.9
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR sJNOZjJJGiOpb fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==}
engines: {node: '>=6.9.0'}
/@babel/[email protected]:
resolution: {integrity: sha512-y9vsWilTNaVnVh6xiJfABzsNpgDPKev9HnAgz6Gb1p6UUwf9NepdlsV7VXGCftJM jqD5f7JIEubcpLjZj5dBw==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-environment-visitor': 7.24.7
'@babel/helper-member-expression-to-functions': 7.17.7
'@babel/helper-optimise-call-expression': 7.16.7
'@babel/traverse': 7.24.8
'@babel/types': 7.24.9
transitivePeerDependencies:
- supports-color
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-iNpIgTgyAvDQpDj76POqg YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg GLbUa1g==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.24.9
/@babel/[email protected]:
resolution: {integrity: sha512-zBAIvbCMh5Ts b86r/CjU 4XGYIs R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6 owc5QMYg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/traverse': 7.24.8
'@babel/types': 7.24.9
transitivePeerDependencies:
- supports-color
/@babel/[email protected]:
resolution: {integrity: sha512- il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL 3zw==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.24.9
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf 8 JA25ZsIpZhT/WEd39 vOdLXAFG/nELpA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.23.0
/@babel/[email protected]:
resolution: {integrity: sha512-oy5V7pD UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.24.9
/@babel/[email protected]:
resolution: {integrity: sha512-mM4COjgZox8U JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv XD GrqNumY5JRCDw==}
engines: {node: '>=6.9.0'}
/@babel/[email protected]:
resolution: {integrity: sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT vMD0kPeD so0l7mxkMT19g3pjY9GTnHySck/hDzq dtW/4VgnMkippsQ==}
engines: {node: '>=6.9.0'}
/@babel/[email protected]:
resolution: {integrity: sha512-MmetCkz9ej86nJQV sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi AYZ3b1TpN9g==}
engines: {node: '>=6.9.0'}
/@babel/[email protected]:
resolution: {integrity: sha512-Y4OZ ytlatR8AI 8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D KkdJCGPq/ 8TukHBlY10FX9A==}
engines: {node: '>=6.9.0'}
/@babel/[email protected]:
resolution: {integrity: sha512-rR PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==}
engines: {node: '>=6.9.0'}
/@babel/[email protected]:
resolution: {integrity: sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT 01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x KQw==}
engines: {node: '>=6.9.0'}
/@babel/[email protected]:
resolution: {integrity: sha512-xb8t9tD1MHLungh/AIoWYN gVHaB9kwlu8gffXGSt3FFEIT7RjS xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==}
engines: {node: '>=6.9.0'}
/@babel/[email protected]:
resolution: {integrity: sha512-Jf5a rbrLoR4eNdUmnFu8cN5eNJT6qdTdOg5IHIzq87WwyRw9PwguLFOWYgktN/60IP4fgDUawJvs7PjQIzELQ==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.18.10
'@babel/traverse': 7.18.13
'@babel/types': 7.23.0
transitivePeerDependencies:
- supports-color
/@babel/[email protected]:
resolution: {integrity: sha512-gV2265Nkcz7weJJfvDoAEVzC1e2OTDpkGbEsebse8koXUJUXPsCMi7sRo/ SPMuMZ9MtUPnGwITTnQnU5YjyaQ==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.24.7
'@babel/types': 7.24.9
/@babel/[email protected]:
resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-validator-identifier': 7.24.7
chalk: 2.4.2
js-tokens: 4.0.0
/@babel/[email protected]:
resolution: {integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq A==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-validator-identifier': 7.24.7
chalk: 2.4.2
js-tokens: 4.0.0
/@babel/[email protected]:
resolution: {integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-validator-identifier': 7.24.7
chalk: 2.4.2
js-tokens: 4.0.0
picocolors: 1.0.1
/@babel/[email protected]:
resolution: {integrity: sha512-q5PNg/Bi1OpGgx5jYlvWZwAorZepEudDMCLtj967aeS7WMont7dUZI46M2XwcIQqvUlMxWfdLFu4S/qSxeUu5g==}
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
'@babel/types': 7.23.0
/@babel/[email protected]:
resolution: {integrity: sha512-WzfbgXOkGzZiXXCqk43kKwZjzwx4oulxZi3nq2TYL9mOjQv6kYwul9mz6ID36njuL7Xkp6nJEfok848Zj10j/w==}
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
'@babel/types': 7.24.9
/@babel/[email protected](@babel/[email protected]):
resolution: {integrity: sha512-IobU0Xme31ewjYOShSIqd/ZGM/r/cuOz2z0MDbNrhF5FW ZVgi0f2lyeoj9KFPDOAqsYxmLWZte1WOwlvY9aww==}
engines: {node: '>=6.9.0'}
deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.24.9
'@babel/helper-create-class-features-plugin': 7.17.6(@babel/[email protected])
'@babel/helper-plugin-utils': 7.18.9
transitivePeerDependencies:
- supports-color
dev: true
/@babel/[email protected](@babel/[email protected]):
resolution: {integrity: sha512-yuL5iQA/TbZn RGAfxQXfi7CNLmKi1f8zInn4IgobuCWcAb7i zj4TYzQ9l8cEzVyJ89PDGuqxK1xZpUDISesw==}
engines: {node: '>=6.9.0'}
deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/compat-data': 7.24.9
'@babel/core': 7.24.9
'@babel/helper-compilation-targets': 7.24.8
'@babel/helper-plugin-utils': 7.18.9
'@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/[email protected])
'@babel/plugin-transform-parameters': 7.16.7(@babel/[email protected])
dev: true
/@babel/[email protected](@babel/[email protected]):
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.24.9
'@babel/helper-plugin-utils': 7.18.9
dev: true
/@babel/[email protected](@babel/[email protected]):
resolution: {integrity: sha512-wnTnFlG YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU zL3Npg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.24.9
'@babel/helper-plugin-utils': 7.18.9
dev: true