-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpnpm-lock.yaml
More file actions
9926 lines (7767 loc) · 340 KB
/
Copy pathpnpm-lock.yaml
File metadata and controls
9926 lines (7767 loc) · 340 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
lockfileVersion: '9.0'
settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
importers:
.:
dependencies:
'@codingame/monaco-vscode-api':
specifier: ^25.0.0
version: 25.0.1
'@codingame/monaco-vscode-editor-api':
specifier: ^23.2.2
version: 23.3.0
'@emotion/css':
specifier: ^11.11.2
version: 11.13.5
'@emotion/react':
specifier: ^11.11.4
version: 11.14.0(@types/react@18.0.37)(react@18.2.0)
'@emotion/styled':
specifier: ^11.11.5
version: 11.14.1(@emotion/react@11.14.0(@types/react@18.0.37)(react@18.2.0))(@types/react@18.0.37)(react@18.2.0)
'@fontsource/roboto':
specifier: ^4.5.8
version: 4.5.8
'@hylimo/diagram-common':
specifier: ^2.2.1
version: 2.2.2
'@hylimo/diagram-protocol':
specifier: ^2.2.1
version: 2.2.2
'@hylimo/diagram-render-pdf':
specifier: ^2.2.2
version: 2.2.2(babel-plugin-macros@3.1.0)
'@hylimo/diagram-render-svg':
specifier: ^2.2.2
version: 2.2.2(babel-plugin-macros@3.1.0)
'@hylimo/diagram-ui':
specifier: ^2.2.1
version: 2.2.2(babel-plugin-macros@3.1.0)(reflect-metadata@0.2.2)
'@hylimo/language-server':
specifier: ^2.2.1
version: 2.2.2(babel-plugin-macros@3.1.0)
'@hylimo/monaco-editor-support':
specifier: ^2.2.1
version: 2.2.2
'@mui/icons-material':
specifier: ^5.15.15
version: 5.18.0(@mui/material@5.18.0(@emotion/react@11.14.0(@types/react@18.0.37)(react@18.2.0))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@18.0.37)(react@18.2.0))(@types/react@18.0.37)(react@18.2.0))(@types/react@18.0.37)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@types/react@18.0.37)(react@18.2.0)
'@mui/lab':
specifier: 5.0.0-alpha.141
version: 5.0.0-alpha.141(@emotion/react@11.14.0(@types/react@18.0.37)(react@18.2.0))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@18.0.37)(react@18.2.0))(@types/react@18.0.37)(react@18.2.0))(@mui/material@5.18.0(@emotion/react@11.14.0(@types/react@18.0.37)(react@18.2.0))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@18.0.37)(react@18.2.0))(@types/react@18.0.37)(react@18.2.0))(@types/react@18.0.37)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@types/react@18.0.37)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@mui/material':
specifier: ^5.15.15
version: 5.18.0(@emotion/react@11.14.0(@types/react@18.0.37)(react@18.2.0))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@18.0.37)(react@18.2.0))(@types/react@18.0.37)(react@18.2.0))(@types/react@18.0.37)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@mui/x-date-pickers':
specifier: ^5.0.20
version: 5.0.20(@emotion/react@11.14.0(@types/react@18.0.37)(react@18.2.0))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@18.0.37)(react@18.2.0))(@types/react@18.0.37)(react@18.2.0))(@mui/material@5.18.0(@emotion/react@11.14.0(@types/react@18.0.37)(react@18.2.0))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@18.0.37)(react@18.2.0))(@types/react@18.0.37)(react@18.2.0))(@types/react@18.0.37)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@mui/system@5.18.0(@emotion/react@11.14.0(@types/react@18.0.37)(react@18.2.0))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@18.0.37)(react@18.2.0))(@types/react@18.0.37)(react@18.2.0))(@types/react@18.0.37)(react@18.2.0))(@types/react@18.0.37)(date-fns@2.30.0)(dayjs@1.11.19)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@react-hook/resize-observer':
specifier: ^1.2.6
version: 1.2.6(react@18.2.0)
'@tiptap/extension-mention':
specifier: ^2.23.1
version: 2.27.2(@tiptap/core@2.27.2(@tiptap/pm@2.27.2))(@tiptap/pm@2.27.2)(@tiptap/suggestion@2.27.2(@tiptap/core@2.27.2(@tiptap/pm@2.27.2))(@tiptap/pm@2.27.2))
'@tiptap/extension-underline':
specifier: ^2.23.1
version: 2.27.2(@tiptap/core@2.27.2(@tiptap/pm@2.27.2))
'@tiptap/react':
specifier: ^2.23.1
version: 2.27.2(@tiptap/core@2.27.2(@tiptap/pm@2.27.2))(@tiptap/pm@2.27.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@tiptap/starter-kit':
specifier: ^2.23.1
version: 2.27.2
'@tiptap/suggestion':
specifier: ^2.23.1
version: 2.27.2(@tiptap/core@2.27.2(@tiptap/pm@2.27.2))(@tiptap/pm@2.27.2)
'@types/is-hotkey':
specifier: ^0.1.10
version: 0.1.10
'@types/lodash':
specifier: ^4.17.0
version: 4.17.23
'@types/node':
specifier: 18.15.12
version: 18.15.12
'@types/pdfobject':
specifier: ^2.2.5
version: 2.2.5
'@types/react':
specifier: 18.0.37
version: 18.0.37
'@types/react-dom':
specifier: 18.0.11
version: 18.0.11
'@vidstack/react':
specifier: ^1.12.9
version: 1.12.13(@types/react@18.0.37)(react@18.2.0)
autoprefixer:
specifier: 10.4.14
version: 10.4.14(postcss@8.4.23)
clsx:
specifier: ^2.1.0
version: 2.1.1
date-fns:
specifier: ^2.30.0
version: 2.30.0
dayjs:
specifier: ^1.11.10
version: 1.11.19
dompurify:
specifier: ^3.2.6
version: 3.3.1
eslint:
specifier: 8.38.0
version: 8.38.0
eslint-config-next:
specifier: 13.3.0
version: 13.3.0(eslint@8.38.0)(typescript@5.0.4)
file-saver:
specifier: ^2.0.5
version: 2.0.5
formik:
specifier: ^2.4.5
version: 2.4.9(@types/react@18.0.37)(react@18.2.0)
framer-motion:
specifier: ^10.18.0
version: 10.18.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
graphql-ws:
specifier: ^6.0.6
version: 6.0.6(graphql@15.10.1)
immutable:
specifier: ^5.1.1
version: 5.1.4
is-hotkey:
specifier: ^0.2.0
version: 0.2.0
lodash:
specifier: ^4.17.21
version: 4.17.23
monaco-editor:
specifier: npm:@codingame/monaco-vscode-editor-api@^25.0.0
version: '@codingame/monaco-vscode-editor-api@25.0.1'
monaco-languageclient:
specifier: ^10.4.0
version: 10.6.0
next:
specifier: 13.4.7
version: 13.4.7(babel-plugin-macros@3.1.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
oidc-client-ts:
specifier: ^2.4.0
version: 2.5.0
pdfobject:
specifier: ^2.3.0
version: 2.3.1
postcss:
specifier: 8.4.23
version: 8.4.23
react:
specifier: 18.2.0
version: 18.2.0
react-confetti:
specifier: ^6.1.0
version: 6.4.0(react@18.2.0)
react-dnd:
specifier: ^16.0.1
version: 16.0.1(@types/hoist-non-react-statics@3.3.7(@types/react@18.0.37))(@types/node@18.15.12)(@types/react@18.0.37)(react@18.2.0)
react-dnd-html5-backend:
specifier: ^16.0.1
version: 16.0.1
react-dom:
specifier: 18.2.0
version: 18.2.0(react@18.2.0)
react-dropzone:
specifier: ^14.2.3
version: 14.3.8(react@18.2.0)
react-error-boundary:
specifier: ^4.0.13
version: 4.1.2(react@18.2.0)
react-hot-toast:
specifier: ^2.5.2
version: 2.6.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
react-oidc-context:
specifier: ^2.3.1
version: 2.4.0(oidc-client-ts@2.5.0)(react@18.2.0)
react-pdf:
specifier: ^7.7.3
version: 7.7.3(@types/react@18.0.37)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
react-relay:
specifier: 15.0.0
version: 15.0.0(encoding@0.1.13)(react@18.2.0)
react-resizable-panels:
specifier: ^3.0.3
version: 3.0.6(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
react-router-dom:
specifier: ^7.6.3
version: 7.13.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
react-split:
specifier: ^2.0.14
version: 2.0.14(react@18.2.0)
recharts:
specifier: ^2.12.5
version: 2.15.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
relay-runtime:
specifier: 15.0.0
version: 15.0.0(encoding@0.1.13)
slate:
specifier: ^0.94.1
version: 0.94.1
slate-history:
specifier: ^0.93.0
version: 0.93.0(slate@0.94.1)
slate-react:
specifier: ^0.98.4
version: 0.98.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(slate@0.94.1)
sprotty:
specifier: ^1.4.0
version: 1.4.0(reflect-metadata@0.2.2)
sprotty-protocol:
specifier: ^1.4.0
version: 1.4.0
swiper:
specifier: ^11.2.10
version: 11.2.10
tailwindcss:
specifier: 3.3.1
version: 3.3.1(postcss@8.4.23)
tippy.js:
specifier: ^6.3.7
version: 6.3.7
typescript:
specifier: 5.0.4
version: 5.0.4
use-bus:
specifier: ^2.5.2
version: 2.5.2(react@18.2.0)
usehooks-ts:
specifier: ^3.1.0
version: 3.1.1(react@18.2.0)
uuid:
specifier: ^13.0.0
version: 13.0.0
victory:
specifier: ^36.9.2
version: 36.9.2(react@18.2.0)
vscode-languageclient:
specifier: ^9.0.1
version: 9.0.1
vscode-languageserver:
specifier: ^9.0.1
version: 9.0.1
vscode-languageserver-protocol:
specifier: ^3.17.5
version: 3.17.5
yup:
specifier: ^1.4.0
version: 1.7.1
zustand:
specifier: ^5.0.7
version: 5.0.10(@types/react@18.0.37)(immer@9.0.21)(react@18.2.0)(use-sync-external-store@1.6.0(react@18.2.0))
devDependencies:
'@types/file-saver':
specifier: ^2.0.7
version: 2.0.7
'@types/react-relay':
specifier: 14.1.3
version: 14.1.3
'@types/relay-runtime':
specifier: 14.1.10
version: 14.1.10
concurrently:
specifier: ^8.2.2
version: 8.2.2
eslint-config-prettier:
specifier: ^8.10.0
version: 8.10.2(eslint@8.38.0)
fetch-graphql-schema:
specifier: ^0.2.1
version: 0.2.1
format-graphql:
specifier: ^1.5.0
version: 1.5.0
husky:
specifier: ^8.0.3
version: 8.0.3
lint-staged:
specifier: ^13.3.0
version: 13.3.0
prettier:
specifier: ^2.8.8
version: 2.8.8
raw-loader:
specifier: ^4.0.2
version: 4.0.2(webpack@5.104.1)
relay-compiler:
specifier: 15.0.0
version: 15.0.0
packages:
'@babel/code-frame@7.28.6':
resolution: {integrity: sha512-JYgintcMjRiCvS8mMECzaEn+m3PfoQiyqukOMCCVQtoJGYJw8j/8LBJEiqkHLkfwCcs74E3pbAUFNg7d9VNJ+Q==}
engines: {node: '>=6.9.0'}
'@babel/generator@7.28.6':
resolution: {integrity: sha512-lOoVRwADj8hjf7al89tvQ2a1lf53Z+7tiXMgpZJL3maQPDxh0DgLMN62B2MKUOFcoodBHLMbDM6WAbKgNy5Suw==}
engines: {node: '>=6.9.0'}
'@babel/helper-globals@7.28.0':
resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==}
engines: {node: '>=6.9.0'}
'@babel/helper-module-imports@7.28.6':
resolution: {integrity: sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==}
engines: {node: '>=6.9.0'}
'@babel/helper-string-parser@7.27.1':
resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-identifier@7.28.5':
resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==}
engines: {node: '>=6.9.0'}
'@babel/parser@7.28.6':
resolution: {integrity: sha512-TeR9zWR18BvbfPmGbLampPMW+uW1NZnJlRuuHso8i87QZNq2JRF9i6RgxRqtEq+wQGsS19NNTWr2duhnE49mfQ==}
engines: {node: '>=6.0.0'}
hasBin: true
'@babel/runtime@7.28.6':
resolution: {integrity: sha512-05WQkdpL9COIMz4LjTxGpPNCdlpyimKppYNoJ5Di5EUObifl8t4tuLuUBBZEpoLYOmfvIWrsp9fCl0HoPRVTdA==}
engines: {node: '>=6.9.0'}
'@babel/template@7.28.6':
resolution: {integrity: sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==}
engines: {node: '>=6.9.0'}
'@babel/traverse@7.28.6':
resolution: {integrity: sha512-fgWX62k02qtjqdSNTAGxmKYY/7FSL9WAS1o2Hu5+I5m9T0yxZzr4cnrfXQ/MX0rIifthCSs6FKTlzYbJcPtMNg==}
engines: {node: '>=6.9.0'}
'@babel/types@7.28.6':
resolution: {integrity: sha512-0ZrskXVEHSWIqZM/sQZ4EV3jZJXRkio/WCxaqKZP1g//CEWEPSfeZFcms4XeKBCHU0ZKnIkdJeU/kF+eRp5lBg==}
engines: {node: '>=6.9.0'}
'@chevrotain/cst-dts-gen@11.1.1':
resolution: {integrity: sha512-fRHyv6/f542qQqiRGalrfJl/evD39mAvbJLCekPazhiextEatq1Jx1K/i9gSd5NNO0ds03ek0Cbo/4uVKmOBcw==}
'@chevrotain/gast@11.1.1':
resolution: {integrity: sha512-Ko/5vPEYy1vn5CbCjjvnSO4U7GgxyGm+dfUZZJIWTlQFkXkyym0jFYrWEU10hyCjrA7rQtiHtBr0EaZqvHFZvg==}
'@chevrotain/regexp-to-ast@11.1.1':
resolution: {integrity: sha512-ctRw1OKSXkOrR8VTvOxrQ5USEc4sNrfwXHa1NuTcR7wre4YbjPcKw+82C2uylg/TEwFRgwLmbhlln4qkmDyteg==}
'@chevrotain/types@11.1.1':
resolution: {integrity: sha512-wb2ToxG8LkgPYnKe9FH8oGn3TMCBdnwiuNC5l5y+CtlaVRbCytU0kbVsk6CGrqTL4ZN4ksJa0TXOYbxpbthtqw==}
'@chevrotain/utils@11.1.1':
resolution: {integrity: sha512-71eTYMzYXYSFPrbg/ZwftSaSDld7UYlS8OQa3lNnn9jzNtpFbaReRRyghzqS7rI3CDaorqpPJJcXGHK+FE1TVQ==}
'@codingame/monaco-vscode-05a2a821-e4de-5941-b7f9-bbf01c09f229-common@23.3.0':
resolution: {integrity: sha512-sUeRmEwNwdr5kYN020omqONmtrsFfDWOY1ItIe5GZQbKjkxMOVjooYzhUlu+zqfZUC3R1LzNxGooF08DlZYIQQ==}
'@codingame/monaco-vscode-08fd81c0-7fd8-5f7c-9776-f918dd532714-common@23.3.0':
resolution: {integrity: sha512-V3lqol296mETyHOeP7wCI8jS3/lKBEpmPLqg/1B+8dZ0xliQawhYw/z1dvXbT64X+5Gm4OUSyJT/oitjqmCgJA==}
'@codingame/monaco-vscode-0c06bfba-d24d-5c4d-90cd-b40cefb7f811-common@23.3.0':
resolution: {integrity: sha512-FaRcovitIXPbhtvFtIIr0J6TS815n89rpBXgDwYPyCr842A9VJ9ACoS9Sske7VxnbvlFB5OTHHwcE/TEfHut7g==}
'@codingame/monaco-vscode-0cc5da60-f921-59b9-bd8c-a018e93c0a6f-common@23.3.0':
resolution: {integrity: sha512-BD3PRQT1YFg0OI1QqbPRvsx1k1QSGfThJi5m6phhbiUGFw9oSkXxEWmj+jZvRtiAqXWsUHLDAwXfZEQ/x63L2A==}
'@codingame/monaco-vscode-10af0e5d-64cb-56de-b584-29ab4a355d15-common@23.3.0':
resolution: {integrity: sha512-ccQKJQOQvyFxxGcBLcz1e1zfl/0ryoteclgeG2c0E6FICVWPLv0IX71YE+gALdYOb6hh6qk23HfUVGGW9xhInA==}
'@codingame/monaco-vscode-15626ec7-b165-51e1-8caf-7bcc2ae9b95a-common@23.3.0':
resolution: {integrity: sha512-EXVZEhXVsJG6JufSeJjVKyd7p0vF+qV5sC3p7vC4G7ghSm2DE3OZyJ1HQKEEcE8yl26xoYv1pJnRKa+NyDRkFA==}
'@codingame/monaco-vscode-158b9837-fc78-5d9c-86f5-9134e4358643-common@23.3.0':
resolution: {integrity: sha512-ndpBNtb0FWMYSzsfeAnbIKZD48R2kvx+trVsGNDmCdGU5Q2Et8lZ4Jh/1JlQ/xSD8xSQ6ef/HONdeoCfdELcEg==}
'@codingame/monaco-vscode-16b9b017-9377-5198-9904-c344b3b2ad14-common@23.3.0':
resolution: {integrity: sha512-c11HSm72/Ggz2vBjBvjCKdz2y9Mzlby12cDz6SkmD+ojMPoUTJNZ18O5CfZ7bF0sqhK514Xl/knUg/5TfjfrSA==}
'@codingame/monaco-vscode-1f37b5fb-f500-54d2-b98a-d12d100cafca-common@23.3.0':
resolution: {integrity: sha512-x0ptKD9fgD+4vfvobKBv2OlNlgVUIM8F+8fI+3LbJDu2B5+HxNsjLXKp/n1TFQmBpYH3irM3Fbbapb21wZyY+g==}
'@codingame/monaco-vscode-23aade48-f094-5c08-9555-97fc9cca96c9-common@23.3.0':
resolution: {integrity: sha512-9ybfnQKDFydk/1SiMFAbdeDUTWv5o5Bi+NvgXG8Ia8ETh6/YTnjK1bOM70xvcdDGM7GXyG/kEz36cCA0XHh/bQ==}
'@codingame/monaco-vscode-249dc928-1da3-51c1-82d0-45e0ba9d08a1-common@23.3.0':
resolution: {integrity: sha512-YgHi05ldCc/4b7U9g2NH/05CxKN8lWpfCz/Mtbf1noGJr1czQ5BpDfCvYkVsajD/uaHdjnRR2eW0y6KH3Dj8ZQ==}
'@codingame/monaco-vscode-256d5b78-0649-50e9-8354-2807f95f68f4-common@23.3.0':
resolution: {integrity: sha512-c+sA3alANJzhjNMbbexnt0zeaOa+m7fdRa5l/qV12zKdlMfXXsJXUNcxsFzFEcPAii3dG7Ec4Qm2Gz7eiSOqHQ==}
'@codingame/monaco-vscode-2a94c04a-b85b-5669-b06b-89c1bfa11cb9-common@23.3.0':
resolution: {integrity: sha512-asbWjPmAnzNVxJ7PrZk//QepVva3hIFAU7Yf2OLgJ2j7cM1zPVXH9OwrFpzKRwoRVHbUDr2mhn76Kry/N0uIIw==}
'@codingame/monaco-vscode-2f06fe84-148e-5e6b-a7ca-c7989c5f128a-common@23.3.0':
resolution: {integrity: sha512-xVibtPKG8msZt2K0NXOzRsdLwFyLlyH02RTPEmcP5+jjOseYssJoaXktvt1x971LJK+BIUk4snghSdIE/N3/Rg==}
'@codingame/monaco-vscode-3b5a5cd1-d4ff-500a-b609-57e0cd4afa0a-common@23.3.0':
resolution: {integrity: sha512-ERDs+ZuxQVIt1cxbEbHJJUPuMDeMAa3QsKMU+8JtD7ba7q4hPTQKdRq4vJGkI1EqmAPZoj7HjIQgw1AGzmzZjg==}
'@codingame/monaco-vscode-40cada32-7e9c-528a-81fc-766e4da54147-common@23.3.0':
resolution: {integrity: sha512-c984GMMlNiJ9vcCsLiZ9TrpWYu+YrJD9cP5oZ9hCoMlVGL6mhCupetCBVaxDktjZA+/Gia0g1K2osxZR+KZ0ow==}
'@codingame/monaco-vscode-4a3ac544-9a61-534c-88df-756262793ef7-common@23.3.0':
resolution: {integrity: sha512-lE8a5Sg7yOpJJZM5lNvlkPM8gI9kTwIpJCe8FnLLXTAHAGWwQ2N+K357fVXnKg7xiHZwAO5q3pOEyeb+bCjwtA==}
'@codingame/monaco-vscode-4bf376c2-03c7-58cb-8303-c67aeefa3d3d-common@23.3.0':
resolution: {integrity: sha512-shMtuqpam22vI0OGqDiTqvQmQG6E8teeuWGrfTc2HN6L1sRJi+Eqo/MWGEPZC4cRcophQHks4c8A1JGeayS3+w==}
'@codingame/monaco-vscode-4db3f2fb-d745-58fe-9e0e-eb67152ab711-common@23.3.0':
resolution: {integrity: sha512-+OMn0XRgfCT1Zf7vXFJgHdvEZyVcLQo6bWqNWDVnW4O1pf4b8QWVME10kBw36VPB1/DU7HLgLifxtVTrvOEA6Q==}
'@codingame/monaco-vscode-501b06ab-3f58-516b-8a1a-c29d375d3da4-common@23.3.0':
resolution: {integrity: sha512-KPJ/Ei/bukRIBlE5zdpssUB7hBe6F8TIAUbZLwtXBT+XBiu9p91/tcWZ5vL/g9gjlHuFmqGVpJe8LpsT6awaBA==}
'@codingame/monaco-vscode-5452e2b7-9081-5f95-839b-4ab3544ce28f-common@23.3.0':
resolution: {integrity: sha512-pZJbLzo8mCMBPO8aTRmmmuNtFnzqMK3437wMfALGXhqD5ZptOHsrtG045CX+gxcPepV7CMZkiILYEtu4NKO5qw==}
'@codingame/monaco-vscode-571c8352-7953-5038-9f09-e03bb6219a0e-common@23.3.0':
resolution: {integrity: sha512-qHh8cii7He2VsfVhod/PC9Tyov3cCr/s8V/d6PbGP/j7muvcQUAmZT44A4qhuEP913q6KrnhzXjXRm+dUL1Pcg==}
'@codingame/monaco-vscode-60014c9d-b815-501d-83a9-4b08725c2ec2-common@23.3.0':
resolution: {integrity: sha512-sAoDuYWmflwz+8v9Bd2vV5JJORiEhJknXUz1lSnPKkKfEfPvJXKwIGkvjjbSrL4NjJ4XS4/RADE1A104bb1S8g==}
'@codingame/monaco-vscode-6845754f-e617-5ed9-8aaa-6ca3653a9532-common@23.3.0':
resolution: {integrity: sha512-rSsVxOjxRFuB+0WyzerG1nml7HysVamkRPO+F4PMdKG3i0zTTjX0KmT8rgbtsZHFjJ3GSQCGFtELJIyLJACDLg==}
'@codingame/monaco-vscode-6bf85d7b-e6e3-54e9-9bc1-7e08d663f0f6-common@23.3.0':
resolution: {integrity: sha512-qE2uYa1qW8HI4RMSR5xIIuiGbG14IMfaX3ClfIND1XaMCPdzOgB1Y3GaDrOe8wSevl3vnZ+v7zSjJozMv02nAA==}
'@codingame/monaco-vscode-6f931a91-88ea-5232-897f-a17ec3929ba5-common@23.3.0':
resolution: {integrity: sha512-bFz3NcZU42FP4A/xAKHQuhXNPP3blqAgDoET+Ri2e0rHoUQgrVZi0aVDIQZnOlieGNjHz03NwJgD4j4Io4ApXw==}
'@codingame/monaco-vscode-7f39b6f1-3542-5430-8760-0f404d7a7cee-common@23.3.0':
resolution: {integrity: sha512-48lT1dd+2nv6BwMllOvOlfqQlEyHcvWQ+z+C79g16dA6RXZ2fYegkNU2ACElde+BfrAqqY0uLI/nmSgih4Na9Q==}
'@codingame/monaco-vscode-85886bdb-61c5-52f1-8eb7-d1d32f6f8cbd-common@23.3.0':
resolution: {integrity: sha512-NCxJa+yS//4eRL0U6gCJNfOwYwOX9tg9dLzlK5UQIGsoHIP9W8C7J7MRwIyZTAKvwFY6xkgDqBAfrLwTaNElkQ==}
'@codingame/monaco-vscode-897bebad-39df-57cb-8a57-36a271d038be-common@23.3.0':
resolution: {integrity: sha512-6Ghl1Y6nzy+KH1AkLoV89c2Lk4MyFJfv1VfSHUF3PL3tIXRE5SaFaCkKTY/Obn+2AfUD5eRvmaBV5JlIlYCbTA==}
'@codingame/monaco-vscode-8ccb7637-50ea-5359-97bf-00015d7fe567-common@23.3.0':
resolution: {integrity: sha512-hlGCpbz41JxaWD63P1gxrMIz9UpPFpBswwR3LaP2O3e/eXxD38UOlzjwc7julVWSYVXZdPKY0fKtmPpCfw2xmw==}
'@codingame/monaco-vscode-96e83782-7f38-572e-8787-02e981f1c54f-common@23.3.0':
resolution: {integrity: sha512-bcoFhfvpTwFGPV49tOUDFgMPXUJce4YZ31uuAKH6R9LulUqOfJ4zX3Gqw4pLqD53Lq4sboeQ06fuGjuUue5NRQ==}
'@codingame/monaco-vscode-9a1a5840-af83-5d07-a156-ba32a36c5c4b-common@23.3.0':
resolution: {integrity: sha512-So0Xwd1ftUc3qmLSz/ADCX/7F8bB6w8dR5tvoHVxSmPEc8/aH/bpQFei7ErLQ52C5/5psPfDOS4h7BnIVA84yA==}
'@codingame/monaco-vscode-9d2c06d1-1f89-51a5-9964-aa01fe50c198-common@23.3.0':
resolution: {integrity: sha512-b5py9FSl+r6fFblhb1eCCx9sqJuUNr4FAXpUO1m+/e3AQFo5FkvjmAqpZ9fyqhtQKmIL7wJGhOTG+NTrSgv7sg==}
'@codingame/monaco-vscode-9ee79c1a-3f03-568b-8eac-b02513a98b68-common@23.3.0':
resolution: {integrity: sha512-8u65H/DW5by0NUEDBx/JeYvZkjgW8LsqahwV4QuhM3RBKbkMOSGvsJ6osCL8R1n0vGKO0aqJl414klgFVF3SXA==}
'@codingame/monaco-vscode-a8d3bd74-e63e-5327-96e8-4f931661e329-common@23.3.0':
resolution: {integrity: sha512-MLapuVdSM7uJOk6gwRS/hollwTh0dJdLWPTGMhybJRnAh88dCZ0ZMpkPDFWq1oN+vKhdszkuNDwpA+ELtE82VQ==}
'@codingame/monaco-vscode-aac7027b-326c-513a-95a9-e4eedd151b38-common@23.3.0':
resolution: {integrity: sha512-OG3EygCSq0p46IasfsZE2gxkyqn+wDf1Nj6KVrFS0pWaUI5TqQbJIsgqfVyy65XWHYLDdlhyZAyWmzq2LVhuRw==}
'@codingame/monaco-vscode-abed5a84-8a82-5f84-9412-88a736235bae-common@23.3.0':
resolution: {integrity: sha512-K7AEjQzytO7LfW1gL6MBLB6SjQM6y29Xxe2xu0KJ2juF1soBrXYDGd/HOVuP1aBoWL7prM/hMvQZnlYFcYKIdA==}
'@codingame/monaco-vscode-api@23.3.0':
resolution: {integrity: sha512-CSe+S1uSVIVBRp5pGDeD2ABWMrX47tmBrV4wl7GIfoKDlBt8iazmUC9aRO+UH1iDea5WcS8A3xkHgxjiriyeSA==}
'@codingame/monaco-vscode-api@25.0.1':
resolution: {integrity: sha512-iGxtRL74wLSj/yGrHmk21aVifTZyPR5RkLjB6pbfYj+W7vB3h0eAJLJe1dPz37tQK9z1TAoUhpFxJVtx7bUn8A==}
'@codingame/monaco-vscode-b6d52a6d-8c8e-51f5-bcd2-1722295e31d9-common@23.3.0':
resolution: {integrity: sha512-6DGrqAhjG/gcyQBmlO8g2EDRfWaG4yfqb4th8CkZAqw7k/uy+wGXttpAtFVr6gVo6HF1KCSNP2PuLTGmh69xLQ==}
'@codingame/monaco-vscode-base-service-override@23.3.0':
resolution: {integrity: sha512-F7xcEQwQMOBrxVaaudTh8jjoIhUYacGvYGJ5vDGMjIu55SuZC47sTFJ+3zCbT8Zv4GvR4tGrrIR+WoMNey2Wtg==}
'@codingame/monaco-vscode-base-service-override@25.0.1':
resolution: {integrity: sha512-mgysec2owdAeN4UBjmrrkaQBliYiam+la5iv1U8ioc63fkBqjKRQGCETjuRbnzOmnDGd6SLrK7NMoRB6+/LOmQ==}
'@codingame/monaco-vscode-bc6f260d-ec63-5c95-9446-1ca7d0872719-common@23.3.0':
resolution: {integrity: sha512-IvH39qfrMLJ8etBDBiy563gMtyxMFzOAzPEGCqgFbrXEGpk0pvCpLVMxtyaC3aDQwVjY0LOcvw6w7WlnE+UiWw==}
'@codingame/monaco-vscode-be8ddbb5-094a-5657-b1cc-fe106c94c632-common@23.3.0':
resolution: {integrity: sha512-pHO8cvGR2sWcUoRCzyPACqNRjVm0m2CD7VJ+7WZnSZygLoWwnN7ZMGr6I2P+FTgUSaC+SE2buspRsFjkEah2eg==}
'@codingame/monaco-vscode-bf94ddb5-e436-506a-9763-5ab86b642508-common@23.3.0':
resolution: {integrity: sha512-zrhObDA1OueQluDloSyYjQuAp+t3J2IABaK9fU9V7mlu0jPM2QvlLHyCRLQ2bhtj4axkzofLSEBzSDHObDqBHA==}
'@codingame/monaco-vscode-bulk-edit-service-override@25.0.1':
resolution: {integrity: sha512-ajWs0xTAJch74dODwyq7R4XgLTRM1ncNzfQJJlTTtvBnECe6RYRFqAyH+ra2kuqRljMgU/jBEQHC8WVsP2kWKw==}
'@codingame/monaco-vscode-cea4d01f-6526-5c2f-8b09-b168fead499f-common@23.3.0':
resolution: {integrity: sha512-LsoOY8B1E7Wx10vASg38DETshZrmTrtYGGgVPJifYkS+V39UlqdRT7VoP2vg2kQSAQtaPJvwwRwWjpe5J992gg==}
'@codingame/monaco-vscode-configuration-service-override@25.0.1':
resolution: {integrity: sha512-wd7Dqw+ML5styEbHUixlJ5qwr56dBSvB16lX37L5DkDeEBLnI4eTV1/hk5+YxPkJijinToZu8naQE4ezRcj4jA==}
'@codingame/monaco-vscode-d609a7d3-bf87-551a-884f-550a8b327ec5-common@23.3.0':
resolution: {integrity: sha512-FWoAWotafXG/49p3Tai4NWrUh22Y/bcBlUsO2AltrrSxXJ/IGi0o1lsDOgfhEB118zUWzkv9FOJqafcQU20DHw==}
'@codingame/monaco-vscode-d987325e-3e05-53aa-b9ff-6f97476f64db-common@23.3.0':
resolution: {integrity: sha512-OMCJvjQ33eGAipkTODT/39q3hF8lElUl3Wdivj2ie+kzzK5yYIcJ9BkhnjGwvPw5zZwxybTbsOAkrZ2eQzhBvA==}
'@codingame/monaco-vscode-de235d7f-e72a-5adb-9256-acf6c64eb6f2-common@23.3.0':
resolution: {integrity: sha512-74cOvWsZaJ588KJPIiJUds1notW0rKfM+b4Rxv0/39nm0IoeNbdLeqM7Y+mpjos0vaew5VGBGQXcmCADlRnlHA==}
'@codingame/monaco-vscode-eb7d5efd-2e60-59f8-9ba4-9a8ae8cb2957-common@23.3.0':
resolution: {integrity: sha512-S+JpH0scK9NSEcReHpjNTORE4bDNZCNVsmYwk2xW7JyqRgES4O56Fq13cgx6t1XXnsYMDDZ2FqAp4RVsz4aaEw==}
'@codingame/monaco-vscode-eba0b9b3-174c-5dae-9867-a37810ca1808-common@23.3.0':
resolution: {integrity: sha512-oIUlBKvjTstrF3wMGcEyZwDubtkiqPlf/M/MTjzzE4SR+re/SFTM5hDacx1jN2S/p8oZANdUpX6w7+AI295PbQ==}
'@codingame/monaco-vscode-eda30bac-0984-5b42-9362-c68996b85232-common@23.3.0':
resolution: {integrity: sha512-DK3JS3CEiZcxSIekhOsq8MyBzbxnPnAdR/0IZ7+vFdZezplJohYwQ5NB6ZdAERsc6NqUhKnzC3BgSkMjd1J68Q==}
'@codingame/monaco-vscode-editor-api@23.3.0':
resolution: {integrity: sha512-v+awScYO8WMzGdgG1SYLyrZvDuPF9J63JErXBWWU0MSchGtFzXy0D7GzFe2MbmL6jmkL5A6Z+4b7T5/bBw36dg==}
'@codingame/monaco-vscode-editor-api@25.0.1':
resolution: {integrity: sha512-O+Aw0OX86QO5s8wjW52UBKgl4AErwd5uUcbnxCyDGdd8Ug9qhYcMP66//az8FVHL0wV1Hph7xmqvx7szXvXmiA==}
'@codingame/monaco-vscode-editor-service-override@25.0.1':
resolution: {integrity: sha512-vXFETrma2sgQ9kwfpautfLyIsK48d2dzxbe6KzwHkMuztv+J4r/rByfuFCcNz3F11nQvT9WeGZjxWDXvySe6FQ==}
'@codingame/monaco-vscode-environment-service-override@23.3.0':
resolution: {integrity: sha512-R2J1T7WG/dsHU7GWYI7EPvNjzI3Oh70un3zJwMJ6ZkElxbIG1WDCTUgt4tZLbuS2VRYLJFIq5xxS5M4PqoxxnA==}
'@codingame/monaco-vscode-environment-service-override@25.0.1':
resolution: {integrity: sha512-Sgd3AYLA/RGZk5Lc9KTt/4isUh/NrHqgT7sReo7MPHigB6tFB8EbSc0s9xMx4EwCgwDp/2Bq5kDG2qThOnjhVQ==}
'@codingame/monaco-vscode-extension-api@25.0.1':
resolution: {integrity: sha512-mVO+B/DK4QWvUaL5xpkCRn5U2FM4eanIwAnsdm4/42ghq8jwH/uu2zp/7QIriMcXhO+1bVJWPx43WkXYhwjMfg==}
'@codingame/monaco-vscode-extensions-service-override@23.3.0':
resolution: {integrity: sha512-ogresQw8Kd+us7tdIaEXg7xLxpkg6AePg7rrH502HSp0uE4cFyfD96iohEZLAlS6p1Np0EpzpOwZmKCyo6VMWw==}
'@codingame/monaco-vscode-extensions-service-override@25.0.1':
resolution: {integrity: sha512-BDnOqKHjwwAPNXcwIa7+P7vxS6OuQNFvUvGuWEyrQ1POg4Y51dR5DpO782qbE/mZ0rHCsl43mFTxTkKEu0fIQw==}
'@codingame/monaco-vscode-f22e7e55-aee8-5b52-a6bc-950efd9f5890-common@23.3.0':
resolution: {integrity: sha512-e3F3SJZM8OlOFcSjuVhaPrfLNn7t879cQRy4qo3XLluO7+/uTZaWWSVCRHntMi15BfL/B8M5RzSWdeOCIXa4ZQ==}
'@codingame/monaco-vscode-files-service-override@23.3.0':
resolution: {integrity: sha512-6PP0WQGrp9XiJNwk0taI25UVclE92+6IRSsEyLmN9GKt7EDZpVq6qYelTW0Z4158TXZw/FSQU4QuqHqK9vGNCQ==}
'@codingame/monaco-vscode-files-service-override@25.0.1':
resolution: {integrity: sha512-ZL+Ps6XHNKR87cZyGQ6wF5ogEv1M2wrswOZ5dWmE+ol5MCaWzOe7d012m3LJ9wEc6zud81zhJozqIqkEraSnKQ==}
'@codingame/monaco-vscode-host-service-override@23.3.0':
resolution: {integrity: sha512-dKF1lkk/9fkRMB0EU1qe9+my14HecNol+KHRFQffCZ0SzB5M78/sk+MYA7/7vha9A6MGZ5iyAWj4M8HLM4l/dQ==}
'@codingame/monaco-vscode-host-service-override@25.0.1':
resolution: {integrity: sha512-EAa/KCN/L0dNuoWBI/X0J94XmNgfKGLMf2f/Y+1j1lIVdKpz1ueIXOmDziSXRqByXetl4MHiu28VEarihAKKBw==}
'@codingame/monaco-vscode-keybindings-service-override@25.0.1':
resolution: {integrity: sha512-Lq9d74A+cZZX+BL3UejnAzaqs3W5wBwyVBcrqV0PXGwW5U/LbPvw8ug5H58Napam7Vc3aXS1g1OhcqpAKrItjg==}
'@codingame/monaco-vscode-language-pack-cs@25.0.1':
resolution: {integrity: sha512-7tIU+HZi2fcePO66plQFgyFPoG2uYRwmt50DpFSEHndu8/fgOi8YtcOFKIW2UMZISUg5quUyPNQTOIttzSWQQg==}
'@codingame/monaco-vscode-language-pack-de@25.0.1':
resolution: {integrity: sha512-+LJ1fCX6fWOY+tHHFwS/6HqKgB2bwwVzr0kkp+F7T/UAVqPzJJV6GGwDKagtKP0TmHBEuIB+CyVnc/kkHIKbSw==}
'@codingame/monaco-vscode-language-pack-es@25.0.1':
resolution: {integrity: sha512-FkXJ2fLJb8wDnGXf6RuiG1nVbTrUG3CsB9SybMZAqC1Uzo8vqJzkYm6tshlCJ5gmWKRpymQM8MKvtGS+nc7YgA==}
'@codingame/monaco-vscode-language-pack-fr@25.0.1':
resolution: {integrity: sha512-TVaNc5PslhijFnPQVytyyVqTRHTzAjOstG3AHL++dmcchbojY7mJZeCiFGtp2/BpHSUUT1X9PgzZrHkIGF6jNg==}
'@codingame/monaco-vscode-language-pack-it@25.0.1':
resolution: {integrity: sha512-UYR42A0uTP+RlepRCO3Q+1WgpY5cMjEzsUSaaVgBVXBvxSHsnX4OvJMrUtfGK3S70nPV0M+tkfh8ld6P10bY7w==}
'@codingame/monaco-vscode-language-pack-ja@25.0.1':
resolution: {integrity: sha512-9+ailHTRAP/Dj9/5FDe0V5emretRwWUDgDi73tGCTitJwETHSNF0kDGmbx1wQxkwgbcMQ1Wh8QFfSZ45nMFjBg==}
'@codingame/monaco-vscode-language-pack-ko@25.0.1':
resolution: {integrity: sha512-oGcBSdSygnk2Sm5XCr1oBag7QnO/CDk5sJYlhbfJpLUjKGEVarIZDkWKoSE40v6SSf9HHtwkqWXygJq/C8DNkA==}
'@codingame/monaco-vscode-language-pack-pl@25.0.1':
resolution: {integrity: sha512-GkZzoalql1H46iNQmEDmt4S96p+uGs3FBvQ9QhewXJKuvqsZqprp2O5kPR7P+c2HJka0u7nf01Joq9KCr5HR0A==}
'@codingame/monaco-vscode-language-pack-pt-br@25.0.1':
resolution: {integrity: sha512-O6lgg/C+77abwEdInQuJUVLkx96C2DY40t0isnrJAetYaYVX5gZHchnPMj0DJf8R4k07f6veFyECu8Zcwbp/2Q==}
'@codingame/monaco-vscode-language-pack-qps-ploc@25.0.1':
resolution: {integrity: sha512-7KJtHklCFBxKBIb/iY8Qu+GCkjRuHouc2hMBeMEJjPwRoGHn9YHyBhYHsXv4kFMyJTvOhnnpETuRDClu8uwDhA==}
'@codingame/monaco-vscode-language-pack-ru@25.0.1':
resolution: {integrity: sha512-eStvQCNW4edj1/UZbdAFKI5lM756EcYPEJVGX3u8wcXXf6kmSIscvBj0xlRPiUXN50emAS3pJTMvLoNf7yUaQg==}
'@codingame/monaco-vscode-language-pack-tr@25.0.1':
resolution: {integrity: sha512-qoo7eMOiavkKHe7X0G+03ABHeRokv0lGeZCCMZ2Cd1Oz5e22F3u0YwUBg+h9UJIuoGPs1aommhXpg3f7UNaaRQ==}
'@codingame/monaco-vscode-language-pack-zh-hans@25.0.1':
resolution: {integrity: sha512-m9qH7vU28Bq7GBQF1l9J+xQO+eIuNc+NqmEBe22zZR7AhYwuH1h57P7L1zzn8U+wSaENgZ63uPJvxGSuKctn1g==}
'@codingame/monaco-vscode-language-pack-zh-hant@25.0.1':
resolution: {integrity: sha512-CSNcrmu5XjCSXal8t+ju04L/WRq6lmzpzY3YwzVALxnYyT8Hv0xJXdrZ3xxo9I5ulQlJ7cT8e0bcDb+Qm8zcvQ==}
'@codingame/monaco-vscode-languages-service-override@25.0.1':
resolution: {integrity: sha512-0xLIi8pmPiAyv+P39s/ZQ2ApyCBABLP0qRla2DAD5nJOT1IX3ihNx0MCP3f9Su7fYeR5O0NcNLN+id1DFA04AQ==}
'@codingame/monaco-vscode-layout-service-override@23.3.0':
resolution: {integrity: sha512-3W508n5uP0HRee5wiUhQsU1H5n5QWSgrzFh29iZWUydT1Ym+4TKZl8gUHZ6zuo/XZbCyfKaCjbgQkYy2D+i4CQ==}
'@codingame/monaco-vscode-layout-service-override@25.0.1':
resolution: {integrity: sha512-JAYwuJt6MH2UhlRLeuPKEHH5Ng92YDsm2l4V+Dp8lIdYr3XW5K5P6JTWwiiQua1ET9XshLOk37QIRq8AvDpUpw==}
'@codingame/monaco-vscode-localization-service-override@25.0.1':
resolution: {integrity: sha512-wx2xhsfo6kp7Mc55vMshQSLlTN0W0UB95I5IATKN+oQU6eNTwHCLs6qIgoEm9qx5zMLFuc+Bfic0NOF8OKGwlA==}
'@codingame/monaco-vscode-log-service-override@25.0.1':
resolution: {integrity: sha512-FXwt1JuISrIdORpnwZgDcV4idD6QLFQwWMAyCP//18pfu5NGIVF/r7nvyZ0fzMtPIKlLNuTlzTutK8dea2s0TQ==}
'@codingame/monaco-vscode-model-service-override@25.0.1':
resolution: {integrity: sha512-d9S+1B090OhfDKKaNjHniPOuLSNrYVnIt+MnN5vMte0wPy2EmlY2E7PnPEl4kVSOEVkAXaPzS+GrEusPMUB6Vw==}
'@codingame/monaco-vscode-monarch-service-override@25.0.1':
resolution: {integrity: sha512-cbj+tyO+jNu42WCKByKxXUM1pN5hylZJiDCeV+xqeRkyI0bcZdo0+uE3jKNMiZoziuV+MqzHiFMS8yKiSwLEUw==}
'@codingame/monaco-vscode-quickaccess-service-override@23.3.0':
resolution: {integrity: sha512-2NgDfBqzwAKCAGxEwC0w6fcifnz8jGPNF3HIdDJ2VjkOmwnJcx4IOriM8aF4uHuY/446JAdV6d4AzCrFK/XDWg==}
'@codingame/monaco-vscode-quickaccess-service-override@25.0.1':
resolution: {integrity: sha512-rKj/BTn7FjWDG056JBq0x0D+I4pWCTwzPqRSYSmeD1hXmdr7shEiQPZR/4uWrCvHVYwo/08bUScf2VzMqGTG4g==}
'@codingame/monaco-vscode-textmate-service-override@25.0.1':
resolution: {integrity: sha512-Wx/1OmoJo7gVjkeO6/xb/VVw5b2bVZd0fWGzILbo3RVUSl6D2DHI/CLrgRQ7PI72k8a0IlRLMmxSvwAeYcx8BQ==}
'@codingame/monaco-vscode-theme-defaults-default-extension@25.0.1':
resolution: {integrity: sha512-i3ma2LbKBLxKy3kIETGDxkZuCZPjmtgD3yosJm1mqVUdZpRGieYG3OvO63NJXJC0R2kmqOnHR3dc/EqaRGexoA==}
'@codingame/monaco-vscode-theme-service-override@25.0.1':
resolution: {integrity: sha512-fUQv5ePnryR5JJjBguWrS0+Oebj1JNaa9s7jGPGuTRZ+Lmtj0K4XdI/jo4bRKOWgeST3ZRrjItILLmXUzU9YWg==}
'@codingame/monaco-vscode-view-banner-service-override@25.0.1':
resolution: {integrity: sha512-sQDIr+ZNIIlQ3Xaz7rwFKcjGY6S5VNzb3wKIskjX1gid2kHo6dgjog9IRrc5Tn7ccvZx6w2SzCSGQrg1XOI8JA==}
'@codingame/monaco-vscode-view-common-service-override@25.0.1':
resolution: {integrity: sha512-Mu19oAQwdnKlwAuc+7ghsFcM9AZ0NAU//wFjDDnzUQX8qZO6MFSyDuOXLxHeGGXMTS+LVxahgTBPGD+Gxn3tXg==}
'@codingame/monaco-vscode-view-status-bar-service-override@25.0.1':
resolution: {integrity: sha512-T3pZRGkSZ96GIVEHfUhRDZGsoj7Oz7zJZSGBW6REExoGAOyc6g5tZDxfMHclaBc6BL3CFoyS3/qzKmjKMoppxQ==}
'@codingame/monaco-vscode-view-title-bar-service-override@25.0.1':
resolution: {integrity: sha512-pnY7ZcX6tyOTq4Cfr3k0FenBCyzGxMTbda0nAmMbrUtcc3PzkmUdbk/oN1kuUtbfFzTQ42i8CZ3gyKD+/FRqMg==}
'@codingame/monaco-vscode-views-service-override@25.0.1':
resolution: {integrity: sha512-kvwDGC+nr4D+KgXc4jBrT8oBf2KDxbqA8kxhIV8qtLHMurADkg6ZipWNTbhbi0PLY76KXYg5Kl0fKUkxbKcGiw==}
'@codingame/monaco-vscode-workbench-service-override@25.0.1':
resolution: {integrity: sha512-ZPM3Cw8J3kXlMyv4nVO6ZYVq+Abt3Z0iL5Agxd39x3XJsoULVMR/VQIbAq2LIvFV64fJjiKkX1PM7y+f5i9T2A==}
'@date-io/core@2.17.0':
resolution: {integrity: sha512-+EQE8xZhRM/hsY0CDTVyayMDDY5ihc4MqXCrPxooKw19yAzUIC6uUqsZeaOFNL9YKTNxYKrJP5DFgE8o5xRCOw==}
'@date-io/date-fns@2.17.0':
resolution: {integrity: sha512-L0hWZ/mTpy3Gx/xXJ5tq5CzHo0L7ry6KEO9/w/JWiFWFLZgiNVo3ex92gOl3zmzjHqY/3Ev+5sehAr8UnGLEng==}
peerDependencies:
date-fns: ^2.0.0
peerDependenciesMeta:
date-fns:
optional: true
'@date-io/dayjs@2.17.0':
resolution: {integrity: sha512-Iq1wjY5XzBh0lheFA0it6Dsyv94e8mTiNR8vuTai+KopxDkreL3YjwTmZHxkgB7/vd0RMIACStzVgWvPATnDCA==}
peerDependencies:
dayjs: ^1.8.17
peerDependenciesMeta:
dayjs:
optional: true
'@date-io/luxon@2.17.0':
resolution: {integrity: sha512-l712Vdm/uTddD2XWt9TlQloZUiTiRQtY5TCOG45MQ/8u0tu8M17BD6QYHar/3OrnkGybALAMPzCy1r5D7+0HBg==}
peerDependencies:
luxon: ^1.21.3 || ^2.x || ^3.x
peerDependenciesMeta:
luxon:
optional: true
'@date-io/moment@2.17.0':
resolution: {integrity: sha512-e4nb4CDZU4k0WRVhz1Wvl7d+hFsedObSauDHKtZwU9kt7gdYEAzKgnrSCTHsEaXrDumdrkCYTeZ0Tmyk7uV4tw==}
peerDependencies:
moment: ^2.24.0
peerDependenciesMeta:
moment:
optional: true
'@emnapi/core@1.8.1':
resolution: {integrity: sha512-AvT9QFpxK0Zd8J0jopedNm+w/2fIzvtPKPjqyw9jwvBaReTTqPBk9Hixaz7KbjimP+QNz605/XnjFcDAL2pqBg==}
'@emnapi/runtime@1.8.1':
resolution: {integrity: sha512-mehfKSMWjjNol8659Z8KxEMrdSJDDot5SXMq00dM8BN4o+CLNXQ0xH2V7EchNHV4RmbZLmmPdEaXZc5H2FXmDg==}
'@emnapi/wasi-threads@1.1.0':
resolution: {integrity: sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==}
'@emotion/babel-plugin@11.13.5':
resolution: {integrity: sha512-pxHCpT2ex+0q+HH91/zsdHkw/lXd468DIN2zvfvLtPKLLMo6gQj7oLObq8PhkrxOZb/gGCq03S3Z7PDhS8pduQ==}
'@emotion/cache@11.14.0':
resolution: {integrity: sha512-L/B1lc/TViYk4DcpGxtAVbx0ZyiKM5ktoIyafGkH6zg/tj+mA+NE//aPYKG0k8kCHSHVJrpLpcAlOBEXQ3SavA==}
'@emotion/css@11.13.5':
resolution: {integrity: sha512-wQdD0Xhkn3Qy2VNcIzbLP9MR8TafI0MJb7BEAXKp+w4+XqErksWR4OXomuDzPsN4InLdGhVe6EYcn2ZIUCpB8w==}
'@emotion/hash@0.9.2':
resolution: {integrity: sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==}
'@emotion/is-prop-valid@0.8.8':
resolution: {integrity: sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==}
'@emotion/is-prop-valid@1.4.0':
resolution: {integrity: sha512-QgD4fyscGcbbKwJmqNvUMSE02OsHUa+lAWKdEUIJKgqe5IwRSKd7+KhibEWdaKwgjLj0DRSHA9biAIqGBk05lw==}
'@emotion/memoize@0.7.4':
resolution: {integrity: sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==}
'@emotion/memoize@0.9.0':
resolution: {integrity: sha512-30FAj7/EoJ5mwVPOWhAyCX+FPfMDrVecJAM+Iw9NRoSl4BBAQeqj4cApHHUXOVvIPgLVDsCFoz/hGD+5QQD1GQ==}
'@emotion/react@11.14.0':
resolution: {integrity: sha512-O000MLDBDdk/EohJPFUqvnp4qnHeYkVP5B0xEG0D/L7cOKP9kefu2DXn8dj74cQfsEzUqh+sr1RzFqiL1o+PpA==}
peerDependencies:
'@types/react': '*'
react: '>=16.8.0'
peerDependenciesMeta:
'@types/react':
optional: true
'@emotion/serialize@1.3.3':
resolution: {integrity: sha512-EISGqt7sSNWHGI76hC7x1CksiXPahbxEOrC5RjmFRJTqLyEK9/9hZvBbiYn70dw4wuwMKiEMCUlR6ZXTSWQqxA==}
'@emotion/sheet@1.4.0':
resolution: {integrity: sha512-fTBW9/8r2w3dXWYM4HCB1Rdp8NLibOw2+XELH5m5+AkWiL/KqYX6dc0kKYlaYyKjrQ6ds33MCdMPEwgs2z1rqg==}
'@emotion/styled@11.14.1':
resolution: {integrity: sha512-qEEJt42DuToa3gurlH4Qqc1kVpNq8wO8cJtDzU46TjlzWjDlsVyevtYCRijVq3SrHsROS+gVQ8Fnea108GnKzw==}
peerDependencies:
'@emotion/react': ^11.0.0-rc.0
'@types/react': '*'
react: '>=16.8.0'
peerDependenciesMeta:
'@types/react':
optional: true
'@emotion/unitless@0.10.0':
resolution: {integrity: sha512-dFoMUuQA20zvtVTuxZww6OHoJYgrzfKM1t52mVySDJnMSEa08ruEvdYQbhvyu6soU+NeLVd3yKfTfT0NeV6qGg==}
'@emotion/use-insertion-effect-with-fallbacks@1.2.0':
resolution: {integrity: sha512-yJMtVdH59sxi/aVJBpk9FQq+OR8ll5GT8oWd57UpeaKEVGab41JWaCFA7FRLoMLloOZF/c/wsPoe+bfGmRKgDg==}
peerDependencies:
react: '>=16.8.0'
'@emotion/utils@1.4.2':
resolution: {integrity: sha512-3vLclRofFziIa3J2wDh9jjbkUz9qk5Vi3IZ/FSTKViB0k+ef0fPV7dYrUIugbgupYDx7v9ud/SjrtEP8Y4xLoA==}
'@emotion/weak-memoize@0.4.0':
resolution: {integrity: sha512-snKqtPW01tN0ui7yu9rGv69aJXr/a/Ywvl11sUjNtEcRc+ng/mQriFL0wLXMef74iHa/EkftbDzU9F8iFbH+zg==}
'@eslint-community/eslint-utils@4.9.1':
resolution: {integrity: sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
'@eslint-community/regexpp@4.12.2':
resolution: {integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
'@eslint/eslintrc@2.1.4':
resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
'@eslint/js@8.38.0':
resolution: {integrity: sha512-IoD2MfUnOV58ghIHCiil01PcohxjbYR/qCxsoC+xNgUwh1EY8jOOrYmu3d3a71+tJJ23uscEV4X2HJWMsPJu4g==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
'@floating-ui/core@1.7.3':
resolution: {integrity: sha512-sGnvb5dmrJaKEZ+LDIpguvdX3bDlEllmv4/ClQ9awcmCZrlx5jQyyMWFM5kBI+EyNOCDDiKk8il0zeuX3Zlg/w==}
'@floating-ui/dom@1.7.4':
resolution: {integrity: sha512-OOchDgh4F2CchOX94cRVqhvy7b3AFb+/rQXyswmzmGakRfkMgoWVjfnLWkRirfLEfuD4ysVW16eXzwt3jHIzKA==}
'@floating-ui/react-dom@2.1.6':
resolution: {integrity: sha512-4JX6rEatQEvlmgU80wZyq9RT96HZJa88q8hp0pBd+LrczeDI4o6uA2M+uvxngVHo4Ihr8uibXxH6+70zhAFrVw==}
peerDependencies:
react: '>=16.8.0'
react-dom: '>=16.8.0'
'@floating-ui/utils@0.2.10':
resolution: {integrity: sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==}
'@fontsource/roboto@4.5.8':
resolution: {integrity: sha512-CnD7zLItIzt86q4Sj3kZUiLcBk1dSk81qcqgMGaZe7SQ1P8hFNxhMl5AZthK1zrDM5m74VVhaOpuMGIL4gagaA==}
'@humanwhocodes/config-array@0.11.14':
resolution: {integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==}
engines: {node: '>=10.10.0'}
deprecated: Use @eslint/config-array instead
'@humanwhocodes/module-importer@1.0.1':
resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
engines: {node: '>=12.22'}
'@humanwhocodes/object-schema@2.0.3':
resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==}
deprecated: Use @eslint/object-schema instead
'@hylimo/core@2.2.2':
resolution: {integrity: sha512-aQKrxs4HUzmEITaD8wsBUKkn5SLi5ryNmJwlTtVz1eYz6BMOoxm7xKnwNg1YWxbZ3wV5Id6IPbs2Cpn5bbDO+Q==}
'@hylimo/diagram-common@2.2.2':
resolution: {integrity: sha512-scFJKugYnjybE48mIpvHQgXJ1hA/xvAK720pdEFHTPMurTeLZiye1rBdn2c6gWcYZKa1ALYvwNsG3R9cxlQS8A==}
'@hylimo/diagram-protocol@2.2.2':
resolution: {integrity: sha512-fE1nOEgBHbcfHTVWBGBYZnkd0lxBW2NnibTw8BJwPDzKOSoE27ul3XNtSIdRqL2RVzKsOrjGFEOdaEXj/72wYA==}
'@hylimo/diagram-render-pdf@2.2.2':
resolution: {integrity: sha512-Qjo7OGgM904tUSdsq50QCH7mBHiNmpMI5MY3X9WvSksOXqTeYZ6fRD/ZCxmK0a/vz1WhS1RPVFzaavlNUsnPdQ==}
'@hylimo/diagram-render-svg@2.2.2':
resolution: {integrity: sha512-6sp+kmkVh7ozgLBYGtwhEsSQG8T3U6kh1eLId+/djZniRwbBWwSxHWF73EjdP+dw19H4PRAVSvYujzKxsqKmwg==}
'@hylimo/diagram-ui@2.2.2':
resolution: {integrity: sha512-kKefuvCw9qE2RTzDGJYZzG4LAjfw8LwBtyxZRNODRfZ5dx27vNj0m6qoK4Qszowez9p91sSANHxeCb0jkJHydg==}
'@hylimo/diagram@2.2.2':
resolution: {integrity: sha512-hpBGc3O6MfdYmA03j94zbnfveFJ4udPUe4VRFP6UHgmoKwEgN6IHrrQiYA6Y9vOeyugi8uFYJ49mleCExSwZZg==}
'@hylimo/fonts@2.2.2':
resolution: {integrity: sha512-6r34d3tmNQsg1WopFFlHrIlszEEmCpiHyqyiW4FYsMMPh5w3FWpGB7hek0chhSlZGHSB+qYSUUGi7TT/+of3ZA==}
'@hylimo/language-server@2.2.2':
resolution: {integrity: sha512-rJrcnjrVXmnstB3U1HhczkIj+Jha0sEYqbjBBTADkwgump7Kt295WVHq80KS+Ga/o5loovkwEpqx4qvA3wqEkw==}
'@hylimo/monaco-editor-support@2.2.2':
resolution: {integrity: sha512-j3Wi9/ATgKCepcXJLvJm44LM7mTotuKXRN5w3USXOmjWQPlU7L4Sjv3u0of0fwE1SkpPyEv+ajSZ5EeWZLUFHg==}
'@hylimo/wasm-libs@2.2.2':
resolution: {integrity: sha512-vRH3aZS95MS+wzf2gjfAmP6WScnwCEhSdwKiN6lfpmStRK3i1hd01ri/WTYH6Iqv76L/yMXp5gCKueEy4ANryw==}
'@inversifyjs/common@1.4.0':
resolution: {integrity: sha512-qfRJ/3iOlCL/VfJq8+4o5X4oA14cZSBbpAmHsYj8EsIit1xDndoOl0xKOyglKtQD4u4gdNVxMHx4RWARk/I4QA==}
'@inversifyjs/core@1.3.5':
resolution: {integrity: sha512-B4MFXabhNTAmrfgB+yeD6wd/GIvmvWC6IQ8Rh/j2C3Ix69kmqwz9pr8Jt3E+Nho9aEHOQCZaGmrALgtqRd+oEQ==}
'@inversifyjs/reflect-metadata-utils@0.2.4':
resolution: {integrity: sha512-u95rV3lKfG+NT2Uy/5vNzoDujos8vN8O18SSA5UyhxsGYd4GLQn/eUsGXfOsfa7m34eKrDelTKRUX1m/BcNX5w==}
peerDependencies:
reflect-metadata: 0.2.2
'@jridgewell/gen-mapping@0.3.13':
resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
'@jridgewell/resolve-uri@3.1.2':
resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
engines: {node: '>=6.0.0'}
'@jridgewell/source-map@0.3.11':
resolution: {integrity: sha512-ZMp1V8ZFcPG5dIWnQLr3NSI1MiCU7UETdS/A0G8V/XWHvJv3ZsFqutJn1Y5RPmAPX6F3BiE397OqveU/9NCuIA==}
'@jridgewell/sourcemap-codec@1.5.5':
resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
'@jridgewell/trace-mapping@0.3.31':
resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
'@juggle/resize-observer@3.4.0':
resolution: {integrity: sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==}
'@mapbox/node-pre-gyp@1.0.11':
resolution: {integrity: sha512-Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ==}
hasBin: true
'@mapbox/unitbezier@0.0.1':
resolution: {integrity: sha512-nMkuDXFv60aBr9soUG5q+GvZYL+2KZHVvsqFCzqnkGEf46U2fvmytHaEVc1/YZbiLn8X+eR3QzX1+dwDO1lxlw==}
'@mui/base@5.0.0-beta.12':
resolution: {integrity: sha512-tZjjXNAyUpwSDT1uRliZMhRQkWYzELJ8Qi61EuOMRpi36HIwnK2T7Nr4RI423Sv8G2EEikDAZj7je33eNd73NQ==}
engines: {node: '>=12.0.0'}
deprecated: This package has been replaced by @base-ui/react
peerDependencies:
'@types/react': ^17.0.0 || ^18.0.0
react: ^17.0.0 || ^18.0.0
react-dom: ^17.0.0 || ^18.0.0
peerDependenciesMeta:
'@types/react':
optional: true
'@mui/core-downloads-tracker@5.18.0':
resolution: {integrity: sha512-jbhwoQ1AY200PSSOrNXmrFCaSDSJWP7qk6urkTmIirvRXDROkqe+QwcLlUiw/PrREwsIF/vm3/dAXvjlMHF0RA==}
'@mui/icons-material@5.18.0':
resolution: {integrity: sha512-1s0vEZj5XFXDMmz3Arl/R7IncFqJ+WQ95LDp1roHWGDE2oCO3IS4/hmiOv1/8SD9r6B7tv9GLiqVZYHo+6PkTg==}
engines: {node: '>=12.0.0'}
peerDependencies:
'@mui/material': ^5.0.0
'@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0
react: ^17.0.0 || ^18.0.0 || ^19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
'@mui/lab@5.0.0-alpha.141':
resolution: {integrity: sha512-PsW55xX2ieNLldca2hLxL1SYtZgRQv++lj1W/Jyi5Z2MHuFDcdqI7yKGrOzyIWw7ctQrmHa1FTShBiCa2wkEoQ==}
engines: {node: '>=12.0.0'}
peerDependencies:
'@emotion/react': ^11.5.0
'@emotion/styled': ^11.3.0
'@mui/material': ^5.0.0
'@types/react': ^17.0.0 || ^18.0.0
react: ^17.0.0 || ^18.0.0
react-dom: ^17.0.0 || ^18.0.0
peerDependenciesMeta:
'@emotion/react':
optional: true
'@emotion/styled':
optional: true
'@types/react':
optional: true
'@mui/material@5.18.0':
resolution: {integrity: sha512-bbH/HaJZpFtXGvWg3TsBWG4eyt3gah3E7nCNU8GLyRjVoWcA91Vm/T+sjHfUcwgJSw9iLtucfHBoq+qW/T30aA==}
engines: {node: '>=12.0.0'}
peerDependencies:
'@emotion/react': ^11.5.0
'@emotion/styled': ^11.3.0
'@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0
react: ^17.0.0 || ^18.0.0 || ^19.0.0
react-dom: ^17.0.0 || ^18.0.0 || ^19.0.0
peerDependenciesMeta:
'@emotion/react':
optional: true
'@emotion/styled':
optional: true
'@types/react':
optional: true
'@mui/private-theming@5.17.1':
resolution: {integrity: sha512-XMxU0NTYcKqdsG8LRmSoxERPXwMbp16sIXPcLVgLGII/bVNagX0xaheWAwFv8+zDK7tI3ajllkuD3GZZE++ICQ==}
engines: {node: '>=12.0.0'}
peerDependencies:
'@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0
react: ^17.0.0 || ^18.0.0 || ^19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
'@mui/styled-engine@5.18.0':
resolution: {integrity: sha512-BN/vKV/O6uaQh2z5rXV+MBlVrEkwoS/TK75rFQ2mjxA7+NBo8qtTAOA4UaM0XeJfn7kh2wZ+xQw2HAx0u+TiBg==}
engines: {node: '>=12.0.0'}
peerDependencies:
'@emotion/react': ^11.4.1
'@emotion/styled': ^11.3.0
react: ^17.0.0 || ^18.0.0 || ^19.0.0
peerDependenciesMeta:
'@emotion/react':
optional: true
'@emotion/styled':
optional: true
'@mui/system@5.18.0':
resolution: {integrity: sha512-ojZGVcRWqWhu557cdO3pWHloIGJdzVtxs3rk0F9L+x55LsUjcMUVkEhiF7E4TMxZoF9MmIHGGs0ZX3FDLAf0Xw==}
engines: {node: '>=12.0.0'}
peerDependencies:
'@emotion/react': ^11.5.0
'@emotion/styled': ^11.3.0
'@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0
react: ^17.0.0 || ^18.0.0 || ^19.0.0
peerDependenciesMeta:
'@emotion/react':
optional: true
'@emotion/styled':
optional: true
'@types/react':
optional: true
'@mui/types@7.2.24':
resolution: {integrity: sha512-3c8tRt/CbWZ+pEg7QpSwbdxOk36EfmhbKf6AGZsD1EcLDLTSZoxxJ86FVtcjxvjuhdyBiWKSTGZFaXCnidO2kw==}
peerDependencies:
'@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
'@mui/types@7.4.10':
resolution: {integrity: sha512-0+4mSjknSu218GW3isRqoxKRTOrTLd/vHi/7UC4+wZcUrOAqD9kRk7UQRL1mcrzqRoe7s3UT6rsRpbLkW5mHpQ==}
peerDependencies:
'@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0