-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage-lock.json
4210 lines (4210 loc) · 153 KB
/
package-lock.json
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
{
"name": "jupyterlab-meta",
"version": "1.0.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "jupyterlab-meta",
"version": "1.0.0",
"license": "MIT",
"dependencies": {
"@jupyterlab/galata": "^5.3.5",
"@playwright/test": "^1.51.0"
},
"devDependencies": {
"@types/node": "^22.13.15"
}
},
"node_modules/@codemirror/autocomplete": {
"version": "6.18.6",
"resolved": "https://registry.npmjs.org/@codemirror/autocomplete/-/autocomplete-6.18.6.tgz",
"integrity": "sha512-PHHBXFomUs5DF+9tCOM/UoW6XQ4R44lLNNhRaW9PKPTU0D7lIjRg3ElxaJnTwsl/oHiR93WSXDBrekhoUGCPtg==",
"license": "MIT",
"dependencies": {
"@codemirror/language": "^6.0.0",
"@codemirror/state": "^6.0.0",
"@codemirror/view": "^6.17.0",
"@lezer/common": "^1.0.0"
}
},
"node_modules/@codemirror/commands": {
"version": "6.8.0",
"resolved": "https://registry.npmjs.org/@codemirror/commands/-/commands-6.8.0.tgz",
"integrity": "sha512-q8VPEFaEP4ikSlt6ZxjB3zW72+7osfAYW9i8Zu943uqbKuz6utc1+F170hyLUCUltXORjQXRyYQNfkckzA/bPQ==",
"license": "MIT",
"dependencies": {
"@codemirror/language": "^6.0.0",
"@codemirror/state": "^6.4.0",
"@codemirror/view": "^6.27.0",
"@lezer/common": "^1.1.0"
}
},
"node_modules/@codemirror/lang-cpp": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/@codemirror/lang-cpp/-/lang-cpp-6.0.2.tgz",
"integrity": "sha512-6oYEYUKHvrnacXxWxYa6t4puTlbN3dgV662BDfSH8+MfjQjVmP697/KYTDOqpxgerkvoNm7q5wlFMBeX8ZMocg==",
"license": "MIT",
"dependencies": {
"@codemirror/language": "^6.0.0",
"@lezer/cpp": "^1.0.0"
}
},
"node_modules/@codemirror/lang-css": {
"version": "6.3.1",
"resolved": "https://registry.npmjs.org/@codemirror/lang-css/-/lang-css-6.3.1.tgz",
"integrity": "sha512-kr5fwBGiGtmz6l0LSJIbno9QrifNMUusivHbnA1H6Dmqy4HZFte3UAICix1VuKo0lMPKQr2rqB+0BkKi/S3Ejg==",
"license": "MIT",
"dependencies": {
"@codemirror/autocomplete": "^6.0.0",
"@codemirror/language": "^6.0.0",
"@codemirror/state": "^6.0.0",
"@lezer/common": "^1.0.2",
"@lezer/css": "^1.1.7"
}
},
"node_modules/@codemirror/lang-html": {
"version": "6.4.9",
"resolved": "https://registry.npmjs.org/@codemirror/lang-html/-/lang-html-6.4.9.tgz",
"integrity": "sha512-aQv37pIMSlueybId/2PVSP6NPnmurFDVmZwzc7jszd2KAF8qd4VBbvNYPXWQq90WIARjsdVkPbw29pszmHws3Q==",
"license": "MIT",
"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"
}
},
"node_modules/@codemirror/lang-java": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/@codemirror/lang-java/-/lang-java-6.0.1.tgz",
"integrity": "sha512-OOnmhH67h97jHzCuFaIEspbmsT98fNdhVhmA3zCxW0cn7l8rChDhZtwiwJ/JOKXgfm4J+ELxQihxaI7bj7mJRg==",
"license": "MIT",
"dependencies": {
"@codemirror/language": "^6.0.0",
"@lezer/java": "^1.0.0"
}
},
"node_modules/@codemirror/lang-javascript": {
"version": "6.2.3",
"resolved": "https://registry.npmjs.org/@codemirror/lang-javascript/-/lang-javascript-6.2.3.tgz",
"integrity": "sha512-8PR3vIWg7pSu7ur8A07pGiYHgy3hHj+mRYRCSG8q+mPIrl0F02rgpGv+DsQTHRTc30rydOsf5PZ7yjKFg2Ackw==",
"license": "MIT",
"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"
}
},
"node_modules/@codemirror/lang-json": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/@codemirror/lang-json/-/lang-json-6.0.1.tgz",
"integrity": "sha512-+T1flHdgpqDDlJZ2Lkil/rLiRy684WMLc74xUnjJH48GQdfJo/pudlTRreZmKwzP8/tGdKf83wlbAdOCzlJOGQ==",
"license": "MIT",
"dependencies": {
"@codemirror/language": "^6.0.0",
"@lezer/json": "^1.0.0"
}
},
"node_modules/@codemirror/lang-markdown": {
"version": "6.3.2",
"resolved": "https://registry.npmjs.org/@codemirror/lang-markdown/-/lang-markdown-6.3.2.tgz",
"integrity": "sha512-c/5MYinGbFxYl4itE9q/rgN/sMTjOr8XL5OWnC+EaRMLfCbVUmmubTJfdgpfcSS2SCaT7b+Q+xi3l6CgoE+BsA==",
"license": "MIT",
"dependencies": {
"@codemirror/autocomplete": "^6.7.1",
"@codemirror/lang-html": "^6.0.0",
"@codemirror/language": "^6.3.0",
"@codemirror/state": "^6.0.0",
"@codemirror/view": "^6.0.0",
"@lezer/common": "^1.2.1",
"@lezer/markdown": "^1.0.0"
}
},
"node_modules/@codemirror/lang-php": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/@codemirror/lang-php/-/lang-php-6.0.1.tgz",
"integrity": "sha512-ublojMdw/PNWa7qdN5TMsjmqkNuTBD3k6ndZ4Z0S25SBAiweFGyY68AS3xNcIOlb6DDFDvKlinLQ40vSLqf8xA==",
"license": "MIT",
"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"
}
},
"node_modules/@codemirror/lang-python": {
"version": "6.1.7",
"resolved": "https://registry.npmjs.org/@codemirror/lang-python/-/lang-python-6.1.7.tgz",
"integrity": "sha512-mZnFTsL4lW5p9ch8uKNKeRU3xGGxr1QpESLilfON2E3fQzOa/OygEMkaDvERvXDJWJA9U9oN/D4w0ZuUzNO4+g==",
"license": "MIT",
"dependencies": {
"@codemirror/autocomplete": "^6.3.2",
"@codemirror/language": "^6.8.0",
"@codemirror/state": "^6.0.0",
"@lezer/common": "^1.2.1",
"@lezer/python": "^1.1.4"
}
},
"node_modules/@codemirror/lang-rust": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/@codemirror/lang-rust/-/lang-rust-6.0.1.tgz",
"integrity": "sha512-344EMWFBzWArHWdZn/NcgkwMvZIWUR1GEBdwG8FEp++6o6vT6KL9V7vGs2ONsKxxFUPXKI0SPcWhyYyl2zPYxQ==",
"license": "MIT",
"dependencies": {
"@codemirror/language": "^6.0.0",
"@lezer/rust": "^1.0.0"
}
},
"node_modules/@codemirror/lang-sql": {
"version": "6.8.0",
"resolved": "https://registry.npmjs.org/@codemirror/lang-sql/-/lang-sql-6.8.0.tgz",
"integrity": "sha512-aGLmY4OwGqN3TdSx3h6QeA1NrvaYtF7kkoWR/+W7/JzB0gQtJ+VJxewlnE3+VImhA4WVlhmkJr109PefOOhjLg==",
"license": "MIT",
"dependencies": {
"@codemirror/autocomplete": "^6.0.0",
"@codemirror/language": "^6.0.0",
"@codemirror/state": "^6.0.0",
"@lezer/common": "^1.2.0",
"@lezer/highlight": "^1.0.0",
"@lezer/lr": "^1.0.0"
}
},
"node_modules/@codemirror/lang-wast": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/@codemirror/lang-wast/-/lang-wast-6.0.2.tgz",
"integrity": "sha512-Imi2KTpVGm7TKuUkqyJ5NRmeFWF7aMpNiwHnLQe0x9kmrxElndyH0K6H/gXtWwY6UshMRAhpENsgfpSwsgmC6Q==",
"license": "MIT",
"dependencies": {
"@codemirror/language": "^6.0.0",
"@lezer/common": "^1.2.0",
"@lezer/highlight": "^1.0.0",
"@lezer/lr": "^1.0.0"
}
},
"node_modules/@codemirror/lang-xml": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/@codemirror/lang-xml/-/lang-xml-6.1.0.tgz",
"integrity": "sha512-3z0blhicHLfwi2UgkZYRPioSgVTo9PV5GP5ducFH6FaHy0IAJRg+ixj5gTR1gnT/glAIC8xv4w2VL1LoZfs+Jg==",
"license": "MIT",
"dependencies": {
"@codemirror/autocomplete": "^6.0.0",
"@codemirror/language": "^6.4.0",
"@codemirror/state": "^6.0.0",
"@codemirror/view": "^6.0.0",
"@lezer/common": "^1.0.0",
"@lezer/xml": "^1.0.0"
}
},
"node_modules/@codemirror/language": {
"version": "6.10.8",
"resolved": "https://registry.npmjs.org/@codemirror/language/-/language-6.10.8.tgz",
"integrity": "sha512-wcP8XPPhDH2vTqf181U8MbZnW+tDyPYy0UzVOa+oHORjyT+mhhom9vBd7dApJwoDz9Nb/a8kHjJIsuA/t8vNFw==",
"license": "MIT",
"dependencies": {
"@codemirror/state": "^6.0.0",
"@codemirror/view": "^6.23.0",
"@lezer/common": "^1.1.0",
"@lezer/highlight": "^1.0.0",
"@lezer/lr": "^1.0.0",
"style-mod": "^4.0.0"
}
},
"node_modules/@codemirror/legacy-modes": {
"version": "6.4.3",
"resolved": "https://registry.npmjs.org/@codemirror/legacy-modes/-/legacy-modes-6.4.3.tgz",
"integrity": "sha512-s1g+q4bil8Cs4O+ueIiKIhz9MQOGcRyxJglma8BYIWc/oEJLo13S3LYSWKaqhKwXGgt1GgZ66hCploHZD9Sstw==",
"license": "MIT",
"dependencies": {
"@codemirror/language": "^6.0.0"
}
},
"node_modules/@codemirror/lint": {
"version": "6.8.4",
"resolved": "https://registry.npmjs.org/@codemirror/lint/-/lint-6.8.4.tgz",
"integrity": "sha512-u4q7PnZlJUojeRe8FJa/njJcMctISGgPQ4PnWsd9268R4ZTtU+tfFYmwkBvgcrK2+QQ8tYFVALVb5fVJykKc5A==",
"license": "MIT",
"dependencies": {
"@codemirror/state": "^6.0.0",
"@codemirror/view": "^6.35.0",
"crelt": "^1.0.5"
}
},
"node_modules/@codemirror/search": {
"version": "6.5.10",
"resolved": "https://registry.npmjs.org/@codemirror/search/-/search-6.5.10.tgz",
"integrity": "sha512-RMdPdmsrUf53pb2VwflKGHEe1XVM07hI7vV2ntgw1dmqhimpatSJKva4VA9h4TLUDOD4EIF02201oZurpnEFsg==",
"license": "MIT",
"dependencies": {
"@codemirror/state": "^6.0.0",
"@codemirror/view": "^6.0.0",
"crelt": "^1.0.5"
}
},
"node_modules/@codemirror/state": {
"version": "6.5.2",
"resolved": "https://registry.npmjs.org/@codemirror/state/-/state-6.5.2.tgz",
"integrity": "sha512-FVqsPqtPWKVVL3dPSxy8wEF/ymIEuVzF1PK3VbUgrxXpJUSHQWWZz4JMToquRxnkw+36LTamCZG2iua2Ptq0fA==",
"license": "MIT",
"dependencies": {
"@marijn/find-cluster-break": "^1.0.0"
}
},
"node_modules/@codemirror/view": {
"version": "6.36.4",
"resolved": "https://registry.npmjs.org/@codemirror/view/-/view-6.36.4.tgz",
"integrity": "sha512-ZQ0V5ovw/miKEXTvjgzRyjnrk9TwriUB1k4R5p7uNnHR9Hus+D1SXHGdJshijEzPFjU25xea/7nhIeSqYFKdbA==",
"license": "MIT",
"dependencies": {
"@codemirror/state": "^6.5.0",
"style-mod": "^4.1.0",
"w3c-keyname": "^2.2.4"
}
},
"node_modules/@fortawesome/fontawesome-free": {
"version": "5.15.4",
"resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-free/-/fontawesome-free-5.15.4.tgz",
"integrity": "sha512-eYm8vijH/hpzr/6/1CJ/V/Eb1xQFW2nnUKArb3z+yUWv7HTwj6M7SP957oMjfZjAHU6qpoNc2wQvIxBLWYa/Jg==",
"hasInstallScript": true,
"license": "(CC-BY-4.0 AND OFL-1.1 AND MIT)",
"engines": {
"node": ">=6"
}
},
"node_modules/@jupyter/react-components": {
"version": "0.16.7",
"resolved": "https://registry.npmjs.org/@jupyter/react-components/-/react-components-0.16.7.tgz",
"integrity": "sha512-BKIPkJ9V011uhtdq1xBOu2M3up59CqsRbDS4aq8XhnHR4pwqfRV6k6irE5YBOETCoIwWZZ5RZO+cJcZ3DcsT5A==",
"license": "BSD-3-Clause",
"dependencies": {
"@jupyter/web-components": "^0.16.7",
"react": ">=17.0.0 <19.0.0"
}
},
"node_modules/@jupyter/web-components": {
"version": "0.16.7",
"resolved": "https://registry.npmjs.org/@jupyter/web-components/-/web-components-0.16.7.tgz",
"integrity": "sha512-1a8awgvvP9J9pCV5vBRuQxdBk29764qiMJsJYEndrWH3cB/FlaO+sZIBm4OTf56Eqdgl8R3/ZSLM1+3mgXOkPg==",
"license": "BSD-3-Clause",
"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"
}
},
"node_modules/@jupyter/ydoc": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/@jupyter/ydoc/-/ydoc-3.0.3.tgz",
"integrity": "sha512-DYkLU7bsf5RT6IwrK6GW380dEZbK3q10lo7Ddt8smxKWDrBsQgbdYmQswBtavyihMMDtBlrczjx2OYPFz3Ku8Q==",
"license": "BSD-3-Clause",
"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"
}
},
"node_modules/@jupyterlab/application": {
"version": "4.3.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/application/-/application-4.3.5.tgz",
"integrity": "sha512-YhZ+scF4DR6pFWhLLzZGy7F5CIt+5m4Qc/aBD8axj6BD8UyRCrml4hsX0rYCSZH/OnFt4uInxD7zM85n/yQvkA==",
"license": "BSD-3-Clause",
"dependencies": {
"@fortawesome/fontawesome-free": "^5.12.0",
"@jupyterlab/apputils": "^4.4.5",
"@jupyterlab/coreutils": "^6.3.5",
"@jupyterlab/docregistry": "^4.3.5",
"@jupyterlab/rendermime": "^4.3.5",
"@jupyterlab/rendermime-interfaces": "^3.11.5",
"@jupyterlab/services": "^7.3.5",
"@jupyterlab/statedb": "^4.3.5",
"@jupyterlab/translation": "^4.3.5",
"@jupyterlab/ui-components": "^4.3.5",
"@lumino/algorithm": "^2.0.2",
"@lumino/application": "^2.4.1",
"@lumino/commands": "^2.3.1",
"@lumino/coreutils": "^2.2.0",
"@lumino/disposable": "^2.1.3",
"@lumino/messaging": "^2.0.2",
"@lumino/polling": "^2.1.3",
"@lumino/properties": "^2.0.2",
"@lumino/signaling": "^2.1.3",
"@lumino/widgets": "^2.5.0"
}
},
"node_modules/@jupyterlab/apputils": {
"version": "4.4.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/apputils/-/apputils-4.4.5.tgz",
"integrity": "sha512-LApgwycQPhfCADQ+FclnVSDRV4/fXPA2FJxJZhYSg3Ol+QrKk8kL4rr7oj+eROKwKJmVzYdSeJyRncr9g17okQ==",
"license": "BSD-3-Clause",
"dependencies": {
"@jupyterlab/coreutils": "^6.3.5",
"@jupyterlab/observables": "^5.3.5",
"@jupyterlab/rendermime-interfaces": "^3.11.5",
"@jupyterlab/services": "^7.3.5",
"@jupyterlab/settingregistry": "^4.3.5",
"@jupyterlab/statedb": "^4.3.5",
"@jupyterlab/statusbar": "^4.3.5",
"@jupyterlab/translation": "^4.3.5",
"@jupyterlab/ui-components": "^4.3.5",
"@lumino/algorithm": "^2.0.2",
"@lumino/commands": "^2.3.1",
"@lumino/coreutils": "^2.2.0",
"@lumino/disposable": "^2.1.3",
"@lumino/domutils": "^2.0.2",
"@lumino/messaging": "^2.0.2",
"@lumino/signaling": "^2.1.3",
"@lumino/virtualdom": "^2.0.2",
"@lumino/widgets": "^2.5.0",
"@types/react": "^18.0.26",
"react": "^18.2.0",
"sanitize-html": "~2.12.1"
}
},
"node_modules/@jupyterlab/attachments": {
"version": "4.3.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/attachments/-/attachments-4.3.5.tgz",
"integrity": "sha512-TRwYQmKPpNi6o8BuadUn3zhdtU7YgDvjn5w8Z4gNUGs11Nja1qLhQPHasDMf4i2P60niJxRNtOyDX4fml5Gf4Q==",
"license": "BSD-3-Clause",
"dependencies": {
"@jupyterlab/nbformat": "^4.3.5",
"@jupyterlab/observables": "^5.3.5",
"@jupyterlab/rendermime": "^4.3.5",
"@jupyterlab/rendermime-interfaces": "^3.11.5",
"@lumino/disposable": "^2.1.3",
"@lumino/signaling": "^2.1.3"
}
},
"node_modules/@jupyterlab/cells": {
"version": "4.3.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/cells/-/cells-4.3.5.tgz",
"integrity": "sha512-gTCIJ+Gh+8TvqNxTJDliwXk1qSlks10h6oPU+Pc4MvogsJww3Gew+i9+XoGanK0x3Qv5UjOK/SzvbDcjJKcxdA==",
"license": "BSD-3-Clause",
"dependencies": {
"@codemirror/state": "^6.4.1",
"@codemirror/view": "^6.26.3",
"@jupyter/ydoc": "^3.0.0",
"@jupyterlab/apputils": "^4.4.5",
"@jupyterlab/attachments": "^4.3.5",
"@jupyterlab/codeeditor": "^4.3.5",
"@jupyterlab/codemirror": "^4.3.5",
"@jupyterlab/coreutils": "^6.3.5",
"@jupyterlab/documentsearch": "^4.3.5",
"@jupyterlab/filebrowser": "^4.3.5",
"@jupyterlab/nbformat": "^4.3.5",
"@jupyterlab/observables": "^5.3.5",
"@jupyterlab/outputarea": "^4.3.5",
"@jupyterlab/rendermime": "^4.3.5",
"@jupyterlab/services": "^7.3.5",
"@jupyterlab/toc": "^6.3.5",
"@jupyterlab/translation": "^4.3.5",
"@jupyterlab/ui-components": "^4.3.5",
"@lumino/algorithm": "^2.0.2",
"@lumino/coreutils": "^2.2.0",
"@lumino/domutils": "^2.0.2",
"@lumino/dragdrop": "^2.1.5",
"@lumino/messaging": "^2.0.2",
"@lumino/polling": "^2.1.3",
"@lumino/signaling": "^2.1.3",
"@lumino/virtualdom": "^2.0.2",
"@lumino/widgets": "^2.5.0",
"react": "^18.2.0"
}
},
"node_modules/@jupyterlab/codeeditor": {
"version": "4.3.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/codeeditor/-/codeeditor-4.3.5.tgz",
"integrity": "sha512-d5nXSwd2swczICJOQ45Y0a6onb2TFPQBGmJBdrqVAah3DEQr+FfKZ6k9IZqJgSzEbeRNG7EVcRGcIgiLglCs5A==",
"license": "BSD-3-Clause",
"dependencies": {
"@codemirror/state": "^6.4.1",
"@jupyter/ydoc": "^3.0.0",
"@jupyterlab/apputils": "^4.4.5",
"@jupyterlab/coreutils": "^6.3.5",
"@jupyterlab/nbformat": "^4.3.5",
"@jupyterlab/observables": "^5.3.5",
"@jupyterlab/statusbar": "^4.3.5",
"@jupyterlab/translation": "^4.3.5",
"@jupyterlab/ui-components": "^4.3.5",
"@lumino/coreutils": "^2.2.0",
"@lumino/disposable": "^2.1.3",
"@lumino/dragdrop": "^2.1.5",
"@lumino/messaging": "^2.0.2",
"@lumino/signaling": "^2.1.3",
"@lumino/widgets": "^2.5.0",
"react": "^18.2.0"
}
},
"node_modules/@jupyterlab/codemirror": {
"version": "4.3.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/codemirror/-/codemirror-4.3.5.tgz",
"integrity": "sha512-Pgm3Rpar3xTEI8n1H9RcTgOoyRnrQCHkZJ8Nzy9w/BYIgmeyUmy+9y6BYq55A4dqk5iumlaICFB6b8xNnnuQ/Q==",
"license": "BSD-3-Clause",
"dependencies": {
"@codemirror/autocomplete": "^6.16.0",
"@codemirror/commands": "^6.5.0",
"@codemirror/lang-cpp": "^6.0.2",
"@codemirror/lang-css": "^6.2.1",
"@codemirror/lang-html": "^6.4.9",
"@codemirror/lang-java": "^6.0.1",
"@codemirror/lang-javascript": "^6.2.2",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/lang-markdown": "^6.2.5",
"@codemirror/lang-php": "^6.0.1",
"@codemirror/lang-python": "^6.1.6",
"@codemirror/lang-rust": "^6.0.1",
"@codemirror/lang-sql": "^6.6.4",
"@codemirror/lang-wast": "^6.0.2",
"@codemirror/lang-xml": "^6.1.0",
"@codemirror/language": "^6.10.1",
"@codemirror/legacy-modes": "^6.4.0",
"@codemirror/search": "^6.5.6",
"@codemirror/state": "^6.4.1",
"@codemirror/view": "^6.26.3",
"@jupyter/ydoc": "^3.0.0",
"@jupyterlab/codeeditor": "^4.3.5",
"@jupyterlab/coreutils": "^6.3.5",
"@jupyterlab/documentsearch": "^4.3.5",
"@jupyterlab/nbformat": "^4.3.5",
"@jupyterlab/translation": "^4.3.5",
"@lezer/common": "^1.2.1",
"@lezer/generator": "^1.7.0",
"@lezer/highlight": "^1.2.0",
"@lezer/markdown": "^1.3.0",
"@lumino/coreutils": "^2.2.0",
"@lumino/disposable": "^2.1.3",
"@lumino/signaling": "^2.1.3",
"yjs": "^13.5.40"
}
},
"node_modules/@jupyterlab/console": {
"version": "4.3.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/console/-/console-4.3.5.tgz",
"integrity": "sha512-zbItG0GFZY5jbMwmvIPKEHIvs6ZqaOZw5HtUFn/1TO5T3CPQv4INba5tCkcxeE+QcEsXsCSJtY1v7GqTWZIEsw==",
"license": "BSD-3-Clause",
"dependencies": {
"@jupyter/ydoc": "^3.0.0",
"@jupyterlab/apputils": "^4.4.5",
"@jupyterlab/cells": "^4.3.5",
"@jupyterlab/codeeditor": "^4.3.5",
"@jupyterlab/coreutils": "^6.3.5",
"@jupyterlab/nbformat": "^4.3.5",
"@jupyterlab/observables": "^5.3.5",
"@jupyterlab/rendermime": "^4.3.5",
"@jupyterlab/services": "^7.3.5",
"@jupyterlab/translation": "^4.3.5",
"@jupyterlab/ui-components": "^4.3.5",
"@lumino/coreutils": "^2.2.0",
"@lumino/disposable": "^2.1.3",
"@lumino/dragdrop": "^2.1.5",
"@lumino/messaging": "^2.0.2",
"@lumino/signaling": "^2.1.3",
"@lumino/widgets": "^2.5.0"
}
},
"node_modules/@jupyterlab/coreutils": {
"version": "6.3.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/coreutils/-/coreutils-6.3.5.tgz",
"integrity": "sha512-ZPi9bhftYH0RAotTA1N8WA4uf8s4XBnQAN745PTTzvkrsiYCLUEJ4CGjCb3QsAeLlnee5vJfC9Kvjz4nMJFQHQ==",
"license": "BSD-3-Clause",
"dependencies": {
"@lumino/coreutils": "^2.2.0",
"@lumino/disposable": "^2.1.3",
"@lumino/signaling": "^2.1.3",
"minimist": "~1.2.0",
"path-browserify": "^1.0.0",
"url-parse": "~1.5.4"
}
},
"node_modules/@jupyterlab/debugger": {
"version": "4.3.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/debugger/-/debugger-4.3.5.tgz",
"integrity": "sha512-/8qGklGx8p+yjfuJDmNhdb6fNOr29j8zz+m6dEQ9Z6kNNx8FsIa0lJvnTv6oSRbdZ1OkpyQi9UiSwxPbR9SO+A==",
"license": "BSD-3-Clause",
"dependencies": {
"@codemirror/state": "^6.4.1",
"@codemirror/view": "^6.26.3",
"@jupyter/react-components": "^0.16.6",
"@jupyter/ydoc": "^3.0.0",
"@jupyterlab/application": "^4.3.5",
"@jupyterlab/apputils": "^4.4.5",
"@jupyterlab/cells": "^4.3.5",
"@jupyterlab/codeeditor": "^4.3.5",
"@jupyterlab/codemirror": "^4.3.5",
"@jupyterlab/console": "^4.3.5",
"@jupyterlab/coreutils": "^6.3.5",
"@jupyterlab/docregistry": "^4.3.5",
"@jupyterlab/fileeditor": "^4.3.5",
"@jupyterlab/notebook": "^4.3.5",
"@jupyterlab/observables": "^5.3.5",
"@jupyterlab/rendermime": "^4.3.5",
"@jupyterlab/services": "^7.3.5",
"@jupyterlab/translation": "^4.3.5",
"@jupyterlab/ui-components": "^4.3.5",
"@lumino/algorithm": "^2.0.2",
"@lumino/commands": "^2.3.1",
"@lumino/coreutils": "^2.2.0",
"@lumino/datagrid": "^2.4.1",
"@lumino/disposable": "^2.1.3",
"@lumino/messaging": "^2.0.2",
"@lumino/polling": "^2.1.3",
"@lumino/signaling": "^2.1.3",
"@lumino/widgets": "^2.5.0",
"@vscode/debugprotocol": "^1.51.0",
"react": "^18.2.0"
}
},
"node_modules/@jupyterlab/docmanager": {
"version": "4.3.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/docmanager/-/docmanager-4.3.5.tgz",
"integrity": "sha512-31JS7w0LWfr55LoUCqPhIAkCdzUEeGFts/XULOWJv/NdeBQftuCJfwEC4jGSzjgPfv1OYK183z1DWhIw0nVrag==",
"license": "BSD-3-Clause",
"dependencies": {
"@jupyterlab/apputils": "^4.4.5",
"@jupyterlab/coreutils": "^6.3.5",
"@jupyterlab/docregistry": "^4.3.5",
"@jupyterlab/services": "^7.3.5",
"@jupyterlab/statedb": "^4.3.5",
"@jupyterlab/statusbar": "^4.3.5",
"@jupyterlab/translation": "^4.3.5",
"@jupyterlab/ui-components": "^4.3.5",
"@lumino/algorithm": "^2.0.2",
"@lumino/coreutils": "^2.2.0",
"@lumino/disposable": "^2.1.3",
"@lumino/messaging": "^2.0.2",
"@lumino/polling": "^2.1.3",
"@lumino/properties": "^2.0.2",
"@lumino/signaling": "^2.1.3",
"@lumino/widgets": "^2.5.0",
"react": "^18.2.0"
}
},
"node_modules/@jupyterlab/docregistry": {
"version": "4.3.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/docregistry/-/docregistry-4.3.5.tgz",
"integrity": "sha512-l5PsGP5ZlFENb/0RmO1TKQk7IaGaunJgXwPNOEC433iNUHNE7aMtg4DBVsxGy55gBF8u/Par6GYIWR8M/z25pg==",
"license": "BSD-3-Clause",
"dependencies": {
"@jupyter/ydoc": "^3.0.0",
"@jupyterlab/apputils": "^4.4.5",
"@jupyterlab/codeeditor": "^4.3.5",
"@jupyterlab/coreutils": "^6.3.5",
"@jupyterlab/observables": "^5.3.5",
"@jupyterlab/rendermime": "^4.3.5",
"@jupyterlab/rendermime-interfaces": "^3.11.5",
"@jupyterlab/services": "^7.3.5",
"@jupyterlab/translation": "^4.3.5",
"@jupyterlab/ui-components": "^4.3.5",
"@lumino/algorithm": "^2.0.2",
"@lumino/coreutils": "^2.2.0",
"@lumino/disposable": "^2.1.3",
"@lumino/messaging": "^2.0.2",
"@lumino/properties": "^2.0.2",
"@lumino/signaling": "^2.1.3",
"@lumino/widgets": "^2.5.0",
"react": "^18.2.0"
}
},
"node_modules/@jupyterlab/documentsearch": {
"version": "4.3.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/documentsearch/-/documentsearch-4.3.5.tgz",
"integrity": "sha512-jTIcGJt49ZEL5az5tOXhKv9Sc2fNirXdVsb+Ypp7cReI2t5kBALWbJWJRp5EnhfEZKJpxc+bOiHw1yk8idb81Q==",
"license": "BSD-3-Clause",
"dependencies": {
"@jupyterlab/apputils": "^4.4.5",
"@jupyterlab/translation": "^4.3.5",
"@jupyterlab/ui-components": "^4.3.5",
"@lumino/commands": "^2.3.1",
"@lumino/coreutils": "^2.2.0",
"@lumino/disposable": "^2.1.3",
"@lumino/messaging": "^2.0.2",
"@lumino/polling": "^2.1.3",
"@lumino/signaling": "^2.1.3",
"@lumino/widgets": "^2.5.0",
"react": "^18.2.0"
}
},
"node_modules/@jupyterlab/filebrowser": {
"version": "4.3.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/filebrowser/-/filebrowser-4.3.5.tgz",
"integrity": "sha512-RNiycmC/TWHvfuETBlesoFdym/fBwPfg67T1bc9Jo+JY0e6L03L66Ov4UEufQf/AoTRkJmFi3JKDEmJnwIKC+g==",
"license": "BSD-3-Clause",
"dependencies": {
"@jupyterlab/apputils": "^4.4.5",
"@jupyterlab/coreutils": "^6.3.5",
"@jupyterlab/docmanager": "^4.3.5",
"@jupyterlab/docregistry": "^4.3.5",
"@jupyterlab/services": "^7.3.5",
"@jupyterlab/statedb": "^4.3.5",
"@jupyterlab/statusbar": "^4.3.5",
"@jupyterlab/translation": "^4.3.5",
"@jupyterlab/ui-components": "^4.3.5",
"@lumino/algorithm": "^2.0.2",
"@lumino/coreutils": "^2.2.0",
"@lumino/disposable": "^2.1.3",
"@lumino/domutils": "^2.0.2",
"@lumino/dragdrop": "^2.1.5",
"@lumino/messaging": "^2.0.2",
"@lumino/polling": "^2.1.3",
"@lumino/signaling": "^2.1.3",
"@lumino/virtualdom": "^2.0.2",
"@lumino/widgets": "^2.5.0",
"react": "^18.2.0"
}
},
"node_modules/@jupyterlab/fileeditor": {
"version": "4.3.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/fileeditor/-/fileeditor-4.3.5.tgz",
"integrity": "sha512-Iulg+t33KnX4l/WTo0c5f4tHsThFTE9AW1rEoTx+al+bTs0qMNUHxAvM2RtGI3hB5ashXN64RhJ5Y7jA6GEbAg==",
"license": "BSD-3-Clause",
"dependencies": {
"@jupyter/ydoc": "^3.0.0",
"@jupyterlab/apputils": "^4.4.5",
"@jupyterlab/codeeditor": "^4.3.5",
"@jupyterlab/codemirror": "^4.3.5",
"@jupyterlab/coreutils": "^6.3.5",
"@jupyterlab/docregistry": "^4.3.5",
"@jupyterlab/documentsearch": "^4.3.5",
"@jupyterlab/lsp": "^4.3.5",
"@jupyterlab/statusbar": "^4.3.5",
"@jupyterlab/toc": "^6.3.5",
"@jupyterlab/translation": "^4.3.5",
"@jupyterlab/ui-components": "^4.3.5",
"@lumino/commands": "^2.3.1",
"@lumino/coreutils": "^2.2.0",
"@lumino/messaging": "^2.0.2",
"@lumino/widgets": "^2.5.0",
"react": "^18.2.0",
"regexp-match-indices": "^1.0.2"
}
},
"node_modules/@jupyterlab/galata": {
"version": "5.3.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/galata/-/galata-5.3.5.tgz",
"integrity": "sha512-bcH9vbxMJ4EWQLoLFkdU7LSyjD6wx914/n83DpW/03ubWCuLbxgPycYiFOmSxIKUgH2BaFtyGmnF9NNyQrh4Aw==",
"license": "BSD-3-Clause",
"dependencies": {
"@jupyterlab/application": "^4.3.5",
"@jupyterlab/apputils": "^4.4.5",
"@jupyterlab/coreutils": "^6.3.5",
"@jupyterlab/debugger": "^4.3.5",
"@jupyterlab/docmanager": "^4.3.5",
"@jupyterlab/nbformat": "^4.3.5",
"@jupyterlab/notebook": "^4.3.5",
"@jupyterlab/services": "^7.3.5",
"@jupyterlab/settingregistry": "^4.3.5",
"@lumino/coreutils": "^2.2.0",
"@playwright/test": "^1.48.0",
"@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"
}
},
"node_modules/@jupyterlab/lsp": {
"version": "4.3.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/lsp/-/lsp-4.3.5.tgz",
"integrity": "sha512-HxnEb10NmpLfvuaz7LATSOrxR+dx6Jn5slajwLHDUL+piuw8EGRdWzFaEnYAh+9qAPlw31W++GmWaQxqofQTeg==",
"license": "BSD-3-Clause",
"dependencies": {
"@jupyterlab/apputils": "^4.4.5",
"@jupyterlab/codeeditor": "^4.3.5",
"@jupyterlab/codemirror": "^4.3.5",
"@jupyterlab/coreutils": "^6.3.5",
"@jupyterlab/docregistry": "^4.3.5",
"@jupyterlab/services": "^7.3.5",
"@jupyterlab/translation": "^4.3.5",
"@lumino/coreutils": "^2.2.0",
"@lumino/disposable": "^2.1.3",
"@lumino/signaling": "^2.1.3",
"@lumino/widgets": "^2.5.0",
"lodash.mergewith": "^4.6.1",
"vscode-jsonrpc": "^6.0.0",
"vscode-languageserver-protocol": "^3.17.0",
"vscode-ws-jsonrpc": "~1.0.2"
}
},
"node_modules/@jupyterlab/nbformat": {
"version": "4.3.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/nbformat/-/nbformat-4.3.5.tgz",
"integrity": "sha512-rTge5VNBKoPbTzwMagbZ8KgQa3R805eqPDVVPQhXb0F9ND3vfEbINbZOgz+6/5b0ABlbRnOYWWvTR4iU8cD77w==",
"license": "BSD-3-Clause",
"dependencies": {
"@lumino/coreutils": "^2.2.0"
}
},
"node_modules/@jupyterlab/notebook": {
"version": "4.3.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/notebook/-/notebook-4.3.5.tgz",
"integrity": "sha512-m3RNf+ygeZqL/t3pyBDsSbZQ/vuEGWrCLNeAThQIg5MjsD7rax0IYuMLFZBLt/VH6zjZpgqM6Uj9sruQenhAOQ==",
"license": "BSD-3-Clause",
"dependencies": {
"@jupyter/ydoc": "^3.0.0",
"@jupyterlab/apputils": "^4.4.5",
"@jupyterlab/cells": "^4.3.5",
"@jupyterlab/codeeditor": "^4.3.5",
"@jupyterlab/codemirror": "^4.3.5",
"@jupyterlab/coreutils": "^6.3.5",
"@jupyterlab/docregistry": "^4.3.5",
"@jupyterlab/documentsearch": "^4.3.5",
"@jupyterlab/lsp": "^4.3.5",
"@jupyterlab/nbformat": "^4.3.5",
"@jupyterlab/observables": "^5.3.5",
"@jupyterlab/rendermime": "^4.3.5",
"@jupyterlab/services": "^7.3.5",
"@jupyterlab/settingregistry": "^4.3.5",
"@jupyterlab/statusbar": "^4.3.5",
"@jupyterlab/toc": "^6.3.5",
"@jupyterlab/translation": "^4.3.5",
"@jupyterlab/ui-components": "^4.3.5",
"@lumino/algorithm": "^2.0.2",
"@lumino/coreutils": "^2.2.0",
"@lumino/disposable": "^2.1.3",
"@lumino/domutils": "^2.0.2",
"@lumino/dragdrop": "^2.1.5",
"@lumino/messaging": "^2.0.2",
"@lumino/polling": "^2.1.3",
"@lumino/properties": "^2.0.2",
"@lumino/signaling": "^2.1.3",
"@lumino/virtualdom": "^2.0.2",
"@lumino/widgets": "^2.5.0",
"react": "^18.2.0"
}
},
"node_modules/@jupyterlab/observables": {
"version": "5.3.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/observables/-/observables-5.3.5.tgz",
"integrity": "sha512-cbeMGdZ/Jb/hjsK6D552WNOBoGehjp48Wsyjbmn8zNbKeV1eRl/35nuHEIW9gv5QNpmFY6hqNY8OE9LQZ0axqw==",
"license": "BSD-3-Clause",
"dependencies": {
"@lumino/algorithm": "^2.0.2",
"@lumino/coreutils": "^2.2.0",
"@lumino/disposable": "^2.1.3",
"@lumino/messaging": "^2.0.2",
"@lumino/signaling": "^2.1.3"
}
},
"node_modules/@jupyterlab/outputarea": {
"version": "4.3.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/outputarea/-/outputarea-4.3.5.tgz",
"integrity": "sha512-nIF+iurjMag+ipYnrE4qCzw/PIidnoO7P/rwP5wmsBET66KRJL/nNUz+u3/mAI99XdFGNrzP38IZ4tolL2dNIQ==",
"license": "BSD-3-Clause",
"dependencies": {
"@jupyterlab/apputils": "^4.4.5",
"@jupyterlab/nbformat": "^4.3.5",
"@jupyterlab/observables": "^5.3.5",
"@jupyterlab/rendermime": "^4.3.5",
"@jupyterlab/rendermime-interfaces": "^3.11.5",
"@jupyterlab/services": "^7.3.5",
"@jupyterlab/translation": "^4.3.5",
"@lumino/algorithm": "^2.0.2",
"@lumino/coreutils": "^2.2.0",
"@lumino/disposable": "^2.1.3",
"@lumino/messaging": "^2.0.2",
"@lumino/properties": "^2.0.2",
"@lumino/signaling": "^2.1.3",
"@lumino/widgets": "^2.5.0"
}
},
"node_modules/@jupyterlab/rendermime": {
"version": "4.3.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/rendermime/-/rendermime-4.3.5.tgz",
"integrity": "sha512-PmhAlKCbja7Gi2+lHU7GBVHnHa+XJMOw+6CvJ0ebRlKP+Bs1mOXu8kkGB3cBvnrFsBFRmMTK2LLrwy4W9V01xg==",
"license": "BSD-3-Clause",
"dependencies": {
"@jupyterlab/apputils": "^4.4.5",
"@jupyterlab/coreutils": "^6.3.5",
"@jupyterlab/nbformat": "^4.3.5",
"@jupyterlab/observables": "^5.3.5",
"@jupyterlab/rendermime-interfaces": "^3.11.5",
"@jupyterlab/services": "^7.3.5",
"@jupyterlab/translation": "^4.3.5",
"@lumino/coreutils": "^2.2.0",
"@lumino/messaging": "^2.0.2",
"@lumino/signaling": "^2.1.3",
"@lumino/widgets": "^2.5.0",
"lodash.escape": "^4.0.1"
}
},
"node_modules/@jupyterlab/rendermime-interfaces": {
"version": "3.11.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/rendermime-interfaces/-/rendermime-interfaces-3.11.5.tgz",
"integrity": "sha512-XP9sT3OeqP4q/YJf3N75XfmunLS59awStg14+aTOp23OnaKB6+0E51YL53w5AE7gwqziqtX9E4T4z5rUL2Zlfw==",
"license": "BSD-3-Clause",
"dependencies": {
"@lumino/coreutils": "^1.11.0 || ^2.2.0",
"@lumino/widgets": "^1.37.2 || ^2.5.0"
}
},
"node_modules/@jupyterlab/services": {
"version": "7.3.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/services/-/services-7.3.5.tgz",
"integrity": "sha512-TPRnUsRaxU3mcx01iiJ5JvxF/1JJd9pAwQE0v0Oshvvxowndf8hjf0NkYAbBVaRUrF01zW7QdSY80ERlbHvIqw==",
"license": "BSD-3-Clause",
"dependencies": {
"@jupyter/ydoc": "^3.0.0",
"@jupyterlab/coreutils": "^6.3.5",
"@jupyterlab/nbformat": "^4.3.5",
"@jupyterlab/settingregistry": "^4.3.5",
"@jupyterlab/statedb": "^4.3.5",
"@lumino/coreutils": "^2.2.0",
"@lumino/disposable": "^2.1.3",
"@lumino/polling": "^2.1.3",
"@lumino/properties": "^2.0.2",
"@lumino/signaling": "^2.1.3",
"ws": "^8.11.0"
}
},
"node_modules/@jupyterlab/settingregistry": {
"version": "4.3.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/settingregistry/-/settingregistry-4.3.5.tgz",
"integrity": "sha512-ygP9x0SWpTfWH8/gu9nnn4rB2+j9ZTBTvGVOH2rBShqsywPlHIG1jJz6Dn6ptq7Obg5KwHh3OFE7dEqRwvacJA==",
"license": "BSD-3-Clause",
"dependencies": {
"@jupyterlab/nbformat": "^4.3.5",
"@jupyterlab/statedb": "^4.3.5",
"@lumino/commands": "^2.3.1",
"@lumino/coreutils": "^2.2.0",
"@lumino/disposable": "^2.1.3",
"@lumino/signaling": "^2.1.3",
"@rjsf/utils": "^5.13.4",
"ajv": "^8.12.0",
"json5": "^2.2.3"
},
"peerDependencies": {
"react": ">=16"
}
},
"node_modules/@jupyterlab/statedb": {
"version": "4.3.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/statedb/-/statedb-4.3.5.tgz",
"integrity": "sha512-zUqywCIRhq26IuE6jW3qqk5EjPtP0lKSuHqRPG4TTRujVnwsksjIvwrmBCAB7rGfn13SLXUab7whYeNFDNAelg==",
"license": "BSD-3-Clause",
"dependencies": {
"@lumino/commands": "^2.3.1",
"@lumino/coreutils": "^2.2.0",
"@lumino/disposable": "^2.1.3",
"@lumino/properties": "^2.0.2",
"@lumino/signaling": "^2.1.3"
}
},
"node_modules/@jupyterlab/statusbar": {
"version": "4.3.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/statusbar/-/statusbar-4.3.5.tgz",
"integrity": "sha512-z2UnUdrHNYNzt65BV9WDEsaU0WBNyE8922uRBqJUKlWw4es8DIRpOlllfRFjrmJHgaGfn+TsY/JWn4vlMU80BQ==",
"license": "BSD-3-Clause",
"dependencies": {
"@jupyterlab/ui-components": "^4.3.5",
"@lumino/algorithm": "^2.0.2",
"@lumino/coreutils": "^2.2.0",
"@lumino/disposable": "^2.1.3",
"@lumino/messaging": "^2.0.2",
"@lumino/signaling": "^2.1.3",
"@lumino/widgets": "^2.5.0",
"react": "^18.2.0"
}
},
"node_modules/@jupyterlab/toc": {
"version": "6.3.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/toc/-/toc-6.3.5.tgz",
"integrity": "sha512-M5Q2SNaV+ZtghwBoVteqnQU1PBH2pSMRj7750mklGjZYxVfYGbzJ84OcJtskC6j2Own4ClE5Zp/IeoO+KBUT3g==",
"license": "BSD-3-Clause",
"dependencies": {
"@jupyter/react-components": "^0.16.6",
"@jupyterlab/apputils": "^4.4.5",
"@jupyterlab/coreutils": "^6.3.5",
"@jupyterlab/docregistry": "^4.3.5",
"@jupyterlab/observables": "^5.3.5",
"@jupyterlab/rendermime": "^4.3.5",
"@jupyterlab/rendermime-interfaces": "^3.11.5",
"@jupyterlab/translation": "^4.3.5",
"@jupyterlab/ui-components": "^4.3.5",
"@lumino/coreutils": "^2.2.0",
"@lumino/disposable": "^2.1.3",
"@lumino/messaging": "^2.0.2",
"@lumino/signaling": "^2.1.3",
"@lumino/widgets": "^2.5.0",
"react": "^18.2.0"
}
},
"node_modules/@jupyterlab/translation": {
"version": "4.3.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/translation/-/translation-4.3.5.tgz",
"integrity": "sha512-7nVzGkxroLRAkx/JgjTjGDuAPs55sI7lmiaGtCmquWSBubH8FYuA90bT1UubXa6yaOZNAHhtbk28YesQ2H80DA==",
"license": "BSD-3-Clause",
"dependencies": {
"@jupyterlab/coreutils": "^6.3.5",
"@jupyterlab/rendermime-interfaces": "^3.11.5",
"@jupyterlab/services": "^7.3.5",
"@jupyterlab/statedb": "^4.3.5",
"@lumino/coreutils": "^2.2.0"
}
},
"node_modules/@jupyterlab/ui-components": {
"version": "4.3.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/ui-components/-/ui-components-4.3.5.tgz",
"integrity": "sha512-kGT/2dj5lsvNuxDKxXKjVIfeXWudGp0SC9Pruldg4aMJKA1org+oVK0JcAfxw+huV3GR0SJ4q0HkBuyAUk4hvg==",
"license": "BSD-3-Clause",
"dependencies": {
"@jupyter/react-components": "^0.16.6",
"@jupyter/web-components": "^0.16.6",
"@jupyterlab/coreutils": "^6.3.5",
"@jupyterlab/observables": "^5.3.5",
"@jupyterlab/rendermime-interfaces": "^3.11.5",
"@jupyterlab/translation": "^4.3.5",
"@lumino/algorithm": "^2.0.2",
"@lumino/commands": "^2.3.1",
"@lumino/coreutils": "^2.2.0",
"@lumino/disposable": "^2.1.3",
"@lumino/messaging": "^2.0.2",
"@lumino/polling": "^2.1.3",
"@lumino/properties": "^2.0.2",
"@lumino/signaling": "^2.1.3",
"@lumino/virtualdom": "^2.0.2",
"@lumino/widgets": "^2.5.0",
"@rjsf/core": "^5.13.4",
"@rjsf/utils": "^5.13.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typestyle": "^2.0.4"
},
"peerDependencies": {
"react": "^18.2.0"
}
},
"node_modules/@lezer/common": {
"version": "1.2.3",
"resolved": "https://registry.npmjs.org/@lezer/common/-/common-1.2.3.tgz",
"integrity": "sha512-w7ojc8ejBqr2REPsWxJjrMFsA/ysDCFICn8zEOR9mrqzOu2amhITYuLD8ag6XZf0CFXDrhKqw7+tW8cX66NaDA==",
"license": "MIT"
},
"node_modules/@lezer/cpp": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/@lezer/cpp/-/cpp-1.1.2.tgz",