-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathyarn.lock
More file actions
7634 lines (6869 loc) · 261 KB
/
yarn.lock
File metadata and controls
7634 lines (6869 loc) · 261 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
# This file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 6
cacheKey: 8
"@antfu/install-pkg@npm:^1.1.0":
version: 1.1.0
resolution: "@antfu/install-pkg@npm:1.1.0"
dependencies:
package-manager-detector: ^1.3.0
tinyexec: ^1.0.1
checksum: e20b7cd1c37eff832cc878cddd794f8c3779175681cf6d75c4cc1ae1475526126a4c1f71fa027161aa1ee35a8850782be9ca0ec01b621893defebe97ba9dc70e
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.12.13":
version: 7.28.6
resolution: "@babel/code-frame@npm:7.28.6"
dependencies:
"@babel/helper-validator-identifier": ^7.28.5
js-tokens: ^4.0.0
picocolors: ^1.1.1
checksum: 6e98e47fd324b41c1919ff6d0fbf6fa5e991e5beff6b55803d9adaff9e11f4bc432803e52165f7b0d49af0f718209c3138a9b2fd51ff624b19d47704f11f8287
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.28.5":
version: 7.28.5
resolution: "@babel/helper-validator-identifier@npm:7.28.5"
checksum: 5a251a6848e9712aea0338f659a1a3bd334d26219d5511164544ca8ec20774f098c3a6661e9da65a0d085c745c00bb62c8fada38a62f08fa1f8053bc0aeb57e4
languageName: node
linkType: hard
"@braintree/sanitize-url@npm:^7.1.1":
version: 7.1.1
resolution: "@braintree/sanitize-url@npm:7.1.1"
checksum: bdfb6add95e97c5a611597197cd8385c6592d340a688bfbb176a1799bde64b9ffa1e723a7bac908d61fdecfccf4301332cdebaa4a1650c2616b5269084d9c8e4
languageName: node
linkType: hard
"@chevrotain/cst-dts-gen@npm:11.0.3":
version: 11.0.3
resolution: "@chevrotain/cst-dts-gen@npm:11.0.3"
dependencies:
"@chevrotain/gast": 11.0.3
"@chevrotain/types": 11.0.3
lodash-es: 4.17.21
checksum: 414229a827e06b4564e271ca3a02ed6f475d400a184dc5ae05308bbc6e966959b84a40a063dacf7debd8f9a1dba5bf8785a891e7b588eafd9f821b43ec16b109
languageName: node
linkType: hard
"@chevrotain/gast@npm:11.0.3":
version: 11.0.3
resolution: "@chevrotain/gast@npm:11.0.3"
dependencies:
"@chevrotain/types": 11.0.3
lodash-es: 4.17.21
checksum: 5190ba3a3f03f6f58331dbd108c36172b90314f60675b88dfefca25f704549164577796a1127fa407dd546aefa9f221d6c043e5b95298a0852ffd060b4fff117
languageName: node
linkType: hard
"@chevrotain/regexp-to-ast@npm:11.0.3":
version: 11.0.3
resolution: "@chevrotain/regexp-to-ast@npm:11.0.3"
checksum: 5d665b3340493e302f245c9bbcd73de9b973ca79d0e59c4fbed6cc733b665998b41a2b8a5963bc2e90c763c8b4ba30f6e53736325c40f3fccef0ad3de2095ff2
languageName: node
linkType: hard
"@chevrotain/types@npm:11.0.3":
version: 11.0.3
resolution: "@chevrotain/types@npm:11.0.3"
checksum: 4496bf1955f1db2b08c188f508db23d9f1cbecdf0bfa7f23f8d8dcd3f9ca450529b71acc83a941c59c0f8188b54c0f5687f6e203dcd7dca622ac4ea6291df316
languageName: node
linkType: hard
"@chevrotain/utils@npm:11.0.3":
version: 11.0.3
resolution: "@chevrotain/utils@npm:11.0.3"
checksum: 099f0aa65ff82a7d49ffefd7a90182efcc1518b89b88d516d2125ca730eaa38d61e36ee40fad6c21f7896b6e8393b1e6810b6a69122fabff283f0522ee49eaa5
languageName: node
linkType: hard
"@codemirror/autocomplete@npm:^6.0.0, @codemirror/autocomplete@npm:^6.18.6, @codemirror/autocomplete@npm:^6.3.2, @codemirror/autocomplete@npm:^6.7.1":
version: 6.20.0
resolution: "@codemirror/autocomplete@npm:6.20.0"
dependencies:
"@codemirror/language": ^6.0.0
"@codemirror/state": ^6.0.0
"@codemirror/view": ^6.17.0
"@lezer/common": ^1.0.0
checksum: 0defd46302ab2763d10f3a51ef8f2b607dd7268843aaeec76a272e84723fe17f8a5ee5a7ad06e649066b69d9dad2a81d6a6cfdf7593290bd52b711b96c46518b
languageName: node
linkType: hard
"@codemirror/commands@npm:^6.8.1":
version: 6.10.1
resolution: "@codemirror/commands@npm:6.10.1"
dependencies:
"@codemirror/language": ^6.0.0
"@codemirror/state": ^6.4.0
"@codemirror/view": ^6.27.0
"@lezer/common": ^1.1.0
checksum: aa7dec3924e9275bbd8be27a02052843ad296d31fc1e5622deeeb96a4f4dbd54327a7cd8922b4ec45d46843faa5bf29f63fee8f628c73ef80b0aedb19c832279
languageName: node
linkType: hard
"@codemirror/lang-cpp@npm:^6.0.2":
version: 6.0.3
resolution: "@codemirror/lang-cpp@npm:6.0.3"
dependencies:
"@codemirror/language": ^6.0.0
"@lezer/cpp": ^1.0.0
checksum: 982b9a9624367a0086520e1d499b7ad2fba2a14bdd57df88520bac279bd980e12154fd281659226fbcfa530edb5dd72edd114481365e6224bf53e97bc972f3b8
languageName: node
linkType: hard
"@codemirror/lang-css@npm:^6.0.0, @codemirror/lang-css@npm:^6.3.1":
version: 6.3.1
resolution: "@codemirror/lang-css@npm:6.3.1"
dependencies:
"@codemirror/autocomplete": ^6.0.0
"@codemirror/language": ^6.0.0
"@codemirror/state": ^6.0.0
"@lezer/common": ^1.0.2
"@lezer/css": ^1.1.7
checksum: ed175d75d75bc0a059d1e60b3dcd8464d570da14fc97388439943c9c43e1e9146e37b83fe2ccaad9cd387420b7b411ea1d24ede78ecd1f2045a38acbb4dd36bc
languageName: node
linkType: hard
"@codemirror/lang-html@npm:^6.0.0, @codemirror/lang-html@npm:^6.4.9":
version: 6.4.11
resolution: "@codemirror/lang-html@npm:6.4.11"
dependencies:
"@codemirror/autocomplete": ^6.0.0
"@codemirror/lang-css": ^6.0.0
"@codemirror/lang-javascript": ^6.0.0
"@codemirror/language": ^6.4.0
"@codemirror/state": ^6.0.0
"@codemirror/view": ^6.17.0
"@lezer/common": ^1.0.0
"@lezer/css": ^1.1.0
"@lezer/html": ^1.3.12
checksum: 31a16cc6be4daa58c6765274b9b7ba1bb54a4b0858d33d8ad1c7ec1bcb85920e3715a891f8cb27f5d9dfe87bbe00f0ddfbac5b04011374e15380b9cec7ba3c69
languageName: node
linkType: hard
"@codemirror/lang-java@npm:^6.0.1":
version: 6.0.2
resolution: "@codemirror/lang-java@npm:6.0.2"
dependencies:
"@codemirror/language": ^6.0.0
"@lezer/java": ^1.0.0
checksum: ed884f5e1a90c0d487bc4e5073c6154f3abf51b0b652c3d015e8cb322e171a38307427a85ecc16d5be82bd3243577e77e202325d84394a9c5ac356ee358c56c9
languageName: node
linkType: hard
"@codemirror/lang-javascript@npm:^6.0.0, @codemirror/lang-javascript@npm:^6.2.3":
version: 6.2.4
resolution: "@codemirror/lang-javascript@npm:6.2.4"
dependencies:
"@codemirror/autocomplete": ^6.0.0
"@codemirror/language": ^6.6.0
"@codemirror/lint": ^6.0.0
"@codemirror/state": ^6.0.0
"@codemirror/view": ^6.17.0
"@lezer/common": ^1.0.0
"@lezer/javascript": ^1.0.0
checksum: 0350e9ac2df155c4ecf75d556f40b677c284c1d320620dc7228e2aa458e258dd1145c86e5ebf3451347ed6ef528f72c2eb60f5d3f6bd10af8aabb2819109e21a
languageName: node
linkType: hard
"@codemirror/lang-json@npm:^6.0.1":
version: 6.0.2
resolution: "@codemirror/lang-json@npm:6.0.2"
dependencies:
"@codemirror/language": ^6.0.0
"@lezer/json": ^1.0.0
checksum: ccdf71a4f339b9e40310c40c4677c31b8bf2284291becc056b7d5b30382107cd7ab65f1a3c108331c0fc7b5fc7ec2e3fe6e5029957ff978d7b7bfb759f68d921
languageName: node
linkType: hard
"@codemirror/lang-markdown@npm:^6.3.2":
version: 6.5.0
resolution: "@codemirror/lang-markdown@npm:6.5.0"
dependencies:
"@codemirror/autocomplete": ^6.7.1
"@codemirror/lang-html": ^6.0.0
"@codemirror/language": ^6.3.0
"@codemirror/state": ^6.0.0
"@codemirror/view": ^6.0.0
"@lezer/common": ^1.2.1
"@lezer/markdown": ^1.0.0
checksum: 15c6bf7eb800b73d77a2e202f08b2282230903d830111699f34a036e0ae334cf5edd65b29f45f138e305fb33a7a11f0ef111c2eaed948b10501e5e8deb7d6c47
languageName: node
linkType: hard
"@codemirror/lang-php@npm:^6.0.1":
version: 6.0.2
resolution: "@codemirror/lang-php@npm:6.0.2"
dependencies:
"@codemirror/lang-html": ^6.0.0
"@codemirror/language": ^6.0.0
"@codemirror/state": ^6.0.0
"@lezer/common": ^1.0.0
"@lezer/php": ^1.0.0
checksum: e0cb6287c5a8898dc5637dadfbbd591ed6c2aaef1fc4db1426646ab0f8e48e4c7254899fc9c1864ee1f1e917d5888e447d1ab87300d896de2b9472f5ad6a888d
languageName: node
linkType: hard
"@codemirror/lang-python@npm:^6.2.0":
version: 6.2.1
resolution: "@codemirror/lang-python@npm:6.2.1"
dependencies:
"@codemirror/autocomplete": ^6.3.2
"@codemirror/language": ^6.8.0
"@codemirror/state": ^6.0.0
"@lezer/common": ^1.2.1
"@lezer/python": ^1.1.4
checksum: 977ce444ab7c68261107c40e8a46d3480a239ac5a093f39fad7da0644fc08cb4b90552c8b7fad396f936e34b5bbac510533ea7b4229d3b8271774a1af1e717aa
languageName: node
linkType: hard
"@codemirror/lang-rust@npm:^6.0.1":
version: 6.0.2
resolution: "@codemirror/lang-rust@npm:6.0.2"
dependencies:
"@codemirror/language": ^6.0.0
"@lezer/rust": ^1.0.0
checksum: 4cb7528c723ec3f421bd82a5324c56d836f3675e3b28e2b2d3c9d251e8f206bf9d932d52696c310dca51d71644063441fb8330d5ad1278c68002f8598b4bc067
languageName: node
linkType: hard
"@codemirror/lang-sql@npm:^6.8.0":
version: 6.10.0
resolution: "@codemirror/lang-sql@npm:6.10.0"
dependencies:
"@codemirror/autocomplete": ^6.0.0
"@codemirror/language": ^6.0.0
"@codemirror/state": ^6.0.0
"@lezer/common": ^1.2.0
"@lezer/highlight": ^1.0.0
"@lezer/lr": ^1.0.0
checksum: c37ba6778f5f34f174a387ff530f19844fccc1e5ff65c58205b8861c19b6e39e4b3298ec63f50bd6c860befba3491db40d0d20b463a77021a9e9f20979fa2369
languageName: node
linkType: hard
"@codemirror/lang-wast@npm:^6.0.2":
version: 6.0.2
resolution: "@codemirror/lang-wast@npm:6.0.2"
dependencies:
"@codemirror/language": ^6.0.0
"@lezer/common": ^1.2.0
"@lezer/highlight": ^1.0.0
"@lezer/lr": ^1.0.0
checksum: 72119d4a7d726c54167aa227c982ae9fa785c8ad97a158d8350ae95eecfbd8028a803eef939f7e6c5c6e626fcecda1dc37e9dffc6d5d6ec105f686aeda6b2c24
languageName: node
linkType: hard
"@codemirror/lang-xml@npm:^6.1.0":
version: 6.1.0
resolution: "@codemirror/lang-xml@npm:6.1.0"
dependencies:
"@codemirror/autocomplete": ^6.0.0
"@codemirror/language": ^6.4.0
"@codemirror/state": ^6.0.0
"@codemirror/view": ^6.0.0
"@lezer/common": ^1.0.0
"@lezer/xml": ^1.0.0
checksum: 3a1b7af07b29ad7e53b77bf584245580b613bc92256059f175f2b1d7c28c4e39b75654fe169b9a8a330a60164b53ff5254bdb5b8ee8c6e6766427ee115c4e229
languageName: node
linkType: hard
"@codemirror/language@npm:^6.0.0, @codemirror/language@npm:^6.11.0, @codemirror/language@npm:^6.3.0, @codemirror/language@npm:^6.4.0, @codemirror/language@npm:^6.6.0, @codemirror/language@npm:^6.8.0":
version: 6.12.1
resolution: "@codemirror/language@npm:6.12.1"
dependencies:
"@codemirror/state": ^6.0.0
"@codemirror/view": ^6.23.0
"@lezer/common": ^1.5.0
"@lezer/highlight": ^1.0.0
"@lezer/lr": ^1.0.0
style-mod: ^4.0.0
checksum: f883e5337d8584a82678e4c25023320815892df1e33b05b777f499abd95ce8010cae7216a6c17d13139d84ae43dbe112c5ef3c091b705bd8ee8599ab0fa91637
languageName: node
linkType: hard
"@codemirror/legacy-modes@npm:^6.5.1":
version: 6.5.2
resolution: "@codemirror/legacy-modes@npm:6.5.2"
dependencies:
"@codemirror/language": ^6.0.0
checksum: 2ae75e40d4357e65d0b3b1ebcb28a85a7700f8a39e5ae2dcc8dece00a4070a800d797c9297e7a4beb398d63e4c69c3e69992b4fb20ab84f748625c7590a82636
languageName: node
linkType: hard
"@codemirror/lint@npm:^6.0.0":
version: 6.9.2
resolution: "@codemirror/lint@npm:6.9.2"
dependencies:
"@codemirror/state": ^6.0.0
"@codemirror/view": ^6.35.0
crelt: ^1.0.5
checksum: 20f4113df6c8fb8e9f1d44b32aa6e6d1ecb8d289f77294d5c29c7544a6ed5208bc6709acfd3cfbd09a11245c0c3292706a58cc09cea99926aebe933f8279aac6
languageName: node
linkType: hard
"@codemirror/search@npm:^6.5.10":
version: 6.5.11
resolution: "@codemirror/search@npm:6.5.11"
dependencies:
"@codemirror/state": ^6.0.0
"@codemirror/view": ^6.0.0
crelt: ^1.0.5
checksum: 4d418f176bd93705bc51c82a2f1c0e41fecc0368dc43c415635c4dfdd763aa05ebdf7f000bc9ca0083c1887e6d305b89482ec1f4db8b8765c6f38de324187476
languageName: node
linkType: hard
"@codemirror/state@npm:^6.0.0, @codemirror/state@npm:^6.4.0, @codemirror/state@npm:^6.5.0, @codemirror/state@npm:^6.5.2":
version: 6.5.3
resolution: "@codemirror/state@npm:6.5.3"
dependencies:
"@marijn/find-cluster-break": ^1.0.0
checksum: 113eb0a6ecca148ff20021e259a7156571f1eb7c61b448d6448ef01ce07a9fa676ab1a722b92f36b8bd82c9cba8d65ffa221c0388394e827d9d13fa94a5a8a73
languageName: node
linkType: hard
"@codemirror/view@npm:^6.0.0, @codemirror/view@npm:^6.17.0, @codemirror/view@npm:^6.23.0, @codemirror/view@npm:^6.27.0, @codemirror/view@npm:^6.35.0, @codemirror/view@npm:^6.38.1":
version: 6.39.9
resolution: "@codemirror/view@npm:6.39.9"
dependencies:
"@codemirror/state": ^6.5.0
crelt: ^1.0.6
style-mod: ^4.1.0
w3c-keyname: ^2.2.4
checksum: aa46ad95ec413c58dc1dc85d3871ab32afcaef46bff7cb0af407ee38cf9528abcd30a38466457ce3ebafef2058273ec8a931b2797aef25b1bf9bd3691f2e41ef
languageName: node
linkType: hard
"@csstools/css-parser-algorithms@npm:^2.3.1":
version: 2.7.1
resolution: "@csstools/css-parser-algorithms@npm:2.7.1"
peerDependencies:
"@csstools/css-tokenizer": ^2.4.1
checksum: 304e6f92e583042c310e368a82b694af563a395e5c55911caefe52765c5acb000b9daa17356ea8a4dd37d4d50132b76de48ced75159b169b53e134ff78b362ba
languageName: node
linkType: hard
"@csstools/css-tokenizer@npm:^2.2.0":
version: 2.4.1
resolution: "@csstools/css-tokenizer@npm:2.4.1"
checksum: 395c51f8724ddc4851d836f484346bb3ea6a67af936dde12cbf9a57ae321372e79dee717cbe4823599eb0e6fd2d5405cf8873450e986c2fca6e6ed82e7b10219
languageName: node
linkType: hard
"@csstools/media-query-list-parser@npm:^2.1.4":
version: 2.1.13
resolution: "@csstools/media-query-list-parser@npm:2.1.13"
peerDependencies:
"@csstools/css-parser-algorithms": ^2.7.1
"@csstools/css-tokenizer": ^2.4.1
checksum: 7754b4b9fcc749a51a2bcd34a167ad16e7227ff087f6c4e15b3593d3342413446b72dad37f1adb99c62538730c77e3e47842987ce453fbb3849d329a39ba9ad7
languageName: node
linkType: hard
"@csstools/selector-specificity@npm:^3.0.0":
version: 3.1.1
resolution: "@csstools/selector-specificity@npm:3.1.1"
peerDependencies:
postcss-selector-parser: ^6.0.13
checksum: 3786a6afea97b08ad739ee8f4004f7e0a9e25049cee13af809dbda6462090744012a54bd9275a44712791e8f103f85d21641f14e81799f9dab946b0459a5e1ef
languageName: node
linkType: hard
"@discoveryjs/json-ext@npm:^0.5.0":
version: 0.5.7
resolution: "@discoveryjs/json-ext@npm:0.5.7"
checksum: 2176d301cc258ea5c2324402997cf8134ebb212469c0d397591636cea8d3c02f2b3cf9fd58dcb748c7a0dade77ebdc1b10284fa63e608c033a1db52fddc69918
languageName: node
linkType: hard
"@eslint-community/eslint-utils@npm:^4.2.0, @eslint-community/eslint-utils@npm:^4.4.0":
version: 4.9.1
resolution: "@eslint-community/eslint-utils@npm:4.9.1"
dependencies:
eslint-visitor-keys: ^3.4.3
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
checksum: 0a27c2d676c4be6b329ebb5dd8f6c5ef5fae9a019ff575655306d72874bb26f3ab20e0b241a5f086464bb1f2511ca26a29ff6f80c1e2b0b02eca4686b4dfe1b5
languageName: node
linkType: hard
"@eslint-community/regexpp@npm:^4.5.1, @eslint-community/regexpp@npm:^4.6.1":
version: 4.12.2
resolution: "@eslint-community/regexpp@npm:4.12.2"
checksum: 1770bc81f676a72f65c7200b5675ff7a349786521f30e66125faaf767fde1ba1c19c3790e16ba8508a62a3933afcfc806a893858b3b5906faf693d862b9e4120
languageName: node
linkType: hard
"@eslint/eslintrc@npm:^2.1.4":
version: 2.1.4
resolution: "@eslint/eslintrc@npm:2.1.4"
dependencies:
ajv: ^6.12.4
debug: ^4.3.2
espree: ^9.6.0
globals: ^13.19.0
ignore: ^5.2.0
import-fresh: ^3.2.1
js-yaml: ^4.1.0
minimatch: ^3.1.2
strip-json-comments: ^3.1.1
checksum: 10957c7592b20ca0089262d8c2a8accbad14b4f6507e35416c32ee6b4dbf9cad67dfb77096bbd405405e9ada2b107f3797fe94362e1c55e0b09d6e90dd149127
languageName: node
linkType: hard
"@eslint/js@npm:8.57.1":
version: 8.57.1
resolution: "@eslint/js@npm:8.57.1"
checksum: 2afb77454c06e8316793d2e8e79a0154854d35e6782a1217da274ca60b5044d2c69d6091155234ed0551a1e408f86f09dd4ece02752c59568fa403e60611e880
languageName: node
linkType: hard
"@fortawesome/fontawesome-free@npm:^5.12.0":
version: 5.15.4
resolution: "@fortawesome/fontawesome-free@npm:5.15.4"
checksum: 32281c3df4075290d9a96dfc22f72fadb3da7055d4117e48d34046b8c98032a55fa260ae351b0af5d6f6fb57a2f5d79a4abe52af456da35195f7cb7dda27b4a2
languageName: node
linkType: hard
"@humanwhocodes/config-array@npm:^0.13.0":
version: 0.13.0
resolution: "@humanwhocodes/config-array@npm:0.13.0"
dependencies:
"@humanwhocodes/object-schema": ^2.0.3
debug: ^4.3.1
minimatch: ^3.0.5
checksum: eae69ff9134025dd2924f0b430eb324981494be26f0fddd267a33c28711c4db643242cf9fddf7dadb9d16c96b54b2d2c073e60a56477df86e0173149313bd5d6
languageName: node
linkType: hard
"@humanwhocodes/module-importer@npm:^1.0.1":
version: 1.0.1
resolution: "@humanwhocodes/module-importer@npm:1.0.1"
checksum: 0fd22007db8034a2cdf2c764b140d37d9020bbfce8a49d3ec5c05290e77d4b0263b1b972b752df8c89e5eaa94073408f2b7d977aed131faf6cf396ebb5d7fb61
languageName: node
linkType: hard
"@humanwhocodes/object-schema@npm:^2.0.3":
version: 2.0.3
resolution: "@humanwhocodes/object-schema@npm:2.0.3"
checksum: d3b78f6c5831888c6ecc899df0d03bcc25d46f3ad26a11d7ea52944dc36a35ef543fad965322174238d677a43d5c694434f6607532cff7077062513ad7022631
languageName: node
linkType: hard
"@iconify/types@npm:^2.0.0":
version: 2.0.0
resolution: "@iconify/types@npm:2.0.0"
checksum: 029f58542c160e9d4a746869cf2e475b603424d3adf3994c5cc8d0406c47e6e04a3b898b2707840c1c5b9bd5563a1660a34b110d89fce43923baca5222f4e597
languageName: node
linkType: hard
"@iconify/utils@npm:^3.0.1":
version: 3.1.0
resolution: "@iconify/utils@npm:3.1.0"
dependencies:
"@antfu/install-pkg": ^1.1.0
"@iconify/types": ^2.0.0
mlly: ^1.8.0
checksum: b4055a322a13289740b2ecef424a1807ccb1567a200b716e4d1e2f40ad24dd9e24fa7b9a1aa1a275eea30ef3f08a32a4640a1a66f013d32cfe31117ac76b4075
languageName: node
linkType: hard
"@isaacs/cliui@npm:^8.0.2":
version: 8.0.2
resolution: "@isaacs/cliui@npm:8.0.2"
dependencies:
string-width: ^5.1.2
string-width-cjs: "npm:string-width@^4.2.0"
strip-ansi: ^7.0.1
strip-ansi-cjs: "npm:strip-ansi@^6.0.1"
wrap-ansi: ^8.1.0
wrap-ansi-cjs: "npm:wrap-ansi@^7.0.0"
checksum: 4a473b9b32a7d4d3cfb7a614226e555091ff0c5a29a1734c28c72a182c2f6699b26fc6b5c2131dfd841e86b185aea714c72201d7c98c2fba5f17709333a67aeb
languageName: node
linkType: hard
"@jest/environment@npm:^29.7.0":
version: 29.7.0
resolution: "@jest/environment@npm:29.7.0"
dependencies:
"@jest/fake-timers": ^29.7.0
"@jest/types": ^29.6.3
"@types/node": "*"
jest-mock: ^29.7.0
checksum: 6fb398143b2543d4b9b8d1c6dbce83fa5247f84f550330604be744e24c2bd2178bb893657d62d1b97cf2f24baf85c450223f8237cccb71192c36a38ea2272934
languageName: node
linkType: hard
"@jest/fake-timers@npm:^29.7.0":
version: 29.7.0
resolution: "@jest/fake-timers@npm:29.7.0"
dependencies:
"@jest/types": ^29.6.3
"@sinonjs/fake-timers": ^10.0.2
"@types/node": "*"
jest-message-util: ^29.7.0
jest-mock: ^29.7.0
jest-util: ^29.7.0
checksum: caf2bbd11f71c9241b458d1b5a66cbe95debc5a15d96442444b5d5c7ba774f523c76627c6931cca5e10e76f0d08761f6f1f01a608898f4751a0eee54fc3d8d00
languageName: node
linkType: hard
"@jest/schemas@npm:^29.6.3":
version: 29.6.3
resolution: "@jest/schemas@npm:29.6.3"
dependencies:
"@sinclair/typebox": ^0.27.8
checksum: 910040425f0fc93cd13e68c750b7885590b8839066dfa0cd78e7def07bbb708ad869381f725945d66f2284de5663bbecf63e8fdd856e2ae6e261ba30b1687e93
languageName: node
linkType: hard
"@jest/types@npm:^29.6.3":
version: 29.6.3
resolution: "@jest/types@npm:29.6.3"
dependencies:
"@jest/schemas": ^29.6.3
"@types/istanbul-lib-coverage": ^2.0.0
"@types/istanbul-reports": ^3.0.0
"@types/node": "*"
"@types/yargs": ^17.0.8
chalk: ^4.0.0
checksum: a0bcf15dbb0eca6bdd8ce61a3fb055349d40268622a7670a3b2eb3c3dbafe9eb26af59938366d520b86907b9505b0f9b29b85cec11579a9e580694b87cd90fcc
languageName: node
linkType: hard
"@jridgewell/gen-mapping@npm:^0.3.5":
version: 0.3.13
resolution: "@jridgewell/gen-mapping@npm:0.3.13"
dependencies:
"@jridgewell/sourcemap-codec": ^1.5.0
"@jridgewell/trace-mapping": ^0.3.24
checksum: f2105acefc433337145caa3c84bba286de954f61c0bc46279bbd85a9e6a02871089717fa060413cfb6a9d44189fe8313b2d1cabf3a2eb3284d208fd5f75c54ff
languageName: node
linkType: hard
"@jridgewell/resolve-uri@npm:^3.1.0":
version: 3.1.2
resolution: "@jridgewell/resolve-uri@npm:3.1.2"
checksum: 83b85f72c59d1c080b4cbec0fef84528963a1b5db34e4370fa4bd1e3ff64a0d80e0cee7369d11d73c704e0286fb2865b530acac7a871088fbe92b5edf1000870
languageName: node
linkType: hard
"@jridgewell/source-map@npm:^0.3.3":
version: 0.3.11
resolution: "@jridgewell/source-map@npm:0.3.11"
dependencies:
"@jridgewell/gen-mapping": ^0.3.5
"@jridgewell/trace-mapping": ^0.3.25
checksum: c8a0011cc67e701f270fa042e32b312f382c413bcc70ca9c03684687cbf5b64d5eed87d4afa36dddaabe60ab3da6db4935f878febd9cfc7f82724ea1a114d344
languageName: node
linkType: hard
"@jridgewell/sourcemap-codec@npm:^1.4.14, @jridgewell/sourcemap-codec@npm:^1.5.0":
version: 1.5.5
resolution: "@jridgewell/sourcemap-codec@npm:1.5.5"
checksum: c2e36e67971f719a8a3a85ef5a5f580622437cc723c35d03ebd0c9c0b06418700ef006f58af742791f71f6a4fc68fcfaf1f6a74ec2f9a3332860e9373459dae7
languageName: node
linkType: hard
"@jridgewell/trace-mapping@npm:^0.3.24, @jridgewell/trace-mapping@npm:^0.3.25":
version: 0.3.31
resolution: "@jridgewell/trace-mapping@npm:0.3.31"
dependencies:
"@jridgewell/resolve-uri": ^3.1.0
"@jridgewell/sourcemap-codec": ^1.4.14
checksum: af8fda2431348ad507fbddf8e25f5d08c79ecc94594061ce402cf41bc5aba1a7b3e59bf0fd70a619b35f33983a3f488ceeba8faf56bff784f98bb5394a8b7d47
languageName: node
linkType: hard
"@jupyter/react-components@npm:^0.16.6":
version: 0.16.7
resolution: "@jupyter/react-components@npm:0.16.7"
dependencies:
"@jupyter/web-components": ^0.16.7
react: ">=17.0.0 <19.0.0"
checksum: 37894347e63ebb528725e8b8b4038d138019823f5c9e28e3f6abb93b46d771b2ee3cc004d5ff7d9a06a93f2d90e41000bd2abae14364be34ba99c5e05864810e
languageName: node
linkType: hard
"@jupyter/web-components@npm:^0.16.6, @jupyter/web-components@npm:^0.16.7":
version: 0.16.7
resolution: "@jupyter/web-components@npm:0.16.7"
dependencies:
"@microsoft/fast-colors": ^5.3.1
"@microsoft/fast-element": ^1.12.0
"@microsoft/fast-foundation": ^2.49.4
"@microsoft/fast-web-utilities": ^5.4.1
checksum: ec3336247bbabb2e2587c2cf8b9d0e80786b454916dd600b3d6791bf08c3d1e45a7ec1becf366a5491ab56b0be020baa8c50a5b6067961faf5ec904de31243aa
languageName: node
linkType: hard
"@jupyter/ydoc@npm:^3.1.0":
version: 3.3.4
resolution: "@jupyter/ydoc@npm:3.3.4"
dependencies:
"@jupyterlab/nbformat": ^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0
"@lumino/coreutils": ^1.11.0 || ^2.0.0
"@lumino/disposable": ^1.10.0 || ^2.0.0
"@lumino/signaling": ^1.10.0 || ^2.0.0
y-protocols: ^1.0.5
yjs: ^13.5.40
checksum: c059c3d4390430796b12fd69c3fba69fc50095298d31371402d46a1cd013667e82af3078dd90c9dc15d2381703212918391c7df30ed4a24c70ed47d075e4f9e8
languageName: node
linkType: hard
"@jupyterlab/application@npm:^4.0.0, @jupyterlab/application@npm:^4.5.2":
version: 4.5.2
resolution: "@jupyterlab/application@npm:4.5.2"
dependencies:
"@fortawesome/fontawesome-free": ^5.12.0
"@jupyterlab/apputils": ^4.6.2
"@jupyterlab/coreutils": ^6.5.2
"@jupyterlab/docregistry": ^4.5.2
"@jupyterlab/rendermime": ^4.5.2
"@jupyterlab/rendermime-interfaces": ^3.13.2
"@jupyterlab/services": ^7.5.2
"@jupyterlab/statedb": ^4.5.2
"@jupyterlab/translation": ^4.5.2
"@jupyterlab/ui-components": ^4.5.2
"@lumino/algorithm": ^2.0.4
"@lumino/application": ^2.4.5
"@lumino/commands": ^2.3.3
"@lumino/coreutils": ^2.2.2
"@lumino/disposable": ^2.1.5
"@lumino/messaging": ^2.0.4
"@lumino/polling": ^2.1.5
"@lumino/properties": ^2.0.4
"@lumino/signaling": ^2.1.5
"@lumino/widgets": ^2.7.2
checksum: 0e6753115d4ce6a41521895b64b3673357120c5846925cf0c1fb5c11b8774b8f50228aaebad174f7f1108a1bc06298636cce6c7ee4b908b316aac564a3a5cc6f
languageName: node
linkType: hard
"@jupyterlab/apputils@npm:^4.6.2":
version: 4.6.2
resolution: "@jupyterlab/apputils@npm:4.6.2"
dependencies:
"@jupyterlab/coreutils": ^6.5.2
"@jupyterlab/observables": ^5.5.2
"@jupyterlab/rendermime-interfaces": ^3.13.2
"@jupyterlab/services": ^7.5.2
"@jupyterlab/settingregistry": ^4.5.2
"@jupyterlab/statedb": ^4.5.2
"@jupyterlab/statusbar": ^4.5.2
"@jupyterlab/translation": ^4.5.2
"@jupyterlab/ui-components": ^4.5.2
"@lumino/algorithm": ^2.0.4
"@lumino/commands": ^2.3.3
"@lumino/coreutils": ^2.2.2
"@lumino/disposable": ^2.1.5
"@lumino/domutils": ^2.0.4
"@lumino/messaging": ^2.0.4
"@lumino/signaling": ^2.1.5
"@lumino/virtualdom": ^2.0.4
"@lumino/widgets": ^2.7.2
"@types/react": ^18.0.26
react: ^18.2.0
sanitize-html: ~2.12.1
checksum: 5cd7e3c0f3a616dd91afb39ddf9defbba3b2cf87baf058e604e654eb7a255a1d5c64c64f4cd32923f261969efd6f4d0b2076a95a19b4d3454a761de78ef9c8f2
languageName: node
linkType: hard
"@jupyterlab/attachments@npm:^4.5.2":
version: 4.5.2
resolution: "@jupyterlab/attachments@npm:4.5.2"
dependencies:
"@jupyterlab/nbformat": ^4.5.2
"@jupyterlab/observables": ^5.5.2
"@jupyterlab/rendermime": ^4.5.2
"@jupyterlab/rendermime-interfaces": ^3.13.2
"@lumino/disposable": ^2.1.5
"@lumino/signaling": ^2.1.5
checksum: 20095408bb043a9dbf4434b6bf2a69da907676f55b6c0c95f4464c69be054744149c166365cfd7dd289902adeb41e137e87e3225de86665ffc6d4a04a4ff84b8
languageName: node
linkType: hard
"@jupyterlab/builder@npm:^4.0.0":
version: 4.5.2
resolution: "@jupyterlab/builder@npm:4.5.2"
dependencies:
"@lumino/algorithm": ^2.0.4
"@lumino/application": ^2.4.5
"@lumino/commands": ^2.3.3
"@lumino/coreutils": ^2.2.2
"@lumino/disposable": ^2.1.5
"@lumino/domutils": ^2.0.4
"@lumino/dragdrop": ^2.1.7
"@lumino/messaging": ^2.0.4
"@lumino/properties": ^2.0.4
"@lumino/signaling": ^2.1.5
"@lumino/virtualdom": ^2.0.4
"@lumino/widgets": ^2.7.2
ajv: ^8.12.0
commander: ^9.4.1
css-loader: ^6.7.1
duplicate-package-checker-webpack-plugin: ^3.0.0
fs-extra: ^10.1.0
glob: ~7.1.6
license-webpack-plugin: ^2.3.14
mini-css-extract-plugin: ^2.7.0
mini-svg-data-uri: ^1.4.4
path-browserify: ^1.0.0
process: ^0.11.10
source-map-loader: ~1.0.2
style-loader: ~3.3.1
supports-color: ^7.2.0
terser-webpack-plugin: ^5.3.7
webpack: ^5.76.1
webpack-cli: ^5.0.1
webpack-merge: ^5.8.0
worker-loader: ^3.0.2
bin:
build-labextension: lib/build-labextension.js
checksum: 722a2ea1d56ce3dbff02e77d7ab779b48d311b79c4d96d3d9078393f4bde3bd730fe220b4696c5efe80d329e4780ea22c7f27d3d1d41fda879313b6670403658
languageName: node
linkType: hard
"@jupyterlab/cells@npm:^4.5.2":
version: 4.5.2
resolution: "@jupyterlab/cells@npm:4.5.2"
dependencies:
"@codemirror/state": ^6.5.2
"@codemirror/view": ^6.38.1
"@jupyter/ydoc": ^3.1.0
"@jupyterlab/apputils": ^4.6.2
"@jupyterlab/attachments": ^4.5.2
"@jupyterlab/codeeditor": ^4.5.2
"@jupyterlab/codemirror": ^4.5.2
"@jupyterlab/coreutils": ^6.5.2
"@jupyterlab/documentsearch": ^4.5.2
"@jupyterlab/filebrowser": ^4.5.2
"@jupyterlab/nbformat": ^4.5.2
"@jupyterlab/observables": ^5.5.2
"@jupyterlab/outputarea": ^4.5.2
"@jupyterlab/rendermime": ^4.5.2
"@jupyterlab/services": ^7.5.2
"@jupyterlab/toc": ^6.5.2
"@jupyterlab/translation": ^4.5.2
"@jupyterlab/ui-components": ^4.5.2
"@lumino/algorithm": ^2.0.4
"@lumino/coreutils": ^2.2.2
"@lumino/domutils": ^2.0.4
"@lumino/dragdrop": ^2.1.7
"@lumino/messaging": ^2.0.4
"@lumino/polling": ^2.1.5
"@lumino/signaling": ^2.1.5
"@lumino/virtualdom": ^2.0.4
"@lumino/widgets": ^2.7.2
react: ^18.2.0
checksum: 671019d51a104c9d1b0fd19112105c22e406814f07db3495e64d11e97e4da1413b2fb3919052359adf3f11a61c145abd7d3acedefe47ab115a362b56a13c810f
languageName: node
linkType: hard
"@jupyterlab/codeeditor@npm:^4.5.2":
version: 4.5.2
resolution: "@jupyterlab/codeeditor@npm:4.5.2"
dependencies:
"@codemirror/state": ^6.5.2
"@jupyter/ydoc": ^3.1.0
"@jupyterlab/apputils": ^4.6.2
"@jupyterlab/coreutils": ^6.5.2
"@jupyterlab/nbformat": ^4.5.2
"@jupyterlab/observables": ^5.5.2
"@jupyterlab/statusbar": ^4.5.2
"@jupyterlab/translation": ^4.5.2
"@jupyterlab/ui-components": ^4.5.2
"@lumino/coreutils": ^2.2.2
"@lumino/disposable": ^2.1.5
"@lumino/dragdrop": ^2.1.7
"@lumino/messaging": ^2.0.4
"@lumino/signaling": ^2.1.5
"@lumino/widgets": ^2.7.2
react: ^18.2.0
checksum: 25c2944d9c503585a0d03d85e5361f5b95423879403eab9a7898bf35560469c9ed69f95fd11e01245c7b00dffde8af48eb74e3f0499f4769f4bd840aa821bedb
languageName: node
linkType: hard
"@jupyterlab/codemirror@npm:^4.5.2":
version: 4.5.2
resolution: "@jupyterlab/codemirror@npm:4.5.2"
dependencies:
"@codemirror/autocomplete": ^6.18.6
"@codemirror/commands": ^6.8.1
"@codemirror/lang-cpp": ^6.0.2
"@codemirror/lang-css": ^6.3.1
"@codemirror/lang-html": ^6.4.9
"@codemirror/lang-java": ^6.0.1
"@codemirror/lang-javascript": ^6.2.3
"@codemirror/lang-json": ^6.0.1
"@codemirror/lang-markdown": ^6.3.2
"@codemirror/lang-php": ^6.0.1
"@codemirror/lang-python": ^6.2.0
"@codemirror/lang-rust": ^6.0.1
"@codemirror/lang-sql": ^6.8.0
"@codemirror/lang-wast": ^6.0.2
"@codemirror/lang-xml": ^6.1.0
"@codemirror/language": ^6.11.0
"@codemirror/legacy-modes": ^6.5.1
"@codemirror/search": ^6.5.10
"@codemirror/state": ^6.5.2
"@codemirror/view": ^6.38.1
"@jupyter/ydoc": ^3.1.0
"@jupyterlab/codeeditor": ^4.5.2
"@jupyterlab/coreutils": ^6.5.2
"@jupyterlab/documentsearch": ^4.5.2
"@jupyterlab/nbformat": ^4.5.2
"@jupyterlab/translation": ^4.5.2
"@lezer/common": ^1.2.1
"@lezer/generator": ^1.7.0
"@lezer/highlight": ^1.2.0
"@lezer/markdown": ^1.3.0
"@lumino/coreutils": ^2.2.2
"@lumino/disposable": ^2.1.5
"@lumino/signaling": ^2.1.5
yjs: ^13.5.40
checksum: b0cb59d9d9a86be542883cf6c2b22ed3d43f3d5625b9d18dea50603eb62afaa0f64b9f81484261a66b4d379e6e6b9c88ea57b9f8eb554233b974c3ed0227cda2
languageName: node
linkType: hard
"@jupyterlab/coreutils@npm:^6.5.2":
version: 6.5.2
resolution: "@jupyterlab/coreutils@npm:6.5.2"
dependencies:
"@lumino/coreutils": ^2.2.2
"@lumino/disposable": ^2.1.5
"@lumino/signaling": ^2.1.5
minimist: ~1.2.0
path-browserify: ^1.0.0
url-parse: ~1.5.4
checksum: fd7685148b0d223025ad3d5f4903d4b846f89edbd07d506b28c43862a9f69123fa83ee70877082164717957bd442a9906815fbc0671c85efc80111ae6a0c8e76
languageName: node
linkType: hard
"@jupyterlab/docmanager@npm:^4.5.2":
version: 4.5.2
resolution: "@jupyterlab/docmanager@npm:4.5.2"
dependencies:
"@jupyterlab/apputils": ^4.6.2
"@jupyterlab/coreutils": ^6.5.2
"@jupyterlab/docregistry": ^4.5.2
"@jupyterlab/rendermime": ^4.5.2
"@jupyterlab/services": ^7.5.2
"@jupyterlab/statedb": ^4.5.2
"@jupyterlab/statusbar": ^4.5.2
"@jupyterlab/translation": ^4.5.2
"@jupyterlab/ui-components": ^4.5.2
"@lumino/algorithm": ^2.0.4
"@lumino/coreutils": ^2.2.2
"@lumino/disposable": ^2.1.5
"@lumino/messaging": ^2.0.4
"@lumino/polling": ^2.1.5
"@lumino/properties": ^2.0.4
"@lumino/signaling": ^2.1.5
"@lumino/widgets": ^2.7.2
react: ^18.2.0
checksum: 6c9c9fa334a96b8f4c6d9e1cbafc082040278051d0dce7a22a5614f8905e0bf4c3c7b1babbff064d101b66d9e92a99bd61f4ad505a3ce30c74733e02ba84aba2
languageName: node
linkType: hard
"@jupyterlab/docregistry@npm:^4.5.2":
version: 4.5.2
resolution: "@jupyterlab/docregistry@npm:4.5.2"
dependencies:
"@jupyter/ydoc": ^3.1.0
"@jupyterlab/apputils": ^4.6.2
"@jupyterlab/codeeditor": ^4.5.2
"@jupyterlab/coreutils": ^6.5.2
"@jupyterlab/observables": ^5.5.2
"@jupyterlab/rendermime": ^4.5.2
"@jupyterlab/rendermime-interfaces": ^3.13.2
"@jupyterlab/services": ^7.5.2
"@jupyterlab/translation": ^4.5.2
"@jupyterlab/ui-components": ^4.5.2
"@lumino/algorithm": ^2.0.4
"@lumino/coreutils": ^2.2.2
"@lumino/disposable": ^2.1.5
"@lumino/messaging": ^2.0.4
"@lumino/properties": ^2.0.4
"@lumino/signaling": ^2.1.5
"@lumino/widgets": ^2.7.2
react: ^18.2.0
checksum: 436fcdd6ec02abd1e8876f587990114fb1297c7e70fb6ba65b9d21dcfebc40cb9cb42998354524915735599993c25088d70525dc94fcc65eac856f0414250f57
languageName: node
linkType: hard
"@jupyterlab/documentsearch@npm:^4.5.2":
version: 4.5.2
resolution: "@jupyterlab/documentsearch@npm:4.5.2"
dependencies:
"@jupyterlab/apputils": ^4.6.2
"@jupyterlab/translation": ^4.5.2
"@jupyterlab/ui-components": ^4.5.2
"@lumino/commands": ^2.3.3
"@lumino/coreutils": ^2.2.2
"@lumino/disposable": ^2.1.5
"@lumino/messaging": ^2.0.4
"@lumino/polling": ^2.1.5
"@lumino/signaling": ^2.1.5
"@lumino/widgets": ^2.7.2
react: ^18.2.0
checksum: 6ae92a5d01406326fa1428687e0f49b56fbaf666590658636e42ef9ce1690141e8cae01a970c72c26b638da132ec51ed7e5edb097ba0ecce61868b87949311c9
languageName: node
linkType: hard
"@jupyterlab/filebrowser@npm:^4.5.2":
version: 4.5.2
resolution: "@jupyterlab/filebrowser@npm:4.5.2"
dependencies:
"@jupyterlab/apputils": ^4.6.2
"@jupyterlab/coreutils": ^6.5.2
"@jupyterlab/docmanager": ^4.5.2
"@jupyterlab/docregistry": ^4.5.2
"@jupyterlab/services": ^7.5.2
"@jupyterlab/statedb": ^4.5.2
"@jupyterlab/statusbar": ^4.5.2
"@jupyterlab/translation": ^4.5.2
"@jupyterlab/ui-components": ^4.5.2
"@lumino/algorithm": ^2.0.4
"@lumino/coreutils": ^2.2.2
"@lumino/disposable": ^2.1.5
"@lumino/domutils": ^2.0.4
"@lumino/dragdrop": ^2.1.7
"@lumino/messaging": ^2.0.4
"@lumino/polling": ^2.1.5
"@lumino/signaling": ^2.1.5
"@lumino/virtualdom": ^2.0.4
"@lumino/widgets": ^2.7.2
jest-environment-jsdom: ^29.3.0
react: ^18.2.0
checksum: 557999ae31c4ef56c2b98ea63d0316cf354759dd2759b82c218a3869ac09577561dedc501712cd4ed8520eed0443822f8e1cb8ede12b20e8e8562bbeacd2c451
languageName: node
linkType: hard
"@jupyterlab/lsp@npm:^4.5.2":
version: 4.5.2
resolution: "@jupyterlab/lsp@npm:4.5.2"
dependencies:
"@jupyterlab/apputils": ^4.6.2
"@jupyterlab/codeeditor": ^4.5.2
"@jupyterlab/codemirror": ^4.5.2
"@jupyterlab/coreutils": ^6.5.2
"@jupyterlab/docregistry": ^4.5.2
"@jupyterlab/services": ^7.5.2
"@jupyterlab/translation": ^4.5.2
"@lumino/coreutils": ^2.2.2
"@lumino/disposable": ^2.1.5
"@lumino/signaling": ^2.1.5
"@lumino/widgets": ^2.7.2
lodash.mergewith: ^4.6.1
vscode-jsonrpc: ^6.0.0
vscode-languageserver-protocol: ^3.17.0
vscode-ws-jsonrpc: ~1.0.2
checksum: 31aa62fc04be1ba8775becf24b73e18bad36d3070cd1ad98054d62044ef1bb94857d3e396c5e0f1dafc6b775a1a24850e5d237665ace79863dda57ff16a02e9b
languageName: node
linkType: hard
"@jupyterlab/markedparser-extension@npm:^4.5.2":
version: 4.5.2
resolution: "@jupyterlab/markedparser-extension@npm:4.5.2"
dependencies:
"@jupyterlab/application": ^4.5.2
"@jupyterlab/codemirror": ^4.5.2
"@jupyterlab/coreutils": ^6.5.2
"@jupyterlab/mermaid": ^4.5.2
"@jupyterlab/rendermime": ^4.5.2
"@lumino/coreutils": ^2.2.2
marked: ^16.2.1
marked-gfm-heading-id: ^4.1.2
marked-mangle: ^1.1.11
checksum: 7a1774a04806a19a81b8710f914ebb3b9f6995fa713392e6c3c739287fc9731fa6f7e7391bc73959c60ddf15030838dca01a86172060ac7b0e026e776d716a44
languageName: node
linkType: hard
"@jupyterlab/mermaid@npm:^4.5.2":
version: 4.5.2
resolution: "@jupyterlab/mermaid@npm:4.5.2"
dependencies:
"@jupyterlab/apputils": ^4.6.2
"@jupyterlab/coreutils": ^6.5.2
"@jupyterlab/rendermime-interfaces": ^3.13.2
"@lumino/coreutils": ^2.2.2
"@lumino/widgets": ^2.7.2
"@mermaid-js/layout-elk": ^0.2.0
mermaid: ^11.12.1
checksum: 66a2f4e5a83fecf0ee5e089afaddf3b9652168473e28f80f98c5f3a4aa142b3e54dda0f78f97213df7e4a9434959e4a2054040a948f00ab0a493fcdcc73eaa29
languageName: node
linkType: hard