forked from jupyter/nbgrader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
8303 lines (7509 loc) · 284 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.10
resolution: "@babel/code-frame@npm:7.22.10"
dependencies:
"@babel/highlight": ^7.22.10
chalk: ^2.4.2
checksum: 89a06534ad19759da6203a71bad120b1d7b2ddc016c8e07d4c56b35dea25e7396c6da60a754e8532a86733092b131ae7f661dbe6ba5d165ea777555daa2ed3c9
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.10":
version: 7.22.10
resolution: "@babel/highlight@npm:7.22.10"
dependencies:
"@babel/helper-validator-identifier": ^7.22.5
chalk: ^2.4.2
js-tokens: ^4.0.0
checksum: f714a1e1a72dd9d72f6383f4f30fd342e21a8df32d984a4ea8f5eab691bb6ba6db2f8823d4b4cf135d98869e7a98925b81306aa32ee3c429f8cfa52c75889e1b
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.9.0
resolution: "@codemirror/autocomplete@npm:6.9.0"
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: a5f661944c75f40b02c90a193c9a459c0fd7e335c0ac5973420c19157dfb46010f573c2b70731591fe477e7a2ad10121ff3ae394a72d450946d7b886c28b0368
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.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, @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.4
resolution: "@codemirror/lang-sql@npm:6.5.4"
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: face21b0231ac5a7981949b5bf6a99ed092d0d6f7eb83f35dcd31d56ecf07dafa19d21623e0bad36cec7a12e3149df7b45c3588aeee31eae41e9b05942c4fdd7
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.9.0
resolution: "@codemirror/language@npm:6.9.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: 9a897fb0f569159eeafb7dce83061b425af7244bbeae2649e0e677488548b2a02eaf0c13c0c5b4d59da55e8866e6f4dc7abe3dfaa09c13749a2fa2c0dbc0c565
languageName: node
linkType: hard
"@codemirror/legacy-modes@npm:^6.3.2":
version: 6.3.3
resolution: "@codemirror/legacy-modes@npm:6.3.3"
dependencies:
"@codemirror/language": ^6.0.0
checksum: 3cd32b0f011b0a193e0948e5901b625f38aa6d9a8b24344531d6e142eb6fbb3e6cb5969429102044f3d04fbe53c4deaebd9f659c05067a0b18d17766290c9e05
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.1
resolution: "@codemirror/search@npm:6.5.1"
dependencies:
"@codemirror/state": ^6.0.0
"@codemirror/view": ^6.0.0
crelt: ^1.0.5
checksum: 672515c20238f69ff5cd8b662128699178ba7e020fc44a8ed2b0dcc25d8d5f5579418865616dd8809317a408fb08b6001a442f0fb706a772250b4284d7437045
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.16.0
resolution: "@codemirror/view@npm:6.16.0"
dependencies:
"@codemirror/state": ^6.1.4
style-mod: ^4.0.0
w3c-keyname: ^2.2.4
checksum: 54d412b5159716c8a1a9c46fa04ff083e68a663cb887e6e2a4ca86fe9c3930d5255200fe84c65620e0a442f62dc2c13df277bcd1d4eef2e11e3c4e124fcf9d38
languageName: node
linkType: hard
"@csstools/selector-specificity@npm:^2.0.2":
version: 2.2.0
resolution: "@csstools/selector-specificity@npm:2.2.0"
peerDependencies:
postcss-selector-parser: ^6.0.10
checksum: 97c89f23b3b527d7bd51ed299969ed2b9fbb219a367948b44aefec228b8eda6ae0ad74fe8a82f9aac8ff32cfd00bb6d0c98d1daeab2e8fc6d5c4af25e5be5673
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":
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, @eslint-community/regexpp@npm:^4.6.1":
version: 4.6.2
resolution: "@eslint-community/regexpp@npm:4.6.2"
checksum: a3c341377b46b54fa228f455771b901d1a2717f95d47dcdf40199df30abc000ba020f747f114f08560d119e979d882a94cf46cfc51744544d54b00319c0f2724
languageName: node
linkType: hard
"@eslint/eslintrc@npm:^2.1.2":
version: 2.1.2
resolution: "@eslint/eslintrc@npm:2.1.2"
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: bc742a1e3b361f06fedb4afb6bf32cbd27171292ef7924f61c62f2aed73048367bcc7ac68f98c06d4245cd3fabc43270f844e3c1699936d4734b3ac5398814a7
languageName: node
linkType: hard
"@eslint/js@npm:^8.47.0":
version: 8.47.0
resolution: "@eslint/js@npm:8.47.0"
checksum: 0ef57fe27b6d4c305b33f3b2d2fee1ab397a619006f1d6f4ce5ee4746b8f03d11a4e098805a7d78601ca534cf72917d37f0ac19896c992a32e26299ecb9f9de1
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
"@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
"@jridgewell/gen-mapping@npm:^0.3.0":
version: 0.3.3
resolution: "@jridgewell/gen-mapping@npm:0.3.3"
dependencies:
"@jridgewell/set-array": ^1.0.1
"@jridgewell/sourcemap-codec": ^1.4.10
"@jridgewell/trace-mapping": ^0.3.9
checksum: 4a74944bd31f22354fc01c3da32e83c19e519e3bbadafa114f6da4522ea77dd0c2842607e923a591d60a76699d819a2fbb6f3552e277efdb9b58b081390b60ab
languageName: node
linkType: hard
"@jridgewell/resolve-uri@npm:^3.1.0":
version: 3.1.1
resolution: "@jridgewell/resolve-uri@npm:3.1.1"
checksum: f5b441fe7900eab4f9155b3b93f9800a916257f4e8563afbcd3b5a5337b55e52bd8ae6735453b1b745457d9f6cdb16d74cd6220bbdd98cf153239e13f6cbb653
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.10, @jridgewell/sourcemap-codec@npm:^1.4.14":
version: 1.4.15
resolution: "@jridgewell/sourcemap-codec@npm:1.4.15"
checksum: b881c7e503db3fc7f3c1f35a1dd2655a188cc51a3612d76efc8a6eb74728bef5606e6758ee77423e564092b4a518aba569bbb21c9bac5ab7a35b0c6ae7e344c8
languageName: node
linkType: hard
"@jridgewell/trace-mapping@npm:^0.3.17, @jridgewell/trace-mapping@npm:^0.3.9":
version: 0.3.19
resolution: "@jridgewell/trace-mapping@npm:0.3.19"
dependencies:
"@jridgewell/resolve-uri": ^3.1.0
"@jridgewell/sourcemap-codec": ^1.4.14
checksum: 956a6f0f6fec060fb48c6bf1f5ec2064e13cd38c8be3873877d4b92b4a27ba58289a34071752671262a3e3c202abcc3fa2aac64d8447b4b0fa1ba3c9047f1c20
languageName: node
linkType: hard
"@jupyter-notebook/application@npm:^7.1.0":
version: 7.1.0
resolution: "@jupyter-notebook/application@npm:7.1.0"
dependencies:
"@jupyterlab/application": ~4.1.1
"@jupyterlab/coreutils": ~6.1.1
"@jupyterlab/docregistry": ~4.1.1
"@jupyterlab/rendermime-interfaces": ~3.9.1
"@jupyterlab/ui-components": ~4.1.1
"@lumino/algorithm": ^2.0.1
"@lumino/coreutils": ^2.1.2
"@lumino/messaging": ^2.0.1
"@lumino/polling": ^2.1.2
"@lumino/signaling": ^2.1.2
"@lumino/widgets": ^2.3.1
checksum: c3c17a96e3bb86a87f313f3508e32041374cefe16960c1af29f1482b189935aeba8a0300d6301b73cd1c9a139b55433426192e3145070b3b0df715b867b40d77
languageName: node
linkType: hard
"@jupyter-notebook/tree@npm:^7.1.0":
version: 7.1.0
resolution: "@jupyter-notebook/tree@npm:7.1.0"
dependencies:
"@jupyter-notebook/application": ^7.1.0
"@jupyterlab/application": ~4.1.1
"@jupyterlab/apputils": ~4.2.1
"@jupyterlab/coreutils": ~6.1.1
"@jupyterlab/docmanager": ~4.1.1
"@jupyterlab/filebrowser": ~4.1.1
"@jupyterlab/mainmenu": ~4.1.1
"@jupyterlab/services": ~7.1.1
"@jupyterlab/settingregistry": ~4.1.1
"@jupyterlab/statedb": ~4.1.1
"@jupyterlab/translation": ~4.1.1
"@jupyterlab/ui-components": ~4.1.1
"@lumino/algorithm": ^2.0.1
"@lumino/commands": ^2.2.0
"@lumino/coreutils": ^2.1.2
"@lumino/widgets": ^2.3.1
checksum: c88cac415a743b7d897ebba9d2abeea3320a31753b2c0938783c1fa4912ffa9d0b84e362eaf0e543cb98acb4474bcd75c32adb349059dcaf5988a81f496cd1fb
languageName: node
linkType: hard
"@jupyter/nbgrader@workspace:.":
version: 0.0.0-use.local
resolution: "@jupyter/nbgrader@workspace:."
dependencies:
"@jupyter-notebook/application": ^7.1.0
"@jupyter-notebook/tree": ^7.1.0
"@jupyter/ydoc": ^1.1.1
"@jupyterlab/application": ^4.1.0
"@jupyterlab/apputils": ^4.2.0
"@jupyterlab/builder": ^4.1.0
"@jupyterlab/cells": ^4.1.0
"@jupyterlab/coreutils": ^6.1.0
"@jupyterlab/docregistry": ^4.1.0
"@jupyterlab/galata": ^5.1.0
"@jupyterlab/mainmenu": ^4.1.0
"@jupyterlab/nbformat": ^4.1.0
"@jupyterlab/notebook": ^4.1.0
"@jupyterlab/observables": ^5.1.0
"@jupyterlab/services": ^7.1.0
"@jupyterlab/settingregistry": ^4.1.0
"@lumino/coreutils": ^2.1.2
"@lumino/disposable": ^2.1.2
"@lumino/messaging": ^2.0.1
"@lumino/signaling": ^2.1.2
"@lumino/widgets": ^2.3.1
"@playwright/test": ^1.32.2
"@types/codemirror": ^5.60.5
"@typescript-eslint/eslint-plugin": ^5.0.0
"@typescript-eslint/parser": ^5.0.0
bower: "*"
eslint: ^8.0.0
eslint-config-prettier: ^8.0.0
eslint-plugin-prettier: ^4.0.0
mkdirp: ^1.0.4
npm-run-all: ^4.1.5
prettier: ^2.1.1
react: ^18.2.0
rimraf: ^3.0.2
stylelint: ^14.3.0
stylelint-config-prettier: ^9.0.3
stylelint-config-recommended: ^6.0.0
stylelint-config-standard: ~24.0.0
stylelint-prettier: ^2.0.0
typescript: ~5.0.4
languageName: unknown
linkType: soft
"@jupyter/react-components@npm:^0.15.2":
version: 0.15.2
resolution: "@jupyter/react-components@npm:0.15.2"
dependencies:
"@jupyter/web-components": ^0.15.2
"@microsoft/fast-react-wrapper": ^0.3.22
react: ">=17.0.0 <19.0.0"
checksum: d6d339ff9c2fed1fd5afda612be500d73c4a83eee5470d50e94020dadd1e389a3bf745c7240b0a48edbc6d3fdacec93367b7b5e40588f2df588419caada705be
languageName: node
linkType: hard
"@jupyter/web-components@npm:^0.15.2":
version: 0.15.2
resolution: "@jupyter/web-components@npm:0.15.2"
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: f272ef91de08e28f9414a26dbd2388e1a8985c90f4ab00231978cee49bd5212f812411397a9038d298c8c0c4b41eb28cc86f1127bc7ace309bda8df60c4a87c8
languageName: node
linkType: hard
"@jupyter/ydoc@npm:^1.1.1":
version: 1.1.1
resolution: "@jupyter/ydoc@npm:1.1.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: a239b1dd57cfc9ba36c06ac5032a1b6388849ae01a1d0db0d45094f71fdadf4d473b4bf8becbef0cfcdc85cae505361fbec0822b02da5aa48e06b66f742dd7a0
languageName: node
linkType: hard
"@jupyterlab/application@npm:^4.1.0, @jupyterlab/application@npm:^4.1.2, @jupyterlab/application@npm:~4.1.1":
version: 4.1.2
resolution: "@jupyterlab/application@npm:4.1.2"
dependencies:
"@fortawesome/fontawesome-free": ^5.12.0
"@jupyterlab/apputils": ^4.2.2
"@jupyterlab/coreutils": ^6.1.2
"@jupyterlab/docregistry": ^4.1.2
"@jupyterlab/rendermime": ^4.1.2
"@jupyterlab/rendermime-interfaces": ^3.9.2
"@jupyterlab/services": ^7.1.2
"@jupyterlab/statedb": ^4.1.2
"@jupyterlab/translation": ^4.1.2
"@jupyterlab/ui-components": ^4.1.2
"@lumino/algorithm": ^2.0.1
"@lumino/application": ^2.3.0
"@lumino/commands": ^2.2.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.1
checksum: 10be4cdfd08dfd69786a3cd9753d48246e507e6a1cf15572bc4938be1d53c5c3fe291153ff02f2ffc941f77ab3c648649a6e6e2db6bbbcfcaa1bcc17a525b90b
languageName: node
linkType: hard
"@jupyterlab/apputils@npm:^4.2.0, @jupyterlab/apputils@npm:^4.2.2, @jupyterlab/apputils@npm:~4.2.1":
version: 4.2.2
resolution: "@jupyterlab/apputils@npm:4.2.2"
dependencies:
"@jupyterlab/coreutils": ^6.1.2
"@jupyterlab/observables": ^5.1.2
"@jupyterlab/rendermime-interfaces": ^3.9.2
"@jupyterlab/services": ^7.1.2
"@jupyterlab/settingregistry": ^4.1.2
"@jupyterlab/statedb": ^4.1.2
"@jupyterlab/statusbar": ^4.1.2
"@jupyterlab/translation": ^4.1.2
"@jupyterlab/ui-components": ^4.1.2
"@lumino/algorithm": ^2.0.1
"@lumino/commands": ^2.2.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.1
"@types/react": ^18.0.26
react: ^18.2.0
sanitize-html: ~2.7.3
checksum: 6d0811f30ba353d9ce67d515fdfff802f99a628b7403b4b7aa44291d634bd228c0073ddab5ed6d160eb7bdc214b23e540039c1c5fd1f76ba9635b4ca3cca1d30
languageName: node
linkType: hard
"@jupyterlab/attachments@npm:^4.1.2":
version: 4.1.2
resolution: "@jupyterlab/attachments@npm:4.1.2"
dependencies:
"@jupyterlab/nbformat": ^4.1.2
"@jupyterlab/observables": ^5.1.2
"@jupyterlab/rendermime": ^4.1.2
"@jupyterlab/rendermime-interfaces": ^3.9.2
"@lumino/disposable": ^2.1.2
"@lumino/signaling": ^2.1.2
checksum: eee4cb0f2a1e15807021190a581d175816f1aff170060c39292a6dcd6cf469845f1b619be7d7cee4e5504c852327d5b7ec61a6f63e9a1f19f1b35e570e47f725
languageName: node
linkType: hard
"@jupyterlab/builder@npm:^4.1.0":
version: 4.1.2
resolution: "@jupyterlab/builder@npm:4.1.2"
dependencies:
"@lumino/algorithm": ^2.0.1
"@lumino/application": ^2.3.0
"@lumino/commands": ^2.2.0
"@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/properties": ^2.0.1
"@lumino/signaling": ^2.1.2
"@lumino/virtualdom": ^2.0.1
"@lumino/widgets": ^2.3.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: 732e14d5b9227c34b3c3eff05a72ff930f141540427fc10b975fc8a3e58b716d753dabcf9653af3f6a4e75bfd46c966207bcb1d2fb1bf98b7ca5fa5cc757fb79
languageName: node
linkType: hard
"@jupyterlab/cells@npm:^4.1.0, @jupyterlab/cells@npm:^4.1.2":
version: 4.1.2
resolution: "@jupyterlab/cells@npm:4.1.2"
dependencies:
"@codemirror/state": ^6.2.0
"@codemirror/view": ^6.9.6
"@jupyter/ydoc": ^1.1.1
"@jupyterlab/apputils": ^4.2.2
"@jupyterlab/attachments": ^4.1.2
"@jupyterlab/codeeditor": ^4.1.2
"@jupyterlab/codemirror": ^4.1.2
"@jupyterlab/coreutils": ^6.1.2
"@jupyterlab/documentsearch": ^4.1.2
"@jupyterlab/filebrowser": ^4.1.2
"@jupyterlab/nbformat": ^4.1.2
"@jupyterlab/observables": ^5.1.2
"@jupyterlab/outputarea": ^4.1.2
"@jupyterlab/rendermime": ^4.1.2
"@jupyterlab/services": ^7.1.2
"@jupyterlab/toc": ^6.1.2
"@jupyterlab/translation": ^4.1.2
"@jupyterlab/ui-components": ^4.1.2
"@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.1
react: ^18.2.0
checksum: c506140688b7411e56c7ab6cae2f5422c3eda5a674b93da1b7baa81682c2f7112af611e80d9dd48ee272184446ec8c2b651cf1e5f0b769df1beda5c3cdfadd58
languageName: node
linkType: hard
"@jupyterlab/codeeditor@npm:^4.1.2":
version: 4.1.2
resolution: "@jupyterlab/codeeditor@npm:4.1.2"
dependencies:
"@codemirror/state": ^6.2.0
"@jupyter/ydoc": ^1.1.1
"@jupyterlab/apputils": ^4.2.2
"@jupyterlab/coreutils": ^6.1.2
"@jupyterlab/nbformat": ^4.1.2
"@jupyterlab/observables": ^5.1.2
"@jupyterlab/statusbar": ^4.1.2
"@jupyterlab/translation": ^4.1.2
"@jupyterlab/ui-components": ^4.1.2
"@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.1
react: ^18.2.0
checksum: b09618bc80a6d62c11fe53ccfe51cae1bdeb7298fab00c71a1119efa8102b86b6aa828d75b00ede80821b7073e3d6c3bb48c93805572eef4563308e4d3e7da1e
languageName: node
linkType: hard
"@jupyterlab/codemirror@npm:^4.1.2":
version: 4.1.2
resolution: "@jupyterlab/codemirror@npm:4.1.2"
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.1.1
"@jupyterlab/codeeditor": ^4.1.2
"@jupyterlab/coreutils": ^6.1.2
"@jupyterlab/documentsearch": ^4.1.2
"@jupyterlab/nbformat": ^4.1.2
"@jupyterlab/translation": ^4.1.2
"@lezer/common": ^1.0.2
"@lezer/generator": ^1.2.2
"@lezer/highlight": ^1.1.4
"@lezer/markdown": ^1.0.2
"@lumino/coreutils": ^2.1.2
"@lumino/disposable": ^2.1.2
"@lumino/signaling": ^2.1.2
yjs: ^13.5.40
checksum: 840fea21005890b06220d2f41dd8c2edab3d3615aca13a7daa05b3eefaeeb37199320c1db32dab5e84ee0fbd3fb08c1bac51d300e8c2fd35f0a809753c93ab22
languageName: node
linkType: hard
"@jupyterlab/console@npm:^4.1.2":
version: 4.1.2
resolution: "@jupyterlab/console@npm:4.1.2"
dependencies:
"@codemirror/state": ^6.2.0
"@codemirror/view": ^6.9.6
"@jupyter/ydoc": ^1.1.1
"@jupyterlab/apputils": ^4.2.2
"@jupyterlab/cells": ^4.1.2
"@jupyterlab/codeeditor": ^4.1.2
"@jupyterlab/coreutils": ^6.1.2
"@jupyterlab/nbformat": ^4.1.2
"@jupyterlab/observables": ^5.1.2
"@jupyterlab/rendermime": ^4.1.2
"@jupyterlab/services": ^7.1.2
"@jupyterlab/translation": ^4.1.2
"@jupyterlab/ui-components": ^4.1.2
"@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.1
checksum: 3e954b2216967fa30fbecc408cadee4a4c256f6f2d256575a435fdde7a3fd298897888313c89d6add9139b08146744f5ae280c180983c47bf2b7fbd6283f463b
languageName: node
linkType: hard
"@jupyterlab/coreutils@npm:^6.1.0, @jupyterlab/coreutils@npm:^6.1.2, @jupyterlab/coreutils@npm:~6.1.1":
version: 6.1.2
resolution: "@jupyterlab/coreutils@npm:6.1.2"
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: 6dcc812e0ebae28f902ece4acd58aee8103033b23a3bac0935d4d9d8c9c10f8797b422f4e8b0be53fac4781811fb9b82874ce499cd69a6d198986e0cdb4a97ff
languageName: node
linkType: hard
"@jupyterlab/debugger@npm:^4.1.2":
version: 4.1.2
resolution: "@jupyterlab/debugger@npm:4.1.2"
dependencies:
"@codemirror/state": ^6.2.0
"@codemirror/view": ^6.9.6
"@jupyter/ydoc": ^1.1.1
"@jupyterlab/application": ^4.1.2
"@jupyterlab/apputils": ^4.2.2
"@jupyterlab/cells": ^4.1.2
"@jupyterlab/codeeditor": ^4.1.2
"@jupyterlab/codemirror": ^4.1.2
"@jupyterlab/console": ^4.1.2
"@jupyterlab/coreutils": ^6.1.2
"@jupyterlab/docregistry": ^4.1.2
"@jupyterlab/fileeditor": ^4.1.2
"@jupyterlab/notebook": ^4.1.2
"@jupyterlab/observables": ^5.1.2
"@jupyterlab/rendermime": ^4.1.2
"@jupyterlab/services": ^7.1.2
"@jupyterlab/translation": ^4.1.2
"@jupyterlab/ui-components": ^4.1.2
"@lumino/algorithm": ^2.0.1
"@lumino/commands": ^2.2.0
"@lumino/coreutils": ^2.1.2
"@lumino/datagrid": ^2.3.0
"@lumino/disposable": ^2.1.2
"@lumino/messaging": ^2.0.1
"@lumino/polling": ^2.1.2
"@lumino/signaling": ^2.1.2
"@lumino/widgets": ^2.3.1
"@vscode/debugprotocol": ^1.51.0
react: ^18.2.0
checksum: 426c4d276ed27a5d124e4fabb12bc23f12c542f138656a037c17ad2fa908fabf9b6d57f78d79f300f6d60231dea8832d7878fc444d662bc063170116ffc59f2c
languageName: node
linkType: hard
"@jupyterlab/docmanager@npm:^4.1.2, @jupyterlab/docmanager@npm:~4.1.1":
version: 4.1.2
resolution: "@jupyterlab/docmanager@npm:4.1.2"
dependencies:
"@jupyterlab/apputils": ^4.2.2
"@jupyterlab/coreutils": ^6.1.2
"@jupyterlab/docregistry": ^4.1.2
"@jupyterlab/services": ^7.1.2
"@jupyterlab/statusbar": ^4.1.2
"@jupyterlab/translation": ^4.1.2
"@jupyterlab/ui-components": ^4.1.2
"@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.1
react: ^18.2.0
checksum: c2a7346025dee18bfb7d7c9953964d99e7635634f3c6a8cc7ef6b97eae92803279f21c4bdfafd1f970662b1824fbdca3b629a2dff804bd0ba9f486637ec7ba11
languageName: node
linkType: hard
"@jupyterlab/docregistry@npm:^4.1.0, @jupyterlab/docregistry@npm:^4.1.2, @jupyterlab/docregistry@npm:~4.1.1":
version: 4.1.2
resolution: "@jupyterlab/docregistry@npm:4.1.2"
dependencies:
"@jupyter/ydoc": ^1.1.1
"@jupyterlab/apputils": ^4.2.2
"@jupyterlab/codeeditor": ^4.1.2
"@jupyterlab/coreutils": ^6.1.2
"@jupyterlab/observables": ^5.1.2
"@jupyterlab/rendermime": ^4.1.2
"@jupyterlab/rendermime-interfaces": ^3.9.2
"@jupyterlab/services": ^7.1.2
"@jupyterlab/translation": ^4.1.2
"@jupyterlab/ui-components": ^4.1.2
"@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.1
react: ^18.2.0
checksum: 6dcef927286f66636d8f7f0a128d7c5084f60f1fc9969d33080f3b905b08c63036bb99602d484b52530f6176242b224ed65444fd7cfc2df7d44f0b0dd039ac40
languageName: node
linkType: hard
"@jupyterlab/documentsearch@npm:^4.1.2":
version: 4.1.2
resolution: "@jupyterlab/documentsearch@npm:4.1.2"
dependencies:
"@jupyterlab/apputils": ^4.2.2
"@jupyterlab/translation": ^4.1.2
"@jupyterlab/ui-components": ^4.1.2
"@lumino/commands": ^2.2.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.1
react: ^18.2.0
checksum: 05dbec1fcd0b15967a2bf09410f677053a2a05916acb715704a0cbef7fd588810a429b6f718d8fa68cdcc732906efbffc00cfa1ed1c4b782121d04d88b1dc04d
languageName: node
linkType: hard
"@jupyterlab/filebrowser@npm:^4.1.2, @jupyterlab/filebrowser@npm:~4.1.1":
version: 4.1.2
resolution: "@jupyterlab/filebrowser@npm:4.1.2"
dependencies:
"@jupyterlab/apputils": ^4.2.2
"@jupyterlab/coreutils": ^6.1.2
"@jupyterlab/docmanager": ^4.1.2
"@jupyterlab/docregistry": ^4.1.2
"@jupyterlab/services": ^7.1.2
"@jupyterlab/statedb": ^4.1.2
"@jupyterlab/statusbar": ^4.1.2
"@jupyterlab/translation": ^4.1.2
"@jupyterlab/ui-components": ^4.1.2
"@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.1
react: ^18.2.0
checksum: 0dd60c41b69458de8a7efb09ab7b6d9a06587761b00656a5f301980c30b9e180c986bd1074bc491a5fb4658ed2802ab4ea2eb1e9c3b2c565a1aef135c4b02fe0
languageName: node
linkType: hard
"@jupyterlab/fileeditor@npm:^4.1.2":
version: 4.1.2
resolution: "@jupyterlab/fileeditor@npm:4.1.2"
dependencies:
"@jupyter/ydoc": ^1.1.1
"@jupyterlab/apputils": ^4.2.2
"@jupyterlab/codeeditor": ^4.1.2
"@jupyterlab/codemirror": ^4.1.2
"@jupyterlab/coreutils": ^6.1.2
"@jupyterlab/docregistry": ^4.1.2
"@jupyterlab/documentsearch": ^4.1.2
"@jupyterlab/lsp": ^4.1.2
"@jupyterlab/statusbar": ^4.1.2
"@jupyterlab/toc": ^6.1.2
"@jupyterlab/translation": ^4.1.2
"@jupyterlab/ui-components": ^4.1.2
"@lumino/commands": ^2.2.0
"@lumino/coreutils": ^2.1.2
"@lumino/messaging": ^2.0.1
"@lumino/widgets": ^2.3.1
react: ^18.2.0
regexp-match-indices: ^1.0.2
checksum: f9e1de69a879c261cc745356c4a36041bf7be8a11d29b9b7da3d785c385670a6d10da789191480664f3511d86e000d51c409d31e33f37f84fc395294935ec326
languageName: node
linkType: hard
"@jupyterlab/galata@npm:^5.1.0":
version: 5.1.2
resolution: "@jupyterlab/galata@npm:5.1.2"
dependencies:
"@jupyterlab/application": ^4.1.2
"@jupyterlab/apputils": ^4.2.2
"@jupyterlab/coreutils": ^6.1.2
"@jupyterlab/debugger": ^4.1.2