-
Notifications
You must be signed in to change notification settings - Fork 16
/
yarn.lock
10898 lines (9830 loc) · 368 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 file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 6
cacheKey: 8
"@babel/code-frame@npm:^7.0.0":
version: 7.18.6
resolution: "@babel/code-frame@npm:7.18.6"
dependencies:
"@babel/highlight": ^7.18.6
checksum: 195e2be3172d7684bf95cff69ae3b7a15a9841ea9d27d3c843662d50cdd7d6470fd9c8e64be84d031117e4a4083486effba39f9aef6bbb2c89f7f21bcfba33ba
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.18.6":
version: 7.19.1
resolution: "@babel/helper-validator-identifier@npm:7.19.1"
checksum: 0eca5e86a729162af569b46c6c41a63e18b43dbe09fda1d2a3c8924f7d617116af39cac5e4cd5d431bb760b4dca3c0970e0c444789b1db42bcf1fa41fbad0a3a
languageName: node
linkType: hard
"@babel/highlight@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/highlight@npm:7.18.6"
dependencies:
"@babel/helper-validator-identifier": ^7.18.6
chalk: ^2.0.0
js-tokens: ^4.0.0
checksum: 92d8ee61549de5ff5120e945e774728e5ccd57fd3b2ed6eace020ec744823d4a98e242be1453d21764a30a14769ecd62170fba28539b211799bbaf232bbb2789
languageName: node
linkType: hard
"@blockly/field-colour@npm:5.0.6":
version: 5.0.6
resolution: "@blockly/field-colour@npm:5.0.6"
peerDependencies:
blockly: ^11.0.0
checksum: c754ce4bf13de3eef730e51b5ee6f6f615df521e5243fa16d80be8f1b82bc9bc0080443a9701e705bdec9f6c41861d9add642fd0426d7bd335f724f0643ba977
languageName: node
linkType: hard
"@codemirror/autocomplete@npm:^6.0.0, @codemirror/autocomplete@npm:^6.15.0, @codemirror/autocomplete@npm:^6.3.2, @codemirror/autocomplete@npm:^6.7.1":
version: 6.18.0
resolution: "@codemirror/autocomplete@npm:6.18.0"
dependencies:
"@codemirror/language": ^6.0.0
"@codemirror/state": ^6.0.0
"@codemirror/view": ^6.17.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
checksum: 806163d13be3e86f5eceb46768329955f48935e228e238c2b8ae7ebe0b6634b5fe90fc5eeb6df81acb1e9e6e5a84e136f14233459d4bcfea2f3dd8a45ae84f37
languageName: node
linkType: hard
"@codemirror/commands@npm:^6.3.3":
version: 6.6.0
resolution: "@codemirror/commands@npm:6.6.0"
dependencies:
"@codemirror/language": ^6.0.0
"@codemirror/state": ^6.4.0
"@codemirror/view": ^6.27.0
"@lezer/common": ^1.1.0
checksum: 53bb29f11f4453b7409836c41a9c13c0a8cb300e05ecc4928217330cf6e6735b1e5fb7fb831a2b1b8636593d6f3da42d016196ee1c8bb424f9cb73d55b8cb884
languageName: node
linkType: hard
"@codemirror/lang-cpp@npm:^6.0.2":
version: 6.0.2
resolution: "@codemirror/lang-cpp@npm:6.0.2"
dependencies:
"@codemirror/language": ^6.0.0
"@lezer/cpp": ^1.0.0
checksum: bb9eba482cca80037ce30c7b193cf45eff19ccbb773764fddf2071756468ecc25aa53c777c943635054f89095b0247b9b50c339e107e41e68d34d12a7295f9a9
languageName: node
linkType: hard
"@codemirror/lang-css@npm:^6.0.0, @codemirror/lang-css@npm:^6.2.1":
version: 6.2.1
resolution: "@codemirror/lang-css@npm:6.2.1"
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
checksum: 5a8457ee8a4310030a969f2d3128429f549c4dc9b7907ee8888b42119c80b65af99093801432efdf659b8ec36a147d2a947bc1ecbbf69a759395214e3f4834a8
languageName: node
linkType: hard
"@codemirror/lang-html@npm:^6.0.0, @codemirror/lang-html@npm:^6.4.8":
version: 6.4.9
resolution: "@codemirror/lang-html@npm:6.4.9"
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
checksum: ac8c3ceb0396f2e032752c5079bd950124dca708bc64e96fc147dc5fe7133e5cee0814fe951abdb953ec1d11fa540e4b30a712b5149d9a36016a197a28de45d7
languageName: node
linkType: hard
"@codemirror/lang-java@npm:^6.0.1":
version: 6.0.1
resolution: "@codemirror/lang-java@npm:6.0.1"
dependencies:
"@codemirror/language": ^6.0.0
"@lezer/java": ^1.0.0
checksum: 4679104683cbffcd224ac04c7e5d144b787494697b26470b07017259035b7bb3fa62609d9a61bfbc566f1756d9f972f9f26d96a3c1362dd48881c1172f9a914d
languageName: node
linkType: hard
"@codemirror/lang-javascript@npm:^6.0.0, @codemirror/lang-javascript@npm:^6.2.2":
version: 6.2.2
resolution: "@codemirror/lang-javascript@npm:6.2.2"
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
checksum: 66379942a8347dff2bd76d10ed7cf313bca83872f8336fdd3e14accfef23e7b690cd913c9d11a3854fba2b32299da07fc3275995327642c9ee43c2a8e538c19d
languageName: node
linkType: hard
"@codemirror/lang-json@npm:^6.0.1":
version: 6.0.1
resolution: "@codemirror/lang-json@npm:6.0.1"
dependencies:
"@codemirror/language": ^6.0.0
"@lezer/json": ^1.0.0
checksum: e9e87d50ff7b81bd56a6ab50740b1dd54e9a93f1be585e1d59d0642e2148842ea1528ac7b7221eb4ddc7fe84bbc28065144cc3ab86f6e06c6aeb2d4b4e62acf1
languageName: node
linkType: hard
"@codemirror/lang-markdown@npm:^6.2.4":
version: 6.2.5
resolution: "@codemirror/lang-markdown@npm:6.2.5"
dependencies:
"@codemirror/autocomplete": ^6.7.1
"@codemirror/lang-html": ^6.0.0
"@codemirror/language": ^6.3.0
"@codemirror/state": ^6.0.0
"@codemirror/view": ^6.0.0
"@lezer/common": ^1.2.1
"@lezer/markdown": ^1.0.0
checksum: 3d9e0817f888eddcb6d05ec8f0d8dacbde7b9ef7650303bc4ab8b08a550a986c60c65b1565212e06af389c31590330f1f5ed65e619a9446dc2979ff3dac0e874
languageName: node
linkType: hard
"@codemirror/lang-php@npm:^6.0.1":
version: 6.0.1
resolution: "@codemirror/lang-php@npm:6.0.1"
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
checksum: c003a29a426486453fdfddbf7302982fa2aa7f059bf6f1ce4cbf08341b0162eee5e2f50e0d71c418dcd358491631780156d846fe352754d042576172c5d86721
languageName: node
linkType: hard
"@codemirror/lang-python@npm:^6.1.4":
version: 6.1.6
resolution: "@codemirror/lang-python@npm:6.1.6"
dependencies:
"@codemirror/autocomplete": ^6.3.2
"@codemirror/language": ^6.8.0
"@codemirror/state": ^6.0.0
"@lezer/common": ^1.2.1
"@lezer/python": ^1.1.4
checksum: eb1faabd332bb95d0f3e227eb19ac5a31140cf238905bbe73e061040999f5680a012f9145fb3688bc2fcbb1908c957511edc8eeb8a9aa88d27d4fa55ad451e95
languageName: node
linkType: hard
"@codemirror/lang-rust@npm:^6.0.1":
version: 6.0.1
resolution: "@codemirror/lang-rust@npm:6.0.1"
dependencies:
"@codemirror/language": ^6.0.0
"@lezer/rust": ^1.0.0
checksum: 8a439944cb22159b0b3465ca4fa4294c69843219d5d30e278ae6df8e48f30a7a9256129723c025ec9b5e694d31a3560fb004300b125ffcd81c22d13825845170
languageName: node
linkType: hard
"@codemirror/lang-sql@npm:^6.6.1":
version: 6.7.0
resolution: "@codemirror/lang-sql@npm:6.7.0"
dependencies:
"@codemirror/autocomplete": ^6.0.0
"@codemirror/language": ^6.0.0
"@codemirror/state": ^6.0.0
"@lezer/common": ^1.2.0
"@lezer/highlight": ^1.0.0
"@lezer/lr": ^1.0.0
checksum: 54d39fa81deebb19501b5abd5d9da38edeafc607e890b9efb91cb4dd49324de3aa80ca1cc0c5c42a6de94662ac68135dcd976289598de48bef1baf0beb9ddab4
languageName: node
linkType: hard
"@codemirror/lang-wast@npm:^6.0.2":
version: 6.0.2
resolution: "@codemirror/lang-wast@npm:6.0.2"
dependencies:
"@codemirror/language": ^6.0.0
"@lezer/common": ^1.2.0
"@lezer/highlight": ^1.0.0
"@lezer/lr": ^1.0.0
checksum: 72119d4a7d726c54167aa227c982ae9fa785c8ad97a158d8350ae95eecfbd8028a803eef939f7e6c5c6e626fcecda1dc37e9dffc6d5d6ec105f686aeda6b2c24
languageName: node
linkType: hard
"@codemirror/lang-xml@npm:^6.1.0":
version: 6.1.0
resolution: "@codemirror/lang-xml@npm:6.1.0"
dependencies:
"@codemirror/autocomplete": ^6.0.0
"@codemirror/language": ^6.4.0
"@codemirror/state": ^6.0.0
"@codemirror/view": ^6.0.0
"@lezer/common": ^1.0.0
"@lezer/xml": ^1.0.0
checksum: 3a1b7af07b29ad7e53b77bf584245580b613bc92256059f175f2b1d7c28c4e39b75654fe169b9a8a330a60164b53ff5254bdb5b8ee8c6e6766427ee115c4e229
languageName: node
linkType: hard
"@codemirror/language@npm:^6.0.0, @codemirror/language@npm:^6.10.1, @codemirror/language@npm:^6.3.0, @codemirror/language@npm:^6.4.0, @codemirror/language@npm:^6.6.0, @codemirror/language@npm:^6.8.0":
version: 6.10.2
resolution: "@codemirror/language@npm:6.10.2"
dependencies:
"@codemirror/state": ^6.0.0
"@codemirror/view": ^6.23.0
"@lezer/common": ^1.1.0
"@lezer/highlight": ^1.0.0
"@lezer/lr": ^1.0.0
style-mod: ^4.0.0
checksum: 4e60afb75fb56519f59d9d85e0aa03f0c8d017e0da0f3f8f321baf35a776801fcec9787f3d0c029eba12aa766fba98b0fe86fc3111b43e0812b554184c0e8d67
languageName: node
linkType: hard
"@codemirror/legacy-modes@npm:^6.3.3":
version: 6.4.0
resolution: "@codemirror/legacy-modes@npm:6.4.0"
dependencies:
"@codemirror/language": ^6.0.0
checksum: d382aa6f640a67418bd209e1e4b395340f96aac1b0cf185927fc2c7f98b62cfd0c59ef0f7048148ce8771622003ca844c78c2d18548235ecc57d0bcbfbbfe091
languageName: node
linkType: hard
"@codemirror/lint@npm:^6.0.0":
version: 6.8.1
resolution: "@codemirror/lint@npm:6.8.1"
dependencies:
"@codemirror/state": ^6.0.0
"@codemirror/view": ^6.0.0
crelt: ^1.0.5
checksum: faa222b679770baf094ea707251e27d6eef347157006223c22d7726fb5adc9d77257f36c366367ec729cb6286aca3276d30a470e0d0ea9a884ec948e798668e9
languageName: node
linkType: hard
"@codemirror/search@npm:^6.5.6":
version: 6.5.6
resolution: "@codemirror/search@npm:6.5.6"
dependencies:
"@codemirror/state": ^6.0.0
"@codemirror/view": ^6.0.0
crelt: ^1.0.5
checksum: 19dc88d09fc750563347001e83c6194bbb2a25c874bd919d2d81809e1f98d6330222ddbd284aa9758a09eeb41fd153ec7c2cf810b2ee51452c25963d7f5833d5
languageName: node
linkType: hard
"@codemirror/state@npm:^6.0.0, @codemirror/state@npm:^6.4.0, @codemirror/state@npm:^6.4.1":
version: 6.4.1
resolution: "@codemirror/state@npm:6.4.1"
checksum: b81b55574091349eed4d32fc0eadb0c9688f1f7c98b681318f59138ee0f527cb4c4a97831b70547c0640f02f3127647838ae6730782de4a3dd2cc58836125d01
languageName: node
linkType: hard
"@codemirror/view@npm:^6.0.0, @codemirror/view@npm:^6.17.0, @codemirror/view@npm:^6.23.0, @codemirror/view@npm:^6.26.0, @codemirror/view@npm:^6.27.0":
version: 6.30.0
resolution: "@codemirror/view@npm:6.30.0"
dependencies:
"@codemirror/state": ^6.4.0
style-mod: ^4.1.0
w3c-keyname: ^2.2.4
checksum: 29792a4087a525a53694bfb4baffbc9ad9ecdeb44e508e1be54405fa5aafde3c79a4904db9d3102ac667903908ef9a28655ac655e0886e46d8d668f376e4ea2a
languageName: node
linkType: hard
"@discoveryjs/json-ext@npm:^0.5.0":
version: 0.5.7
resolution: "@discoveryjs/json-ext@npm:0.5.7"
checksum: 2176d301cc258ea5c2324402997cf8134ebb212469c0d397591636cea8d3c02f2b3cf9fd58dcb748c7a0dade77ebdc1b10284fa63e608c033a1db52fddc69918
languageName: node
linkType: hard
"@eslint-community/eslint-utils@npm:^4.2.0":
version: 4.2.0
resolution: "@eslint-community/eslint-utils@npm:4.2.0"
dependencies:
eslint-visitor-keys: ^3.3.0
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
checksum: 82fdd1cc2a5d169def0e665ec790580ef708e7df9c91f20006595dc90e3bd42ec31c8976a2eeccd336286301a72e937c0ddf3ab4b7377d7014997c36333a7d22
languageName: node
linkType: hard
"@eslint-community/regexpp@npm:^4.4.0":
version: 4.4.0
resolution: "@eslint-community/regexpp@npm:4.4.0"
checksum: 2d127af0c752b80e8a782eacfe996a86925d21de92da3ffc6f9e615e701145e44a62e26bdd88bfac2cd76779c39ba8d9875a91046ec5e7e5f23cb647c247ea6a
languageName: node
linkType: hard
"@eslint/eslintrc@npm:^2.0.1":
version: 2.0.1
resolution: "@eslint/eslintrc@npm:2.0.1"
dependencies:
ajv: ^6.12.4
debug: ^4.3.2
espree: ^9.5.0
globals: ^13.19.0
ignore: ^5.2.0
import-fresh: ^3.2.1
js-yaml: ^4.1.0
minimatch: ^3.1.2
strip-json-comments: ^3.1.1
checksum: 56b9192a687a450db53a7b883daf9f0f447c43b3510189cf88808a7a2467c2a302a42a50f184cc6d5a9faf3d1df890a2ef0fd0d60b751f32a3e9dfea717c6b48
languageName: node
linkType: hard
"@eslint/js@npm:8.36.0":
version: 8.36.0
resolution: "@eslint/js@npm:8.36.0"
checksum: b7d6b84b823c8c7784be390741196617565527b1f7c0977fde9455bfb57fd88f81c074a03dd878757d2c33fa29f24291e9ecbc1425710f067917324b55e1bf3a
languageName: node
linkType: hard
"@fortawesome/fontawesome-free@npm:^5.12.0":
version: 5.15.4
resolution: "@fortawesome/fontawesome-free@npm:5.15.4"
checksum: 32281c3df4075290d9a96dfc22f72fadb3da7055d4117e48d34046b8c98032a55fa260ae351b0af5d6f6fb57a2f5d79a4abe52af456da35195f7cb7dda27b4a2
languageName: node
linkType: hard
"@gar/promisify@npm:^1.1.3":
version: 1.1.3
resolution: "@gar/promisify@npm:1.1.3"
checksum: 4059f790e2d07bf3c3ff3e0fec0daa8144fe35c1f6e0111c9921bd32106adaa97a4ab096ad7dab1e28ee6a9060083c4d1a4ada42a7f5f3f7a96b8812e2b757c1
languageName: node
linkType: hard
"@humanwhocodes/config-array@npm:^0.11.8":
version: 0.11.8
resolution: "@humanwhocodes/config-array@npm:0.11.8"
dependencies:
"@humanwhocodes/object-schema": ^1.2.1
debug: ^4.1.1
minimatch: ^3.0.5
checksum: 0fd6b3c54f1674ce0a224df09b9c2f9846d20b9e54fabae1281ecfc04f2e6ad69bf19e1d6af6a28f88e8aa3990168b6cb9e1ef755868c3256a630605ec2cb1d3
languageName: node
linkType: hard
"@humanwhocodes/module-importer@npm:^1.0.1":
version: 1.0.1
resolution: "@humanwhocodes/module-importer@npm:1.0.1"
checksum: 0fd22007db8034a2cdf2c764b140d37d9020bbfce8a49d3ec5c05290e77d4b0263b1b972b752df8c89e5eaa94073408f2b7d977aed131faf6cf396ebb5d7fb61
languageName: node
linkType: hard
"@humanwhocodes/object-schema@npm:^1.2.1":
version: 1.2.1
resolution: "@humanwhocodes/object-schema@npm:1.2.1"
checksum: a824a1ec31591231e4bad5787641f59e9633827d0a2eaae131a288d33c9ef0290bd16fda8da6f7c0fcb014147865d12118df10db57f27f41e20da92369fcb3f1
languageName: node
linkType: hard
"@hutson/parse-repository-url@npm:^3.0.0":
version: 3.0.2
resolution: "@hutson/parse-repository-url@npm:3.0.2"
checksum: 39992c5f183c5ca3d761d6ed9dfabcb79b5f3750bf1b7f3532e1dc439ca370138bbd426ee250fdaba460bc948e6761fbefd484b8f4f36885d71ded96138340d1
languageName: node
linkType: hard
"@isaacs/cliui@npm:^8.0.2":
version: 8.0.2
resolution: "@isaacs/cliui@npm:8.0.2"
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"
checksum: 4a473b9b32a7d4d3cfb7a614226e555091ff0c5a29a1734c28c72a182c2f6699b26fc6b5c2131dfd841e86b185aea714c72201d7c98c2fba5f17709333a67aeb
languageName: node
linkType: hard
"@isaacs/string-locale-compare@npm:^1.1.0":
version: 1.1.0
resolution: "@isaacs/string-locale-compare@npm:1.1.0"
checksum: 7287da5d11497b82c542d3c2abe534808015be4f4883e71c26853277b5456f6bbe4108535db847a29f385ad6dc9318ffb0f55ee79bb5f39993233d7dccf8751d
languageName: node
linkType: hard
"@jridgewell/gen-mapping@npm:^0.3.5":
version: 0.3.5
resolution: "@jridgewell/gen-mapping@npm:0.3.5"
dependencies:
"@jridgewell/set-array": ^1.2.1
"@jridgewell/sourcemap-codec": ^1.4.10
"@jridgewell/trace-mapping": ^0.3.24
checksum: ff7a1764ebd76a5e129c8890aa3e2f46045109dabde62b0b6c6a250152227647178ff2069ea234753a690d8f3c4ac8b5e7b267bbee272bffb7f3b0a370ab6e52
languageName: node
linkType: hard
"@jridgewell/resolve-uri@npm:^3.1.0":
version: 3.1.2
resolution: "@jridgewell/resolve-uri@npm:3.1.2"
checksum: 83b85f72c59d1c080b4cbec0fef84528963a1b5db34e4370fa4bd1e3ff64a0d80e0cee7369d11d73c704e0286fb2865b530acac7a871088fbe92b5edf1000870
languageName: node
linkType: hard
"@jridgewell/set-array@npm:^1.2.1":
version: 1.2.1
resolution: "@jridgewell/set-array@npm:1.2.1"
checksum: 832e513a85a588f8ed4f27d1279420d8547743cc37fcad5a5a76fc74bb895b013dfe614d0eed9cb860048e6546b798f8f2652020b4b2ba0561b05caa8c654b10
languageName: node
linkType: hard
"@jridgewell/source-map@npm:^0.3.3":
version: 0.3.6
resolution: "@jridgewell/source-map@npm:0.3.6"
dependencies:
"@jridgewell/gen-mapping": ^0.3.5
"@jridgewell/trace-mapping": ^0.3.25
checksum: c9dc7d899397df95e3c9ec287b93c0b56f8e4453cd20743e2b9c8e779b1949bc3cccf6c01bb302779e46560eb45f62ea38d19fedd25370d814734268450a9f30
languageName: node
linkType: hard
"@jridgewell/sourcemap-codec@npm:^1.4.10":
version: 1.4.14
resolution: "@jridgewell/sourcemap-codec@npm:1.4.14"
checksum: 61100637b6d173d3ba786a5dff019e1a74b1f394f323c1fee337ff390239f053b87266c7a948777f4b1ee68c01a8ad0ab61e5ff4abb5a012a0b091bec391ab97
languageName: node
linkType: hard
"@jridgewell/sourcemap-codec@npm:^1.4.14":
version: 1.5.0
resolution: "@jridgewell/sourcemap-codec@npm:1.5.0"
checksum: 05df4f2538b3b0f998ea4c1cd34574d0feba216fa5d4ccaef0187d12abf82eafe6021cec8b49f9bb4d90f2ba4582ccc581e72986a5fcf4176ae0cfeb04cf52ec
languageName: node
linkType: hard
"@jridgewell/trace-mapping@npm:^0.3.20, @jridgewell/trace-mapping@npm:^0.3.24, @jridgewell/trace-mapping@npm:^0.3.25":
version: 0.3.25
resolution: "@jridgewell/trace-mapping@npm:0.3.25"
dependencies:
"@jridgewell/resolve-uri": ^3.1.0
"@jridgewell/sourcemap-codec": ^1.4.14
checksum: 9d3c40d225e139987b50c48988f8717a54a8c994d8a948ee42e1412e08988761d0754d7d10b803061cc3aebf35f92a5dbbab493bd0e1a9ef9e89a2130e83ba34
languageName: node
linkType: hard
"@jupyter-widgets/base-manager@npm:^1.0.11":
version: 1.0.11
resolution: "@jupyter-widgets/base-manager@npm:1.0.11"
dependencies:
"@jupyter-widgets/base": ^6.0.10
"@jupyterlab/services": ^6.0.0 || ^7.0.0
"@lumino/coreutils": ^1.11.1 || ^2
base64-js: ^1.2.1
sanitize-html: ^2.3
checksum: 04ef40b05f38ac081cae63c5201a09c30c587df8039671e4d11b16fd911171bd3507deb7b2bc7d7f0e7805bfedb7fee77ebd2560606d6570659c669abc19e374
languageName: node
linkType: hard
"@jupyter-widgets/base@npm:^6.0.10":
version: 6.0.10
resolution: "@jupyter-widgets/base@npm:6.0.10"
dependencies:
"@jupyterlab/services": ^6.0.0 || ^7.0.0
"@lumino/coreutils": ^1.11.1 || ^2.1
"@lumino/messaging": ^1.10.1 || ^2.1
"@lumino/widgets": ^1.30.0 || ^2.1
"@types/backbone": 1.4.14
"@types/lodash": ^4.14.134
backbone: 1.4.0
jquery: ^3.1.1
lodash: ^4.17.4
checksum: 423f96bf6bee953f9347e7fb85a89bbae5f4040a91ab6d6769bc72b1f9752b388cb3b9ede68032133c4c567fc411d06ced290e0bfb80d3c348caa0eaf81cab9b
languageName: node
linkType: hard
"@jupyter-widgets/controls@npm:^5.0.11":
version: 5.0.11
resolution: "@jupyter-widgets/controls@npm:5.0.11"
dependencies:
"@jupyter-widgets/base": ^6.0.10
"@lumino/algorithm": ^1.9.1 || ^2.1
"@lumino/domutils": ^1.8.1 || ^2.1
"@lumino/messaging": ^1.10.1 || ^2.1
"@lumino/signaling": ^1.10.1 || ^2.1
"@lumino/widgets": ^1.30.0 || ^2.1
d3-color: ^3.0.1
d3-format: ^3.0.1
jquery: ^3.1.1
nouislider: 15.4.0
checksum: dd995d4a17898e7bca4fa1ec4bfa643ed705b9592fca847f870babd3db72cc6cc76c6b7dcf5d3bb421f952505a273332b9429294e2ffe4cfff289076802c0aef
languageName: node
linkType: hard
"@jupyter-widgets/jupyterlab-manager@npm:^5.0.13":
version: 5.0.13
resolution: "@jupyter-widgets/jupyterlab-manager@npm:5.0.13"
dependencies:
"@jupyter-widgets/base": ^6.0.10
"@jupyter-widgets/base-manager": ^1.0.11
"@jupyter-widgets/controls": ^5.0.11
"@jupyter-widgets/output": ^6.0.10
"@jupyterlab/application": ^3.0.0 || ^4.0.0
"@jupyterlab/apputils": ^3.0.0 || ^4.0.0
"@jupyterlab/console": ^3.0.0 || ^4.0.0
"@jupyterlab/docregistry": ^3.0.0 || ^4.0.0
"@jupyterlab/logconsole": ^3.0.0 || ^4.0.0
"@jupyterlab/mainmenu": ^3.0.0 || ^4.0.0
"@jupyterlab/nbformat": ^3.0.0 || ^4.0.0
"@jupyterlab/notebook": ^3.0.0 || ^4.0.0
"@jupyterlab/outputarea": ^3.0.0 || ^4.0.0
"@jupyterlab/rendermime": ^3.0.0 || ^4.0.0
"@jupyterlab/rendermime-interfaces": ^3.0.0 || ^4.0.0
"@jupyterlab/services": ^6.0.0 || ^7.0.0
"@jupyterlab/settingregistry": ^3.0.0 || ^4.0.0
"@jupyterlab/translation": ^3.0.0 || ^4.0.0
"@lumino/algorithm": ^1.11.1 || ^2.0.0
"@lumino/coreutils": ^1.11.1 || ^2.1
"@lumino/disposable": ^1.10.1 || ^2.1
"@lumino/signaling": ^1.10.1 || ^2.1
"@lumino/widgets": ^1.30.0 || ^2.1
"@types/backbone": 1.4.14
jquery: ^3.1.1
semver: ^7.3.5
checksum: 3862f58e962386877e1e47563c92d23df4a55671c7e10974d424b08eeaca423b1f359dcc62c1c3c8bbe09cced790f3b1fd5180943d794ab3f521193a827c23dc
languageName: node
linkType: hard
"@jupyter-widgets/output@npm:^6.0.10":
version: 6.0.10
resolution: "@jupyter-widgets/output@npm:6.0.10"
dependencies:
"@jupyter-widgets/base": ^6.0.10
checksum: ebe2173753b5a6c9aa62d47657f45ccd9baa41f374b5fa24aee67e235d73e0b99e4f2a4b9badd9e2461f3078b9e9261ccdd63fd03eda2ecf177e79b3b41a356e
languageName: node
linkType: hard
"@jupyter/react-components@npm:^0.15.3":
version: 0.15.3
resolution: "@jupyter/react-components@npm:0.15.3"
dependencies:
"@jupyter/web-components": ^0.15.3
"@microsoft/fast-react-wrapper": ^0.3.22
react: ">=17.0.0 <19.0.0"
checksum: 1a6b256314259c6465c4b6d958575710536b82234a7bf0fba3e889a07e1f19ff8ab321450be354359876f92c45dbcc9d21a840237ff4a619806d9de696f55496
languageName: node
linkType: hard
"@jupyter/web-components@npm:^0.15.3":
version: 0.15.3
resolution: "@jupyter/web-components@npm:0.15.3"
dependencies:
"@microsoft/fast-colors": ^5.3.1
"@microsoft/fast-element": ^1.12.0
"@microsoft/fast-foundation": ^2.49.4
"@microsoft/fast-web-utilities": ^5.4.1
checksum: a0980af934157bfdbdb6cc169c0816c1b2e57602d524c56bdcef746a4c25dfeb8f505150d83207c8695ed89b5486cf53d35a3382584d25ef64db666e4e16e45b
languageName: node
linkType: hard
"@jupyter/ydoc@npm:^2.0.1":
version: 2.1.1
resolution: "@jupyter/ydoc@npm:2.1.1"
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
checksum: f10268d4d990f454279e3908a172755ed5885fa81bb70c31bdf66923598b283d26491741bece137d1c348619861e9b7f8354296773fe5352b1915e69101a9fb0
languageName: node
linkType: hard
"@jupyterlab/application@npm:^3.0.0 || ^4.0.0, @jupyterlab/application@npm:^4.2":
version: 4.2.4
resolution: "@jupyterlab/application@npm:4.2.4"
dependencies:
"@fortawesome/fontawesome-free": ^5.12.0
"@jupyterlab/apputils": ^4.3.4
"@jupyterlab/coreutils": ^6.2.4
"@jupyterlab/docregistry": ^4.2.4
"@jupyterlab/rendermime": ^4.2.4
"@jupyterlab/rendermime-interfaces": ^3.10.4
"@jupyterlab/services": ^7.2.4
"@jupyterlab/statedb": ^4.2.4
"@jupyterlab/translation": ^4.2.4
"@jupyterlab/ui-components": ^4.2.4
"@lumino/algorithm": ^2.0.1
"@lumino/application": ^2.3.1
"@lumino/commands": ^2.3.0
"@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.2
checksum: f2b8c06ad4ee370ed21476c39bfa176bdfe9ef38ec471ea2533a521365655e946b98a7cfa0f2a7f02aab13ad1733c5b24b30760db63bb76124d15d0c78968269
languageName: node
linkType: hard
"@jupyterlab/apputils@npm:^3.0.0 || ^4.0.0, @jupyterlab/apputils@npm:^4.2, @jupyterlab/apputils@npm:^4.3.4":
version: 4.3.4
resolution: "@jupyterlab/apputils@npm:4.3.4"
dependencies:
"@jupyterlab/coreutils": ^6.2.4
"@jupyterlab/observables": ^5.2.4
"@jupyterlab/rendermime-interfaces": ^3.10.4
"@jupyterlab/services": ^7.2.4
"@jupyterlab/settingregistry": ^4.2.4
"@jupyterlab/statedb": ^4.2.4
"@jupyterlab/statusbar": ^4.2.4
"@jupyterlab/translation": ^4.2.4
"@jupyterlab/ui-components": ^4.2.4
"@lumino/algorithm": ^2.0.1
"@lumino/commands": ^2.3.0
"@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.2
"@types/react": ^18.0.26
react: ^18.2.0
sanitize-html: ~2.12.1
checksum: 403e1090506d36eac46191147e832b8897c8daf5981104a085ed654338c9fbb44594d7b63fde219ba22fb94c8070c8cf5fca50a78f0728aafb4a4e2e795eb719
languageName: node
linkType: hard
"@jupyterlab/attachments@npm:^4.2.4":
version: 4.2.4
resolution: "@jupyterlab/attachments@npm:4.2.4"
dependencies:
"@jupyterlab/nbformat": ^4.2.4
"@jupyterlab/observables": ^5.2.4
"@jupyterlab/rendermime": ^4.2.4
"@jupyterlab/rendermime-interfaces": ^3.10.4
"@lumino/disposable": ^2.1.2
"@lumino/signaling": ^2.1.2
checksum: cf4f394c42323919a356c40b32a2cb6bb027d9378fd93b59aeec494214fe43387bf7d5cf58b7625d4b58c39ce50b23186a15361e201db4f7b6db01e2462edae3
languageName: node
linkType: hard
"@jupyterlab/builder@npm:^4.2.4":
version: 4.2.4
resolution: "@jupyterlab/builder@npm:4.2.4"
dependencies:
"@lumino/algorithm": ^2.0.1
"@lumino/application": ^2.3.1
"@lumino/commands": ^2.3.0
"@lumino/coreutils": ^2.1.2
"@lumino/disposable": ^2.1.2
"@lumino/domutils": ^2.0.1
"@lumino/dragdrop": ^2.1.4
"@lumino/messaging": ^2.0.1
"@lumino/properties": ^2.0.1
"@lumino/signaling": ^2.1.2
"@lumino/virtualdom": ^2.0.1
"@lumino/widgets": ^2.3.2
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
checksum: 2488e2013afc5499c409a14c34e9fe92ec30cd99622cdb2f00f42a4cced66afac0a1cdf081cf035f2329b50303f91a265146c1e895e832ddd3651c29e2523844
languageName: node
linkType: hard
"@jupyterlab/cells@npm:^4.2, @jupyterlab/cells@npm:^4.2.4":
version: 4.2.4
resolution: "@jupyterlab/cells@npm:4.2.4"
dependencies:
"@codemirror/state": ^6.4.1
"@codemirror/view": ^6.26.0
"@jupyter/ydoc": ^2.0.1
"@jupyterlab/apputils": ^4.3.4
"@jupyterlab/attachments": ^4.2.4
"@jupyterlab/codeeditor": ^4.2.4
"@jupyterlab/codemirror": ^4.2.4
"@jupyterlab/coreutils": ^6.2.4
"@jupyterlab/documentsearch": ^4.2.4
"@jupyterlab/filebrowser": ^4.2.4
"@jupyterlab/nbformat": ^4.2.4
"@jupyterlab/observables": ^5.2.4
"@jupyterlab/outputarea": ^4.2.4
"@jupyterlab/rendermime": ^4.2.4
"@jupyterlab/services": ^7.2.4
"@jupyterlab/toc": ^6.2.4
"@jupyterlab/translation": ^4.2.4
"@jupyterlab/ui-components": ^4.2.4
"@lumino/algorithm": ^2.0.1
"@lumino/coreutils": ^2.1.2
"@lumino/domutils": ^2.0.1
"@lumino/dragdrop": ^2.1.4
"@lumino/messaging": ^2.0.1
"@lumino/polling": ^2.1.2
"@lumino/signaling": ^2.1.2
"@lumino/virtualdom": ^2.0.1
"@lumino/widgets": ^2.3.2
react: ^18.2.0
checksum: 5fb21e53e73b1ee24d09fe5f6300009d858a36dbfafba9d25ad7b27d0ea9cdd4d06ee9b238bd29553e92a166dbc181d489aec294eda2d411e3d59664cd3599f1
languageName: node
linkType: hard
"@jupyterlab/codeeditor@npm:^4.2, @jupyterlab/codeeditor@npm:^4.2.4":
version: 4.2.4
resolution: "@jupyterlab/codeeditor@npm:4.2.4"
dependencies:
"@codemirror/state": ^6.4.1
"@jupyter/ydoc": ^2.0.1
"@jupyterlab/apputils": ^4.3.4
"@jupyterlab/coreutils": ^6.2.4
"@jupyterlab/nbformat": ^4.2.4
"@jupyterlab/observables": ^5.2.4
"@jupyterlab/statusbar": ^4.2.4
"@jupyterlab/translation": ^4.2.4
"@jupyterlab/ui-components": ^4.2.4
"@lumino/coreutils": ^2.1.2
"@lumino/disposable": ^2.1.2
"@lumino/dragdrop": ^2.1.4
"@lumino/messaging": ^2.0.1
"@lumino/signaling": ^2.1.2
"@lumino/widgets": ^2.3.2
react: ^18.2.0
checksum: 851f7ab884030c41317171aa7e699e37440a41a1aff0859e7f7aaf10d8204802817c25ab227d7f24863ba1ffe689ad06ea7674b53073037b7b59df21613cdfe0
languageName: node
linkType: hard
"@jupyterlab/codemirror@npm:^4.2, @jupyterlab/codemirror@npm:^4.2.4":
version: 4.2.4
resolution: "@jupyterlab/codemirror@npm:4.2.4"
dependencies:
"@codemirror/autocomplete": ^6.15.0
"@codemirror/commands": ^6.3.3
"@codemirror/lang-cpp": ^6.0.2
"@codemirror/lang-css": ^6.2.1
"@codemirror/lang-html": ^6.4.8
"@codemirror/lang-java": ^6.0.1
"@codemirror/lang-javascript": ^6.2.2
"@codemirror/lang-json": ^6.0.1
"@codemirror/lang-markdown": ^6.2.4
"@codemirror/lang-php": ^6.0.1
"@codemirror/lang-python": ^6.1.4
"@codemirror/lang-rust": ^6.0.1
"@codemirror/lang-sql": ^6.6.1
"@codemirror/lang-wast": ^6.0.2
"@codemirror/lang-xml": ^6.1.0
"@codemirror/language": ^6.10.1
"@codemirror/legacy-modes": ^6.3.3
"@codemirror/search": ^6.5.6
"@codemirror/state": ^6.4.1
"@codemirror/view": ^6.26.0
"@jupyter/ydoc": ^2.0.1
"@jupyterlab/codeeditor": ^4.2.4
"@jupyterlab/coreutils": ^6.2.4
"@jupyterlab/documentsearch": ^4.2.4
"@jupyterlab/nbformat": ^4.2.4
"@jupyterlab/translation": ^4.2.4
"@lezer/common": ^1.2.1
"@lezer/generator": ^1.7.0
"@lezer/highlight": ^1.2.0
"@lezer/markdown": ^1.2.0
"@lumino/coreutils": ^2.1.2
"@lumino/disposable": ^2.1.2
"@lumino/signaling": ^2.1.2
yjs: ^13.5.40
checksum: 2cceaabd8d7400d80e167d8130697fac4877b7b39d3a63b7b20b6ae4422bd27f34738b678deb2b1de3c6db3452fa6b103c50d9817263ce7246538927d6b1a0cc
languageName: node
linkType: hard
"@jupyterlab/console@npm:^3.0.0 || ^4.0.0":
version: 4.2.4
resolution: "@jupyterlab/console@npm:4.2.4"
dependencies:
"@jupyter/ydoc": ^2.0.1
"@jupyterlab/apputils": ^4.3.4
"@jupyterlab/cells": ^4.2.4
"@jupyterlab/codeeditor": ^4.2.4
"@jupyterlab/coreutils": ^6.2.4
"@jupyterlab/nbformat": ^4.2.4
"@jupyterlab/observables": ^5.2.4
"@jupyterlab/rendermime": ^4.2.4
"@jupyterlab/services": ^7.2.4
"@jupyterlab/translation": ^4.2.4
"@jupyterlab/ui-components": ^4.2.4
"@lumino/coreutils": ^2.1.2
"@lumino/disposable": ^2.1.2
"@lumino/dragdrop": ^2.1.4
"@lumino/messaging": ^2.0.1
"@lumino/signaling": ^2.1.2
"@lumino/widgets": ^2.3.2
checksum: a5101782e38aea1e21ed533b21af6907c6ac765a8da245f68d501ebb9e0202018af75be1a770a70b1f8e2a16130d7da47505faabdd7b9413017b132ea38b042f
languageName: node
linkType: hard
"@jupyterlab/coreutils@npm:^5.6":
version: 5.6.3
resolution: "@jupyterlab/coreutils@npm:5.6.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
checksum: a9bfd0732ef8623212f34ea71b3f5e6556cb7a14dc00e692abca4ea97c6ca0799f7c9a879b71be477194bcbe5d83160c6a99c9158a82ff4aef9db0f8b40a624d
languageName: node
linkType: hard
"@jupyterlab/coreutils@npm:^6.2.4":
version: 6.2.4
resolution: "@jupyterlab/coreutils@npm:6.2.4"
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
checksum: 4ce2c660dea8a174e805b00cdecfa0b00fd7500cd07f5fbb62c69b48722728162baf90dc9c86c8e72044052d9c0217a53d12a7a5ebdbe9714865d18b8e66593f
languageName: node
linkType: hard
"@jupyterlab/docmanager@npm:^4.2.4":
version: 4.2.4
resolution: "@jupyterlab/docmanager@npm:4.2.4"
dependencies:
"@jupyterlab/apputils": ^4.3.4
"@jupyterlab/coreutils": ^6.2.4
"@jupyterlab/docregistry": ^4.2.4
"@jupyterlab/services": ^7.2.4
"@jupyterlab/statedb": ^4.2.4
"@jupyterlab/statusbar": ^4.2.4
"@jupyterlab/translation": ^4.2.4
"@jupyterlab/ui-components": ^4.2.4
"@lumino/algorithm": ^2.0.1
"@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.2
react: ^18.2.0
checksum: d821bf84b49c905d051041c18d453a6dbf165d12ce34c05fce1a871496108fa1aad48416c41dc8363d48a0b587a2f75440e7fbe073d803d5b607e9945705e553
languageName: node
linkType: hard
"@jupyterlab/docregistry@npm:^3.0.0 || ^4.0.0, @jupyterlab/docregistry@npm:^4.2, @jupyterlab/docregistry@npm:^4.2.4":
version: 4.2.4
resolution: "@jupyterlab/docregistry@npm:4.2.4"
dependencies:
"@jupyter/ydoc": ^2.0.1
"@jupyterlab/apputils": ^4.3.4
"@jupyterlab/codeeditor": ^4.2.4
"@jupyterlab/coreutils": ^6.2.4
"@jupyterlab/observables": ^5.2.4
"@jupyterlab/rendermime": ^4.2.4
"@jupyterlab/rendermime-interfaces": ^3.10.4
"@jupyterlab/services": ^7.2.4
"@jupyterlab/translation": ^4.2.4
"@jupyterlab/ui-components": ^4.2.4
"@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.2
react: ^18.2.0
checksum: 725d4a6f4fc960ff9607b82c0d8aa065a0c7770d730ae5022be9db8defede6fa65f3c03d65c4518df8a651219d347c9d7ca75c18134907847e3759154c325650
languageName: node
linkType: hard
"@jupyterlab/documentsearch@npm:^4.2.4":
version: 4.2.4
resolution: "@jupyterlab/documentsearch@npm:4.2.4"
dependencies:
"@jupyterlab/apputils": ^4.3.4
"@jupyterlab/translation": ^4.2.4
"@jupyterlab/ui-components": ^4.2.4
"@lumino/commands": ^2.3.0
"@lumino/coreutils": ^2.1.2
"@lumino/disposable": ^2.1.2
"@lumino/messaging": ^2.0.1
"@lumino/polling": ^2.1.2
"@lumino/signaling": ^2.1.2
"@lumino/widgets": ^2.3.2
react: ^18.2.0
checksum: 06f299de3a0eb40a72b27f0d7628f3e0109f1fa22208021ca79655209d14b1db83b15cf5c6d963f86b61ad33c418adc4ec81c4fbd68128a9b71d7d0200ee6061
languageName: node
linkType: hard
"@jupyterlab/filebrowser@npm:^4.2, @jupyterlab/filebrowser@npm:^4.2.4":
version: 4.2.4
resolution: "@jupyterlab/filebrowser@npm:4.2.4"
dependencies:
"@jupyterlab/apputils": ^4.3.4
"@jupyterlab/coreutils": ^6.2.4
"@jupyterlab/docmanager": ^4.2.4
"@jupyterlab/docregistry": ^4.2.4
"@jupyterlab/services": ^7.2.4
"@jupyterlab/statedb": ^4.2.4
"@jupyterlab/statusbar": ^4.2.4
"@jupyterlab/translation": ^4.2.4
"@jupyterlab/ui-components": ^4.2.4
"@lumino/algorithm": ^2.0.1
"@lumino/coreutils": ^2.1.2
"@lumino/disposable": ^2.1.2
"@lumino/domutils": ^2.0.1
"@lumino/dragdrop": ^2.1.4
"@lumino/messaging": ^2.0.1
"@lumino/polling": ^2.1.2
"@lumino/signaling": ^2.1.2
"@lumino/virtualdom": ^2.0.1
"@lumino/widgets": ^2.3.2
react: ^18.2.0
checksum: 563613e176c50bc0a7015e38a1ebac0307a9a15358bf5eee3dfe021303928b44bd5962f595f3e7bb4c20dff6175d503419f31bc5586713e5c831e3ace89583ca
languageName: node
linkType: hard
"@jupyterlab/launcher@npm:^4.2":
version: 4.2.4
resolution: "@jupyterlab/launcher@npm:4.2.4"
dependencies:
"@jupyterlab/apputils": ^4.3.4
"@jupyterlab/translation": ^4.2.4
"@jupyterlab/ui-components": ^4.2.4
"@lumino/algorithm": ^2.0.1
"@lumino/commands": ^2.3.0
"@lumino/coreutils": ^2.1.2
"@lumino/disposable": ^2.1.2
"@lumino/properties": ^2.0.1
"@lumino/widgets": ^2.3.2
react: ^18.2.0
checksum: be6f4dc1b11696fa2f103fea2e95670dea0535d3c4f66ed397d78c50188cb6f617e1b328d3fad087089e7f73a76e2117b2c59d69432115ad27b3301e093905c1
languageName: node
linkType: hard
"@jupyterlab/logconsole@npm:^3.0.0 || ^4.0.0":
version: 4.2.4
resolution: "@jupyterlab/logconsole@npm:4.2.4"
dependencies:
"@jupyterlab/coreutils": ^6.2.4
"@jupyterlab/nbformat": ^4.2.4
"@jupyterlab/outputarea": ^4.2.4
"@jupyterlab/rendermime": ^4.2.4
"@jupyterlab/services": ^7.2.4
"@jupyterlab/translation": ^4.2.4
"@lumino/coreutils": ^2.1.2
"@lumino/disposable": ^2.1.2