-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
5429 lines (4700 loc) · 218 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 IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1
"@babel/runtime@^7.1.2":
"integrity" "sha512-t9wi7/AW6XtKahAe20Yw0/mMljKq0B1r2fPdvaAdV/KPDZewFXdaaa6K7lxmZBZ8FBNpCiAT6iHPmd6QO9bKfQ=="
"resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.18.6.tgz"
"version" "7.18.6"
dependencies:
"regenerator-runtime" "^0.13.4"
"@blueprintjs/colors@^4.0.0-alpha.3":
"integrity" "sha512-ANRQZT5h9+zC8B/y0S9B+SqEpicL0XRT4drAhiPFHBrOStRZWzOh3bPrwNSPqr7tdShxYtMyxbH+fkHMetZaxg=="
"resolved" "https://registry.npmjs.org/@blueprintjs/colors/-/colors-4.1.3.tgz"
"version" "4.1.3"
"@blueprintjs/core@^3.36.0", "@blueprintjs/core@^3.54.0":
"integrity" "sha512-u2c1s6MNn0ocxhnC6CuiG5g3KV6b4cKUvSobznepA9SC3/AL1s3XOvT7DLWoHRv2B/vBOHFYEDzLw2/vlcGGZg=="
"resolved" "https://registry.npmjs.org/@blueprintjs/core/-/core-3.54.0.tgz"
"version" "3.54.0"
dependencies:
"@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@^3.33.0":
"integrity" "sha512-Q6qoSDIm0kRYQZISm59UUcDCpV3oeHulkLuh3bSlw0HhcSjvEQh2PSYbtaifM60Q4aK4PCd6bwJHg7lvF1x5fQ=="
"resolved" "https://registry.npmjs.org/@blueprintjs/icons/-/icons-3.33.0.tgz"
"version" "3.33.0"
dependencies:
"classnames" "^2.2"
"tslib" "~2.3.1"
"@blueprintjs/select@^3.15.0":
"integrity" "sha512-8UJIZMaWXRMQHr14wbmzJc/CklcSKxOU5JUux0xXKQz/hDW/g1a650tlwJmnxufvRdShbGinlVfHupCs0EL6sw=="
"resolved" "https://registry.npmjs.org/@blueprintjs/select/-/select-3.19.1.tgz"
"version" "3.19.1"
dependencies:
"@blueprintjs/core" "^3.54.0"
"classnames" "^2.2"
"tslib" "~2.3.1"
"@discoveryjs/json-ext@^0.5.0":
"integrity" "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw=="
"resolved" "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz"
"version" "0.5.7"
"@fortawesome/fontawesome-free@^5.12.0":
"integrity" "sha512-eYm8vijH/hpzr/6/1CJ/V/Eb1xQFW2nnUKArb3z+yUWv7HTwj6M7SP957oMjfZjAHU6qpoNc2wQvIxBLWYa/Jg=="
"resolved" "https://registry.npmjs.org/@fortawesome/fontawesome-free/-/fontawesome-free-5.15.4.tgz"
"version" "5.15.4"
"@gar/promisify@^1.0.1":
"integrity" "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw=="
"resolved" "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.3.tgz"
"version" "1.1.3"
"@hypnosphi/create-react-context@^0.3.1":
"integrity" "sha512-V1klUed202XahrWJLLOT3EXNeCpFHCcJntdFGI15ntCwau+jfT386w7OFTMaCqOgXUH1fa0w/I1oZs+i/Rfr0A=="
"resolved" "https://registry.npmjs.org/@hypnosphi/create-react-context/-/create-react-context-0.3.1.tgz"
"version" "0.3.1"
dependencies:
"gud" "^1.0.0"
"warning" "^4.0.3"
"@jridgewell/gen-mapping@^0.3.0":
"integrity" "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A=="
"resolved" "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz"
"version" "0.3.2"
dependencies:
"@jridgewell/set-array" "^1.0.1"
"@jridgewell/sourcemap-codec" "^1.4.10"
"@jridgewell/trace-mapping" "^0.3.9"
"@jridgewell/resolve-uri@^3.0.3":
"integrity" "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w=="
"resolved" "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz"
"version" "3.1.0"
"@jridgewell/set-array@^1.0.1":
"integrity" "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw=="
"resolved" "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz"
"version" "1.1.2"
"@jridgewell/source-map@^0.3.2":
"integrity" "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw=="
"resolved" "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz"
"version" "0.3.2"
dependencies:
"@jridgewell/gen-mapping" "^0.3.0"
"@jridgewell/trace-mapping" "^0.3.9"
"@jridgewell/sourcemap-codec@^1.4.10":
"integrity" "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw=="
"resolved" "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz"
"version" "1.4.14"
"@jridgewell/trace-mapping@^0.3.7", "@jridgewell/trace-mapping@^0.3.9":
"integrity" "sha512-bJWEfQ9lPTvm3SneWwRFVLzrh6nhjwqw7TUFFBEMzwvg7t7PCDenf2lDwqo4NQXzdpgBXyFgDWnQA+2vkruksQ=="
"resolved" "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.14.tgz"
"version" "0.3.14"
dependencies:
"@jridgewell/resolve-uri" "^3.0.3"
"@jridgewell/sourcemap-codec" "^1.4.10"
"@juggle/resize-observer@^3.3.1":
"integrity" "sha512-zMM9Ds+SawiUkakS7y94Ymqx+S0ORzpG3frZirN3l+UlXUmSUR7hF4wxCVqW+ei94JzV5kt0uXBcoOEAuiydrw=="
"resolved" "https://registry.npmjs.org/@juggle/resize-observer/-/resize-observer-3.3.1.tgz"
"version" "3.3.1"
"@jupyterlab/application@^3.1.0":
"integrity" "sha512-JZy/4yB23N9o0gJFL8L219N7cWhUgulBECa+esN8K/i3TVoG0m/obacLBJrmwdgmQKAgyJ2Vfo1tyhW3UHvlFw=="
"resolved" "https://registry.npmjs.org/@jupyterlab/application/-/application-3.4.3.tgz"
"version" "3.4.3"
dependencies:
"@fortawesome/fontawesome-free" "^5.12.0"
"@jupyterlab/apputils" "^3.4.3"
"@jupyterlab/coreutils" "^5.4.3"
"@jupyterlab/docregistry" "^3.4.3"
"@jupyterlab/rendermime" "^3.4.3"
"@jupyterlab/rendermime-interfaces" "^3.4.3"
"@jupyterlab/services" "^6.4.3"
"@jupyterlab/statedb" "^3.4.3"
"@jupyterlab/translation" "^3.4.3"
"@jupyterlab/ui-components" "^3.4.3"
"@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@^3.4.3":
"integrity" "sha512-zpMnYVxXiOJSYHrrpfptmlmIzMXB/slmLh5Fv5gG6QAaBoMBHq11cVZWUiWoXt5r6hYEco8jIG7iMN8/MCsWYQ=="
"resolved" "https://registry.npmjs.org/@jupyterlab/apputils/-/apputils-3.4.3.tgz"
"version" "3.4.3"
dependencies:
"@jupyterlab/coreutils" "^5.4.3"
"@jupyterlab/observables" "^4.4.3"
"@jupyterlab/services" "^6.4.3"
"@jupyterlab/settingregistry" "^3.4.3"
"@jupyterlab/statedb" "^3.4.3"
"@jupyterlab/translation" "^3.4.3"
"@jupyterlab/ui-components" "^3.4.3"
"@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@^3.4.3":
"integrity" "sha512-/Gwi00nwC294iUUM5yFu3RkN0Ds5aJV0w2j0b+FLZsJONy2BYfRSgYYAnm67483vuVu7zZU5umPS1UWLPXIMbg=="
"resolved" "https://registry.npmjs.org/@jupyterlab/attachments/-/attachments-3.4.3.tgz"
"version" "3.4.3"
dependencies:
"@jupyterlab/nbformat" "^3.4.3"
"@jupyterlab/observables" "^4.4.3"
"@jupyterlab/rendermime" "^3.4.3"
"@jupyterlab/rendermime-interfaces" "^3.4.3"
"@lumino/disposable" "^1.10.0"
"@lumino/signaling" "^1.10.0"
"@jupyterlab/builder@^3.0.0":
"integrity" "sha512-g6aSUyUOunN9vS5+eS1p+9w5gcmKqDy3mvchMQSrMqyhmt0cHQHO+eMQNbCs51IG1jTYl1e4+vGau8ce+JtLZg=="
"resolved" "https://registry.npmjs.org/@jupyterlab/builder/-/builder-3.4.3.tgz"
"version" "3.4.3"
dependencies:
"@jupyterlab/buildutils" "^3.4.3"
"@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@^3.4.3":
"integrity" "sha512-M09nIGIAevtQ2VkQiHqU7uvRd8AEHP7G5unLwsDyJvO0WON3oQPApPH1hJn/GwjkuxXQvB8MSx7LDmMKewNrEg=="
"resolved" "https://registry.npmjs.org/@jupyterlab/buildutils/-/buildutils-3.4.3.tgz"
"version" "3.4.3"
dependencies:
"@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@^3.4.3":
"integrity" "sha512-ablkAPBd6w0Wxo1gi3VYEKX9HxexGHb7X2xbiglosuiBrng6a/4Ozata9vPiZbjNCmvFmstQF3HcVr5lg/Hv6A=="
"resolved" "https://registry.npmjs.org/@jupyterlab/cells/-/cells-3.4.3.tgz"
"version" "3.4.3"
dependencies:
"@jupyterlab/apputils" "^3.4.3"
"@jupyterlab/attachments" "^3.4.3"
"@jupyterlab/codeeditor" "^3.4.3"
"@jupyterlab/codemirror" "^3.4.3"
"@jupyterlab/coreutils" "^5.4.3"
"@jupyterlab/filebrowser" "^3.4.3"
"@jupyterlab/nbformat" "^3.4.3"
"@jupyterlab/observables" "^4.4.3"
"@jupyterlab/outputarea" "^3.4.3"
"@jupyterlab/rendermime" "^3.4.3"
"@jupyterlab/services" "^6.4.3"
"@jupyterlab/shared-models" "^3.4.3"
"@jupyterlab/ui-components" "^3.4.3"
"@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@^3.3.0", "@jupyterlab/codeeditor@^3.4.3":
"integrity" "sha512-xnEMGS6Y6UlPQi+suFCrf7rPPnNbC6hRI+yBgsK82O7MiMjHIti/V1dcjP93xjvTuCZexO8qCtRRLoMtTSELWA=="
"resolved" "https://registry.npmjs.org/@jupyterlab/codeeditor/-/codeeditor-3.4.3.tgz"
"version" "3.4.3"
dependencies:
"@jupyterlab/coreutils" "^5.4.3"
"@jupyterlab/nbformat" "^3.4.3"
"@jupyterlab/observables" "^4.4.3"
"@jupyterlab/shared-models" "^3.4.3"
"@jupyterlab/translation" "^3.4.3"
"@jupyterlab/ui-components" "^3.4.3"
"@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@^3.4.3":
"integrity" "sha512-Fe2yP/d6bUFAz4dNILwst4AsWZP0/cZOt+vnqu5VF/f2F/u3XTaaYNMQKnESRnm/eV+ZwkE+tKE7jF9begshuQ=="
"resolved" "https://registry.npmjs.org/@jupyterlab/codemirror/-/codemirror-3.4.3.tgz"
"version" "3.4.3"
dependencies:
"@jupyterlab/apputils" "^3.4.3"
"@jupyterlab/codeeditor" "^3.4.3"
"@jupyterlab/coreutils" "^5.4.3"
"@jupyterlab/nbformat" "^3.4.3"
"@jupyterlab/observables" "^4.4.3"
"@jupyterlab/shared-models" "^3.4.3"
"@jupyterlab/statusbar" "^3.4.3"
"@jupyterlab/translation" "^3.4.3"
"@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/completer@^3.3.0":
"integrity" "sha512-SCt2zR5QqOcfbnsnBzz0z5+tIky80lpbQ5ji8EVGrO6EDS9xTdx55aYiggx81OZxFvDbUjqsqljtknFbKueNOw=="
"resolved" "https://registry.npmjs.org/@jupyterlab/completer/-/completer-3.4.3.tgz"
"version" "3.4.3"
dependencies:
"@jupyterlab/apputils" "^3.4.3"
"@jupyterlab/codeeditor" "^3.4.3"
"@jupyterlab/coreutils" "^5.4.3"
"@jupyterlab/services" "^6.4.3"
"@jupyterlab/statedb" "^3.4.3"
"@jupyterlab/ui-components" "^3.4.3"
"@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@^5.1.0", "@jupyterlab/coreutils@^5.4.3":
"integrity" "sha512-9X021xXTDVnCSYGXsRsMsxCaoHk28oHC/fUTytc5DRgTcpzOGPBO/mVpgJfyejOdy4HxBbAovJSnkBlPwjm1yA=="
"resolved" "https://registry.npmjs.org/@jupyterlab/coreutils/-/coreutils-5.4.3.tgz"
"version" "5.4.3"
dependencies:
"@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@^3.4.3":
"integrity" "sha512-l1rVpdbT2Y9KciNy+HN5Ef4YZsbYbWDVwPJhG7kkHDlwY0KXv7fk4NYccK0Q3LhwrJUh/iU3nJUVs2u2jJeIBg=="
"resolved" "https://registry.npmjs.org/@jupyterlab/docmanager/-/docmanager-3.4.3.tgz"
"version" "3.4.3"
dependencies:
"@jupyterlab/apputils" "^3.4.3"
"@jupyterlab/coreutils" "^5.4.3"
"@jupyterlab/docprovider" "^3.4.3"
"@jupyterlab/docregistry" "^3.4.3"
"@jupyterlab/services" "^6.4.3"
"@jupyterlab/statusbar" "^3.4.3"
"@jupyterlab/translation" "^3.4.3"
"@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@^3.4.3":
"integrity" "sha512-BnBkbFESEBGB9Df60hxtC5MAhHi1suReC4eN2Y1OsVXCbq2OTeTAP5DHeJjFDxBZDY1UQlss1li6+/IPbeXgVw=="
"resolved" "https://registry.npmjs.org/@jupyterlab/docprovider/-/docprovider-3.4.3.tgz"
"version" "3.4.3"
dependencies:
"@jupyterlab/shared-models" "^3.4.3"
"@lumino/coreutils" "^1.11.0"
"lib0" "^0.2.42"
"y-websocket" "^1.3.15"
"yjs" "^13.5.17"
"@jupyterlab/docregistry@^3.4.3":
"integrity" "sha512-A+WXGj9HosbSh/I0XQbXN1Sxt4GbjUDXntQ5DGoeOoLfwLHBTkvgg7lZ+AJJyXTDz4jxCWe5jNWnwPkk5mp90Q=="
"resolved" "https://registry.npmjs.org/@jupyterlab/docregistry/-/docregistry-3.4.3.tgz"
"version" "3.4.3"
dependencies:
"@jupyterlab/apputils" "^3.4.3"
"@jupyterlab/codeeditor" "^3.4.3"
"@jupyterlab/codemirror" "^3.4.3"
"@jupyterlab/coreutils" "^5.4.3"
"@jupyterlab/docprovider" "^3.4.3"
"@jupyterlab/observables" "^4.4.3"
"@jupyterlab/rendermime" "^3.4.3"
"@jupyterlab/rendermime-interfaces" "^3.4.3"
"@jupyterlab/services" "^6.4.3"
"@jupyterlab/shared-models" "^3.4.3"
"@jupyterlab/translation" "^3.4.3"
"@jupyterlab/ui-components" "^3.4.3"
"@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@^3.3.0", "@jupyterlab/filebrowser@^3.4.3":
"integrity" "sha512-VlUcEvRAG/eAkxgk90MKKbAYUv3BORxfp9VXUdRm/YOW66ZborF6TNbzjYh9C7L7psXAcpzQ+85p73o25iMDoA=="
"resolved" "https://registry.npmjs.org/@jupyterlab/filebrowser/-/filebrowser-3.4.3.tgz"
"version" "3.4.3"
dependencies:
"@jupyterlab/apputils" "^3.4.3"
"@jupyterlab/coreutils" "^5.4.3"
"@jupyterlab/docmanager" "^3.4.3"
"@jupyterlab/docregistry" "^3.4.3"
"@jupyterlab/services" "^6.4.3"
"@jupyterlab/statedb" "^3.4.3"
"@jupyterlab/statusbar" "^3.4.3"
"@jupyterlab/translation" "^3.4.3"
"@jupyterlab/ui-components" "^3.4.3"
"@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/launcher@^3.3.0":
"integrity" "sha512-f+N8tdrvt9zUkGg0dOlJGQVsjZDXlsMm57c5A5uEk7vujieuLbs6Mo1bJu9Cth3qZ5+GWx+axp5X8p/dHayPmQ=="
"resolved" "https://registry.npmjs.org/@jupyterlab/launcher/-/launcher-3.4.3.tgz"
"version" "3.4.3"
dependencies:
"@jupyterlab/apputils" "^3.4.3"
"@jupyterlab/translation" "^3.4.3"
"@jupyterlab/ui-components" "^3.4.3"
"@lumino/algorithm" "^1.9.0"
"@lumino/commands" "^1.19.0"
"@lumino/coreutils" "^1.11.0"
"@lumino/disposable" "^1.10.0"
"@lumino/properties" "^1.8.0"
"@lumino/widgets" "^1.30.0"
"react" "^17.0.1"
"@jupyterlab/mainmenu@^3.3.2":
"integrity" "sha512-h4QvBReGhv0c1AQwNm2wedHGEx+akf8FbL6+qEei5ty0JePGU1D3Yt8up/ruAgVkWEknRsVVGrATH8HX1Sv1SQ=="
"resolved" "https://registry.npmjs.org/@jupyterlab/mainmenu/-/mainmenu-3.4.3.tgz"
"version" "3.4.3"
dependencies:
"@jupyterlab/apputils" "^3.4.3"
"@jupyterlab/services" "^6.4.3"
"@jupyterlab/translation" "^3.4.3"
"@jupyterlab/ui-components" "^3.4.3"
"@lumino/algorithm" "^1.9.0"
"@lumino/commands" "^1.19.0"
"@lumino/coreutils" "^1.11.0"
"@lumino/widgets" "^1.30.0"
"@jupyterlab/nbformat@^3.4.3":
"integrity" "sha512-i/yADrwhhAJJCUOTa+fEBMyJO7fvX9Y73I0B7V6dQhGcrmrEKLC3wk4yOo63+jRntd5+dupbiOtz3w1ncIXwIA=="
"resolved" "https://registry.npmjs.org/@jupyterlab/nbformat/-/nbformat-3.4.3.tgz"
"version" "3.4.3"
dependencies:
"@lumino/coreutils" "^1.11.0"
"@jupyterlab/notebook@^3.3.0":
"integrity" "sha512-gssdX3pgt9kPqlNkQhmMhHatmWDgYW+Q/2MXTwATR2p//ODAtsrSpA4Che88HSP9H5mDY9xy1vUr1aZcW0Tnzg=="
"resolved" "https://registry.npmjs.org/@jupyterlab/notebook/-/notebook-3.4.3.tgz"
"version" "3.4.3"
dependencies:
"@jupyterlab/apputils" "^3.4.3"
"@jupyterlab/cells" "^3.4.3"
"@jupyterlab/codeeditor" "^3.4.3"
"@jupyterlab/coreutils" "^5.4.3"
"@jupyterlab/docregistry" "^3.4.3"
"@jupyterlab/nbformat" "^3.4.3"
"@jupyterlab/observables" "^4.4.3"
"@jupyterlab/rendermime" "^3.4.3"
"@jupyterlab/services" "^6.4.3"
"@jupyterlab/settingregistry" "^3.4.3"
"@jupyterlab/shared-models" "^3.4.3"
"@jupyterlab/statusbar" "^3.4.3"
"@jupyterlab/translation" "^3.4.3"
"@jupyterlab/ui-components" "^3.4.3"
"@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@^4.4.3":
"integrity" "sha512-AUuNoBIcctmJip4pZEYfmw14/FjTeyO3lVgp0pgZWTowzI6ihJP8pWaxc5GtfHOPGTn+S81r1FSPSiLLFqFyZg=="
"resolved" "https://registry.npmjs.org/@jupyterlab/observables/-/observables-4.4.3.tgz"
"version" "4.4.3"
dependencies:
"@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@^3.3.0", "@jupyterlab/outputarea@^3.4.3":
"integrity" "sha512-acckQMJZOR9D1gcKhaBtP6seopjDpZXYChF9ZeuwgnJJNc+ct3V3iL5lAn+Y2l9BslGP5ogbhT7DDNVsXU8eoQ=="
"resolved" "https://registry.npmjs.org/@jupyterlab/outputarea/-/outputarea-3.4.3.tgz"
"version" "3.4.3"
dependencies:
"@jupyterlab/apputils" "^3.4.3"
"@jupyterlab/nbformat" "^3.4.3"
"@jupyterlab/observables" "^4.4.3"
"@jupyterlab/rendermime" "^3.4.3"
"@jupyterlab/rendermime-interfaces" "^3.4.3"
"@jupyterlab/services" "^6.4.3"
"@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-interfaces@^3.4.3":
"integrity" "sha512-DPAUHiNpGJBPV45yabEajQrV3wt9/YyFrPjLJpKxFolNmQcbSvNWCetKqq698DvNCa2Ng5U+j8ivJZA7Iyfbjg=="
"resolved" "https://registry.npmjs.org/@jupyterlab/rendermime-interfaces/-/rendermime-interfaces-3.4.3.tgz"
"version" "3.4.3"
dependencies:
"@jupyterlab/translation" "^3.4.3"
"@lumino/coreutils" "^1.11.0"
"@lumino/widgets" "^1.30.0"
"@jupyterlab/rendermime@^3.4.3":
"integrity" "sha512-2EaevAXBopW7yZWX/Nmh9bBRLuvBLcg4okyLQfMKM+rOtR5mS+/4QRXqqp7Nk3R9ofuWUBw6tQEKk8nhiFJS9w=="
"resolved" "https://registry.npmjs.org/@jupyterlab/rendermime/-/rendermime-3.4.3.tgz"
"version" "3.4.3"
dependencies:
"@jupyterlab/apputils" "^3.4.3"
"@jupyterlab/codemirror" "^3.4.3"
"@jupyterlab/coreutils" "^5.4.3"
"@jupyterlab/nbformat" "^3.4.3"
"@jupyterlab/observables" "^4.4.3"
"@jupyterlab/rendermime-interfaces" "^3.4.3"
"@jupyterlab/services" "^6.4.3"
"@jupyterlab/translation" "^3.4.3"
"@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/services@^6.1.0", "@jupyterlab/services@^6.4.3":
"integrity" "sha512-h0z+qlK3aMGwC/b1GJXscrLp6KH6xTygu8SRkey81hBkOVitE6We32b7VZD3iVPjZN7EdD4/EcjAjtl1EgsQlQ=="
"resolved" "https://registry.npmjs.org/@jupyterlab/services/-/services-6.4.3.tgz"
"version" "6.4.3"
dependencies:
"@jupyterlab/coreutils" "^5.4.3"
"@jupyterlab/nbformat" "^3.4.3"
"@jupyterlab/observables" "^4.4.3"
"@jupyterlab/settingregistry" "^3.4.3"
"@jupyterlab/statedb" "^3.4.3"
"@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@^3.3.0", "@jupyterlab/settingregistry@^3.4.3":
"integrity" "sha512-DYrlQz4FIhx9JP3lmevGY1MWgvDN/2ujpQxBZeuz3TPEoSwMpLNwXcI7U69XSm/CF99IN2W3V8LGOKx0M+T9Ug=="
"resolved" "https://registry.npmjs.org/@jupyterlab/settingregistry/-/settingregistry-3.4.3.tgz"
"version" "3.4.3"
dependencies:
"@jupyterlab/statedb" "^3.4.3"
"@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@^3.4.3":
"integrity" "sha512-l59ufJoLifv7i7Dlg5112FBLGhA9gTmcFbqniGwmPjnrd5rbS5l+pNJoeMGVID+rWUyI1C0eE0K3V9Vz9Ub+4w=="
"resolved" "https://registry.npmjs.org/@jupyterlab/shared-models/-/shared-models-3.4.3.tgz"
"version" "3.4.3"
dependencies:
"@jupyterlab/nbformat" "^3.4.3"
"@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@^3.3.0", "@jupyterlab/statedb@^3.4.3":
"integrity" "sha512-Gr96oF20qEVv7jFDgDvi6GciLoGp+qo3lElqQdJhgqmLrQI9oTqtYOwkxLYjOzY8uhXI+Z4X1tZ7cRkNdoUCVw=="
"resolved" "https://registry.npmjs.org/@jupyterlab/statedb/-/statedb-3.4.3.tgz"
"version" "3.4.3"
dependencies:
"@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@^3.4.3":
"integrity" "sha512-cNx0EPedajqA9HCY/Yc34wh6ouZRUkdlVNaahVAhhj+qTs3HfGHFZagkjgPAg36cSPYrHyq1speRh0UGyqqyTw=="
"resolved" "https://registry.npmjs.org/@jupyterlab/statusbar/-/statusbar-3.4.3.tgz"
"version" "3.4.3"
dependencies:
"@jupyterlab/apputils" "^3.4.3"
"@jupyterlab/codeeditor" "^3.4.3"
"@jupyterlab/services" "^6.4.3"
"@jupyterlab/translation" "^3.4.3"
"@jupyterlab/ui-components" "^3.4.3"
"@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/translation@^3.3.2", "@jupyterlab/translation@^3.4.3":
"integrity" "sha512-NNpSqdFxxmx/miCTbTk/8fZapMArM8YJ2Q4WCzYcEiRVYfJbzozrSqIu8X0gNcIbV3IGD+GXueqWQb7xr637bQ=="
"resolved" "https://registry.npmjs.org/@jupyterlab/translation/-/translation-3.4.3.tgz"
"version" "3.4.3"
dependencies:
"@jupyterlab/coreutils" "^5.4.3"
"@jupyterlab/services" "^6.4.3"
"@jupyterlab/statedb" "^3.4.3"
"@lumino/coreutils" "^1.11.0"
"@jupyterlab/ui-components@^3.3.0", "@jupyterlab/ui-components@^3.4.3":
"integrity" "sha512-oFl3QXiQDjDEte5emdNpdnjAptbGt+pm+TieUmx/+/SpYGsgGV5F1lRHw7kOdyUAB8CIRayqlGZ5BpWGNLFT7g=="
"resolved" "https://registry.npmjs.org/@jupyterlab/ui-components/-/ui-components-3.4.3.tgz"
"version" "3.4.3"
dependencies:
"@blueprintjs/core" "^3.36.0"
"@blueprintjs/select" "^3.15.0"
"@jupyterlab/coreutils" "^5.4.3"
"@jupyterlab/translation" "^3.4.3"
"@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"
"@lumino/algorithm@^1.9.0", "@lumino/algorithm@^1.9.1":
"integrity" "sha512-d0rj7IYRzYj6WbWSrbJbKvrfO4H0NUnXT2yjSWS/sCklpTpSp0IGmndK/X4r6gG+ev5lb5+wBg9ofUDBvoAlAw=="
"resolved" "https://registry.npmjs.org/@lumino/algorithm/-/algorithm-1.9.1.tgz"
"version" "1.9.1"
"@lumino/application@^1.27.0":
"integrity" "sha512-71ScZSOvHTBIwwL9S+CAAivNhDGEP+RZKUIyWlQOxtgETf88CO8FCUbLqhUUHw6nnzyVXjOORCgiOQEnLMvN9w=="
"resolved" "https://registry.npmjs.org/@lumino/application/-/application-1.29.1.tgz"
"version" "1.29.1"
dependencies:
"@lumino/commands" "^1.20.0"
"@lumino/coreutils" "^1.12.0"
"@lumino/widgets" "^1.32.1"
"@lumino/collections@^1.9.1":
"integrity" "sha512-5RaRGUY7BJ/1j173sc9DCfiVf70Z0hopRnBV8/AeAaK9bJJRAYjDhlZ9O8xTyouegh6krkOfiDyjl3pwogLrQw=="
"resolved" "https://registry.npmjs.org/@lumino/collections/-/collections-1.9.1.tgz"
"version" "1.9.1"
dependencies:
"@lumino/algorithm" "^1.9.1"
"@lumino/commands@^1.19.0", "@lumino/commands@^1.20.0":
"integrity" "sha512-xyrzDIJ9QEbcbRAwmXrjb7A7/E5MDNbnLANKwqmFVNF+4LSnF62obdvY4On3Rify3HmfX0u16Xr9gfoWPX9wLQ=="
"resolved" "https://registry.npmjs.org/@lumino/commands/-/commands-1.20.0.tgz"
"version" "1.20.0"
dependencies:
"@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@^1.11.0", "@lumino/coreutils@^1.12.0":
"integrity" "sha512-DSglh4ylmLi820CNx9soJmDJCpUgymckdWeGWuN0Ash5g60oQvrQDfosVxEhzmNvtvXv45WZEqSBzDP6E5SEmQ=="
"resolved" "https://registry.npmjs.org/@lumino/coreutils/-/coreutils-1.12.0.tgz"
"version" "1.12.0"
"@lumino/datagrid@^0.35.1":
"integrity" "sha512-bLDyRr2K2NdBuHwnEirnn+IigWseQslGP05Jko/wpseDo4jp3eeLjU7wtpSikJvtB0DH+FRpINZge1aWQpDk3A=="
"resolved" "https://registry.npmjs.org/@lumino/datagrid/-/datagrid-0.35.1.tgz"
"version" "0.35.1"
dependencies:
"@lumino/algorithm" "^1.9.1"
"@lumino/coreutils" "^1.12.0"
"@lumino/disposable" "^1.10.1"
"@lumino/domutils" "^1.8.1"
"@lumino/dragdrop" "^1.14.0"
"@lumino/keyboard" "^1.8.1"
"@lumino/messaging" "^1.10.1"
"@lumino/signaling" "^1.10.1"
"@lumino/widgets" "^1.31.1"
"@lumino/disposable@^1.10.0", "@lumino/disposable@^1.10.1":
"integrity" "sha512-mZQILc8sVGZC7mJNOGVmehDRO9/u3sIRdjZ+pCYjDgXKcINLd6HoPhZDquKCWiRBfHTL1B3tOHjnBhahBc2N/Q=="
"resolved" "https://registry.npmjs.org/@lumino/disposable/-/disposable-1.10.1.tgz"
"version" "1.10.1"
dependencies:
"@lumino/algorithm" "^1.9.1"
"@lumino/signaling" "^1.10.1"
"@lumino/domutils@^1.8.0", "@lumino/domutils@^1.8.1":
"integrity" "sha512-QUVXwmDMIfcHC3yslhmyGK4HYBKaJ3xX5MTwDrjsSX7J7AZ4jwL4zfsxyF9ntdqEKraoJhLQ6BaUBY+Ur1cnYw=="
"resolved" "https://registry.npmjs.org/@lumino/domutils/-/domutils-1.8.1.tgz"
"version" "1.8.1"
"@lumino/dragdrop@^1.13.0", "@lumino/dragdrop@^1.14.0":
"integrity" "sha512-hO8sgF0BkpihKIP6UZgVJgiOEhz89i7Oxtp9FR9Jqw5alGocxSXt7q3cteMvqpcL6o2/s3CafZNRkVLRXmepNw=="
"resolved" "https://registry.npmjs.org/@lumino/dragdrop/-/dragdrop-1.14.0.tgz"
"version" "1.14.0"
dependencies:
"@lumino/coreutils" "^1.12.0"
"@lumino/disposable" "^1.10.1"
"@lumino/keyboard@^1.8.1":
"integrity" "sha512-8x0y2ZQtEvOsblpI2gfTgf+gboftusP+5aukKEsgNQtzFl28RezQXEOSVd8iD3K6+Q1MaPQF0OALYP0ASqBjBg=="
"resolved" "https://registry.npmjs.org/@lumino/keyboard/-/keyboard-1.8.1.tgz"
"version" "1.8.1"
"@lumino/messaging@^1.10.0", "@lumino/messaging@^1.10.1":
"integrity" "sha512-XZSdt9ih94rdeeLL0cryUw6HHD51D7TP8c+MFf+YRF6VKwOFB9RoajfQWadeqpmH+schTs3EsrFfA9KHduzC7w=="
"resolved" "https://registry.npmjs.org/@lumino/messaging/-/messaging-1.10.1.tgz"
"version" "1.10.1"
dependencies:
"@lumino/algorithm" "^1.9.1"
"@lumino/collections" "^1.9.1"
"@lumino/polling@^1.9.0":
"integrity" "sha512-ZNXObJQfugnS41Yrlr7yWcFiRK+xAGGOXO08JJ0Mctsg5mT30UEGFVWJY2AjZ6N5aQuLyGed/pMkBzLzrzt8OA=="
"resolved" "https://registry.npmjs.org/@lumino/polling/-/polling-1.10.0.tgz"
"version" "1.10.0"
dependencies:
"@lumino/coreutils" "^1.12.0"
"@lumino/disposable" "^1.10.1"
"@lumino/signaling" "^1.10.1"
"@lumino/properties@^1.8.0", "@lumino/properties@^1.8.1":
"integrity" "sha512-O+CCcAqP64Di32DUZ4Jqq0DtUyE5RJREN5vbkgGZGu+WauJ/RYoiLDe1ubbAeSaHk71OrS60ZBV7QyC8ZaBVsA=="
"resolved" "https://registry.npmjs.org/@lumino/properties/-/properties-1.8.1.tgz"
"version" "1.8.1"
"@lumino/signaling@^1.10.0", "@lumino/signaling@^1.10.1":
"integrity" "sha512-GZVbX4cfk/ZqLwkemPD/NwqToaTL/6q7qdLpEhgkiPlaH1S5/V7fDpP7N1uFy4n3BDITId8cpYgH/Ds32Mdp3A=="
"resolved" "https://registry.npmjs.org/@lumino/signaling/-/signaling-1.10.1.tgz"
"version" "1.10.1"
dependencies:
"@lumino/algorithm" "^1.9.1"
"@lumino/virtualdom@^1.14.0", "@lumino/virtualdom@^1.14.1":
"integrity" "sha512-imIJd/wtRkoR1onEiG5nxPEaIrf70nn4PgD/56ri3/Lo6AJEX2CusF6iIA27GVB8yl/7CxgTHUnzzCwTFPypcA=="
"resolved" "https://registry.npmjs.org/@lumino/virtualdom/-/virtualdom-1.14.1.tgz"
"version" "1.14.1"
dependencies:
"@lumino/algorithm" "^1.9.1"
"@lumino/widgets@^1.30.0", "@lumino/widgets@^1.31.1", "@lumino/widgets@^1.32.1":
"integrity" "sha512-IA4BuoiiL9NB48HrM/6R7WM4mKy4O7JVVJgz9zJOu84lhyBJehTLdS34rQLV9YuRHTj3jyrWPdNsgkQ26u1ugA=="
"resolved" "https://registry.npmjs.org/@lumino/widgets/-/widgets-1.32.1.tgz"
"version" "1.32.1"
dependencies:
"@lumino/algorithm" "^1.9.1"
"@lumino/commands" "^1.20.0"
"@lumino/coreutils" "^1.12.0"
"@lumino/disposable" "^1.10.1"
"@lumino/domutils" "^1.8.1"
"@lumino/dragdrop" "^1.14.0"
"@lumino/keyboard" "^1.8.1"
"@lumino/messaging" "^1.10.1"
"@lumino/properties" "^1.8.1"
"@lumino/signaling" "^1.10.1"
"@lumino/virtualdom" "^1.14.1"
"@nodelib/[email protected]":
"integrity" "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g=="
"resolved" "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz"
"version" "2.1.5"
dependencies:
"@nodelib/fs.stat" "2.0.5"
"run-parallel" "^1.1.9"
"@nodelib/fs.stat@^2.0.2", "@nodelib/[email protected]":
"integrity" "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A=="
"resolved" "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz"
"version" "2.0.5"
"@nodelib/fs.walk@^1.2.3":
"integrity" "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg=="
"resolved" "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz"
"version" "1.2.8"
dependencies:
"@nodelib/fs.scandir" "2.1.5"
"fastq" "^1.6.0"
"@npmcli/fs@^1.0.0":
"integrity" "sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ=="
"resolved" "https://registry.npmjs.org/@npmcli/fs/-/fs-1.1.1.tgz"
"version" "1.1.1"
dependencies:
"@gar/promisify" "^1.0.1"
"semver" "^7.3.5"
"@npmcli/move-file@^1.0.1":
"integrity" "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg=="
"resolved" "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz"
"version" "1.1.2"
dependencies:
"mkdirp" "^1.0.4"
"rimraf" "^3.0.2"
"@rjsf/core@^3.1.0":
"integrity" "sha512-dk8ihvxFbcuIwU7G+HiJbFgwyIvaumPt5g5zfnuC26mwTUPlaDGFXKK2yITp8tJ3+hcwS5zEXtAN9wUkfuM4jA=="
"resolved" "https://registry.npmjs.org/@rjsf/core/-/core-3.2.1.tgz"
"version" "3.2.1"
dependencies:
"@types/json-schema" "^7.0.7"
"ajv" "^6.7.0"
"core-js-pure" "^3.6.5"
"json-schema-merge-allof" "^0.6.0"
"jsonpointer" "^5.0.0"
"lodash" "^4.17.15"
"nanoid" "^3.1.23"
"prop-types" "^15.7.2"
"react-is" "^16.9.0"
"@sindresorhus/is@^0.14.0":
"integrity" "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ=="
"resolved" "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz"
"version" "0.14.0"
"@szmarczak/http-timer@^1.1.2":
"integrity" "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA=="
"resolved" "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz"
"version" "1.1.2"
dependencies:
"defer-to-connect" "^1.0.1"
"@types/dom4@^2.0.1":
"integrity" "sha512-Rt4IC1T7xkCWa0OG1oSsPa0iqnxlDeQqKXZAHrQGLb7wFGncWm85MaxKUjAGejOrUynOgWlFi4c6S6IyJwoK4g=="
"resolved" "https://registry.npmjs.org/@types/dom4/-/dom4-2.0.2.tgz"
"version" "2.0.2"
"@types/eslint-scope@^3.7.3":
"integrity" "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA=="
"resolved" "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz"
"version" "3.7.4"
dependencies:
"@types/eslint" "*"
"@types/estree" "*"
"@types/eslint@*":
"integrity" "sha512-dhsC09y1gpJWnK+Ff4SGvCuSnk9DaU0BJZSzOwa6GVSg65XtTugLBITDAAzRU5duGBoXBHpdR/9jHGxJjNflJQ=="
"resolved" "https://registry.npmjs.org/@types/eslint/-/eslint-8.4.5.tgz"
"version" "8.4.5"
dependencies:
"@types/estree" "*"
"@types/json-schema" "*"
"@types/estree@*", "@types/estree@^0.0.51":
"integrity" "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ=="
"resolved" "https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz"
"version" "0.0.51"
"@types/glob@^7.1.1":
"integrity" "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA=="
"resolved" "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz"
"version" "7.2.0"
dependencies:
"@types/minimatch" "*"
"@types/node" "*"
"@types/json-schema@*", "@types/json-schema@^7.0.5", "@types/json-schema@^7.0.7", "@types/json-schema@^7.0.8":
"integrity" "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ=="
"resolved" "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz"
"version" "7.0.11"
"@types/minimatch@*":
"integrity" "sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ=="
"resolved" "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.5.tgz"
"version" "3.0.5"
"@types/node@*":
"integrity" "sha512-HzNRZtp4eepNitP+BD6k2L6DROIDG4Q0fm4x+dwfsr6LGmROENnok75VGw40628xf+iR24WeMFcHuuBDUAzzsQ=="
"resolved" "https://registry.npmjs.org/@types/node/-/node-18.0.3.tgz"
"version" "18.0.3"
"@types/prop-types@*":
"integrity" "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w=="
"resolved" "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz"
"version" "15.7.5"
"@types/react@^17.0.0":
"integrity" "sha512-mk0BL8zBinf2ozNr3qPnlu1oyVTYq+4V7WA76RgxUAtf0Em/Wbid38KN6n4abEkvO4xMTBWmnP1FtQzgkEiJoA=="
"resolved" "https://registry.npmjs.org/@types/react/-/react-17.0.47.tgz"
"version" "17.0.47"
dependencies:
"@types/prop-types" "*"
"@types/scheduler" "*"
"csstype" "^3.0.2"
"@types/scheduler@*":
"integrity" "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew=="
"resolved" "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz"
"version" "0.16.2"
"@types/source-list-map@*":
"integrity" "sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA=="
"resolved" "https://registry.npmjs.org/@types/source-list-map/-/source-list-map-0.1.2.tgz"
"version" "0.1.2"
"@types/webpack-sources@^0.1.5":
"integrity" "sha512-bvzMnzqoK16PQIC8AYHNdW45eREJQMd6WG/msQWX5V2+vZmODCOPb4TJcbgRljTZZTwTM4wUMcsI8FftNA7new=="
"resolved" "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-0.1.9.tgz"
"version" "0.1.9"
dependencies:
"@types/node" "*"
"@types/source-list-map" "*"
"source-map" "^0.6.1"
"@verdaccio/[email protected]":
"integrity" "sha512-F/YZANu4DmpcEV0jronzI7v2fGVWkQ5Mwi+bVmV+ACJ+EzR0c9Jbhtbe5QyLUuzR97t8R5E/Xe53O0cc2LukdQ=="
"resolved" "https://registry.npmjs.org/@verdaccio/commons-api/-/commons-api-10.2.0.tgz"
"version" "10.2.0"
dependencies:
"http-errors" "2.0.0"
"http-status-codes" "2.2.0"
"@verdaccio/[email protected]":
"integrity" "sha512-FE5D5H4wy/nhgR/d2J5e1Na9kScj2wMjlLPBHz7XF4XZAVSRdm45+kL3ZmrfA6b2HTADP/uH7H05/cnAYW8bhw=="
"resolved" "https://registry.npmjs.org/@verdaccio/file-locking/-/file-locking-10.3.0.tgz"
"version" "10.3.0"
dependencies:
"lockfile" "1.0.4"
"@verdaccio/[email protected]":
"integrity" "sha512-f3oArjXPOAwUAA2dsBhfL/rSouqJ2sfml8k97RtnBPKOzisb28bgyAQW0mqwQvN4MTK5S/2xudmobFpvJAIatg=="
"resolved" "https://registry.npmjs.org/@verdaccio/local-storage/-/local-storage-10.3.1.tgz"
"version" "10.3.1"
dependencies:
"@verdaccio/commons-api" "10.2.0"
"@verdaccio/file-locking" "10.3.0"
"@verdaccio/streams" "10.2.0"
"async" "3.2.4"
"debug" "4.3.4"
"lodash" "4.17.21"
"lowdb" "1.0.0"
"mkdirp" "1.0.4"
"@verdaccio/[email protected]":
"integrity" "sha512-E4SHDjVt7eJ3CwNNvkB3N0zV3Zza8i6yQf6+qE4AZsy1L18OaxXBFmp4O4HxxIahB3npVhip230FVVAWUZjK+w=="
"resolved" "https://registry.npmjs.org/@verdaccio/readme/-/readme-10.3.4.tgz"
"version" "10.3.4"
dependencies:
"dompurify" "2.3.8"
"jsdom" "15.2.1"
"marked" "4.0.16"
"@verdaccio/[email protected]":
"integrity" "sha512-FaIzCnDg0x0Js5kSQn1Le3YzDHl7XxrJ0QdIw5LrDUmLsH3VXNi4/NMlSHnw5RiTTMs4UbEf98V3RJRB8exqJA=="
"resolved" "https://registry.npmjs.org/@verdaccio/streams/-/streams-10.2.0.tgz"
"version" "10.2.0"
"@verdaccio/[email protected]":
"integrity" "sha512-tchic00TMWV9qm3EG1GmU7WLnzb29fGT51NJF8rmmNGc7V7tlpXSOE+WQ/dP99jaViIrZzh73Z03TpjQ3ZFd/A=="
"resolved" "https://registry.npmjs.org/@verdaccio/ui-theme/-/ui-theme-6.0.0-6-next.24.tgz"
"version" "6.0.0-6-next.24"
"@webassemblyjs/[email protected]":
"integrity" "sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw=="