-
Notifications
You must be signed in to change notification settings - Fork 2
/
yarn.lock
6244 lines (5623 loc) · 213 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
"@aashutoshrathi/word-wrap@npm:^1.2.3":
version: 1.2.6
resolution: "@aashutoshrathi/word-wrap@npm:1.2.6"
checksum: ada901b9e7c680d190f1d012c84217ce0063d8f5c5a7725bb91ec3c5ed99bb7572680eb2d2938a531ccbaec39a95422fcd8a6b4a13110c7d98dd75402f66a0cd
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0":
version: 7.22.5
resolution: "@babel/code-frame@npm:7.22.5"
dependencies:
"@babel/highlight": ^7.22.5
checksum: cfe804f518f53faaf9a1d3e0f9f74127ab9a004912c3a16fda07fb6a633393ecb9918a053cb71804204c1b7ec3d49e1699604715e2cfb0c9f7bc4933d324ebb6
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-validator-identifier@npm:7.22.5"
checksum: 7f0f30113474a28298c12161763b49de5018732290ca4de13cdaefd4fd0d635a6fe3f6686c37a02905fb1e64f21a5ee2b55140cf7b070e729f1bd66866506aea
languageName: node
linkType: hard
"@babel/highlight@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/highlight@npm:7.22.5"
dependencies:
"@babel/helper-validator-identifier": ^7.22.5
chalk: ^2.0.0
js-tokens: ^4.0.0
checksum: f61ae6de6ee0ea8d9b5bcf2a532faec5ab0a1dc0f7c640e5047fc61630a0edb88b18d8c92eb06566d30da7a27db841aca11820ecd3ebe9ce514c9350fbed39c4
languageName: node
linkType: hard
"@codemirror/autocomplete@npm:^6.0.0, @codemirror/autocomplete@npm:^6.3.2, @codemirror/autocomplete@npm:^6.5.1, @codemirror/autocomplete@npm:^6.7.1":
version: 6.8.1
resolution: "@codemirror/autocomplete@npm:6.8.1"
dependencies:
"@codemirror/language": ^6.0.0
"@codemirror/state": ^6.0.0
"@codemirror/view": ^6.6.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: 8599cd91defa3fea5276a7f9aff43ced323d9c4401dfb867e43608ba72ded48cb458256c5c784949a6332c0c20ba2fedac16a5708335cd809d269e4ea5076957
languageName: node
linkType: hard
"@codemirror/commands@npm:^6.2.3":
version: 6.2.4
resolution: "@codemirror/commands@npm:6.2.4"
dependencies:
"@codemirror/language": ^6.0.0
"@codemirror/state": ^6.2.0
"@codemirror/view": ^6.0.0
"@lezer/common": ^1.0.0
checksum: 468895fa19ff0554181b698c81f850820de5c0289cab92c44392fb127286f09ca72b921d6ea4353b70b616a4fd0c3667d86b6f917202a3ad2e196eb7b581f7b6
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.1.1":
version: 6.2.0
resolution: "@codemirror/lang-css@npm:6.2.0"
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: d824f169083613b63f04992c24d3fecd45c718cd3deb9da3f332dd3a889a762d05ea812e31ddf7ee4b661722f8c8b49676515cb98609067c53e25ac8b469a5e4
languageName: node
linkType: hard
"@codemirror/lang-html@npm:^6.0.0, @codemirror/lang-html@npm:^6.4.3":
version: 6.4.5
resolution: "@codemirror/lang-html@npm:6.4.5"
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.2.2
"@lezer/common": ^1.0.0
"@lezer/css": ^1.1.0
"@lezer/html": ^1.3.0
checksum: 08c6a55557f5491059f1b20d7788e64dcc37c488d4c97c00fa1c21af599ab48cdd7f839f3ffc6814480b9756c7a96845a36b578427b3c8d5efbfe123bf4553b9
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, @codemirror/lang-javascript@npm:^6.1.7":
version: 6.1.9
resolution: "@codemirror/lang-javascript@npm:6.1.9"
dependencies:
"@codemirror/autocomplete": ^6.0.0
"@codemirror/language": ^6.6.0
"@codemirror/lint": ^6.0.0
"@codemirror/state": ^6.0.0
"@codemirror/view": ^6.0.0
"@lezer/common": ^1.0.0
"@lezer/javascript": ^1.0.0
checksum: 6c79b51c61d37b3f4dde6312df02183045c31f055e5cf8550b497f39798b823b4e380a641a2cfc97f3f26fd4e89194258d8ef741c42acd72b3f2e18257b427a5
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.1.1":
version: 6.2.0
resolution: "@codemirror/lang-markdown@npm:6.2.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.0.0
"@lezer/markdown": ^1.0.0
checksum: 0b2b5334abc8bb46fdaf0723fcddb9565b89c58d245ee0cced2c62c9c5de8430ad8bd73ab92d8a6bd67130173b59006bec2922e614e0277aa2b2d62f308113cf
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.3":
version: 6.1.3
resolution: "@codemirror/lang-python@npm:6.1.3"
dependencies:
"@codemirror/autocomplete": ^6.3.2
"@codemirror/language": ^6.8.0
"@lezer/python": ^1.1.4
checksum: 65a0276a4503e4e3b70dd28d1c93ef472632b6d2c4bf3ae92d305d14ee8cf60b0bbbf62d5ceb51294de9598d9e2d42eafcde26f317ee7b90d0a11dfa863c1d1a
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.4.1":
version: 6.5.2
resolution: "@codemirror/lang-sql@npm:6.5.2"
dependencies:
"@codemirror/autocomplete": ^6.0.0
"@codemirror/language": ^6.0.0
"@codemirror/state": ^6.0.0
"@lezer/highlight": ^1.0.0
"@lezer/lr": ^1.0.0
checksum: 29c7f3245271e50707939946e0aa3bae36d2fc392281c5a44bed38c886a5709611a8c68494d1f21c854dd70771ddb2cff2f0f26221b031653278ba2d5678a2b8
languageName: node
linkType: hard
"@codemirror/lang-wast@npm:^6.0.1":
version: 6.0.1
resolution: "@codemirror/lang-wast@npm:6.0.1"
dependencies:
"@codemirror/language": ^6.0.0
"@lezer/highlight": ^1.0.0
"@lezer/lr": ^1.0.0
checksum: 600d98d3ea6a4e99292244ed707e39a2abd9f3abf62cfeff5c819a0cc0c7e86b8c5b91e91c1b7ea21233d9ea09c41abe61d8a40b2547bb5db74239c6df857934
languageName: node
linkType: hard
"@codemirror/lang-xml@npm:^6.0.2":
version: 6.0.2
resolution: "@codemirror/lang-xml@npm:6.0.2"
dependencies:
"@codemirror/autocomplete": ^6.0.0
"@codemirror/language": ^6.4.0
"@codemirror/state": ^6.0.0
"@lezer/common": ^1.0.0
"@lezer/xml": ^1.0.0
checksum: e156ecafaa87e9b6ef4ab6812ccd00d8f3c6cb81f232837636b36336d80513b61936dfee6f4f6800574f236208b61e95a2abcb997cdcd7366585a6b796e0e13b
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.8.0
resolution: "@codemirror/language@npm:6.8.0"
dependencies:
"@codemirror/state": ^6.0.0
"@codemirror/view": ^6.0.0
"@lezer/common": ^1.0.0
"@lezer/highlight": ^1.0.0
"@lezer/lr": ^1.0.0
style-mod: ^4.0.0
checksum: 64408d996641931fa4c6b892e17ee1fdaee0f63d3d84c019a6ea7b1e6d1c774f92357b95c2ebaed60545062b795b72d0a058c03578b2bf4023c87726e97b5d2f
languageName: node
linkType: hard
"@codemirror/legacy-modes@npm:^6.3.2":
version: 6.3.2
resolution: "@codemirror/legacy-modes@npm:6.3.2"
dependencies:
"@codemirror/language": ^6.0.0
checksum: fa5f5477fb9e19267251e2ecd3de8c1a4c2512813555bb60111dce3951f2c3f6080a2985a573b7542534ba1d2c34115f7e39ee23fdf8f6f81db6f8ce447c1efc
languageName: node
linkType: hard
"@codemirror/lint@npm:^6.0.0":
version: 6.4.0
resolution: "@codemirror/lint@npm:6.4.0"
dependencies:
"@codemirror/state": ^6.0.0
"@codemirror/view": ^6.0.0
crelt: ^1.0.5
checksum: ba15f7dd87afbceafaa0b68f94b0d53727e4aacca7a81a4ed3278706df5787fdf18cd3f0d807a136f902b2fc2296bf3490462fd543d1d4ced17a0d8c171820fd
languageName: node
linkType: hard
"@codemirror/search@npm:^6.3.0":
version: 6.5.0
resolution: "@codemirror/search@npm:6.5.0"
dependencies:
"@codemirror/state": ^6.0.0
"@codemirror/view": ^6.0.0
crelt: ^1.0.5
checksum: 2e9f2344b7dbd4bad79058c105d8cbd02b2bf94c27495310f0e3b6e999010aa080dceea47ef46e35439cc9e131b47c46f7d2eda700ef491b5f2f34bbc8e145ab
languageName: node
linkType: hard
"@codemirror/state@npm:^6.0.0, @codemirror/state@npm:^6.1.4, @codemirror/state@npm:^6.2.0":
version: 6.2.1
resolution: "@codemirror/state@npm:6.2.1"
checksum: d12a321d0471b264b9d3259042bff913a8b939e8d28d408ff452004538a71ca9d5329df3f8a1d8a9183f5b42a7ef5b200737bcab1065714f5ae8e0a5ba9d59d3
languageName: node
linkType: hard
"@codemirror/view@npm:^6.0.0, @codemirror/view@npm:^6.2.2, @codemirror/view@npm:^6.6.0, @codemirror/view@npm:^6.9.6":
version: 6.14.1
resolution: "@codemirror/view@npm:6.14.1"
dependencies:
"@codemirror/state": ^6.1.4
style-mod: ^4.0.0
w3c-keyname: ^2.2.4
checksum: 19114ee05b3795ebe07a69cf00c36e8351b3500ce105b8412d90e757d459f71370ead3de852f0fda069041803276e6c38e6f1f943f77e85c9b5c279ab7fa1c4a
languageName: node
linkType: hard
"@csstools/css-parser-algorithms@npm:^2.3.0":
version: 2.3.0
resolution: "@csstools/css-parser-algorithms@npm:2.3.0"
peerDependencies:
"@csstools/css-tokenizer": ^2.1.1
checksum: 3be22a0cfcfe0dc4bb140e2f266590addf21c5052d9e69334da860b3839fbd4369c3d158cbc396032d5ed96d01d2b5d8ebdb5497f75c9830ed9ce99853e3f915
languageName: node
linkType: hard
"@csstools/css-tokenizer@npm:^2.1.1":
version: 2.1.1
resolution: "@csstools/css-tokenizer@npm:2.1.1"
checksum: d6ac4b08d7fdfc146755542f00b208af7248efd6cf2eb0f0f7d2ba3583a81f08ed9be6047d78b046925708b5bd0886f487edeeee2f90f0f34030dcbef4122d0e
languageName: node
linkType: hard
"@csstools/media-query-list-parser@npm:^2.1.2":
version: 2.1.2
resolution: "@csstools/media-query-list-parser@npm:2.1.2"
peerDependencies:
"@csstools/css-parser-algorithms": ^2.3.0
"@csstools/css-tokenizer": ^2.1.1
checksum: 04936573ba837f14d7d637e172342c473665679c6497bbc0d548d93d08cb22e22151bb19e0e20422954c0b2aa50c3f38c9fc5f45c136e31bc863c656cb79df1b
languageName: node
linkType: hard
"@csstools/selector-specificity@npm:^3.0.0":
version: 3.0.0
resolution: "@csstools/selector-specificity@npm:3.0.0"
peerDependencies:
postcss-selector-parser: ^6.0.13
checksum: 4a2dfe69998a499155d9dab4c2a0e7ae7594d8db98bb8a487d2d5347c0c501655051eb5eacad3fe323c86b0ba8212fe092c27fc883621e6ac2a27662edfc3528
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
"@educational-technology-collective/etc_jupyterlab_telemetry_library@workspace:.":
version: 0.0.0-use.local
resolution: "@educational-technology-collective/etc_jupyterlab_telemetry_library@workspace:."
dependencies:
"@jupyterlab/application": ^4.0.2
"@jupyterlab/builder": ^4.0.0
"@jupyterlab/coreutils": ^6.0.2
"@jupyterlab/docregistry": ^4.0.2
"@jupyterlab/nbformat": ^4.0.2
"@jupyterlab/notebook": ^4.0.2
"@jupyterlab/observables": ^5.0.2
"@jupyterlab/outputarea": ^4.0.2
"@jupyterlab/services": ^7.0.2
"@jupyterlab/settingregistry": ^4.0.2
"@lumino/signaling": ^2.0.0
"@types/json-schema": ^7.0.11
"@types/react": ^18.0.26
"@typescript-eslint/eslint-plugin": ^5.55.0
"@typescript-eslint/parser": ^5.55.0
css-loader: ^6.7.1
eslint: ^8.36.0
eslint-config-prettier: ^8.8.0
eslint-plugin-prettier: ^5.0.0
mkdirp: ^1.0.3
npm-run-all: ^4.1.5
prettier: ^3.0.0
rimraf: ^4.4.1
source-map-loader: ^1.0.2
style-loader: ^3.3.1
stylelint: ^15.10.1
stylelint-config-recommended: ^13.0.0
stylelint-config-standard: ^34.0.0
stylelint-prettier: ^4.0.0
typescript: ~5.0.2
yjs: ^13.5.40
languageName: unknown
linkType: soft
"@eslint-community/eslint-utils@npm:^4.2.0":
version: 4.4.0
resolution: "@eslint-community/eslint-utils@npm:4.4.0"
dependencies:
eslint-visitor-keys: ^3.3.0
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
checksum: cdfe3ae42b4f572cbfb46d20edafe6f36fc5fb52bf2d90875c58aefe226892b9677fef60820e2832caf864a326fe4fc225714c46e8389ccca04d5f9288aabd22
languageName: node
linkType: hard
"@eslint-community/regexpp@npm:^4.4.0":
version: 4.5.1
resolution: "@eslint-community/regexpp@npm:4.5.1"
checksum: 6d901166d64998d591fab4db1c2f872981ccd5f6fe066a1ad0a93d4e11855ecae6bfb76660869a469563e8882d4307228cebd41142adb409d182f2966771e57e
languageName: node
linkType: hard
"@eslint/eslintrc@npm:^2.1.0":
version: 2.1.0
resolution: "@eslint/eslintrc@npm:2.1.0"
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: d5ed0adbe23f6571d8c9bb0ca6edf7618dc6aed4046aa56df7139f65ae7b578874e0d9c796df784c25bda648ceb754b6320277d828c8b004876d7443b8dc018c
languageName: node
linkType: hard
"@eslint/js@npm:8.44.0":
version: 8.44.0
resolution: "@eslint/js@npm:8.44.0"
checksum: fc539583226a28f5677356e9f00d2789c34253f076643d2e32888250e509a4e13aafe0880cb2425139051de0f3a48d25bfc5afa96b7304f203b706c17340e3cf
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.11.10":
version: 0.11.10
resolution: "@humanwhocodes/config-array@npm:0.11.10"
dependencies:
"@humanwhocodes/object-schema": ^1.2.1
debug: ^4.1.1
minimatch: ^3.0.5
checksum: 1b1302e2403d0e35bc43e66d67a2b36b0ad1119efc704b5faff68c41f791a052355b010fb2d27ef022670f550de24cd6d08d5ecf0821c16326b7dcd0ee5d5d8a
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:^1.2.1":
version: 1.2.1
resolution: "@humanwhocodes/object-schema@npm:1.2.1"
checksum: a824a1ec31591231e4bad5787641f59e9633827d0a2eaae131a288d33c9ef0290bd16fda8da6f7c0fcb014147865d12118df10db57f27f41e20da92369fcb3f1
languageName: node
linkType: hard
"@jridgewell/gen-mapping@npm:^0.3.0":
version: 0.3.2
resolution: "@jridgewell/gen-mapping@npm:0.3.2"
dependencies:
"@jridgewell/set-array": ^1.0.1
"@jridgewell/sourcemap-codec": ^1.4.10
"@jridgewell/trace-mapping": ^0.3.9
checksum: 1832707a1c476afebe4d0fbbd4b9434fdb51a4c3e009ab1e9938648e21b7a97049fa6009393bdf05cab7504108413441df26d8a3c12193996e65493a4efb6882
languageName: node
linkType: hard
"@jridgewell/resolve-uri@npm:3.1.0":
version: 3.1.0
resolution: "@jridgewell/resolve-uri@npm:3.1.0"
checksum: b5ceaaf9a110fcb2780d1d8f8d4a0bfd216702f31c988d8042e5f8fbe353c55d9b0f55a1733afdc64806f8e79c485d2464680ac48a0d9fcadb9548ee6b81d267
languageName: node
linkType: hard
"@jridgewell/resolve-uri@npm:^3.0.3":
version: 3.0.8
resolution: "@jridgewell/resolve-uri@npm:3.0.8"
checksum: 28d739f49b4a52a95843b15669dcb2daaab48f0eaef8f457b9aacd0bdebeb60468d0684f73244f613b786e9d871c25abdbe6f55991bba36814cdadc399dbb3a8
languageName: node
linkType: hard
"@jridgewell/set-array@npm:^1.0.1":
version: 1.1.2
resolution: "@jridgewell/set-array@npm:1.1.2"
checksum: 69a84d5980385f396ff60a175f7177af0b8da4ddb81824cb7016a9ef914eee9806c72b6b65942003c63f7983d4f39a5c6c27185bbca88eb4690b62075602e28e
languageName: node
linkType: hard
"@jridgewell/source-map@npm:^0.3.3":
version: 0.3.5
resolution: "@jridgewell/source-map@npm:0.3.5"
dependencies:
"@jridgewell/gen-mapping": ^0.3.0
"@jridgewell/trace-mapping": ^0.3.9
checksum: 1ad4dec0bdafbade57920a50acec6634f88a0eb735851e0dda906fa9894e7f0549c492678aad1a10f8e144bfe87f238307bf2a914a1bc85b7781d345417e9f6f
languageName: node
linkType: hard
"@jridgewell/sourcemap-codec@npm:1.4.14, @jridgewell/sourcemap-codec@npm:^1.4.10":
version: 1.4.14
resolution: "@jridgewell/sourcemap-codec@npm:1.4.14"
checksum: 61100637b6d173d3ba786a5dff019e1a74b1f394f323c1fee337ff390239f053b87266c7a948777f4b1ee68c01a8ad0ab61e5ff4abb5a012a0b091bec391ab97
languageName: node
linkType: hard
"@jridgewell/trace-mapping@npm:^0.3.17":
version: 0.3.18
resolution: "@jridgewell/trace-mapping@npm:0.3.18"
dependencies:
"@jridgewell/resolve-uri": 3.1.0
"@jridgewell/sourcemap-codec": 1.4.14
checksum: 0572669f855260808c16fe8f78f5f1b4356463b11d3f2c7c0b5580c8ba1cbf4ae53efe9f627595830856e57dbac2325ac17eb0c3dd0ec42102e6f227cc289c02
languageName: node
linkType: hard
"@jridgewell/trace-mapping@npm:^0.3.9":
version: 0.3.14
resolution: "@jridgewell/trace-mapping@npm:0.3.14"
dependencies:
"@jridgewell/resolve-uri": ^3.0.3
"@jridgewell/sourcemap-codec": ^1.4.10
checksum: b9537b9630ffb631aef9651a085fe361881cde1772cd482c257fe3c78c8fd5388d681f504a9c9fe1081b1c05e8f75edf55ee10fdb58d92bbaa8dbf6a7bd6b18c
languageName: node
linkType: hard
"@jupyter/ydoc@npm:^1.0.2":
version: 1.0.2
resolution: "@jupyter/ydoc@npm:1.0.2"
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: 739f9630940466b3cfcd7b742dd06479f81772ca13f863d057af0bbb5e318829506969066ab72977e7c721644982b5c8f88cf44e1ae81955ed1c27e87632d1f2
languageName: node
linkType: hard
"@jupyterlab/application@npm:^4.0.2":
version: 4.0.3
resolution: "@jupyterlab/application@npm:4.0.3"
dependencies:
"@fortawesome/fontawesome-free": ^5.12.0
"@jupyterlab/apputils": ^4.1.3
"@jupyterlab/coreutils": ^6.0.3
"@jupyterlab/docregistry": ^4.0.3
"@jupyterlab/rendermime": ^4.0.3
"@jupyterlab/rendermime-interfaces": ^3.8.3
"@jupyterlab/services": ^7.0.3
"@jupyterlab/statedb": ^4.0.3
"@jupyterlab/translation": ^4.0.3
"@jupyterlab/ui-components": ^4.0.3
"@lumino/algorithm": ^2.0.0
"@lumino/application": ^2.1.1
"@lumino/commands": ^2.1.1
"@lumino/coreutils": ^2.1.1
"@lumino/disposable": ^2.1.1
"@lumino/messaging": ^2.0.0
"@lumino/polling": ^2.1.1
"@lumino/properties": ^2.0.0
"@lumino/signaling": ^2.1.1
"@lumino/widgets": ^2.1.1
checksum: 25443512d8df22bc87899ed944c9d7ea6c233501173ddd6316d9f0fda0faa523b38b9973f98aeb519a138649839d1d61e19d54f28b229e20485f90d11495eaae
languageName: node
linkType: hard
"@jupyterlab/apputils@npm:^4.1.3":
version: 4.1.3
resolution: "@jupyterlab/apputils@npm:4.1.3"
dependencies:
"@jupyterlab/coreutils": ^6.0.3
"@jupyterlab/observables": ^5.0.3
"@jupyterlab/rendermime-interfaces": ^3.8.3
"@jupyterlab/services": ^7.0.3
"@jupyterlab/settingregistry": ^4.0.3
"@jupyterlab/statedb": ^4.0.3
"@jupyterlab/statusbar": ^4.0.3
"@jupyterlab/translation": ^4.0.3
"@jupyterlab/ui-components": ^4.0.3
"@lumino/algorithm": ^2.0.0
"@lumino/commands": ^2.1.1
"@lumino/coreutils": ^2.1.1
"@lumino/disposable": ^2.1.1
"@lumino/domutils": ^2.0.0
"@lumino/messaging": ^2.0.0
"@lumino/signaling": ^2.1.1
"@lumino/virtualdom": ^2.0.0
"@lumino/widgets": ^2.1.1
"@types/react": ^18.0.26
react: ^18.2.0
sanitize-html: ~2.7.3
checksum: c67b42e665edc71faf2e8c3eee2a90b6b80d6c1f06100802abec0ccb8ca8ba141b5705e5f186e73f03467ad1aeede71e9c9c77dbff8f316c7d1cd5f8ba39672e
languageName: node
linkType: hard
"@jupyterlab/attachments@npm:^4.0.3":
version: 4.0.3
resolution: "@jupyterlab/attachments@npm:4.0.3"
dependencies:
"@jupyterlab/nbformat": ^4.0.3
"@jupyterlab/observables": ^5.0.3
"@jupyterlab/rendermime": ^4.0.3
"@jupyterlab/rendermime-interfaces": ^3.8.3
"@lumino/disposable": ^2.1.1
"@lumino/signaling": ^2.1.1
checksum: 389b73436a258829ec559d8112f7ce50afa74041c67d30613a9ccabb6fb2af1bf0cf12f840780c31dff1627aae788bd23be06c77e6c63c0d641537989615169d
languageName: node
linkType: hard
"@jupyterlab/builder@npm:^4.0.0":
version: 4.0.3
resolution: "@jupyterlab/builder@npm:4.0.3"
dependencies:
"@lumino/algorithm": ^2.0.0
"@lumino/application": ^2.1.1
"@lumino/commands": ^2.1.1
"@lumino/coreutils": ^2.1.1
"@lumino/disposable": ^2.1.1
"@lumino/domutils": ^2.0.0
"@lumino/dragdrop": ^2.1.1
"@lumino/messaging": ^2.0.0
"@lumino/properties": ^2.0.0
"@lumino/signaling": ^2.1.1
"@lumino/virtualdom": ^2.0.0
"@lumino/widgets": ^2.1.1
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: 7d6402f859bc43cf7baa90893e57bd8d421716256c51fe72b1f80f4b471446e918d77912babe9bfac87a4edcc2ae3d6434334688f13414d293ff340266607b46
languageName: node
linkType: hard
"@jupyterlab/cells@npm:^4.0.3":
version: 4.0.3
resolution: "@jupyterlab/cells@npm:4.0.3"
dependencies:
"@codemirror/state": ^6.2.0
"@codemirror/view": ^6.9.6
"@jupyter/ydoc": ^1.0.2
"@jupyterlab/apputils": ^4.1.3
"@jupyterlab/attachments": ^4.0.3
"@jupyterlab/codeeditor": ^4.0.3
"@jupyterlab/codemirror": ^4.0.3
"@jupyterlab/coreutils": ^6.0.3
"@jupyterlab/documentsearch": ^4.0.3
"@jupyterlab/filebrowser": ^4.0.3
"@jupyterlab/nbformat": ^4.0.3
"@jupyterlab/observables": ^5.0.3
"@jupyterlab/outputarea": ^4.0.3
"@jupyterlab/rendermime": ^4.0.3
"@jupyterlab/services": ^7.0.3
"@jupyterlab/toc": ^6.0.3
"@jupyterlab/translation": ^4.0.3
"@jupyterlab/ui-components": ^4.0.3
"@lumino/algorithm": ^2.0.0
"@lumino/coreutils": ^2.1.1
"@lumino/domutils": ^2.0.0
"@lumino/dragdrop": ^2.1.1
"@lumino/messaging": ^2.0.0
"@lumino/polling": ^2.1.1
"@lumino/signaling": ^2.1.1
"@lumino/virtualdom": ^2.0.0
"@lumino/widgets": ^2.1.1
react: ^18.2.0
checksum: 48b835ba839f3cf565de0b7181e2404ddf928fc20ec966039fa7680fe6b9d72a66a612da31a62f7821312f11ac571790293b10488e4946e69448ac1be32c3433
languageName: node
linkType: hard
"@jupyterlab/codeeditor@npm:^4.0.3":
version: 4.0.3
resolution: "@jupyterlab/codeeditor@npm:4.0.3"
dependencies:
"@codemirror/state": ^6.2.0
"@jupyter/ydoc": ^1.0.2
"@jupyterlab/coreutils": ^6.0.3
"@jupyterlab/nbformat": ^4.0.3
"@jupyterlab/observables": ^5.0.3
"@jupyterlab/statusbar": ^4.0.3
"@jupyterlab/translation": ^4.0.3
"@jupyterlab/ui-components": ^4.0.3
"@lumino/coreutils": ^2.1.1
"@lumino/disposable": ^2.1.1
"@lumino/dragdrop": ^2.1.1
"@lumino/messaging": ^2.0.0
"@lumino/signaling": ^2.1.1
"@lumino/widgets": ^2.1.1
react: ^18.2.0
checksum: 9e2da69f4bc579ff3d66a863f805b0a2edf1de8590139874767d349aff3e29e50a490fba92242a9c593f33144b6349c1d5a03eee4894ba7ed448593b12bb90eb
languageName: node
linkType: hard
"@jupyterlab/codemirror@npm:^4.0.3":
version: 4.0.3
resolution: "@jupyterlab/codemirror@npm:4.0.3"
dependencies:
"@codemirror/autocomplete": ^6.5.1
"@codemirror/commands": ^6.2.3
"@codemirror/lang-cpp": ^6.0.2
"@codemirror/lang-css": ^6.1.1
"@codemirror/lang-html": ^6.4.3
"@codemirror/lang-java": ^6.0.1
"@codemirror/lang-javascript": ^6.1.7
"@codemirror/lang-json": ^6.0.1
"@codemirror/lang-markdown": ^6.1.1
"@codemirror/lang-php": ^6.0.1
"@codemirror/lang-python": ^6.1.3
"@codemirror/lang-rust": ^6.0.1
"@codemirror/lang-sql": ^6.4.1
"@codemirror/lang-wast": ^6.0.1
"@codemirror/lang-xml": ^6.0.2
"@codemirror/language": ^6.6.0
"@codemirror/legacy-modes": ^6.3.2
"@codemirror/search": ^6.3.0
"@codemirror/state": ^6.2.0
"@codemirror/view": ^6.9.6
"@jupyter/ydoc": ^1.0.2
"@jupyterlab/codeeditor": ^4.0.3
"@jupyterlab/coreutils": ^6.0.3
"@jupyterlab/documentsearch": ^4.0.3
"@jupyterlab/nbformat": ^4.0.3
"@jupyterlab/translation": ^4.0.3
"@lezer/common": ^1.0.2
"@lezer/generator": ^1.2.2
"@lezer/highlight": ^1.1.4
"@lezer/markdown": ^1.0.2
"@lumino/coreutils": ^2.1.1
"@lumino/disposable": ^2.1.1
"@lumino/signaling": ^2.1.1
yjs: ^13.5.40
checksum: 6c68d49f515a32df8a13a258d30dca01dfd7a77086d0df729d825bac618c4805bb210f2b9b672cde027c20543dc7384c514c12c4a5aedc66dd8b56f638b51569
languageName: node
linkType: hard
"@jupyterlab/coreutils@npm:^6.0.2, @jupyterlab/coreutils@npm:^6.0.3":
version: 6.0.3
resolution: "@jupyterlab/coreutils@npm:6.0.3"
dependencies:
"@lumino/coreutils": ^2.1.1
"@lumino/disposable": ^2.1.1
"@lumino/signaling": ^2.1.1
minimist: ~1.2.0
path-browserify: ^1.0.0
url-parse: ~1.5.4
checksum: c151b724f283477a92676520fd8009765d772c0bd2716d8648d0c79a56c402b6832609c870dd8ba683218d25a8c05ef769801e4699cedb989caadd99dff1ffe8
languageName: node
linkType: hard
"@jupyterlab/docmanager@npm:^4.0.3":
version: 4.0.3
resolution: "@jupyterlab/docmanager@npm:4.0.3"
dependencies:
"@jupyterlab/apputils": ^4.1.3
"@jupyterlab/coreutils": ^6.0.3
"@jupyterlab/docregistry": ^4.0.3
"@jupyterlab/services": ^7.0.3
"@jupyterlab/statusbar": ^4.0.3
"@jupyterlab/translation": ^4.0.3
"@jupyterlab/ui-components": ^4.0.3
"@lumino/algorithm": ^2.0.0
"@lumino/coreutils": ^2.1.1
"@lumino/disposable": ^2.1.1
"@lumino/messaging": ^2.0.0
"@lumino/properties": ^2.0.0
"@lumino/signaling": ^2.1.1
"@lumino/widgets": ^2.1.1
react: ^18.2.0
checksum: 2ce21005c918275e5bbd63a54d6cb89a4b2bbf6d9aa8ec0a3b172c48cce98a31d83bbd10c8a2211394ec41c60b782ab73b7dc3481de23bfc89be631cfa43cb5e
languageName: node
linkType: hard
"@jupyterlab/docregistry@npm:^4.0.2, @jupyterlab/docregistry@npm:^4.0.3":
version: 4.0.3
resolution: "@jupyterlab/docregistry@npm:4.0.3"
dependencies:
"@jupyter/ydoc": ^1.0.2
"@jupyterlab/apputils": ^4.1.3
"@jupyterlab/codeeditor": ^4.0.3
"@jupyterlab/coreutils": ^6.0.3
"@jupyterlab/observables": ^5.0.3
"@jupyterlab/rendermime": ^4.0.3
"@jupyterlab/rendermime-interfaces": ^3.8.3
"@jupyterlab/services": ^7.0.3
"@jupyterlab/translation": ^4.0.3
"@jupyterlab/ui-components": ^4.0.3
"@lumino/algorithm": ^2.0.0
"@lumino/coreutils": ^2.1.1
"@lumino/disposable": ^2.1.1
"@lumino/messaging": ^2.0.0
"@lumino/properties": ^2.0.0
"@lumino/signaling": ^2.1.1
"@lumino/widgets": ^2.1.1
checksum: 3b3256c4b4755c58b3f290403ef49e3ebc6bebb8c17f882a2cc58dfd40a596bc427ba41e60a610ce6c90fc5b4cbd552502ce56a6654b85fb35283bdaed58b861
languageName: node
linkType: hard
"@jupyterlab/documentsearch@npm:^4.0.3":
version: 4.0.3
resolution: "@jupyterlab/documentsearch@npm:4.0.3"
dependencies:
"@jupyterlab/apputils": ^4.1.3
"@jupyterlab/translation": ^4.0.3
"@jupyterlab/ui-components": ^4.0.3
"@lumino/coreutils": ^2.1.1
"@lumino/disposable": ^2.1.1
"@lumino/messaging": ^2.0.0
"@lumino/polling": ^2.1.1
"@lumino/signaling": ^2.1.1
"@lumino/widgets": ^2.1.1
react: ^18.2.0
checksum: fcf8c50a60e2b265901b27749f63b52f17467950da863f8b766d30038a63aa896de4352ea5eb1221f82ec0abf11be424c13f17d0b912e758e456e596e2927b1f
languageName: node
linkType: hard
"@jupyterlab/filebrowser@npm:^4.0.3":
version: 4.0.3
resolution: "@jupyterlab/filebrowser@npm:4.0.3"
dependencies:
"@jupyterlab/apputils": ^4.1.3
"@jupyterlab/coreutils": ^6.0.3
"@jupyterlab/docmanager": ^4.0.3
"@jupyterlab/docregistry": ^4.0.3
"@jupyterlab/services": ^7.0.3
"@jupyterlab/statedb": ^4.0.3
"@jupyterlab/statusbar": ^4.0.3
"@jupyterlab/translation": ^4.0.3
"@jupyterlab/ui-components": ^4.0.3
"@lumino/algorithm": ^2.0.0
"@lumino/coreutils": ^2.1.1
"@lumino/disposable": ^2.1.1
"@lumino/domutils": ^2.0.0
"@lumino/dragdrop": ^2.1.1
"@lumino/messaging": ^2.0.0
"@lumino/polling": ^2.1.1
"@lumino/signaling": ^2.1.1
"@lumino/virtualdom": ^2.0.0
"@lumino/widgets": ^2.1.1
react: ^18.2.0
checksum: 30c2447cfe76fb2d1c3d1c88136b842f8d0f46451d4082ecc1a26496e35f5309a956468af18b2b0ac42a72c9bd14a1ddd050d434c6d9740b468956a6bb989086
languageName: node
linkType: hard
"@jupyterlab/lsp@npm:^4.0.3":
version: 4.0.3
resolution: "@jupyterlab/lsp@npm:4.0.3"
dependencies:
"@jupyterlab/apputils": ^4.1.3
"@jupyterlab/codeeditor": ^4.0.3
"@jupyterlab/coreutils": ^6.0.3
"@jupyterlab/docregistry": ^4.0.3
"@jupyterlab/services": ^7.0.3
"@jupyterlab/translation": ^4.0.3
"@lumino/coreutils": ^2.1.1
"@lumino/disposable": ^2.1.1
"@lumino/signaling": ^2.1.1
lodash.mergewith: ^4.6.1
vscode-jsonrpc: ^6.0.0
vscode-languageserver-protocol: ^3.17.0
vscode-ws-jsonrpc: ~1.0.2
checksum: f80084ef6a5337d768281d6d9029e303c0867ced6449301708be76d32a411de7e4d41ca290b92596ef206456533e8132d1221cd1d2feee7ad341b2b998ddc766
languageName: node
linkType: hard
"@jupyterlab/nbformat@npm:^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0, @jupyterlab/nbformat@npm:^4.0.2, @jupyterlab/nbformat@npm:^4.0.3":
version: 4.0.3
resolution: "@jupyterlab/nbformat@npm:4.0.3"
dependencies:
"@lumino/coreutils": ^2.1.1
checksum: e7c3fc81fdd934d66b4b92aa44b82e40dff73248b54772d0a4501a7dd5e1ea76754931548f8e591e7f03bfad2f4409a34838424bd34f9abb0be11d213f2e129a
languageName: node
linkType: hard
"@jupyterlab/notebook@npm:^4.0.2":
version: 4.0.3
resolution: "@jupyterlab/notebook@npm:4.0.3"
dependencies:
"@jupyter/ydoc": ^1.0.2
"@jupyterlab/apputils": ^4.1.3
"@jupyterlab/cells": ^4.0.3
"@jupyterlab/codeeditor": ^4.0.3
"@jupyterlab/codemirror": ^4.0.3
"@jupyterlab/coreutils": ^6.0.3
"@jupyterlab/docregistry": ^4.0.3
"@jupyterlab/documentsearch": ^4.0.3
"@jupyterlab/lsp": ^4.0.3
"@jupyterlab/nbformat": ^4.0.3
"@jupyterlab/observables": ^5.0.3
"@jupyterlab/rendermime": ^4.0.3
"@jupyterlab/services": ^7.0.3
"@jupyterlab/settingregistry": ^4.0.3
"@jupyterlab/statusbar": ^4.0.3
"@jupyterlab/toc": ^6.0.3
"@jupyterlab/translation": ^4.0.3
"@jupyterlab/ui-components": ^4.0.3
"@lumino/algorithm": ^2.0.0
"@lumino/coreutils": ^2.1.1
"@lumino/domutils": ^2.0.0
"@lumino/dragdrop": ^2.1.1
"@lumino/messaging": ^2.0.0
"@lumino/properties": ^2.0.0
"@lumino/signaling": ^2.1.1
"@lumino/virtualdom": ^2.0.0
"@lumino/widgets": ^2.1.1
react: ^18.2.0
checksum: 1388bea973c093b82ac110bf115f342fb5e2cae9c855f0704f08882df8a3714566fccefbb3d85903fdb30170bae4fdfd29b3785473850bb3e91e8cdfc3658265
languageName: node
linkType: hard
"@jupyterlab/observables@npm:^5.0.2, @jupyterlab/observables@npm:^5.0.3":
version: 5.0.3
resolution: "@jupyterlab/observables@npm:5.0.3"
dependencies:
"@lumino/algorithm": ^2.0.0
"@lumino/coreutils": ^2.1.1
"@lumino/disposable": ^2.1.1
"@lumino/messaging": ^2.0.0
"@lumino/signaling": ^2.1.1
checksum: fe1283852967092dfdf95407135e723c107ba1e4ce502f6b0c10bed575f8e11d08190a6f078f5e2b937e5f4f1996351df8ee9b2bd523fb106b728dd6b3dc15ac
languageName: node
linkType: hard
"@jupyterlab/outputarea@npm:^4.0.2, @jupyterlab/outputarea@npm:^4.0.3":
version: 4.0.3
resolution: "@jupyterlab/outputarea@npm:4.0.3"
dependencies:
"@jupyterlab/apputils": ^4.1.3
"@jupyterlab/nbformat": ^4.0.3
"@jupyterlab/observables": ^5.0.3
"@jupyterlab/rendermime": ^4.0.3
"@jupyterlab/rendermime-interfaces": ^3.8.3
"@jupyterlab/services": ^7.0.3
"@jupyterlab/translation": ^4.0.3
"@lumino/algorithm": ^2.0.0
"@lumino/coreutils": ^2.1.1
"@lumino/disposable": ^2.1.1
"@lumino/messaging": ^2.0.0
"@lumino/properties": ^2.0.0
"@lumino/signaling": ^2.1.1
"@lumino/widgets": ^2.1.1
checksum: bd4a60ea43cd3117c8cc6b6aee094f0a4e37c3635051fbf13857669547847ce52f6e186cb2c329893e333e6113998899a9d5fa90727926a73223d5082c936471
languageName: node
linkType: hard
"@jupyterlab/rendermime-interfaces@npm:^3.8.3":
version: 3.8.3
resolution: "@jupyterlab/rendermime-interfaces@npm:3.8.3"
dependencies:
"@lumino/coreutils": ^1.11.0 || ^2.1.1
"@lumino/widgets": ^1.37.2 || ^2.1.1
checksum: aeb055196099e29eff78e98e904e3dac10255ac4693ed0d99022d08fe3de4dd792e66c06f6e11f110be2276e9ba36ae15b8a08e6fb1b4c25e774d5525199b5d3
languageName: node
linkType: hard
"@jupyterlab/rendermime@npm:^4.0.3":
version: 4.0.3
resolution: "@jupyterlab/rendermime@npm:4.0.3"
dependencies:
"@jupyterlab/apputils": ^4.1.3
"@jupyterlab/coreutils": ^6.0.3
"@jupyterlab/nbformat": ^4.0.3
"@jupyterlab/observables": ^5.0.3
"@jupyterlab/rendermime-interfaces": ^3.8.3
"@jupyterlab/services": ^7.0.3
"@jupyterlab/translation": ^4.0.3
"@lumino/coreutils": ^2.1.1
"@lumino/messaging": ^2.0.0
"@lumino/signaling": ^2.1.1
"@lumino/widgets": ^2.1.1
lodash.escape: ^4.0.1
checksum: 8e5d390ee84eb0f2017b80c2ccf4dc318ef53c3ebb52e84056d76b2bccbcb755190b7712e99936ad0610f03fe4b0a9a0f2f5ed854e21856c0cc39371ce1fad01
languageName: node
linkType: hard
"@jupyterlab/services@npm:^7.0.2, @jupyterlab/services@npm:^7.0.3":
version: 7.0.3
resolution: "@jupyterlab/services@npm:7.0.3"
dependencies:
"@jupyter/ydoc": ^1.0.2
"@jupyterlab/coreutils": ^6.0.3
"@jupyterlab/nbformat": ^4.0.3
"@jupyterlab/settingregistry": ^4.0.3
"@jupyterlab/statedb": ^4.0.3
"@lumino/coreutils": ^2.1.1
"@lumino/disposable": ^2.1.1
"@lumino/polling": ^2.1.1
"@lumino/properties": ^2.0.0
"@lumino/signaling": ^2.1.1
ws: ^8.11.0
checksum: 94277bdf4c6645145c09dcf41fbcf49528cb4c0e283fc7b596184615d7a0127b9129097f877455af85bf26e2110aee61f664e3cce9497f573c00a5dd90e5d0fd
languageName: node