-
-
Notifications
You must be signed in to change notification settings - Fork 119
Expand file tree
/
Copy pathpackage-lock.json
More file actions
8454 lines (8454 loc) · 339 KB
/
package-lock.json
File metadata and controls
8454 lines (8454 loc) · 339 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "jupyterlab-visualpython",
"version": "3.0.2",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "jupyterlab-visualpython",
"version": "3.0.2",
"license": "GPLv3 with Visual Python special exception",
"dependencies": {
"@jupyterlab/application": "^4.1.0-alpha.2",
"@jupyterlab/cells": "^4.0.5",
"@jupyterlab/notebook": "^4.0.5",
"@jupyterlab/ui-components": "^4.0.5",
"css-loader": "^6.7.1",
"jquery": "^3.6.3",
"jquery-ui": "^1.13.2",
"jquery-ui-bundle": "^1.12.1-migrate",
"json-loader": "^0.5.7",
"marked": "^8.0.0",
"module-alias": "^2.2.2",
"raw-loader": "^4.0.2",
"requirejs": "^2.3.6",
"text-loader": "^0.0.1"
},
"devDependencies": {
"@jupyterlab/builder": "^4.0.0",
"@types/json-schema": "^7.0.11",
"@types/react": "^18.0.26",
"css-loader": "^6.7.1",
"rimraf": "^5.0.1",
"source-map-loader": "^1.0.2",
"style-loader": "^3.3.1"
}
},
"lib/visualpython": {
"extraneous": true
},
"node_modules/@codemirror/autocomplete": {
"version": "6.9.0",
"resolved": "https://registry.npmjs.org/@codemirror/autocomplete/-/autocomplete-6.9.0.tgz",
"integrity": "sha512-Fbwm0V/Wn3BkEJZRhr0hi5BhCo5a7eBL6LYaliPjOSwCyfOpnjXY59HruSxOUNV+1OYer0Tgx1zRNQttjXyDog==",
"dependencies": {
"@codemirror/language": "^6.0.0",
"@codemirror/state": "^6.0.0",
"@codemirror/view": "^6.6.0",
"@lezer/common": "^1.0.0"
},
"peerDependencies": {
"@codemirror/language": "^6.0.0",
"@codemirror/state": "^6.0.0",
"@codemirror/view": "^6.0.0",
"@lezer/common": "^1.0.0"
}
},
"node_modules/@codemirror/commands": {
"version": "6.2.5",
"resolved": "https://registry.npmjs.org/@codemirror/commands/-/commands-6.2.5.tgz",
"integrity": "sha512-dSi7ow2P2YgPBZflR9AJoaTHvqmeGIgkhignYMd5zK5y6DANTvxKxp6eMEpIDUJkRAaOY/TFZ4jP1ADIO/GLVA==",
"dependencies": {
"@codemirror/language": "^6.0.0",
"@codemirror/state": "^6.2.0",
"@codemirror/view": "^6.0.0",
"@lezer/common": "^1.0.0"
}
},
"node_modules/@codemirror/lang-cpp": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/@codemirror/lang-cpp/-/lang-cpp-6.0.2.tgz",
"integrity": "sha512-6oYEYUKHvrnacXxWxYa6t4puTlbN3dgV662BDfSH8+MfjQjVmP697/KYTDOqpxgerkvoNm7q5wlFMBeX8ZMocg==",
"dependencies": {
"@codemirror/language": "^6.0.0",
"@lezer/cpp": "^1.0.0"
}
},
"node_modules/@codemirror/lang-css": {
"version": "6.2.1",
"resolved": "https://registry.npmjs.org/@codemirror/lang-css/-/lang-css-6.2.1.tgz",
"integrity": "sha512-/UNWDNV5Viwi/1lpr/dIXJNWiwDxpw13I4pTUAsNxZdg6E0mI2kTQb0P2iHczg1Tu+H4EBgJR+hYhKiHKko7qg==",
"dependencies": {
"@codemirror/autocomplete": "^6.0.0",
"@codemirror/language": "^6.0.0",
"@codemirror/state": "^6.0.0",
"@lezer/common": "^1.0.2",
"@lezer/css": "^1.0.0"
}
},
"node_modules/@codemirror/lang-html": {
"version": "6.4.6",
"resolved": "https://registry.npmjs.org/@codemirror/lang-html/-/lang-html-6.4.6.tgz",
"integrity": "sha512-E4C8CVupBksXvgLSme/zv31x91g06eZHSph7NczVxZW+/K+3XgJGWNT//2WLzaKSBoxpAjaOi5ZnPU1SHhjh3A==",
"dependencies": {
"@codemirror/autocomplete": "^6.0.0",
"@codemirror/lang-css": "^6.0.0",
"@codemirror/lang-javascript": "^6.0.0",
"@codemirror/language": "^6.4.0",
"@codemirror/state": "^6.0.0",
"@codemirror/view": "^6.17.0",
"@lezer/common": "^1.0.0",
"@lezer/css": "^1.1.0",
"@lezer/html": "^1.3.0"
}
},
"node_modules/@codemirror/lang-java": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/@codemirror/lang-java/-/lang-java-6.0.1.tgz",
"integrity": "sha512-OOnmhH67h97jHzCuFaIEspbmsT98fNdhVhmA3zCxW0cn7l8rChDhZtwiwJ/JOKXgfm4J+ELxQihxaI7bj7mJRg==",
"dependencies": {
"@codemirror/language": "^6.0.0",
"@lezer/java": "^1.0.0"
}
},
"node_modules/@codemirror/lang-javascript": {
"version": "6.2.1",
"resolved": "https://registry.npmjs.org/@codemirror/lang-javascript/-/lang-javascript-6.2.1.tgz",
"integrity": "sha512-jlFOXTejVyiQCW3EQwvKH0m99bUYIw40oPmFjSX2VS78yzfe0HELZ+NEo9Yfo1MkGRpGlj3Gnu4rdxV1EnAs5A==",
"dependencies": {
"@codemirror/autocomplete": "^6.0.0",
"@codemirror/language": "^6.6.0",
"@codemirror/lint": "^6.0.0",
"@codemirror/state": "^6.0.0",
"@codemirror/view": "^6.17.0",
"@lezer/common": "^1.0.0",
"@lezer/javascript": "^1.0.0"
}
},
"node_modules/@codemirror/lang-json": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/@codemirror/lang-json/-/lang-json-6.0.1.tgz",
"integrity": "sha512-+T1flHdgpqDDlJZ2Lkil/rLiRy684WMLc74xUnjJH48GQdfJo/pudlTRreZmKwzP8/tGdKf83wlbAdOCzlJOGQ==",
"dependencies": {
"@codemirror/language": "^6.0.0",
"@lezer/json": "^1.0.0"
}
},
"node_modules/@codemirror/lang-markdown": {
"version": "6.2.0",
"resolved": "https://registry.npmjs.org/@codemirror/lang-markdown/-/lang-markdown-6.2.0.tgz",
"integrity": "sha512-deKegEQVzfBAcLPqsJEa+IxotqPVwWZi90UOEvQbfa01NTAw8jNinrykuYPTULGUj+gha0ZG2HBsn4s5d64Qrg==",
"dependencies": {
"@codemirror/autocomplete": "^6.7.1",
"@codemirror/lang-html": "^6.0.0",
"@codemirror/language": "^6.3.0",
"@codemirror/state": "^6.0.0",
"@codemirror/view": "^6.0.0",
"@lezer/common": "^1.0.0",
"@lezer/markdown": "^1.0.0"
}
},
"node_modules/@codemirror/lang-php": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/@codemirror/lang-php/-/lang-php-6.0.1.tgz",
"integrity": "sha512-ublojMdw/PNWa7qdN5TMsjmqkNuTBD3k6ndZ4Z0S25SBAiweFGyY68AS3xNcIOlb6DDFDvKlinLQ40vSLqf8xA==",
"dependencies": {
"@codemirror/lang-html": "^6.0.0",
"@codemirror/language": "^6.0.0",
"@codemirror/state": "^6.0.0",
"@lezer/common": "^1.0.0",
"@lezer/php": "^1.0.0"
}
},
"node_modules/@codemirror/lang-python": {
"version": "6.1.3",
"resolved": "https://registry.npmjs.org/@codemirror/lang-python/-/lang-python-6.1.3.tgz",
"integrity": "sha512-S9w2Jl74hFlD5nqtUMIaXAq9t5WlM0acCkyuQWUUSvZclk1sV+UfnpFiZzuZSG+hfEaOmxKR5UxY/Uxswn7EhQ==",
"dependencies": {
"@codemirror/autocomplete": "^6.3.2",
"@codemirror/language": "^6.8.0",
"@lezer/python": "^1.1.4"
}
},
"node_modules/@codemirror/lang-rust": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/@codemirror/lang-rust/-/lang-rust-6.0.1.tgz",
"integrity": "sha512-344EMWFBzWArHWdZn/NcgkwMvZIWUR1GEBdwG8FEp++6o6vT6KL9V7vGs2ONsKxxFUPXKI0SPcWhyYyl2zPYxQ==",
"dependencies": {
"@codemirror/language": "^6.0.0",
"@lezer/rust": "^1.0.0"
}
},
"node_modules/@codemirror/lang-sql": {
"version": "6.5.4",
"resolved": "https://registry.npmjs.org/@codemirror/lang-sql/-/lang-sql-6.5.4.tgz",
"integrity": "sha512-5Gq7fYtT/5HbNyIG7a8vYaqOYQU3JbgtBe3+derkrFUXRVcjkf8WVgz++PIbMFAQsOFMDdDR+uiNM8ZRRuXH+w==",
"dependencies": {
"@codemirror/autocomplete": "^6.0.0",
"@codemirror/language": "^6.0.0",
"@codemirror/state": "^6.0.0",
"@lezer/highlight": "^1.0.0",
"@lezer/lr": "^1.0.0"
}
},
"node_modules/@codemirror/lang-wast": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/@codemirror/lang-wast/-/lang-wast-6.0.1.tgz",
"integrity": "sha512-sQLsqhRjl2MWG3rxZysX+2XAyed48KhLBHLgq9xcKxIJu3npH/G+BIXW5NM5mHeDUjG0jcGh9BcjP0NfMStuzA==",
"dependencies": {
"@codemirror/language": "^6.0.0",
"@lezer/highlight": "^1.0.0",
"@lezer/lr": "^1.0.0"
}
},
"node_modules/@codemirror/lang-xml": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/@codemirror/lang-xml/-/lang-xml-6.0.2.tgz",
"integrity": "sha512-JQYZjHL2LAfpiZI2/qZ/qzDuSqmGKMwyApYmEUUCTxLM4MWS7sATUEfIguZQr9Zjx/7gcdnewb039smF6nC2zw==",
"dependencies": {
"@codemirror/autocomplete": "^6.0.0",
"@codemirror/language": "^6.4.0",
"@codemirror/state": "^6.0.0",
"@lezer/common": "^1.0.0",
"@lezer/xml": "^1.0.0"
}
},
"node_modules/@codemirror/language": {
"version": "6.9.0",
"resolved": "https://registry.npmjs.org/@codemirror/language/-/language-6.9.0.tgz",
"integrity": "sha512-nFu311/0ne/qGuGCL3oKuktBgzVOaxCHZPZv1tLSZkNjPYxxvkjSbzno3MlErG2tgw1Yw1yF8BxMCegeMXqpiw==",
"dependencies": {
"@codemirror/state": "^6.0.0",
"@codemirror/view": "^6.0.0",
"@lezer/common": "^1.0.0",
"@lezer/highlight": "^1.0.0",
"@lezer/lr": "^1.0.0",
"style-mod": "^4.0.0"
}
},
"node_modules/@codemirror/legacy-modes": {
"version": "6.3.3",
"resolved": "https://registry.npmjs.org/@codemirror/legacy-modes/-/legacy-modes-6.3.3.tgz",
"integrity": "sha512-X0Z48odJ0KIoh/HY8Ltz75/4tDYc9msQf1E/2trlxFaFFhgjpVHjZ/BCXe1Lk7s4Gd67LL/CeEEHNI+xHOiESg==",
"dependencies": {
"@codemirror/language": "^6.0.0"
}
},
"node_modules/@codemirror/lint": {
"version": "6.4.1",
"resolved": "https://registry.npmjs.org/@codemirror/lint/-/lint-6.4.1.tgz",
"integrity": "sha512-2Hx945qKX7FBan5/gUdTM8fsMYrNG9clIgEcPXestbLVFAUyQYFAuju/5BMNf/PwgpVaX5pvRm4+ovjbp9D9gQ==",
"dependencies": {
"@codemirror/state": "^6.0.0",
"@codemirror/view": "^6.0.0",
"crelt": "^1.0.5"
}
},
"node_modules/@codemirror/search": {
"version": "6.5.2",
"resolved": "https://registry.npmjs.org/@codemirror/search/-/search-6.5.2.tgz",
"integrity": "sha512-WRihpqd0l9cEh9J3IZe45Yi+Z5MfTsEXnyc3V7qXHP4ZYtIYpGOn+EJ7fyLIkyAm/8S6QIr7/mMISfAadf8zCg==",
"dependencies": {
"@codemirror/state": "^6.0.0",
"@codemirror/view": "^6.0.0",
"crelt": "^1.0.5"
}
},
"node_modules/@codemirror/state": {
"version": "6.2.1",
"resolved": "https://registry.npmjs.org/@codemirror/state/-/state-6.2.1.tgz",
"integrity": "sha512-RupHSZ8+OjNT38zU9fKH2sv+Dnlr8Eb8sl4NOnnqz95mCFTZUaiRP8Xv5MeeaG0px2b8Bnfe7YGwCV3nsBhbuw=="
},
"node_modules/@codemirror/view": {
"version": "6.17.1",
"resolved": "https://registry.npmjs.org/@codemirror/view/-/view-6.17.1.tgz",
"integrity": "sha512-I5KVxsLbm1f56n9SUajLW0/AzMXYEZVvkiYahMw/yGl5gUjT2WquuKO39xUtiT4z/hNhGD7YuAEVPI8u0mncaQ==",
"dependencies": {
"@codemirror/state": "^6.1.4",
"style-mod": "^4.1.0",
"w3c-keyname": "^2.2.4"
}
},
"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==",
"dev": true,
"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/@isaacs/cliui": {
"version": "8.0.2",
"resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz",
"integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==",
"dev": true,
"dependencies": {
"string-width": "^5.1.2",
"string-width-cjs": "npm:string-width@^4.2.0",
"strip-ansi": "^7.0.1",
"strip-ansi-cjs": "npm:strip-ansi@^6.0.1",
"wrap-ansi": "^8.1.0",
"wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0"
},
"engines": {
"node": ">=12"
}
},
"node_modules/@isaacs/cliui/node_modules/ansi-regex": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz",
"integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==",
"dev": true,
"engines": {
"node": ">=12"
},
"funding": {
"url": "https://github.com/chalk/ansi-regex?sponsor=1"
}
},
"node_modules/@isaacs/cliui/node_modules/strip-ansi": {
"version": "7.1.0",
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
"integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
"dev": true,
"dependencies": {
"ansi-regex": "^6.0.1"
},
"engines": {
"node": ">=12"
},
"funding": {
"url": "https://github.com/chalk/strip-ansi?sponsor=1"
}
},
"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==",
"license": "MIT",
"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.5",
"resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.5.tgz",
"integrity": "sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==",
"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==",
"license": "MIT"
},
"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==",
"license": "MIT",
"dependencies": {
"@jridgewell/resolve-uri": "3.1.0",
"@jridgewell/sourcemap-codec": "1.4.14"
}
},
"node_modules/@jupyter/ydoc": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/@jupyter/ydoc/-/ydoc-1.1.1.tgz",
"integrity": "sha512-fXx9CbUwUlXBsJo83tBQL3T0MgWT4YYz2ozcSFj0ymZSohAnI1uo7N9CPpVe4/nmc9uG1lFdlXC4XQBevi2jSA==",
"dependencies": {
"@jupyterlab/nbformat": "^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0",
"@lumino/coreutils": "^1.11.0 || ^2.0.0",
"@lumino/disposable": "^1.10.0 || ^2.0.0",
"@lumino/signaling": "^1.10.0 || ^2.0.0",
"y-protocols": "^1.0.5",
"yjs": "^13.5.40"
}
},
"node_modules/@jupyterlab/application": {
"version": "4.1.0-alpha.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/application/-/application-4.1.0-alpha.2.tgz",
"integrity": "sha512-JpTWvcP5ciTMkAgzyP/pY5iYS7UMvaUg/WDK8/yZyH60/a81A4wm+a599ZW0guHDW9sEbO4h4kqWQ9PtpTIv4g==",
"dependencies": {
"@fortawesome/fontawesome-free": "^5.12.0",
"@jupyterlab/apputils": "^4.2.0-alpha.2",
"@jupyterlab/coreutils": "^6.1.0-alpha.2",
"@jupyterlab/docregistry": "^4.1.0-alpha.2",
"@jupyterlab/rendermime": "^4.1.0-alpha.2",
"@jupyterlab/rendermime-interfaces": "^3.8.3-alpha.1",
"@jupyterlab/services": "^7.1.0-alpha.2",
"@jupyterlab/statedb": "^4.1.0-alpha.2",
"@jupyterlab/translation": "^4.1.0-alpha.2",
"@jupyterlab/ui-components": "^4.1.0-alpha.2",
"@lumino/algorithm": "^2.0.1",
"@lumino/application": "^2.3.0-alpha.0",
"@lumino/commands": "^2.1.3",
"@lumino/coreutils": "^2.1.2",
"@lumino/disposable": "^2.1.2",
"@lumino/messaging": "^2.0.1",
"@lumino/polling": "^2.1.2",
"@lumino/properties": "^2.0.1",
"@lumino/signaling": "^2.1.2",
"@lumino/widgets": "^2.3.1-alpha.0"
}
},
"node_modules/@jupyterlab/application/node_modules/@jupyterlab/apputils": {
"version": "4.2.0-alpha.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/apputils/-/apputils-4.2.0-alpha.2.tgz",
"integrity": "sha512-Z9AXoJqIyLZmEWiyk59fs4GmZgU4MpyoHn8Ym+VecTG3lT5o2Q6DpBbLgblRTNa4L4xQIL/JX517+tFPFF8ByQ==",
"dependencies": {
"@jupyterlab/coreutils": "^6.1.0-alpha.2",
"@jupyterlab/observables": "^5.1.0-alpha.2",
"@jupyterlab/rendermime-interfaces": "^3.8.3-alpha.1",
"@jupyterlab/services": "^7.1.0-alpha.2",
"@jupyterlab/settingregistry": "^4.1.0-alpha.2",
"@jupyterlab/statedb": "^4.1.0-alpha.2",
"@jupyterlab/statusbar": "^4.1.0-alpha.2",
"@jupyterlab/translation": "^4.1.0-alpha.2",
"@jupyterlab/ui-components": "^4.1.0-alpha.2",
"@lumino/algorithm": "^2.0.1",
"@lumino/commands": "^2.1.3",
"@lumino/coreutils": "^2.1.2",
"@lumino/disposable": "^2.1.2",
"@lumino/domutils": "^2.0.1",
"@lumino/messaging": "^2.0.1",
"@lumino/signaling": "^2.1.2",
"@lumino/virtualdom": "^2.0.1",
"@lumino/widgets": "^2.3.1-alpha.0",
"@types/react": "^18.0.26",
"react": "^18.2.0",
"sanitize-html": "~2.7.3"
}
},
"node_modules/@jupyterlab/application/node_modules/@jupyterlab/codeeditor": {
"version": "4.1.0-alpha.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/codeeditor/-/codeeditor-4.1.0-alpha.2.tgz",
"integrity": "sha512-xijTgtLyjiV2pUUEZXeimb8wGLU/t6qTut6XKSH/ZAAULlyvfIt7bZr04NAAMfF4gCpzu+OnzfCZghgjbW7nkg==",
"dependencies": {
"@codemirror/state": "^6.2.0",
"@jupyter/ydoc": "^1.1.1",
"@jupyterlab/coreutils": "^6.1.0-alpha.2",
"@jupyterlab/nbformat": "^4.1.0-alpha.2",
"@jupyterlab/observables": "^5.1.0-alpha.2",
"@jupyterlab/statusbar": "^4.1.0-alpha.2",
"@jupyterlab/translation": "^4.1.0-alpha.2",
"@jupyterlab/ui-components": "^4.1.0-alpha.2",
"@lumino/coreutils": "^2.1.2",
"@lumino/disposable": "^2.1.2",
"@lumino/dragdrop": "^2.1.3",
"@lumino/messaging": "^2.0.1",
"@lumino/signaling": "^2.1.2",
"@lumino/widgets": "^2.3.1-alpha.0",
"react": "^18.2.0"
}
},
"node_modules/@jupyterlab/application/node_modules/@jupyterlab/coreutils": {
"version": "6.1.0-alpha.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/coreutils/-/coreutils-6.1.0-alpha.2.tgz",
"integrity": "sha512-/jPyEqKrRcNsdlWCyf1UXMNeMXXVRDpPRrK/FzVaiH1l8ky+I8fTO2uFui2YXR6TYSKRQF8sZJyyxIIFUT9Etg==",
"dependencies": {
"@lumino/coreutils": "^2.1.2",
"@lumino/disposable": "^2.1.2",
"@lumino/signaling": "^2.1.2",
"minimist": "~1.2.0",
"path-browserify": "^1.0.0",
"url-parse": "~1.5.4"
}
},
"node_modules/@jupyterlab/application/node_modules/@jupyterlab/docregistry": {
"version": "4.1.0-alpha.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/docregistry/-/docregistry-4.1.0-alpha.2.tgz",
"integrity": "sha512-P+1bdSpYpv+pjonKHu209yG+jA4hHTNRzu8KhVZ3Q87Af8M8jMwSwhC1c1K7zXHOsyVx94s64TsR8j+OZnrbYg==",
"dependencies": {
"@jupyter/ydoc": "^1.1.1",
"@jupyterlab/apputils": "^4.2.0-alpha.2",
"@jupyterlab/codeeditor": "^4.1.0-alpha.2",
"@jupyterlab/coreutils": "^6.1.0-alpha.2",
"@jupyterlab/observables": "^5.1.0-alpha.2",
"@jupyterlab/rendermime": "^4.1.0-alpha.2",
"@jupyterlab/rendermime-interfaces": "^3.8.3-alpha.1",
"@jupyterlab/services": "^7.1.0-alpha.2",
"@jupyterlab/translation": "^4.1.0-alpha.2",
"@jupyterlab/ui-components": "^4.1.0-alpha.2",
"@lumino/algorithm": "^2.0.1",
"@lumino/coreutils": "^2.1.2",
"@lumino/disposable": "^2.1.2",
"@lumino/messaging": "^2.0.1",
"@lumino/properties": "^2.0.1",
"@lumino/signaling": "^2.1.2",
"@lumino/widgets": "^2.3.1-alpha.0",
"react": "^18.2.0"
}
},
"node_modules/@jupyterlab/application/node_modules/@jupyterlab/nbformat": {
"version": "4.1.0-alpha.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/nbformat/-/nbformat-4.1.0-alpha.2.tgz",
"integrity": "sha512-RULkA+S2Pjkz6IFFUQu7rM2X+iREtrh4RPMtpW8oIj2CkCMEm/rPyzEyvf3rp25lPkff0zesBnd3wqevFY4LIA==",
"dependencies": {
"@lumino/coreutils": "^2.1.2"
}
},
"node_modules/@jupyterlab/application/node_modules/@jupyterlab/observables": {
"version": "5.1.0-alpha.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/observables/-/observables-5.1.0-alpha.2.tgz",
"integrity": "sha512-GnpR3tE6ytOmK0E0SlZLYMMt3aXnXszWZgBElsh1OQCXy1oOeDGc7BBkuj+o+2Sh7Y+pVegyuPRj0up+6wE7Aw==",
"dependencies": {
"@lumino/algorithm": "^2.0.1",
"@lumino/coreutils": "^2.1.2",
"@lumino/disposable": "^2.1.2",
"@lumino/messaging": "^2.0.1",
"@lumino/signaling": "^2.1.2"
}
},
"node_modules/@jupyterlab/application/node_modules/@jupyterlab/rendermime": {
"version": "4.1.0-alpha.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/rendermime/-/rendermime-4.1.0-alpha.2.tgz",
"integrity": "sha512-U49dD72smrs4qQzuUSoCRdlLQGUUBsqU17RxAWPc45r0MqX7dV77VD9SYYfdenns9JN4cgbu6UD7m5mvLvKurQ==",
"dependencies": {
"@jupyterlab/apputils": "^4.2.0-alpha.2",
"@jupyterlab/coreutils": "^6.1.0-alpha.2",
"@jupyterlab/nbformat": "^4.1.0-alpha.2",
"@jupyterlab/observables": "^5.1.0-alpha.2",
"@jupyterlab/rendermime-interfaces": "^3.8.3-alpha.1",
"@jupyterlab/services": "^7.1.0-alpha.2",
"@jupyterlab/translation": "^4.1.0-alpha.2",
"@lumino/coreutils": "^2.1.2",
"@lumino/messaging": "^2.0.1",
"@lumino/signaling": "^2.1.2",
"@lumino/widgets": "^2.3.1-alpha.0",
"lodash.escape": "^4.0.1"
}
},
"node_modules/@jupyterlab/application/node_modules/@jupyterlab/services": {
"version": "7.1.0-alpha.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/services/-/services-7.1.0-alpha.2.tgz",
"integrity": "sha512-uOWhNyO3BGkKCH8J1nTzlr4rFEamnyZusE7pu6GIySBt3T5tyB6W3S1DTxRLXi0SWk6rWzLuyUeCz/UrdLt3sQ==",
"dependencies": {
"@jupyter/ydoc": "^1.1.1",
"@jupyterlab/coreutils": "^6.1.0-alpha.2",
"@jupyterlab/nbformat": "^4.1.0-alpha.2",
"@jupyterlab/settingregistry": "^4.1.0-alpha.2",
"@jupyterlab/statedb": "^4.1.0-alpha.2",
"@lumino/coreutils": "^2.1.2",
"@lumino/disposable": "^2.1.2",
"@lumino/polling": "^2.1.2",
"@lumino/properties": "^2.0.1",
"@lumino/signaling": "^2.1.2",
"ws": "^8.11.0"
}
},
"node_modules/@jupyterlab/application/node_modules/@jupyterlab/settingregistry": {
"version": "4.1.0-alpha.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/settingregistry/-/settingregistry-4.1.0-alpha.2.tgz",
"integrity": "sha512-eSOhgqB6lbsn1joAVk7CDlmoUehH6Vw9fiUvehmmq6irtQv3Cr/3HVCmJWm9llS0RYnxz5D1p7qrnrt4eORB1Q==",
"dependencies": {
"@jupyterlab/nbformat": "^4.1.0-alpha.2",
"@jupyterlab/statedb": "^4.1.0-alpha.2",
"@lumino/commands": "^2.1.3",
"@lumino/coreutils": "^2.1.2",
"@lumino/disposable": "^2.1.2",
"@lumino/signaling": "^2.1.2",
"@rjsf/utils": "^5.1.0",
"ajv": "^8.12.0",
"json5": "^2.2.3"
},
"peerDependencies": {
"react": ">=16"
}
},
"node_modules/@jupyterlab/application/node_modules/@jupyterlab/statedb": {
"version": "4.1.0-alpha.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/statedb/-/statedb-4.1.0-alpha.2.tgz",
"integrity": "sha512-dfYxMuc9yy1d5tom4orlGLw/Sjlqv9t7jClV+l/q5NtvSPz54vTbm8e3Z+8IvfrRJl7CNNR5o6yzNkkybU3Sug==",
"dependencies": {
"@lumino/commands": "^2.1.3",
"@lumino/coreutils": "^2.1.2",
"@lumino/disposable": "^2.1.2",
"@lumino/properties": "^2.0.1",
"@lumino/signaling": "^2.1.2"
}
},
"node_modules/@jupyterlab/application/node_modules/@jupyterlab/statusbar": {
"version": "4.1.0-alpha.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/statusbar/-/statusbar-4.1.0-alpha.2.tgz",
"integrity": "sha512-YknwrBz/y+pvGAQil7sMnquCjUGfuIn8WyxZYEW/k5cpxTxd0AJcQYfFBXwMHDKBFLlA4ZsAYmgmFJNdqxSzwA==",
"dependencies": {
"@jupyterlab/ui-components": "^4.1.0-alpha.2",
"@lumino/algorithm": "^2.0.1",
"@lumino/coreutils": "^2.1.2",
"@lumino/disposable": "^2.1.2",
"@lumino/messaging": "^2.0.1",
"@lumino/signaling": "^2.1.2",
"@lumino/widgets": "^2.3.1-alpha.0",
"react": "^18.2.0"
}
},
"node_modules/@jupyterlab/application/node_modules/@jupyterlab/translation": {
"version": "4.1.0-alpha.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/translation/-/translation-4.1.0-alpha.2.tgz",
"integrity": "sha512-tbNMlXtBNS4suCXaOMWf/k0S+km85d/ZaQbOTh252ONMXpgV541l98IEwnrSaJ+gnTNrG+LzfPovreHjJjq8IQ==",
"dependencies": {
"@jupyterlab/coreutils": "^6.1.0-alpha.2",
"@jupyterlab/rendermime-interfaces": "^3.8.3-alpha.1",
"@jupyterlab/services": "^7.1.0-alpha.2",
"@jupyterlab/statedb": "^4.1.0-alpha.2",
"@lumino/coreutils": "^2.1.2"
}
},
"node_modules/@jupyterlab/application/node_modules/@jupyterlab/ui-components": {
"version": "4.1.0-alpha.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/ui-components/-/ui-components-4.1.0-alpha.2.tgz",
"integrity": "sha512-XqwCU1MUFGEjwW2ye8bpoqVZe/fVeEbeCms3QXKf6oYN+rt+pygBSTzqoRXHzsQU0NBngghpzNKhhR095zwPsA==",
"dependencies": {
"@jupyterlab/coreutils": "^6.1.0-alpha.2",
"@jupyterlab/observables": "^5.1.0-alpha.2",
"@jupyterlab/rendermime-interfaces": "^3.8.3-alpha.1",
"@jupyterlab/translation": "^4.1.0-alpha.2",
"@lumino/algorithm": "^2.0.1",
"@lumino/commands": "^2.1.3",
"@lumino/coreutils": "^2.1.2",
"@lumino/disposable": "^2.1.2",
"@lumino/messaging": "^2.0.1",
"@lumino/polling": "^2.1.2",
"@lumino/properties": "^2.0.1",
"@lumino/signaling": "^2.1.2",
"@lumino/virtualdom": "^2.0.1",
"@lumino/widgets": "^2.3.1-alpha.0",
"@rjsf/core": "^5.1.0",
"@rjsf/utils": "^5.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typestyle": "^2.0.4"
},
"peerDependencies": {
"react": "^18.2.0"
}
},
"node_modules/@jupyterlab/application/node_modules/@lumino/application": {
"version": "2.3.0-alpha.0",
"resolved": "https://registry.npmjs.org/@lumino/application/-/application-2.3.0-alpha.0.tgz",
"integrity": "sha512-yT0Bj2NOgbMugCC+2ZSbCZGGdA5bGEYaWdi+abxskIU81dC9TRnZy+/N2pdnr/FY83U25DhsBCgfKTJye6U5bA==",
"dependencies": {
"@lumino/commands": "^2.1.3",
"@lumino/coreutils": "^2.1.2",
"@lumino/widgets": "^2.3.1-alpha.0"
}
},
"node_modules/@jupyterlab/application/node_modules/@lumino/widgets": {
"version": "2.3.1-alpha.0",
"resolved": "https://registry.npmjs.org/@lumino/widgets/-/widgets-2.3.1-alpha.0.tgz",
"integrity": "sha512-E+N9sAQcz4w9pm1Vw2dy67w1wi18+RqNRbSBbgbWJS1HoASZXN0ljTCuqhYy8mpHkHAKa+BzsXIs74RV2Iu10g==",
"dependencies": {
"@lumino/algorithm": "^2.0.1",
"@lumino/commands": "^2.1.3",
"@lumino/coreutils": "^2.1.2",
"@lumino/disposable": "^2.1.2",
"@lumino/domutils": "^2.0.1",
"@lumino/dragdrop": "^2.1.3",
"@lumino/keyboard": "^2.0.1",
"@lumino/messaging": "^2.0.1",
"@lumino/properties": "^2.0.1",
"@lumino/signaling": "^2.1.2",
"@lumino/virtualdom": "^2.0.1"
}
},
"node_modules/@jupyterlab/application/node_modules/ajv": {
"version": "8.12.0",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz",
"integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==",
"dependencies": {
"fast-deep-equal": "^3.1.1",
"json-schema-traverse": "^1.0.0",
"require-from-string": "^2.0.2",
"uri-js": "^4.2.2"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/epoberezkin"
}
},
"node_modules/@jupyterlab/application/node_modules/json-schema-traverse": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
"integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="
},
"node_modules/@jupyterlab/apputils": {
"version": "4.1.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/apputils/-/apputils-4.1.5.tgz",
"integrity": "sha512-3zOtLPbOYlyThetbNR1I3DMmW8OuSHSbSYGezdnhePpGlJgsWJSDrrEVF2L3mQM+cGce8kX8osReqtvGn4O20g==",
"dependencies": {
"@jupyterlab/coreutils": "^6.0.5",
"@jupyterlab/observables": "^5.0.5",
"@jupyterlab/rendermime-interfaces": "^3.8.5",
"@jupyterlab/services": "^7.0.5",
"@jupyterlab/settingregistry": "^4.0.5",
"@jupyterlab/statedb": "^4.0.5",
"@jupyterlab/statusbar": "^4.0.5",
"@jupyterlab/translation": "^4.0.5",
"@jupyterlab/ui-components": "^4.0.5",
"@lumino/algorithm": "^2.0.1",
"@lumino/commands": "^2.1.3",
"@lumino/coreutils": "^2.1.2",
"@lumino/disposable": "^2.1.2",
"@lumino/domutils": "^2.0.1",
"@lumino/messaging": "^2.0.1",
"@lumino/signaling": "^2.1.2",
"@lumino/virtualdom": "^2.0.1",
"@lumino/widgets": "^2.3.0",
"@types/react": "^18.0.26",
"react": "^18.2.0",
"sanitize-html": "~2.7.3"
}
},
"node_modules/@jupyterlab/attachments": {
"version": "4.0.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/attachments/-/attachments-4.0.5.tgz",
"integrity": "sha512-BZmA6NxbARPZIZknc22u2p9oxdqq259v+hgTQZWognpZwmKBMr4plMDjS3KkjHMSo8WBpFwsVD9RLcsn6q0BzQ==",
"dependencies": {
"@jupyterlab/nbformat": "^4.0.5",
"@jupyterlab/observables": "^5.0.5",
"@jupyterlab/rendermime": "^4.0.5",
"@jupyterlab/rendermime-interfaces": "^3.8.5",
"@lumino/disposable": "^2.1.2",
"@lumino/signaling": "^2.1.2"
}
},
"node_modules/@jupyterlab/builder": {
"version": "4.0.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/builder/-/builder-4.0.5.tgz",
"integrity": "sha512-rypdRtkDvoq1nt7WqbYwTBCCumFPceUxvUW9J9Xe3KaScnk/BoveV9D+oRSHNl8okDdJZLkgS99UT4mC0ysduw==",
"dev": true,
"dependencies": {
"@lumino/algorithm": "^2.0.1",
"@lumino/application": "^2.2.1",
"@lumino/commands": "^2.1.3",
"@lumino/coreutils": "^2.1.2",
"@lumino/disposable": "^2.1.2",
"@lumino/domutils": "^2.0.1",
"@lumino/dragdrop": "^2.1.3",
"@lumino/messaging": "^2.0.1",
"@lumino/properties": "^2.0.1",
"@lumino/signaling": "^2.1.2",
"@lumino/virtualdom": "^2.0.1",
"@lumino/widgets": "^2.3.0",
"ajv": "^8.12.0",
"commander": "^9.4.1",
"css-loader": "^6.7.1",
"duplicate-package-checker-webpack-plugin": "^3.0.0",
"fs-extra": "^10.1.0",
"glob": "~7.1.6",
"license-webpack-plugin": "^2.3.14",
"mini-css-extract-plugin": "^2.7.0",
"mini-svg-data-uri": "^1.4.4",
"path-browserify": "^1.0.0",
"process": "^0.11.10",
"source-map-loader": "~1.0.2",
"style-loader": "~3.3.1",
"supports-color": "^7.2.0",
"terser-webpack-plugin": "^5.3.7",
"webpack": "^5.76.1",
"webpack-cli": "^5.0.1",
"webpack-merge": "^5.8.0",
"worker-loader": "^3.0.2"
},
"bin": {
"build-labextension": "lib/build-labextension.js"
}
},
"node_modules/@jupyterlab/builder/node_modules/ajv": {
"version": "8.12.0",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz",
"integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==",
"dev": true,
"dependencies": {
"fast-deep-equal": "^3.1.1",
"json-schema-traverse": "^1.0.0",
"require-from-string": "^2.0.2",
"uri-js": "^4.2.2"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/epoberezkin"
}
},
"node_modules/@jupyterlab/builder/node_modules/glob": {
"version": "7.1.7",
"resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz",
"integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==",
"dev": true,
"license": "ISC",
"dependencies": {
"fs.realpath": "^1.0.0",
"inflight": "^1.0.4",
"inherits": "2",
"minimatch": "^3.0.4",
"once": "^1.3.0",
"path-is-absolute": "^1.0.0"
},
"engines": {
"node": "*"
},
"funding": {
"url": "https://github.com/sponsors/isaacs"
}
},
"node_modules/@jupyterlab/builder/node_modules/json-schema-traverse": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
"integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
"dev": true
},
"node_modules/@jupyterlab/builder/node_modules/schema-utils": {
"version": "2.7.1",
"resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz",
"integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==",
"dev": true,
"dependencies": {
"@types/json-schema": "^7.0.5",
"ajv": "^6.12.4",
"ajv-keywords": "^3.5.2"
},
"engines": {
"node": ">= 8.9.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/webpack"
}
},
"node_modules/@jupyterlab/builder/node_modules/schema-utils/node_modules/ajv": {
"version": "6.12.6",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
"integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
"dev": true,
"dependencies": {
"fast-deep-equal": "^3.1.1",
"fast-json-stable-stringify": "^2.0.0",
"json-schema-traverse": "^0.4.1",
"uri-js": "^4.2.2"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/epoberezkin"
}
},
"node_modules/@jupyterlab/builder/node_modules/schema-utils/node_modules/json-schema-traverse": {
"version": "0.4.1",
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
"integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
"dev": true
},
"node_modules/@jupyterlab/builder/node_modules/source-map-loader": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-1.0.2.tgz",
"integrity": "sha512-oX8d6ndRjN+tVyjj6PlXSyFPhDdVAPsZA30nD3/II8g4uOv8fCz0DMn5sy8KtVbDfKQxOpGwGJnK3xIW3tauDw==",
"dev": true,
"dependencies": {
"data-urls": "^2.0.0",
"iconv-lite": "^0.6.2",
"loader-utils": "^2.0.0",
"schema-utils": "^2.7.0",
"source-map": "^0.6.1"
},
"engines": {
"node": ">= 10.13.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/webpack"
},
"peerDependencies": {
"webpack": "^4.0.0 || ^5.0.0"
}
},
"node_modules/@jupyterlab/cells": {
"version": "4.0.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/cells/-/cells-4.0.5.tgz",
"integrity": "sha512-LXGTWA+McKI46mlF1K0cHb+oRPx3uLVaNOwVhsROoccoAqC55DgJiuiFGvH6EDR2tlFfytN3cGP7t4NOUY7r7Q==",
"dependencies": {
"@codemirror/state": "^6.2.0",
"@codemirror/view": "^6.9.6",
"@jupyter/ydoc": "^1.0.2",
"@jupyterlab/apputils": "^4.1.5",
"@jupyterlab/attachments": "^4.0.5",
"@jupyterlab/codeeditor": "^4.0.5",
"@jupyterlab/codemirror": "^4.0.5",
"@jupyterlab/coreutils": "^6.0.5",
"@jupyterlab/documentsearch": "^4.0.5",
"@jupyterlab/filebrowser": "^4.0.5",
"@jupyterlab/nbformat": "^4.0.5",
"@jupyterlab/observables": "^5.0.5",
"@jupyterlab/outputarea": "^4.0.5",
"@jupyterlab/rendermime": "^4.0.5",
"@jupyterlab/services": "^7.0.5",
"@jupyterlab/toc": "^6.0.5",
"@jupyterlab/translation": "^4.0.5",
"@jupyterlab/ui-components": "^4.0.5",
"@lumino/algorithm": "^2.0.1",
"@lumino/coreutils": "^2.1.2",
"@lumino/domutils": "^2.0.1",
"@lumino/dragdrop": "^2.1.3",
"@lumino/messaging": "^2.0.1",
"@lumino/polling": "^2.1.2",
"@lumino/signaling": "^2.1.2",
"@lumino/virtualdom": "^2.0.1",
"@lumino/widgets": "^2.3.0",
"react": "^18.2.0"
}
},
"node_modules/@jupyterlab/codeeditor": {
"version": "4.0.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/codeeditor/-/codeeditor-4.0.5.tgz",
"integrity": "sha512-/NX6l1WqGcDn3Rk7ht0qEls6VHlDWiX7xZzsQtc4/NxyVuc5ZEfYLA9KWIMzsz9DQnVrHqlkC8rhb1V/OdOpjg==",
"dependencies": {
"@codemirror/state": "^6.2.0",
"@jupyter/ydoc": "^1.0.2",
"@jupyterlab/coreutils": "^6.0.5",
"@jupyterlab/nbformat": "^4.0.5",
"@jupyterlab/observables": "^5.0.5",
"@jupyterlab/statusbar": "^4.0.5",
"@jupyterlab/translation": "^4.0.5",
"@jupyterlab/ui-components": "^4.0.5",
"@lumino/coreutils": "^2.1.2",
"@lumino/disposable": "^2.1.2",
"@lumino/dragdrop": "^2.1.3",
"@lumino/messaging": "^2.0.1",
"@lumino/signaling": "^2.1.2",
"@lumino/widgets": "^2.3.0",
"react": "^18.2.0"
}
},
"node_modules/@jupyterlab/codemirror": {
"version": "4.0.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/codemirror/-/codemirror-4.0.5.tgz",
"integrity": "sha512-egMtPhG7Uh03nEna5uAcjK6/4wzT23UsrHo/UasP9wp5jeeSHRlxvxWrhPcPZGAwftir2ERvhgMKvxCvxQyXpw==",
"dependencies": {
"@codemirror/autocomplete": "^6.5.1",
"@codemirror/commands": "^6.2.3",
"@codemirror/lang-cpp": "^6.0.2",
"@codemirror/lang-css": "^6.1.1",
"@codemirror/lang-html": "^6.4.3",
"@codemirror/lang-java": "^6.0.1",
"@codemirror/lang-javascript": "^6.1.7",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/lang-markdown": "^6.1.1",
"@codemirror/lang-php": "^6.0.1",
"@codemirror/lang-python": "^6.1.3",
"@codemirror/lang-rust": "^6.0.1",
"@codemirror/lang-sql": "^6.4.1",
"@codemirror/lang-wast": "^6.0.1",
"@codemirror/lang-xml": "^6.0.2",
"@codemirror/language": "^6.6.0",
"@codemirror/legacy-modes": "^6.3.2",
"@codemirror/search": "^6.3.0",
"@codemirror/state": "^6.2.0",
"@codemirror/view": "^6.9.6",
"@jupyter/ydoc": "^1.0.2",
"@jupyterlab/codeeditor": "^4.0.5",
"@jupyterlab/coreutils": "^6.0.5",
"@jupyterlab/documentsearch": "^4.0.5",
"@jupyterlab/nbformat": "^4.0.5",
"@jupyterlab/translation": "^4.0.5",
"@lezer/common": "^1.0.2",
"@lezer/generator": "^1.2.2",
"@lezer/highlight": "^1.1.4",
"@lezer/markdown": "^1.0.2",
"@lumino/coreutils": "^2.1.2",
"@lumino/disposable": "^2.1.2",
"@lumino/signaling": "^2.1.2",
"yjs": "^13.5.40"
}
},
"node_modules/@jupyterlab/coreutils": {
"version": "6.0.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/coreutils/-/coreutils-6.0.5.tgz",
"integrity": "sha512-ty9DUvgxzIfsGMcGn8kMKvvBHfzK7t/5a8JN0toI7rZc6QVKILnwtL8Et7fFVFhbbcJsGGg6uetc0XQE+kMkgw==",
"dependencies": {