-
Notifications
You must be signed in to change notification settings - Fork 2
/
package-lock.json
8028 lines (8028 loc) · 303 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": "plugin-cookbook",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "plugin-cookbook",
"dependencies": {
"@jupyterlab/builder": "^3.6.4",
"@jupyterlab/toc-extension": "latest",
"nanoid": ">=3.1.31",
"node-fetch": ">=2.6.7"
}
},
"node_modules/@babel/runtime": {
"version": "7.21.0",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.0.tgz",
"integrity": "sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw==",
"dependencies": {
"regenerator-runtime": "^0.13.11"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@blueprintjs/colors": {
"version": "4.1.19",
"resolved": "https://registry.npmjs.org/@blueprintjs/colors/-/colors-4.1.19.tgz",
"integrity": "sha512-x5mDo4Ue9rAdbMHvOm0dNru9MSZqgs9Dd/l/2rgjzottthjsq1XjkiVae6evX4EGNM0I/bZKjTT8ccvqCqn4yw=="
},
"node_modules/@blueprintjs/core": {
"version": "3.54.0",
"resolved": "https://registry.npmjs.org/@blueprintjs/core/-/core-3.54.0.tgz",
"integrity": "sha512-u2c1s6MNn0ocxhnC6CuiG5g3KV6b4cKUvSobznepA9SC3/AL1s3XOvT7DLWoHRv2B/vBOHFYEDzLw2/vlcGGZg==",
"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"
},
"bin": {
"upgrade-blueprint-2.0.0-rename": "scripts/upgrade-blueprint-2.0.0-rename.sh",
"upgrade-blueprint-3.0.0-rename": "scripts/upgrade-blueprint-3.0.0-rename.sh"
},
"peerDependencies": {
"react": "^15.3.0 || 16 || 17",
"react-dom": "^15.3.0 || 16 || 17"
}
},
"node_modules/@blueprintjs/icons": {
"version": "3.33.0",
"resolved": "https://registry.npmjs.org/@blueprintjs/icons/-/icons-3.33.0.tgz",
"integrity": "sha512-Q6qoSDIm0kRYQZISm59UUcDCpV3oeHulkLuh3bSlw0HhcSjvEQh2PSYbtaifM60Q4aK4PCd6bwJHg7lvF1x5fQ==",
"dependencies": {
"classnames": "^2.2",
"tslib": "~2.3.1"
}
},
"node_modules/@blueprintjs/select": {
"version": "3.19.1",
"resolved": "https://registry.npmjs.org/@blueprintjs/select/-/select-3.19.1.tgz",
"integrity": "sha512-8UJIZMaWXRMQHr14wbmzJc/CklcSKxOU5JUux0xXKQz/hDW/g1a650tlwJmnxufvRdShbGinlVfHupCs0EL6sw==",
"dependencies": {
"@blueprintjs/core": "^3.54.0",
"classnames": "^2.2",
"tslib": "~2.3.1"
},
"peerDependencies": {
"react": "^15.3.0 || 16 || 17",
"react-dom": "^15.3.0 || 16 || 17"
}
},
"node_modules/@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==",
"engines": {
"node": ">=10.0.0"
}
},
"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,
"engines": {
"node": ">=6"
}
},
"node_modules/@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=="
},
"node_modules/@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==",
"dependencies": {
"gud": "^1.0.0",
"warning": "^4.0.3"
},
"peerDependencies": {
"prop-types": "^15.0.0",
"react": ">=0.14.0"
}
},
"node_modules/@jridgewell/gen-mapping": {
"version": "0.3.3",
"resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz",
"integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==",
"dependencies": {
"@jridgewell/set-array": "^1.0.1",
"@jridgewell/sourcemap-codec": "^1.4.10",
"@jridgewell/trace-mapping": "^0.3.9"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@jridgewell/resolve-uri": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz",
"integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==",
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@jridgewell/set-array": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz",
"integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==",
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@jridgewell/source-map": {
"version": "0.3.3",
"resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.3.tgz",
"integrity": "sha512-b+fsZXeLYi9fEULmfBrhxn4IrPlINf8fiNarzTof004v3lFdntdwa9PF7vFJqm3mg7s+ScJMxXaE3Acp1irZcg==",
"dependencies": {
"@jridgewell/gen-mapping": "^0.3.0",
"@jridgewell/trace-mapping": "^0.3.9"
}
},
"node_modules/@jridgewell/sourcemap-codec": {
"version": "1.4.14",
"resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz",
"integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw=="
},
"node_modules/@jridgewell/trace-mapping": {
"version": "0.3.17",
"resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz",
"integrity": "sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==",
"dependencies": {
"@jridgewell/resolve-uri": "3.1.0",
"@jridgewell/sourcemap-codec": "1.4.14"
}
},
"node_modules/@juggle/resize-observer": {
"version": "3.4.0",
"resolved": "https://registry.npmjs.org/@juggle/resize-observer/-/resize-observer-3.4.0.tgz",
"integrity": "sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA=="
},
"node_modules/@jupyter/ydoc": {
"version": "0.2.2",
"resolved": "https://registry.npmjs.org/@jupyter/ydoc/-/ydoc-0.2.2.tgz",
"integrity": "sha512-UtU7ZxpL0k+QF9So4wtGxaS2C+nno58dig7sQUaBn48wlQDiuypzKgUmF7I37srpu6f/ywon3JBuEjxuL1CIBQ==",
"dependencies": {
"@jupyterlab/nbformat": "^3.0.0 || ^4.0.0-alpha.15",
"@lumino/coreutils": "^1.11.0 || ^2.0.0-alpha.6",
"@lumino/disposable": "^1.10.0 || ^2.0.0-alpha.6",
"@lumino/signaling": "^1.10.0 || ^2.0.0-alpha.6",
"y-protocols": "^1.0.5",
"yjs": "^13.5.40"
}
},
"node_modules/@jupyterlab/application": {
"version": "3.6.1",
"resolved": "https://registry.npmjs.org/@jupyterlab/application/-/application-3.6.1.tgz",
"integrity": "sha512-EpZ5pByXqiNwX9Kj6H5UepYJ9nNI3uU0ule7vCHhLmvJTM9+ARUKT9a52qp2uAyZSjdihl1cHfVKONEM9Xn8fA==",
"dependencies": {
"@fortawesome/fontawesome-free": "^5.12.0",
"@jupyterlab/apputils": "^3.6.1",
"@jupyterlab/coreutils": "^5.6.1",
"@jupyterlab/docregistry": "^3.6.1",
"@jupyterlab/rendermime": "^3.6.1",
"@jupyterlab/rendermime-interfaces": "^3.6.1",
"@jupyterlab/services": "^6.6.1",
"@jupyterlab/statedb": "^3.6.1",
"@jupyterlab/translation": "^3.6.1",
"@jupyterlab/ui-components": "^3.6.1",
"@lumino/algorithm": "^1.9.0",
"@lumino/application": "^1.31.3",
"@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.37.1"
}
},
"node_modules/@jupyterlab/apputils": {
"version": "3.6.1",
"resolved": "https://registry.npmjs.org/@jupyterlab/apputils/-/apputils-3.6.1.tgz",
"integrity": "sha512-/kvncjPLuBnq8unPEVxI/iwUVCVPFw9bmpnYenOdoAlbdrDD8nJwsiFi4xpk1d4VittPZ6vJaAMvXA0X2QGYlQ==",
"dependencies": {
"@jupyterlab/coreutils": "^5.6.1",
"@jupyterlab/observables": "^4.6.1",
"@jupyterlab/services": "^6.6.1",
"@jupyterlab/settingregistry": "^3.6.1",
"@jupyterlab/statedb": "^3.6.1",
"@jupyterlab/translation": "^3.6.1",
"@jupyterlab/ui-components": "^3.6.1",
"@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.37.1",
"@types/react": "^17.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"sanitize-html": "~2.7.3",
"url": "^0.11.0"
}
},
"node_modules/@jupyterlab/attachments": {
"version": "3.6.1",
"resolved": "https://registry.npmjs.org/@jupyterlab/attachments/-/attachments-3.6.1.tgz",
"integrity": "sha512-0RA8H0pR3apvqHmkzuFJcJrNXXVDa5GG2Y2Nb5QDtOj+IFRMxEa/8Q4rXtiC7p+fDIgKC/B8xa4CTQlfDCEjaw==",
"dependencies": {
"@jupyterlab/nbformat": "^3.6.1",
"@jupyterlab/observables": "^4.6.1",
"@jupyterlab/rendermime": "^3.6.1",
"@jupyterlab/rendermime-interfaces": "^3.6.1",
"@lumino/disposable": "^1.10.0",
"@lumino/signaling": "^1.10.0"
}
},
"node_modules/@jupyterlab/builder": {
"version": "3.6.4",
"resolved": "https://registry.npmjs.org/@jupyterlab/builder/-/builder-3.6.4.tgz",
"integrity": "sha512-ycTW4P7VRF+67JCb/PlJ358CBsoUYxxkiAEkR6R9QJEY0Zk4S4NuuHq2Sv87Zclpj+xlrxlnSR9WaLq8zEvR7A==",
"dependencies": {
"@lumino/algorithm": "^1.9.0",
"@lumino/application": "^1.31.4",
"@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.37.2",
"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",
"source-map-loader": "~1.0.2",
"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"
},
"bin": {
"build-labextension": "lib/build-labextension.js"
}
},
"node_modules/@jupyterlab/cells": {
"version": "3.6.1",
"resolved": "https://registry.npmjs.org/@jupyterlab/cells/-/cells-3.6.1.tgz",
"integrity": "sha512-Ojep4Sw83c4uzYSDMQcECW7wuan/dkerimKkb/5cm277ryHL51IgjZTEpJKaW8AeEjNxtAwjlo4cl/5KIwKvQw==",
"dependencies": {
"@jupyter/ydoc": "~0.2.0",
"@jupyterlab/apputils": "^3.6.1",
"@jupyterlab/attachments": "^3.6.1",
"@jupyterlab/codeeditor": "^3.6.1",
"@jupyterlab/codemirror": "^3.6.1",
"@jupyterlab/coreutils": "^5.6.1",
"@jupyterlab/filebrowser": "^3.6.1",
"@jupyterlab/nbformat": "^3.6.1",
"@jupyterlab/observables": "^4.6.1",
"@jupyterlab/outputarea": "^3.6.1",
"@jupyterlab/rendermime": "^3.6.1",
"@jupyterlab/services": "^6.6.1",
"@jupyterlab/ui-components": "^3.6.1",
"@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.37.1",
"marked": "^4.0.17",
"react": "^17.0.1"
}
},
"node_modules/@jupyterlab/codeeditor": {
"version": "3.6.1",
"resolved": "https://registry.npmjs.org/@jupyterlab/codeeditor/-/codeeditor-3.6.1.tgz",
"integrity": "sha512-KIALB/PHY9LheZ0zGYMHnDGVUO5xReiG+u0Gb+658xYET148a/pU4kp47GzTYB2bsQRrmOmtMqda1/Nhn/c0xw==",
"dependencies": {
"@jupyter/ydoc": "~0.2.0",
"@jupyterlab/coreutils": "^5.6.1",
"@jupyterlab/nbformat": "^3.6.1",
"@jupyterlab/observables": "^4.6.1",
"@jupyterlab/translation": "^3.6.1",
"@jupyterlab/ui-components": "^3.6.1",
"@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.37.1"
}
},
"node_modules/@jupyterlab/codemirror": {
"version": "3.6.1",
"resolved": "https://registry.npmjs.org/@jupyterlab/codemirror/-/codemirror-3.6.1.tgz",
"integrity": "sha512-hEjdAm1bSsBNuzjhnCJrphVdl8HZSGh/+q2MioyF7zRK+VbFarx7DKoYdAtaunHu5MkYA9NGf7mjLVyg17dK9g==",
"dependencies": {
"@jupyter/ydoc": "~0.2.0",
"@jupyterlab/apputils": "^3.6.1",
"@jupyterlab/codeeditor": "^3.6.1",
"@jupyterlab/coreutils": "^5.6.1",
"@jupyterlab/nbformat": "^3.6.1",
"@jupyterlab/observables": "^4.6.1",
"@jupyterlab/statusbar": "^3.6.1",
"@jupyterlab/translation": "^3.6.1",
"@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.37.1",
"codemirror": "~5.61.0",
"react": "^17.0.1",
"y-codemirror": "^3.0.1"
}
},
"node_modules/@jupyterlab/coreutils": {
"version": "5.6.1",
"resolved": "https://registry.npmjs.org/@jupyterlab/coreutils/-/coreutils-5.6.1.tgz",
"integrity": "sha512-nS4ixC9H53lFzdszOfZfDhlM2hlXfOtQAn6TnA/0Ra/gTBQ+LEbFIWdAp588iKuv8eKX39O/Us53T4oq24A31g==",
"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"
}
},
"node_modules/@jupyterlab/docmanager": {
"version": "3.6.1",
"resolved": "https://registry.npmjs.org/@jupyterlab/docmanager/-/docmanager-3.6.1.tgz",
"integrity": "sha512-olDFoXq2H6TsnCk4OMJus4PcmXCtc2uewZy66XcLD7igDxKvQ50h9uF2wnrxohlgvXxZV9HTMyDyLD7layt82g==",
"dependencies": {
"@jupyterlab/apputils": "^3.6.1",
"@jupyterlab/coreutils": "^5.6.1",
"@jupyterlab/docprovider": "^3.6.1",
"@jupyterlab/docregistry": "^3.6.1",
"@jupyterlab/services": "^6.6.1",
"@jupyterlab/statusbar": "^3.6.1",
"@jupyterlab/translation": "^3.6.1",
"@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.37.1",
"react": "^17.0.1"
}
},
"node_modules/@jupyterlab/docprovider": {
"version": "3.6.1",
"resolved": "https://registry.npmjs.org/@jupyterlab/docprovider/-/docprovider-3.6.1.tgz",
"integrity": "sha512-YeqLMPlC2jEWBvxgIVfhxbeYXWKb5DGEkv+WJp11S6oFgSNqAHZ1zqH1BB/+UgYWwwkafADwAjepaGFhnr2pPw==",
"dependencies": {
"@jupyter/ydoc": "~0.2.0",
"@jupyterlab/coreutils": "^5.6.1",
"@jupyterlab/services": "^6.6.1",
"@lumino/coreutils": "^1.11.0",
"@lumino/disposable": "^1.10.0",
"@lumino/signaling": "^1.10.0",
"y-protocols": "^1.0.5",
"y-websocket": "^1.3.15",
"yjs": "^13.5.17"
}
},
"node_modules/@jupyterlab/docregistry": {
"version": "3.6.1",
"resolved": "https://registry.npmjs.org/@jupyterlab/docregistry/-/docregistry-3.6.1.tgz",
"integrity": "sha512-uQsmw1LpvcRC8CZ/cjmFnQKB+E+kWqJQDGwtzBDjZm4UcADVs1mwvSwPpAZvTBb0gmYBcS09mTZt7WgVv1Nj8A==",
"dependencies": {
"@jupyter/ydoc": "~0.2.0",
"@jupyterlab/apputils": "^3.6.1",
"@jupyterlab/codeeditor": "^3.6.1",
"@jupyterlab/codemirror": "^3.6.1",
"@jupyterlab/coreutils": "^5.6.1",
"@jupyterlab/docprovider": "^3.6.1",
"@jupyterlab/observables": "^4.6.1",
"@jupyterlab/rendermime": "^3.6.1",
"@jupyterlab/rendermime-interfaces": "^3.6.1",
"@jupyterlab/services": "^6.6.1",
"@jupyterlab/translation": "^3.6.1",
"@jupyterlab/ui-components": "^3.6.1",
"@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.37.1"
}
},
"node_modules/@jupyterlab/filebrowser": {
"version": "3.6.1",
"resolved": "https://registry.npmjs.org/@jupyterlab/filebrowser/-/filebrowser-3.6.1.tgz",
"integrity": "sha512-brd5PQQ1m9HK+53opahoi6SaEO0oweRloE1GJEA9t9CHKklpiZ18/3QXF+WDgHtV2UU3ZDmND7Fq5YCets2lBg==",
"dependencies": {
"@jupyterlab/apputils": "^3.6.1",
"@jupyterlab/coreutils": "^5.6.1",
"@jupyterlab/docmanager": "^3.6.1",
"@jupyterlab/docregistry": "^3.6.1",
"@jupyterlab/services": "^6.6.1",
"@jupyterlab/statedb": "^3.6.1",
"@jupyterlab/statusbar": "^3.6.1",
"@jupyterlab/translation": "^3.6.1",
"@jupyterlab/ui-components": "^3.6.1",
"@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.37.1",
"react": "^17.0.1"
}
},
"node_modules/@jupyterlab/fileeditor": {
"version": "3.6.1",
"resolved": "https://registry.npmjs.org/@jupyterlab/fileeditor/-/fileeditor-3.6.1.tgz",
"integrity": "sha512-OzlC9XWkpWttRRWgWjLtgogIh/Cprx4n3aI9Rmz1Fo3b2jLMqcoC/dS4B0VGcIuHi5Py8sGqz0sMrc23KnrfCQ==",
"dependencies": {
"@jupyterlab/apputils": "^3.6.1",
"@jupyterlab/codeeditor": "^3.6.1",
"@jupyterlab/docregistry": "^3.6.1",
"@jupyterlab/statusbar": "^3.6.1",
"@jupyterlab/translation": "^3.6.1",
"@jupyterlab/ui-components": "^3.6.1",
"@lumino/coreutils": "^1.11.0",
"@lumino/messaging": "^1.10.0",
"@lumino/widgets": "^1.37.1",
"react": "^17.0.1"
}
},
"node_modules/@jupyterlab/markdownviewer": {
"version": "3.6.1",
"resolved": "https://registry.npmjs.org/@jupyterlab/markdownviewer/-/markdownviewer-3.6.1.tgz",
"integrity": "sha512-xRh+mC1+GZxIHV9cB1Jsbaam2lAsEa147o0RzY9Mb7I6ZLZGbnwk+aAen0VqD/P9GovOOG6FoYtlGj+bgEbRBg==",
"dependencies": {
"@jupyterlab/apputils": "^3.6.1",
"@jupyterlab/coreutils": "^5.6.1",
"@jupyterlab/docregistry": "^3.6.1",
"@jupyterlab/rendermime": "^3.6.1",
"@jupyterlab/translation": "^3.6.1",
"@lumino/coreutils": "^1.11.0",
"@lumino/messaging": "^1.10.0",
"@lumino/widgets": "^1.37.1"
}
},
"node_modules/@jupyterlab/nbformat": {
"version": "3.6.1",
"resolved": "https://registry.npmjs.org/@jupyterlab/nbformat/-/nbformat-3.6.1.tgz",
"integrity": "sha512-fLJTAwnQZ/5H9dBV/noqlkbGmGBbcsgd0FHWyMVIq+efKFX6CW1MOk61uM76rfahkke3XgYgvlXsw7i7lEIhcA==",
"dependencies": {
"@lumino/coreutils": "^1.11.0"
}
},
"node_modules/@jupyterlab/notebook": {
"version": "3.6.1",
"resolved": "https://registry.npmjs.org/@jupyterlab/notebook/-/notebook-3.6.1.tgz",
"integrity": "sha512-wkc0/HcnLhYSMtF1y5pf2ngvuhU0UE6tmIjCWl4rP0aC4aAjZZzkRNXV4EwNfY73fLT4EGB149l8Jv4vKUVGdQ==",
"dependencies": {
"@jupyter/ydoc": "~0.2.0",
"@jupyterlab/apputils": "^3.6.1",
"@jupyterlab/cells": "^3.6.1",
"@jupyterlab/codeeditor": "^3.6.1",
"@jupyterlab/coreutils": "^5.6.1",
"@jupyterlab/docregistry": "^3.6.1",
"@jupyterlab/nbformat": "^3.6.1",
"@jupyterlab/observables": "^4.6.1",
"@jupyterlab/rendermime": "^3.6.1",
"@jupyterlab/services": "^6.6.1",
"@jupyterlab/settingregistry": "^3.6.1",
"@jupyterlab/statusbar": "^3.6.1",
"@jupyterlab/translation": "^3.6.1",
"@jupyterlab/ui-components": "^3.6.1",
"@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.37.1",
"react": "^17.0.1"
}
},
"node_modules/@jupyterlab/observables": {
"version": "4.6.1",
"resolved": "https://registry.npmjs.org/@jupyterlab/observables/-/observables-4.6.1.tgz",
"integrity": "sha512-ez+fxyE3qwQ9grZ0nj2fpgcPIGySs/cNfojfcQatziV2rbFZzrBJJsWFSBhPO55vJd1Mue21aPw1eEK3ok4Wfw==",
"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"
}
},
"node_modules/@jupyterlab/outputarea": {
"version": "3.6.1",
"resolved": "https://registry.npmjs.org/@jupyterlab/outputarea/-/outputarea-3.6.1.tgz",
"integrity": "sha512-/OWU9LvKeRUk5mzQskhPQtWY6/NIiRy3bzhbFesSJ1+3f+L1pk7mXCHmRxiG6FSw2ujeCV3vO4uFTXGLxoqiAw==",
"dependencies": {
"@jupyterlab/apputils": "^3.6.1",
"@jupyterlab/nbformat": "^3.6.1",
"@jupyterlab/observables": "^4.6.1",
"@jupyterlab/rendermime": "^3.6.1",
"@jupyterlab/rendermime-interfaces": "^3.6.1",
"@jupyterlab/services": "^6.6.1",
"@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.37.1",
"resize-observer-polyfill": "^1.5.1"
}
},
"node_modules/@jupyterlab/rendermime": {
"version": "3.6.1",
"resolved": "https://registry.npmjs.org/@jupyterlab/rendermime/-/rendermime-3.6.1.tgz",
"integrity": "sha512-v4YHIxSd+0foqyzTaloBPevdYUBgZ4Tk1uuXzTdCVIdceS9MG76UfjBu8EPl86AZI8R2ihlHh01pxpgLX0Smdw==",
"dependencies": {
"@jupyterlab/apputils": "^3.6.1",
"@jupyterlab/codemirror": "^3.6.1",
"@jupyterlab/coreutils": "^5.6.1",
"@jupyterlab/nbformat": "^3.6.1",
"@jupyterlab/observables": "^4.6.1",
"@jupyterlab/rendermime-interfaces": "^3.6.1",
"@jupyterlab/services": "^6.6.1",
"@jupyterlab/translation": "^3.6.1",
"@lumino/algorithm": "^1.9.0",
"@lumino/coreutils": "^1.11.0",
"@lumino/messaging": "^1.10.0",
"@lumino/signaling": "^1.10.0",
"@lumino/widgets": "^1.37.1",
"lodash.escape": "^4.0.1",
"marked": "^4.0.17"
}
},
"node_modules/@jupyterlab/rendermime-interfaces": {
"version": "3.6.1",
"resolved": "https://registry.npmjs.org/@jupyterlab/rendermime-interfaces/-/rendermime-interfaces-3.6.1.tgz",
"integrity": "sha512-IB0rFBTRpguGbAF/WmNPa//UfXcZLRur5DuSwP5tRz2iUZIu/dAFeLDq3j8NL2POz1+yeXyQSQyp2Xu9w8CrFw==",
"dependencies": {
"@jupyterlab/translation": "^3.6.1",
"@lumino/coreutils": "^1.11.0",
"@lumino/widgets": "^1.37.1"
}
},
"node_modules/@jupyterlab/services": {
"version": "6.6.1",
"resolved": "https://registry.npmjs.org/@jupyterlab/services/-/services-6.6.1.tgz",
"integrity": "sha512-4YIwTsfx7+JO7Lz9YFTpUvniA3aHdR5dDQJfdo9TsCMxs+NDVfjNAvp9VHa1xNJWYll4Ay31lYWbvuN/SI+KEA==",
"dependencies": {
"@jupyterlab/coreutils": "^5.6.1",
"@jupyterlab/nbformat": "^3.6.1",
"@jupyterlab/observables": "^4.6.1",
"@jupyterlab/settingregistry": "^3.6.1",
"@jupyterlab/statedb": "^3.6.1",
"@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"
}
},
"node_modules/@jupyterlab/services/node_modules/node-fetch": {
"version": "2.6.9",
"resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.9.tgz",
"integrity": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==",
"dependencies": {
"whatwg-url": "^5.0.0"
},
"engines": {
"node": "4.x || >=6.0.0"
},
"peerDependencies": {
"encoding": "^0.1.0"
},
"peerDependenciesMeta": {
"encoding": {
"optional": true
}
}
},
"node_modules/@jupyterlab/services/node_modules/tr46": {
"version": "0.0.3",
"resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz",
"integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw=="
},
"node_modules/@jupyterlab/services/node_modules/webidl-conversions": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
"integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ=="
},
"node_modules/@jupyterlab/services/node_modules/whatwg-url": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz",
"integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==",
"dependencies": {
"tr46": "~0.0.3",
"webidl-conversions": "^3.0.0"
}
},
"node_modules/@jupyterlab/settingregistry": {
"version": "3.6.1",
"resolved": "https://registry.npmjs.org/@jupyterlab/settingregistry/-/settingregistry-3.6.1.tgz",
"integrity": "sha512-zNCYIK6/oWG6JnhmwRGE/Zvn5Xhj0kovcJgTlOSHGyIiHqLfJA9TzHZDNUDANqqxAg4+H9fYdh1+agi4XWGL8A==",
"dependencies": {
"@jupyterlab/statedb": "^3.6.1",
"@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"
}
},
"node_modules/@jupyterlab/statedb": {
"version": "3.6.1",
"resolved": "https://registry.npmjs.org/@jupyterlab/statedb/-/statedb-3.6.1.tgz",
"integrity": "sha512-6+fGzKUCaWBKX/fZDdXR++WgfvYE+Dv5ma8gkgcHaS2vEup2snkmgZ8fBUJXm5xVpU4KhXjTUb7dafLfG7BL3Q==",
"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"
}
},
"node_modules/@jupyterlab/statusbar": {
"version": "3.6.1",
"resolved": "https://registry.npmjs.org/@jupyterlab/statusbar/-/statusbar-3.6.1.tgz",
"integrity": "sha512-rpQa6G6agR+lu3Djt/YTroQ4W3ZasfGmtmO24IXsm3C5418nPIl2oQeEJTc7OsXRvsdoCoAK7c/Rh9TeyhBhug==",
"dependencies": {
"@jupyterlab/apputils": "^3.6.1",
"@jupyterlab/codeeditor": "^3.6.1",
"@jupyterlab/services": "^6.6.1",
"@jupyterlab/translation": "^3.6.1",
"@jupyterlab/ui-components": "^3.6.1",
"@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.37.1",
"csstype": "~3.0.3",
"react": "^17.0.1",
"typestyle": "^2.0.4"
}
},
"node_modules/@jupyterlab/toc": {
"version": "5.6.1",
"resolved": "https://registry.npmjs.org/@jupyterlab/toc/-/toc-5.6.1.tgz",
"integrity": "sha512-WY+SoWcWik0MDYf2WKzbrqEDzzqs5j7BsGILWF0VwBaEfIiyiFCXJtnN59KVJ79KXucFvOmGKPV2WX1pbTdtDw==",
"dependencies": {
"@jupyterlab/apputils": "^3.6.1",
"@jupyterlab/cells": "^3.6.1",
"@jupyterlab/coreutils": "^5.6.1",
"@jupyterlab/docmanager": "^3.6.1",
"@jupyterlab/docregistry": "^3.6.1",
"@jupyterlab/fileeditor": "^3.6.1",
"@jupyterlab/markdownviewer": "^3.6.1",
"@jupyterlab/notebook": "^3.6.1",
"@jupyterlab/rendermime": "^3.6.1",
"@jupyterlab/settingregistry": "^3.6.1",
"@jupyterlab/translation": "^3.6.1",
"@jupyterlab/ui-components": "^3.6.1",
"@lumino/coreutils": "^1.11.0",
"@lumino/domutils": "^1.8.0",
"@lumino/messaging": "^1.10.0",
"@lumino/signaling": "^1.10.0",
"@lumino/widgets": "^1.37.1",
"react": "^17.0.1",
"react-dom": "^17.0.1"
}
},
"node_modules/@jupyterlab/toc-extension": {
"version": "5.6.1",
"resolved": "https://registry.npmjs.org/@jupyterlab/toc-extension/-/toc-extension-5.6.1.tgz",
"integrity": "sha512-d6noB/RSmK8JwE8MBJZiC/S0aZQwBExvd2CF1V7TV/jWJ6s8ZY3LnpycHMbQi/c3J0fMufQY1xFce6GXSmBGkA==",
"dependencies": {
"@jupyterlab/application": "^3.6.1",
"@jupyterlab/cells": "^3.6.1",
"@jupyterlab/docmanager": "^3.6.1",
"@jupyterlab/fileeditor": "^3.6.1",
"@jupyterlab/markdownviewer": "^3.6.1",
"@jupyterlab/notebook": "^3.6.1",
"@jupyterlab/rendermime": "^3.6.1",
"@jupyterlab/settingregistry": "^3.6.1",
"@jupyterlab/toc": "^5.6.1",
"@jupyterlab/translation": "^3.6.1",
"@jupyterlab/ui-components": "^3.6.1"
}
},
"node_modules/@jupyterlab/translation": {
"version": "3.6.1",
"resolved": "https://registry.npmjs.org/@jupyterlab/translation/-/translation-3.6.1.tgz",
"integrity": "sha512-+I1zzQnYNVnU9rrr7ceHPexiyMFavfK0t6I3qdgAHQ1TTLsLVQMp5m/T7S2SaJjPK7/GtRml5DgmErRyy5becA==",
"dependencies": {
"@jupyterlab/coreutils": "^5.6.1",
"@jupyterlab/services": "^6.6.1",
"@jupyterlab/statedb": "^3.6.1",
"@lumino/coreutils": "^1.11.0"
}
},
"node_modules/@jupyterlab/ui-components": {
"version": "3.6.1",
"resolved": "https://registry.npmjs.org/@jupyterlab/ui-components/-/ui-components-3.6.1.tgz",
"integrity": "sha512-p9wH9iidGuuKSm2yXFGhHs6gzpoBpsHRCiOJw9bmj2PBsDKEGjh65Rh0YBv0d7TD6VVgAwMmokaT01KqjUmY+g==",
"dependencies": {
"@blueprintjs/core": "^3.36.0",
"@blueprintjs/select": "^3.15.0",
"@jupyterlab/coreutils": "^5.6.1",
"@jupyterlab/translation": "^3.6.1",
"@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.37.1",
"@rjsf/core": "^3.1.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"typestyle": "^2.0.4"
},
"peerDependencies": {
"react": "^17.0.1"
}
},
"node_modules/@lumino/algorithm": {
"version": "1.9.2",
"resolved": "https://registry.npmjs.org/@lumino/algorithm/-/algorithm-1.9.2.tgz",
"integrity": "sha512-Z06lp/yuhz8CtIir3PNTGnuk7909eXt4ukJsCzChsGuot2l5Fbs96RJ/FOHgwCedaX74CtxPjXHXoszFbUA+4A=="
},
"node_modules/@lumino/application": {
"version": "1.31.4",
"resolved": "https://registry.npmjs.org/@lumino/application/-/application-1.31.4.tgz",
"integrity": "sha512-dOSsDJ1tXOxC3fnSHvtDQK5RcICLEVPtO19HeCGwurb5W2ZZ55SZT2b5jZu6V/v8lGdtkNbr1RJltRpJRSRb/A==",
"dependencies": {
"@lumino/commands": "^1.21.1",
"@lumino/coreutils": "^1.12.1",
"@lumino/widgets": "^1.37.2"
}
},
"node_modules/@lumino/collections": {
"version": "1.9.3",
"resolved": "https://registry.npmjs.org/@lumino/collections/-/collections-1.9.3.tgz",
"integrity": "sha512-2i2Wf1xnfTgEgdyKEpqM16bcYRIhUOGCDzaVCEZACVG9R1CgYwOe3zfn71slBQOVSjjRgwYrgLXu4MBpt6YK+g==",
"dependencies": {
"@lumino/algorithm": "^1.9.2"
}
},
"node_modules/@lumino/commands": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@lumino/commands/-/commands-1.21.1.tgz",
"integrity": "sha512-d1zJmwz5bHU0BM/Rl3tRdZ7/WgXnFB0bM7x7Bf0XDlmX++jnU9k0j3mh6/5JqCGLmIApKCRwVqSaV7jPmSJlcQ==",
"dependencies": {
"@lumino/algorithm": "^1.9.2",
"@lumino/coreutils": "^1.12.1",
"@lumino/disposable": "^1.10.4",
"@lumino/domutils": "^1.8.2",
"@lumino/keyboard": "^1.8.2",
"@lumino/signaling": "^1.11.1",
"@lumino/virtualdom": "^1.14.3"
}
},
"node_modules/@lumino/coreutils": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@lumino/coreutils/-/coreutils-1.12.1.tgz",
"integrity": "sha512-JLu3nTHzJk9N8ohZ85u75YxemMrmDzJdNgZztfP7F7T7mxND3YVNCkJG35a6aJ7edu1sIgCjBxOvV+hv27iYvQ==",
"peerDependencies": {
"crypto": "1.0.1"
}
},
"node_modules/@lumino/disposable": {
"version": "1.10.4",
"resolved": "https://registry.npmjs.org/@lumino/disposable/-/disposable-1.10.4.tgz",
"integrity": "sha512-4ZxyYcyzUS+ZeB2KAH9oAH3w0DUUceiVr+FIZHZ2TAYGWZI/85WlqJtfm0xjwEpCwLLW1TDqJrISuZu3iMmVMA==",
"dependencies": {
"@lumino/algorithm": "^1.9.2",
"@lumino/signaling": "^1.11.1"
}
},
"node_modules/@lumino/domutils": {
"version": "1.8.2",
"resolved": "https://registry.npmjs.org/@lumino/domutils/-/domutils-1.8.2.tgz",
"integrity": "sha512-QIpMfkPJrs4GrWBuJf2Sn1fpyVPmvqUUAeD8xAQo8+4V5JAT0vUDLxZ9HijefMgNCi3+Bs8Z3lQwRCrz+cFP1A=="
},
"node_modules/@lumino/dragdrop": {
"version": "1.14.5",
"resolved": "https://registry.npmjs.org/@lumino/dragdrop/-/dragdrop-1.14.5.tgz",
"integrity": "sha512-LC5xB82+xGF8hFyl716TMpV32OIMIMl+s3RU1PaqDkD6B7PkgiVk6NkJ4X9/GcEvl2igkvlGQt/3L7qxDAJNxw==",
"dependencies": {
"@lumino/coreutils": "^1.12.1",
"@lumino/disposable": "^1.10.4"
}
},
"node_modules/@lumino/keyboard": {
"version": "1.8.2",
"resolved": "https://registry.npmjs.org/@lumino/keyboard/-/keyboard-1.8.2.tgz",
"integrity": "sha512-Dy+XqQ1wXbcnuYtjys5A0pAqf4SpAFl9NY6owyIhXAo0Va7w3LYp3jgiP1xAaBAwMuUppiUAfrbjrysZuZ625g=="
},
"node_modules/@lumino/messaging": {
"version": "1.10.3",
"resolved": "https://registry.npmjs.org/@lumino/messaging/-/messaging-1.10.3.tgz",
"integrity": "sha512-F/KOwMCdqvdEG8CYAJcBSadzp6aI7a47Fr60zAKGqZATSRRRV41q53iXU7HjFPqQqQIvdn9Z7J32rBEAyQAzww==",
"dependencies": {
"@lumino/algorithm": "^1.9.2",
"@lumino/collections": "^1.9.3"
}
},
"node_modules/@lumino/polling": {
"version": "1.11.4",
"resolved": "https://registry.npmjs.org/@lumino/polling/-/polling-1.11.4.tgz",
"integrity": "sha512-yC7JLssj3mqVK6TsYj7dg4AG0rcsC42YtpoDLtz9yzO84Q5flQUfmjAPQB6oPA6wZOlISs3iasF+uO2w1ls5jg==",
"dependencies": {
"@lumino/coreutils": "^1.12.1",
"@lumino/disposable": "^1.10.4",
"@lumino/signaling": "^1.11.1"
}
},
"node_modules/@lumino/properties": {
"version": "1.8.2",
"resolved": "https://registry.npmjs.org/@lumino/properties/-/properties-1.8.2.tgz",
"integrity": "sha512-EkjI9Cw8R0U+xC9HxdFSu7X1tz1H1vKu20cGvJ2gU+CXlMB1DvoYJCYxCThByHZ+kURTAap4SE5x8HvKwNPbig=="
},
"node_modules/@lumino/signaling": {
"version": "1.11.1",
"resolved": "https://registry.npmjs.org/@lumino/signaling/-/signaling-1.11.1.tgz",
"integrity": "sha512-YCUmgw08VoyMN5KxzqPO3KMx+cwdPv28tAN06C0K7Q/dQf+oufb1XocuhZb5selTrTmmuXeizaYxgLIQGdS1fA==",
"dependencies": {
"@lumino/algorithm": "^1.9.2",
"@lumino/properties": "^1.8.2"
}
},
"node_modules/@lumino/virtualdom": {
"version": "1.14.3",
"resolved": "https://registry.npmjs.org/@lumino/virtualdom/-/virtualdom-1.14.3.tgz",
"integrity": "sha512-5joUC1yuxeXbpfbSBm/OR8Mu9HoTo6PDX0RKqzlJ9o97iml7zayFN/ynzcxScKGQAo9iaXOY8uVIvGUT8FnsGw==",
"dependencies": {
"@lumino/algorithm": "^1.9.2"
}
},
"node_modules/@lumino/widgets": {
"version": "1.37.2",
"resolved": "https://registry.npmjs.org/@lumino/widgets/-/widgets-1.37.2.tgz",
"integrity": "sha512-NHKu1NBDo6ETBDoNrqSkornfUCwc8EFFzw6+LWBfYVxn2PIwciq2SdiJGEyNqL+0h/A9eVKb5ui5z4cwpRekmQ==",
"dependencies": {
"@lumino/algorithm": "^1.9.2",
"@lumino/commands": "^1.21.1",
"@lumino/coreutils": "^1.12.1",
"@lumino/disposable": "^1.10.4",
"@lumino/domutils": "^1.8.2",
"@lumino/dragdrop": "^1.14.5",
"@lumino/keyboard": "^1.8.2",
"@lumino/messaging": "^1.10.3",
"@lumino/properties": "^1.8.2",
"@lumino/signaling": "^1.11.1",
"@lumino/virtualdom": "^1.14.3"
}
},
"node_modules/@npmcli/fs": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-1.1.1.tgz",
"integrity": "sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==",
"dependencies": {
"@gar/promisify": "^1.0.1",
"semver": "^7.3.5"
}
},
"node_modules/@npmcli/move-file": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz",
"integrity": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==",
"deprecated": "This functionality has been moved to @npmcli/fs",
"dependencies": {
"mkdirp": "^1.0.4",
"rimraf": "^3.0.2"
},
"engines": {
"node": ">=10"
}
},
"node_modules/@rjsf/core": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@rjsf/core/-/core-3.2.1.tgz",
"integrity": "sha512-dk8ihvxFbcuIwU7G+HiJbFgwyIvaumPt5g5zfnuC26mwTUPlaDGFXKK2yITp8tJ3+hcwS5zEXtAN9wUkfuM4jA==",
"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"
},
"engines": {
"node": ">=12"
},
"peerDependencies": {
"react": ">=16"
}
},
"node_modules/@rjsf/core/node_modules/nanoid": {
"version": "3.3.4",
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz",
"integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==",
"bin": {
"nanoid": "bin/nanoid.cjs"
},
"engines": {
"node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
}
},
"node_modules/@types/dom4": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/@types/dom4/-/dom4-2.0.2.tgz",
"integrity": "sha512-Rt4IC1T7xkCWa0OG1oSsPa0iqnxlDeQqKXZAHrQGLb7wFGncWm85MaxKUjAGejOrUynOgWlFi4c6S6IyJwoK4g=="
},
"node_modules/@types/eslint": {
"version": "8.21.1",
"resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.21.1.tgz",
"integrity": "sha512-rc9K8ZpVjNcLs8Fp0dkozd5Pt2Apk1glO4Vgz8ix1u6yFByxfqo5Yavpy65o+93TAe24jr7v+eSBtFLvOQtCRQ==",
"dependencies": {
"@types/estree": "*",
"@types/json-schema": "*"
}
},