-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyarn.lock
7213 lines (6616 loc) · 259 KB
/
yarn.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
# This file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 8
cacheKey: 10c0
"@adobe/react-spectrum-ui@npm:1.2.1":
version: 1.2.1
resolution: "@adobe/react-spectrum-ui@npm:1.2.1"
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
checksum: 10c0/2166a623a07b9892466e4287e6841a9e5f7e6d4ef6d2c227601ceb6b01fa9f84a2553103d435b1e6a6606a47e3a23474df90bd97b12ea8e3c4d0c8bc632377d3
languageName: node
linkType: hard
"@adobe/react-spectrum-workflow@npm:2.3.5":
version: 2.3.5
resolution: "@adobe/react-spectrum-workflow@npm:2.3.5"
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
checksum: 10c0/65de62192cc28528befd5e8faaa3c6d188638501571df13ef045079f0a20e4cf41f352c06c4b0fe6ea17a9f037368fd774e41b9a36379a755dad8409a6f72ace
languageName: node
linkType: hard
"@adobe/react-spectrum@npm:3.37.1":
version: 3.37.1
resolution: "@adobe/react-spectrum@npm:3.37.1"
dependencies:
"@internationalized/string": "npm:^3.2.4"
"@react-aria/i18n": "npm:^3.12.3"
"@react-aria/ssr": "npm:^3.9.6"
"@react-aria/utils": "npm:^3.25.3"
"@react-aria/visually-hidden": "npm:^3.8.17"
"@react-spectrum/actionbar": "npm:^3.6.1"
"@react-spectrum/actiongroup": "npm:^3.10.9"
"@react-spectrum/avatar": "npm:^3.0.16"
"@react-spectrum/badge": "npm:^3.1.17"
"@react-spectrum/breadcrumbs": "npm:^3.9.11"
"@react-spectrum/button": "npm:^3.16.8"
"@react-spectrum/buttongroup": "npm:^3.6.16"
"@react-spectrum/calendar": "npm:^3.4.13"
"@react-spectrum/checkbox": "npm:^3.9.10"
"@react-spectrum/color": "npm:^3.0.1"
"@react-spectrum/combobox": "npm:^3.13.4"
"@react-spectrum/contextualhelp": "npm:^3.6.15"
"@react-spectrum/datepicker": "npm:^3.10.3"
"@react-spectrum/dialog": "npm:^3.8.15"
"@react-spectrum/divider": "npm:^3.5.17"
"@react-spectrum/dnd": "npm:^3.4.3"
"@react-spectrum/dropzone": "npm:^3.0.5"
"@react-spectrum/filetrigger": "npm:^3.0.5"
"@react-spectrum/form": "npm:^3.7.9"
"@react-spectrum/icon": "npm:^3.7.16"
"@react-spectrum/illustratedmessage": "npm:^3.5.4"
"@react-spectrum/image": "npm:^3.5.5"
"@react-spectrum/inlinealert": "npm:^3.2.9"
"@react-spectrum/labeledvalue": "npm:^3.1.17"
"@react-spectrum/layout": "npm:^3.6.9"
"@react-spectrum/link": "npm:^3.6.11"
"@react-spectrum/list": "npm:^3.8.3"
"@react-spectrum/listbox": "npm:^3.13.3"
"@react-spectrum/menu": "npm:^3.20.5"
"@react-spectrum/meter": "npm:^3.5.4"
"@react-spectrum/numberfield": "npm:^3.9.7"
"@react-spectrum/overlays": "npm:^5.6.5"
"@react-spectrum/picker": "npm:^3.15.3"
"@react-spectrum/progress": "npm:^3.7.10"
"@react-spectrum/provider": "npm:^3.9.12"
"@react-spectrum/radio": "npm:^3.7.10"
"@react-spectrum/searchfield": "npm:^3.8.10"
"@react-spectrum/slider": "npm:^3.6.13"
"@react-spectrum/statuslight": "npm:^3.5.16"
"@react-spectrum/switch": "npm:^3.5.9"
"@react-spectrum/table": "npm:^3.14.1"
"@react-spectrum/tabs": "npm:^3.8.14"
"@react-spectrum/tag": "npm:^3.2.10"
"@react-spectrum/text": "npm:^3.5.9"
"@react-spectrum/textfield": "npm:^3.12.6"
"@react-spectrum/theme-dark": "npm:^3.5.13"
"@react-spectrum/theme-default": "npm:^3.5.13"
"@react-spectrum/theme-light": "npm:^3.4.13"
"@react-spectrum/tooltip": "npm:^3.6.11"
"@react-spectrum/view": "npm:^3.6.13"
"@react-spectrum/well": "npm:^3.4.17"
"@react-stately/collections": "npm:^3.11.0"
"@react-stately/data": "npm:^3.11.7"
"@react-types/shared": "npm:^3.25.0"
client-only: "npm:^0.0.1"
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
checksum: 10c0/0943de6e592a3d33729bb8eb89b790acf83876decaa5be4bca1585282f477a95dc45b8b0b66adb5ce44daa36835f7bed59034707f920e120237a9fd95aa7ce01
languageName: node
linkType: hard
"@alcalzone/ansi-tokenize@npm:^0.1.3":
version: 0.1.3
resolution: "@alcalzone/ansi-tokenize@npm:0.1.3"
dependencies:
ansi-styles: "npm:^6.2.1"
is-fullwidth-code-point: "npm:^4.0.0"
checksum: 10c0/b88c5708271bb64ce132fc80dac8d5b87fc1699bf3abfdf10ecae40dbb56ab82460818f5746ecdd9870a00be9854e039d5cb3a121b808d0ff6f5bc7d0146cb38
languageName: node
linkType: hard
"@aws-crypto/ie11-detection@npm:^2.0.2":
version: 2.0.2
resolution: "@aws-crypto/ie11-detection@npm:2.0.2"
dependencies:
tslib: "npm:^1.11.1"
checksum: 10c0/72671bc2e9636b43d1ceb9674305af499b101a21d7bc174023800e20fe2e4dd27011a25c20412c374e50a35eaa21d31fb4599f8413f4909bac473b1341eb4712
languageName: node
linkType: hard
"@aws-crypto/sha256-browser@npm:^2.0.2":
version: 2.0.2
resolution: "@aws-crypto/sha256-browser@npm:2.0.2"
dependencies:
"@aws-crypto/ie11-detection": "npm:^2.0.2"
"@aws-crypto/sha256-js": "npm:^2.0.2"
"@aws-crypto/supports-web-crypto": "npm:^2.0.2"
"@aws-crypto/util": "npm:^2.0.2"
"@aws-sdk/types": "npm:^3.110.0"
"@aws-sdk/util-locate-window": "npm:^3.0.0"
"@aws-sdk/util-utf8-browser": "npm:^3.0.0"
tslib: "npm:^1.11.1"
checksum: 10c0/e618e8e5dd27cc221746f2daecde2f9c78c6118ef6adc4465674744fdee72e8b48f20b364304c9021c072c4b61b60f4e811d107f108bdc031b96841199e45eb1
languageName: node
linkType: hard
"@aws-crypto/sha256-js@npm:^2.0.2":
version: 2.0.2
resolution: "@aws-crypto/sha256-js@npm:2.0.2"
dependencies:
"@aws-crypto/util": "npm:^2.0.2"
"@aws-sdk/types": "npm:^3.110.0"
tslib: "npm:^1.11.1"
checksum: 10c0/c1636d357e30a4c074aadc08dcea04d7beb129297cefb951b111263af405c72980108d7f2b28b888350ad8f3854d91f25bbabc88da0a1a8a57e6616899d11d6f
languageName: node
linkType: hard
"@aws-crypto/sha256-universal@npm:^2.0.0":
version: 2.0.2
resolution: "@aws-crypto/sha256-universal@npm:2.0.2"
dependencies:
"@aws-crypto/sha256-browser": "npm:^2.0.2"
"@aws-sdk/hash-node": "npm:^3.110.0"
"@aws-sdk/types": "npm:^3.110.0"
tslib: "npm:^1.11.1"
checksum: 10c0/a2da9f9446233121a7d10b492e16b161824706e4310673331acc393612bfb70c37feea3f9582842f677b1c1f353818fec00d47b5fc30ea6ef1bc92c8219f9d01
languageName: node
linkType: hard
"@aws-crypto/supports-web-crypto@npm:^2.0.2":
version: 2.0.2
resolution: "@aws-crypto/supports-web-crypto@npm:2.0.2"
dependencies:
tslib: "npm:^1.11.1"
checksum: 10c0/9c25f3c1d273accfd3806c5746acee4e23eccee8fdaa2d6c79fbf5e1d85a7dcddc68161dc09a1c95cb50be0439853652625a6f0fa0ab6f100280a12cd54da63a
languageName: node
linkType: hard
"@aws-crypto/util@npm:^2.0.2":
version: 2.0.2
resolution: "@aws-crypto/util@npm:2.0.2"
dependencies:
"@aws-sdk/types": "npm:^3.110.0"
"@aws-sdk/util-utf8-browser": "npm:^3.0.0"
tslib: "npm:^1.11.1"
checksum: 10c0/9b6f903fdfce26e41cdccb643cc38b27f9929f6b72a2a6b461208f38e65174117b6a7f5c75310d3afc84d3ec16177f2252ec8ad0c95c416db5b090fcb3e35be0
languageName: node
linkType: hard
"@aws-sdk/hash-node@npm:^3.110.0":
version: 3.370.0
resolution: "@aws-sdk/hash-node@npm:3.370.0"
dependencies:
"@aws-sdk/types": "npm:3.370.0"
"@aws-sdk/util-buffer-from": "npm:3.310.0"
"@aws-sdk/util-utf8": "npm:3.310.0"
tslib: "npm:^2.5.0"
checksum: 10c0/afd7b3a932f883264883db2e91085ff38f08d1ac22e98118506ff30c05cb02c2284110dcb905875b88af891eb286f4c75cde24de0094618f164c39928200f9f7
languageName: node
linkType: hard
"@aws-sdk/is-array-buffer@npm:3.310.0":
version: 3.310.0
resolution: "@aws-sdk/is-array-buffer@npm:3.310.0"
dependencies:
tslib: "npm:^2.5.0"
checksum: 10c0/9e409bbdcf40aba872cdaa573adebd1bfebd0af4afedd1645d6782a8e0f942aeb53cb65da510ec52a8291682187f6b7091fd7d2631193a747c211ef6efae7960
languageName: node
linkType: hard
"@aws-sdk/types@npm:3.370.0":
version: 3.370.0
resolution: "@aws-sdk/types@npm:3.370.0"
dependencies:
"@smithy/types": "npm:^1.1.0"
tslib: "npm:^2.5.0"
checksum: 10c0/6a9d94014a83b4e1682529a36ef98f177ece93d2a738559c5bfc670df65c63315d183dcb7aa6c36dd0981a830094d83aa20e3c15afa8a4651fcbdf8f9f669184
languageName: node
linkType: hard
"@aws-sdk/types@npm:^3.110.0":
version: 3.696.0
resolution: "@aws-sdk/types@npm:3.696.0"
dependencies:
"@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
checksum: 10c0/3721939d5dd2a68fa4aee89d56b4817dd6c020721e2b2ea5b702968e7055826eb37e1924bc298007686304bf9bb6623bfec26b5cfd0663f2dba9d1b48437bb91
languageName: node
linkType: hard
"@aws-sdk/util-buffer-from@npm:3.310.0":
version: 3.310.0
resolution: "@aws-sdk/util-buffer-from@npm:3.310.0"
dependencies:
"@aws-sdk/is-array-buffer": "npm:3.310.0"
tslib: "npm:^2.5.0"
checksum: 10c0/48b7aa3041607527c0f0b0e27ede2522b3f79555bd541b62ed44dea64ac443442139040d3a7d65cc3f81210567e8e7b1a77a5bd7bfecf70564b51b8d2a9fd972
languageName: node
linkType: hard
"@aws-sdk/util-locate-window@npm:^3.0.0":
version: 3.693.0
resolution: "@aws-sdk/util-locate-window@npm:3.693.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10c0/68630e3b6e7f47ec05c92a7f2369464f5fcd218d4dc5c4103465681424b64072d290ab565938449c0afa312cfce200e553e4a14d6a411542069d95880f3434f5
languageName: node
linkType: hard
"@aws-sdk/util-utf8-browser@npm:^3.0.0":
version: 3.259.0
resolution: "@aws-sdk/util-utf8-browser@npm:3.259.0"
dependencies:
tslib: "npm:^2.3.1"
checksum: 10c0/ff56ff252c0ea22b760b909ba5bbe9ca59a447066097e73b1e2ae50a6d366631ba560c373ec4e83b3e225d16238eeaf8def210fdbf135070b3dd3ceb1cc2ef9a
languageName: node
linkType: hard
"@aws-sdk/util-utf8@npm:3.310.0":
version: 3.310.0
resolution: "@aws-sdk/util-utf8@npm:3.310.0"
dependencies:
"@aws-sdk/util-buffer-from": "npm:3.310.0"
tslib: "npm:^2.5.0"
checksum: 10c0/aa275ca273ca7590947d4134aa4745e2724683b44bc5cd9837bd481a31f3d44e3a017909603b079171edb576b73889e9cd9de5bf8cac1bfce746673311a992e4
languageName: node
linkType: hard
"@babel/runtime@npm:^7.5.5, @babel/runtime@npm:^7.8.7":
version: 7.25.6
resolution: "@babel/runtime@npm:7.25.6"
dependencies:
regenerator-runtime: "npm:^0.14.0"
checksum: 10c0/d6143adf5aa1ce79ed374e33fdfd74fa975055a80bc6e479672ab1eadc4e4bfd7484444e17dd063a1d180e051f3ec62b357c7a2b817e7657687b47313158c3d2
languageName: node
linkType: hard
"@effect/cli@npm:^0.44.4":
version: 0.44.5
resolution: "@effect/cli@npm:0.44.5"
dependencies:
ini: "npm:^4.1.3"
toml: "npm:^3.0.0"
yaml: "npm:^2.5.0"
peerDependencies:
"@effect/platform": ^0.65.5
"@effect/printer": ^0.36.3
"@effect/printer-ansi": ^0.36.3
"@effect/schema": ^0.73.4
effect: ^3.8.3
checksum: 10c0/f1f971d69e003ba703556e9b16a798eb77cdb1445ca11b924eb8c61c2d937e5f57395cdbfce81106d2ed0aee9ccffb15e41de17b58f2b84559c5f60fc1f98292
languageName: node
linkType: hard
"@effect/platform-node-shared@npm:^0.15.5":
version: 0.15.5
resolution: "@effect/platform-node-shared@npm:0.15.5"
dependencies:
"@parcel/watcher": "npm:^2.4.1"
multipasta: "npm:^0.2.5"
peerDependencies:
"@effect/platform": ^0.65.5
effect: ^3.8.3
checksum: 10c0/ff163ed4ba4b25d38fee69773603959b81a58ce1649cc3b444d21781cd348243d0a03e146c766310cfe9a858e08284c5f90e70c9a4042894717df0a39539c22d
languageName: node
linkType: hard
"@effect/platform-node@npm:^0.60.4":
version: 0.60.5
resolution: "@effect/platform-node@npm:0.60.5"
dependencies:
"@effect/platform-node-shared": "npm:^0.15.5"
mime: "npm:^3.0.0"
undici: "npm:^6.19.7"
ws: "npm:^8.18.0"
peerDependencies:
"@effect/platform": ^0.65.5
effect: ^3.8.3
checksum: 10c0/2e786d817534a0eed5cb7d1c12ec87be8adb78a3d2e5eea7289d7e4cd20d1b40baa133accac8b174be87a1ca3d1e6bef474370120922a81864492f660c5f0228
languageName: node
linkType: hard
"@effect/platform@npm:^0.65.4":
version: 0.65.5
resolution: "@effect/platform@npm:0.65.5"
dependencies:
find-my-way-ts: "npm:^0.1.5"
multipasta: "npm:^0.2.5"
peerDependencies:
"@effect/schema": ^0.73.4
effect: ^3.8.3
checksum: 10c0/dbb1d4fc8f60694c466167d2d6108651a3c45c7747f1583cf5074ea27a02394663c5844e796e0acad87e8786c8b4042cb82ee537f9e0a2b88c0d4e0272f057b7
languageName: node
linkType: hard
"@effect/printer-ansi@npm:^0.36.2":
version: 0.36.3
resolution: "@effect/printer-ansi@npm:0.36.3"
dependencies:
"@effect/printer": "npm:^0.36.3"
peerDependencies:
"@effect/typeclass": ^0.27.3
effect: ^3.8.3
checksum: 10c0/d460a1d2490ed41f0bbbbba64915551b8fe90868f173bc7f8ab2bf1740e9c5769ba7ef835b6fb2b848efdf161dc0ab6dd132cb633b2a482b5eb31955a29d4a9e
languageName: node
linkType: hard
"@effect/printer@npm:^0.36.2, @effect/printer@npm:^0.36.3":
version: 0.36.3
resolution: "@effect/printer@npm:0.36.3"
peerDependencies:
"@effect/typeclass": ^0.27.3
effect: ^3.8.3
checksum: 10c0/35a65a0cab863e8d7e416b269ae957dcc5963484efeda5ee63fd7173242f03bbd58834d85b1e9ef1e99b400dc81ea56ee6cfa1dcb993df9eee525397a540a4d7
languageName: node
linkType: hard
"@effect/schema@npm:^0.73.3":
version: 0.73.4
resolution: "@effect/schema@npm:0.73.4"
dependencies:
fast-check: "npm:^3.21.0"
peerDependencies:
effect: ^3.8.3
checksum: 10c0/5ad9fe9e8b3ce5fce14737f187264d4a1aafc4a55a3b3964fdd93a54850e56a7ae53d2f0bf5bfbefcae2ce64a8602abaf90221b4392808ed9fd460f1ce6e56c2
languageName: node
linkType: hard
"@effect/schema@npm:^0.74.0":
version: 0.74.0
resolution: "@effect/schema@npm:0.74.0"
dependencies:
fast-check: "npm:^3.21.0"
peerDependencies:
effect: ^3.8.3
checksum: 10c0/ab7d30d101998ee1117a4dae70f1bc20c29799f8cacf3416629965d20cf21fe12dcabc1dcdf9a686c062a293ec82a0ecf44b4a4e7b80f354c732ac5790dc8223
languageName: node
linkType: hard
"@effect/schema@npm:^0.75.3":
version: 0.75.3
resolution: "@effect/schema@npm:0.75.3"
dependencies:
fast-check: "npm:^3.21.0"
peerDependencies:
effect: ^3.9.1
checksum: 10c0/3b44bd31e45c02bef7d571582753c1df2f0b236133e3c793010002f435537e159cd97004bbd0c37218af813c2c898d3af47ca3bdf7a38e7cf29bde5d0bdf4ae9
languageName: node
linkType: hard
"@effect/typeclass@npm:^0.27.2":
version: 0.27.3
resolution: "@effect/typeclass@npm:0.27.3"
peerDependencies:
effect: ^3.8.3
checksum: 10c0/7181fa1b8a35703d6aac4a6096e9b4e2f3b8ec36b454d648ef5bd68a989184cbf44e6d55ad7f191dd2509f89c80c07ff28b856c8ddf817cbc2c2226e0439db7b
languageName: node
linkType: hard
"@esbuild/aix-ppc64@npm:0.23.1":
version: 0.23.1
resolution: "@esbuild/aix-ppc64@npm:0.23.1"
conditions: os=aix & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/aix-ppc64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/aix-ppc64@npm:0.24.0"
conditions: os=aix & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.23.1":
version: 0.23.1
resolution: "@esbuild/android-arm64@npm:0.23.1"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/android-arm64@npm:0.24.0"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.23.1":
version: 0.23.1
resolution: "@esbuild/android-arm@npm:0.23.1"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/android-arm@npm:0.24.0"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.23.1":
version: 0.23.1
resolution: "@esbuild/android-x64@npm:0.23.1"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/android-x64@npm:0.24.0"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.23.1":
version: 0.23.1
resolution: "@esbuild/darwin-arm64@npm:0.23.1"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/darwin-arm64@npm:0.24.0"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.23.1":
version: 0.23.1
resolution: "@esbuild/darwin-x64@npm:0.23.1"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/darwin-x64@npm:0.24.0"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/freebsd-arm64@npm:0.23.1":
version: 0.23.1
resolution: "@esbuild/freebsd-arm64@npm:0.23.1"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/freebsd-arm64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/freebsd-arm64@npm:0.24.0"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/freebsd-x64@npm:0.23.1":
version: 0.23.1
resolution: "@esbuild/freebsd-x64@npm:0.23.1"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/freebsd-x64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/freebsd-x64@npm:0.24.0"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/linux-arm64@npm:0.23.1":
version: 0.23.1
resolution: "@esbuild/linux-arm64@npm:0.23.1"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@esbuild/linux-arm64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/linux-arm64@npm:0.24.0"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@esbuild/linux-arm@npm:0.23.1":
version: 0.23.1
resolution: "@esbuild/linux-arm@npm:0.23.1"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@esbuild/linux-arm@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/linux-arm@npm:0.24.0"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@esbuild/linux-ia32@npm:0.23.1":
version: 0.23.1
resolution: "@esbuild/linux-ia32@npm:0.23.1"
conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
"@esbuild/linux-ia32@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/linux-ia32@npm:0.24.0"
conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.23.1":
version: 0.23.1
resolution: "@esbuild/linux-loong64@npm:0.23.1"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/linux-loong64@npm:0.24.0"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
"@esbuild/linux-mips64el@npm:0.23.1":
version: 0.23.1
resolution: "@esbuild/linux-mips64el@npm:0.23.1"
conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
"@esbuild/linux-mips64el@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/linux-mips64el@npm:0.24.0"
conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
"@esbuild/linux-ppc64@npm:0.23.1":
version: 0.23.1
resolution: "@esbuild/linux-ppc64@npm:0.23.1"
conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/linux-ppc64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/linux-ppc64@npm:0.24.0"
conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/linux-riscv64@npm:0.23.1":
version: 0.23.1
resolution: "@esbuild/linux-riscv64@npm:0.23.1"
conditions: os=linux & cpu=riscv64
languageName: node
linkType: hard
"@esbuild/linux-riscv64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/linux-riscv64@npm:0.24.0"
conditions: os=linux & cpu=riscv64
languageName: node
linkType: hard
"@esbuild/linux-s390x@npm:0.23.1":
version: 0.23.1
resolution: "@esbuild/linux-s390x@npm:0.23.1"
conditions: os=linux & cpu=s390x
languageName: node
linkType: hard
"@esbuild/linux-s390x@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/linux-s390x@npm:0.24.0"
conditions: os=linux & cpu=s390x
languageName: node
linkType: hard
"@esbuild/linux-x64@npm:0.23.1":
version: 0.23.1
resolution: "@esbuild/linux-x64@npm:0.23.1"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@esbuild/linux-x64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/linux-x64@npm:0.24.0"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@esbuild/netbsd-x64@npm:0.23.1":
version: 0.23.1
resolution: "@esbuild/netbsd-x64@npm:0.23.1"
conditions: os=netbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/netbsd-x64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/netbsd-x64@npm:0.24.0"
conditions: os=netbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/openbsd-arm64@npm:0.23.1":
version: 0.23.1
resolution: "@esbuild/openbsd-arm64@npm:0.23.1"
conditions: os=openbsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/openbsd-arm64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/openbsd-arm64@npm:0.24.0"
conditions: os=openbsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/openbsd-x64@npm:0.23.1":
version: 0.23.1
resolution: "@esbuild/openbsd-x64@npm:0.23.1"
conditions: os=openbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/openbsd-x64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/openbsd-x64@npm:0.24.0"
conditions: os=openbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/sunos-x64@npm:0.23.1":
version: 0.23.1
resolution: "@esbuild/sunos-x64@npm:0.23.1"
conditions: os=sunos & cpu=x64
languageName: node
linkType: hard
"@esbuild/sunos-x64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/sunos-x64@npm:0.24.0"
conditions: os=sunos & cpu=x64
languageName: node
linkType: hard
"@esbuild/win32-arm64@npm:0.23.1":
version: 0.23.1
resolution: "@esbuild/win32-arm64@npm:0.23.1"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@esbuild/win32-arm64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/win32-arm64@npm:0.24.0"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@esbuild/win32-ia32@npm:0.23.1":
version: 0.23.1
resolution: "@esbuild/win32-ia32@npm:0.23.1"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@esbuild/win32-ia32@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/win32-ia32@npm:0.24.0"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@esbuild/win32-x64@npm:0.23.1":
version: 0.23.1
resolution: "@esbuild/win32-x64@npm:0.23.1"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@esbuild/win32-x64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/win32-x64@npm:0.24.0"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@formatjs/ecma402-abstract@npm:2.0.0":
version: 2.0.0
resolution: "@formatjs/ecma402-abstract@npm:2.0.0"
dependencies:
"@formatjs/intl-localematcher": "npm:0.5.4"
tslib: "npm:^2.4.0"
checksum: 10c0/94cba291aeadffa3ca416087c2c2352c8a741bb4dcb7f47f15c247b1f043ffcef1af5b20a1b7578fbba9e704fc5f1c079923f3537a273d50162be62f8037625c
languageName: node
linkType: hard
"@formatjs/fast-memoize@npm:2.2.0":
version: 2.2.0
resolution: "@formatjs/fast-memoize@npm:2.2.0"
dependencies:
tslib: "npm:^2.4.0"
checksum: 10c0/ae88c5a93b96235aba4bd9b947d0310d2ec013687a99133413361b24122b5cdea8c9bf2e04a4a2a8b61f1f4ee5419ef6416ca4796554226b5050e05a9ce6ef49
languageName: node
linkType: hard
"@formatjs/icu-messageformat-parser@npm:2.7.8":
version: 2.7.8
resolution: "@formatjs/icu-messageformat-parser@npm:2.7.8"
dependencies:
"@formatjs/ecma402-abstract": "npm:2.0.0"
"@formatjs/icu-skeleton-parser": "npm:1.8.2"
tslib: "npm:^2.4.0"
checksum: 10c0/a3b759a825fb22ffd7b906f6a07b1a079bbc34f72c745de2c2514e439c4bb75bc1a9442eba1bac7ff3ea3010e12076374cd755ad12116b1d066cc90da5fbcbc9
languageName: node
linkType: hard
"@formatjs/icu-skeleton-parser@npm:1.8.2":
version: 1.8.2
resolution: "@formatjs/icu-skeleton-parser@npm:1.8.2"
dependencies:
"@formatjs/ecma402-abstract": "npm:2.0.0"
tslib: "npm:^2.4.0"
checksum: 10c0/9b15013acc47b8d560b52942e3dab2abaaa9c5a4410bbd1d490a4b22bf5ca36fdd88b71f241d05479bddf856d0d1d57b7ecc9e79738497ac518616aa6d4d0015
languageName: node
linkType: hard
"@formatjs/intl-localematcher@npm:0.5.4":
version: 0.5.4
resolution: "@formatjs/intl-localematcher@npm:0.5.4"
dependencies:
tslib: "npm:^2.4.0"
checksum: 10c0/c9ff5d34ca8b6fe59f8f303a3cc31a92d343e095a6987e273e5cc23f0fe99feb557a392a05da95931c7d24106acb6988e588d00ddd05b0934005aafd7fdbafe6
languageName: node
linkType: hard
"@hyrious/esbuild-plugin-commonjs@npm:^0.2.4":
version: 0.2.4
resolution: "@hyrious/esbuild-plugin-commonjs@npm:0.2.4"
peerDependencies:
cjs-module-lexer: "*"
esbuild: "*"
peerDependenciesMeta:
cjs-module-lexer:
optional: true
checksum: 10c0/f8466056c28914351b04cbc3a0eb4397b83d2b6ea1b2adb5ce524ecd193b42aef9865d71ed417b4d8bf5a1ebc14ced1ea67e84b7558120abb461b3f6e09c789e
languageName: node
linkType: hard
"@inkjs/ui@npm:2.0.0":
version: 2.0.0
resolution: "@inkjs/ui@npm:2.0.0"
dependencies:
chalk: "npm:^5.3.0"
cli-spinners: "npm:^3.0.0"
deepmerge: "npm:^4.3.1"
figures: "npm:^6.1.0"
peerDependencies:
ink: ">=5"
checksum: 10c0/dad9cd79d35853ab6c60316e8a28e5b7ef70a141091dad889a3dc6c04be58675a7bfd94beaef0ffc1d55b408fedf9f60809aecafd91f00988ec7300d5ba05971
languageName: node
linkType: hard
"@internationalized/date@npm:^3.5.6":
version: 3.5.6
resolution: "@internationalized/date@npm:3.5.6"
dependencies:
"@swc/helpers": "npm:^0.5.0"
checksum: 10c0/25d3150247175892705aeaf8e1a78295717d420c37cb3065a766c4058a1aed460a69dc5362f7073425c95095c27036c7ed65f0ce5fbb32b20f917132e8dc543f
languageName: node
linkType: hard
"@internationalized/message@npm:^3.1.5":
version: 3.1.5
resolution: "@internationalized/message@npm:3.1.5"
dependencies:
"@swc/helpers": "npm:^0.5.0"
intl-messageformat: "npm:^10.1.0"
checksum: 10c0/81a2ef21154d0b00796fd2ecfb5365248fe50f64a7ad1616dbe4e491555e7e018557b061df145d0ab5b68cb1e757ac203d3892c42f791f169360b98d77fa5091
languageName: node
linkType: hard
"@internationalized/number@npm:^3.5.4":
version: 3.5.4
resolution: "@internationalized/number@npm:3.5.4"
dependencies:
"@swc/helpers": "npm:^0.5.0"
checksum: 10c0/d01a1845ad9815756ceb59eeb75792ee89105d073ce232350c0644453a3470e3ebaffc2b00ebd2dd8238957b0ae12d1551633308897fa9c332dda82f2af8c5cf
languageName: node
linkType: hard
"@internationalized/string@npm:^3.2.4":
version: 3.2.4
resolution: "@internationalized/string@npm:3.2.4"
dependencies:
"@swc/helpers": "npm:^0.5.0"
checksum: 10c0/5a03ff3d7bea1eb0e7ef8f7b00d148b6b8afa90600434db61389e6a8a83e3ca89e469c730eb02ef6284e7b559ce4be8f46cb446387e137931bc47acb8cbcd841
languageName: node
linkType: hard
"@isaacs/cliui@npm:^8.0.2":
version: 8.0.2
resolution: "@isaacs/cliui@npm:8.0.2"
dependencies:
string-width: "npm:^5.1.2"
string-width-cjs: "npm:string-width@^4.2.0"
strip-ansi: "npm:^7.0.1"
strip-ansi-cjs: "npm:strip-ansi@^6.0.1"
wrap-ansi: "npm:^8.1.0"
wrap-ansi-cjs: "npm:wrap-ansi@^7.0.0"
checksum: 10c0/b1bf42535d49f11dc137f18d5e4e63a28c5569de438a221c369483731e9dac9fb797af554e8bf02b6192d1e5eba6e6402cf93900c3d0ac86391d00d04876789e
languageName: node
linkType: hard
"@npmcli/agent@npm:^2.0.0":
version: 2.2.2
resolution: "@npmcli/agent@npm:2.2.2"
dependencies:
agent-base: "npm:^7.1.0"
http-proxy-agent: "npm:^7.0.0"
https-proxy-agent: "npm:^7.0.1"
lru-cache: "npm:^10.0.1"
socks-proxy-agent: "npm:^8.0.3"
checksum: 10c0/325e0db7b287d4154ecd164c0815c08007abfb07653cc57bceded17bb7fd240998a3cbdbe87d700e30bef494885eccc725ab73b668020811d56623d145b524ae
languageName: node
linkType: hard
"@npmcli/fs@npm:^3.1.0":
version: 3.1.1
resolution: "@npmcli/fs@npm:3.1.1"
dependencies:
semver: "npm:^7.3.5"
checksum: 10c0/c37a5b4842bfdece3d14dfdb054f73fe15ed2d3da61b34ff76629fb5b1731647c49166fd2a8bf8b56fcfa51200382385ea8909a3cbecdad612310c114d3f6c99
languageName: node
linkType: hard
"@nytimes/react-prosemirror@npm:^0.7.0-next.10":
version: 0.7.0-next.10
resolution: "@nytimes/react-prosemirror@npm:0.7.0-next.10"
dependencies:
classnames: "npm:^2.3.2"
peerDependencies:
prosemirror-model: ^1.0.0
prosemirror-state: ^1.0.0
prosemirror-view: 1.34.2
react: ">=17"
react-dom: ">=17"
checksum: 10c0/4116cbad1f4f4690a3570c139be0443f2d37d74afe3b353b2448d488a2210aa8a60287fbebc5c83bc36ea26130cbd1a5bbe2c99da4ce54197a7b4363f532dc58
languageName: node
linkType: hard
"@parcel/watcher-android-arm64@npm:2.4.1":
version: 2.4.1
resolution: "@parcel/watcher-android-arm64@npm:2.4.1"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@parcel/watcher-darwin-arm64@npm:2.4.1":
version: 2.4.1
resolution: "@parcel/watcher-darwin-arm64@npm:2.4.1"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@parcel/watcher-darwin-x64@npm:2.4.1":
version: 2.4.1
resolution: "@parcel/watcher-darwin-x64@npm:2.4.1"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@parcel/watcher-freebsd-x64@npm:2.4.1":
version: 2.4.1
resolution: "@parcel/watcher-freebsd-x64@npm:2.4.1"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@parcel/watcher-linux-arm-glibc@npm:2.4.1":
version: 2.4.1
resolution: "@parcel/watcher-linux-arm-glibc@npm:2.4.1"
conditions: os=linux & cpu=arm & libc=glibc
languageName: node
linkType: hard
"@parcel/watcher-linux-arm64-glibc@npm:2.4.1":
version: 2.4.1
resolution: "@parcel/watcher-linux-arm64-glibc@npm:2.4.1"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@parcel/watcher-linux-arm64-musl@npm:2.4.1":
version: 2.4.1
resolution: "@parcel/watcher-linux-arm64-musl@npm:2.4.1"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
"@parcel/watcher-linux-x64-glibc@npm:2.4.1":
version: 2.4.1
resolution: "@parcel/watcher-linux-x64-glibc@npm:2.4.1"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@parcel/watcher-linux-x64-musl@npm:2.4.1":
version: 2.4.1
resolution: "@parcel/watcher-linux-x64-musl@npm:2.4.1"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@parcel/watcher-win32-arm64@npm:2.4.1":
version: 2.4.1
resolution: "@parcel/watcher-win32-arm64@npm:2.4.1"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@parcel/watcher-win32-ia32@npm:2.4.1":
version: 2.4.1
resolution: "@parcel/watcher-win32-ia32@npm:2.4.1"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@parcel/watcher-win32-x64@npm:2.4.1":
version: 2.4.1
resolution: "@parcel/watcher-win32-x64@npm:2.4.1"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@parcel/watcher@npm:^2.4.1":
version: 2.4.1
resolution: "@parcel/watcher@npm:2.4.1"
dependencies:
"@parcel/watcher-android-arm64": "npm:2.4.1"
"@parcel/watcher-darwin-arm64": "npm:2.4.1"
"@parcel/watcher-darwin-x64": "npm:2.4.1"
"@parcel/watcher-freebsd-x64": "npm:2.4.1"
"@parcel/watcher-linux-arm-glibc": "npm:2.4.1"
"@parcel/watcher-linux-arm64-glibc": "npm:2.4.1"
"@parcel/watcher-linux-arm64-musl": "npm:2.4.1"
"@parcel/watcher-linux-x64-glibc": "npm:2.4.1"
"@parcel/watcher-linux-x64-musl": "npm:2.4.1"
"@parcel/watcher-win32-arm64": "npm:2.4.1"
"@parcel/watcher-win32-ia32": "npm:2.4.1"
"@parcel/watcher-win32-x64": "npm:2.4.1"
detect-libc: "npm:^1.0.3"
is-glob: "npm:^4.0.3"
micromatch: "npm:^4.0.5"
node-addon-api: "npm:^7.0.0"
node-gyp: "npm:latest"
dependenciesMeta:
"@parcel/watcher-android-arm64":
optional: true
"@parcel/watcher-darwin-arm64":
optional: true
"@parcel/watcher-darwin-x64":
optional: true
"@parcel/watcher-freebsd-x64":
optional: true