-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathyarn.lock
More file actions
6430 lines (5806 loc) · 221 KB
/
Copy pathyarn.lock
File metadata and controls
6430 lines (5806 loc) · 221 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
"@babel/code-frame@npm:7.12.11":
version: 7.12.11
resolution: "@babel/code-frame@npm:7.12.11"
dependencies:
"@babel/highlight": ^7.10.4
checksum: 3963eff3ebfb0e091c7e6f99596ef4b258683e4ba8a134e4e95f77afe85be5c931e184fff6435fb4885d12eba04a5e25532f7fbc292ca13b48e7da943474e2f3
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.12.13":
version: 7.29.7
resolution: "@babel/code-frame@npm:7.29.7"
dependencies:
"@babel/helper-validator-identifier": ^7.29.7
js-tokens: ^4.0.0
picocolors: ^1.1.1
checksum: 21b12fe2356e36f6cc3cd8a3721f878bfeea80ce38356979a0518b47b3aafdcc0bd263da75ccc9d51c64d40b1b6df00e768ce2446acb0b7cbec0ae8f905663ad
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.25.7, @babel/helper-validator-identifier@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/helper-validator-identifier@npm:7.29.7"
checksum: cc7779e96fe9c9478c96ca4bf04fc338b95b501aa5abe78178307dea282d4a5dc23d443efb12dde8e8c5636d03dd00e443532e6ed7f15fa7977349af1f87ba4d
languageName: node
linkType: hard
"@babel/highlight@npm:^7.10.4":
version: 7.25.7
resolution: "@babel/highlight@npm:7.25.7"
dependencies:
"@babel/helper-validator-identifier": ^7.25.7
chalk: ^2.4.2
js-tokens: ^4.0.0
picocolors: ^1.0.0
checksum: b6aa45c5bf7ecc16b8204bbed90335706131ac6cacb0f1bfb1b862ada3741539c913b56c9d26beb56cece0c231ffab36f66aa36aac6b04b32669c314705203f2
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.3
resolution: "@codemirror/autocomplete@npm:6.20.3"
dependencies:
"@codemirror/language": ^6.0.0
"@codemirror/state": ^6.0.0
"@codemirror/view": ^6.17.0
"@lezer/common": ^1.0.0
checksum: 872a0671363158e24087f7c2edcbd4435ebb4fb799c9f5ccb4589cf4dc34a80763dace4909a71d75a42c79b75a687ae129fae169c4f835ef8e4695a34e7e99ca
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.3
resolution: "@codemirror/legacy-modes@npm:6.5.3"
dependencies:
"@codemirror/language": ^6.0.0
checksum: d3666c1cf45d63046363ce62588a911d81c5e0e3fe107eb0bad77243edbadccc156e5847fc0b184d485f973f4f4819f507d626c3c4ae8960f4609813df0b5dd6
languageName: node
linkType: hard
"@codemirror/lint@npm:^6.0.0":
version: 6.8.2
resolution: "@codemirror/lint@npm:6.8.2"
dependencies:
"@codemirror/state": ^6.0.0
"@codemirror/view": ^6.0.0
crelt: ^1.0.5
checksum: 714fe911c2d600350ea8ca0f65ceb2de25ace511e71bf174a550ba0aefc9884ec4e099f0f500b55bfd0fccbd7fe3a342a0048ff5a49c8c20020ea16cc8bff3c3
languageName: node
linkType: hard
"@codemirror/search@npm:^6.6.0":
version: 6.7.1
resolution: "@codemirror/search@npm:6.7.1"
dependencies:
"@codemirror/state": ^6.0.0
"@codemirror/view": ^6.37.0
crelt: ^1.0.5
checksum: 47133260cc0f5f91785174608dec89717d44d5e81a9fa5000032bc4f6566f693c4f080f922c6db52a15fdb7da73e185093d3615ae934c0b5cfb56278f11a9148
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":
version: 6.43.1
resolution: "@codemirror/view@npm:6.43.1"
dependencies:
"@codemirror/state": ^6.6.0
crelt: ^1.0.6
style-mod: ^4.1.0
w3c-keyname: ^2.2.4
checksum: cd7c13da2a79b5e1373e47196f251e8184bfb2419bbfa2027d3cf9c55623f8f8c8c5ffae49697c80f82d095f97fed30b5edca1262623ace811e26c68cf1105f2
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/eslintrc@npm:^0.4.3":
version: 0.4.3
resolution: "@eslint/eslintrc@npm:0.4.3"
dependencies:
ajv: ^6.12.4
debug: ^4.1.1
espree: ^7.3.0
globals: ^13.9.0
ignore: ^4.0.6
import-fresh: ^3.2.1
js-yaml: ^3.13.1
minimatch: ^3.0.4
strip-json-comments: ^3.1.1
checksum: 03a7704150b868c318aab6a94d87a33d30dc2ec579d27374575014f06237ba1370ae11178db772f985ef680d469dc237e7b16a1c5d8edaaeb8c3733e7a95a6d3
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.5.0":
version: 0.5.0
resolution: "@humanwhocodes/config-array@npm:0.5.0"
dependencies:
"@humanwhocodes/object-schema": ^1.2.0
debug: ^4.1.1
minimatch: ^3.0.4
checksum: 44ee6a9f05d93dd9d5935a006b17572328ba9caff8002442f601736cbda79c580cc0f5a49ce9eb88fbacc5c3a6b62098357c2e95326cd17bb9f1a6c61d6e95e7
languageName: node
linkType: hard
"@humanwhocodes/object-schema@npm:^1.2.0":
version: 1.2.1
resolution: "@humanwhocodes/object-schema@npm:1.2.1"
checksum: a824a1ec31591231e4bad5787641f59e9633827d0a2eaae131a288d33c9ef0290bd16fda8da6f7c0fcb014147865d12118df10db57f27f41e20da92369fcb3f1
languageName: node
linkType: hard
"@jest/environment@npm:^29.7.0":
version: 29.7.0
resolution: "@jest/environment@npm:29.7.0"
dependencies:
"@jest/fake-timers": ^29.7.0
"@jest/types": ^29.6.3
"@types/node": "*"
jest-mock: ^29.7.0
checksum: 6fb398143b2543d4b9b8d1c6dbce83fa5247f84f550330604be744e24c2bd2178bb893657d62d1b97cf2f24baf85c450223f8237cccb71192c36a38ea2272934
languageName: node
linkType: hard
"@jest/fake-timers@npm:^29.7.0":
version: 29.7.0
resolution: "@jest/fake-timers@npm:29.7.0"
dependencies:
"@jest/types": ^29.6.3
"@sinonjs/fake-timers": ^10.0.2
"@types/node": "*"
jest-message-util: ^29.7.0
jest-mock: ^29.7.0
jest-util: ^29.7.0
checksum: caf2bbd11f71c9241b458d1b5a66cbe95debc5a15d96442444b5d5c7ba774f523c76627c6931cca5e10e76f0d08761f6f1f01a608898f4751a0eee54fc3d8d00
languageName: node
linkType: hard
"@jest/schemas@npm:^29.6.3":
version: 29.6.3
resolution: "@jest/schemas@npm:29.6.3"
dependencies:
"@sinclair/typebox": ^0.27.8
checksum: 910040425f0fc93cd13e68c750b7885590b8839066dfa0cd78e7def07bbb708ad869381f725945d66f2284de5663bbecf63e8fdd856e2ae6e261ba30b1687e93
languageName: node
linkType: hard
"@jest/types@npm:^29.6.3":
version: 29.6.3
resolution: "@jest/types@npm:29.6.3"
dependencies:
"@jest/schemas": ^29.6.3
"@types/istanbul-lib-coverage": ^2.0.0
"@types/istanbul-reports": ^3.0.0
"@types/node": "*"
"@types/yargs": ^17.0.8
chalk: ^4.0.0
checksum: a0bcf15dbb0eca6bdd8ce61a3fb055349d40268622a7670a3b2eb3c3dbafe9eb26af59938366d520b86907b9505b0f9b29b85cec11579a9e580694b87cd90fcc
languageName: node
linkType: hard
"@jridgewell/gen-mapping@npm:^0.3.5":
version: 0.3.5
resolution: "@jridgewell/gen-mapping@npm:0.3.5"
dependencies:
"@jridgewell/set-array": ^1.2.1
"@jridgewell/sourcemap-codec": ^1.4.10
"@jridgewell/trace-mapping": ^0.3.24
checksum: ff7a1764ebd76a5e129c8890aa3e2f46045109dabde62b0b6c6a250152227647178ff2069ea234753a690d8f3c4ac8b5e7b267bbee272bffb7f3b0a370ab6e52
languageName: node
linkType: hard
"@jridgewell/resolve-uri@npm:^3.1.0":
version: 3.1.2
resolution: "@jridgewell/resolve-uri@npm:3.1.2"
checksum: 83b85f72c59d1c080b4cbec0fef84528963a1b5db34e4370fa4bd1e3ff64a0d80e0cee7369d11d73c704e0286fb2865b530acac7a871088fbe92b5edf1000870
languageName: node
linkType: hard
"@jridgewell/set-array@npm:^1.2.1":
version: 1.2.1
resolution: "@jridgewell/set-array@npm:1.2.1"
checksum: 832e513a85a588f8ed4f27d1279420d8547743cc37fcad5a5a76fc74bb895b013dfe614d0eed9cb860048e6546b798f8f2652020b4b2ba0561b05caa8c654b10
languageName: node
linkType: hard
"@jridgewell/source-map@npm:^0.3.3":
version: 0.3.6
resolution: "@jridgewell/source-map@npm:0.3.6"
dependencies:
"@jridgewell/gen-mapping": ^0.3.5
"@jridgewell/trace-mapping": ^0.3.25
checksum: c9dc7d899397df95e3c9ec287b93c0b56f8e4453cd20743e2b9c8e779b1949bc3cccf6c01bb302779e46560eb45f62ea38d19fedd25370d814734268450a9f30
languageName: node
linkType: hard
"@jridgewell/sourcemap-codec@npm:^1.4.10, @jridgewell/sourcemap-codec@npm:^1.4.14":
version: 1.5.0
resolution: "@jridgewell/sourcemap-codec@npm:1.5.0"
checksum: 05df4f2538b3b0f998ea4c1cd34574d0feba216fa5d4ccaef0187d12abf82eafe6021cec8b49f9bb4d90f2ba4582ccc581e72986a5fcf4176ae0cfeb04cf52ec
languageName: node
linkType: hard
"@jridgewell/trace-mapping@npm:^0.3.20, @jridgewell/trace-mapping@npm:^0.3.24, @jridgewell/trace-mapping@npm:^0.3.25":
version: 0.3.25
resolution: "@jridgewell/trace-mapping@npm:0.3.25"
dependencies:
"@jridgewell/resolve-uri": ^3.1.0
"@jridgewell/sourcemap-codec": ^1.4.14
checksum: 9d3c40d225e139987b50c48988f8717a54a8c994d8a948ee42e1412e08988761d0754d7d10b803061cc3aebf35f92a5dbbab493bd0e1a9ef9e89a2130e83ba34
languageName: node
linkType: hard
"@jupyter/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:^1.1.1":
version: 1.1.1
resolution: "@jupyter/ydoc@npm:1.1.1"
dependencies:
"@jupyterlab/nbformat": ^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0
"@lumino/coreutils": ^1.11.0 || ^2.0.0
"@lumino/disposable": ^1.10.0 || ^2.0.0
"@lumino/signaling": ^1.10.0 || ^2.0.0
y-protocols: ^1.0.5
yjs: ^13.5.40
checksum: a239b1dd57cfc9ba36c06ac5032a1b6388849ae01a1d0db0d45094f71fdadf4d473b4bf8becbef0cfcdc85cae505361fbec0822b02da5aa48e06b66f742dd7a0
languageName: node
linkType: hard
"@jupyter/ydoc@npm:^2.0.0 || ^3.0.0 || ^4.0.0, @jupyter/ydoc@npm:^4.0.0":
version: 4.0.0
resolution: "@jupyter/ydoc@npm:4.0.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: 771b095f9e8acdf08fff32852d55e285171add78dd495949544a48c07702bb3be32aee2ad1325a2583e121e09929b6b2f7dcea8c6490d57929c872fa4a69a7fd
languageName: node
linkType: hard
"@jupyterlab/application@npm:^4.6":
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/apputils@npm:~4.0.0":
version: 4.0.0
resolution: "@jupyterlab/apputils@npm:4.0.0"
dependencies:
"@jupyterlab/coreutils": ^6.0.0
"@jupyterlab/observables": ^5.0.0
"@jupyterlab/rendermime-interfaces": ^3.8.0
"@jupyterlab/services": ^7.0.0
"@jupyterlab/settingregistry": ^4.0.0
"@jupyterlab/statedb": ^4.0.0
"@jupyterlab/statusbar": ^4.0.0
"@jupyterlab/translation": ^4.0.0
"@jupyterlab/ui-components": ^4.0.0
"@lumino/algorithm": ^2.0.0
"@lumino/commands": ^2.1.1
"@lumino/coreutils": ^2.1.1
"@lumino/disposable": ^2.1.1
"@lumino/domutils": ^2.0.0
"@lumino/messaging": ^2.0.0
"@lumino/signaling": ^2.1.1
"@lumino/virtualdom": ^2.0.0
"@lumino/widgets": ^2.1.1
"@types/react": ^18.0.26
react: ^18.2.0
sanitize-html: ~2.7.3
checksum: 360bf34e9810a7014c6637a6ac5c23a2ee73da8339675235cee3866beb3a477dc3b4d993c0a79da5ebe472f5c28fa131d507d62e20b3a93853f05e62b126add9
languageName: node
linkType: hard
"@jupyterlab/attachments@npm:^4.6.0":
version: 4.6.0
resolution: "@jupyterlab/attachments@npm:4.6.0"
dependencies:
"@jupyterlab/nbformat": ^4.6.0
"@jupyterlab/observables": ^5.6.0
"@jupyterlab/rendermime": ^4.6.0
"@jupyterlab/rendermime-interfaces": ^3.14.0
"@lumino/disposable": ^2.1.5
"@lumino/signaling": ^2.1.5
checksum: b5d94525ac028813fdc4f53eee0f6b23b1172cfd83bc71cd9cc7d2a0855c7eaabdfb487005f285aa2c7d908e7f9e0877e0b0d647ab087b24c488c3250b1358e4
languageName: node
linkType: hard
"@jupyterlab/builder@npm:^4.2.1":
version: 4.2.5
resolution: "@jupyterlab/builder@npm:4.2.5"
dependencies:
"@lumino/algorithm": ^2.0.1
"@lumino/application": ^2.3.1
"@lumino/commands": ^2.3.0
"@lumino/coreutils": ^2.1.2
"@lumino/disposable": ^2.1.2
"@lumino/domutils": ^2.0.1
"@lumino/dragdrop": ^2.1.4
"@lumino/messaging": ^2.0.1
"@lumino/properties": ^2.0.1
"@lumino/signaling": ^2.1.2
"@lumino/virtualdom": ^2.0.1
"@lumino/widgets": ^2.3.2
ajv: ^8.12.0
commander: ^9.4.1
css-loader: ^6.7.1
duplicate-package-checker-webpack-plugin: ^3.0.0
fs-extra: ^10.1.0
glob: ~7.1.6
license-webpack-plugin: ^2.3.14
mini-css-extract-plugin: ^2.7.0
mini-svg-data-uri: ^1.4.4
path-browserify: ^1.0.0
process: ^0.11.10
source-map-loader: ~1.0.2
style-loader: ~3.3.1
supports-color: ^7.2.0
terser-webpack-plugin: ^5.3.7
webpack: ^5.76.1
webpack-cli: ^5.0.1
webpack-merge: ^5.8.0
worker-loader: ^3.0.2
bin:
build-labextension: lib/build-labextension.js
checksum: 67d7150a52cd647cfb1a1b1217223389dd2ce1169bf7aa3a5ea8b7d73e2589e6699181cfd488de88362ff8f46682a4e875c545836733d37b19217ae3068d876c
languageName: node
linkType: hard
"@jupyterlab/cells@npm:^4.0.13, @jupyterlab/cells@npm:^4.6.0":
version: 4.6.0
resolution: "@jupyterlab/cells@npm:4.6.0"
dependencies:
"@codemirror/state": ^6.5.4
"@codemirror/view": ^6.39.14
"@jupyter/ydoc": ^4.0.0
"@jupyterlab/apputils": ^4.7.0
"@jupyterlab/attachments": ^4.6.0
"@jupyterlab/codeeditor": ^4.6.0
"@jupyterlab/codemirror": ^4.6.0
"@jupyterlab/coreutils": ^6.6.0
"@jupyterlab/documentsearch": ^4.6.0
"@jupyterlab/filebrowser": ^4.6.0
"@jupyterlab/nbformat": ^4.6.0
"@jupyterlab/observables": ^5.6.0
"@jupyterlab/outputarea": ^4.6.0
"@jupyterlab/rendermime": ^4.6.0
"@jupyterlab/services": ^7.6.0
"@jupyterlab/toc": ^6.6.0
"@jupyterlab/translation": ^4.6.0
"@jupyterlab/ui-components": ^4.6.0
"@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: 301538da3f5b0f24f43fe72452d1e979e2a444ac4c0f23f06d095c5d633d2997aead961bc36ef5c3567a644242b4ea39b623c6efeefa1bc6cfb4a34d60c1e115
languageName: node
linkType: hard
"@jupyterlab/codeeditor@npm:^4.0.13, @jupyterlab/codeeditor@npm:^4.2.5, @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/codemirror@npm:^4.0.13, @jupyterlab/codemirror@npm:^4.2.5, @jupyterlab/codemirror@npm:^4.6.0":
version: 4.6.0
resolution: "@jupyterlab/codemirror@npm:4.6.0"
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.0
"@jupyterlab/coreutils": ^6.6.0
"@jupyterlab/documentsearch": ^4.6.0
"@jupyterlab/nbformat": ^4.6.0
"@jupyterlab/translation": ^4.6.0
"@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: 04ef7b7f05c3fcce121c206d8b1d8956603a4c00c23d182a0e340c1f2352e535d3e3af4370f1fec5d6ce5ff20dd8fece8fee6b3356c6fc2678acf490913b7c63
languageName: node
linkType: hard
"@jupyterlab/console@npm:^4.6":
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.0.0, @jupyterlab/coreutils@npm:^6.0.13, @jupyterlab/coreutils@npm:^6.2.5, @jupyterlab/coreutils@npm:^6.6, @jupyterlab/coreutils@npm:^6.6.0":
version: 6.6.0
resolution: "@jupyterlab/coreutils@npm:6.6.0"
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: b9ac5bce2cee14bdd8bc82dc89da7eecea675084dc2f9c1f249222f3fea99e62ad14fba6fe44270116ed57358f3733a8d2ead4222a19f921bf4a3549bcb1e212
languageName: node
linkType: hard
"@jupyterlab/docmanager@npm:^4.6.0":
version: 4.6.0
resolution: "@jupyterlab/docmanager@npm:4.6.0"
dependencies:
"@jupyterlab/apputils": ^4.7.0
"@jupyterlab/coreutils": ^6.6.0
"@jupyterlab/docregistry": ^4.6.0
"@jupyterlab/rendermime": ^4.6.0
"@jupyterlab/services": ^7.6.0
"@jupyterlab/statedb": ^4.6.0
"@jupyterlab/statusbar": ^4.6.0
"@jupyterlab/translation": ^4.6.0
"@jupyterlab/ui-components": ^4.6.0
"@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: f0df3aad8819d52bec8583a3dcea4fa439bc88c1fbeba22566b3ed5576f41c7c380828c8a1270bdeeb5c8732948017b55e7753361453eda9846595e5c55fa880
languageName: node
linkType: hard
"@jupyterlab/docregistry@npm:^4.0.13, @jupyterlab/docregistry@npm:^4.2.5, @jupyterlab/docregistry@npm:^4.6.0":
version: 4.6.0
resolution: "@jupyterlab/docregistry@npm:4.6.0"
dependencies:
"@jupyter/ydoc": ^4.0.0
"@jupyterlab/apputils": ^4.7.0
"@jupyterlab/codeeditor": ^4.6.0
"@jupyterlab/coreutils": ^6.6.0
"@jupyterlab/observables": ^5.6.0
"@jupyterlab/rendermime": ^4.6.0
"@jupyterlab/rendermime-interfaces": ^3.14.0
"@jupyterlab/services": ^7.6.0
"@jupyterlab/translation": ^4.6.0
"@jupyterlab/ui-components": ^4.6.0
"@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: 38b4efd9c486a10b5c52e25e0c6fe2810550b22ca816aaad3e507eb804beb08a24eaab8c285ac60f8a0245b7a85de405c1c2a5f400c983342686aa3e0f169731
languageName: node
linkType: hard
"@jupyterlab/documentsearch@npm:^4.0.13, @jupyterlab/documentsearch@npm:^4.6.0":
version: 4.6.0
resolution: "@jupyterlab/documentsearch@npm:4.6.0"
dependencies:
"@jupyterlab/apputils": ^4.7.0
"@jupyterlab/translation": ^4.6.0
"@jupyterlab/ui-components": ^4.6.0
"@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: 4ee14e196756aae2ea162b46258a0177694112c6ea0ece6784f761341f3a97345d5338f80ca20f7bda205b96cf5207abe7f960f8e2c523f692ecbdb257fe4bd8
languageName: node
linkType: hard
"@jupyterlab/filebrowser@npm:^4.6.0":
version: 4.6.0
resolution: "@jupyterlab/filebrowser@npm:4.6.0"
dependencies:
"@jupyterlab/apputils": ^4.7.0
"@jupyterlab/coreutils": ^6.6.0
"@jupyterlab/docmanager": ^4.6.0
"@jupyterlab/docregistry": ^4.6.0
"@jupyterlab/services": ^7.6.0
"@jupyterlab/statedb": ^4.6.0
"@jupyterlab/statusbar": ^4.6.0
"@jupyterlab/translation": ^4.6.0
"@jupyterlab/ui-components": ^4.6.0
"@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
jest-environment-jsdom: ^29.3.0
react: ^18.2.0
checksum: 76148a7c5674671654590c86174d9e57f42145210981d0725867f831fc7a03d76af2857ac8ef94d19d816bb81228a23426e6bef199f592ac57a5b0eb95c21e25
languageName: node
linkType: hard
"@jupyterlab/lsp@npm:^4.0.13":
version: 4.2.5
resolution: "@jupyterlab/lsp@npm:4.2.5"
dependencies:
"@jupyterlab/apputils": ^4.3.5
"@jupyterlab/codeeditor": ^4.2.5
"@jupyterlab/codemirror": ^4.2.5
"@jupyterlab/coreutils": ^6.2.5
"@jupyterlab/docregistry": ^4.2.5
"@jupyterlab/services": ^7.2.5
"@jupyterlab/translation": ^4.2.5
"@lumino/coreutils": ^2.1.2
"@lumino/disposable": ^2.1.2
"@lumino/signaling": ^2.1.2
"@lumino/widgets": ^2.3.2
lodash.mergewith: ^4.6.1
vscode-jsonrpc: ^6.0.0
vscode-languageserver-protocol: ^3.17.0
vscode-ws-jsonrpc: ~1.0.2
checksum: 8dfaeb330a6b72b32f8eae6b5d4c3c0ff64203fe5fd69dbfbe15e22c46851a9fbc8c968608e4a6cd887760e194d4e4bb757135aff2df4eaee31acf248d603e9a
languageName: node
linkType: hard
"@jupyterlab/nbformat@npm:^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0, @jupyterlab/nbformat@npm:^4.0.13, @jupyterlab/nbformat@npm:^4.6.0":
version: 4.6.0
resolution: "@jupyterlab/nbformat@npm:4.6.0"
dependencies:
"@lumino/coreutils": ^2.2.2
checksum: d4c7dc410cd2e831e13c8e45da0680d02161ae2f427b8a886140cb53637530e4254d20b692eda55edff63e306de2068b8416b25778ca050f3ae2148ee6c50b8a
languageName: node
linkType: hard
"@jupyterlab/notebook@npm:~4.0.0":
version: 4.0.13
resolution: "@jupyterlab/notebook@npm:4.0.13"
dependencies:
"@jupyter/ydoc": ^1.1.1
"@jupyterlab/apputils": ^4.1.13
"@jupyterlab/cells": ^4.0.13
"@jupyterlab/codeeditor": ^4.0.13
"@jupyterlab/codemirror": ^4.0.13
"@jupyterlab/coreutils": ^6.0.13
"@jupyterlab/docregistry": ^4.0.13
"@jupyterlab/documentsearch": ^4.0.13
"@jupyterlab/lsp": ^4.0.13
"@jupyterlab/nbformat": ^4.0.13
"@jupyterlab/observables": ^5.0.13
"@jupyterlab/rendermime": ^4.0.13
"@jupyterlab/services": ^7.0.13
"@jupyterlab/settingregistry": ^4.0.13
"@jupyterlab/statusbar": ^4.0.13
"@jupyterlab/toc": ^6.0.13
"@jupyterlab/translation": ^4.0.13
"@jupyterlab/ui-components": ^4.0.13
"@lumino/algorithm": ^2.0.1
"@lumino/coreutils": ^2.1.2
"@lumino/domutils": ^2.0.1
"@lumino/dragdrop": ^2.1.4
"@lumino/messaging": ^2.0.1
"@lumino/properties": ^2.0.1
"@lumino/signaling": ^2.1.2
"@lumino/virtualdom": ^2.0.1
"@lumino/widgets": ^2.3.0
react: ^18.2.0
checksum: e23b83b241c690678023099888b08003ea82fa543a00223e643ebebde00b4d8faf0e0c03574b7a258cf33ea40834b74809af1a4357d28cb96a0a6d31e3bbf3bf
languageName: node
linkType: hard
"@jupyterlab/observables@npm:^5.0.0, @jupyterlab/observables@npm:^5.0.13, @jupyterlab/observables@npm:^5.6.0":
version: 5.6.0
resolution: "@jupyterlab/observables@npm:5.6.0"
dependencies:
"@lumino/algorithm": ^2.0.4
"@lumino/coreutils": ^2.2.2
"@lumino/disposable": ^2.1.5
"@lumino/messaging": ^2.0.4
"@lumino/signaling": ^2.1.5
checksum: 71266f2e5d0fb575821fec6d7b7ca4b5271b641ae8ea623270762c65e3da1b655eb9a1e42c3b6639fbe63c299431183724daa7e2a38a4972e864e14dde623efc
languageName: node
linkType: hard
"@jupyterlab/outputarea@npm:^4.6.0":
version: 4.6.0
resolution: "@jupyterlab/outputarea@npm:4.6.0"
dependencies:
"@jupyterlab/apputils": ^4.7.0
"@jupyterlab/nbformat": ^4.6.0
"@jupyterlab/observables": ^5.6.0
"@jupyterlab/rendermime": ^4.6.0
"@jupyterlab/rendermime-interfaces": ^3.14.0
"@jupyterlab/services": ^7.6.0
"@jupyterlab/translation": ^4.6.0
"@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
checksum: e113733476af1e0744031f24312303b619f7235bd632e0bc387b37748df422180977b4104548b03b1492f587703b499f6d036b269aac4e61cf8369aab2507e37
languageName: node
linkType: hard
"@jupyterlab/rendermime-interfaces@npm:^3.14.0, @jupyterlab/rendermime-interfaces@npm:^3.8.0":
version: 3.14.0
resolution: "@jupyterlab/rendermime-interfaces@npm:3.14.0"
dependencies:
"@lumino/coreutils": ^1.11.0 || ^2.2.2
"@lumino/widgets": ^1.37.2 || ^2.8.0
checksum: e34952f24114627a1ac626093dab94d56b315e8b87a2982d6783792982521c80311ffaae9a7e8cd4596f74a3e67d745b161ab63597e736492679d4b3b6278bde
languageName: node
linkType: hard
"@jupyterlab/rendermime@npm:^4.0.13, @jupyterlab/rendermime@npm:^4.6.0":
version: 4.6.0
resolution: "@jupyterlab/rendermime@npm:4.6.0"
dependencies:
"@jupyterlab/apputils": ^4.7.0
"@jupyterlab/coreutils": ^6.6.0
"@jupyterlab/nbformat": ^4.6.0
"@jupyterlab/observables": ^5.6.0
"@jupyterlab/rendermime-interfaces": ^3.14.0
"@jupyterlab/services": ^7.6.0
"@jupyterlab/translation": ^4.6.0
"@lumino/coreutils": ^2.2.2
"@lumino/messaging": ^2.0.4
"@lumino/signaling": ^2.1.5
"@lumino/widgets": ^2.8.0
lodash.escape: ^4.0.1
checksum: be0a14089212f6373c1ede7d4672e66d9bf5a956c6b4d8d1f8588c3dc66a3f83be199b4212c0afa729cdde6da47956d5b1a8ae1aeea9e971c69961dec28468ad
languageName: node
linkType: hard
"@jupyterlab/services@npm:^7.0.0, @jupyterlab/services@npm:^7.0.13, @jupyterlab/services@npm:^7.2.5, @jupyterlab/services@npm:^7.6.0":
version: 7.6.0
resolution: "@jupyterlab/services@npm:7.6.0"
dependencies:
"@jupyter/ydoc": ^4.0.0
"@jupyterlab/coreutils": ^6.6.0
"@jupyterlab/nbformat": ^4.6.0
"@jupyterlab/settingregistry": ^4.6.0
"@jupyterlab/statedb": ^4.6.0
"@lumino/coreutils": ^2.2.2
"@lumino/disposable": ^2.1.5