-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathyarn.lock
More file actions
6300 lines (5699 loc) · 215 KB
/
yarn.lock
File metadata and controls
6300 lines (5699 loc) · 215 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
# This file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 6
cacheKey: 8
"@codemirror/autocomplete@npm:^6.0.0, @codemirror/autocomplete@npm:^6.18.6, @codemirror/autocomplete@npm:^6.3.2, @codemirror/autocomplete@npm:^6.7.1":
version: 6.18.6
resolution: "@codemirror/autocomplete@npm:6.18.6"
dependencies:
"@codemirror/language": ^6.0.0
"@codemirror/state": ^6.0.0
"@codemirror/view": ^6.17.0
"@lezer/common": ^1.0.0
checksum: 1d3657d5fbd2bbf983edf7fb14568b1f813a15f03848bef3833835dd3a30985d881e093842f7b3def23789b542db4eb81ec07bfa313d1ee1d54cb1b273027dea
languageName: node
linkType: hard
"@codemirror/commands@npm:^6.8.1":
version: 6.8.1
resolution: "@codemirror/commands@npm:6.8.1"
dependencies:
"@codemirror/language": ^6.0.0
"@codemirror/state": ^6.4.0
"@codemirror/view": ^6.27.0
"@lezer/common": ^1.1.0
checksum: 838365af4f12e985c35f4bc59e38eb809e951fd3e35d5ad43548e61c26deda050276346dd031b9c6ed7fe13a777d59c37b9b1e46609d1d79e622d908340a468e
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.3.1":
version: 6.3.1
resolution: "@codemirror/lang-css@npm:6.3.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.1.7
checksum: ed175d75d75bc0a059d1e60b3dcd8464d570da14fc97388439943c9c43e1e9146e37b83fe2ccaad9cd387420b7b411ea1d24ede78ecd1f2045a38acbb4dd36bc
languageName: node
linkType: hard
"@codemirror/lang-html@npm:^6.0.0, @codemirror/lang-html@npm:^6.4.9":
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.3":
version: 6.2.4
resolution: "@codemirror/lang-javascript@npm:6.2.4"
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: 0350e9ac2df155c4ecf75d556f40b677c284c1d320620dc7228e2aa458e258dd1145c86e5ebf3451347ed6ef528f72c2eb60f5d3f6bd10af8aabb2819109e21a
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.3.2":
version: 6.3.2
resolution: "@codemirror/lang-markdown@npm:6.3.2"
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: f136d50156f13619d7ceb4fae28fc2342064be371a6cb057ba304658d885cf029d2d0d69b03b3c591c86a2c9b46bb2b3820549d5ff936a9b6aabaf692923c84a
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.2.0":
version: 6.2.1
resolution: "@codemirror/lang-python@npm:6.2.1"
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: 977ce444ab7c68261107c40e8a46d3480a239ac5a093f39fad7da0644fc08cb4b90552c8b7fad396f936e34b5bbac510533ea7b4229d3b8271774a1af1e717aa
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.8.0":
version: 6.9.0
resolution: "@codemirror/lang-sql@npm:6.9.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: aca08c11b519f962e9a59e14dc6f54102deaa7a15a390c2dc50401234d33a1fd0c5d2436e6f1810a0363b6f2649480d28eb16a10a7e3f4221ffa3f130ef0672e
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.11.0, @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.11.1
resolution: "@codemirror/language@npm:6.11.1"
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: 8ff27354f39fec45f2306322cd2069aeefd0162fdeec0e5b9215a3fc3fa7bc3212d133402c5f07022ee9de4bef9a69221111beed3abec42abfd246affd48ac42
languageName: node
linkType: hard
"@codemirror/legacy-modes@npm:^6.5.1":
version: 6.5.1
resolution: "@codemirror/legacy-modes@npm:6.5.1"
dependencies:
"@codemirror/language": ^6.0.0
checksum: ad92399fdd5f7342d2b8d1ef450ac01cee96f2266938ca09de5047998bf6ac7a085dfe9941feb9ef6a924fda80aa7a1dc0ddc5dd6ce9c3ceaa36bcc14c5b2264
languageName: node
linkType: hard
"@codemirror/lint@npm:^6.0.0":
version: 6.8.5
resolution: "@codemirror/lint@npm:6.8.5"
dependencies:
"@codemirror/state": ^6.0.0
"@codemirror/view": ^6.35.0
crelt: ^1.0.5
checksum: 76fa457c6664f333216aacb0112bce8a0e2fd7011c180b7c855027dbb871dc112a31bf828f5affc0e53973111dee3aac4c9c3b80ade8534ac9748f296fb77abc
languageName: node
linkType: hard
"@codemirror/search@npm:^6.5.10":
version: 6.5.11
resolution: "@codemirror/search@npm:6.5.11"
dependencies:
"@codemirror/state": ^6.0.0
"@codemirror/view": ^6.0.0
crelt: ^1.0.5
checksum: 4d418f176bd93705bc51c82a2f1c0e41fecc0368dc43c415635c4dfdd763aa05ebdf7f000bc9ca0083c1887e6d305b89482ec1f4db8b8765c6f38de324187476
languageName: node
linkType: hard
"@codemirror/state@npm:^6.0.0, @codemirror/state@npm:^6.4.0, @codemirror/state@npm:^6.5.0, @codemirror/state@npm:^6.5.2":
version: 6.5.2
resolution: "@codemirror/state@npm:6.5.2"
dependencies:
"@marijn/find-cluster-break": ^1.0.0
checksum: 4473a79475070d73f2e72f2eaaee5b69d2833b5020faa9714609d95dd03f0e5ad02cad8031a541dcd748436842a300332a2925317b39ffa09e3b4831145d98bc
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.27.0, @codemirror/view@npm:^6.35.0, @codemirror/view@npm:^6.36.6":
version: 6.37.1
resolution: "@codemirror/view@npm:6.37.1"
dependencies:
"@codemirror/state": ^6.5.0
crelt: ^1.0.6
style-mod: ^4.1.0
w3c-keyname: ^2.2.4
checksum: 634bd4f9749f5ebcc82f2610ca9c826161385f7fc4a690f2e37c9850613d9bc575e779435c44db51c82ddc9f470d7a895c23200c4c9b513d9f8cf05729b9471a
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, @eslint-community/eslint-utils@npm:^4.7.0":
version: 4.7.0
resolution: "@eslint-community/eslint-utils@npm:4.7.0"
dependencies:
eslint-visitor-keys: ^3.4.3
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
checksum: b177e3b75c0b8d0e5d71f1c532edb7e40b31313db61f0c879f9bf19c3abb2783c6c372b5deb2396dab4432f2946b9972122ac682e77010376c029dfd0149c681
languageName: node
linkType: hard
"@eslint-community/regexpp@npm:^4.10.0, @eslint-community/regexpp@npm:^4.12.1":
version: 4.12.1
resolution: "@eslint-community/regexpp@npm:4.12.1"
checksum: 0d628680e204bc316d545b4993d3658427ca404ae646ce541fcc65306b8c712c340e5e573e30fb9f85f4855c0c5f6dca9868931f2fcced06417fbe1a0c6cd2d6
languageName: node
linkType: hard
"@eslint/config-array@npm:^0.20.0":
version: 0.20.0
resolution: "@eslint/config-array@npm:0.20.0"
dependencies:
"@eslint/object-schema": ^2.1.6
debug: ^4.3.1
minimatch: ^3.1.2
checksum: 55824ea31f0502166a6fea97176c9c25089a0354474cdc72a5f739b1cf6925f44f667bf8f4f3a9dabf1112ab0fa671778ca3f96f1499f31ec42caf84cae55005
languageName: node
linkType: hard
"@eslint/config-helpers@npm:^0.2.1":
version: 0.2.2
resolution: "@eslint/config-helpers@npm:0.2.2"
checksum: 8a4091a2c8af5366513647ccad720f184c1b723f04c086755797a3a5cac69dc9013bc8a75453d9fc188fc4364460f0eae9f1584b77b28082e0d26bf48356ae8f
languageName: node
linkType: hard
"@eslint/core@npm:^0.14.0":
version: 0.14.0
resolution: "@eslint/core@npm:0.14.0"
dependencies:
"@types/json-schema": ^7.0.15
checksum: d68b8282b6f38c5145234f812f18f491d12d716240875591bd54bf5ac32858d979bdf6d38e521997a6e01f2c4223a3e66049714151da7278d0a95ff15b5d46c8
languageName: node
linkType: hard
"@eslint/eslintrc@npm:^3.3.1":
version: 3.3.1
resolution: "@eslint/eslintrc@npm:3.3.1"
dependencies:
ajv: ^6.12.4
debug: ^4.3.2
espree: ^10.0.1
globals: ^14.0.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: 8241f998f0857abf5a615072273b90b1244d75c1c45d217c6a8eb444c6e12bbb5506b4879c14fb262eb72b7d8e3d2f0542da2db1a7f414a12496ebb790fb4d62
languageName: node
linkType: hard
"@eslint/js@npm:9.28.0":
version: 9.28.0
resolution: "@eslint/js@npm:9.28.0"
checksum: f54c11d192b95ab30141e9434ed33c3f9f49877f42fd14294edb59f904aa2d5dfa63fe6e9d8c9c8ccde378d88058b255f66f774ec1f1ede5f7ce0d18992f4105
languageName: node
linkType: hard
"@eslint/object-schema@npm:^2.1.6":
version: 2.1.6
resolution: "@eslint/object-schema@npm:2.1.6"
checksum: e32e565319f6544d36d3fa69a3e163120722d12d666d1a4525c9a6f02e9b54c29d9b1f03139e25d7e759e08dda8da433590bc23c09db8d511162157ef1b86a4c
languageName: node
linkType: hard
"@eslint/plugin-kit@npm:^0.3.1":
version: 0.3.1
resolution: "@eslint/plugin-kit@npm:0.3.1"
dependencies:
"@eslint/core": ^0.14.0
levn: ^0.4.1
checksum: 8de2438456d9a741c909dd22a60454793c0147e1a13833717e4109c46f5a6b090780e8d9e940a3b3b9bf3643d01a0e726cc74f28ccd7caac95053bb39c2e6c04
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
"@humanfs/core@npm:^0.19.1":
version: 0.19.1
resolution: "@humanfs/core@npm:0.19.1"
checksum: 611e0545146f55ddfdd5c20239cfb7911f9d0e28258787c4fc1a1f6214250830c9367aaaeace0096ed90b6739bee1e9c52ad5ba8adaf74ab8b449119303babfe
languageName: node
linkType: hard
"@humanfs/node@npm:^0.16.6":
version: 0.16.6
resolution: "@humanfs/node@npm:0.16.6"
dependencies:
"@humanfs/core": ^0.19.1
"@humanwhocodes/retry": ^0.3.0
checksum: f9cb52bb235f8b9c6fcff43a7e500669a38f8d6ce26593404a9b56365a1644e0ed60c720dc65ff6a696b1f85f3563ab055bb554ec8674f2559085ba840e47710
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/retry@npm:^0.3.0":
version: 0.3.1
resolution: "@humanwhocodes/retry@npm:0.3.1"
checksum: 7e5517bb51dbea3e02ab6cacef59a8f4b0ca023fc4b0b8cbc40de0ad29f46edd50b897c6e7fba79366a0217e3f48e2da8975056f6c35cfe19d9cc48f1d03c1dd
languageName: node
linkType: hard
"@humanwhocodes/retry@npm:^0.4.2":
version: 0.4.3
resolution: "@humanwhocodes/retry@npm:0.4.3"
checksum: d423455b9d53cf01f778603404512a4246fb19b83e74fe3e28c70d9a80e9d4ae147d2411628907ca983e91a855a52535859a8bb218050bc3f6dbd7a553b7b442
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
"@jridgewell/gen-mapping@npm:^0.3.5":
version: 0.3.8
resolution: "@jridgewell/gen-mapping@npm:0.3.8"
dependencies:
"@jridgewell/set-array": ^1.2.1
"@jridgewell/sourcemap-codec": ^1.4.10
"@jridgewell/trace-mapping": ^0.3.24
checksum: c0687b5227461717aa537fe71a42e356bcd1c43293b3353796a148bf3b0d6f59109def46c22f05b60e29a46f19b2e4676d027959a7c53a6c92b9d5b0d87d0420
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, @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.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/react-components@npm:^0.16.6":
version: 0.16.7
resolution: "@jupyter/react-components@npm:0.16.7"
dependencies:
"@jupyter/web-components": ^0.16.7
react: ">=17.0.0 <19.0.0"
checksum: 37894347e63ebb528725e8b8b4038d138019823f5c9e28e3f6abb93b46d771b2ee3cc004d5ff7d9a06a93f2d90e41000bd2abae14364be34ba99c5e05864810e
languageName: node
linkType: hard
"@jupyter/web-components@npm:^0.16.6, @jupyter/web-components@npm:^0.16.7":
version: 0.16.7
resolution: "@jupyter/web-components@npm:0.16.7"
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: ec3336247bbabb2e2587c2cf8b9d0e80786b454916dd600b3d6791bf08c3d1e45a7ec1becf366a5491ab56b0be020baa8c50a5b6067961faf5ec904de31243aa
languageName: node
linkType: hard
"@jupyter/ydoc@npm:^3.0.4":
version: 3.0.5
resolution: "@jupyter/ydoc@npm:3.0.5"
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: a4f8074790e34b649e581e093806ec84ccfdcd676735d35efdba74e93114c5ff3d40e5909322ce7fc7acd0faf379ecfb8979ab88af1db9705d74b0eff4e1c75c
languageName: node
linkType: hard
"@jupyterlab/application@npm:^4.4.3":
version: 4.4.3
resolution: "@jupyterlab/application@npm:4.4.3"
dependencies:
"@fortawesome/fontawesome-free": ^5.12.0
"@jupyterlab/apputils": ^4.5.3
"@jupyterlab/coreutils": ^6.4.3
"@jupyterlab/docregistry": ^4.4.3
"@jupyterlab/rendermime": ^4.4.3
"@jupyterlab/rendermime-interfaces": ^3.12.3
"@jupyterlab/services": ^7.4.3
"@jupyterlab/statedb": ^4.4.3
"@jupyterlab/translation": ^4.4.3
"@jupyterlab/ui-components": ^4.4.3
"@lumino/algorithm": ^2.0.3
"@lumino/application": ^2.4.4
"@lumino/commands": ^2.3.2
"@lumino/coreutils": ^2.2.1
"@lumino/disposable": ^2.1.4
"@lumino/messaging": ^2.0.3
"@lumino/polling": ^2.1.4
"@lumino/properties": ^2.0.3
"@lumino/signaling": ^2.1.4
"@lumino/widgets": ^2.7.1
checksum: 47fe9446f8bd541752cfd034243ee9da92bb8c166764fccf6d7334f0ef49135dd130831a32aa7506f72bbfc5625094fe27373151147486085c3645986ef24f4b
languageName: node
linkType: hard
"@jupyterlab/apputils@npm:^4.5.3":
version: 4.5.3
resolution: "@jupyterlab/apputils@npm:4.5.3"
dependencies:
"@jupyterlab/coreutils": ^6.4.3
"@jupyterlab/observables": ^5.4.3
"@jupyterlab/rendermime-interfaces": ^3.12.3
"@jupyterlab/services": ^7.4.3
"@jupyterlab/settingregistry": ^4.4.3
"@jupyterlab/statedb": ^4.4.3
"@jupyterlab/statusbar": ^4.4.3
"@jupyterlab/translation": ^4.4.3
"@jupyterlab/ui-components": ^4.4.3
"@lumino/algorithm": ^2.0.3
"@lumino/commands": ^2.3.2
"@lumino/coreutils": ^2.2.1
"@lumino/disposable": ^2.1.4
"@lumino/domutils": ^2.0.3
"@lumino/messaging": ^2.0.3
"@lumino/signaling": ^2.1.4
"@lumino/virtualdom": ^2.0.3
"@lumino/widgets": ^2.7.1
"@types/react": ^18.0.26
react: ^18.2.0
sanitize-html: ~2.12.1
checksum: 02a642db18a7efb2cff01e52d5ca52fb36fcecbed678ba9379455ff00ac6e6437d03439991f9312e0d1cf89eec3018e72065eb615d747642820c7dfa5af6a33a
languageName: node
linkType: hard
"@jupyterlab/attachments@npm:^4.4.3":
version: 4.4.3
resolution: "@jupyterlab/attachments@npm:4.4.3"
dependencies:
"@jupyterlab/nbformat": ^4.4.3
"@jupyterlab/observables": ^5.4.3
"@jupyterlab/rendermime": ^4.4.3
"@jupyterlab/rendermime-interfaces": ^3.12.3
"@lumino/disposable": ^2.1.4
"@lumino/signaling": ^2.1.4
checksum: f5b40cfa76511c4d5c921fbf09a6931aa1a832865977e4f89fff390de7ffb23da3e568d8cc431af14b2240938d939316c069fdc046276ec5185191bb437cdae9
languageName: node
linkType: hard
"@jupyterlab/builder@npm:^4.4.3":
version: 4.4.3
resolution: "@jupyterlab/builder@npm:4.4.3"
dependencies:
"@lumino/algorithm": ^2.0.3
"@lumino/application": ^2.4.4
"@lumino/commands": ^2.3.2
"@lumino/coreutils": ^2.2.1
"@lumino/disposable": ^2.1.4
"@lumino/domutils": ^2.0.3
"@lumino/dragdrop": ^2.1.6
"@lumino/messaging": ^2.0.3
"@lumino/properties": ^2.0.3
"@lumino/signaling": ^2.1.4
"@lumino/virtualdom": ^2.0.3
"@lumino/widgets": ^2.7.1
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: b6015eff6b79e29d82506c8e7f3fc2b3a1e3282bf06a4001be43329a78daceb7b13b1bb362997725828989419f35c905b3c9577a296f5beb8b808c2a4e6de849
languageName: node
linkType: hard
"@jupyterlab/cells@npm:^4.4.3":
version: 4.4.3
resolution: "@jupyterlab/cells@npm:4.4.3"
dependencies:
"@codemirror/state": ^6.5.2
"@codemirror/view": ^6.36.6
"@jupyter/ydoc": ^3.0.4
"@jupyterlab/apputils": ^4.5.3
"@jupyterlab/attachments": ^4.4.3
"@jupyterlab/codeeditor": ^4.4.3
"@jupyterlab/codemirror": ^4.4.3
"@jupyterlab/coreutils": ^6.4.3
"@jupyterlab/documentsearch": ^4.4.3
"@jupyterlab/filebrowser": ^4.4.3
"@jupyterlab/nbformat": ^4.4.3
"@jupyterlab/observables": ^5.4.3
"@jupyterlab/outputarea": ^4.4.3
"@jupyterlab/rendermime": ^4.4.3
"@jupyterlab/services": ^7.4.3
"@jupyterlab/toc": ^6.4.3
"@jupyterlab/translation": ^4.4.3
"@jupyterlab/ui-components": ^4.4.3
"@lumino/algorithm": ^2.0.3
"@lumino/coreutils": ^2.2.1
"@lumino/domutils": ^2.0.3
"@lumino/dragdrop": ^2.1.6
"@lumino/messaging": ^2.0.3
"@lumino/polling": ^2.1.4
"@lumino/signaling": ^2.1.4
"@lumino/virtualdom": ^2.0.3
"@lumino/widgets": ^2.7.1
react: ^18.2.0
checksum: 1212184a2df74971955af8787e63b576f65bfaa207ce171e860d39af3d5bbf243fd01d3cee0acaced95958d0f7ded7e1d9b2b74ed95509fdcfdc757bf30c7d8d
languageName: node
linkType: hard
"@jupyterlab/codeeditor@npm:^4.4.3":
version: 4.4.3
resolution: "@jupyterlab/codeeditor@npm:4.4.3"
dependencies:
"@codemirror/state": ^6.5.2
"@jupyter/ydoc": ^3.0.4
"@jupyterlab/apputils": ^4.5.3
"@jupyterlab/coreutils": ^6.4.3
"@jupyterlab/nbformat": ^4.4.3
"@jupyterlab/observables": ^5.4.3
"@jupyterlab/statusbar": ^4.4.3
"@jupyterlab/translation": ^4.4.3
"@jupyterlab/ui-components": ^4.4.3
"@lumino/coreutils": ^2.2.1
"@lumino/disposable": ^2.1.4
"@lumino/dragdrop": ^2.1.6
"@lumino/messaging": ^2.0.3
"@lumino/signaling": ^2.1.4
"@lumino/widgets": ^2.7.1
react: ^18.2.0
checksum: edf0c26783e8db6d87805e0531557f3fe90aa4ca19d4b6c768510655f406f2cad98d06e0805e10dd1d3b94f2993fe0f2cd78fbf0d0b9005c39c1b97f57ffabb3
languageName: node
linkType: hard
"@jupyterlab/codemirror@npm:^4.4.3":
version: 4.4.3
resolution: "@jupyterlab/codemirror@npm:4.4.3"
dependencies:
"@codemirror/autocomplete": ^6.18.6
"@codemirror/commands": ^6.8.1
"@codemirror/lang-cpp": ^6.0.2
"@codemirror/lang-css": ^6.3.1
"@codemirror/lang-html": ^6.4.9
"@codemirror/lang-java": ^6.0.1
"@codemirror/lang-javascript": ^6.2.3
"@codemirror/lang-json": ^6.0.1
"@codemirror/lang-markdown": ^6.3.2
"@codemirror/lang-php": ^6.0.1
"@codemirror/lang-python": ^6.2.0
"@codemirror/lang-rust": ^6.0.1
"@codemirror/lang-sql": ^6.8.0
"@codemirror/lang-wast": ^6.0.2
"@codemirror/lang-xml": ^6.1.0
"@codemirror/language": ^6.11.0
"@codemirror/legacy-modes": ^6.5.1
"@codemirror/search": ^6.5.10
"@codemirror/state": ^6.5.2
"@codemirror/view": ^6.36.6
"@jupyter/ydoc": ^3.0.4
"@jupyterlab/codeeditor": ^4.4.3
"@jupyterlab/coreutils": ^6.4.3
"@jupyterlab/documentsearch": ^4.4.3
"@jupyterlab/nbformat": ^4.4.3
"@jupyterlab/translation": ^4.4.3
"@lezer/common": ^1.2.1
"@lezer/generator": ^1.7.0
"@lezer/highlight": ^1.2.0
"@lezer/markdown": ^1.3.0
"@lumino/coreutils": ^2.2.1
"@lumino/disposable": ^2.1.4
"@lumino/signaling": ^2.1.4
yjs: ^13.5.40
checksum: add4b18844f5b2d03fcf9ba1e8a87ace361990e3b79d49e5ea4960f6fa18b498e3b719e881c78aef9c8f3475df2f3e79e1a4529ab8e631d39b50ca39da562d71
languageName: node
linkType: hard
"@jupyterlab/coreutils@npm:^6.4.3":
version: 6.4.3
resolution: "@jupyterlab/coreutils@npm:6.4.3"
dependencies:
"@lumino/coreutils": ^2.2.1
"@lumino/disposable": ^2.1.4
"@lumino/signaling": ^2.1.4
minimist: ~1.2.0
path-browserify: ^1.0.0
url-parse: ~1.5.4
checksum: f9ffd692d4e30f4813e4985972ff4323752dd30497877b58a8a791f71eda8655efe2297c38cb83b6b0ed057707c8bf50633d7bdd9c2d388a400d986458307cf4
languageName: node
linkType: hard
"@jupyterlab/docmanager@npm:^4.4.3":
version: 4.4.3
resolution: "@jupyterlab/docmanager@npm:4.4.3"
dependencies:
"@jupyterlab/apputils": ^4.5.3
"@jupyterlab/coreutils": ^6.4.3
"@jupyterlab/docregistry": ^4.4.3
"@jupyterlab/services": ^7.4.3
"@jupyterlab/statedb": ^4.4.3
"@jupyterlab/statusbar": ^4.4.3
"@jupyterlab/translation": ^4.4.3
"@jupyterlab/ui-components": ^4.4.3
"@lumino/algorithm": ^2.0.3
"@lumino/coreutils": ^2.2.1
"@lumino/disposable": ^2.1.4
"@lumino/messaging": ^2.0.3
"@lumino/polling": ^2.1.4
"@lumino/properties": ^2.0.3
"@lumino/signaling": ^2.1.4
"@lumino/widgets": ^2.7.1
react: ^18.2.0
checksum: 7c0ca59e15ae65dfed8509feb4d4464a528cffac2717c63697321c7f4e5455d291d474c75df9b4151383bd2db701729e66cc504699c475f2464b47bc74449b06
languageName: node
linkType: hard
"@jupyterlab/docregistry@npm:^4.4.3":
version: 4.4.3
resolution: "@jupyterlab/docregistry@npm:4.4.3"
dependencies:
"@jupyter/ydoc": ^3.0.4
"@jupyterlab/apputils": ^4.5.3
"@jupyterlab/codeeditor": ^4.4.3
"@jupyterlab/coreutils": ^6.4.3
"@jupyterlab/observables": ^5.4.3
"@jupyterlab/rendermime": ^4.4.3
"@jupyterlab/rendermime-interfaces": ^3.12.3
"@jupyterlab/services": ^7.4.3
"@jupyterlab/translation": ^4.4.3
"@jupyterlab/ui-components": ^4.4.3
"@lumino/algorithm": ^2.0.3
"@lumino/coreutils": ^2.2.1
"@lumino/disposable": ^2.1.4
"@lumino/messaging": ^2.0.3
"@lumino/properties": ^2.0.3
"@lumino/signaling": ^2.1.4
"@lumino/widgets": ^2.7.1
react: ^18.2.0
checksum: 100db7ed672fbbd8d7342fe554e34919d4d851f0728eb9da5c20043abf35f0f57cf6236f06d3ff7d106dc850f2de54ce273ca167272e1bf7e00bba308c968ca3
languageName: node
linkType: hard
"@jupyterlab/documentsearch@npm:^4.4.3":
version: 4.4.3
resolution: "@jupyterlab/documentsearch@npm:4.4.3"
dependencies:
"@jupyterlab/apputils": ^4.5.3
"@jupyterlab/translation": ^4.4.3
"@jupyterlab/ui-components": ^4.4.3
"@lumino/commands": ^2.3.2
"@lumino/coreutils": ^2.2.1
"@lumino/disposable": ^2.1.4
"@lumino/messaging": ^2.0.3
"@lumino/polling": ^2.1.4
"@lumino/signaling": ^2.1.4
"@lumino/widgets": ^2.7.1
react: ^18.2.0
checksum: 65c5280184b2ff61f8efebad04ef9acfe13288aeb07bab52c090f99b6ec984db0337243a9fe11f7818a25922525ecc5135e74220b057f2a5ee512282546a3d2f
languageName: node
linkType: hard
"@jupyterlab/filebrowser@npm:^4.4.3":
version: 4.4.3
resolution: "@jupyterlab/filebrowser@npm:4.4.3"
dependencies:
"@jupyterlab/apputils": ^4.5.3
"@jupyterlab/coreutils": ^6.4.3
"@jupyterlab/docmanager": ^4.4.3
"@jupyterlab/docregistry": ^4.4.3
"@jupyterlab/services": ^7.4.3
"@jupyterlab/statedb": ^4.4.3
"@jupyterlab/statusbar": ^4.4.3
"@jupyterlab/translation": ^4.4.3
"@jupyterlab/ui-components": ^4.4.3
"@lumino/algorithm": ^2.0.3
"@lumino/coreutils": ^2.2.1
"@lumino/disposable": ^2.1.4
"@lumino/domutils": ^2.0.3
"@lumino/dragdrop": ^2.1.6
"@lumino/messaging": ^2.0.3
"@lumino/polling": ^2.1.4
"@lumino/signaling": ^2.1.4
"@lumino/virtualdom": ^2.0.3
"@lumino/widgets": ^2.7.1
react: ^18.2.0
checksum: 62792f55bb39d3dcfe03f5f095ab87d65695d8a3fdea5dd024c23fdadd8cc371894ccfb237819316cc91d915d044caa255ccfb86052e7e5a761910c7eebe2003
languageName: node
linkType: hard
"@jupyterlab/launcher@npm:^4.4.3":
version: 4.4.3
resolution: "@jupyterlab/launcher@npm:4.4.3"
dependencies:
"@jupyterlab/apputils": ^4.5.3
"@jupyterlab/translation": ^4.4.3
"@jupyterlab/ui-components": ^4.4.3
"@lumino/algorithm": ^2.0.3
"@lumino/commands": ^2.3.2
"@lumino/coreutils": ^2.2.1
"@lumino/disposable": ^2.1.4
"@lumino/properties": ^2.0.3
"@lumino/widgets": ^2.7.1
react: ^18.2.0
checksum: 85517f243298c4cec20de552f6c4e8e4229fd3eaceddda6dda561be352a25e5542841274e151a4976db3651388e2d03a0e2012e3a16be207e2ba2485a0e09de6
languageName: node
linkType: hard
"@jupyterlab/lsp@npm:^4.4.3":
version: 4.4.3
resolution: "@jupyterlab/lsp@npm:4.4.3"
dependencies:
"@jupyterlab/apputils": ^4.5.3
"@jupyterlab/codeeditor": ^4.4.3
"@jupyterlab/codemirror": ^4.4.3
"@jupyterlab/coreutils": ^6.4.3
"@jupyterlab/docregistry": ^4.4.3
"@jupyterlab/services": ^7.4.3
"@jupyterlab/translation": ^4.4.3
"@lumino/coreutils": ^2.2.1
"@lumino/disposable": ^2.1.4
"@lumino/signaling": ^2.1.4
"@lumino/widgets": ^2.7.1
lodash.mergewith: ^4.6.1
vscode-jsonrpc: ^6.0.0
vscode-languageserver-protocol: ^3.17.0
vscode-ws-jsonrpc: ~1.0.2
checksum: 598ed49b5f2c6ee65e2d08c55ed91fab722a040f074a35aa9b2ce517c84dd7b7fb0183bca7b14df427282be352642273fddc42fafceb227a40bd7d5e32f8921d
languageName: node
linkType: hard
"@jupyterlab/nbformat@npm:^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0, @jupyterlab/nbformat@npm:^4.4.3":
version: 4.4.3
resolution: "@jupyterlab/nbformat@npm:4.4.3"
dependencies:
"@lumino/coreutils": ^2.2.1
checksum: 2e743fcf41fa7e0bbbe06fb417467b32b3679544f5b6ebf33623ce92e04e0d545c879e5eead6b201a83e2d8aa503df9c95050be67244cc4a6c65355120f9b0fe
languageName: node
linkType: hard
"@jupyterlab/notebook@npm:^4.4.3":
version: 4.4.3
resolution: "@jupyterlab/notebook@npm:4.4.3"
dependencies:
"@jupyter/ydoc": ^3.0.4
"@jupyterlab/apputils": ^4.5.3
"@jupyterlab/cells": ^4.4.3
"@jupyterlab/codeeditor": ^4.4.3
"@jupyterlab/codemirror": ^4.4.3
"@jupyterlab/coreutils": ^6.4.3
"@jupyterlab/docregistry": ^4.4.3
"@jupyterlab/documentsearch": ^4.4.3
"@jupyterlab/lsp": ^4.4.3
"@jupyterlab/nbformat": ^4.4.3
"@jupyterlab/observables": ^5.4.3
"@jupyterlab/rendermime": ^4.4.3
"@jupyterlab/services": ^7.4.3
"@jupyterlab/settingregistry": ^4.4.3
"@jupyterlab/statusbar": ^4.4.3
"@jupyterlab/toc": ^6.4.3
"@jupyterlab/translation": ^4.4.3
"@jupyterlab/ui-components": ^4.4.3
"@lumino/algorithm": ^2.0.3
"@lumino/coreutils": ^2.2.1
"@lumino/disposable": ^2.1.4
"@lumino/domutils": ^2.0.3
"@lumino/dragdrop": ^2.1.6
"@lumino/messaging": ^2.0.3
"@lumino/polling": ^2.1.4
"@lumino/properties": ^2.0.3
"@lumino/signaling": ^2.1.4
"@lumino/virtualdom": ^2.0.3
"@lumino/widgets": ^2.7.1
react: ^18.2.0
checksum: 690e50c878f41ebecfa7bc8e22df4fe34dda35816e0bd5dea1787b0c6e48b862012343f8584d4bfdc534e9b9723f77d5faca87b2075411ee63efc0de3c389282
languageName: node
linkType: hard
"@jupyterlab/observables@npm:^5.4.3":
version: 5.4.3
resolution: "@jupyterlab/observables@npm:5.4.3"
dependencies:
"@lumino/algorithm": ^2.0.3
"@lumino/coreutils": ^2.2.1
"@lumino/disposable": ^2.1.4
"@lumino/messaging": ^2.0.3
"@lumino/signaling": ^2.1.4
checksum: 97189f20cc95e3eaed94c4a2915e778be5282f7dbf04d99d1e0a348ee57601800b80244c5d7502f3c8d61ea496aeaa9d24c081deec8a6bd4c7f247d6a3c43fdc
languageName: node
linkType: hard
"@jupyterlab/outputarea@npm:^4.4.3":
version: 4.4.3
resolution: "@jupyterlab/outputarea@npm:4.4.3"
dependencies:
"@jupyterlab/apputils": ^4.5.3
"@jupyterlab/nbformat": ^4.4.3
"@jupyterlab/observables": ^5.4.3
"@jupyterlab/rendermime": ^4.4.3
"@jupyterlab/rendermime-interfaces": ^3.12.3
"@jupyterlab/services": ^7.4.3
"@jupyterlab/translation": ^4.4.3
"@lumino/algorithm": ^2.0.3
"@lumino/coreutils": ^2.2.1
"@lumino/disposable": ^2.1.4
"@lumino/messaging": ^2.0.3
"@lumino/properties": ^2.0.3
"@lumino/signaling": ^2.1.4
"@lumino/widgets": ^2.7.1
checksum: c623266ada920d793a63720fb5db871a31c7edec8e0052d10cd0e212641af6515649577f28ce39ff18779b1312212a3a73830d565d73cf13cf04471cc5bb0503
languageName: node
linkType: hard
"@jupyterlab/rendermime-interfaces@npm:^3.12.3":
version: 3.12.3
resolution: "@jupyterlab/rendermime-interfaces@npm:3.12.3"
dependencies:
"@lumino/coreutils": ^1.11.0 || ^2.2.1
"@lumino/widgets": ^1.37.2 || ^2.7.1
checksum: 182560f1ba710a996d886a64c9b035a4a9da3bf65460ab451d0b4b0c1d46cba1339b682446d67f408bce32ae631a7090fba041777d4c93621249300522b9172d
languageName: node
linkType: hard
"@jupyterlab/rendermime@npm:^4.4.3":
version: 4.4.3
resolution: "@jupyterlab/rendermime@npm:4.4.3"
dependencies:
"@jupyterlab/apputils": ^4.5.3
"@jupyterlab/coreutils": ^6.4.3
"@jupyterlab/nbformat": ^4.4.3
"@jupyterlab/observables": ^5.4.3
"@jupyterlab/rendermime-interfaces": ^3.12.3
"@jupyterlab/services": ^7.4.3
"@jupyterlab/translation": ^4.4.3
"@lumino/coreutils": ^2.2.1
"@lumino/messaging": ^2.0.3
"@lumino/signaling": ^2.1.4
"@lumino/widgets": ^2.7.1
lodash.escape: ^4.0.1
checksum: 9c1b62b4a9f446f8820203fe4e347753e02e22ba7d95cd52ca504884cc1ad20e7456e1be4f6ad7d6c790ebb8e6c80f67ce2faed6573259f94cbb422536ce5386
languageName: node
linkType: hard
"@jupyterlab/services@npm:^7.4.3":
version: 7.4.3
resolution: "@jupyterlab/services@npm:7.4.3"
dependencies:
"@jupyter/ydoc": ^3.0.4
"@jupyterlab/coreutils": ^6.4.3
"@jupyterlab/nbformat": ^4.4.3
"@jupyterlab/settingregistry": ^4.4.3
"@jupyterlab/statedb": ^4.4.3
"@lumino/coreutils": ^2.2.1
"@lumino/disposable": ^2.1.4
"@lumino/polling": ^2.1.4
"@lumino/properties": ^2.0.3
"@lumino/signaling": ^2.1.4
ws: ^8.11.0
checksum: 83c3e903c54e665e73d5beec7bf0de8785a124974eefce13b146fcd9afa5f353e5a379097d7913d87f92800097f95e104ce224061bd113776092d31bb07bd8b4
languageName: node
linkType: hard