-
Notifications
You must be signed in to change notification settings - Fork 98
/
Copy pathyarn.lock
4120 lines (3750 loc) · 140 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.5.1, @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/commands@npm:^6.2.3":
version: 6.3.0
resolution: "@codemirror/commands@npm:6.3.0"
dependencies:
"@codemirror/language": ^6.0.0
"@codemirror/state": ^6.2.0
"@codemirror/view": ^6.0.0
"@lezer/common": ^1.1.0
checksum: d6ade0ba7d4f80c2e44163935783d2f2f35c8b641a4b4f62452c0630211670abe5093786cf5a4af14147102d4284dae660a26f3ae58fd840e838685a81107d11
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.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-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.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-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.2
resolution: "@codemirror/lang-markdown@npm:6.2.2"
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: 36aa82a4fc07e5761e0e04108b54f112f0049ed210b3d4e81b7429a99be4677a1f9ef0e004c5243265dca3bac36525792cb1558999f6a224c689475e958d4aa8
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.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/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.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.3.0":
version: 6.5.4
resolution: "@codemirror/search@npm:6.5.4"
dependencies:
"@codemirror/state": ^6.0.0
"@codemirror/view": ^6.0.0
crelt: ^1.0.5
checksum: 32a68e40486730949ee79f54b9fcc6c744559aef188d3c5bf82881f62e5fc9468fa21cf227507638160043c797eb054205802a649cf4a2350928fc161d5aac40
languageName: node
linkType: hard
"@codemirror/state@npm:^6.0.0, @codemirror/state@npm:^6.1.4, @codemirror/state@npm:^6.2.0":
version: 6.3.1
resolution: "@codemirror/state@npm:6.3.1"
checksum: 8e7e55b3824653936606b31f146737459cb6654c935d668e7f36113ad523e1951966640f647c1286ae4ef22e3f0c7e37a6dfcbbcdb7bbeacca43c17c80fcc918
languageName: node
linkType: hard
"@codemirror/view@npm:^6.0.0, @codemirror/view@npm:^6.17.0, @codemirror/view@npm:^6.9.6":
version: 6.21.4
resolution: "@codemirror/view@npm:6.21.4"
dependencies:
"@codemirror/state": ^6.1.4
style-mod: ^4.1.0
w3c-keyname: ^2.2.4
checksum: e320eb46a6556984081c97e0bf5a9f5d45de2a4db5d632e6ee689a32dc081b10bda87aa989c4563981e28bf25bb651d1be57158fc2e753b587e3c6f7e2e486b2
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/ydoc@npm:^1.0.2":
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.0.7":
version: 4.0.7
resolution: "@jupyterlab/application@npm:4.0.7"
dependencies:
"@fortawesome/fontawesome-free": ^5.12.0
"@jupyterlab/apputils": ^4.1.7
"@jupyterlab/coreutils": ^6.0.7
"@jupyterlab/docregistry": ^4.0.7
"@jupyterlab/rendermime": ^4.0.7
"@jupyterlab/rendermime-interfaces": ^3.8.7
"@jupyterlab/services": ^7.0.7
"@jupyterlab/statedb": ^4.0.7
"@jupyterlab/translation": ^4.0.7
"@jupyterlab/ui-components": ^4.0.7
"@lumino/algorithm": ^2.0.1
"@lumino/application": ^2.2.1
"@lumino/commands": ^2.1.3
"@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.0
checksum: 4684edfcf7dfe9724e86938cf50a45a3518650dba3535bea9d13e024dcc9cd80a5862d2c1564b6498f6f086253766c0952eded677c93ce56b8b7265d739892c4
languageName: node
linkType: hard
"@jupyterlab/apputils@npm:^4.1.7":
version: 4.1.7
resolution: "@jupyterlab/apputils@npm:4.1.7"
dependencies:
"@jupyterlab/coreutils": ^6.0.7
"@jupyterlab/observables": ^5.0.7
"@jupyterlab/rendermime-interfaces": ^3.8.7
"@jupyterlab/services": ^7.0.7
"@jupyterlab/settingregistry": ^4.0.7
"@jupyterlab/statedb": ^4.0.7
"@jupyterlab/statusbar": ^4.0.7
"@jupyterlab/translation": ^4.0.7
"@jupyterlab/ui-components": ^4.0.7
"@lumino/algorithm": ^2.0.1
"@lumino/commands": ^2.1.3
"@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.0
"@types/react": ^18.0.26
react: ^18.2.0
sanitize-html: ~2.7.3
checksum: d8a3739ea4b74244b0e14e6a9bced973cc2fc8eb645fe25d36da960e3413492c5451332f44975ba601daecbe6b1e80073f36860f65482da16e94ed24f11a5947
languageName: node
linkType: hard
"@jupyterlab/attachments@npm:^4.0.7":
version: 4.0.7
resolution: "@jupyterlab/attachments@npm:4.0.7"
dependencies:
"@jupyterlab/nbformat": ^4.0.7
"@jupyterlab/observables": ^5.0.7
"@jupyterlab/rendermime": ^4.0.7
"@jupyterlab/rendermime-interfaces": ^3.8.7
"@lumino/disposable": ^2.1.2
"@lumino/signaling": ^2.1.2
checksum: ff118f55b8fbf08d112aef9f1f9867a6310578afacff9953af3c30205d338ed88bc44204112597bd325bc6b2eeb88e5f901187628e869853c9e9b5c2b77e4eb8
languageName: node
linkType: hard
"@jupyterlab/cells@npm:^4.0.7":
version: 4.0.7
resolution: "@jupyterlab/cells@npm:4.0.7"
dependencies:
"@codemirror/state": ^6.2.0
"@codemirror/view": ^6.9.6
"@jupyter/ydoc": ^1.0.2
"@jupyterlab/apputils": ^4.1.7
"@jupyterlab/attachments": ^4.0.7
"@jupyterlab/codeeditor": ^4.0.7
"@jupyterlab/codemirror": ^4.0.7
"@jupyterlab/coreutils": ^6.0.7
"@jupyterlab/documentsearch": ^4.0.7
"@jupyterlab/filebrowser": ^4.0.7
"@jupyterlab/nbformat": ^4.0.7
"@jupyterlab/observables": ^5.0.7
"@jupyterlab/outputarea": ^4.0.7
"@jupyterlab/rendermime": ^4.0.7
"@jupyterlab/services": ^7.0.7
"@jupyterlab/toc": ^6.0.7
"@jupyterlab/translation": ^4.0.7
"@jupyterlab/ui-components": ^4.0.7
"@lumino/algorithm": ^2.0.1
"@lumino/coreutils": ^2.1.2
"@lumino/domutils": ^2.0.1
"@lumino/dragdrop": ^2.1.3
"@lumino/messaging": ^2.0.1
"@lumino/polling": ^2.1.2
"@lumino/signaling": ^2.1.2
"@lumino/virtualdom": ^2.0.1
"@lumino/widgets": ^2.3.0
react: ^18.2.0
checksum: 3b986c3fb734031ce998e7a67208d06b0c0892a972db1d8123767bdcc9e14109f7e79be3f116f788bcfc2194e7a5a14d5918671c9021b9de51e82ca7f0421436
languageName: node
linkType: hard
"@jupyterlab/codeeditor@npm:^4.0.7":
version: 4.0.7
resolution: "@jupyterlab/codeeditor@npm:4.0.7"
dependencies:
"@codemirror/state": ^6.2.0
"@jupyter/ydoc": ^1.0.2
"@jupyterlab/coreutils": ^6.0.7
"@jupyterlab/nbformat": ^4.0.7
"@jupyterlab/observables": ^5.0.7
"@jupyterlab/statusbar": ^4.0.7
"@jupyterlab/translation": ^4.0.7
"@jupyterlab/ui-components": ^4.0.7
"@lumino/coreutils": ^2.1.2
"@lumino/disposable": ^2.1.2
"@lumino/dragdrop": ^2.1.3
"@lumino/messaging": ^2.0.1
"@lumino/signaling": ^2.1.2
"@lumino/widgets": ^2.3.0
react: ^18.2.0
checksum: d6c1c072b77f0afdc4c61ed9392297b43afa5ef0a3279e05631ead870122f9195eb9d5b6182b1ee984aa4fa7aee56051e710d601c550e43af27d43fc3397c333
languageName: node
linkType: hard
"@jupyterlab/codemirror@npm:^4.0.7":
version: 4.0.7
resolution: "@jupyterlab/codemirror@npm:4.0.7"
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.7
"@jupyterlab/coreutils": ^6.0.7
"@jupyterlab/documentsearch": ^4.0.7
"@jupyterlab/nbformat": ^4.0.7
"@jupyterlab/translation": ^4.0.7
"@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: 8b813dc5144a5adbfd535fe4c817ba96a2c123e60999674ea60ac207fa2b7d06d34314b46bf07564b9c6ca3c21077c5ee34279a857c9191b3133a488f0bf1c22
languageName: node
linkType: hard
"@jupyterlab/console@npm:^4.0.7":
version: 4.0.7
resolution: "@jupyterlab/console@npm:4.0.7"
dependencies:
"@codemirror/state": ^6.2.0
"@codemirror/view": ^6.9.6
"@jupyter/ydoc": ^1.0.2
"@jupyterlab/apputils": ^4.1.7
"@jupyterlab/cells": ^4.0.7
"@jupyterlab/codeeditor": ^4.0.7
"@jupyterlab/coreutils": ^6.0.7
"@jupyterlab/nbformat": ^4.0.7
"@jupyterlab/observables": ^5.0.7
"@jupyterlab/rendermime": ^4.0.7
"@jupyterlab/services": ^7.0.7
"@jupyterlab/translation": ^4.0.7
"@jupyterlab/ui-components": ^4.0.7
"@lumino/coreutils": ^2.1.2
"@lumino/disposable": ^2.1.2
"@lumino/dragdrop": ^2.1.3
"@lumino/messaging": ^2.0.1
"@lumino/signaling": ^2.1.2
"@lumino/widgets": ^2.3.0
checksum: b70117300da44405a60ce8faf1627569a0954c04d516d6ff0edc7247b0e7183e8bf42425b63bb601c9db9dc04599527b68f249af7d09980eaa56d27a9d85b5a4
languageName: node
linkType: hard
"@jupyterlab/coreutils@npm:^6.0.7":
version: 6.0.7
resolution: "@jupyterlab/coreutils@npm:6.0.7"
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: 18a14e0bc957bf087c3de3e86c5dc7ee568027906edf5dc820d9c794af6c9dece84d0b396e837786849f9144bb156746e3d4f2e838fd023a42eee94ebeb9014f
languageName: node
linkType: hard
"@jupyterlab/debugger@npm:^4.0.7":
version: 4.0.7
resolution: "@jupyterlab/debugger@npm:4.0.7"
dependencies:
"@codemirror/state": ^6.2.0
"@codemirror/view": ^6.9.6
"@jupyter/ydoc": ^1.0.2
"@jupyterlab/application": ^4.0.7
"@jupyterlab/apputils": ^4.1.7
"@jupyterlab/cells": ^4.0.7
"@jupyterlab/codeeditor": ^4.0.7
"@jupyterlab/codemirror": ^4.0.7
"@jupyterlab/console": ^4.0.7
"@jupyterlab/coreutils": ^6.0.7
"@jupyterlab/docregistry": ^4.0.7
"@jupyterlab/fileeditor": ^4.0.7
"@jupyterlab/notebook": ^4.0.7
"@jupyterlab/observables": ^5.0.7
"@jupyterlab/rendermime": ^4.0.7
"@jupyterlab/services": ^7.0.7
"@jupyterlab/translation": ^4.0.7
"@jupyterlab/ui-components": ^4.0.7
"@lumino/algorithm": ^2.0.1
"@lumino/commands": ^2.1.3
"@lumino/coreutils": ^2.1.2
"@lumino/datagrid": ^2.2.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.0
"@vscode/debugprotocol": ^1.51.0
react: ^18.2.0
checksum: c3c972a90978f6aae790e442fe7f97d6044783675e087989618f788b69f237700f75a1c1e40d9e0a34939e4f63c5f390afc96e264b002d38edfa54b8ccec244a
languageName: node
linkType: hard
"@jupyterlab/docmanager@npm:^4.0.7":
version: 4.0.7
resolution: "@jupyterlab/docmanager@npm:4.0.7"
dependencies:
"@jupyterlab/apputils": ^4.1.7
"@jupyterlab/coreutils": ^6.0.7
"@jupyterlab/docregistry": ^4.0.7
"@jupyterlab/services": ^7.0.7
"@jupyterlab/statusbar": ^4.0.7
"@jupyterlab/translation": ^4.0.7
"@jupyterlab/ui-components": ^4.0.7
"@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.0
react: ^18.2.0
checksum: 4ccbcfa431563cb0cdfa12d0f1ffed107816b8bcd420de5b6dc85e6c124ff1f691e72ce421102663880dc340717bfb71bdceb25eb8fc4074e08adb58ae6ba371
languageName: node
linkType: hard
"@jupyterlab/docregistry@npm:^4.0.7":
version: 4.0.7
resolution: "@jupyterlab/docregistry@npm:4.0.7"
dependencies:
"@jupyter/ydoc": ^1.0.2
"@jupyterlab/apputils": ^4.1.7
"@jupyterlab/codeeditor": ^4.0.7
"@jupyterlab/coreutils": ^6.0.7
"@jupyterlab/observables": ^5.0.7
"@jupyterlab/rendermime": ^4.0.7
"@jupyterlab/rendermime-interfaces": ^3.8.7
"@jupyterlab/services": ^7.0.7
"@jupyterlab/translation": ^4.0.7
"@jupyterlab/ui-components": ^4.0.7
"@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.0
checksum: 1d420696305dc17b2e96b22bf31af2caf2b16e31529c57b824bf859c71ac5caecb5a0a00d32ebc34ca1af65f720cec2c442d786c0460da60d7f65deb402dd891
languageName: node
linkType: hard
"@jupyterlab/documentsearch@npm:^4.0.7":
version: 4.0.7
resolution: "@jupyterlab/documentsearch@npm:4.0.7"
dependencies:
"@jupyterlab/apputils": ^4.1.7
"@jupyterlab/translation": ^4.0.7
"@jupyterlab/ui-components": ^4.0.7
"@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.0
react: ^18.2.0
checksum: 96f51844b22a2c8e234c85e32915a9af41a54d5bd21a49de63d37181083089c84d18265c14d7d8d5adeb460771ba044e87caafdb82fd0e805837a23d56aa2fe3
languageName: node
linkType: hard
"@jupyterlab/filebrowser@npm:^4.0.7":
version: 4.0.7
resolution: "@jupyterlab/filebrowser@npm:4.0.7"
dependencies:
"@jupyterlab/apputils": ^4.1.7
"@jupyterlab/coreutils": ^6.0.7
"@jupyterlab/docmanager": ^4.0.7
"@jupyterlab/docregistry": ^4.0.7
"@jupyterlab/services": ^7.0.7
"@jupyterlab/statedb": ^4.0.7
"@jupyterlab/statusbar": ^4.0.7
"@jupyterlab/translation": ^4.0.7
"@jupyterlab/ui-components": ^4.0.7
"@lumino/algorithm": ^2.0.1
"@lumino/coreutils": ^2.1.2
"@lumino/disposable": ^2.1.2
"@lumino/domutils": ^2.0.1
"@lumino/dragdrop": ^2.1.3
"@lumino/messaging": ^2.0.1
"@lumino/polling": ^2.1.2
"@lumino/signaling": ^2.1.2
"@lumino/virtualdom": ^2.0.1
"@lumino/widgets": ^2.3.0
react: ^18.2.0
checksum: 586b8a07fbe0a9bb0b0cd13a9d6fb083e797831a41fc5273d70124bb2daeeeb641e6b4584fc752a4799a5961bb14acc1379fd09847ef7f38b2908516b9f254e3
languageName: node
linkType: hard
"@jupyterlab/fileeditor@npm:^4.0.7":
version: 4.0.7
resolution: "@jupyterlab/fileeditor@npm:4.0.7"
dependencies:
"@jupyterlab/apputils": ^4.1.7
"@jupyterlab/codeeditor": ^4.0.7
"@jupyterlab/codemirror": ^4.0.7
"@jupyterlab/coreutils": ^6.0.7
"@jupyterlab/docregistry": ^4.0.7
"@jupyterlab/documentsearch": ^4.0.7
"@jupyterlab/lsp": ^4.0.7
"@jupyterlab/statusbar": ^4.0.7
"@jupyterlab/toc": ^6.0.7
"@jupyterlab/translation": ^4.0.7
"@jupyterlab/ui-components": ^4.0.7
"@lumino/commands": ^2.1.3
"@lumino/coreutils": ^2.1.2
"@lumino/messaging": ^2.0.1
"@lumino/widgets": ^2.3.0
react: ^18.2.0
regexp-match-indices: ^1.0.2
checksum: f5b98a599ae8acf89c8a6f7afcaa3b29025d0cd2eb2de6784cfa74149f985238227bd22d0eb5490f67c401b83634c5bdc282ee5761e4732c79104c1d77ccd7bb
languageName: node
linkType: hard
"@jupyterlab/galata@npm:^5.0.5":
version: 5.0.7
resolution: "@jupyterlab/galata@npm:5.0.7"
dependencies:
"@jupyterlab/application": ^4.0.7
"@jupyterlab/apputils": ^4.1.7
"@jupyterlab/coreutils": ^6.0.7
"@jupyterlab/debugger": ^4.0.7
"@jupyterlab/docmanager": ^4.0.7
"@jupyterlab/nbformat": ^4.0.7
"@jupyterlab/notebook": ^4.0.7
"@jupyterlab/services": ^7.0.7
"@jupyterlab/settingregistry": ^4.0.7
"@lumino/coreutils": ^2.1.2
"@playwright/test": ^1.32.2
"@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: 133da1b41eaaf5f194af95d56493bf4229845ccddde7ea7acb9295efff1c6b61ff45ddd316bd50828991cf76c6f800e22e6d934f59f00e221b94e6335b665d8f
languageName: node
linkType: hard
"@jupyterlab/lsp@npm:^4.0.7":
version: 4.0.7
resolution: "@jupyterlab/lsp@npm:4.0.7"
dependencies:
"@jupyterlab/apputils": ^4.1.7
"@jupyterlab/codeeditor": ^4.0.7
"@jupyterlab/coreutils": ^6.0.7
"@jupyterlab/docregistry": ^4.0.7
"@jupyterlab/services": ^7.0.7
"@jupyterlab/translation": ^4.0.7
"@lumino/coreutils": ^2.1.2
"@lumino/disposable": ^2.1.2
"@lumino/signaling": ^2.1.2
lodash.mergewith: ^4.6.1
vscode-jsonrpc: ^6.0.0
vscode-languageserver-protocol: ^3.17.0
vscode-ws-jsonrpc: ~1.0.2
checksum: a038fb51648b082652850e8a7190e0b9726be3be3b478258954a7a119df78df1b97182c53a4c8e6adb3ca22dbeaf2f5a40935b916a7dccb99952ebe44e112d9c
languageName: node
linkType: hard
"@jupyterlab/nbformat@npm:^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0, @jupyterlab/nbformat@npm:^4.0.7":
version: 4.0.7
resolution: "@jupyterlab/nbformat@npm:4.0.7"
dependencies:
"@lumino/coreutils": ^2.1.2
checksum: 32a14a6a3e6d068fa34aec385090531100170480869681156dfb510ea9154141277e678031a0df770af8ae5a0f06dc7c00570089c9187485552e1aeba5130ca8
languageName: node
linkType: hard
"@jupyterlab/notebook@npm:^4.0.7":
version: 4.0.7
resolution: "@jupyterlab/notebook@npm:4.0.7"
dependencies:
"@jupyter/ydoc": ^1.0.2
"@jupyterlab/apputils": ^4.1.7
"@jupyterlab/cells": ^4.0.7
"@jupyterlab/codeeditor": ^4.0.7
"@jupyterlab/codemirror": ^4.0.7
"@jupyterlab/coreutils": ^6.0.7
"@jupyterlab/docregistry": ^4.0.7
"@jupyterlab/documentsearch": ^4.0.7
"@jupyterlab/lsp": ^4.0.7
"@jupyterlab/nbformat": ^4.0.7
"@jupyterlab/observables": ^5.0.7
"@jupyterlab/rendermime": ^4.0.7
"@jupyterlab/services": ^7.0.7
"@jupyterlab/settingregistry": ^4.0.7
"@jupyterlab/statusbar": ^4.0.7
"@jupyterlab/toc": ^6.0.7
"@jupyterlab/translation": ^4.0.7
"@jupyterlab/ui-components": ^4.0.7
"@lumino/algorithm": ^2.0.1
"@lumino/coreutils": ^2.1.2
"@lumino/domutils": ^2.0.1
"@lumino/dragdrop": ^2.1.3
"@lumino/messaging": ^2.0.1
"@lumino/properties": ^2.0.1
"@lumino/signaling": ^2.1.2
"@lumino/virtualdom": ^2.0.1
"@lumino/widgets": ^2.3.0
react: ^18.2.0
checksum: 75fe89a1c59d47cb861a66b1c36d5e22593e93b8e0f8b3195e43e79e67e87542ccc00f245f3cdbd55617f889f1f7baa0a868d6be7d8fcfdc6ccab53e93f69bf4
languageName: node
linkType: hard
"@jupyterlab/observables@npm:^5.0.7":
version: 5.0.7
resolution: "@jupyterlab/observables@npm:5.0.7"
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: 459ec3ec77a12534cd16864892d8d3af3ead32a56956daeb89ab68e16c53651c8f20021e088e5a601b214eed46398bbbaea8bc3dc23f23b2700660558fa7c317
languageName: node
linkType: hard
"@jupyterlab/outputarea@npm:^4.0.7":
version: 4.0.7
resolution: "@jupyterlab/outputarea@npm:4.0.7"
dependencies:
"@jupyterlab/apputils": ^4.1.7
"@jupyterlab/nbformat": ^4.0.7
"@jupyterlab/observables": ^5.0.7
"@jupyterlab/rendermime": ^4.0.7
"@jupyterlab/rendermime-interfaces": ^3.8.7
"@jupyterlab/services": ^7.0.7
"@jupyterlab/translation": ^4.0.7
"@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.0
checksum: ea5ff9052408a117f5a74ce5c3938cda53f88d3dd227bea330cf042b69094c17d33d0b64d556f31b763bfe352bde29dc977cdaab69337159f0c9d9301e50a632
languageName: node
linkType: hard
"@jupyterlab/rendermime-interfaces@npm:^3.8.7":
version: 3.8.7
resolution: "@jupyterlab/rendermime-interfaces@npm:3.8.7"
dependencies:
"@lumino/coreutils": ^1.11.0 || ^2.1.2
"@lumino/widgets": ^1.37.2 || ^2.3.0
checksum: 8095fc99f89e49ef6793e37d7864511cc182fd2260219d3fe94dc974ac34411d4daf898f237279bd5e097aea19cca04196356bf31bd774e94c77b54894baf71b
languageName: node
linkType: hard
"@jupyterlab/rendermime@npm:^4.0.7":
version: 4.0.7
resolution: "@jupyterlab/rendermime@npm:4.0.7"
dependencies:
"@jupyterlab/apputils": ^4.1.7
"@jupyterlab/coreutils": ^6.0.7
"@jupyterlab/nbformat": ^4.0.7
"@jupyterlab/observables": ^5.0.7
"@jupyterlab/rendermime-interfaces": ^3.8.7
"@jupyterlab/services": ^7.0.7
"@jupyterlab/translation": ^4.0.7
"@lumino/coreutils": ^2.1.2
"@lumino/messaging": ^2.0.1
"@lumino/signaling": ^2.1.2
"@lumino/widgets": ^2.3.0
lodash.escape: ^4.0.1
checksum: 8e7bc7dc8d569fa8748783d0d23b716deb64af530d2f6861f6a08fe66ace5ff0d75e3cc67eb4ebb50b2089574917fe0b65da0dcf5368c3539fdb78f595560885
languageName: node
linkType: hard
"@jupyterlab/services@npm:^7.0.7":
version: 7.0.7
resolution: "@jupyterlab/services@npm:7.0.7"
dependencies:
"@jupyter/ydoc": ^1.0.2
"@jupyterlab/coreutils": ^6.0.7
"@jupyterlab/nbformat": ^4.0.7
"@jupyterlab/settingregistry": ^4.0.7
"@jupyterlab/statedb": ^4.0.7
"@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: 203f9e9eeab55eac9251c43d14ebaad881e8152a1337156ed7f2abbada54177237128c108f91a49f45df00226df8ba6a374d02afbd3bbd80ebb795cb5bc62e23
languageName: node
linkType: hard
"@jupyterlab/settingregistry@npm:^4.0.7":
version: 4.0.7
resolution: "@jupyterlab/settingregistry@npm:4.0.7"
dependencies:
"@jupyterlab/nbformat": ^4.0.7
"@jupyterlab/statedb": ^4.0.7
"@lumino/commands": ^2.1.3
"@lumino/coreutils": ^2.1.2
"@lumino/disposable": ^2.1.2
"@lumino/signaling": ^2.1.2
"@rjsf/utils": ^5.1.0
ajv: ^8.12.0
json5: ^2.2.3
peerDependencies:
react: ">=16"
checksum: f13dd888c42ccbcb1764037e94ea6b9ee6aa82a232cbb0d8b506212b9e9d5d58965215768110f83a310585482d71dfb649a7c2bbb187553d39dd1292b5919dbe
languageName: node
linkType: hard
"@jupyterlab/statedb@npm:^4.0.7":
version: 4.0.7
resolution: "@jupyterlab/statedb@npm:4.0.7"
dependencies:
"@lumino/commands": ^2.1.3
"@lumino/coreutils": ^2.1.2
"@lumino/disposable": ^2.1.2
"@lumino/properties": ^2.0.1
"@lumino/signaling": ^2.1.2
checksum: 4f4217fa1fceb40be8837cb450b1e66d4f6758531603c82ac277412ec43e3b94a5207bdeb74339307509a1b059ae6436d653beaff2fadfbc8136434ff0967190
languageName: node
linkType: hard
"@jupyterlab/statusbar@npm:^4.0.7":
version: 4.0.7
resolution: "@jupyterlab/statusbar@npm:4.0.7"
dependencies:
"@jupyterlab/ui-components": ^4.0.7
"@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
"@lumino/widgets": ^2.3.0
react: ^18.2.0
checksum: 7a2f75215789722a7b9a63548e91a1b179e8c315513d1b8741b508a58937569d723f2207bf542400674767246ad871432a09d1e87779151e43fa3749aa1ade06
languageName: node
linkType: hard
"@jupyterlab/toc@npm:^6.0.7":
version: 6.0.7
resolution: "@jupyterlab/toc@npm:6.0.7"
dependencies:
"@jupyterlab/apputils": ^4.1.7
"@jupyterlab/coreutils": ^6.0.7
"@jupyterlab/docregistry": ^4.0.7
"@jupyterlab/observables": ^5.0.7
"@jupyterlab/rendermime": ^4.0.7
"@jupyterlab/translation": ^4.0.7
"@jupyterlab/ui-components": ^4.0.7
"@lumino/coreutils": ^2.1.2
"@lumino/disposable": ^2.1.2
"@lumino/messaging": ^2.0.1
"@lumino/signaling": ^2.1.2
"@lumino/widgets": ^2.3.0
react: ^18.2.0
checksum: 6d0c17f79f8d077074a20d78f81fdda010f43edd5ffa423837c90dc9edd6810f7b7445c008ff7f0b04f917e6d37d76c7817bd1b2cedda48961c3e8c0553bbc16
languageName: node
linkType: hard
"@jupyterlab/translation@npm:^4.0.7":
version: 4.0.7
resolution: "@jupyterlab/translation@npm:4.0.7"
dependencies:
"@jupyterlab/coreutils": ^6.0.7
"@jupyterlab/rendermime-interfaces": ^3.8.7
"@jupyterlab/services": ^7.0.7
"@jupyterlab/statedb": ^4.0.7
"@lumino/coreutils": ^2.1.2
checksum: 15ad212d9447049f5d77d24681018efd52e61b861e73cdba4b09f4530801bdfa317c0eadde0b71016a9f45b68fbf91f723f9a63de9cbbe568c88923a9676ffab
languageName: node
linkType: hard
"@jupyterlab/ui-components@npm:^4.0.7":
version: 4.0.7
resolution: "@jupyterlab/ui-components@npm:4.0.7"
dependencies:
"@jupyterlab/coreutils": ^6.0.7
"@jupyterlab/observables": ^5.0.7
"@jupyterlab/rendermime-interfaces": ^3.8.7
"@jupyterlab/translation": ^4.0.7
"@lumino/algorithm": ^2.0.1
"@lumino/commands": ^2.1.3
"@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/virtualdom": ^2.0.1
"@lumino/widgets": ^2.3.0
"@rjsf/core": ^5.1.0
"@rjsf/utils": ^5.1.0
react: ^18.2.0
react-dom: ^18.2.0
typestyle: ^2.0.4
peerDependencies:
react: ^18.2.0
checksum: 92e722b8b4fe96a1df6644de8f955fdf48f2bf568a5aaf5f450f721659afc0ecdd9c89f833d73cbad8684849caec4316d4c6b6b0575e7da5a6c3058f5e99d03e
languageName: node
linkType: hard
"@lckr/jupyterlab_variableinspector-ui-tests@workspace:.":
version: 0.0.0-use.local
resolution: "@lckr/jupyterlab_variableinspector-ui-tests@workspace:."
dependencies:
"@jupyterlab/galata": ^5.0.5
"@playwright/test": ^1.37.0
languageName: unknown
linkType: soft
"@lezer/common@npm:^1.0.0, @lezer/common@npm:^1.0.2, @lezer/common@npm:^1.1.0":
version: 1.1.0
resolution: "@lezer/common@npm:1.1.0"
checksum: 93c208a44d1c0bdf7407853ba7c4ddcedf1c52d1b82170813d83b9bd6301aa23587405ac54332fe39ce8bc37f706936ab237ceb4d3d535d1dead650153b6474c
languageName: node
linkType: hard
"@lezer/cpp@npm:^1.0.0":
version: 1.1.1
resolution: "@lezer/cpp@npm:1.1.1"
dependencies:
"@lezer/highlight": ^1.0.0
"@lezer/lr": ^1.0.0
checksum: c9e1db19776eafbfe0c3b8448d46c94d9a1d30f7fef630292e63bab82e6d5d6903a043ee8cf341bcbf84c00ee0d79b8c255bab8fd8e0a91355ae912b53c78935
languageName: node
linkType: hard
"@lezer/css@npm:^1.0.0, @lezer/css@npm:^1.1.0":
version: 1.1.3
resolution: "@lezer/css@npm:1.1.3"
dependencies:
"@lezer/highlight": ^1.0.0
"@lezer/lr": ^1.0.0
checksum: c8069ef0a6751441d2dc9180f7ebfd7aeb35df0ca2f1a748a2f26203a9ef6cc30f17f3074e2b49520453eb39329dadfdbbb901c6d9d067dc955ceb58c1f8cc6a
languageName: node
linkType: hard
"@lezer/generator@npm:^1.2.2":
version: 1.5.1
resolution: "@lezer/generator@npm:1.5.1"
dependencies:
"@lezer/common": ^1.0.2
"@lezer/lr": ^1.3.0
bin:
lezer-generator: src/lezer-generator.cjs
checksum: 4d8267e6d356e48ca5214a234679b2b3b1d3706cb9dffecee4495b7a16c8a02502d6a078f8afdf5d8c79f94af34f2c1b5c08556aead8376d7b23795612b651d0
languageName: node
linkType: hard