-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpnpm-lock.yaml
3799 lines (3212 loc) · 156 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
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
lockfileVersion: '9.0'
settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
importers:
.:
dependencies:
'@univerjs/presets':
specifier: ^0.5.5
version: 0.5.5(@grpc/grpc-js@1.9.14)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rxjs@7.8.1)(typescript@5.7.2)
devDependencies:
typescript:
specifier: ^5.7.2
version: 5.7.2
vite:
specifier: ^6.0.7
version: 6.0.11(@types/node@22.13.5)
packages:
'@ant-design/fast-color@2.0.6':
resolution: {integrity: sha512-y2217gk4NqL35giHl72o6Zzqji9O7vHh9YmhUVkPtAOpoTCH4uWxo/pr4VE8t0+ChEPs0qo4eJRC5Q1eXWo3vA==}
engines: {node: '>=8.x'}
'@babel/helper-string-parser@7.25.9':
resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-identifier@7.25.9':
resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
engines: {node: '>=6.9.0'}
'@babel/parser@7.26.3':
resolution: {integrity: sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA==}
engines: {node: '>=6.0.0'}
hasBin: true
'@babel/runtime@7.26.0':
resolution: {integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==}
engines: {node: '>=6.9.0'}
'@babel/types@7.26.3':
resolution: {integrity: sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==}
engines: {node: '>=6.9.0'}
'@esbuild/aix-ppc64@0.24.2':
resolution: {integrity: sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [aix]
'@esbuild/android-arm64@0.24.2':
resolution: {integrity: sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [android]
'@esbuild/android-arm@0.24.2':
resolution: {integrity: sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q==}
engines: {node: '>=18'}
cpu: [arm]
os: [android]
'@esbuild/android-x64@0.24.2':
resolution: {integrity: sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw==}
engines: {node: '>=18'}
cpu: [x64]
os: [android]
'@esbuild/darwin-arm64@0.24.2':
resolution: {integrity: sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA==}
engines: {node: '>=18'}
cpu: [arm64]
os: [darwin]
'@esbuild/darwin-x64@0.24.2':
resolution: {integrity: sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA==}
engines: {node: '>=18'}
cpu: [x64]
os: [darwin]
'@esbuild/freebsd-arm64@0.24.2':
resolution: {integrity: sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [freebsd]
'@esbuild/freebsd-x64@0.24.2':
resolution: {integrity: sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q==}
engines: {node: '>=18'}
cpu: [x64]
os: [freebsd]
'@esbuild/linux-arm64@0.24.2':
resolution: {integrity: sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [linux]
'@esbuild/linux-arm@0.24.2':
resolution: {integrity: sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA==}
engines: {node: '>=18'}
cpu: [arm]
os: [linux]
'@esbuild/linux-ia32@0.24.2':
resolution: {integrity: sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw==}
engines: {node: '>=18'}
cpu: [ia32]
os: [linux]
'@esbuild/linux-loong64@0.24.2':
resolution: {integrity: sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ==}
engines: {node: '>=18'}
cpu: [loong64]
os: [linux]
'@esbuild/linux-mips64el@0.24.2':
resolution: {integrity: sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw==}
engines: {node: '>=18'}
cpu: [mips64el]
os: [linux]
'@esbuild/linux-ppc64@0.24.2':
resolution: {integrity: sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [linux]
'@esbuild/linux-riscv64@0.24.2':
resolution: {integrity: sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q==}
engines: {node: '>=18'}
cpu: [riscv64]
os: [linux]
'@esbuild/linux-s390x@0.24.2':
resolution: {integrity: sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw==}
engines: {node: '>=18'}
cpu: [s390x]
os: [linux]
'@esbuild/linux-x64@0.24.2':
resolution: {integrity: sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q==}
engines: {node: '>=18'}
cpu: [x64]
os: [linux]
'@esbuild/netbsd-arm64@0.24.2':
resolution: {integrity: sha512-wuLK/VztRRpMt9zyHSazyCVdCXlpHkKm34WUyinD2lzK07FAHTq0KQvZZlXikNWkDGoT6x3TD51jKQ7gMVpopw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [netbsd]
'@esbuild/netbsd-x64@0.24.2':
resolution: {integrity: sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw==}
engines: {node: '>=18'}
cpu: [x64]
os: [netbsd]
'@esbuild/openbsd-arm64@0.24.2':
resolution: {integrity: sha512-YQbi46SBct6iKnszhSvdluqDmxCJA+Pu280Av9WICNwQmMxV7nLRHZfjQzwbPs3jeWnuAhE9Jy0NrnJ12Oz+0A==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openbsd]
'@esbuild/openbsd-x64@0.24.2':
resolution: {integrity: sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA==}
engines: {node: '>=18'}
cpu: [x64]
os: [openbsd]
'@esbuild/sunos-x64@0.24.2':
resolution: {integrity: sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig==}
engines: {node: '>=18'}
cpu: [x64]
os: [sunos]
'@esbuild/win32-arm64@0.24.2':
resolution: {integrity: sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ==}
engines: {node: '>=18'}
cpu: [arm64]
os: [win32]
'@esbuild/win32-ia32@0.24.2':
resolution: {integrity: sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA==}
engines: {node: '>=18'}
cpu: [ia32]
os: [win32]
'@esbuild/win32-x64@0.24.2':
resolution: {integrity: sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg==}
engines: {node: '>=18'}
cpu: [x64]
os: [win32]
'@flatten-js/interval-tree@1.1.3':
resolution: {integrity: sha512-xhFWUBoHJFF77cJO1D6REjdgJEMRf2Y2Z+eKEPav8evGKcLSnj1ud5pLXQSbGuxF3VSvT1rWhMfVpXEKJLTL+A==}
'@floating-ui/core@1.6.8':
resolution: {integrity: sha512-7XJ9cPU+yI2QeLS+FCSlqNFZJq8arvswefkZrYI1yQBbftw6FyrZOxYSh+9S7z7TpeWlRt9zJ5IhM1WIL334jA==}
'@floating-ui/dom@1.6.12':
resolution: {integrity: sha512-NP83c0HjokcGVEMeoStg317VD9W7eDlGK7457dMBANbKA6GJZdc7rjujdgqzTaz93jkGgc5P/jeWbaCHnMNc+w==}
'@floating-ui/utils@0.2.8':
resolution: {integrity: sha512-kym7SodPp8/wloecOpcmSnWJsK7M0E5Wg8UcFA+uO4B9s5d0ywXOEro/8HM9x0rW+TljRzul/14UYz3TleT3ig==}
'@grpc/grpc-js@1.9.14':
resolution: {integrity: sha512-nOpuzZ2G3IuMFN+UPPpKrC6NsLmWsTqSsm66IRfnBt1D4pwTqE27lmbpcPM+l2Ua4gE7PfjRHI6uedAy7hoXUw==}
engines: {node: ^8.13.0 || >=10.10.0}
'@grpc/proto-loader@0.7.13':
resolution: {integrity: sha512-AiXO/bfe9bmxBjxxtYxFAXGZvMaN5s8kO+jBHAJCON8rJoB5YS/D6X7ZNc6XQkuHNmyl4CYaMI1fJ/Gn27RGGw==}
engines: {node: '>=6'}
hasBin: true
'@jridgewell/sourcemap-codec@1.5.0':
resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
'@noble/ed25519@2.1.0':
resolution: {integrity: sha512-KM4qTyXPinyCgMzeYJH/UudpdL+paJXtY3CHtHYZQtBkS8MZoPr4rOikZllIutJe0d06QDQKisyn02gxZ8TcQA==}
'@noble/hashes@1.6.1':
resolution: {integrity: sha512-pq5D8h10hHBjyqX+cfBm0i8JUXJ0UhczFc4r74zbuT9XgewFo2E3J1cOaGtdZynILNmQ685YWGzGE1Zv6io50w==}
engines: {node: ^14.21.3 || >=16}
'@protobufjs/aspromise@1.1.2':
resolution: {integrity: sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==}
'@protobufjs/base64@1.1.2':
resolution: {integrity: sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==}
'@protobufjs/codegen@2.0.4':
resolution: {integrity: sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==}
'@protobufjs/eventemitter@1.1.0':
resolution: {integrity: sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==}
'@protobufjs/fetch@1.1.0':
resolution: {integrity: sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==}
'@protobufjs/float@1.0.2':
resolution: {integrity: sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==}
'@protobufjs/inquire@1.1.0':
resolution: {integrity: sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q==}
'@protobufjs/path@1.1.2':
resolution: {integrity: sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==}
'@protobufjs/pool@1.1.0':
resolution: {integrity: sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==}
'@protobufjs/utf8@1.1.0':
resolution: {integrity: sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==}
'@rc-component/color-picker@2.0.1':
resolution: {integrity: sha512-WcZYwAThV/b2GISQ8F+7650r5ZZJ043E57aVBFkQ+kSY4C6wdofXgB0hBx+GPGpIU0Z81eETNoDUJMr7oy/P8Q==}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
'@rc-component/mini-decimal@1.1.0':
resolution: {integrity: sha512-jS4E7T9Li2GuYwI6PyiVXmxTiM6b07rlD9Ge8uGZSCz3WlzcG5ZK7g5bbuKNeZ9pgUuPK/5guV781ujdVpm4HQ==}
engines: {node: '>=8.x'}
'@rc-component/portal@1.1.2':
resolution: {integrity: sha512-6f813C0IsasTZms08kfA8kPAGxbbkYToa8ALaiDIGGECU4i9hj8Plgbx0sNJDrey3EtHO30hmdaxtT0138xZcg==}
engines: {node: '>=8.x'}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
'@rc-component/trigger@2.2.6':
resolution: {integrity: sha512-/9zuTnWwhQ3S3WT1T8BubuFTT46kvnXgaERR9f4BTKyn61/wpf/BvbImzYBubzJibU707FxwbKszLlHjcLiv1Q==}
engines: {node: '>=8.x'}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
'@rollup/rollup-android-arm-eabi@4.28.1':
resolution: {integrity: sha512-2aZp8AES04KI2dy3Ss6/MDjXbwBzj+i0GqKtWXgw2/Ma6E4jJvujryO6gJAghIRVz7Vwr9Gtl/8na3nDUKpraQ==}
cpu: [arm]
os: [android]
'@rollup/rollup-android-arm64@4.28.1':
resolution: {integrity: sha512-EbkK285O+1YMrg57xVA+Dp0tDBRB93/BZKph9XhMjezf6F4TpYjaUSuPt5J0fZXlSag0LmZAsTmdGGqPp4pQFA==}
cpu: [arm64]
os: [android]
'@rollup/rollup-darwin-arm64@4.28.1':
resolution: {integrity: sha512-prduvrMKU6NzMq6nxzQw445zXgaDBbMQvmKSJaxpaZ5R1QDM8w+eGxo6Y/jhT/cLoCvnZI42oEqf9KQNYz1fqQ==}
cpu: [arm64]
os: [darwin]
'@rollup/rollup-darwin-x64@4.28.1':
resolution: {integrity: sha512-WsvbOunsUk0wccO/TV4o7IKgloJ942hVFK1CLatwv6TJspcCZb9umQkPdvB7FihmdxgaKR5JyxDjWpCOp4uZlQ==}
cpu: [x64]
os: [darwin]
'@rollup/rollup-freebsd-arm64@4.28.1':
resolution: {integrity: sha512-HTDPdY1caUcU4qK23FeeGxCdJF64cKkqajU0iBnTVxS8F7H/7BewvYoG+va1KPSL63kQ1PGNyiwKOfReavzvNA==}
cpu: [arm64]
os: [freebsd]
'@rollup/rollup-freebsd-x64@4.28.1':
resolution: {integrity: sha512-m/uYasxkUevcFTeRSM9TeLyPe2QDuqtjkeoTpP9SW0XxUWfcYrGDMkO/m2tTw+4NMAF9P2fU3Mw4ahNvo7QmsQ==}
cpu: [x64]
os: [freebsd]
'@rollup/rollup-linux-arm-gnueabihf@4.28.1':
resolution: {integrity: sha512-QAg11ZIt6mcmzpNE6JZBpKfJaKkqTm1A9+y9O+frdZJEuhQxiugM05gnCWiANHj4RmbgeVJpTdmKRmH/a+0QbA==}
cpu: [arm]
os: [linux]
'@rollup/rollup-linux-arm-musleabihf@4.28.1':
resolution: {integrity: sha512-dRP9PEBfolq1dmMcFqbEPSd9VlRuVWEGSmbxVEfiq2cs2jlZAl0YNxFzAQS2OrQmsLBLAATDMb3Z6MFv5vOcXg==}
cpu: [arm]
os: [linux]
'@rollup/rollup-linux-arm64-gnu@4.28.1':
resolution: {integrity: sha512-uGr8khxO+CKT4XU8ZUH1TTEUtlktK6Kgtv0+6bIFSeiSlnGJHG1tSFSjm41uQ9sAO/5ULx9mWOz70jYLyv1QkA==}
cpu: [arm64]
os: [linux]
'@rollup/rollup-linux-arm64-musl@4.28.1':
resolution: {integrity: sha512-QF54q8MYGAqMLrX2t7tNpi01nvq5RI59UBNx+3+37zoKX5KViPo/gk2QLhsuqok05sSCRluj0D00LzCwBikb0A==}
cpu: [arm64]
os: [linux]
'@rollup/rollup-linux-loongarch64-gnu@4.28.1':
resolution: {integrity: sha512-vPul4uodvWvLhRco2w0GcyZcdyBfpfDRgNKU+p35AWEbJ/HPs1tOUrkSueVbBS0RQHAf/A+nNtDpvw95PeVKOA==}
cpu: [loong64]
os: [linux]
'@rollup/rollup-linux-powerpc64le-gnu@4.28.1':
resolution: {integrity: sha512-pTnTdBuC2+pt1Rmm2SV7JWRqzhYpEILML4PKODqLz+C7Ou2apEV52h19CR7es+u04KlqplggmN9sqZlekg3R1A==}
cpu: [ppc64]
os: [linux]
'@rollup/rollup-linux-riscv64-gnu@4.28.1':
resolution: {integrity: sha512-vWXy1Nfg7TPBSuAncfInmAI/WZDd5vOklyLJDdIRKABcZWojNDY0NJwruY2AcnCLnRJKSaBgf/GiJfauu8cQZA==}
cpu: [riscv64]
os: [linux]
'@rollup/rollup-linux-s390x-gnu@4.28.1':
resolution: {integrity: sha512-/yqC2Y53oZjb0yz8PVuGOQQNOTwxcizudunl/tFs1aLvObTclTwZ0JhXF2XcPT/zuaymemCDSuuUPXJJyqeDOg==}
cpu: [s390x]
os: [linux]
'@rollup/rollup-linux-x64-gnu@4.28.1':
resolution: {integrity: sha512-fzgeABz7rrAlKYB0y2kSEiURrI0691CSL0+KXwKwhxvj92VULEDQLpBYLHpF49MSiPG4sq5CK3qHMnb9tlCjBw==}
cpu: [x64]
os: [linux]
'@rollup/rollup-linux-x64-musl@4.28.1':
resolution: {integrity: sha512-xQTDVzSGiMlSshpJCtudbWyRfLaNiVPXt1WgdWTwWz9n0U12cI2ZVtWe/Jgwyv/6wjL7b66uu61Vg0POWVfz4g==}
cpu: [x64]
os: [linux]
'@rollup/rollup-win32-arm64-msvc@4.28.1':
resolution: {integrity: sha512-wSXmDRVupJstFP7elGMgv+2HqXelQhuNf+IS4V+nUpNVi/GUiBgDmfwD0UGN3pcAnWsgKG3I52wMOBnk1VHr/A==}
cpu: [arm64]
os: [win32]
'@rollup/rollup-win32-ia32-msvc@4.28.1':
resolution: {integrity: sha512-ZkyTJ/9vkgrE/Rk9vhMXhf8l9D+eAhbAVbsGsXKy2ohmJaWg0LPQLnIxRdRp/bKyr8tXuPlXhIoGlEB5XpJnGA==}
cpu: [ia32]
os: [win32]
'@rollup/rollup-win32-x64-msvc@4.28.1':
resolution: {integrity: sha512-ZvK2jBafvttJjoIdKm/Q/Bh7IJ1Ose9IBOwpOXcOvW3ikGTQGmKDgxTC6oCAzW6PynbkKP8+um1du81XJHZ0JA==}
cpu: [x64]
os: [win32]
'@types/estree@1.0.6':
resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
'@types/hoist-non-react-statics@3.3.6':
resolution: {integrity: sha512-lPByRJUer/iN/xa4qpyL0qmL11DqNW81iU/IG1S3uvRUq4oKagz8VCxZjiWkumgt66YT3vOdDgZ0o32sGKtCEw==}
'@types/node@22.13.5':
resolution: {integrity: sha512-+lTU0PxZXn0Dr1NBtC7Y8cR21AJr87dLLU953CWA6pMxxv/UDc7jYAY90upcrie1nRcD6XNG5HOYEDtgW5TxAg==}
'@types/react-redux@7.1.34':
resolution: {integrity: sha512-GdFaVjEbYv4Fthm2ZLvj1VSCedV7TqE5y1kNwnjSdBOTXuRSgowux6J8TAct15T3CKBr63UMk+2CO7ilRhyrAQ==}
'@types/react@19.0.1':
resolution: {integrity: sha512-YW6614BDhqbpR5KtUYzTA+zlA7nayzJRA9ljz9CQoxthR0sDisYZLuvSMsil36t4EH/uAt8T52Xb4sVw17G+SQ==}
'@univerjs-pro/collaboration-client-ui@0.5.5':
resolution: {integrity: sha512-/F82a3MT3KpXF8JHzWbTu1MLrQeW2pT1rQmJwyOio0Z2G28t6LM0+/2zdCqolrof8LIgocRnkMZBumKxbNOe6Q==}
peerDependencies:
react: ^16.9.0 || ^17.0.0 || ^18.0.0
rxjs: '>=7.0.0'
'@univerjs-pro/collaboration-client@0.5.5':
resolution: {integrity: sha512-6qAdFDZ6YFLBzrB0vwv7lht8FNPR+1JzcWF3WuiSPOFq9szFwQ+tC6qEoaZ0cYa7lxaDmVMGcQVSO9sOoB23qA==}
peerDependencies:
rxjs: '>=7.0.0'
'@univerjs-pro/collaboration@0.5.5':
resolution: {integrity: sha512-EcpRmYQvJNRDz3iRp5Xu+dyTQBWSAJNwnx9gaIU2fFeyXaqOzAynm7FdYSUFKwKhE9YEqbyXRJ1ZVCOh+rWHOQ==}
'@univerjs-pro/edit-history-loader@0.5.5':
resolution: {integrity: sha512-3iAom+ZWJetGd7Gc+XQm2QlP3x7WnYdNjGDbzqrPObdB5gsG/d+lpuhwKKCcwO1o0GORS2/Hk4vPVKrYzDFvbA==}
peerDependencies:
react: ^16.9.0 || ^17.0.0 || ^18.0.0
rxjs: '>=7.0.0'
'@univerjs-pro/edit-history-viewer@0.5.5':
resolution: {integrity: sha512-2G9ZOpxjLwylODG/JTqx4YAufDZnG7gE3Ll3PlnNFs0jRZPlk2Umw7YS/DW/LISDsAcOQfKxJVoRk0Z2Z7ygqA==}
peerDependencies:
react: ^16.9.0 || ^17.0.0 || ^18.0.0
rxjs: '>=7.0.0'
'@univerjs-pro/engine-formula@0.5.5':
resolution: {integrity: sha512-/7pJ/9oaBGUaldysQmbD3hUdqiY8ZC3MfboYt1dOqFdJrDi6+fjucQrDzw+YPC2PKSCn7MSYhESZnEUVE7PE5g==}
peerDependencies:
rxjs: '>=7.0.0'
'@univerjs-pro/engine-pivot@0.5.5':
resolution: {integrity: sha512-j/1Psojj1QwfPXRUf5BDErqKBQLz9pYyQU0PEovWXCDk513m4unu56DoW0UgOLbkXfqFitwGmTe5kjUckwoOIg==}
'@univerjs-pro/exchange-client@0.5.5':
resolution: {integrity: sha512-x3LfagIMJjvUFiveesuyZeDczaaaB+DOQcRLk1RKPqJUacQhVOgeP7sYhTA9rI04bnFFxBFpa8ZzPJg9LjWZ9A==}
peerDependencies:
react: ^16.9.0 || ^17.0.0 || ^18.0.0
rxjs: '>=7.0.0'
'@univerjs-pro/license@0.5.5':
resolution: {integrity: sha512-mlWIYPNlJOhpgkX8ygo5YREKjjzV4poFZueuNPcTTvazxupY7c9fIWNAGjiG1zytwi5QThHaGU8OLU5cs9N+Ew==}
'@univerjs-pro/print@0.5.5':
resolution: {integrity: sha512-3xMVF5L1joJE1bFKi0bnFnA47dbG+yDEwCnu2UpTWMDS5PFo/wQVTIaqpv5S0C6hrnTgyL9YF7HyM6BNiZmVLA==}
'@univerjs-pro/sheets-chart-ui@0.5.5':
resolution: {integrity: sha512-7iyvVi2Bmi/oDCMrO6A+jUi5abvi2/fMlK285jxElZ3oLsb9OxYmbIi/bJj8vWJrtJ1p/rkUe95JUWj/aRcXag==}
peerDependencies:
react: ^16.9.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0
rxjs: '>=7.0.0'
'@univerjs-pro/sheets-chart@0.5.5':
resolution: {integrity: sha512-ZZMRePMKxMLRJNhVjB1THo0rwpgwQuXPN+4/3sDTQ/3r3QT1JDJA99UI1dFD1u/B4qpmeHj78E7iXD1/TNg0zw==}
peerDependencies:
rxjs: '>=7.0.0'
'@univerjs-pro/sheets-exchange-client@0.5.5':
resolution: {integrity: sha512-KYLGv8YrYoJOldTeWYQxFKlwbj7vexGgXQHKtlNcMmUgDA5nobgHiDw1stSK30Umm+gjMdNIndBY3IXs8iCkdA==}
'@univerjs-pro/sheets-pivot-ui@0.5.5':
resolution: {integrity: sha512-ooaNmghytIfRpwhkGwrKqeh9YAtj+pxTFBWddA+Up2P3KxuYaJIqlVg8YHARhCXVmMcoYmhno0u6D9MnlVHQYg==}
peerDependencies:
react: ^16.9.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0
rxjs: '>=7.0.0'
'@univerjs-pro/sheets-pivot@0.5.5':
resolution: {integrity: sha512-mEp5ZpsrONUP6mFc60Tzl9ABBQopjOupGCl9ZEjxEmA79UNg/zK+DTyVebWYpi3iB8vqla43rE5RTtYbW/CRQQ==}
peerDependencies:
rxjs: '>=7.0.0'
'@univerjs-pro/sheets-print@0.5.5':
resolution: {integrity: sha512-iDTGMuCjLkXim1YCRTf6rI+Xt/dH2WeN/bgKnCiuiu+zLqBQkr7Hi3W3LoblFbbrWlULC5dzv2MsVD8fiGXoZw==}
peerDependencies:
react: ^16.9.0 || ^17.0.0 || ^18.0.0
rxjs: '>=7.0.0'
'@univerjs-pro/sheets-sparkline-ui@0.5.5':
resolution: {integrity: sha512-Bl4uxMRdUcPmue5le2KYs59g1/lBJEYV4/ziLrB1K2nn/dgF47UwD6BkwvmloEOQmVme02vV8Ldf0JzeyO7VTA==}
engines: {node: '>=16.0.0', npm: '>=8.0.0'}
peerDependencies:
react: ^16.9.0 || ^17.0.0 || ^18.0.0
rxjs: '>=7.0.0'
'@univerjs-pro/sheets-sparkline@0.5.5':
resolution: {integrity: sha512-LiFVROV7ogXxmQncpD+dOo98OUuYoQ56f96nl+P33w/l9jcdlnfir+/oK5szWQPnawo8r7lq6a785W339BUkdQ==}
engines: {node: '>=16.0.0', npm: '>=8.0.0'}
peerDependencies:
rxjs: '>=7.0.0'
'@univerjs-pro/thread-comment-datasource@0.5.5':
resolution: {integrity: sha512-fUwL8OKiIncZX1g3ZLIiDvhFzHgwqDtfhyUO1QfMRgU6KKx5d5XMcW+IoPPHRbNieubKf5epQgzp31Ne2QJIEA==}
peerDependencies:
rxjs: '>=7.0.0'
'@univerjs/core@0.5.5':
resolution: {integrity: sha512-IweblkFyVg7+k3+/dV08mgwivPoRrV6IjTfWasXbxBq7cKnhUzuyb/UtsK+sf32kvNQZtLxq3Jpkm54QQRoUfA==}
peerDependencies:
react: ^16.9.0 || ^17.0.0 || ^18.0.0
rxjs: '>=7.0.0'
'@univerjs/data-validation@0.5.5':
resolution: {integrity: sha512-rddXbY8DNrahSMyOx8tzISdKjJ6U3w+1tjABw26exdQwPkUYFV28mGL7erIcSLgUVtRzkmEvviouSDrE/g2Fmw==}
peerDependencies:
rxjs: '>=7.0.0'
'@univerjs/design@0.5.5':
resolution: {integrity: sha512-bf3ZEPsIIUto6kGQDhpS4bs5IONmsKKIeiEKW7Tq9OTeLhpCcMH+COMRzIDPtImiaun9PS8bshoIH6PLbTGzCw==}
peerDependencies:
react: ^16.9.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0
'@univerjs/docs-drawing-ui@0.5.5':
resolution: {integrity: sha512-xmYSw//c+/nOlj/89e5IxIANxSVnQMbzCfdFJGAsA49xY2v83dmygncP17GSHHpfYvk0kj/dyX7jHW5QWi5TfA==}
peerDependencies:
react: ^16.9.0 || ^17.0.0 || ^18.0.0
rxjs: '>=7.0.0'
'@univerjs/docs-drawing@0.5.5':
resolution: {integrity: sha512-utTF/evzF5F7I0jC/pRhZBnga5CyMoFp18P3ERKpnTB1J5bXhMTj5tSesS2e5OiyDz9TFymB0DrJzMs2/akdFg==}
'@univerjs/docs-hyper-link-ui@0.5.5':
resolution: {integrity: sha512-7jHY0giLSSZxo9KquwIXa6OR1zexk3sbIqIfX7gkit5IZtQBJeTrk1cNMp0a1EZbadWIyIZxQUjyvTa1y8IdCQ==}
peerDependencies:
react: ^16.9.0 || ^17.0.0 || ^18.0.0
rxjs: '>=7.0.0'
'@univerjs/docs-hyper-link@0.5.5':
resolution: {integrity: sha512-GaLi34YMAR1Z6IvD/9UPNBg3pkKc4frZATzwuicEtiGwhgolrF1ZK45naCg2flqQZNg8PvKdvEv10crGGVaJGw==}
'@univerjs/docs-thread-comment-ui@0.5.5':
resolution: {integrity: sha512-tvJWSJ+UPOpCPN082zhoYX3rN0odRgjFM3G8NFelbGGOQ0LF7FRlZBYbHlFiio7Y4d4bCFw4FMq0zm1OZwt/Gw==}
peerDependencies:
react: ^16.9.0 || ^17.0.0 || ^18.0.0
rxjs: '>=7.0.0'
'@univerjs/docs-ui@0.5.5':
resolution: {integrity: sha512-pr7XlC5yECZHhkTVykR9qyO6f0bVZ9R8lXGb/njAuHx5su8E9Rc+51gw1cUd1lX2ke/nTB02290VB+aCJmxfMQ==}
peerDependencies:
react: ^16.9.0 || ^17.0.0 || ^18.0.0
rxjs: '>=7.0.0'
'@univerjs/docs@0.5.5':
resolution: {integrity: sha512-doSwZwITsZefCqHNl7XGua4Rcduk8N6V/Mwd8wjUZXyuf7UiJSlgxYKUtzwMm6GSKcTfOoXEG1reBgsLWjNVaQ==}
peerDependencies:
rxjs: '>=7.0.0'
'@univerjs/drawing-ui@0.5.5':
resolution: {integrity: sha512-Cl0ujy7QsYcJcunG5ofpHTaXDQTHx86p/KcNA6KIvOq8fOSNcuVDQjaoIGWgoUKVuhfG+KOJcTM1Bt07GBm/Sw==}
peerDependencies:
react: ^16.9.0 || ^17.0.0 || ^18.0.0
rxjs: '>=7.0.0'
'@univerjs/drawing@0.5.5':
resolution: {integrity: sha512-xAl45E4izbbIx10bC1uQQNUNWRmdIqm0y1aShEuow81a9P6A7FKYG9v/6PKsBW9QQq4yLcCWkJ2awBfh6yw29Q==}
peerDependencies:
rxjs: '>=7.0.0'
'@univerjs/engine-formula@0.5.5':
resolution: {integrity: sha512-19PlRTcrl9lhs9z6Ug0rRoR/i5oPuXcLK6M8SNP9egmVXlzDE04lir9cuN1blo+299YjqzfVs8W25tWlwno+Aw==}
peerDependencies:
rxjs: '>=7.0.0'
'@univerjs/engine-numfmt@0.5.5':
resolution: {integrity: sha512-VQOvmMcw5V0jXup/w7+zSbku79p/WSS6p9l9rGksedXQSpWhd6j5lKka53dg240UTdx14LCVVL3ymfyFz7c8PQ==}
'@univerjs/engine-render@0.5.5':
resolution: {integrity: sha512-FzGPRdgfD0F17DQEtBkeWrAQ8p8bS7JD/hWB42V+W87CYkOrvkZ33/7F4/7k5mXnK0CFrp0H+GQjh98aI8BRiw==}
peerDependencies:
rxjs: '>=7.0.0'
'@univerjs/facade@0.5.5':
resolution: {integrity: sha512-TPO8HR1I7ro9NretADLYDzkRfsQeCGjMvQzT+PH4YlEHzm0fa7Cs82VPYUv0HV78pTrGha7hxdN5B9VdTHIVIA==}
peerDependencies:
rxjs: '>=7.0.0'
'@univerjs/find-replace@0.5.5':
resolution: {integrity: sha512-b9MLbrZUNRmiIXNEKo5yPbabc1q3JHxY6MXDkMFrijiNmbHh2si6ehjtMl3bbp5wgjieEX3cULeFAKUI5viyuw==}
peerDependencies:
react: ^16.9.0 || ^17.0.0 || ^18.0.0
rxjs: '>=7.0.0'
'@univerjs/icons@0.2.21':
resolution: {integrity: sha512-CvaAgLF885IGG0C5Jo0LB6pXAMPn4ZICvyhe94Ic2BOUBM8MjDaYC0u4tfsEHT9k1TtRAIMH6i9rXjBGtKesLA==}
peerDependencies:
react: '*'
react-dom: '*'
'@univerjs/network@0.5.5':
resolution: {integrity: sha512-XX6KPurV0JAFD6wSELG+6A1Gcry4yRuRs9anATYSyi9AYMOzh9DlmG48daP+R60P+RANpP0qKMoB0/zEnEFEDg==}
peerDependencies:
rxjs: '>=7.0.0'
'@univerjs/preset-docs-collaboration@0.5.5':
resolution: {integrity: sha512-bTyIa/MM9wzSODqZUqjVVBODLaucUPSd3umOp5m9Zrf9jRY36VAbU4OtQe6gCcnTDdCzxRk4n0ITaVwgKlbeBQ==}
peerDependencies:
react: ^16.9.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0
rxjs: '>=7.0.0'
'@univerjs/preset-docs-core@0.5.5':
resolution: {integrity: sha512-u8p5zuXee7iUegIX7mP1SjmoBZRfUvIDWo7qjzdP7ngscW5HI56LqUTaWlEGTTVq35F9GZuBJUsYMZuGvtTfLA==}
peerDependencies:
react: ^16.9.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0
rxjs: '>=7.0.0'
'@univerjs/preset-docs-drawing@0.5.5':
resolution: {integrity: sha512-WPljApdy7albGGMSiUeB8OIN2i54dHq1EZHwfqGOanluRAKuNSWPtNtYdefo6psCmtTP6ae8pJg697Jn0RlU7Q==}
peerDependencies:
react: ^16.9.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0
rxjs: '>=7.0.0'
'@univerjs/preset-docs-hyper-link@0.5.5':
resolution: {integrity: sha512-rae3gLrOaJYdT2u09P8gvIHTFHYR+VgBQAl4iJ14TsWd/RFEurBO6MQfoLKOIxe9sDl6ZEER7nioGix6uIFXbA==}
peerDependencies:
react: ^16.9.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0
rxjs: '>=7.0.0'
'@univerjs/preset-docs-thread-comment@0.5.5':
resolution: {integrity: sha512-lF0tlI1vrMkqkuQhpDnP0vVjdPQbqii+wUma2DYJ4KpDl+0UXAeNZyaBkxUkHdT7ZvKpn73poKtno1q55hA+hA==}
peerDependencies:
react: ^16.9.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0
rxjs: '>=7.0.0'
'@univerjs/preset-sheets-advanced@0.5.5':
resolution: {integrity: sha512-WXSUgaYJbAznYXxZyNBNeLn7qy928zzKWXPa76M7ruf2k+eWtCF8hJdV5LO4GEKQGZ9cijlRXuTJLFQ+WCoMtg==}
peerDependencies:
react: ^16.9.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0
rxjs: '>=7.0.0'
'@univerjs/preset-sheets-collaboration@0.5.5':
resolution: {integrity: sha512-n2OfNjaO91wDEfWv6+IPObCAnKlrDGfDLWszyY4XffMixgclMOQq3tgFxYnWHUsfQIqjMOxhgQ2nsB1OB+eJaQ==}
peerDependencies:
react: ^16.9.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0
rxjs: '>=7.0.0'
'@univerjs/preset-sheets-conditional-formatting@0.5.5':
resolution: {integrity: sha512-YVsiLYoD0NWjhlwnbqWHH0jNcRUP65fBv/3dc4YBIOkCFMINFyhpmTT0x3a5o2sju6oWoN4/SEGknNSzGxO2Bg==}
peerDependencies:
react: ^16.9.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0
rxjs: '>=7.0.0'
'@univerjs/preset-sheets-core@0.5.5':
resolution: {integrity: sha512-pRgIN9jBO8H5KOuwlZJxA6neWIhCLf39HUWyz14m7oKxlJvKR8PCjbcsW5f9oWaeaCV07/2oMEJ7hesU0AvN4Q==}
peerDependencies:
react: ^16.9.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0
rxjs: '>=7.0.0'
'@univerjs/preset-sheets-data-validation@0.5.5':
resolution: {integrity: sha512-fNAUUoMjJKihuDU1Z7QqyotX/CESA4rG1GWsGBt7Qr3Zh28756ugWfDts3aJz9FchMcNU/ybP0TAHT8saxIvTg==}
peerDependencies:
react: ^16.9.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0
rxjs: '>=7.0.0'
'@univerjs/preset-sheets-drawing@0.5.5':
resolution: {integrity: sha512-h5mRdVroKeTNJiSEZGHTyJqKpedEH9Ehx3I7r62orPAR4UZYNQv0PuorpeKsq5KGeRE7N3Q9wGk6Jkx+X9dd5w==}
peerDependencies:
react: ^16.9.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0
rxjs: '>=7.0.0'
'@univerjs/preset-sheets-filter@0.5.5':
resolution: {integrity: sha512-S7RERT4/FZ9fw4t8LbQ5TXuYSWcujaF/yMFqaW4SoJH4KTJ3b5C4o6i+aoQbvR/Z9e5bziRc5k2/brKz675vsg==}
peerDependencies:
react: ^16.9.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0
rxjs: '>=7.0.0'
'@univerjs/preset-sheets-find-replace@0.5.5':
resolution: {integrity: sha512-a/JZvjhnj/N6DaRYAjw5URhCXVRmIoR+/yrfETdcYpNg/CQa093uOBuBAkql3x4ML/K+WCoMQlBpCeE1XV908w==}
peerDependencies:
react: ^16.9.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0
rxjs: '>=7.0.0'
'@univerjs/preset-sheets-hyper-link@0.5.5':
resolution: {integrity: sha512-ORzbtRB+Ki514pOhzpg5uL+JypSV6B6Da+Iu7BYDVHk+29rq//6CahlZf/7nPYKBpCVLxs0W38rXuF+u+CjufA==}
peerDependencies:
react: ^16.9.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0
rxjs: '>=7.0.0'
'@univerjs/preset-sheets-node-core@0.5.5':
resolution: {integrity: sha512-UAIa4VmCkEvZsdC/5MusasA7+KwKarmFXcPChj/iZG+9gAK+wtDABCJxuhk0Z4I7j8T9sZsnrbC+S8wk2LYuqg==}
peerDependencies:
react: ^16.9.0 || ^17.0.0 || ^18.0.0
rxjs: '>=7.0.0'
'@univerjs/preset-sheets-sort@0.5.5':
resolution: {integrity: sha512-sZXHhKB8dS5Mg5BUEBHNKMmKXGHu00JvduHsgmW7pwR96ls4fvGZk5ceGkofok12dZlx7IiuWAK+Dszwzvwr8Q==}
peerDependencies:
react: ^16.9.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0
rxjs: '>=7.0.0'
'@univerjs/preset-sheets-thread-comment@0.5.5':
resolution: {integrity: sha512-Y0YxaXtNTjnMZmMia3wKdEdlWz7D4xha6XQf31tsEjUwGkyduF+N3/386s1eg4KKxqzdF7Kfn9oqQbseiZyHwA==}
peerDependencies:
react: ^16.9.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0
rxjs: '>=7.0.0'
'@univerjs/presets@0.5.5':
resolution: {integrity: sha512-GQkzukvHmOwTvumYBsBtr3pa0MRtymukU9gkOUNsYgZPKIommnN6ln9uO2HF4yxwXy1hu80BZ/NYBKp6K3LEZQ==}
peerDependencies:
react: ^16.9.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0
rxjs: '>=7.0.0'
'@univerjs/protocol@0.1.40':
resolution: {integrity: sha512-+SxbIaLlQ3G1iPGtm7915R+iLtMFiiynk1M9j+40QxFPDD6Kynwi7XCjo4Y1NDSXDlDvU60iW1gYfuldybyk5w==}
engines: {node: '>=16.0.0', npm: '>=8.0.0'}
peerDependencies:
'@grpc/grpc-js': '>=1'
rxjs: '>=7.8'
'@univerjs/protocol@0.1.42':
resolution: {integrity: sha512-rw88PQNvXqdNf4si4x+jzB9O8KjIJbAr43jbmVamZ6ltbJvwprHvpSnXIuOVgE8CqdPuvXiVt8UBKkmfPXZ2Mw==}
engines: {node: '>=16.0.0', npm: '>=8.0.0'}
peerDependencies:
'@grpc/grpc-js': '>=1'
rxjs: '>=7.8'
'@univerjs/rpc-node@0.5.5':
resolution: {integrity: sha512-dS855w55AAZurrOKKe9Un7B4XbQ0ffKKC1SW7eSg6kT+kpdfhX+lJBX+NZWeEpfnXoSQUKZvLNLjxtba+ZFWoQ==}
peerDependencies:
rxjs: '>=7.0.0'
'@univerjs/rpc@0.5.5':
resolution: {integrity: sha512-UxhvcGx2aWZcyaNjAUAYmEkNeLbelq6aCxKHd3J1FEelxOYLi4pkBVF7s4x7yPo06s0Rb7tiQoM6H0DBfdyTpA==}
peerDependencies:
rxjs: '>=7.0.0'
'@univerjs/sheets-conditional-formatting-ui@0.5.5':
resolution: {integrity: sha512-+/tZQLFAI5I5UdH05HoEPG1mE3m75g6N5CxJsKn7FMsF0hjn+PlyBIQMMsrXjbzcgIX5b1fIqiOemJWL/y04Lg==}
peerDependencies:
react: ^16.9.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0
rxjs: '>=7.0.0'
'@univerjs/sheets-conditional-formatting@0.5.5':
resolution: {integrity: sha512-ecBWHe3NAXJ3odlXVmlT5BFSc+KYH6ksAUQi3FxWpzcfEQHnGs84RcgYE4lWnGslTxglYlt1d9n87tPndXsN0A==}
peerDependencies:
rxjs: '>=7.0.0'
'@univerjs/sheets-data-validation-ui@0.5.5':
resolution: {integrity: sha512-jje2uiiyZlyVVTppsojo/kHmPi8ybdHXb2B1PVK4Qom8P3uytyl+iWNSmtPiCpynvBpM4kFe703ZNb8Tw9wgmg==}
peerDependencies:
react: ^16.9.0 || ^17.0.0 || ^18.0.0
rxjs: '>=7.0.0'
'@univerjs/sheets-data-validation@0.5.5':
resolution: {integrity: sha512-80JQh66sPW4fmcZOjechKx9bVeDbxTx+7YE4X1mLP+KoylVxzEup9kgjzjq7LCw/zePpdiZNuqFzPNwl+YFxLw==}
peerDependencies:
rxjs: '>=7.0.0'
'@univerjs/sheets-drawing-ui@0.5.5':
resolution: {integrity: sha512-Db85r4ydJhBFyiTZeveWlPkoO1+e/aAUrbhQtFkejg92EQ5/E8JyXGAqB7hFNd10NNXp1dRGxycn7t0Z/uWKsw==}
peerDependencies:
react: ^16.9.0 || ^17.0.0 || ^18.0.0
rxjs: '>=7.0.0'
'@univerjs/sheets-drawing@0.5.5':
resolution: {integrity: sha512-lyL4oHv1u4YZZANIiBpy+pswrFot9n3yJKB8TgGDpsevHeeaYPd4/WoJkJipPdM34RC7LwanIZ2xijpN9sfBsQ==}
'@univerjs/sheets-filter-ui@0.5.5':
resolution: {integrity: sha512-nnkmE0oCaLmLaDxgTSuWyHeSJcPn7Wj8/9K6q65PGWN7gpRSOvmARfGzoiNOrcJCLlnyekoqYouwFCw8eN4qyQ==}
peerDependencies:
react: ^16.9.0 || ^17.0.0 || ^18.0.0
rxjs: '>=7.0.0'
'@univerjs/sheets-filter@0.5.5':
resolution: {integrity: sha512-laLkEgtp2VoO2//DuVbK+eEaz/nvyqsZbZ+lcIQCjZ48NE7T4JZPodLl1q8pfj9N7MlIgOBxo2NxnWiQdU7IEw==}
peerDependencies:
rxjs: '>=7.0.0'
'@univerjs/sheets-find-replace@0.5.5':
resolution: {integrity: sha512-3SIqG2Px8UVkuOMRD1XsNv+1xBNMwxqyjBMT545sywPypOmOQ6mQ6Lnx9K5QjQ2l4nmk9s2wExL+BExpwKh4sQ==}
peerDependencies:
rxjs: '>=7.0.0'
'@univerjs/sheets-formula-ui@0.5.5':
resolution: {integrity: sha512-Pi6GUCPT6rDovvn/+9Lub7CU9EEy3KA7YMykMPyii0Bujm16W92iyGmyx7aUqHvKWEjdrR+MUQCCzZQNnrcrsA==}
peerDependencies:
react: ^16.9.0 || ^17.0.0 || ^18.0.0
rxjs: '>=7.0.0'
'@univerjs/sheets-formula@0.5.5':
resolution: {integrity: sha512-EC0v3S346Hebj+KTJqOhygvzugNv4AmPnmGkhYX7yjiZqkwWoUQU5NnRMua3xJq9iY9itxTiUZ2wo86EFJ5b3A==}
peerDependencies:
rxjs: '>=7.0.0'
'@univerjs/sheets-graphics@0.5.5':
resolution: {integrity: sha512-dV97ytsuwR8Z1Ei8mBhFCSY+mKyFISYvzg4aws0HJm1pkffdKczZhjmpTM/Q6gbEbJQ4xUv1tTne7DEWk5hNPw==}
peerDependencies:
rxjs: '>=7.0.0'
'@univerjs/sheets-hyper-link-ui@0.5.5':
resolution: {integrity: sha512-SBDR4SANwfKL7aF1j1DRlzxO6FsExD84l2NgQ2uPpDE6TGZfsF6gX6TZbxu4uKdY8/SgtT0miB81Aipg4/JqzA==}
peerDependencies:
react: ^16.9.0 || ^17.0.0 || ^18.0.0
rxjs: '>=7.0.0'
'@univerjs/sheets-hyper-link@0.5.5':
resolution: {integrity: sha512-RKLCSbfZdexcx6YscOwP5VH8c0FAfQhd3lC/xaamDGIA2ibJWMPmLhW2XAEvEUvRE72FZN4+Tbsc8HHrOxTmSQ==}
peerDependencies:
rxjs: '>=7.0.0'
'@univerjs/sheets-numfmt-ui@0.5.5':
resolution: {integrity: sha512-b8ndwsZgdfHqnx5dP3cQE5iQhhWOP/8DUmg/2kjmWXblXoFMKBAj07KfXQCQiMA3v0F8nmmjnEYJsK1D1Oc7Mw==}
peerDependencies:
react: ^16.9.0 || ^17.0.0 || ^18.0.0
rxjs: '>=7.0.0'
'@univerjs/sheets-numfmt@0.5.5':
resolution: {integrity: sha512-J5BDLCxnpiG1u7WxTBDeQGr4JWHn/BIKT1jAaFOJ8rUvb/6LL3DogRt9KWjDkU1FjU5grhR/YmH2zWalVorwlw==}
peerDependencies:
rxjs: '>=7.0.0'
'@univerjs/sheets-sort-ui@0.5.5':
resolution: {integrity: sha512-zQyX8YsEbk3bNcyelfeW+bC2Nlfkr7OzNp4998KDs122SSqnGAPp7/661xf/JFdYKY+MwiXjwVNdZUjec00pIA==}
peerDependencies:
react: ^16.9.0 || ^17.0.0 || ^18.0.0
rxjs: '>=7.0.0'
'@univerjs/sheets-sort@0.5.5':
resolution: {integrity: sha512-sqf2UYc3d7A2KXnDsjmi9bAyISS2K3BkYfa921be+j6DPs3cnH7uJ5QjrwIVTvEY0hPW6RuKV98OaDcm/yuGSg==}
'@univerjs/sheets-thread-comment-ui@0.5.5':
resolution: {integrity: sha512-HppCYW/59AWv5ty5udWlJBqLxxUKrtofB95syHPtI5SKy+4qHOo24+2GsujObqeccJn2H7aNcxC4BZmDeW4E1w==}
peerDependencies:
react: ^16.9.0 || ^17.0.0 || ^18.0.0
rxjs: '>=7.0.0'
'@univerjs/sheets-thread-comment@0.5.5':
resolution: {integrity: sha512-SKFgs7J2v+/zi4ZEe0GvdmQdmxG8OAmtf++2hMjHBaNuD0uBX7jdee4BAf3VelzxqCJuv7v8E0z3/a9xZAtVCg==}
peerDependencies:
rxjs: '>=7.0.0'
'@univerjs/sheets-ui@0.5.5':
resolution: {integrity: sha512-ouuG+k+Y6YI0StI1s6YfzA+filhLj33iUTNQgJbTP0N+WJ1Le/ZezWFBnZ1isZtGRFXiFKv74vuAABc5WkVL2g==}
peerDependencies:
react: ^16.9.0 || ^17.0.0 || ^18.0.0
rxjs: '>=7.0.0'
'@univerjs/sheets-zen-editor@0.5.5':
resolution: {integrity: sha512-sbcs8NX/on6sQRV7U2zEXiJnmBAco70V3/8Dlt/LrdyVixV9XuTAX0hSzAT3RelYKhvrQyu2Dicr5V4nktcLNg==}
peerDependencies:
react: ^16.9.0 || ^17.0.0 || ^18.0.0
rxjs: '>=7.0.0'
'@univerjs/sheets@0.5.5':
resolution: {integrity: sha512-x6L2VfVt9fu3YPgtnOAyTIfIcKxk4fgCadGO2TT/z19s3n0HqYobseHaZlPlWuwG3aqgPIyE41LB7qyKtRaASw==}
peerDependencies:
rxjs: '>=7.0.0'
'@univerjs/telemetry@0.5.5':
resolution: {integrity: sha512-q82fkhdXMd6VEIkkWJ1LnbcV01r/+AgApfJbFcZ/827IKHVuSUPzobbFC1tLFJfM+VDWLxiTBPBM5UmphAgTPQ==}
'@univerjs/thread-comment-ui@0.5.5':
resolution: {integrity: sha512-1hPi7i0vKnVQJhKBMcbJx+BpQEXhdtVOvVUNtD9VisIYy4FhOb8iI2o0jGlK5G/yHFG12FGOQSO/YMH95E9dbA==}
peerDependencies:
react: ^16.9.0 || ^17.0.0 || ^18.0.0
rxjs: '>=7.0.0'
'@univerjs/thread-comment@0.5.5':
resolution: {integrity: sha512-uwD7MUaeJkDX64FhiMegT5OzI+XOkR7GkWTA96ZnjKcDZ1NzuQyqkNQXIie7xl2IWpanGBDFbsY4IBwNeM3s9w==}
peerDependencies:
rxjs: '>=7.0.0'
'@univerjs/ui@0.5.5':
resolution: {integrity: sha512-c455sy91IVOSaphc9ISZtkznLxIZL306N1JnOoGhvvzlFl0fgFQSIrobnQE2mhcpHysQguDp2GfnXFlb0vfoog==}
peerDependencies:
react: ^16.9.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0
rxjs: '>=7.0.0'
'@vue/compiler-core@3.5.13':
resolution: {integrity: sha512-oOdAkwqUfW1WqpwSYJce06wvt6HljgY3fGeM9NcVA1HaYOij3mZG9Rkysn0OHuyUAGMbEbARIpsG+LPVlBJ5/Q==}
'@vue/compiler-dom@3.5.13':
resolution: {integrity: sha512-ZOJ46sMOKUjO3e94wPdCzQ6P1Lx/vhp2RSvfaab88Ajexs0AHeV0uasYhi99WPaogmBlRHNRuly8xV75cNTMDA==}
'@vue/compiler-sfc@3.5.13':
resolution: {integrity: sha512-6VdaljMpD82w6c2749Zhf5T9u5uLBWKnVue6XWxprDobftnletJ8+oel7sexFfM3qIxNmVE7LSFGTpv6obNyaQ==}
'@vue/compiler-ssr@3.5.13':
resolution: {integrity: sha512-wMH6vrYHxQl/IybKJagqbquvxpWCuVYpoUJfCqFZwa/JY1GdATAQ+TgVtgrwwMZ0D07QhA99rs/EAAWfvG6KpA==}
'@vue/reactivity@3.5.13':
resolution: {integrity: sha512-NaCwtw8o48B9I6L1zl2p41OHo/2Z4wqYGGIK1Khu5T7yxrn+ATOixn/Udn2m+6kZKB/J7cuT9DbWWhRxqixACg==}
'@vue/runtime-core@3.5.13':
resolution: {integrity: sha512-Fj4YRQ3Az0WTZw1sFe+QDb0aXCerigEpw418pw1HBUKFtnQHWzwojaukAs2X/c9DQz4MQ4bsXTGlcpGxU/RCIw==}
'@vue/runtime-dom@3.5.13':
resolution: {integrity: sha512-dLaj94s93NYLqjLiyFzVs9X6dWhTdAlEAciC3Moq7gzAc13VJUdCnjjRurNM6uTLFATRHexHCTu/Xp3eW6yoog==}
'@vue/server-renderer@3.5.13':
resolution: {integrity: sha512-wAi4IRJV/2SAW3htkTlB+dHeRmpTiVIK1OGLWV1yeStVSebSQQOwGwIq0D3ZIoBj2C2qpgz5+vX9iEBkTdk5YA==}
peerDependencies:
vue: 3.5.13
'@vue/shared@3.5.13':
resolution: {integrity: sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ==}
'@wendellhu/redi@0.17.0':
resolution: {integrity: sha512-lWO5N4u24rYItkiP8Atu63ItHnakIX5XV+jhG6V4EAoGHdo74ssx4PlQa/Nklh9vl2/3odb65BmW4cOHrimhXA==}
ansi-regex@5.0.1:
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
engines: {node: '>=8'}
ansi-styles@4.3.0:
resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
engines: {node: '>=8'}
cjk-regex@3.1.0:
resolution: {integrity: sha512-hM1tngsO2Sco+LesFtGHkkemNBJONUKCeY6RU2VqHBE5kDB8SdnCEJ5M3VoG7M7gL5Kx+GFlzaeSCKXEL9pGTA==}
engines: {node: '>=16'}
classnames@2.5.1:
resolution: {integrity: sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==}
cliui@8.0.1:
resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
engines: {node: '>=12'}
clsx@1.2.1:
resolution: {integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==}
engines: {node: '>=6'}
clsx@2.1.1:
resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
engines: {node: '>=6'}
collapse-white-space@2.1.0:
resolution: {integrity: sha512-loKTxY1zCOuG4j9f6EPnuyyYkf58RnhhWTvRoZEokgB+WbdXehfjFviyOVYkqzEWz1Q5kRiZdBYS5SwxbQYwzw==}
color-convert@2.0.1:
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
engines: {node: '>=7.0.0'}
color-name@1.1.4:
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
crypto-js@4.2.0:
resolution: {integrity: sha512-KALDyEYgpY+Rlob/iriUtjV6d5Eq+Y191A5g4UqLAi8CyGP9N1+FdVbkc1SxKc2r4YAYqG8JzO2KGL+AizD70Q==}
css-box-model@1.2.1:
resolution: {integrity: sha512-a7Vr4Q/kd/aw96bnJG332W9V9LkJO69JRcaCYDUqjp6/z0w6VcZjgAcTbgFxEPfBgdnAwlh3iwu+hLopa+flJw==}
csstype@3.1.3:
resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
dayjs@1.11.13:
resolution: {integrity: sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==}
decimal.js@10.4.3:
resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==}
dom-helpers@5.2.1:
resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==}
echarts@5.6.0:
resolution: {integrity: sha512-oTbVTsXfKuEhxftHqL5xprgLoc0k7uScAwtryCgWF6hPYFLRwOUHiFmHGCBKP5NPFNkDVopOieyUqYGH8Fa3kA==}
emoji-regex@8.0.0:
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
entities@4.5.0:
resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
engines: {node: '>=0.12'}
esbuild@0.24.2:
resolution: {integrity: sha512-+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA==}
engines: {node: '>=18'}
hasBin: true
escalade@3.2.0:
resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
engines: {node: '>=6'}
estree-walker@2.0.2:
resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
fast-diff@1.3.0:
resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==}
fast-equals@4.0.3:
resolution: {integrity: sha512-G3BSX9cfKttjr+2o1O22tYMLq0DPluZnYtq1rXumE1SpL/F/SLIfHx08WYQoWSIpeMYf8sRbJ8++71+v6Pnxfg==}
franc-min@6.2.0:
resolution: {integrity: sha512-1uDIEUSlUZgvJa2AKYR/dmJC66v/PvGQ9mWfI9nOr/kPpMFyvswK0gPXOwpYJYiYD008PpHLkGfG58SPjQJFxw==}
fsevents@2.3.3: