-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathyarn.lock
More file actions
7262 lines (6576 loc) · 248 KB
/
Copy pathyarn.lock
File metadata and controls
7262 lines (6576 loc) · 248 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
"@antfu/install-pkg@npm:^1.1.0":
version: 1.1.0
resolution: "@antfu/install-pkg@npm:1.1.0"
dependencies:
package-manager-detector: ^1.3.0
tinyexec: ^1.0.1
checksum: e20b7cd1c37eff832cc878cddd794f8c3779175681cf6d75c4cc1ae1475526126a4c1f71fa027161aa1ee35a8850782be9ca0ec01b621893defebe97ba9dc70e
languageName: node
linkType: hard
"@braintree/sanitize-url@npm:^7.1.2":
version: 7.1.2
resolution: "@braintree/sanitize-url@npm:7.1.2"
checksum: ca787264bbea2a3c02ce5cd5e08a1debf1ffff1c87b954ed2522d816fc3f3a9b93a5a55056dfe394d86c780ced35ee2fc06abbffd0f5f2e95264f7b62cb29d66
languageName: node
linkType: hard
"@chevrotain/types@npm:~11.1.2":
version: 11.1.2
resolution: "@chevrotain/types@npm:11.1.2"
checksum: 4c948b8559c94329bae5fa5b087e20ebfbac3fa73ff32ee7e3752716ab565da1c9efc2103eb1dbee2bf492d68231d4386836283f0bb7cca63f4185788808af70
languageName: node
linkType: hard
"@codemirror/autocomplete@npm:^6.0.0, @codemirror/autocomplete@npm:^6.20.0, @codemirror/autocomplete@npm:^6.3.2, @codemirror/autocomplete@npm:^6.7.1":
version: 6.20.2
resolution: "@codemirror/autocomplete@npm:6.20.2"
dependencies:
"@codemirror/language": ^6.0.0
"@codemirror/state": ^6.0.0
"@codemirror/view": ^6.17.0
"@lezer/common": ^1.0.0
checksum: 1c8f7604ddf1a46f7bdbbdf2c6ea7103bdf3152b20115fb3bb77002e3537fffc5aba93830b1f3ca494abdd8c6ed29274a6928f96c77e8768699145058e8a1ac3
languageName: node
linkType: hard
"@codemirror/commands@npm:^6.10.2":
version: 6.10.3
resolution: "@codemirror/commands@npm:6.10.3"
dependencies:
"@codemirror/language": ^6.0.0
"@codemirror/state": ^6.6.0
"@codemirror/view": ^6.27.0
"@lezer/common": ^1.1.0
checksum: 8a7c6583819989f553c00d3ea137c656d371d026d0bb8791b330f9a0b1c589285c8a944320f7418483f1c6d4381555fe1306680eaa9e9b93b0effd34665e1a4f
languageName: node
linkType: hard
"@codemirror/lang-cpp@npm:^6.0.3":
version: 6.0.3
resolution: "@codemirror/lang-cpp@npm:6.0.3"
dependencies:
"@codemirror/language": ^6.0.0
"@lezer/cpp": ^1.0.0
checksum: 982b9a9624367a0086520e1d499b7ad2fba2a14bdd57df88520bac279bd980e12154fd281659226fbcfa530edb5dd72edd114481365e6224bf53e97bc972f3b8
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.11":
version: 6.4.11
resolution: "@codemirror/lang-html@npm:6.4.11"
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.12
checksum: 31a16cc6be4daa58c6765274b9b7ba1bb54a4b0858d33d8ad1c7ec1bcb85920e3715a891f8cb27f5d9dfe87bbe00f0ddfbac5b04011374e15380b9cec7ba3c69
languageName: node
linkType: hard
"@codemirror/lang-java@npm:^6.0.2":
version: 6.0.2
resolution: "@codemirror/lang-java@npm:6.0.2"
dependencies:
"@codemirror/language": ^6.0.0
"@lezer/java": ^1.0.0
checksum: ed884f5e1a90c0d487bc4e5073c6154f3abf51b0b652c3d015e8cb322e171a38307427a85ecc16d5be82bd3243577e77e202325d84394a9c5ac356ee358c56c9
languageName: node
linkType: hard
"@codemirror/lang-javascript@npm:^6.0.0, @codemirror/lang-javascript@npm:^6.2.4":
version: 6.2.5
resolution: "@codemirror/lang-javascript@npm:6.2.5"
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: 4f8007b2cb75fbc08568a89b57ee2996ba38966c6662dd635b9b0990a6b3044b3ce189e6b1f103f277e0d814b2afd5957d4ab1eaae0955fdab58328fd5a7e067
languageName: node
linkType: hard
"@codemirror/lang-json@npm:^6.0.2":
version: 6.0.2
resolution: "@codemirror/lang-json@npm:6.0.2"
dependencies:
"@codemirror/language": ^6.0.0
"@lezer/json": ^1.0.0
checksum: ccdf71a4f339b9e40310c40c4677c31b8bf2284291becc056b7d5b30382107cd7ab65f1a3c108331c0fc7b5fc7ec2e3fe6e5029957ff978d7b7bfb759f68d921
languageName: node
linkType: hard
"@codemirror/lang-markdown@npm:^6.5.0":
version: 6.5.0
resolution: "@codemirror/lang-markdown@npm:6.5.0"
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: 15c6bf7eb800b73d77a2e202f08b2282230903d830111699f34a036e0ae334cf5edd65b29f45f138e305fb33a7a11f0ef111c2eaed948b10501e5e8deb7d6c47
languageName: node
linkType: hard
"@codemirror/lang-php@npm:^6.0.2":
version: 6.0.2
resolution: "@codemirror/lang-php@npm:6.0.2"
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: e0cb6287c5a8898dc5637dadfbbd591ed6c2aaef1fc4db1426646ab0f8e48e4c7254899fc9c1864ee1f1e917d5888e447d1ab87300d896de2b9472f5ad6a888d
languageName: node
linkType: hard
"@codemirror/lang-python@npm:^6.2.1":
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.2":
version: 6.0.2
resolution: "@codemirror/lang-rust@npm:6.0.2"
dependencies:
"@codemirror/language": ^6.0.0
"@lezer/rust": ^1.0.0
checksum: 4cb7528c723ec3f421bd82a5324c56d836f3675e3b28e2b2d3c9d251e8f206bf9d932d52696c310dca51d71644063441fb8330d5ad1278c68002f8598b4bc067
languageName: node
linkType: hard
"@codemirror/lang-sql@npm:^6.10.0":
version: 6.10.0
resolution: "@codemirror/lang-sql@npm:6.10.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: c37ba6778f5f34f174a387ff530f19844fccc1e5ff65c58205b8861c19b6e39e4b3298ec63f50bd6c860befba3491db40d0d20b463a77021a9e9f20979fa2369
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.12.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.12.3
resolution: "@codemirror/language@npm:6.12.3"
dependencies:
"@codemirror/state": ^6.0.0
"@codemirror/view": ^6.23.0
"@lezer/common": ^1.5.0
"@lezer/highlight": ^1.0.0
"@lezer/lr": ^1.0.0
style-mod: ^4.0.0
checksum: 338a063b2362d15aa55b7140072ff0e6a4adb5ece2e224f9b67744b140c2443b0282c79e546a484cf9e3c3f50e85d856fbac090f435952c64b606a2123d7a0dd
languageName: node
linkType: hard
"@codemirror/legacy-modes@npm:^6.5.2":
version: 6.5.2
resolution: "@codemirror/legacy-modes@npm:6.5.2"
dependencies:
"@codemirror/language": ^6.0.0
checksum: 2ae75e40d4357e65d0b3b1ebcb28a85a7700f8a39e5ae2dcc8dece00a4070a800d797c9297e7a4beb398d63e4c69c3e69992b4fb20ab84f748625c7590a82636
languageName: node
linkType: hard
"@codemirror/lint@npm:^6.0.0":
version: 6.9.6
resolution: "@codemirror/lint@npm:6.9.6"
dependencies:
"@codemirror/state": ^6.0.0
"@codemirror/view": ^6.42.0
crelt: ^1.0.5
checksum: 52510d190fc2e0a7244a5b2e4a83abc71943822690bb808c56505c996321ec33efa5f30a140ef42c9cee9877c67ff782ee78ebb1efb522e9fea714bb693acb4e
languageName: node
linkType: hard
"@codemirror/search@npm:^6.6.0":
version: 6.7.0
resolution: "@codemirror/search@npm:6.7.0"
dependencies:
"@codemirror/state": ^6.0.0
"@codemirror/view": ^6.37.0
crelt: ^1.0.5
checksum: 2abe3424738c02046f8720d02043c855c860d1a9a8210790cbe8e60ce87e1e461b64695ad5736bba78fc53a190c22d82a609dcbe02396d2089fce047e9a37d74
languageName: node
linkType: hard
"@codemirror/state@npm:^6.0.0, @codemirror/state@npm:^6.5.4, @codemirror/state@npm:^6.6.0":
version: 6.6.0
resolution: "@codemirror/state@npm:6.6.0"
dependencies:
"@marijn/find-cluster-break": ^1.0.0
checksum: 9400f356ebff7089f552012b95c8d46cdecc952cc9561537b7ebd7ea44fe34da7e02cfdcf17efc28fb6354bd54ecd9db7ca25b4756595acfe56c547c63cedee8
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.37.0, @codemirror/view@npm:^6.39.14, @codemirror/view@npm:^6.42.0":
version: 6.42.1
resolution: "@codemirror/view@npm:6.42.1"
dependencies:
"@codemirror/state": ^6.6.0
crelt: ^1.0.6
style-mod: ^4.1.0
w3c-keyname: ^2.2.4
checksum: 765dfe130a3ca29de06797b31ddf897c841ce19d6027deefaa0e098710a0350e5e1a12dbf04b3559f8fdfb44f1388f6aa8bf571a36b1c66d579653dc76b050e3
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.8.0, @eslint-community/eslint-utils@npm:^4.9.1":
version: 4.9.1
resolution: "@eslint-community/eslint-utils@npm:4.9.1"
dependencies:
eslint-visitor-keys: ^3.4.3
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
checksum: 0a27c2d676c4be6b329ebb5dd8f6c5ef5fae9a019ff575655306d72874bb26f3ab20e0b241a5f086464bb1f2511ca26a29ff6f80c1e2b0b02eca4686b4dfe1b5
languageName: node
linkType: hard
"@eslint-community/regexpp@npm:^4.12.1, @eslint-community/regexpp@npm:^4.12.2":
version: 4.12.2
resolution: "@eslint-community/regexpp@npm:4.12.2"
checksum: 1770bc81f676a72f65c7200b5675ff7a349786521f30e66125faaf767fde1ba1c19c3790e16ba8508a62a3933afcfc806a893858b3b5906faf693d862b9e4120
languageName: node
linkType: hard
"@eslint/config-array@npm:^0.21.2":
version: 0.21.2
resolution: "@eslint/config-array@npm:0.21.2"
dependencies:
"@eslint/object-schema": ^2.1.7
debug: ^4.3.1
minimatch: ^3.1.5
checksum: f3d6ba56d6a3dfc5400575011fb4ae5ac189c96b6ca4920adb6da2d084f9eaa28583fa0aa55e123c42baa2bd31f85228ee35a05c8a395b58fb8d976e16482697
languageName: node
linkType: hard
"@eslint/config-helpers@npm:^0.4.2":
version: 0.4.2
resolution: "@eslint/config-helpers@npm:0.4.2"
dependencies:
"@eslint/core": ^0.17.0
checksum: 63ff6a0730c9fff2edb80c89b39b15b28d6a635a1c3f32cf0d7eb3e2625f2efbc373c5531ae84e420ae36d6e37016dd40c365b6e5dee6938478e9907aaadae0b
languageName: node
linkType: hard
"@eslint/core@npm:^0.17.0":
version: 0.17.0
resolution: "@eslint/core@npm:0.17.0"
dependencies:
"@types/json-schema": ^7.0.15
checksum: ff9b5b4987f0bae4f2a4cfcdc7ae584ad3b0cb58526ca562fb281d6837700a04c7f3c86862e95126462318f33f60bf38e1cb07ed0e2449532d4b91cd5f4ab1f2
languageName: node
linkType: hard
"@eslint/eslintrc@npm:^3.3.5":
version: 3.3.5
resolution: "@eslint/eslintrc@npm:3.3.5"
dependencies:
ajv: ^6.14.0
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.1
minimatch: ^3.1.5
strip-json-comments: ^3.1.1
checksum: b1c0ac8938891f47a92ef662c790cc599f6562b06562f4035efd075f99c2b62eb4960ee0e2021d424942c8d1084665b581f3799d863c67979b269a8ccda48364
languageName: node
linkType: hard
"@eslint/js@npm:9.39.4, @eslint/js@npm:^9.0.0":
version: 9.39.4
resolution: "@eslint/js@npm:9.39.4"
checksum: 5b1cd1e6c13bc119c92911e6cef7cf886d942c9e047db0c923bbdd539ed6b9820d986b4559be1f2e24836de7fbad95bbfe268b2bf3d1fef76de37bdc8fae19d8
languageName: node
linkType: hard
"@eslint/object-schema@npm:^2.1.7":
version: 2.1.7
resolution: "@eslint/object-schema@npm:2.1.7"
checksum: fc5708f192476956544def13455d60fd1bafbf8f062d1e05ec5c06dd470b02078eaf721e696a8b31c1c45d2056723a514b941ae5eea1398cc7e38eba6711a775
languageName: node
linkType: hard
"@eslint/plugin-kit@npm:^0.4.1":
version: 0.4.1
resolution: "@eslint/plugin-kit@npm:0.4.1"
dependencies:
"@eslint/core": ^0.17.0
levn: ^0.4.1
checksum: 3f4492e02a3620e05d46126c5cfeff5f651ecf33466c8f88efb4812ae69db5f005e8c13373afabc070ecca7becd319b656d6670ad5093f05ca63c2a8841d99ba
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.2":
version: 0.19.2
resolution: "@humanfs/core@npm:0.19.2"
dependencies:
"@humanfs/types": ^0.15.0
checksum: cfcf57302dafe41eadd900b30da5e10f8b4e51fac635c834c03ae11933d1911c131ef3cfa3ff14c47b17dd23524180c69f50cfe0b68c152034c2f6ba0ec2ccae
languageName: node
linkType: hard
"@humanfs/node@npm:^0.16.6":
version: 0.16.8
resolution: "@humanfs/node@npm:0.16.8"
dependencies:
"@humanfs/core": ^0.19.2
"@humanfs/types": ^0.15.0
"@humanwhocodes/retry": ^0.4.0
checksum: 179d1dae12c5d1330c262b79b037e4db3e98d870f4827a56c1eb8a6bc32a6d2b4c32603a5b13c4f2e11882239276ed2a559cf465dfba33a3ac37bc7d9f5c1e9b
languageName: node
linkType: hard
"@humanfs/types@npm:^0.15.0":
version: 0.15.0
resolution: "@humanfs/types@npm:0.15.0"
checksum: fe8abe73e36ded7bf854addd48a5a7defe3aa77af9e92a95195bc6abd7d2a22c193bbac38d47982c198e2683e5108acba691cd859c4e1104b94d76651139e2da
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.4.0, @humanwhocodes/retry@npm:^0.4.2":
version: 0.4.3
resolution: "@humanwhocodes/retry@npm:0.4.3"
checksum: d423455b9d53cf01f778603404512a4246fb19b83e74fe3e28c70d9a80e9d4ae147d2411628907ca983e91a855a52535859a8bb218050bc3f6dbd7a553b7b442
languageName: node
linkType: hard
"@iconify/types@npm:^2.0.0":
version: 2.0.0
resolution: "@iconify/types@npm:2.0.0"
checksum: 029f58542c160e9d4a746869cf2e475b603424d3adf3994c5cc8d0406c47e6e04a3b898b2707840c1c5b9bd5563a1660a34b110d89fce43923baca5222f4e597
languageName: node
linkType: hard
"@iconify/utils@npm:^3.0.2":
version: 3.1.3
resolution: "@iconify/utils@npm:3.1.3"
dependencies:
"@antfu/install-pkg": ^1.1.0
"@iconify/types": ^2.0.0
import-meta-resolve: ^4.2.0
checksum: 63f43869a679185604ea1f65f8107532afe2e0e6aa4e1666d97885589ea95311b9bff0501ddbda4d239757b383f70b5291092fa2600a39a6b61771c525d4fa22
languageName: node
linkType: hard
"@jridgewell/gen-mapping@npm:^0.3.5":
version: 0.3.13
resolution: "@jridgewell/gen-mapping@npm:0.3.13"
dependencies:
"@jridgewell/sourcemap-codec": ^1.5.0
"@jridgewell/trace-mapping": ^0.3.24
checksum: f2105acefc433337145caa3c84bba286de954f61c0bc46279bbd85a9e6a02871089717fa060413cfb6a9d44189fe8313b2d1cabf3a2eb3284d208fd5f75c54ff
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/source-map@npm:^0.3.3":
version: 0.3.11
resolution: "@jridgewell/source-map@npm:0.3.11"
dependencies:
"@jridgewell/gen-mapping": ^0.3.5
"@jridgewell/trace-mapping": ^0.3.25
checksum: c8a0011cc67e701f270fa042e32b312f382c413bcc70ca9c03684687cbf5b64d5eed87d4afa36dddaabe60ab3da6db4935f878febd9cfc7f82724ea1a114d344
languageName: node
linkType: hard
"@jridgewell/sourcemap-codec@npm:^1.4.14, @jridgewell/sourcemap-codec@npm:^1.5.0":
version: 1.5.5
resolution: "@jridgewell/sourcemap-codec@npm:1.5.5"
checksum: c2e36e67971f719a8a3a85ef5a5f580622437cc723c35d03ebd0c9c0b06418700ef006f58af742791f71f6a4fc68fcfaf1f6a74ec2f9a3332860e9373459dae7
languageName: node
linkType: hard
"@jridgewell/trace-mapping@npm:^0.3.24, @jridgewell/trace-mapping@npm:^0.3.25":
version: 0.3.31
resolution: "@jridgewell/trace-mapping@npm:0.3.31"
dependencies:
"@jridgewell/resolve-uri": ^3.1.0
"@jridgewell/sourcemap-codec": ^1.4.14
checksum: af8fda2431348ad507fbddf8e25f5d08c79ecc94594061ce402cf41bc5aba1a7b3e59bf0fd70a619b35f33983a3f488ceeba8faf56bff784f98bb5394a8b7d47
languageName: node
linkType: hard
"@jupyter/eslint-plugin@npm:^1.0.1":
version: 1.0.1
resolution: "@jupyter/eslint-plugin@npm:1.0.1"
dependencies:
"@typescript-eslint/utils": ^8.54.0
jsonc-eslint-parser: ^2.4.0
peerDependencies:
eslint: ">=9.0.0"
checksum: 74d79d31ce8bf5d9ad597984953d9baef300314570162ed34a40a2105041fadeda4842be96dd949c57338f47e3ee403f0e6380a99d5bfb558e467634a143dcb2
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:^4.0.0":
version: 4.1.0
resolution: "@jupyter/ydoc@npm:4.1.0"
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: 33b41067157c694407de89d672f702ce725e8dea9051e9c21106a2462743641962f9b11c0495dcb9adfe09585b2e4456925f60e873b31547e4388cc2fb8543fc
languageName: node
linkType: hard
"@jupyterlab/application@npm:^4.6.0":
version: 4.6.0
resolution: "@jupyterlab/application@npm:4.6.0"
dependencies:
"@fortawesome/fontawesome-free": ^5.12.0
"@jupyterlab/apputils": ^4.7.0
"@jupyterlab/coreutils": ^6.6.0
"@jupyterlab/docregistry": ^4.6.0
"@jupyterlab/rendermime": ^4.6.0
"@jupyterlab/rendermime-interfaces": ^3.14.0
"@jupyterlab/services": ^7.6.0
"@jupyterlab/statedb": ^4.6.0
"@jupyterlab/translation": ^4.6.0
"@jupyterlab/ui-components": ^4.6.0
"@lumino/algorithm": ^2.0.4
"@lumino/application": ^2.4.9
"@lumino/commands": ^2.3.3
"@lumino/coreutils": ^2.2.2
"@lumino/disposable": ^2.1.5
"@lumino/messaging": ^2.0.4
"@lumino/polling": ^2.1.5
"@lumino/properties": ^2.0.4
"@lumino/signaling": ^2.1.5
"@lumino/widgets": ^2.8.0
checksum: 4d1f09c1363acf5a22d4a5b70c1a296e7a8347a73a620988fcfdcfe0dc80653beb70ab16bd7aba6cac6c2989af6d93b8bad8ab5480498bcbeeb643a33f95deb5
languageName: node
linkType: hard
"@jupyterlab/application@npm:^4.6.1":
version: 4.6.1
resolution: "@jupyterlab/application@npm:4.6.1"
dependencies:
"@fortawesome/fontawesome-free": ^5.12.0
"@jupyterlab/apputils": ^4.7.1
"@jupyterlab/coreutils": ^6.6.1
"@jupyterlab/docregistry": ^4.6.1
"@jupyterlab/rendermime": ^4.6.1
"@jupyterlab/rendermime-interfaces": ^3.14.1
"@jupyterlab/services": ^7.6.1
"@jupyterlab/statedb": ^4.6.1
"@jupyterlab/translation": ^4.6.1
"@jupyterlab/ui-components": ^4.6.1
"@lumino/algorithm": ^2.0.4
"@lumino/application": ^2.4.9
"@lumino/commands": ^2.3.3
"@lumino/coreutils": ^2.2.2
"@lumino/disposable": ^2.1.5
"@lumino/messaging": ^2.0.4
"@lumino/polling": ^2.1.5
"@lumino/properties": ^2.0.4
"@lumino/signaling": ^2.1.5
"@lumino/widgets": ^2.8.0
checksum: 81d7b67bf693ba13bbecc2064fa6a0e143f79c6d01dbcb7d43b1ecdeeb1d8692e83e2253117a80fda7265eb342dc79354d1e4509278d116e53477bcd5d7c4c47
languageName: node
linkType: hard
"@jupyterlab/apputils@npm:^4.7.0, @jupyterlab/apputils@npm:^4.7.1":
version: 4.7.1
resolution: "@jupyterlab/apputils@npm:4.7.1"
dependencies:
"@jupyterlab/coreutils": ^6.6.1
"@jupyterlab/observables": ^5.6.1
"@jupyterlab/rendermime-interfaces": ^3.14.1
"@jupyterlab/services": ^7.6.1
"@jupyterlab/settingregistry": ^4.6.1
"@jupyterlab/statedb": ^4.6.1
"@jupyterlab/statusbar": ^4.6.1
"@jupyterlab/translation": ^4.6.1
"@jupyterlab/ui-components": ^4.6.1
"@lumino/algorithm": ^2.0.4
"@lumino/commands": ^2.3.3
"@lumino/coreutils": ^2.2.2
"@lumino/disposable": ^2.1.5
"@lumino/domutils": ^2.0.4
"@lumino/messaging": ^2.0.4
"@lumino/signaling": ^2.1.5
"@lumino/virtualdom": ^2.0.4
"@lumino/widgets": ^2.8.0
"@types/react": ^18.0.26
react: ^18.2.0
sanitize-html: ~2.12.1
checksum: 7ba96c72c62e28d239d9d048d6344cf40a1ff9015814a4cad4e8ea6d834d59ac2c88f588db12c9e3f3cee876dbff1873739e4301f4af3e740f61edfa4acbdeec
languageName: node
linkType: hard
"@jupyterlab/attachments@npm:^4.6.1":
version: 4.6.1
resolution: "@jupyterlab/attachments@npm:4.6.1"
dependencies:
"@jupyterlab/nbformat": ^4.6.1
"@jupyterlab/observables": ^5.6.1
"@jupyterlab/rendermime": ^4.6.1
"@jupyterlab/rendermime-interfaces": ^3.14.1
"@lumino/disposable": ^2.1.5
"@lumino/signaling": ^2.1.5
checksum: 100c5c4974e08f4d45422795f4266f97af81acfb478d1bcfc734b3f4d945912c50474035c4e546934858499d98c559a393b06a6a17dba56d3885c224caf6ee8d
languageName: node
linkType: hard
"@jupyterlab/builder@npm:^4.5.9":
version: 4.5.9
resolution: "@jupyterlab/builder@npm:4.5.9"
dependencies:
"@lumino/algorithm": ^2.0.4
"@lumino/application": ^2.4.8
"@lumino/commands": ^2.3.3
"@lumino/coreutils": ^2.2.2
"@lumino/disposable": ^2.1.5
"@lumino/domutils": ^2.0.4
"@lumino/dragdrop": ^2.1.8
"@lumino/messaging": ^2.0.4
"@lumino/properties": ^2.0.4
"@lumino/signaling": ^2.1.5
"@lumino/virtualdom": ^2.0.4
"@lumino/widgets": ^2.7.5
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: ^4.0.2
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
webpack-sources: ^3.4.1
worker-loader: ^3.0.2
bin:
build-labextension: lib/build-labextension.js
checksum: 9c4eecae1c4f4ec50f26227d68488590116a585e3c9b2f94d2913d73bafa1a32099f61df04d97ca5dd0c80a946fa573223179a9b4b5bd738d228d2ee2a6ffca7
languageName: node
linkType: hard
"@jupyterlab/cells@npm:^4.6.0":
version: 4.6.1
resolution: "@jupyterlab/cells@npm:4.6.1"
dependencies:
"@codemirror/state": ^6.5.4
"@codemirror/view": ^6.39.14
"@jupyter/ydoc": ^4.0.0
"@jupyterlab/apputils": ^4.7.1
"@jupyterlab/attachments": ^4.6.1
"@jupyterlab/codeeditor": ^4.6.1
"@jupyterlab/codemirror": ^4.6.1
"@jupyterlab/coreutils": ^6.6.1
"@jupyterlab/documentsearch": ^4.6.1
"@jupyterlab/filebrowser": ^4.6.1
"@jupyterlab/nbformat": ^4.6.1
"@jupyterlab/observables": ^5.6.1
"@jupyterlab/outputarea": ^4.6.1
"@jupyterlab/rendermime": ^4.6.1
"@jupyterlab/services": ^7.6.1
"@jupyterlab/toc": ^6.6.1
"@jupyterlab/translation": ^4.6.1
"@jupyterlab/ui-components": ^4.6.1
"@lumino/algorithm": ^2.0.4
"@lumino/coreutils": ^2.2.2
"@lumino/domutils": ^2.0.4
"@lumino/dragdrop": ^2.1.8
"@lumino/messaging": ^2.0.4
"@lumino/polling": ^2.1.5
"@lumino/signaling": ^2.1.5
"@lumino/virtualdom": ^2.0.4
"@lumino/widgets": ^2.8.0
react: ^18.2.0
checksum: ece4501df9b399dcb7cbcb1fe03235e424667f92b4189d56d3db7de86a22371808a3a19ad67ef880727f2ad54c1d59897d162d9c9eda559fdc06b711636b8069
languageName: node
linkType: hard
"@jupyterlab/codeeditor@npm:^4.6.0":
version: 4.6.0
resolution: "@jupyterlab/codeeditor@npm:4.6.0"
dependencies:
"@codemirror/state": ^6.5.4
"@jupyter/ydoc": ^4.0.0
"@jupyterlab/apputils": ^4.7.0
"@jupyterlab/coreutils": ^6.6.0
"@jupyterlab/nbformat": ^4.6.0
"@jupyterlab/observables": ^5.6.0
"@jupyterlab/statusbar": ^4.6.0
"@jupyterlab/translation": ^4.6.0
"@jupyterlab/ui-components": ^4.6.0
"@lumino/coreutils": ^2.2.2
"@lumino/disposable": ^2.1.5
"@lumino/dragdrop": ^2.1.8
"@lumino/messaging": ^2.0.4
"@lumino/signaling": ^2.1.5
"@lumino/widgets": ^2.8.0
react: ^18.2.0
checksum: eeed665653042729876b33b67a6d61d3847be3f2e5c1e206363460c79b3455d5f320182c9355bd9b90b79fd448796484fa9dfe29cd867ac14798b88d7c9b7a21
languageName: node
linkType: hard
"@jupyterlab/codeeditor@npm:^4.6.1":
version: 4.6.1
resolution: "@jupyterlab/codeeditor@npm:4.6.1"
dependencies:
"@codemirror/state": ^6.5.4
"@jupyter/ydoc": ^4.0.0
"@jupyterlab/apputils": ^4.7.1
"@jupyterlab/coreutils": ^6.6.1
"@jupyterlab/nbformat": ^4.6.1
"@jupyterlab/observables": ^5.6.1
"@jupyterlab/statusbar": ^4.6.1
"@jupyterlab/translation": ^4.6.1
"@jupyterlab/ui-components": ^4.6.1
"@lumino/coreutils": ^2.2.2
"@lumino/disposable": ^2.1.5
"@lumino/dragdrop": ^2.1.8
"@lumino/messaging": ^2.0.4
"@lumino/signaling": ^2.1.5
"@lumino/widgets": ^2.8.0
react: ^18.2.0
checksum: 05376408b3543bc23e4414f13b31851e0ba54d85d5e628ffbb53b773b8fbebc2d9e0fe9de5de00d786d5006e890fbdcd5d9ee7958bbd69c8ff0dfd99f5e3d50c
languageName: node
linkType: hard
"@jupyterlab/codemirror@npm:^4.6.0, @jupyterlab/codemirror@npm:^4.6.1":
version: 4.6.1
resolution: "@jupyterlab/codemirror@npm:4.6.1"
dependencies:
"@codemirror/autocomplete": ^6.20.0
"@codemirror/commands": ^6.10.2
"@codemirror/lang-cpp": ^6.0.3
"@codemirror/lang-css": ^6.3.1
"@codemirror/lang-html": ^6.4.11
"@codemirror/lang-java": ^6.0.2
"@codemirror/lang-javascript": ^6.2.4
"@codemirror/lang-json": ^6.0.2
"@codemirror/lang-markdown": ^6.5.0
"@codemirror/lang-php": ^6.0.2
"@codemirror/lang-python": ^6.2.1
"@codemirror/lang-rust": ^6.0.2
"@codemirror/lang-sql": ^6.10.0
"@codemirror/lang-wast": ^6.0.2
"@codemirror/lang-xml": ^6.1.0
"@codemirror/language": ^6.12.1
"@codemirror/legacy-modes": ^6.5.2
"@codemirror/search": ^6.6.0
"@codemirror/state": ^6.5.4
"@codemirror/view": ^6.39.14
"@jupyter/ydoc": ^4.0.0
"@jupyterlab/codeeditor": ^4.6.1
"@jupyterlab/coreutils": ^6.6.1
"@jupyterlab/documentsearch": ^4.6.1
"@jupyterlab/nbformat": ^4.6.1
"@jupyterlab/translation": ^4.6.1
"@lezer/common": ^1.2.1
"@lezer/generator": ^1.7.0
"@lezer/highlight": ^1.2.0
"@lezer/markdown": ^1.3.0
"@lumino/coreutils": ^2.2.2
"@lumino/disposable": ^2.1.5
"@lumino/signaling": ^2.1.5
yjs: ^13.5.40
checksum: 56530bfaa97deec826fbf2388c77e593fb90026779f6d77ef170bcabc0a7f23deea71658ad8aead7b5b41052a7f4fa4af82d468df62f95c14f47b8a3085f522e
languageName: node
linkType: hard
"@jupyterlab/console@npm:^4.6.0":
version: 4.6.0
resolution: "@jupyterlab/console@npm:4.6.0"
dependencies:
"@jupyter/ydoc": ^4.0.0
"@jupyterlab/apputils": ^4.7.0
"@jupyterlab/cells": ^4.6.0
"@jupyterlab/codeeditor": ^4.6.0
"@jupyterlab/codemirror": ^4.6.0
"@jupyterlab/coreutils": ^6.6.0
"@jupyterlab/nbformat": ^4.6.0
"@jupyterlab/observables": ^5.6.0
"@jupyterlab/rendermime": ^4.6.0
"@jupyterlab/services": ^7.6.0
"@jupyterlab/translation": ^4.6.0
"@jupyterlab/ui-components": ^4.6.0
"@lumino/coreutils": ^2.2.2
"@lumino/disposable": ^2.1.5
"@lumino/dragdrop": ^2.1.8
"@lumino/messaging": ^2.0.4
"@lumino/signaling": ^2.1.5
"@lumino/widgets": ^2.8.0
checksum: b3b21dcd24ccdb4667b07fd9523ef80c959c72f7a2bbe025494ac3607a385a83252d818e33bd2444c2ed33e5d3753bcc8faa93fbe229a76cf53b2d1ac97854a8
languageName: node
linkType: hard
"@jupyterlab/coreutils@npm:^6.6.0, @jupyterlab/coreutils@npm:^6.6.1":
version: 6.6.1
resolution: "@jupyterlab/coreutils@npm:6.6.1"
dependencies:
"@lumino/coreutils": ^2.2.2
"@lumino/disposable": ^2.1.5
"@lumino/signaling": ^2.1.5
minimist: ~1.2.0
path-browserify: ^1.0.0
url-parse: ~1.5.4
checksum: 870a6367caf237ed35ef8c50ca371970561da995c736de3d55be9fe5d656bba9c689da71ab4cec7fca18a72847d6a90394d1ab4dfa39fe9e954c843f700f9efa
languageName: node
linkType: hard
"@jupyterlab/docmanager@npm:^4.6.1":
version: 4.6.1
resolution: "@jupyterlab/docmanager@npm:4.6.1"
dependencies:
"@jupyterlab/apputils": ^4.7.1
"@jupyterlab/coreutils": ^6.6.1
"@jupyterlab/docregistry": ^4.6.1
"@jupyterlab/rendermime": ^4.6.1
"@jupyterlab/services": ^7.6.1
"@jupyterlab/statedb": ^4.6.1
"@jupyterlab/statusbar": ^4.6.1
"@jupyterlab/translation": ^4.6.1
"@jupyterlab/ui-components": ^4.6.1
"@lumino/algorithm": ^2.0.4
"@lumino/coreutils": ^2.2.2
"@lumino/disposable": ^2.1.5
"@lumino/messaging": ^2.0.4
"@lumino/polling": ^2.1.5
"@lumino/properties": ^2.0.4
"@lumino/signaling": ^2.1.5
"@lumino/widgets": ^2.8.0
react: ^18.2.0
checksum: 7359972b728f3e925a208df808923a83fb4204d756bf2569b5f9cc50759eb172379b2962a503d01a9e4be0994faee1a6408fef3dae95cdc813f0911541559d83
languageName: node
linkType: hard
"@jupyterlab/docregistry@npm:^4.6.0, @jupyterlab/docregistry@npm:^4.6.1":
version: 4.6.1
resolution: "@jupyterlab/docregistry@npm:4.6.1"
dependencies:
"@jupyter/ydoc": ^4.0.0
"@jupyterlab/apputils": ^4.7.1
"@jupyterlab/codeeditor": ^4.6.1
"@jupyterlab/coreutils": ^6.6.1
"@jupyterlab/observables": ^5.6.1
"@jupyterlab/rendermime": ^4.6.1
"@jupyterlab/rendermime-interfaces": ^3.14.1
"@jupyterlab/services": ^7.6.1
"@jupyterlab/translation": ^4.6.1
"@jupyterlab/ui-components": ^4.6.1
"@lumino/algorithm": ^2.0.4
"@lumino/coreutils": ^2.2.2
"@lumino/disposable": ^2.1.5
"@lumino/messaging": ^2.0.4
"@lumino/properties": ^2.0.4
"@lumino/signaling": ^2.1.5
"@lumino/widgets": ^2.8.0
react: ^18.2.0
checksum: 7d4f4e565cd9dd27d430dd56fc9dcfcca8210f7584effe9eb987583513e1d6abce8c3976ba652f93891c55499f7f5a7cc3ff8e4ddcaae4c066838799cce35826
languageName: node
linkType: hard
"@jupyterlab/documentsearch@npm:^4.6.0, @jupyterlab/documentsearch@npm:^4.6.1":
version: 4.6.1
resolution: "@jupyterlab/documentsearch@npm:4.6.1"
dependencies:
"@jupyterlab/apputils": ^4.7.1
"@jupyterlab/translation": ^4.6.1
"@jupyterlab/ui-components": ^4.6.1
"@lumino/commands": ^2.3.3
"@lumino/coreutils": ^2.2.2
"@lumino/disposable": ^2.1.5
"@lumino/messaging": ^2.0.4
"@lumino/polling": ^2.1.5
"@lumino/signaling": ^2.1.5
"@lumino/widgets": ^2.8.0
react: ^18.2.0
checksum: 7abfee563cee0905c2795d3e4acd850356344f4515495217f3257ff550b3ea93bc4b9c7cb096d52507f423757b829bc0cbe9a0c9505c4bf55a555ed2848902a4
languageName: node
linkType: hard
"@jupyterlab/filebrowser@npm:^4.6.1":
version: 4.6.1
resolution: "@jupyterlab/filebrowser@npm:4.6.1"
dependencies:
"@jupyterlab/apputils": ^4.7.1
"@jupyterlab/coreutils": ^6.6.1
"@jupyterlab/docmanager": ^4.6.1
"@jupyterlab/docregistry": ^4.6.1
"@jupyterlab/services": ^7.6.1
"@jupyterlab/statedb": ^4.6.1
"@jupyterlab/statusbar": ^4.6.1
"@jupyterlab/translation": ^4.6.1
"@jupyterlab/ui-components": ^4.6.1
"@lumino/algorithm": ^2.0.4
"@lumino/coreutils": ^2.2.2
"@lumino/disposable": ^2.1.5
"@lumino/domutils": ^2.0.4
"@lumino/dragdrop": ^2.1.8
"@lumino/messaging": ^2.0.4
"@lumino/polling": ^2.1.5
"@lumino/signaling": ^2.1.5
"@lumino/virtualdom": ^2.0.4
"@lumino/widgets": ^2.8.0
react: ^18.2.0
checksum: 111a8978938159baec6242a1d2e37d2b6f58fdb0db161be8d9c377c2a44010279e9cd7f5b623c3360ba3cdeed30f66c624da4bac1512c29edd8de063df8426c0
languageName: node
linkType: hard
"@jupyterlab/lsp@npm:^4.6.0":
version: 4.6.1
resolution: "@jupyterlab/lsp@npm:4.6.1"
dependencies:
"@jupyterlab/apputils": ^4.7.1
"@jupyterlab/codeeditor": ^4.6.1
"@jupyterlab/codemirror": ^4.6.1
"@jupyterlab/coreutils": ^6.6.1
"@jupyterlab/docregistry": ^4.6.1
"@jupyterlab/services": ^7.6.1
"@jupyterlab/translation": ^4.6.1
"@lumino/coreutils": ^2.2.2
"@lumino/disposable": ^2.1.5
"@lumino/signaling": ^2.1.5
"@lumino/widgets": ^2.8.0
lodash.mergewith: ^4.6.1
vscode-jsonrpc: ^8.2.0
vscode-languageserver-protocol: ^3.17.0
vscode-ws-jsonrpc: ~1.0.2
checksum: cc6b9906f4cbcb72794d1aa8f2cf8baeef30a3601becf0de61d5883063fe281e13ad03b705d6e365eef6d256d2c4ded48364d30e522d969c2ca0df09715d91fe
languageName: node
linkType: hard
"@jupyterlab/markedparser-extension@npm:^4.6.0":
version: 4.6.1
resolution: "@jupyterlab/markedparser-extension@npm:4.6.1"
dependencies:
"@jupyterlab/application": ^4.6.1
"@jupyterlab/codemirror": ^4.6.1
"@jupyterlab/coreutils": ^6.6.1
"@jupyterlab/mermaid": ^4.6.1
"@jupyterlab/rendermime": ^4.6.1
"@lumino/coreutils": ^2.2.2
marked: ^17.0.6
marked-gfm-heading-id: ^4.1.4
marked-mangle: ^1.1.13
checksum: 88e245a38d34fdc7fb54577fa93b563818f1f4ef91b5ca4ed2ad96c17d7e54920a887e8f193a28f124ba92671ba1b39489cba5623311681f729e0188ed8edc9c
languageName: node
linkType: hard
"@jupyterlab/mermaid@npm:^4.6.1":
version: 4.6.1
resolution: "@jupyterlab/mermaid@npm:4.6.1"
dependencies:
"@jupyterlab/apputils": ^4.7.1
"@jupyterlab/coreutils": ^6.6.1
"@jupyterlab/rendermime-interfaces": ^3.14.1
"@lumino/coreutils": ^2.2.2
"@lumino/widgets": ^2.8.0
"@mermaid-js/layout-elk": ^0.2.1
mermaid: ^11.15.0
checksum: 5347da92d354521adece12c0149134901406946b82cf49013b1f795f4c5fbcd69da781aafcf3f7f64be5428406c645b323223052ebf97f131d08e96041bce34d
languageName: node
linkType: hard