-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage-lock.json
9732 lines (9732 loc) · 400 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": "fugue-jupyter",
"version": "0.1.5",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"@babel/code-frame": {
"version": "7.12.11",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz",
"integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==",
"dev": true,
"requires": {
"@babel/highlight": "^7.10.4"
}
},
"@babel/helper-validator-identifier": {
"version": "7.16.7",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz",
"integrity": "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==",
"dev": true
},
"@babel/highlight": {
"version": "7.17.12",
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.17.12.tgz",
"integrity": "sha512-7yykMVF3hfZY2jsHZEEgLc+3x4o1O+fYyULu11GynEUQNwB6lua+IIQn1FiJxNucd5UlyJryrwsOh8PL9Sn8Qg==",
"dev": true,
"requires": {
"@babel/helper-validator-identifier": "^7.16.7",
"chalk": "^2.0.0",
"js-tokens": "^4.0.0"
},
"dependencies": {
"ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
"integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
"dev": true,
"requires": {
"color-convert": "^1.9.0"
}
},
"chalk": {
"version": "2.4.2",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
"dev": true,
"requires": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
"supports-color": "^5.3.0"
}
},
"color-convert": {
"version": "1.9.3",
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
"integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
"dev": true,
"requires": {
"color-name": "1.1.3"
}
},
"color-name": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
"integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==",
"dev": true
},
"escape-string-regexp": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
"integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==",
"dev": true
},
"has-flag": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
"integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
"dev": true
},
"supports-color": {
"version": "5.5.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
"integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
"dev": true,
"requires": {
"has-flag": "^3.0.0"
}
}
}
},
"@babel/runtime": {
"version": "7.18.3",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.18.3.tgz",
"integrity": "sha512-38Y8f7YUhce/K7RMwTp7m0uCumpv9hZkitCbBClqQIow1qSbCvGkcegKOXpEWCQLfWmevgRiWokZ1GkpfhbZug==",
"requires": {
"regenerator-runtime": "^0.13.4"
}
},
"@blueprintjs/colors": {
"version": "4.1.3",
"resolved": "https://registry.npmjs.org/@blueprintjs/colors/-/colors-4.1.3.tgz",
"integrity": "sha512-ANRQZT5h9+zC8B/y0S9B+SqEpicL0XRT4drAhiPFHBrOStRZWzOh3bPrwNSPqr7tdShxYtMyxbH+fkHMetZaxg=="
},
"@blueprintjs/core": {
"version": "3.54.0",
"resolved": "https://registry.npmjs.org/@blueprintjs/core/-/core-3.54.0.tgz",
"integrity": "sha512-u2c1s6MNn0ocxhnC6CuiG5g3KV6b4cKUvSobznepA9SC3/AL1s3XOvT7DLWoHRv2B/vBOHFYEDzLw2/vlcGGZg==",
"requires": {
"@blueprintjs/colors": "^4.0.0-alpha.3",
"@blueprintjs/icons": "^3.33.0",
"@juggle/resize-observer": "^3.3.1",
"@types/dom4": "^2.0.1",
"classnames": "^2.2",
"dom4": "^2.1.5",
"normalize.css": "^8.0.1",
"popper.js": "^1.16.1",
"react-lifecycles-compat": "^3.0.4",
"react-popper": "^1.3.7",
"react-transition-group": "^2.9.0",
"tslib": "~2.3.1"
}
},
"@blueprintjs/icons": {
"version": "3.33.0",
"resolved": "https://registry.npmjs.org/@blueprintjs/icons/-/icons-3.33.0.tgz",
"integrity": "sha512-Q6qoSDIm0kRYQZISm59UUcDCpV3oeHulkLuh3bSlw0HhcSjvEQh2PSYbtaifM60Q4aK4PCd6bwJHg7lvF1x5fQ==",
"requires": {
"classnames": "^2.2",
"tslib": "~2.3.1"
}
},
"@blueprintjs/select": {
"version": "3.19.1",
"resolved": "https://registry.npmjs.org/@blueprintjs/select/-/select-3.19.1.tgz",
"integrity": "sha512-8UJIZMaWXRMQHr14wbmzJc/CklcSKxOU5JUux0xXKQz/hDW/g1a650tlwJmnxufvRdShbGinlVfHupCs0EL6sw==",
"requires": {
"@blueprintjs/core": "^3.54.0",
"classnames": "^2.2",
"tslib": "~2.3.1"
}
},
"@discoveryjs/json-ext": {
"version": "0.5.7",
"resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz",
"integrity": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw=="
},
"@eslint/eslintrc": {
"version": "0.4.3",
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz",
"integrity": "sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==",
"dev": true,
"requires": {
"ajv": "^6.12.4",
"debug": "^4.1.1",
"espree": "^7.3.0",
"globals": "^13.9.0",
"ignore": "^4.0.6",
"import-fresh": "^3.2.1",
"js-yaml": "^3.13.1",
"minimatch": "^3.0.4",
"strip-json-comments": "^3.1.1"
},
"dependencies": {
"argparse": {
"version": "1.0.10",
"resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
"integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
"dev": true,
"requires": {
"sprintf-js": "~1.0.2"
}
},
"ignore": {
"version": "4.0.6",
"resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz",
"integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==",
"dev": true
},
"js-yaml": {
"version": "3.14.1",
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
"integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==",
"dev": true,
"requires": {
"argparse": "^1.0.7",
"esprima": "^4.0.0"
}
},
"strip-json-comments": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
"integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
"dev": true
}
}
},
"@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=="
},
"@gar/promisify": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.3.tgz",
"integrity": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw=="
},
"@humanwhocodes/config-array": {
"version": "0.5.0",
"resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz",
"integrity": "sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==",
"dev": true,
"requires": {
"@humanwhocodes/object-schema": "^1.2.0",
"debug": "^4.1.1",
"minimatch": "^3.0.4"
}
},
"@humanwhocodes/object-schema": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz",
"integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==",
"dev": true
},
"@hypnosphi/create-react-context": {
"version": "0.3.1",
"resolved": "https://registry.npmjs.org/@hypnosphi/create-react-context/-/create-react-context-0.3.1.tgz",
"integrity": "sha512-V1klUed202XahrWJLLOT3EXNeCpFHCcJntdFGI15ntCwau+jfT386w7OFTMaCqOgXUH1fa0w/I1oZs+i/Rfr0A==",
"requires": {
"gud": "^1.0.0",
"warning": "^4.0.3"
}
},
"@jridgewell/gen-mapping": {
"version": "0.3.1",
"resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.1.tgz",
"integrity": "sha512-GcHwniMlA2z+WFPWuY8lp3fsza0I8xPFMWL5+n8LYyP6PSvPrXf4+n8stDHZY2DM0zy9sVkRDy1jDI4XGzYVqg==",
"requires": {
"@jridgewell/set-array": "^1.0.0",
"@jridgewell/sourcemap-codec": "^1.4.10",
"@jridgewell/trace-mapping": "^0.3.9"
}
},
"@jridgewell/resolve-uri": {
"version": "3.0.7",
"resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.0.7.tgz",
"integrity": "sha512-8cXDaBBHOr2pQ7j77Y6Vp5VDT2sIqWyWQ56TjEq4ih/a4iST3dItRe8Q9fp0rrIl9DoKhWQtUQz/YpOxLkXbNA=="
},
"@jridgewell/set-array": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.1.tgz",
"integrity": "sha512-Ct5MqZkLGEXTVmQYbGtx9SVqD2fqwvdubdps5D3djjAkgkKwT918VNOz65pEHFaYTeWcukmJmH5SwsA9Tn2ObQ=="
},
"@jridgewell/source-map": {
"version": "0.3.2",
"resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz",
"integrity": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==",
"requires": {
"@jridgewell/gen-mapping": "^0.3.0",
"@jridgewell/trace-mapping": "^0.3.9"
}
},
"@jridgewell/sourcemap-codec": {
"version": "1.4.13",
"resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.13.tgz",
"integrity": "sha512-GryiOJmNcWbovBxTfZSF71V/mXbgcV3MewDe3kIMCLyIh5e7SKAeUZs+rMnJ8jkMolZ/4/VsdBmMrw3l+VdZ3w=="
},
"@jridgewell/trace-mapping": {
"version": "0.3.13",
"resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.13.tgz",
"integrity": "sha512-o1xbKhp9qnIAoHJSWd6KlCZfqslL4valSF81H8ImioOAxluWYWOpWkpyktY2vnt4tbrX9XYaxovq6cgowaJp2w==",
"requires": {
"@jridgewell/resolve-uri": "^3.0.3",
"@jridgewell/sourcemap-codec": "^1.4.10"
}
},
"@juggle/resize-observer": {
"version": "3.3.1",
"resolved": "https://registry.npmjs.org/@juggle/resize-observer/-/resize-observer-3.3.1.tgz",
"integrity": "sha512-zMM9Ds+SawiUkakS7y94Ymqx+S0ORzpG3frZirN3l+UlXUmSUR7hF4wxCVqW+ei94JzV5kt0uXBcoOEAuiydrw=="
},
"@jupyterlab/application": {
"version": "3.4.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/application/-/application-3.4.2.tgz",
"integrity": "sha512-B+ydkfSkOsDnkq0ReL0c9N4Nx3E6qCqWuN9kAsl/Q0kGkR1mb1/7b+aa6CTsLnlIwO9N7lATyin8oU77VTHPPQ==",
"requires": {
"@fortawesome/fontawesome-free": "^5.12.0",
"@jupyterlab/apputils": "^3.4.2",
"@jupyterlab/coreutils": "^5.4.2",
"@jupyterlab/docregistry": "^3.4.2",
"@jupyterlab/rendermime": "^3.4.2",
"@jupyterlab/rendermime-interfaces": "^3.4.2",
"@jupyterlab/services": "^6.4.2",
"@jupyterlab/statedb": "^3.4.2",
"@jupyterlab/translation": "^3.4.2",
"@jupyterlab/ui-components": "^3.4.2",
"@lumino/algorithm": "^1.9.0",
"@lumino/application": "^1.27.0",
"@lumino/commands": "^1.19.0",
"@lumino/coreutils": "^1.11.0",
"@lumino/disposable": "^1.10.0",
"@lumino/messaging": "^1.10.0",
"@lumino/polling": "^1.9.0",
"@lumino/properties": "^1.8.0",
"@lumino/signaling": "^1.10.0",
"@lumino/widgets": "^1.30.0"
}
},
"@jupyterlab/apputils": {
"version": "3.4.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/apputils/-/apputils-3.4.2.tgz",
"integrity": "sha512-45eP3JIQyzHt7InhMS9d25ZlrI5m33HUEOS3NtWF0kyE4wJeJ8Vzp4hHiFTaTZ8Tcue3cHqTsMmCX7thB8kz0A==",
"requires": {
"@jupyterlab/coreutils": "^5.4.2",
"@jupyterlab/observables": "^4.4.2",
"@jupyterlab/services": "^6.4.2",
"@jupyterlab/settingregistry": "^3.4.2",
"@jupyterlab/statedb": "^3.4.2",
"@jupyterlab/translation": "^3.4.2",
"@jupyterlab/ui-components": "^3.4.2",
"@lumino/algorithm": "^1.9.0",
"@lumino/commands": "^1.19.0",
"@lumino/coreutils": "^1.11.0",
"@lumino/disposable": "^1.10.0",
"@lumino/domutils": "^1.8.0",
"@lumino/messaging": "^1.10.0",
"@lumino/polling": "^1.9.0",
"@lumino/properties": "^1.8.0",
"@lumino/signaling": "^1.10.0",
"@lumino/virtualdom": "^1.14.0",
"@lumino/widgets": "^1.30.0",
"@types/react": "^17.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"sanitize-html": "~2.5.3",
"url": "^0.11.0"
}
},
"@jupyterlab/attachments": {
"version": "3.4.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/attachments/-/attachments-3.4.2.tgz",
"integrity": "sha512-VfjmaDhNUOFJe1ngP/RpMMFCj0QRHEArPMSml/clOXwfjN8BhAzOkE1kYsSxOyWVMIWvVDVNFHSuXA4XYRtszg==",
"requires": {
"@jupyterlab/nbformat": "^3.4.2",
"@jupyterlab/observables": "^4.4.2",
"@jupyterlab/rendermime": "^3.4.2",
"@jupyterlab/rendermime-interfaces": "^3.4.2",
"@lumino/disposable": "^1.10.0",
"@lumino/signaling": "^1.10.0"
}
},
"@jupyterlab/builder": {
"version": "3.4.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/builder/-/builder-3.4.2.tgz",
"integrity": "sha512-dkyhOnmCl/ux423+l6l09bxzjhk9nv/l/ql4wttlCPCjeRfSG3mYx/SqCk0cemysDol5VVyX6eDtVQCbiXLHWQ==",
"requires": {
"@jupyterlab/buildutils": "^3.4.2",
"@lumino/algorithm": "^1.9.0",
"@lumino/application": "^1.27.0",
"@lumino/commands": "^1.19.0",
"@lumino/coreutils": "^1.11.0",
"@lumino/disposable": "^1.10.0",
"@lumino/domutils": "^1.8.0",
"@lumino/dragdrop": "^1.13.0",
"@lumino/messaging": "^1.10.0",
"@lumino/properties": "^1.8.0",
"@lumino/signaling": "^1.10.0",
"@lumino/virtualdom": "^1.14.0",
"@lumino/widgets": "^1.30.0",
"ajv": "^6.12.3",
"commander": "~6.0.0",
"css-loader": "^5.0.1",
"duplicate-package-checker-webpack-plugin": "^3.0.0",
"file-loader": "~6.0.0",
"fs-extra": "^9.0.1",
"glob": "~7.1.6",
"license-webpack-plugin": "^2.3.14",
"mini-css-extract-plugin": "~1.3.2",
"path-browserify": "^1.0.0",
"process": "^0.11.10",
"raw-loader": "~4.0.0",
"style-loader": "~2.0.0",
"supports-color": "^7.2.0",
"svg-url-loader": "~6.0.0",
"terser-webpack-plugin": "^4.1.0",
"to-string-loader": "^1.1.6",
"url-loader": "~4.1.0",
"webpack": "^5.41.1",
"webpack-cli": "^4.1.0",
"webpack-merge": "^5.1.2",
"worker-loader": "^3.0.2"
}
},
"@jupyterlab/buildutils": {
"version": "3.4.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/buildutils/-/buildutils-3.4.2.tgz",
"integrity": "sha512-3MD2OGOIT9VbHDmmjPr8vEBcIPdN+5ssD+WBnDWrUfaVKlVf+PXQzg+CnEgFqu98KMGRAR7yiX13q3vtGs7oYA==",
"requires": {
"@lumino/coreutils": "^1.11.0",
"@yarnpkg/lockfile": "^1.1.0",
"child_process": "~1.0.2",
"commander": "~6.0.0",
"crypto": "~1.0.1",
"dependency-graph": "^0.9.0",
"fs-extra": "^9.0.1",
"glob": "~7.1.6",
"inquirer": "^7.1.0",
"minimatch": "~3.0.4",
"os": "~0.1.1",
"package-json": "^6.5.0",
"prettier": "~2.1.1",
"process": "^0.11.10",
"semver": "^7.3.2",
"sort-package-json": "~1.44.0",
"typescript": "~4.1.3",
"verdaccio": "^5.1.1"
}
},
"@jupyterlab/cells": {
"version": "3.4.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/cells/-/cells-3.4.2.tgz",
"integrity": "sha512-RursRNaVo6pnd5hnNkq0j/2bVrskZQVvuk1JfBa/GQezXdqrhBD3kEbMOO7az5YDdKQVvv4gvhy75GaUGD2EIA==",
"requires": {
"@jupyterlab/apputils": "^3.4.2",
"@jupyterlab/attachments": "^3.4.2",
"@jupyterlab/codeeditor": "^3.4.2",
"@jupyterlab/codemirror": "^3.4.2",
"@jupyterlab/coreutils": "^5.4.2",
"@jupyterlab/filebrowser": "^3.4.2",
"@jupyterlab/nbformat": "^3.4.2",
"@jupyterlab/observables": "^4.4.2",
"@jupyterlab/outputarea": "^3.4.2",
"@jupyterlab/rendermime": "^3.4.2",
"@jupyterlab/services": "^6.4.2",
"@jupyterlab/shared-models": "^3.4.2",
"@jupyterlab/ui-components": "^3.4.2",
"@lumino/algorithm": "^1.9.0",
"@lumino/coreutils": "^1.11.0",
"@lumino/domutils": "^1.8.0",
"@lumino/dragdrop": "^1.13.0",
"@lumino/messaging": "^1.10.0",
"@lumino/polling": "^1.9.0",
"@lumino/signaling": "^1.10.0",
"@lumino/virtualdom": "^1.14.0",
"@lumino/widgets": "^1.30.0",
"marked": "^4.0.10",
"react": "^17.0.1"
}
},
"@jupyterlab/codeeditor": {
"version": "3.4.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/codeeditor/-/codeeditor-3.4.2.tgz",
"integrity": "sha512-eB8ZIXaZ54khxJAIhDAkGnocNZwWXqHGnu197pwtQrnRu/hVIS+qSvFB6Nkw9z4EG7rXzqf4p7Q2k0oz129kRg==",
"requires": {
"@jupyterlab/coreutils": "^5.4.2",
"@jupyterlab/nbformat": "^3.4.2",
"@jupyterlab/observables": "^4.4.2",
"@jupyterlab/shared-models": "^3.4.2",
"@jupyterlab/translation": "^3.4.2",
"@jupyterlab/ui-components": "^3.4.2",
"@lumino/coreutils": "^1.11.0",
"@lumino/disposable": "^1.10.0",
"@lumino/dragdrop": "^1.13.0",
"@lumino/messaging": "^1.10.0",
"@lumino/signaling": "^1.10.0",
"@lumino/widgets": "^1.30.0"
}
},
"@jupyterlab/codemirror": {
"version": "3.4.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/codemirror/-/codemirror-3.4.2.tgz",
"integrity": "sha512-NVOkjFDipcnWaQKsrRgN8xlQt56UUV/crjSzn8wwqvu3MsUwtvfhH5BVjUgpORPEdg7Z2R6G6IdFhvqPpk0GIQ==",
"requires": {
"@jupyterlab/apputils": "^3.4.2",
"@jupyterlab/codeeditor": "^3.4.2",
"@jupyterlab/coreutils": "^5.4.2",
"@jupyterlab/nbformat": "^3.4.2",
"@jupyterlab/observables": "^4.4.2",
"@jupyterlab/shared-models": "^3.4.2",
"@jupyterlab/statusbar": "^3.4.2",
"@jupyterlab/translation": "^3.4.2",
"@lumino/algorithm": "^1.9.0",
"@lumino/commands": "^1.19.0",
"@lumino/coreutils": "^1.11.0",
"@lumino/disposable": "^1.10.0",
"@lumino/polling": "^1.9.0",
"@lumino/signaling": "^1.10.0",
"@lumino/widgets": "^1.30.0",
"codemirror": "~5.61.0",
"react": "^17.0.1",
"y-codemirror": "^3.0.1"
}
},
"@jupyterlab/codemirror-extension": {
"version": "3.4.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/codemirror-extension/-/codemirror-extension-3.4.2.tgz",
"integrity": "sha512-QlIpaaLfp3FT3HWTitYhhtMFxLCQEzpQYF1k+Z0tp2lR2Xor/wGkbS+TUps11NDZp9kEvCWiq505E7wjNSADAQ==",
"requires": {
"@jupyterlab/application": "^3.4.2",
"@jupyterlab/codeeditor": "^3.4.2",
"@jupyterlab/codemirror": "^3.4.2",
"@jupyterlab/docregistry": "^3.4.2",
"@jupyterlab/fileeditor": "^3.4.2",
"@jupyterlab/mainmenu": "^3.4.2",
"@jupyterlab/settingregistry": "^3.4.2",
"@jupyterlab/statusbar": "^3.4.2",
"@jupyterlab/translation": "^3.4.2",
"codemirror": "~5.61.0"
}
},
"@jupyterlab/completer": {
"version": "3.4.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/completer/-/completer-3.4.2.tgz",
"integrity": "sha512-WphYeIQ+1EWGKsMoL8byGrYtiIGew0povs7HrVIga+FSEPBUmcEbzjYFz86CSaWbVocDmiEBdTkNcoOLvafGlw==",
"requires": {
"@jupyterlab/apputils": "^3.4.2",
"@jupyterlab/codeeditor": "^3.4.2",
"@jupyterlab/coreutils": "^5.4.2",
"@jupyterlab/services": "^6.4.2",
"@jupyterlab/statedb": "^3.4.2",
"@jupyterlab/ui-components": "^3.4.2",
"@lumino/algorithm": "^1.9.0",
"@lumino/coreutils": "^1.11.0",
"@lumino/disposable": "^1.10.0",
"@lumino/domutils": "^1.8.0",
"@lumino/messaging": "^1.10.0",
"@lumino/signaling": "^1.10.0",
"@lumino/widgets": "^1.30.0"
}
},
"@jupyterlab/coreutils": {
"version": "5.4.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/coreutils/-/coreutils-5.4.2.tgz",
"integrity": "sha512-1PknPzlwVLSvKDjx2933G62vP+Fzm5HoaAp+Q3i0sPNos7FtKFXJSltORynjICHIO8MGKUWt+0UFRkB2HZ8JVg==",
"requires": {
"@lumino/coreutils": "^1.11.0",
"@lumino/disposable": "^1.10.0",
"@lumino/signaling": "^1.10.0",
"minimist": "~1.2.0",
"moment": "^2.24.0",
"path-browserify": "^1.0.0",
"url-parse": "~1.5.1"
}
},
"@jupyterlab/docmanager": {
"version": "3.4.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/docmanager/-/docmanager-3.4.2.tgz",
"integrity": "sha512-g6lzxL/LkuEj1gDPjlyEijxIi7jsx9LemwByVE+GJL5IZQILgT9+k4ToE1L/1sQ3PkCzhGo7HxiDzrp6pcHsZg==",
"requires": {
"@jupyterlab/apputils": "^3.4.2",
"@jupyterlab/coreutils": "^5.4.2",
"@jupyterlab/docprovider": "^3.4.2",
"@jupyterlab/docregistry": "^3.4.2",
"@jupyterlab/services": "^6.4.2",
"@jupyterlab/statusbar": "^3.4.2",
"@jupyterlab/translation": "^3.4.2",
"@lumino/algorithm": "^1.9.0",
"@lumino/coreutils": "^1.11.0",
"@lumino/disposable": "^1.10.0",
"@lumino/messaging": "^1.10.0",
"@lumino/properties": "^1.8.0",
"@lumino/signaling": "^1.10.0",
"@lumino/widgets": "^1.30.0",
"react": "^17.0.1"
}
},
"@jupyterlab/docprovider": {
"version": "3.4.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/docprovider/-/docprovider-3.4.2.tgz",
"integrity": "sha512-sq7WD7haFhIxsnBJ0n5OTTNxi9vnXDeQPdEi3BFaPNY82EGGppHaa2omslTldwN9qQkKPzBcaRbJS+xwCbLu+Q==",
"requires": {
"@jupyterlab/shared-models": "^3.4.2",
"@lumino/coreutils": "^1.11.0",
"lib0": "^0.2.42",
"y-websocket": "^1.3.15",
"yjs": "^13.5.17"
}
},
"@jupyterlab/docregistry": {
"version": "3.4.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/docregistry/-/docregistry-3.4.2.tgz",
"integrity": "sha512-J1y3lgfdn2kqvP6316HHhbLd4hqpnn11fyNSDueIHiCyDfich4QyKNEOHY+IF5kg6TyI6k5AF3lPou+VTQU8Qg==",
"requires": {
"@jupyterlab/apputils": "^3.4.2",
"@jupyterlab/codeeditor": "^3.4.2",
"@jupyterlab/codemirror": "^3.4.2",
"@jupyterlab/coreutils": "^5.4.2",
"@jupyterlab/docprovider": "^3.4.2",
"@jupyterlab/observables": "^4.4.2",
"@jupyterlab/rendermime": "^3.4.2",
"@jupyterlab/rendermime-interfaces": "^3.4.2",
"@jupyterlab/services": "^6.4.2",
"@jupyterlab/shared-models": "^3.4.2",
"@jupyterlab/translation": "^3.4.2",
"@jupyterlab/ui-components": "^3.4.2",
"@lumino/algorithm": "^1.9.0",
"@lumino/coreutils": "^1.11.0",
"@lumino/disposable": "^1.10.0",
"@lumino/messaging": "^1.10.0",
"@lumino/signaling": "^1.10.0",
"@lumino/widgets": "^1.30.0",
"yjs": "^13.5.17"
}
},
"@jupyterlab/filebrowser": {
"version": "3.4.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/filebrowser/-/filebrowser-3.4.2.tgz",
"integrity": "sha512-4klJdau94YVZzESVWfRfd8n7g0c7/UsU9WQ40XEw64gA2R31j0x9Ls8zTVrQJBJka4Zz9nd/3eTAZoeZ7/hT/A==",
"requires": {
"@jupyterlab/apputils": "^3.4.2",
"@jupyterlab/coreutils": "^5.4.2",
"@jupyterlab/docmanager": "^3.4.2",
"@jupyterlab/docregistry": "^3.4.2",
"@jupyterlab/services": "^6.4.2",
"@jupyterlab/statedb": "^3.4.2",
"@jupyterlab/statusbar": "^3.4.2",
"@jupyterlab/translation": "^3.4.2",
"@jupyterlab/ui-components": "^3.4.2",
"@lumino/algorithm": "^1.9.0",
"@lumino/coreutils": "^1.11.0",
"@lumino/disposable": "^1.10.0",
"@lumino/domutils": "^1.8.0",
"@lumino/dragdrop": "^1.13.0",
"@lumino/messaging": "^1.10.0",
"@lumino/polling": "^1.9.0",
"@lumino/signaling": "^1.10.0",
"@lumino/virtualdom": "^1.14.0",
"@lumino/widgets": "^1.30.0",
"react": "^17.0.1"
}
},
"@jupyterlab/fileeditor": {
"version": "3.4.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/fileeditor/-/fileeditor-3.4.2.tgz",
"integrity": "sha512-0jrlfUPF8nT/+qFKf8DOubeK0L/jQMT/fyNeguYtycT8cx00VJDXmraRPJ87fWMr3304rSJ9Ccobonw5INRolg==",
"requires": {
"@jupyterlab/apputils": "^3.4.2",
"@jupyterlab/codeeditor": "^3.4.2",
"@jupyterlab/docregistry": "^3.4.2",
"@jupyterlab/statusbar": "^3.4.2",
"@jupyterlab/translation": "^3.4.2",
"@jupyterlab/ui-components": "^3.4.2",
"@lumino/coreutils": "^1.11.0",
"@lumino/messaging": "^1.10.0",
"@lumino/widgets": "^1.30.0",
"react": "^17.0.1"
}
},
"@jupyterlab/logconsole": {
"version": "3.4.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/logconsole/-/logconsole-3.4.2.tgz",
"integrity": "sha512-x5ssTrsCCDofeJ4xUyd7kCp1FasrNnnb9oH4m44CU4DxDSZgNXiLBRlDQpp8cKOAXlJbANEzaEnWmFlsrHazhw==",
"requires": {
"@jupyterlab/coreutils": "^5.4.2",
"@jupyterlab/nbformat": "^3.4.2",
"@jupyterlab/outputarea": "^3.4.2",
"@jupyterlab/rendermime": "^3.4.2",
"@jupyterlab/services": "^6.4.2",
"@jupyterlab/translation": "^3.4.2",
"@lumino/coreutils": "^1.11.0",
"@lumino/disposable": "^1.10.0",
"@lumino/messaging": "^1.10.0",
"@lumino/signaling": "^1.10.0",
"@lumino/widgets": "^1.30.0"
}
},
"@jupyterlab/mainmenu": {
"version": "3.4.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/mainmenu/-/mainmenu-3.4.2.tgz",
"integrity": "sha512-P2L8umDWbF5eAF3T+yEDBixvT5qQRPHMkFLQiTGXEJeKgZkqF2CovEGdbkec8PTfiUQ1PYBFUok4cXsbz86lwQ==",
"requires": {
"@jupyterlab/apputils": "^3.4.2",
"@jupyterlab/services": "^6.4.2",
"@jupyterlab/translation": "^3.4.2",
"@jupyterlab/ui-components": "^3.4.2",
"@lumino/algorithm": "^1.9.0",
"@lumino/commands": "^1.19.0",
"@lumino/coreutils": "^1.11.0",
"@lumino/widgets": "^1.30.0"
}
},
"@jupyterlab/nbformat": {
"version": "3.4.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/nbformat/-/nbformat-3.4.2.tgz",
"integrity": "sha512-P1/f2O25s8agvjL0i0qRsh8+zp5WMyNXDq5ArApGDpAuzPc+5spLeZKEGj5nosRBoAVQsI1he+/0NOZD2bivBg==",
"requires": {
"@lumino/coreutils": "^1.11.0"
}
},
"@jupyterlab/notebook": {
"version": "3.4.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/notebook/-/notebook-3.4.2.tgz",
"integrity": "sha512-mVi98XDnAFLMFtQFxKJV7BLgQlIBgimYfI0yJipbq4f4u6bQDOJrQSnVoX3jfcdckfH3Jbkf9aqL9NikSZfuGg==",
"requires": {
"@jupyterlab/apputils": "^3.4.2",
"@jupyterlab/cells": "^3.4.2",
"@jupyterlab/codeeditor": "^3.4.2",
"@jupyterlab/coreutils": "^5.4.2",
"@jupyterlab/docregistry": "^3.4.2",
"@jupyterlab/nbformat": "^3.4.2",
"@jupyterlab/observables": "^4.4.2",
"@jupyterlab/rendermime": "^3.4.2",
"@jupyterlab/services": "^6.4.2",
"@jupyterlab/settingregistry": "^3.4.2",
"@jupyterlab/shared-models": "^3.4.2",
"@jupyterlab/statusbar": "^3.4.2",
"@jupyterlab/translation": "^3.4.2",
"@jupyterlab/ui-components": "^3.4.2",
"@lumino/algorithm": "^1.9.0",
"@lumino/coreutils": "^1.11.0",
"@lumino/domutils": "^1.8.0",
"@lumino/dragdrop": "^1.13.0",
"@lumino/messaging": "^1.10.0",
"@lumino/properties": "^1.8.0",
"@lumino/signaling": "^1.10.0",
"@lumino/virtualdom": "^1.14.0",
"@lumino/widgets": "^1.30.0",
"react": "^17.0.1"
}
},
"@jupyterlab/observables": {
"version": "4.4.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/observables/-/observables-4.4.2.tgz",
"integrity": "sha512-FddP9TDv149Ler2ONWVfZet0rsQUDax6Z07vjVgtJfVuKCulvmRrmUQu/faGqNlPXx0/71odv3UeinIR5stQXA==",
"requires": {
"@lumino/algorithm": "^1.9.0",
"@lumino/coreutils": "^1.11.0",
"@lumino/disposable": "^1.10.0",
"@lumino/messaging": "^1.10.0",
"@lumino/signaling": "^1.10.0"
}
},
"@jupyterlab/outputarea": {
"version": "3.4.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/outputarea/-/outputarea-3.4.2.tgz",
"integrity": "sha512-OTxM0G5AChbHwgCW7mijiumbukubXdz0sic3oNclRpaZnV4E+O/Uq0gyLRay8ya9hVhUk8uGoYXncovMmKrF0A==",
"requires": {
"@jupyterlab/apputils": "^3.4.2",
"@jupyterlab/nbformat": "^3.4.2",
"@jupyterlab/observables": "^4.4.2",
"@jupyterlab/rendermime": "^3.4.2",
"@jupyterlab/rendermime-interfaces": "^3.4.2",
"@jupyterlab/services": "^6.4.2",
"@lumino/algorithm": "^1.9.0",
"@lumino/coreutils": "^1.11.0",
"@lumino/disposable": "^1.10.0",
"@lumino/messaging": "^1.10.0",
"@lumino/properties": "^1.8.0",
"@lumino/signaling": "^1.10.0",
"@lumino/widgets": "^1.30.0",
"resize-observer-polyfill": "^1.5.1"
}
},
"@jupyterlab/rendermime": {
"version": "3.4.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/rendermime/-/rendermime-3.4.2.tgz",
"integrity": "sha512-77eq4TuZYU3WB8k/rGRS53FJiCXQce7fQksiRf+rytf8SCGNwoLmGp4UJRw+cLd+XrYqAnugLkoQ7JpqhYUTwQ==",
"requires": {
"@jupyterlab/apputils": "^3.4.2",
"@jupyterlab/codemirror": "^3.4.2",
"@jupyterlab/coreutils": "^5.4.2",
"@jupyterlab/nbformat": "^3.4.2",
"@jupyterlab/observables": "^4.4.2",
"@jupyterlab/rendermime-interfaces": "^3.4.2",
"@jupyterlab/services": "^6.4.2",
"@jupyterlab/translation": "^3.4.2",
"@lumino/algorithm": "^1.9.0",
"@lumino/coreutils": "^1.11.0",
"@lumino/messaging": "^1.10.0",
"@lumino/signaling": "^1.10.0",
"@lumino/widgets": "^1.30.0",
"lodash.escape": "^4.0.1",
"marked": "^4.0.10"
}
},
"@jupyterlab/rendermime-interfaces": {
"version": "3.4.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/rendermime-interfaces/-/rendermime-interfaces-3.4.2.tgz",
"integrity": "sha512-BXUeNYgg+YWgvuhqpC8AXuDtes7Gu+batQf00Tni+gzZzfMSx+mGKHp1dvPNlGdfBq8BVjkAVTfkgUIw0y3YnA==",
"requires": {
"@jupyterlab/translation": "^3.4.2",
"@lumino/coreutils": "^1.11.0",
"@lumino/widgets": "^1.30.0"
}
},
"@jupyterlab/services": {
"version": "6.4.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/services/-/services-6.4.2.tgz",
"integrity": "sha512-8Ykc8lufSPSCJsB015B1xcSq6LYpSR1tPx6qagg+9NBxcrk8gkn2uhzXa1s+6B1ZbX/bub9/eTWWQKR2eDHHNA==",
"requires": {
"@jupyterlab/coreutils": "^5.4.2",
"@jupyterlab/nbformat": "^3.4.2",
"@jupyterlab/observables": "^4.4.2",
"@jupyterlab/settingregistry": "^3.4.2",
"@jupyterlab/statedb": "^3.4.2",
"@lumino/algorithm": "^1.9.0",
"@lumino/coreutils": "^1.11.0",
"@lumino/disposable": "^1.10.0",
"@lumino/polling": "^1.9.0",
"@lumino/signaling": "^1.10.0",
"node-fetch": "^2.6.0",
"ws": "^7.4.6"
}
},
"@jupyterlab/settingregistry": {
"version": "3.4.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/settingregistry/-/settingregistry-3.4.2.tgz",
"integrity": "sha512-tXJRlkUrjogBgfCG9cT5zjG7lAdiki4h2hLWbuGfZk6BHnQTT45uHmUPRVX3O60ToOEJ+ltXOBHrz3vVj7x3gw==",
"requires": {
"@jupyterlab/statedb": "^3.4.2",
"@lumino/commands": "^1.19.0",
"@lumino/coreutils": "^1.11.0",
"@lumino/disposable": "^1.10.0",
"@lumino/signaling": "^1.10.0",
"ajv": "^6.12.3",
"json5": "^2.1.1"
}
},
"@jupyterlab/shared-models": {
"version": "3.4.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/shared-models/-/shared-models-3.4.2.tgz",
"integrity": "sha512-xAhv0NKLja9cPluquIXqBjK6CrMNN0yqxmTnoDKFTQV3HegVz6wTaoQNEmGl4RInnpwA037Jdae3KrtT82OrxA==",
"requires": {
"@jupyterlab/nbformat": "^3.4.2",
"@lumino/coreutils": "^1.11.0",
"@lumino/disposable": "^1.10.0",
"@lumino/signaling": "^1.10.0",
"y-protocols": "^1.0.5",
"yjs": "^13.5.17"
}
},
"@jupyterlab/statedb": {
"version": "3.4.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/statedb/-/statedb-3.4.2.tgz",
"integrity": "sha512-MTPxIjI55kdj6AkKGNmrXdQ8xJ3HgnYE9kXd14/llyqV+KE9HKH7Jry7B/iMgoCVPF7zVHBPjc9i7oy6uQ5Oqg==",
"requires": {
"@lumino/commands": "^1.19.0",
"@lumino/coreutils": "^1.11.0",
"@lumino/disposable": "^1.10.0",
"@lumino/properties": "^1.8.0",
"@lumino/signaling": "^1.10.0"
}
},
"@jupyterlab/statusbar": {
"version": "3.4.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/statusbar/-/statusbar-3.4.2.tgz",
"integrity": "sha512-33LoNHRON7d+AA7Y/x6NR4ky/FsEgEUY/ZDAGCClcfdfbG1Hlpt6VzwSOrFtQ4AY2tP715r/wQKRW+J8miy1Dg==",
"requires": {
"@jupyterlab/apputils": "^3.4.2",
"@jupyterlab/codeeditor": "^3.4.2",
"@jupyterlab/services": "^6.4.2",
"@jupyterlab/translation": "^3.4.2",
"@jupyterlab/ui-components": "^3.4.2",
"@lumino/algorithm": "^1.9.0",
"@lumino/coreutils": "^1.11.0",
"@lumino/disposable": "^1.10.0",
"@lumino/messaging": "^1.10.0",
"@lumino/signaling": "^1.10.0",
"@lumino/widgets": "^1.30.0",
"csstype": "~3.0.3",
"react": "^17.0.1",
"typestyle": "^2.0.4"
}
},
"@jupyterlab/tooltip": {
"version": "3.4.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/tooltip/-/tooltip-3.4.2.tgz",
"integrity": "sha512-kO2hNYPjSdbUHS4BaN5P+Uak/d4N78fefD8a8qSUWgBiaCwIU/2LB2oNO0VyVTmYRIuLGi9O3h6MhCNUM4bjug==",
"requires": {
"@jupyterlab/apputils": "^3.4.2",
"@jupyterlab/codeeditor": "^3.4.2",
"@jupyterlab/rendermime": "^3.4.2",
"@jupyterlab/services": "^6.4.2",
"@lumino/coreutils": "^1.11.0",
"@lumino/messaging": "^1.10.0",
"@lumino/widgets": "^1.30.0"
}
},
"@jupyterlab/translation": {
"version": "3.4.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/translation/-/translation-3.4.2.tgz",
"integrity": "sha512-eD1B794IYhJf8acwM2pNG4qMDckmilVi/4kiARAXapqVwTaw2Bd4f5FIHixo3GokFCwTel9KXaHF4IoP7Qg5Rg==",
"requires": {
"@jupyterlab/coreutils": "^5.4.2",
"@jupyterlab/services": "^6.4.2",
"@jupyterlab/statedb": "^3.4.2",
"@lumino/coreutils": "^1.11.0"
}
},
"@jupyterlab/ui-components": {
"version": "3.4.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/ui-components/-/ui-components-3.4.2.tgz",
"integrity": "sha512-m3bYkGnOstik9MAU+fN5kyUIWnyyRreu8K/GqGhf9j7fFGVZmEzetWIvdPg77wtGXcnXZIox2Irm2pdrqjrJHg==",
"requires": {
"@blueprintjs/core": "^3.36.0",
"@blueprintjs/select": "^3.15.0",
"@jupyterlab/coreutils": "^5.4.2",
"@jupyterlab/translation": "^3.4.2",
"@lumino/algorithm": "^1.9.0",
"@lumino/commands": "^1.19.0",
"@lumino/coreutils": "^1.11.0",
"@lumino/disposable": "^1.10.0",
"@lumino/signaling": "^1.10.0",
"@lumino/virtualdom": "^1.14.0",
"@lumino/widgets": "^1.30.0",
"@rjsf/core": "^3.1.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"typestyle": "^2.0.4"
}
},
"@krassowski/code-jumpers": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/@krassowski/code-jumpers/-/code-jumpers-1.2.0.tgz",
"integrity": "sha512-WK+03pXS/2aLulgHuLzxsuUdhoy4WKOMn609eXxaFM4Rq5SxrCQ0BS1nYktI87Ptcx1i9Tm8sM2d778NjIQAZA=="
},
"@krassowski/completion-theme": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@krassowski/completion-theme/-/completion-theme-3.3.0.tgz",
"integrity": "sha512-iMr2+f/SLjcSrJ51aLm2+ntWgR1S+kA/eMBYItOt0lhG0q+4pL3Wd6CjmGJYD5oVRJllgS2kX8DcYrBuzNE0aA=="
},
"@krassowski/jupyterlab-lsp": {
"version": "3.10.1",
"resolved": "https://registry.npmjs.org/@krassowski/jupyterlab-lsp/-/jupyterlab-lsp-3.10.1.tgz",
"integrity": "sha512-IGe7S947UDk3ILtsJruOePHAuSZTh0N65h55IBzbrk6gxduxubmlBtsJrFxdVZ4QoJVMaj39DpOJyESzxVytQQ==",
"requires": {
"@krassowski/code-jumpers": "~1.2.0",
"@krassowski/completion-theme": "~3.3.0",
"@krassowski/theme-material": "~2.1.1",
"@krassowski/theme-vscode": "~2.1.1",
"lodash.mergewith": "^4.6.1",
"lsp-ws-connection": "~0.7.0"
},
"dependencies": {
"lsp-ws-connection": {
"version": "0.7.0",
"resolved": "https://registry.npmjs.org/lsp-ws-connection/-/lsp-ws-connection-0.7.0.tgz",
"integrity": "sha512-MjoUfCFnATcTzERtaNXR7KvCY0NJ6A9eBk8B6jvctr1YIIINQ68CCr2ULq4O1otd5rMjV590QnqFd888T7NaFQ==",
"requires": {
"vscode-jsonrpc": "^6.0.0",
"vscode-languageserver-protocol": "^3.16.0",
"vscode-languageserver-types": "^3.16.0",
"vscode-ws-jsonrpc": "0.2.0"
}
}
}
},
"@krassowski/theme-material": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/@krassowski/theme-material/-/theme-material-2.1.1.tgz",
"integrity": "sha512-4oNeUZrW9Gx5eY43j/VYtIGEnNE7VGnFvU8encBVFe3QHYCpQVshTK8jrzX/kUJls24Za5eX6ZAuVFmnpLI8eA==",
"requires": {
"@krassowski/completion-theme": "^3.0.0"
}
},
"@krassowski/theme-vscode": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/@krassowski/theme-vscode/-/theme-vscode-2.1.1.tgz",
"integrity": "sha512-wOH+8CmMouGrDorXeT3NZtPFaSPjoS53BXo1HkGkUepQIno5kZyi9lbQr6/fYEmMfCp24qWsHrxzjwVgqlxEdQ==",
"requires": {
"@krassowski/completion-theme": "^3.0.0"
}
},
"@lumino/algorithm": {
"version": "1.9.1",
"resolved": "https://registry.npmjs.org/@lumino/algorithm/-/algorithm-1.9.1.tgz",
"integrity": "sha512-d0rj7IYRzYj6WbWSrbJbKvrfO4H0NUnXT2yjSWS/sCklpTpSp0IGmndK/X4r6gG+ev5lb5+wBg9ofUDBvoAlAw=="
},
"@lumino/application": {
"version": "1.29.0",
"resolved": "https://registry.npmjs.org/@lumino/application/-/application-1.29.0.tgz",
"integrity": "sha512-Ld2eWUjZMUn/y9tMMTfuBB1kZxIoVQtlZy8B7q53NiAfOdZ1cthfu2C7MUIeDMKLU7gZBSJqPSeuOxRFzv4wFA==",
"requires": {
"@lumino/commands": "^1.20.0",
"@lumino/coreutils": "^1.12.0",
"@lumino/widgets": "^1.32.0"
}
},
"@lumino/collections": {
"version": "1.9.1",
"resolved": "https://registry.npmjs.org/@lumino/collections/-/collections-1.9.1.tgz",
"integrity": "sha512-5RaRGUY7BJ/1j173sc9DCfiVf70Z0hopRnBV8/AeAaK9bJJRAYjDhlZ9O8xTyouegh6krkOfiDyjl3pwogLrQw==",
"requires": {
"@lumino/algorithm": "^1.9.1"
}
},
"@lumino/commands": {
"version": "1.20.0",
"resolved": "https://registry.npmjs.org/@lumino/commands/-/commands-1.20.0.tgz",
"integrity": "sha512-xyrzDIJ9QEbcbRAwmXrjb7A7/E5MDNbnLANKwqmFVNF+4LSnF62obdvY4On3Rify3HmfX0u16Xr9gfoWPX9wLQ==",
"requires": {
"@lumino/algorithm": "^1.9.1",
"@lumino/coreutils": "^1.12.0",
"@lumino/disposable": "^1.10.1",
"@lumino/domutils": "^1.8.1",
"@lumino/keyboard": "^1.8.1",
"@lumino/signaling": "^1.10.1",
"@lumino/virtualdom": "^1.14.1"
}
},
"@lumino/coreutils": {