-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathyarn.lock
4355 lines (3964 loc) · 148 KB
/
yarn.lock
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 6
cacheKey: 8
"@codemirror/autocomplete@npm:^6.0.0, @codemirror/autocomplete@npm:^6.3.2, @codemirror/autocomplete@npm:^6.7.1":
version: 6.10.2
resolution: "@codemirror/autocomplete@npm:6.10.2"
dependencies:
"@codemirror/language": ^6.0.0
"@codemirror/state": ^6.0.0
"@codemirror/view": ^6.17.0
"@lezer/common": ^1.0.0
peerDependencies:
"@codemirror/language": ^6.0.0
"@codemirror/state": ^6.0.0
"@codemirror/view": ^6.0.0
"@lezer/common": ^1.0.0
checksum: 360cea6a87ae9c4e3c996903f636a8f47f8ea6cd44504181e69dd8ccf666bad3e8cc6d8935e0eedd8aa118fdfe86ea78f41bc15288f3a7517dbb87115e057563
languageName: node
linkType: hard
"@codemirror/autocomplete@npm:^6.15.0":
version: 6.16.0
resolution: "@codemirror/autocomplete@npm:6.16.0"
dependencies:
"@codemirror/language": ^6.0.0
"@codemirror/state": ^6.0.0
"@codemirror/view": ^6.17.0
"@lezer/common": ^1.0.0
peerDependencies:
"@codemirror/language": ^6.0.0
"@codemirror/state": ^6.0.0
"@codemirror/view": ^6.0.0
"@lezer/common": ^1.0.0
checksum: e33d3d8c961c03dc4a70d1ac6f01aee5362d778da9d873a8335aed47f7de9430eab083589736e7922464b941d5da23c51ab6af05400413a8d1a07604ffcb99f7
languageName: node
linkType: hard
"@codemirror/commands@npm:^6.3.3":
version: 6.5.0
resolution: "@codemirror/commands@npm:6.5.0"
dependencies:
"@codemirror/language": ^6.0.0
"@codemirror/state": ^6.4.0
"@codemirror/view": ^6.0.0
"@lezer/common": ^1.1.0
checksum: 27e49c5e0cb918b95d6a9f741bcc0e72cb76f963b0c829308edfb4491a37d8b12ae6fb96f9f1886b3189a22c82fec4434fbe65547dc3cd3e8dfb5222dfead2e7
languageName: node
linkType: hard
"@codemirror/lang-cpp@npm:^6.0.2":
version: 6.0.2
resolution: "@codemirror/lang-cpp@npm:6.0.2"
dependencies:
"@codemirror/language": ^6.0.0
"@lezer/cpp": ^1.0.0
checksum: bb9eba482cca80037ce30c7b193cf45eff19ccbb773764fddf2071756468ecc25aa53c777c943635054f89095b0247b9b50c339e107e41e68d34d12a7295f9a9
languageName: node
linkType: hard
"@codemirror/lang-css@npm:^6.0.0, @codemirror/lang-css@npm:^6.2.1":
version: 6.2.1
resolution: "@codemirror/lang-css@npm:6.2.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.0.0
checksum: 5a8457ee8a4310030a969f2d3128429f549c4dc9b7907ee8888b42119c80b65af99093801432efdf659b8ec36a147d2a947bc1ecbbf69a759395214e3f4834a8
languageName: node
linkType: hard
"@codemirror/lang-html@npm:^6.0.0":
version: 6.4.6
resolution: "@codemirror/lang-html@npm:6.4.6"
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.0
checksum: 8f884f4423ffc783181ee933f7212ad4ece204695cf8af9535a593f95e901d36515a8561fc336a0fbcf5782369b9484eeb0d2cec2167622868238177c5e6eb36
languageName: node
linkType: hard
"@codemirror/lang-html@npm:^6.4.8":
version: 6.4.9
resolution: "@codemirror/lang-html@npm:6.4.9"
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.0
checksum: ac8c3ceb0396f2e032752c5079bd950124dca708bc64e96fc147dc5fe7133e5cee0814fe951abdb953ec1d11fa540e4b30a712b5149d9a36016a197a28de45d7
languageName: node
linkType: hard
"@codemirror/lang-java@npm:^6.0.1":
version: 6.0.1
resolution: "@codemirror/lang-java@npm:6.0.1"
dependencies:
"@codemirror/language": ^6.0.0
"@lezer/java": ^1.0.0
checksum: 4679104683cbffcd224ac04c7e5d144b787494697b26470b07017259035b7bb3fa62609d9a61bfbc566f1756d9f972f9f26d96a3c1362dd48881c1172f9a914d
languageName: node
linkType: hard
"@codemirror/lang-javascript@npm:^6.0.0":
version: 6.2.1
resolution: "@codemirror/lang-javascript@npm:6.2.1"
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: 3df38c4cced06195283a9a2a9365aaa7c8c1b157852b331bc3a118403f774bbba57d2a392de52f5e28d2b344a323bc0146bcf7c8ef8be2473f167d815e4a37cd
languageName: node
linkType: hard
"@codemirror/lang-javascript@npm:^6.2.2":
version: 6.2.2
resolution: "@codemirror/lang-javascript@npm:6.2.2"
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: 66379942a8347dff2bd76d10ed7cf313bca83872f8336fdd3e14accfef23e7b690cd913c9d11a3854fba2b32299da07fc3275995327642c9ee43c2a8e538c19d
languageName: node
linkType: hard
"@codemirror/lang-json@npm:^6.0.1":
version: 6.0.1
resolution: "@codemirror/lang-json@npm:6.0.1"
dependencies:
"@codemirror/language": ^6.0.0
"@lezer/json": ^1.0.0
checksum: e9e87d50ff7b81bd56a6ab50740b1dd54e9a93f1be585e1d59d0642e2148842ea1528ac7b7221eb4ddc7fe84bbc28065144cc3ab86f6e06c6aeb2d4b4e62acf1
languageName: node
linkType: hard
"@codemirror/lang-markdown@npm:^6.2.4":
version: 6.2.5
resolution: "@codemirror/lang-markdown@npm:6.2.5"
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: 3d9e0817f888eddcb6d05ec8f0d8dacbde7b9ef7650303bc4ab8b08a550a986c60c65b1565212e06af389c31590330f1f5ed65e619a9446dc2979ff3dac0e874
languageName: node
linkType: hard
"@codemirror/lang-php@npm:^6.0.1":
version: 6.0.1
resolution: "@codemirror/lang-php@npm:6.0.1"
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: c003a29a426486453fdfddbf7302982fa2aa7f059bf6f1ce4cbf08341b0162eee5e2f50e0d71c418dcd358491631780156d846fe352754d042576172c5d86721
languageName: node
linkType: hard
"@codemirror/lang-python@npm:^6.1.4":
version: 6.1.6
resolution: "@codemirror/lang-python@npm:6.1.6"
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: eb1faabd332bb95d0f3e227eb19ac5a31140cf238905bbe73e061040999f5680a012f9145fb3688bc2fcbb1908c957511edc8eeb8a9aa88d27d4fa55ad451e95
languageName: node
linkType: hard
"@codemirror/lang-rust@npm:^6.0.1":
version: 6.0.1
resolution: "@codemirror/lang-rust@npm:6.0.1"
dependencies:
"@codemirror/language": ^6.0.0
"@lezer/rust": ^1.0.0
checksum: 8a439944cb22159b0b3465ca4fa4294c69843219d5d30e278ae6df8e48f30a7a9256129723c025ec9b5e694d31a3560fb004300b125ffcd81c22d13825845170
languageName: node
linkType: hard
"@codemirror/lang-sql@npm:^6.6.1":
version: 6.6.4
resolution: "@codemirror/lang-sql@npm:6.6.4"
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: ae7c498d08c118d8f1751c28d12c54f45cacd589f6adb56216d44eb14abc0e436dcefe675d50bd02a242426327384cbcafa8c35098aa63384570a33c4cf27038
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.3.0, @codemirror/language@npm:^6.4.0, @codemirror/language@npm:^6.6.0, @codemirror/language@npm:^6.8.0":
version: 6.9.2
resolution: "@codemirror/language@npm:6.9.2"
dependencies:
"@codemirror/state": ^6.0.0
"@codemirror/view": ^6.0.0
"@lezer/common": ^1.1.0
"@lezer/highlight": ^1.0.0
"@lezer/lr": ^1.0.0
style-mod: ^4.0.0
checksum: eee7b861b5591114cac7502cd532d5b923639740081a4cd7e28696c252af8d759b14686aaf6d5eee7e0969ff647b7aaf03a5eea7235fb6d9858ee19433f1c74d
languageName: node
linkType: hard
"@codemirror/language@npm:^6.10.1":
version: 6.10.1
resolution: "@codemirror/language@npm:6.10.1"
dependencies:
"@codemirror/state": ^6.0.0
"@codemirror/view": ^6.23.0
"@lezer/common": ^1.1.0
"@lezer/highlight": ^1.0.0
"@lezer/lr": ^1.0.0
style-mod: ^4.0.0
checksum: 453bbe122a84795752f29261412b69a8dcfdd7e4369eb7e112bffba36b9e527ad21adff1d3845e0dc44c9ab44eb0c6f823eb6ba790ddd00cc749847574eda779
languageName: node
linkType: hard
"@codemirror/legacy-modes@npm:^6.3.3":
version: 6.4.0
resolution: "@codemirror/legacy-modes@npm:6.4.0"
dependencies:
"@codemirror/language": ^6.0.0
checksum: d382aa6f640a67418bd209e1e4b395340f96aac1b0cf185927fc2c7f98b62cfd0c59ef0f7048148ce8771622003ca844c78c2d18548235ecc57d0bcbfbbfe091
languageName: node
linkType: hard
"@codemirror/lint@npm:^6.0.0":
version: 6.4.2
resolution: "@codemirror/lint@npm:6.4.2"
dependencies:
"@codemirror/state": ^6.0.0
"@codemirror/view": ^6.0.0
crelt: ^1.0.5
checksum: 5e699960c1b28dbaa584fe091a3201978907bf4b9e52810fb15d3ceaf310e38053435e0b594da0985266ae812039a5cd6c36023284a6f8568664bdca04db137f
languageName: node
linkType: hard
"@codemirror/search@npm:^6.5.6":
version: 6.5.6
resolution: "@codemirror/search@npm:6.5.6"
dependencies:
"@codemirror/state": ^6.0.0
"@codemirror/view": ^6.0.0
crelt: ^1.0.5
checksum: 19dc88d09fc750563347001e83c6194bbb2a25c874bd919d2d81809e1f98d6330222ddbd284aa9758a09eeb41fd153ec7c2cf810b2ee51452c25963d7f5833d5
languageName: node
linkType: hard
"@codemirror/state@npm:^6.0.0, @codemirror/state@npm:^6.1.4":
version: 6.3.1
resolution: "@codemirror/state@npm:6.3.1"
checksum: 8e7e55b3824653936606b31f146737459cb6654c935d668e7f36113ad523e1951966640f647c1286ae4ef22e3f0c7e37a6dfcbbcdb7bbeacca43c17c80fcc918
languageName: node
linkType: hard
"@codemirror/state@npm:^6.4.0, @codemirror/state@npm:^6.4.1":
version: 6.4.1
resolution: "@codemirror/state@npm:6.4.1"
checksum: b81b55574091349eed4d32fc0eadb0c9688f1f7c98b681318f59138ee0f527cb4c4a97831b70547c0640f02f3127647838ae6730782de4a3dd2cc58836125d01
languageName: node
linkType: hard
"@codemirror/view@npm:^6.0.0, @codemirror/view@npm:^6.17.0":
version: 6.22.0
resolution: "@codemirror/view@npm:6.22.0"
dependencies:
"@codemirror/state": ^6.1.4
style-mod: ^4.1.0
w3c-keyname: ^2.2.4
checksum: 2a24674687fbde06898d0a131abe5f86a812d79e111cf8dc94110dac86eed8c20a2094b547c1b3c379fe8edf0c66318d03a7594158e4f6628ee060a03a5d1bab
languageName: node
linkType: hard
"@codemirror/view@npm:^6.23.0, @codemirror/view@npm:^6.26.0":
version: 6.26.3
resolution: "@codemirror/view@npm:6.26.3"
dependencies:
"@codemirror/state": ^6.4.0
style-mod: ^4.1.0
w3c-keyname: ^2.2.4
checksum: fdee35fb5e0bbba7b6f1a9b43a865880911bbfafd30360da5dda21b35f81ba2d080ff66b6c3d94dbe946b6b7ec98a76208786360b8f030ef10bcb054b816de05
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
"@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
"@jupyter/react-components@npm:^0.15.3":
version: 0.15.3
resolution: "@jupyter/react-components@npm:0.15.3"
dependencies:
"@jupyter/web-components": ^0.15.3
"@microsoft/fast-react-wrapper": ^0.3.22
react: ">=17.0.0 <19.0.0"
checksum: 1a6b256314259c6465c4b6d958575710536b82234a7bf0fba3e889a07e1f19ff8ab321450be354359876f92c45dbcc9d21a840237ff4a619806d9de696f55496
languageName: node
linkType: hard
"@jupyter/web-components@npm:^0.15.3":
version: 0.15.3
resolution: "@jupyter/web-components@npm:0.15.3"
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: a0980af934157bfdbdb6cc169c0816c1b2e57602d524c56bdcef746a4c25dfeb8f505150d83207c8695ed89b5486cf53d35a3382584d25ef64db666e4e16e45b
languageName: node
linkType: hard
"@jupyter/ydoc@npm:^2.0.1":
version: 2.0.1
resolution: "@jupyter/ydoc@npm:2.0.1"
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: f5f29e1ff3327ebc1cf326f53634e03c4c7bf7733d235087fe26975c16eebd404f23c2f3ba88b6e04b1927846be7162b09b8b8719a4b29e51d0299c745018cbb
languageName: node
linkType: hard
"@jupyterlab/application@npm:^4.2.0":
version: 4.2.0
resolution: "@jupyterlab/application@npm:4.2.0"
dependencies:
"@fortawesome/fontawesome-free": ^5.12.0
"@jupyterlab/apputils": ^4.3.0
"@jupyterlab/coreutils": ^6.2.0
"@jupyterlab/docregistry": ^4.2.0
"@jupyterlab/rendermime": ^4.2.0
"@jupyterlab/rendermime-interfaces": ^3.10.0
"@jupyterlab/services": ^7.2.0
"@jupyterlab/statedb": ^4.2.0
"@jupyterlab/translation": ^4.2.0
"@jupyterlab/ui-components": ^4.2.0
"@lumino/algorithm": ^2.0.1
"@lumino/application": ^2.3.1
"@lumino/commands": ^2.3.0
"@lumino/coreutils": ^2.1.2
"@lumino/disposable": ^2.1.2
"@lumino/messaging": ^2.0.1
"@lumino/polling": ^2.1.2
"@lumino/properties": ^2.0.1
"@lumino/signaling": ^2.1.2
"@lumino/widgets": ^2.3.2
checksum: 74811d63ddf4e6628c2467659ca1b0c39bba271689cff05925efbd3529bf4c771d41f42b04a458d1acdb0ced87b5fee5fb31d315a5b45e3449bd5f581f3be377
languageName: node
linkType: hard
"@jupyterlab/apputils@npm:^4.3.0":
version: 4.3.0
resolution: "@jupyterlab/apputils@npm:4.3.0"
dependencies:
"@jupyterlab/coreutils": ^6.2.0
"@jupyterlab/observables": ^5.2.0
"@jupyterlab/rendermime-interfaces": ^3.10.0
"@jupyterlab/services": ^7.2.0
"@jupyterlab/settingregistry": ^4.2.0
"@jupyterlab/statedb": ^4.2.0
"@jupyterlab/statusbar": ^4.2.0
"@jupyterlab/translation": ^4.2.0
"@jupyterlab/ui-components": ^4.2.0
"@lumino/algorithm": ^2.0.1
"@lumino/commands": ^2.3.0
"@lumino/coreutils": ^2.1.2
"@lumino/disposable": ^2.1.2
"@lumino/domutils": ^2.0.1
"@lumino/messaging": ^2.0.1
"@lumino/signaling": ^2.1.2
"@lumino/virtualdom": ^2.0.1
"@lumino/widgets": ^2.3.2
"@types/react": ^18.0.26
react: ^18.2.0
sanitize-html: ~2.12.1
checksum: 96f4f9055c464fb6f0e2545d21623b9500936da44cd7bafa9c1154164f6fc1846a518bc637ef46d6a082d208d12acf737d8aa679ce5546427ac04f068cf10cd5
languageName: node
linkType: hard
"@jupyterlab/attachments@npm:^4.2.0":
version: 4.2.0
resolution: "@jupyterlab/attachments@npm:4.2.0"
dependencies:
"@jupyterlab/nbformat": ^4.2.0
"@jupyterlab/observables": ^5.2.0
"@jupyterlab/rendermime": ^4.2.0
"@jupyterlab/rendermime-interfaces": ^3.10.0
"@lumino/disposable": ^2.1.2
"@lumino/signaling": ^2.1.2
checksum: 1224fe573aadeaf09f803d7619d3ecadc5b8f8d85ae76abb1cbd09a12be7a55f1f84ce29f576eb4bb8f806e28a412edce26fbae7fb841e9cb7fbcce1f5cf4bf4
languageName: node
linkType: hard
"@jupyterlab/cells@npm:^4.2.0":
version: 4.2.0
resolution: "@jupyterlab/cells@npm:4.2.0"
dependencies:
"@codemirror/state": ^6.4.1
"@codemirror/view": ^6.26.0
"@jupyter/ydoc": ^2.0.1
"@jupyterlab/apputils": ^4.3.0
"@jupyterlab/attachments": ^4.2.0
"@jupyterlab/codeeditor": ^4.2.0
"@jupyterlab/codemirror": ^4.2.0
"@jupyterlab/coreutils": ^6.2.0
"@jupyterlab/documentsearch": ^4.2.0
"@jupyterlab/filebrowser": ^4.2.0
"@jupyterlab/nbformat": ^4.2.0
"@jupyterlab/observables": ^5.2.0
"@jupyterlab/outputarea": ^4.2.0
"@jupyterlab/rendermime": ^4.2.0
"@jupyterlab/services": ^7.2.0
"@jupyterlab/toc": ^6.2.0
"@jupyterlab/translation": ^4.2.0
"@jupyterlab/ui-components": ^4.2.0
"@lumino/algorithm": ^2.0.1
"@lumino/coreutils": ^2.1.2
"@lumino/domutils": ^2.0.1
"@lumino/dragdrop": ^2.1.4
"@lumino/messaging": ^2.0.1
"@lumino/polling": ^2.1.2
"@lumino/signaling": ^2.1.2
"@lumino/virtualdom": ^2.0.1
"@lumino/widgets": ^2.3.2
react: ^18.2.0
checksum: 444ddf33c9ecda1880af67cd163a6b0416f761e5e454b4fe6dc36dc9b7f39f0deaca063bfd17de6312a2627f38a44645599d9a42501e2e2790d45a395e149a9a
languageName: node
linkType: hard
"@jupyterlab/codeeditor@npm:^4.2.0":
version: 4.2.0
resolution: "@jupyterlab/codeeditor@npm:4.2.0"
dependencies:
"@codemirror/state": ^6.4.1
"@jupyter/ydoc": ^2.0.1
"@jupyterlab/apputils": ^4.3.0
"@jupyterlab/coreutils": ^6.2.0
"@jupyterlab/nbformat": ^4.2.0
"@jupyterlab/observables": ^5.2.0
"@jupyterlab/statusbar": ^4.2.0
"@jupyterlab/translation": ^4.2.0
"@jupyterlab/ui-components": ^4.2.0
"@lumino/coreutils": ^2.1.2
"@lumino/disposable": ^2.1.2
"@lumino/dragdrop": ^2.1.4
"@lumino/messaging": ^2.0.1
"@lumino/signaling": ^2.1.2
"@lumino/widgets": ^2.3.2
react: ^18.2.0
checksum: a6e2b1cf7e46ae86154b20bd4a3c29c7c4bb0feb7b0cf6461470db99f2d6f4df13084f861fad7de9409a040191f075dcb3f148328eff419a2494cd84326749b2
languageName: node
linkType: hard
"@jupyterlab/codemirror@npm:^4.2.0":
version: 4.2.0
resolution: "@jupyterlab/codemirror@npm:4.2.0"
dependencies:
"@codemirror/autocomplete": ^6.15.0
"@codemirror/commands": ^6.3.3
"@codemirror/lang-cpp": ^6.0.2
"@codemirror/lang-css": ^6.2.1
"@codemirror/lang-html": ^6.4.8
"@codemirror/lang-java": ^6.0.1
"@codemirror/lang-javascript": ^6.2.2
"@codemirror/lang-json": ^6.0.1
"@codemirror/lang-markdown": ^6.2.4
"@codemirror/lang-php": ^6.0.1
"@codemirror/lang-python": ^6.1.4
"@codemirror/lang-rust": ^6.0.1
"@codemirror/lang-sql": ^6.6.1
"@codemirror/lang-wast": ^6.0.2
"@codemirror/lang-xml": ^6.1.0
"@codemirror/language": ^6.10.1
"@codemirror/legacy-modes": ^6.3.3
"@codemirror/search": ^6.5.6
"@codemirror/state": ^6.4.1
"@codemirror/view": ^6.26.0
"@jupyter/ydoc": ^2.0.1
"@jupyterlab/codeeditor": ^4.2.0
"@jupyterlab/coreutils": ^6.2.0
"@jupyterlab/documentsearch": ^4.2.0
"@jupyterlab/nbformat": ^4.2.0
"@jupyterlab/translation": ^4.2.0
"@lezer/common": ^1.2.1
"@lezer/generator": ^1.7.0
"@lezer/highlight": ^1.2.0
"@lezer/markdown": ^1.2.0
"@lumino/coreutils": ^2.1.2
"@lumino/disposable": ^2.1.2
"@lumino/signaling": ^2.1.2
yjs: ^13.5.40
checksum: 5fa46acd267dbd2e555250256a7e7820ccf9f931dfcf6a41bf15f71ed220ac317d386d81fe7ca55eb7c6136bc4e715fe086421296eb6e8fbe992b12e4b7d1be6
languageName: node
linkType: hard
"@jupyterlab/console@npm:^4.2.0":
version: 4.2.0
resolution: "@jupyterlab/console@npm:4.2.0"
dependencies:
"@codemirror/state": ^6.4.1
"@codemirror/view": ^6.26.0
"@jupyter/ydoc": ^2.0.1
"@jupyterlab/apputils": ^4.3.0
"@jupyterlab/cells": ^4.2.0
"@jupyterlab/codeeditor": ^4.2.0
"@jupyterlab/coreutils": ^6.2.0
"@jupyterlab/nbformat": ^4.2.0
"@jupyterlab/observables": ^5.2.0
"@jupyterlab/rendermime": ^4.2.0
"@jupyterlab/services": ^7.2.0
"@jupyterlab/translation": ^4.2.0
"@jupyterlab/ui-components": ^4.2.0
"@lumino/coreutils": ^2.1.2
"@lumino/disposable": ^2.1.2
"@lumino/dragdrop": ^2.1.4
"@lumino/messaging": ^2.0.1
"@lumino/signaling": ^2.1.2
"@lumino/widgets": ^2.3.2
checksum: f458d09b69408c61e235f0085d49530a78383a8ee460721309e556b59c48d0e2c6c2769cb1f56c8efe91d92c0e2b3fca2a8d09a4a4e578830ee9b83a5468822b
languageName: node
linkType: hard
"@jupyterlab/coreutils@npm:^6.2.0":
version: 6.2.0
resolution: "@jupyterlab/coreutils@npm:6.2.0"
dependencies:
"@lumino/coreutils": ^2.1.2
"@lumino/disposable": ^2.1.2
"@lumino/signaling": ^2.1.2
minimist: ~1.2.0
path-browserify: ^1.0.0
url-parse: ~1.5.4
checksum: 1975f19f567b63484055b0d1d10757b2bf66274814083e50702bb6017af22341cc3f5924d0ec7da408feacd652120b476aaaf50286a5401f798f257e899aed91
languageName: node
linkType: hard
"@jupyterlab/debugger@npm:^4.2.0":
version: 4.2.0
resolution: "@jupyterlab/debugger@npm:4.2.0"
dependencies:
"@codemirror/state": ^6.4.1
"@codemirror/view": ^6.26.0
"@jupyter/react-components": ^0.15.3
"@jupyter/ydoc": ^2.0.1
"@jupyterlab/application": ^4.2.0
"@jupyterlab/apputils": ^4.3.0
"@jupyterlab/cells": ^4.2.0
"@jupyterlab/codeeditor": ^4.2.0
"@jupyterlab/codemirror": ^4.2.0
"@jupyterlab/console": ^4.2.0
"@jupyterlab/coreutils": ^6.2.0
"@jupyterlab/docregistry": ^4.2.0
"@jupyterlab/fileeditor": ^4.2.0
"@jupyterlab/notebook": ^4.2.0
"@jupyterlab/observables": ^5.2.0
"@jupyterlab/rendermime": ^4.2.0
"@jupyterlab/services": ^7.2.0
"@jupyterlab/translation": ^4.2.0
"@jupyterlab/ui-components": ^4.2.0
"@lumino/algorithm": ^2.0.1
"@lumino/commands": ^2.3.0
"@lumino/coreutils": ^2.1.2
"@lumino/datagrid": ^2.3.1
"@lumino/disposable": ^2.1.2
"@lumino/messaging": ^2.0.1
"@lumino/polling": ^2.1.2
"@lumino/signaling": ^2.1.2
"@lumino/widgets": ^2.3.2
"@vscode/debugprotocol": ^1.51.0
react: ^18.2.0
checksum: 3abc3b4698d8c4b490e08d5fc2956fd34254aecb95064ecad7bd9240a10eb2429c7c0204f4a988bea96343fd9a881ab60c4fa7c593d1e9312e9b8b25f7d0e1e1
languageName: node
linkType: hard
"@jupyterlab/docmanager@npm:^4.2.0":
version: 4.2.0
resolution: "@jupyterlab/docmanager@npm:4.2.0"
dependencies:
"@jupyterlab/apputils": ^4.3.0
"@jupyterlab/coreutils": ^6.2.0
"@jupyterlab/docregistry": ^4.2.0
"@jupyterlab/services": ^7.2.0
"@jupyterlab/statedb": ^4.2.0
"@jupyterlab/statusbar": ^4.2.0
"@jupyterlab/translation": ^4.2.0
"@jupyterlab/ui-components": ^4.2.0
"@lumino/algorithm": ^2.0.1
"@lumino/coreutils": ^2.1.2
"@lumino/disposable": ^2.1.2
"@lumino/messaging": ^2.0.1
"@lumino/polling": ^2.1.2
"@lumino/properties": ^2.0.1
"@lumino/signaling": ^2.1.2
"@lumino/widgets": ^2.3.2
react: ^18.2.0
checksum: 63e461bf75ce4b12ada41cf727b11f956c62312b2e017fdaf9979ba16a86cb5078e7eed4f508e122afc3718d1ee18548c8ec6a1bb50f4a95a2217a77a8e0b1c3
languageName: node
linkType: hard
"@jupyterlab/docregistry@npm:^4.2.0":
version: 4.2.0
resolution: "@jupyterlab/docregistry@npm:4.2.0"
dependencies:
"@jupyter/ydoc": ^2.0.1
"@jupyterlab/apputils": ^4.3.0
"@jupyterlab/codeeditor": ^4.2.0
"@jupyterlab/coreutils": ^6.2.0
"@jupyterlab/observables": ^5.2.0
"@jupyterlab/rendermime": ^4.2.0
"@jupyterlab/rendermime-interfaces": ^3.10.0
"@jupyterlab/services": ^7.2.0
"@jupyterlab/translation": ^4.2.0
"@jupyterlab/ui-components": ^4.2.0
"@lumino/algorithm": ^2.0.1
"@lumino/coreutils": ^2.1.2
"@lumino/disposable": ^2.1.2
"@lumino/messaging": ^2.0.1
"@lumino/properties": ^2.0.1
"@lumino/signaling": ^2.1.2
"@lumino/widgets": ^2.3.2
react: ^18.2.0
checksum: ef616ca11a07a5a2d8865d909499662e8c37b19e9487081682c47808becb5d87fe09a4d1c0175ea8afd3c96a255a437b8d762e990c81d71cf9cc13cf99fe3c3b
languageName: node
linkType: hard
"@jupyterlab/documentsearch@npm:^4.2.0":
version: 4.2.0
resolution: "@jupyterlab/documentsearch@npm:4.2.0"
dependencies:
"@jupyterlab/apputils": ^4.3.0
"@jupyterlab/translation": ^4.2.0
"@jupyterlab/ui-components": ^4.2.0
"@lumino/commands": ^2.3.0
"@lumino/coreutils": ^2.1.2
"@lumino/disposable": ^2.1.2
"@lumino/messaging": ^2.0.1
"@lumino/polling": ^2.1.2
"@lumino/signaling": ^2.1.2
"@lumino/widgets": ^2.3.2
react: ^18.2.0
checksum: c49919b3094390c6cefdf66c2d13baf6e7a387e087a75090cd04e65bda593bf3e9afc91307b80b851e41544ba22eae766bcacfa63480738f3f54b43f6f111c8e
languageName: node
linkType: hard
"@jupyterlab/filebrowser@npm:^4.2.0":
version: 4.2.0
resolution: "@jupyterlab/filebrowser@npm:4.2.0"
dependencies:
"@jupyterlab/apputils": ^4.3.0
"@jupyterlab/coreutils": ^6.2.0
"@jupyterlab/docmanager": ^4.2.0
"@jupyterlab/docregistry": ^4.2.0
"@jupyterlab/services": ^7.2.0
"@jupyterlab/statedb": ^4.2.0
"@jupyterlab/statusbar": ^4.2.0
"@jupyterlab/translation": ^4.2.0
"@jupyterlab/ui-components": ^4.2.0
"@lumino/algorithm": ^2.0.1
"@lumino/coreutils": ^2.1.2
"@lumino/disposable": ^2.1.2
"@lumino/domutils": ^2.0.1
"@lumino/dragdrop": ^2.1.4
"@lumino/messaging": ^2.0.1
"@lumino/polling": ^2.1.2
"@lumino/signaling": ^2.1.2
"@lumino/virtualdom": ^2.0.1
"@lumino/widgets": ^2.3.2
react: ^18.2.0
checksum: d80fdb55c25472cae56852c6ce8633a9899430e784ff60fbac956c17db60bc3eb92fdc5cf4e7b1c06e1fd5b7e37c3c4f9992e4ed7d4d800cd5c65eac43d5ac08
languageName: node
linkType: hard
"@jupyterlab/fileeditor@npm:^4.2.0":
version: 4.2.0
resolution: "@jupyterlab/fileeditor@npm:4.2.0"
dependencies:
"@jupyter/ydoc": ^2.0.1
"@jupyterlab/apputils": ^4.3.0
"@jupyterlab/codeeditor": ^4.2.0
"@jupyterlab/codemirror": ^4.2.0
"@jupyterlab/coreutils": ^6.2.0
"@jupyterlab/docregistry": ^4.2.0
"@jupyterlab/documentsearch": ^4.2.0
"@jupyterlab/lsp": ^4.2.0
"@jupyterlab/statusbar": ^4.2.0
"@jupyterlab/toc": ^6.2.0
"@jupyterlab/translation": ^4.2.0
"@jupyterlab/ui-components": ^4.2.0
"@lumino/commands": ^2.3.0
"@lumino/coreutils": ^2.1.2
"@lumino/messaging": ^2.0.1
"@lumino/widgets": ^2.3.2
react: ^18.2.0
regexp-match-indices: ^1.0.2
checksum: da9bba0eddad5e49726c982c8074447a7df76a7e327dc5a6fa6cc5ae1fe1b0562eb6db12ed25cbe4fef61a06cd41381bf2cefce4adfd08011927278a792bcb8a
languageName: node
linkType: hard
"@jupyterlab/galata@npm:^5.2.0":
version: 5.2.0
resolution: "@jupyterlab/galata@npm:5.2.0"
dependencies:
"@jupyterlab/application": ^4.2.0
"@jupyterlab/apputils": ^4.3.0
"@jupyterlab/coreutils": ^6.2.0
"@jupyterlab/debugger": ^4.2.0
"@jupyterlab/docmanager": ^4.2.0
"@jupyterlab/nbformat": ^4.2.0
"@jupyterlab/notebook": ^4.2.0
"@jupyterlab/services": ^7.2.0
"@jupyterlab/settingregistry": ^4.2.0
"@lumino/coreutils": ^2.1.2
"@playwright/test": ^1.43.1
"@stdlib/stats": ~0.0.13
fs-extra: ^10.1.0
json5: ^2.2.3
path: ~0.12.7
systeminformation: ^5.8.6
vega: ^5.20.0
vega-lite: ^5.6.1
vega-statistics: ^1.7.9
checksum: 3b6ea441475cc57cafd48002b5e128bebda7367dc5a4c07c8f04e7e95d8bd60dacb0e1e89664feef5b2f426f140a6bd2824fdaa1b5e3b4d7e7dcad36c027e780
languageName: node
linkType: hard
"@jupyterlab/lsp@npm:^4.2.0":
version: 4.2.0
resolution: "@jupyterlab/lsp@npm:4.2.0"
dependencies:
"@jupyterlab/apputils": ^4.3.0
"@jupyterlab/codeeditor": ^4.2.0
"@jupyterlab/codemirror": ^4.2.0
"@jupyterlab/coreutils": ^6.2.0
"@jupyterlab/docregistry": ^4.2.0
"@jupyterlab/services": ^7.2.0
"@jupyterlab/translation": ^4.2.0
"@lumino/coreutils": ^2.1.2
"@lumino/disposable": ^2.1.2
"@lumino/signaling": ^2.1.2
"@lumino/widgets": ^2.3.2
lodash.mergewith: ^4.6.1
vscode-jsonrpc: ^6.0.0
vscode-languageserver-protocol: ^3.17.0
vscode-ws-jsonrpc: ~1.0.2
checksum: e016ed7efb6c664eb386d6036e601fd603ad34232cb11c40c5c35fe32710cdfa55346ae33759fc1006428f6e7dcadb0a371e0907a872519cedc123779770dc67
languageName: node
linkType: hard
"@jupyterlab/nbformat@npm:^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0":
version: 4.0.8
resolution: "@jupyterlab/nbformat@npm:4.0.8"
dependencies:
"@lumino/coreutils": ^2.1.2
checksum: 2d8255ac7c7c20dbfa8497ce4d8d2f5840568adefb2feaec8eb8ddbb4892f50706ce60e8c4719113485c5523f720802f7e4e7b63ed43fac90f870ff1134bed7a
languageName: node
linkType: hard
"@jupyterlab/nbformat@npm:^4.2.0":
version: 4.2.0
resolution: "@jupyterlab/nbformat@npm:4.2.0"
dependencies:
"@lumino/coreutils": ^2.1.2
checksum: adecadcb63de48f09aeb54eebfed8b77ab322c478fd903001e09780a01e7cf68f93716a2598631d4426d8ad9d3dc6349e8892db12575f74c8daea33f63b9c111
languageName: node
linkType: hard
"@jupyterlab/notebook@npm:^4.2.0":
version: 4.2.0
resolution: "@jupyterlab/notebook@npm:4.2.0"
dependencies:
"@jupyter/ydoc": ^2.0.1
"@jupyterlab/apputils": ^4.3.0
"@jupyterlab/cells": ^4.2.0
"@jupyterlab/codeeditor": ^4.2.0
"@jupyterlab/codemirror": ^4.2.0
"@jupyterlab/coreutils": ^6.2.0
"@jupyterlab/docregistry": ^4.2.0
"@jupyterlab/documentsearch": ^4.2.0
"@jupyterlab/lsp": ^4.2.0
"@jupyterlab/nbformat": ^4.2.0
"@jupyterlab/observables": ^5.2.0
"@jupyterlab/rendermime": ^4.2.0
"@jupyterlab/services": ^7.2.0
"@jupyterlab/settingregistry": ^4.2.0
"@jupyterlab/statusbar": ^4.2.0
"@jupyterlab/toc": ^6.2.0
"@jupyterlab/translation": ^4.2.0
"@jupyterlab/ui-components": ^4.2.0
"@lumino/algorithm": ^2.0.1
"@lumino/coreutils": ^2.1.2
"@lumino/disposable": ^2.1.2
"@lumino/domutils": ^2.0.1
"@lumino/dragdrop": ^2.1.4
"@lumino/messaging": ^2.0.1
"@lumino/polling": ^2.1.2
"@lumino/properties": ^2.0.1
"@lumino/signaling": ^2.1.2
"@lumino/virtualdom": ^2.0.1
"@lumino/widgets": ^2.3.2
react: ^18.2.0
checksum: 2f4bcc4edde849a77b3a257c1920ca03dc666ec442acdf56e4e5acb4d4ff81231fc065cc753f07f91010e08f1c888f49d4813eaef6bc5b444f5d4d85dfb93f98
languageName: node
linkType: hard
"@jupyterlab/observables@npm:^5.2.0":
version: 5.2.0
resolution: "@jupyterlab/observables@npm:5.2.0"
dependencies:
"@lumino/algorithm": ^2.0.1
"@lumino/coreutils": ^2.1.2
"@lumino/disposable": ^2.1.2
"@lumino/messaging": ^2.0.1
"@lumino/signaling": ^2.1.2
checksum: 98460d55d8ac559c79be87fe5e105cc200556e87276daed739fd89e8393c74ba9b03f67c8ecf7a02e8d8ee1fd8a60031ced6c1b7884ab5f10c8bdb876f150c5f
languageName: node
linkType: hard
"@jupyterlab/outputarea@npm:^4.2.0":
version: 4.2.0
resolution: "@jupyterlab/outputarea@npm:4.2.0"
dependencies:
"@jupyterlab/apputils": ^4.3.0
"@jupyterlab/nbformat": ^4.2.0
"@jupyterlab/observables": ^5.2.0
"@jupyterlab/rendermime": ^4.2.0
"@jupyterlab/rendermime-interfaces": ^3.10.0
"@jupyterlab/services": ^7.2.0
"@jupyterlab/translation": ^4.2.0
"@lumino/algorithm": ^2.0.1
"@lumino/coreutils": ^2.1.2
"@lumino/disposable": ^2.1.2
"@lumino/messaging": ^2.0.1
"@lumino/properties": ^2.0.1
"@lumino/signaling": ^2.1.2
"@lumino/widgets": ^2.3.2
checksum: 79403a2a27bf608a453f907c270afd0df822b398460cf5e435fcf938111201f35a1fc298a93be7e5386d5d38f9431a90a9c451f8f1255c8169d6aea7c3391163
languageName: node
linkType: hard
"@jupyterlab/rendermime-interfaces@npm:^3.10.0":
version: 3.10.0
resolution: "@jupyterlab/rendermime-interfaces@npm:3.10.0"
dependencies:
"@lumino/coreutils": ^1.11.0 || ^2.1.2
"@lumino/widgets": ^1.37.2 || ^2.3.2
checksum: 08999b64a6896a4d58869ec00ca64a1b3931e01b438d471a0ad1404407f6231667f686b823a9cb482349f3d774693368320d2d4463c23fdd1de81cb4ddf34f20
languageName: node
linkType: hard
"@jupyterlab/rendermime@npm:^4.2.0":
version: 4.2.0
resolution: "@jupyterlab/rendermime@npm:4.2.0"
dependencies:
"@jupyterlab/apputils": ^4.3.0
"@jupyterlab/coreutils": ^6.2.0
"@jupyterlab/nbformat": ^4.2.0
"@jupyterlab/observables": ^5.2.0
"@jupyterlab/rendermime-interfaces": ^3.10.0
"@jupyterlab/services": ^7.2.0
"@jupyterlab/translation": ^4.2.0
"@lumino/coreutils": ^2.1.2
"@lumino/messaging": ^2.0.1
"@lumino/signaling": ^2.1.2
"@lumino/widgets": ^2.3.2
lodash.escape: ^4.0.1
checksum: 296eba0721a2900cb960fbdb99e98f82999e982f4332f6be8af7ccbb7055b9bcb1517a2b24e5c3b6759c722d5f06f9a68d6a61c8cb59c40855b7852a45aca2bd
languageName: node
linkType: hard
"@jupyterlab/services@npm:^7.2.0":
version: 7.2.0
resolution: "@jupyterlab/services@npm:7.2.0"
dependencies:
"@jupyter/ydoc": ^2.0.1
"@jupyterlab/coreutils": ^6.2.0
"@jupyterlab/nbformat": ^4.2.0
"@jupyterlab/settingregistry": ^4.2.0
"@jupyterlab/statedb": ^4.2.0
"@lumino/coreutils": ^2.1.2
"@lumino/disposable": ^2.1.2
"@lumino/polling": ^2.1.2
"@lumino/properties": ^2.0.1
"@lumino/signaling": ^2.1.2
ws: ^8.11.0
checksum: edc93389913d792841b615cd0a317e16c77621cd5cb35e67c40f7a58bcf0e31c77718ae7abcf643621ba86ce78c795d6008a9413d84ecad2b42e39bd52db1447
languageName: node
linkType: hard
"@jupyterlab/settingregistry@npm:^4.2.0":
version: 4.2.0
resolution: "@jupyterlab/settingregistry@npm:4.2.0"
dependencies:
"@jupyterlab/nbformat": ^4.2.0
"@jupyterlab/statedb": ^4.2.0
"@lumino/commands": ^2.3.0
"@lumino/coreutils": ^2.1.2
"@lumino/disposable": ^2.1.2
"@lumino/signaling": ^2.1.2
"@rjsf/utils": ^5.13.4
ajv: ^8.12.0
json5: ^2.2.3
peerDependencies:
react: ">=16"
checksum: fc60490e9e977e38b14b27a9e3896b47a28930a76a84888dd86180105b9ab6d1e68544f1184bdba72b4c5aa003cb13f10c8e5ca60685827fe6f893302483a109
languageName: node
linkType: hard
"@jupyterlab/statedb@npm:^4.2.0":
version: 4.2.0
resolution: "@jupyterlab/statedb@npm:4.2.0"
dependencies:
"@lumino/commands": ^2.3.0
"@lumino/coreutils": ^2.1.2
"@lumino/disposable": ^2.1.2
"@lumino/properties": ^2.0.1
"@lumino/signaling": ^2.1.2
checksum: 69620478aa7bf452d7440b9433b6411edef537cd7d9f72f87f70bd6fc0c8fc50003d02ab8d9d4b0746383f98cb7035b093ce5e596e6560e3c35c5a0fe434dce4
languageName: node