-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathyarn.lock
More file actions
7136 lines (6431 loc) · 250 KB
/
yarn.lock
File metadata and controls
7136 lines (6431 loc) · 250 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
"@aashutoshrathi/word-wrap@npm:^1.2.3":
version: 1.2.6
resolution: "@aashutoshrathi/word-wrap@npm:1.2.6"
checksum: ada901b9e7c680d190f1d012c84217ce0063d8f5c5a7725bb91ec3c5ed99bb7572680eb2d2938a531ccbaec39a95422fcd8a6b4a13110c7d98dd75402f66a0cd
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0":
version: 7.22.10
resolution: "@babel/code-frame@npm:7.22.10"
dependencies:
"@babel/highlight": "npm:^7.22.10"
chalk: "npm:^2.4.2"
checksum: 89a06534ad19759da6203a71bad120b1d7b2ddc016c8e07d4c56b35dea25e7396c6da60a754e8532a86733092b131ae7f661dbe6ba5d165ea777555daa2ed3c9
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-validator-identifier@npm:7.22.5"
checksum: 7f0f30113474a28298c12161763b49de5018732290ca4de13cdaefd4fd0d635a6fe3f6686c37a02905fb1e64f21a5ee2b55140cf7b070e729f1bd66866506aea
languageName: node
linkType: hard
"@babel/highlight@npm:^7.22.10":
version: 7.22.10
resolution: "@babel/highlight@npm:7.22.10"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.22.5"
chalk: "npm:^2.4.2"
js-tokens: "npm:^4.0.0"
checksum: f714a1e1a72dd9d72f6383f4f30fd342e21a8df32d984a4ea8f5eab691bb6ba6db2f8823d4b4cf135d98869e7a98925b81306aa32ee3c429f8cfa52c75889e1b
languageName: node
linkType: hard
"@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.3
resolution: "@codemirror/lang-javascript@npm:6.2.3"
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: c56407ddedc80e417dd105a39f11f837fad6fd4d91fe7934c61e48c54227350e4e8f940f81d26030a6c4ff9da16f734361cd1eaed63ba22aadf71fcf6172cbd5
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.0
resolution: "@codemirror/lang-python@npm:6.2.0"
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: 2326932a59af8c56dc4e8a621f542a59944b93d4e5f50b23dab65d15486cc7a59a6f5fe11595ac478974270084db4770942621dbd834021247f34f2d34063757
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.8.0
resolution: "@codemirror/lang-sql@npm:6.8.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: 1b5a3c8129b09f24039d8c0906fc4cb8d0f706a424a1d56721057bd1e647797c2b1240bb53eed9bf2bac5806a4e0363e555a3963f04c478efa05829890c537f7
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.0
resolution: "@codemirror/language@npm:6.11.0"
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: 5556dc163d5bd1d771a4f64e2750d3d1dc1f39030bc6e4b9a4704e4de7501e8d3511002e0f8f96cd8deef782730e0b49b576e30f0ea820e1c632995bd75caddd
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.10
resolution: "@codemirror/search@npm:6.5.10"
dependencies:
"@codemirror/state": ^6.0.0
"@codemirror/view": ^6.0.0
crelt: ^1.0.5
checksum: a30048004ce7cc1ee77a7618485ab5399939eab72b64329d57be98245ea39cb68ba54ad944ee679cc2aeac5bf9f202b2073ad0916f0788497fb64a07073399e8
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.36.7
resolution: "@codemirror/view@npm:6.36.7"
dependencies:
"@codemirror/state": ^6.5.0
style-mod: ^4.1.0
w3c-keyname: ^2.2.4
checksum: aac0bf5e0dc244a9a4bbfab8f0ded042d776fc3c3e2ba42bad9fa2357d814e2c95636b792d582290a15c1ec9bb30e186616f07dc24dd8278da9f10721a0b469d
languageName: node
linkType: hard
"@csstools/css-parser-algorithms@npm:^2.3.0":
version: 2.3.1
resolution: "@csstools/css-parser-algorithms@npm:2.3.1"
peerDependencies:
"@csstools/css-tokenizer": ^2.2.0
checksum: 90c6aa391ff817b0fc2ae20b9cc5e3308e3906536d83c8eeb502171ec709730a2cd0458eb7646378f74db545c9079fd026e125dbdbe26030652f9466bacc1183
languageName: node
linkType: hard
"@csstools/css-tokenizer@npm:^2.1.1":
version: 2.2.0
resolution: "@csstools/css-tokenizer@npm:2.2.0"
checksum: d6b3ead496e187cbf89b5e08a55be7a8393676c2b93526f7f051418376d08146f9f533708aca5eec6a07d925ea6a7e65b0e0bb36aabeba657666e968b8d89cd0
languageName: node
linkType: hard
"@csstools/media-query-list-parser@npm:^2.1.2":
version: 2.1.4
resolution: "@csstools/media-query-list-parser@npm:2.1.4"
peerDependencies:
"@csstools/css-parser-algorithms": ^2.3.1
"@csstools/css-tokenizer": ^2.2.0
checksum: 8fa5be6acea01af39f49e08b2f2e2f7f54c2881c2c8a7a8cc783f8668610404398e81f86092f44ae64914d0f7626a5177d721ce5d1858b1599b26c91687f311e
languageName: node
linkType: hard
"@csstools/selector-specificity@npm:^3.0.0":
version: 3.0.0
resolution: "@csstools/selector-specificity@npm:3.0.0"
peerDependencies:
postcss-selector-parser: ^6.0.13
checksum: 4a2dfe69998a499155d9dab4c2a0e7ae7594d8db98bb8a487d2d5347c0c501655051eb5eacad3fe323c86b0ba8212fe092c27fc883621e6ac2a27662edfc3528
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
"@es-joy/jsdoccomment@npm:~0.31.0":
version: 0.31.0
resolution: "@es-joy/jsdoccomment@npm:0.31.0"
dependencies:
comment-parser: "npm:1.3.1"
esquery: "npm:^1.4.0"
jsdoc-type-pratt-parser: "npm:~3.1.0"
checksum: 1691ff501559f45593e5f080d2c08dea4fadba5f48e526b9ff2943c050fbb40408f5e83968542e5b6bf47219c7573796d00bfe80dacfd1ba8187904cc475cefb
languageName: node
linkType: hard
"@eslint-community/eslint-utils@npm:^4.2.0, @eslint-community/eslint-utils@npm:^4.4.0":
version: 4.4.0
resolution: "@eslint-community/eslint-utils@npm:4.4.0"
dependencies:
eslint-visitor-keys: "npm:^3.3.0"
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
checksum: cdfe3ae42b4f572cbfb46d20edafe6f36fc5fb52bf2d90875c58aefe226892b9677fef60820e2832caf864a326fe4fc225714c46e8389ccca04d5f9288aabd22
languageName: node
linkType: hard
"@eslint-community/regexpp@npm:^4.5.1, @eslint-community/regexpp@npm:^4.6.1":
version: 4.6.2
resolution: "@eslint-community/regexpp@npm:4.6.2"
checksum: a3c341377b46b54fa228f455771b901d1a2717f95d47dcdf40199df30abc000ba020f747f114f08560d119e979d882a94cf46cfc51744544d54b00319c0f2724
languageName: node
linkType: hard
"@eslint/eslintrc@npm:^2.1.1":
version: 2.1.1
resolution: "@eslint/eslintrc@npm:2.1.1"
dependencies:
ajv: "npm:^6.12.4"
debug: "npm:^4.3.2"
espree: "npm:^9.6.0"
globals: "npm:^13.19.0"
ignore: "npm:^5.2.0"
import-fresh: "npm:^3.2.1"
js-yaml: "npm:^4.1.0"
minimatch: "npm:^3.1.2"
strip-json-comments: "npm:^3.1.1"
checksum: bf909ea183d27238c257a82d4ffdec38ca94b906b4b8dfae02ecbe7ecc9e5a8182ef5e469c808bb8cb4fea4750f43ac4ca7c4b4a167b6cd7e3aaacd386b2bd25
languageName: node
linkType: hard
"@eslint/js@npm:^8.46.0":
version: 8.46.0
resolution: "@eslint/js@npm:8.46.0"
checksum: 7aed479832302882faf5bec37e9d068f270f84c19b3fb529646a7c1b031e73a312f730569c78806492bc09cfce3d7651dfab4ce09a56cbb06bc6469449e56377
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
"@humanwhocodes/config-array@npm:^0.11.10":
version: 0.11.10
resolution: "@humanwhocodes/config-array@npm:0.11.10"
dependencies:
"@humanwhocodes/object-schema": "npm:^1.2.1"
debug: "npm:^4.1.1"
minimatch: "npm:^3.0.5"
checksum: 1b1302e2403d0e35bc43e66d67a2b36b0ad1119efc704b5faff68c41f791a052355b010fb2d27ef022670f550de24cd6d08d5ecf0821c16326b7dcd0ee5d5d8a
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
"@isaacs/cliui@npm:^8.0.2":
version: 8.0.2
resolution: "@isaacs/cliui@npm:8.0.2"
dependencies:
string-width: "npm:^5.1.2"
string-width-cjs: "npm:string-width@^4.2.0"
strip-ansi: "npm:^7.0.1"
strip-ansi-cjs: "npm:strip-ansi@^6.0.1"
wrap-ansi: "npm:^8.1.0"
wrap-ansi-cjs: "npm:wrap-ansi@^7.0.0"
checksum: 4a473b9b32a7d4d3cfb7a614226e555091ff0c5a29a1734c28c72a182c2f6699b26fc6b5c2131dfd841e86b185aea714c72201d7c98c2fba5f17709333a67aeb
languageName: node
linkType: hard
"@jridgewell/gen-mapping@npm:^0.3.0":
version: 0.3.2
resolution: "@jridgewell/gen-mapping@npm:0.3.2"
dependencies:
"@jridgewell/set-array": "npm:^1.0.1"
"@jridgewell/sourcemap-codec": "npm:^1.4.10"
"@jridgewell/trace-mapping": "npm:^0.3.9"
checksum: 1832707a1c476afebe4d0fbbd4b9434fdb51a4c3e009ab1e9938648e21b7a97049fa6009393bdf05cab7504108413441df26d8a3c12193996e65493a4efb6882
languageName: node
linkType: hard
"@jridgewell/resolve-uri@npm:^3.1.0":
version: 3.1.1
resolution: "@jridgewell/resolve-uri@npm:3.1.1"
checksum: f5b441fe7900eab4f9155b3b93f9800a916257f4e8563afbcd3b5a5337b55e52bd8ae6735453b1b745457d9f6cdb16d74cd6220bbdd98cf153239e13f6cbb653
languageName: node
linkType: hard
"@jridgewell/set-array@npm:^1.0.1":
version: 1.1.2
resolution: "@jridgewell/set-array@npm:1.1.2"
checksum: 69a84d5980385f396ff60a175f7177af0b8da4ddb81824cb7016a9ef914eee9806c72b6b65942003c63f7983d4f39a5c6c27185bbca88eb4690b62075602e28e
languageName: node
linkType: hard
"@jridgewell/source-map@npm:^0.3.3":
version: 0.3.5
resolution: "@jridgewell/source-map@npm:0.3.5"
dependencies:
"@jridgewell/gen-mapping": "npm:^0.3.0"
"@jridgewell/trace-mapping": "npm:^0.3.9"
checksum: 1ad4dec0bdafbade57920a50acec6634f88a0eb735851e0dda906fa9894e7f0549c492678aad1a10f8e144bfe87f238307bf2a914a1bc85b7781d345417e9f6f
languageName: node
linkType: hard
"@jridgewell/sourcemap-codec@npm:^1.4.10, @jridgewell/sourcemap-codec@npm:^1.4.14":
version: 1.4.15
resolution: "@jridgewell/sourcemap-codec@npm:1.4.15"
checksum: b881c7e503db3fc7f3c1f35a1dd2655a188cc51a3612d76efc8a6eb74728bef5606e6758ee77423e564092b4a518aba569bbb21c9bac5ab7a35b0c6ae7e344c8
languageName: node
linkType: hard
"@jridgewell/trace-mapping@npm:^0.3.17, @jridgewell/trace-mapping@npm:^0.3.9":
version: 0.3.19
resolution: "@jridgewell/trace-mapping@npm:0.3.19"
dependencies:
"@jridgewell/resolve-uri": "npm:^3.1.0"
"@jridgewell/sourcemap-codec": "npm:^1.4.14"
checksum: 956a6f0f6fec060fb48c6bf1f5ec2064e13cd38c8be3873877d4b92b4a27ba58289a34071752671262a3e3c202abcc3fa2aac64d8447b4b0fa1ba3c9047f1c20
languageName: node
linkType: hard
"@jridgewell/trace-mapping@npm:^0.3.20":
version: 0.3.25
resolution: "@jridgewell/trace-mapping@npm:0.3.25"
dependencies:
"@jridgewell/resolve-uri": "npm:^3.1.0"
"@jridgewell/sourcemap-codec": "npm:^1.4.14"
checksum: 9d3c40d225e139987b50c48988f8717a54a8c994d8a948ee42e1412e08988761d0754d7d10b803061cc3aebf35f92a5dbbab493bd0e1a9ef9e89a2130e83ba34
languageName: node
linkType: hard
"@jupyter-widgets/base@npm:^1 || ^2 || ^3 || ^4 || ^5 || ^6.0.5 || ^7 || ^8, @jupyter-widgets/base@npm:^6.0.11":
version: 6.0.11
resolution: "@jupyter-widgets/base@npm:6.0.11"
dependencies:
"@jupyterlab/services": ^6 || ^7
"@lumino/coreutils": ^1 || ^2
"@lumino/messaging": ^1 || ^2
"@lumino/widgets": ^1 || ^2
"@types/backbone": 1.4.14
"@types/lodash": ^4.14.134
backbone: 1.4.0
jquery: ^3.1.1
lodash: ^4.17.4
checksum: 7ec558edd5519e76a4e1a6d5209927b34f19d4e4a3b76a4dba89f67784dd50fef8b536cd15694576fa1930e3c92822c7565ddb47d1b558444c596af24b78790b
languageName: node
linkType: hard
"@jupyter-widgets/controls@npm:^3 || ^4 || ^5 || ^7 || ^8":
version: 5.0.12
resolution: "@jupyter-widgets/controls@npm:5.0.12"
dependencies:
"@jupyter-widgets/base": ^6.0.11
"@lumino/algorithm": ^1 || ^2
"@lumino/domutils": ^1 || ^2
"@lumino/messaging": ^1 || ^2
"@lumino/signaling": ^1 || ^2
"@lumino/widgets": ^1 || ^2
d3-color: ^3.0.1
d3-format: ^3.0.1
jquery: ^3.1.1
nouislider: 15.4.0
checksum: 057a973b81dcfeb55d1f6bea4da984679b32df2dde670bab49864cd4884c923cd7e83e51f13f2a44e91a54da430514900c2d2a88447cb9509acb980ae9fb0304
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.1":
version: 4.4.2
resolution: "@jupyterlab/application@npm:4.4.2"
dependencies:
"@fortawesome/fontawesome-free": ^5.12.0
"@jupyterlab/apputils": ^4.5.2
"@jupyterlab/coreutils": ^6.4.2
"@jupyterlab/docregistry": ^4.4.2
"@jupyterlab/rendermime": ^4.4.2
"@jupyterlab/rendermime-interfaces": ^3.12.2
"@jupyterlab/services": ^7.4.2
"@jupyterlab/statedb": ^4.4.2
"@jupyterlab/translation": ^4.4.2
"@jupyterlab/ui-components": ^4.4.2
"@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: c67840bcf9e82c42f70418bff9f9fdbf75bcf28a1017a0d78618d11ac4ea5f024f086c8c51621e861434c41aad89aa70e25bf46adf1b713f01707a1273e7d666
languageName: node
linkType: hard
"@jupyterlab/apputils@npm:^4.1, @jupyterlab/apputils@npm:^4.5.2":
version: 4.5.2
resolution: "@jupyterlab/apputils@npm:4.5.2"
dependencies:
"@jupyterlab/coreutils": ^6.4.2
"@jupyterlab/observables": ^5.4.2
"@jupyterlab/rendermime-interfaces": ^3.12.2
"@jupyterlab/services": ^7.4.2
"@jupyterlab/settingregistry": ^4.4.2
"@jupyterlab/statedb": ^4.4.2
"@jupyterlab/statusbar": ^4.4.2
"@jupyterlab/translation": ^4.4.2
"@jupyterlab/ui-components": ^4.4.2
"@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: db58c8c947ade2fe5d277c14aed332628c78bd621d374feb99de76111b8993c01249e8789334014547bde03c01ff914f2f1c6ef7afc56c9b10152061ab81fc26
languageName: node
linkType: hard
"@jupyterlab/attachments@npm:^4.4.2":
version: 4.4.2
resolution: "@jupyterlab/attachments@npm:4.4.2"
dependencies:
"@jupyterlab/nbformat": ^4.4.2
"@jupyterlab/observables": ^5.4.2
"@jupyterlab/rendermime": ^4.4.2
"@jupyterlab/rendermime-interfaces": ^3.12.2
"@lumino/disposable": ^2.1.4
"@lumino/signaling": ^2.1.4
checksum: 927979d7ce8e30ed407576da4fa55545bda75ea0c3bfed2240ec7fe154dbe1e857650a3d7c936b16eb1fa1eb3defc04b6fdcc42e52d1c5e7816bb4d46cafc17b
languageName: node
linkType: hard
"@jupyterlab/builder@npm:^4.0.0":
version: 4.0.4
resolution: "@jupyterlab/builder@npm:4.0.4"
dependencies:
"@lumino/algorithm": "npm:^2.0.0"
"@lumino/application": "npm:^2.1.1"
"@lumino/commands": "npm:^2.1.1"
"@lumino/coreutils": "npm:^2.1.1"
"@lumino/disposable": "npm:^2.1.1"
"@lumino/domutils": "npm:^2.0.0"
"@lumino/dragdrop": "npm:^2.1.1"
"@lumino/messaging": "npm:^2.0.0"
"@lumino/properties": "npm:^2.0.0"
"@lumino/signaling": "npm:^2.1.1"
"@lumino/virtualdom": "npm:^2.0.0"
"@lumino/widgets": "npm:^2.1.1"
ajv: "npm:^8.12.0"
commander: "npm:^9.4.1"
css-loader: "npm:^6.7.1"
duplicate-package-checker-webpack-plugin: "npm:^3.0.0"
fs-extra: "npm:^10.1.0"
glob: "npm:~7.1.6"
license-webpack-plugin: "npm:^2.3.14"
mini-css-extract-plugin: "npm:^2.7.0"
mini-svg-data-uri: "npm:^1.4.4"
path-browserify: "npm:^1.0.0"
process: "npm:^0.11.10"
source-map-loader: "npm:~1.0.2"
style-loader: "npm:~3.3.1"
supports-color: "npm:^7.2.0"
terser-webpack-plugin: "npm:^5.3.7"
webpack: "npm:^5.76.1"
webpack-cli: "npm:^5.0.1"
webpack-merge: "npm:^5.8.0"
worker-loader: "npm:^3.0.2"
bin:
build-labextension: lib/build-labextension.js
checksum: 0e85e3d0f0cc458e34dad4a4dcfdd047d8c59b206b69c972ec5223c98b2b82265cf59594e9e426a288dca945708b79218b8c686f6b9efef47dba5e263f0ab7c9
languageName: node
linkType: hard
"@jupyterlab/cells@npm:^4.1, @jupyterlab/cells@npm:^4.4.2":
version: 4.4.2
resolution: "@jupyterlab/cells@npm:4.4.2"
dependencies:
"@codemirror/state": ^6.5.2
"@codemirror/view": ^6.36.6
"@jupyter/ydoc": ^3.0.4
"@jupyterlab/apputils": ^4.5.2
"@jupyterlab/attachments": ^4.4.2
"@jupyterlab/codeeditor": ^4.4.2
"@jupyterlab/codemirror": ^4.4.2
"@jupyterlab/coreutils": ^6.4.2
"@jupyterlab/documentsearch": ^4.4.2
"@jupyterlab/filebrowser": ^4.4.2
"@jupyterlab/nbformat": ^4.4.2
"@jupyterlab/observables": ^5.4.2
"@jupyterlab/outputarea": ^4.4.2
"@jupyterlab/rendermime": ^4.4.2
"@jupyterlab/services": ^7.4.2
"@jupyterlab/toc": ^6.4.2
"@jupyterlab/translation": ^4.4.2
"@jupyterlab/ui-components": ^4.4.2
"@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: b847a66159f2cb30b50e5d26a4b980ca8b1849cb2ec8ef10ff7d2d9d04d874f1de5093c07606c21c4eb9495dd5be4eb6380bb6361f792829b6ea194aa3ee7dd4
languageName: node
linkType: hard
"@jupyterlab/codeeditor@npm:^4.4.2":
version: 4.4.2
resolution: "@jupyterlab/codeeditor@npm:4.4.2"
dependencies:
"@codemirror/state": ^6.5.2
"@jupyter/ydoc": ^3.0.4
"@jupyterlab/apputils": ^4.5.2
"@jupyterlab/coreutils": ^6.4.2
"@jupyterlab/nbformat": ^4.4.2
"@jupyterlab/observables": ^5.4.2
"@jupyterlab/statusbar": ^4.4.2
"@jupyterlab/translation": ^4.4.2
"@jupyterlab/ui-components": ^4.4.2
"@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: 377d37d9a401741b29f5d385eddb569683026b2a3a357b4119f287167424fe8591723d2c590ecfb605024e3965b9088c92a9105a8f7685bc45a96311864f394e
languageName: node
linkType: hard
"@jupyterlab/codemirror@npm:^4.4.2":
version: 4.4.2
resolution: "@jupyterlab/codemirror@npm:4.4.2"
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.2
"@jupyterlab/coreutils": ^6.4.2
"@jupyterlab/documentsearch": ^4.4.2
"@jupyterlab/nbformat": ^4.4.2
"@jupyterlab/translation": ^4.4.2
"@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: 659a3e1ea5987b4d87c664af409fd40702d8c8109996850b2048e760e7239122d9cc9e4996ca4580069642239215a2964b7d54ca3d85252497dc241f49e765e2
languageName: node
linkType: hard
"@jupyterlab/coreutils@npm:^6.4.2":
version: 6.4.2
resolution: "@jupyterlab/coreutils@npm:6.4.2"
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: 09c65831a4a9130f2258e511eb7188ecf00052c32730425041eacbe7ebdbbf51822acbe23a46e0b267912ca07b4664580204f394379f1449bed11d1ec99cf2d1
languageName: node
linkType: hard
"@jupyterlab/docmanager@npm:^4.4.2":
version: 4.4.2
resolution: "@jupyterlab/docmanager@npm:4.4.2"
dependencies:
"@jupyterlab/apputils": ^4.5.2
"@jupyterlab/coreutils": ^6.4.2
"@jupyterlab/docregistry": ^4.4.2
"@jupyterlab/services": ^7.4.2
"@jupyterlab/statedb": ^4.4.2
"@jupyterlab/statusbar": ^4.4.2
"@jupyterlab/translation": ^4.4.2
"@jupyterlab/ui-components": ^4.4.2
"@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: 1876483c3dccbea2207d624d70227d397469085328a1cdca69a2a3856807ee0a8ca6b03e7a214d767a4b82fa10eb02bb1d9c31d68dc4a378405aa3889f28602f
languageName: node
linkType: hard
"@jupyterlab/docregistry@npm:^4.4.2":
version: 4.4.2
resolution: "@jupyterlab/docregistry@npm:4.4.2"
dependencies:
"@jupyter/ydoc": ^3.0.4
"@jupyterlab/apputils": ^4.5.2
"@jupyterlab/codeeditor": ^4.4.2
"@jupyterlab/coreutils": ^6.4.2
"@jupyterlab/observables": ^5.4.2
"@jupyterlab/rendermime": ^4.4.2
"@jupyterlab/rendermime-interfaces": ^3.12.2
"@jupyterlab/services": ^7.4.2
"@jupyterlab/translation": ^4.4.2
"@jupyterlab/ui-components": ^4.4.2
"@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: 6066e23ba8dfb468d00021f68306b97baf5bd0825ec82585b9c98a8b456d1a1133bce2842cd62b4ca9dcf9c0e8cf84963afedeab1ae0f67df7fc829dc758c1da
languageName: node
linkType: hard
"@jupyterlab/documentsearch@npm:^4.4.2":
version: 4.4.2
resolution: "@jupyterlab/documentsearch@npm:4.4.2"
dependencies:
"@jupyterlab/apputils": ^4.5.2
"@jupyterlab/translation": ^4.4.2
"@jupyterlab/ui-components": ^4.4.2
"@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: 80552b308f9ec4d5ba7ef7d55fe38a2aa0f443e05c7e92743a4a55797358e612339982c75b5f78b6948d81925db2ac102ff96601081aabe6af51e595ac6719cf
languageName: node
linkType: hard
"@jupyterlab/filebrowser@npm:^4.4.2":
version: 4.4.2
resolution: "@jupyterlab/filebrowser@npm:4.4.2"
dependencies:
"@jupyterlab/apputils": ^4.5.2
"@jupyterlab/coreutils": ^6.4.2
"@jupyterlab/docmanager": ^4.4.2
"@jupyterlab/docregistry": ^4.4.2
"@jupyterlab/services": ^7.4.2
"@jupyterlab/statedb": ^4.4.2
"@jupyterlab/statusbar": ^4.4.2
"@jupyterlab/translation": ^4.4.2
"@jupyterlab/ui-components": ^4.4.2
"@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: 8e1d05199ceab15455a080a2d13407bcafdd99cae5cce18551456d3a80fdf308790da72954f9a299449225398ae9d388ba632c1eae2b7a3a4e0c354a17a48c56
languageName: node
linkType: hard
"@jupyterlab/lsp@npm:^4.4.2":
version: 4.4.2
resolution: "@jupyterlab/lsp@npm:4.4.2"
dependencies:
"@jupyterlab/apputils": ^4.5.2
"@jupyterlab/codeeditor": ^4.4.2
"@jupyterlab/codemirror": ^4.4.2
"@jupyterlab/coreutils": ^6.4.2
"@jupyterlab/docregistry": ^4.4.2
"@jupyterlab/services": ^7.4.2
"@jupyterlab/translation": ^4.4.2
"@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: 024ed9170f0a8df0c7a0cb0c956898c6f96eee48d58a48d0287cc9da883136ffc16906ea2f12127dba714aa358c0b73cf548054475094fd0f3801f19ed353330
languageName: node
linkType: hard
"@jupyterlab/mainmenu@npm:^4.1":
version: 4.4.2
resolution: "@jupyterlab/mainmenu@npm:4.4.2"
dependencies:
"@jupyterlab/apputils": ^4.5.2
"@jupyterlab/translation": ^4.4.2
"@jupyterlab/ui-components": ^4.4.2
"@lumino/algorithm": ^2.0.3
"@lumino/commands": ^2.3.2
"@lumino/coreutils": ^2.2.1
"@lumino/widgets": ^2.7.1
checksum: b08128fee6af4edae7064113c58cba4cf09d0f220c42c7298b5d23668557564cc820943f504bccf979ef2884fc7075a9682deb2e91ae2cc1b19b139d8aa95452
languageName: node
linkType: hard
"@jupyterlab/nbformat@npm:^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0":
version: 4.0.4
resolution: "@jupyterlab/nbformat@npm:4.0.4"
dependencies:
"@lumino/coreutils": "npm:^2.1.1"
checksum: f7f6131018df1e3c80a3e55925b139a637dba90f81af017944495a19e63d6781b82ac863029576df8c75cfb3843335d73d7a0a5ac3d6208fc6b64fb3b014089c
languageName: node
linkType: hard
"@jupyterlab/nbformat@npm:^4.4.2":
version: 4.4.2
resolution: "@jupyterlab/nbformat@npm:4.4.2"
dependencies:
"@lumino/coreutils": ^2.2.1
checksum: fd000acfe69c4a3884dd503d090d36f6405a23b0a03b11ee1c0fccd8507f72b2b2310594d3097c7a3a732df1ed473346ba4fb001661e73e5477fc6bafdfc68d7
languageName: node
linkType: hard
"@jupyterlab/notebook@npm:^4.1":
version: 4.4.2
resolution: "@jupyterlab/notebook@npm:4.4.2"
dependencies:
"@jupyter/ydoc": ^3.0.4
"@jupyterlab/apputils": ^4.5.2
"@jupyterlab/cells": ^4.4.2
"@jupyterlab/codeeditor": ^4.4.2
"@jupyterlab/codemirror": ^4.4.2
"@jupyterlab/coreutils": ^6.4.2
"@jupyterlab/docregistry": ^4.4.2
"@jupyterlab/documentsearch": ^4.4.2
"@jupyterlab/lsp": ^4.4.2
"@jupyterlab/nbformat": ^4.4.2
"@jupyterlab/observables": ^5.4.2
"@jupyterlab/rendermime": ^4.4.2
"@jupyterlab/services": ^7.4.2
"@jupyterlab/settingregistry": ^4.4.2
"@jupyterlab/statusbar": ^4.4.2
"@jupyterlab/toc": ^6.4.2
"@jupyterlab/translation": ^4.4.2
"@jupyterlab/ui-components": ^4.4.2
"@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: 19896fa12a9144670733ba762a6e450a38015ced123c9a61047a8ab6c4281bb9a7e76e39f713b268706b78f3002ab1c19cc23c987041ee2c9ec1787fcdf708fb
languageName: node
linkType: hard
"@jupyterlab/observables@npm:^5.0.4":
version: 5.0.4
resolution: "@jupyterlab/observables@npm:5.0.4"
dependencies:
"@lumino/algorithm": "npm:^2.0.0"
"@lumino/coreutils": "npm:^2.1.1"
"@lumino/disposable": "npm:^2.1.1"
"@lumino/messaging": "npm:^2.0.0"
"@lumino/signaling": "npm:^2.1.1"