-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathyarn.lock
6848 lines (6174 loc) · 238 KB
/
yarn.lock
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 6
cacheKey: 8
"@babel/code-frame@npm:^7.0.0":
version: 7.18.6
resolution: "@babel/code-frame@npm:7.18.6"
dependencies:
"@babel/highlight": "npm:^7.18.6"
checksum: 195e2be3172d7684bf95cff69ae3b7a15a9841ea9d27d3c843662d50cdd7d6470fd9c8e64be84d031117e4a4083486effba39f9aef6bbb2c89f7f21bcfba33ba
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.18.6":
version: 7.19.1
resolution: "@babel/helper-validator-identifier@npm:7.19.1"
checksum: 0eca5e86a729162af569b46c6c41a63e18b43dbe09fda1d2a3c8924f7d617116af39cac5e4cd5d431bb760b4dca3c0970e0c444789b1db42bcf1fa41fbad0a3a
languageName: node
linkType: hard
"@babel/highlight@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/highlight@npm:7.18.6"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.18.6"
chalk: "npm:^2.0.0"
js-tokens: "npm:^4.0.0"
checksum: 92d8ee61549de5ff5120e945e774728e5ccd57fd3b2ed6eace020ec744823d4a98e242be1453d21764a30a14769ecd62170fba28539b211799bbaf232bbb2789
languageName: node
linkType: hard
"@codemirror/autocomplete@npm:^6.0.0, @codemirror/autocomplete@npm:^6.3.2":
version: 6.4.2
resolution: "@codemirror/autocomplete@npm:6.4.2"
dependencies:
"@codemirror/language": "npm:^6.0.0"
"@codemirror/state": "npm:^6.0.0"
"@codemirror/view": "npm:^6.6.0"
"@lezer/common": "npm:^1.0.0"
peerDependencies:
"@codemirror/language": ^6.0.0
"@codemirror/state": ^6.0.0
"@codemirror/view": ^6.0.0
"@lezer/common": ^1.0.0
checksum: c6cc4edb1c412153e6f6f27926674d7f1d386d1f30d6d4f60c5b52bfa0105870b0c70449b69891937bcf082340d8b0fa6d1f9f28f5eb60adc2974ed4c73aadc1
languageName: node
linkType: hard
"@codemirror/autocomplete@npm:^6.5.1":
version: 6.7.1
resolution: "@codemirror/autocomplete@npm:6.7.1"
dependencies:
"@codemirror/language": ^6.0.0
"@codemirror/state": ^6.0.0
"@codemirror/view": ^6.6.0
"@lezer/common": ^1.0.0
peerDependencies:
"@codemirror/language": ^6.0.0
"@codemirror/state": ^6.0.0
"@codemirror/view": ^6.0.0
"@lezer/common": ^1.0.0
checksum: 5f1331cceb6a7b0bd4dc9bad6025d16d1c415bfc2fba29b452f9f5501abd34b75a240e3a20fb9fed92a82a666e54562c32cfe220892713bfbd5a5a16fa004cd8
languageName: node
linkType: hard
"@codemirror/commands@npm:^6.2.3":
version: 6.2.4
resolution: "@codemirror/commands@npm:6.2.4"
dependencies:
"@codemirror/language": ^6.0.0
"@codemirror/state": ^6.2.0
"@codemirror/view": ^6.0.0
"@lezer/common": ^1.0.0
checksum: 468895fa19ff0554181b698c81f850820de5c0289cab92c44392fb127286f09ca72b921d6ea4353b70b616a4fd0c3667d86b6f917202a3ad2e196eb7b581f7b6
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": "npm:^6.0.0"
"@lezer/cpp": "npm:^1.0.0"
checksum: bb9eba482cca80037ce30c7b193cf45eff19ccbb773764fddf2071756468ecc25aa53c777c943635054f89095b0247b9b50c339e107e41e68d34d12a7295f9a9
languageName: node
linkType: hard
"@codemirror/lang-css@npm:^6.0.0":
version: 6.1.1
resolution: "@codemirror/lang-css@npm:6.1.1"
dependencies:
"@codemirror/autocomplete": "npm:^6.0.0"
"@codemirror/language": "npm:^6.0.0"
"@codemirror/state": "npm:^6.0.0"
"@lezer/css": "npm:^1.0.0"
checksum: 9b0bf7c7544fb604b67325689d783981e4099560f577bc1f10c52cb18e9d275ebdbdbd3f335a1dbb9c4910c36320f74ca015fc92ef99f930ecb9d481a2bf3511
languageName: node
linkType: hard
"@codemirror/lang-css@npm:^6.1.1":
version: 6.2.0
resolution: "@codemirror/lang-css@npm:6.2.0"
dependencies:
"@codemirror/autocomplete": ^6.0.0
"@codemirror/language": ^6.0.0
"@codemirror/state": ^6.0.0
"@lezer/common": ^1.0.2
"@lezer/css": ^1.0.0
checksum: d824f169083613b63f04992c24d3fecd45c718cd3deb9da3f332dd3a889a762d05ea812e31ddf7ee4b661722f8c8b49676515cb98609067c53e25ac8b469a5e4
languageName: node
linkType: hard
"@codemirror/lang-html@npm:^6.0.0":
version: 6.4.2
resolution: "@codemirror/lang-html@npm:6.4.2"
dependencies:
"@codemirror/autocomplete": "npm:^6.0.0"
"@codemirror/lang-css": "npm:^6.0.0"
"@codemirror/lang-javascript": "npm:^6.0.0"
"@codemirror/language": "npm:^6.4.0"
"@codemirror/state": "npm:^6.0.0"
"@codemirror/view": "npm:^6.2.2"
"@lezer/common": "npm:^1.0.0"
"@lezer/css": "npm:^1.1.0"
"@lezer/html": "npm:^1.3.0"
checksum: 10eebf44f275867c9916639f55610214c305d27a8a8545c3fa2d9495cbac33eb9f8751fc6b78e83d957c49a4b446bbee959bdf3eb497e88a05796aca02ed773b
languageName: node
linkType: hard
"@codemirror/lang-html@npm:^6.4.3":
version: 6.4.3
resolution: "@codemirror/lang-html@npm:6.4.3"
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.2.2
"@lezer/common": ^1.0.0
"@lezer/css": ^1.1.0
"@lezer/html": ^1.3.0
checksum: 6177d19147580964ecd6910ae951201929a96e63f4f0e624c3138e2805fa87ec6d6d952a3a888c5a52af78b6dd6d04d7d8c76c6a9cd65b1921dc467b5dbaea72
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": "npm:^6.0.0"
"@lezer/java": "npm:^1.0.0"
checksum: 4679104683cbffcd224ac04c7e5d144b787494697b26470b07017259035b7bb3fa62609d9a61bfbc566f1756d9f972f9f26d96a3c1362dd48881c1172f9a914d
languageName: node
linkType: hard
"@codemirror/lang-javascript@npm:^6.0.0":
version: 6.1.4
resolution: "@codemirror/lang-javascript@npm:6.1.4"
dependencies:
"@codemirror/autocomplete": "npm:^6.0.0"
"@codemirror/language": "npm:^6.6.0"
"@codemirror/lint": "npm:^6.0.0"
"@codemirror/state": "npm:^6.0.0"
"@codemirror/view": "npm:^6.0.0"
"@lezer/common": "npm:^1.0.0"
"@lezer/javascript": "npm:^1.0.0"
checksum: d550db179c522cd7c39d26815ee47ac4751656c856d42eeb3743e67482d4377692c4fcd3413b0e97c2c7070b6b10aaa582909c6234f42b04145d56efc49c8a6b
languageName: node
linkType: hard
"@codemirror/lang-javascript@npm:^6.1.7":
version: 6.1.8
resolution: "@codemirror/lang-javascript@npm:6.1.8"
dependencies:
"@codemirror/autocomplete": ^6.0.0
"@codemirror/language": ^6.6.0
"@codemirror/lint": ^6.0.0
"@codemirror/state": ^6.0.0
"@codemirror/view": ^6.0.0
"@lezer/common": ^1.0.0
"@lezer/javascript": ^1.0.0
checksum: 58ccd1c96db52edc95015b3fc77021540c18b4b87ce2c9426402a53993a67d7946647aba7198223dc51a56ec55379603a6d986fe32332d85cb3d8768c92a562e
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": "npm:^6.0.0"
"@lezer/json": "npm:^1.0.0"
checksum: e9e87d50ff7b81bd56a6ab50740b1dd54e9a93f1be585e1d59d0642e2148842ea1528ac7b7221eb4ddc7fe84bbc28065144cc3ab86f6e06c6aeb2d4b4e62acf1
languageName: node
linkType: hard
"@codemirror/lang-markdown@npm:^6.1.1":
version: 6.1.1
resolution: "@codemirror/lang-markdown@npm:6.1.1"
dependencies:
"@codemirror/lang-html": ^6.0.0
"@codemirror/language": ^6.3.0
"@codemirror/state": ^6.0.0
"@codemirror/view": ^6.0.0
"@lezer/common": ^1.0.0
"@lezer/markdown": ^1.0.0
checksum: db891dad10a8ea8db17d0a9222774389794cb0957b784e3f154bf27ab4a9be89a28ad4c2f6abf7d829115c3ce46694a2816b61723a5d5776c1d75d566ce016c8
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": "npm:^6.0.0"
"@codemirror/language": "npm:^6.0.0"
"@codemirror/state": "npm:^6.0.0"
"@lezer/common": "npm:^1.0.0"
"@lezer/php": "npm:^1.0.0"
checksum: c003a29a426486453fdfddbf7302982fa2aa7f059bf6f1ce4cbf08341b0162eee5e2f50e0d71c418dcd358491631780156d846fe352754d042576172c5d86721
languageName: node
linkType: hard
"@codemirror/lang-python@npm:^6.1.2":
version: 6.1.2
resolution: "@codemirror/lang-python@npm:6.1.2"
dependencies:
"@codemirror/autocomplete": "npm:^6.3.2"
"@codemirror/language": "npm:^6.0.0"
"@lezer/python": "npm:^1.0.0"
checksum: e822a1236fb3c2773e1889d4a24f8f2f7fb45ab8cf6e0521d311508a3eda19c4dcf4e2f943766b93545e673f3f0336725418e0bb48b3d9fb6a942339d164cfa5
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": "npm:^6.0.0"
"@lezer/rust": "npm:^1.0.0"
checksum: 8a439944cb22159b0b3465ca4fa4294c69843219d5d30e278ae6df8e48f30a7a9256129723c025ec9b5e694d31a3560fb004300b125ffcd81c22d13825845170
languageName: node
linkType: hard
"@codemirror/lang-sql@npm:^6.4.1":
version: 6.5.0
resolution: "@codemirror/lang-sql@npm:6.5.0"
dependencies:
"@codemirror/autocomplete": ^6.0.0
"@codemirror/language": ^6.0.0
"@codemirror/state": ^6.0.0
"@lezer/highlight": ^1.0.0
"@lezer/lr": ^1.0.0
checksum: 5bc73293d85f3892633703f277787336c00135011b14ca34a3590975a02c5ec1d6826d201d827e3dfc1d3427e28d23f36b1ef4fd69fc5d79c98290030c11dad5
languageName: node
linkType: hard
"@codemirror/lang-wast@npm:^6.0.1":
version: 6.0.1
resolution: "@codemirror/lang-wast@npm:6.0.1"
dependencies:
"@codemirror/language": "npm:^6.0.0"
"@lezer/highlight": "npm:^1.0.0"
"@lezer/lr": "npm:^1.0.0"
checksum: 600d98d3ea6a4e99292244ed707e39a2abd9f3abf62cfeff5c819a0cc0c7e86b8c5b91e91c1b7ea21233d9ea09c41abe61d8a40b2547bb5db74239c6df857934
languageName: node
linkType: hard
"@codemirror/lang-xml@npm:^6.0.2":
version: 6.0.2
resolution: "@codemirror/lang-xml@npm:6.0.2"
dependencies:
"@codemirror/autocomplete": "npm:^6.0.0"
"@codemirror/language": "npm:^6.4.0"
"@codemirror/state": "npm:^6.0.0"
"@lezer/common": "npm:^1.0.0"
"@lezer/xml": "npm:^1.0.0"
checksum: e156ecafaa87e9b6ef4ab6812ccd00d8f3c6cb81f232837636b36336d80513b61936dfee6f4f6800574f236208b61e95a2abcb997cdcd7366585a6b796e0e13b
languageName: node
linkType: hard
"@codemirror/language@npm:^6.0.0, @codemirror/language@npm:^6.3.0, @codemirror/language@npm:^6.4.0, @codemirror/language@npm:^6.6.0":
version: 6.6.0
resolution: "@codemirror/language@npm:6.6.0"
dependencies:
"@codemirror/state": "npm:^6.0.0"
"@codemirror/view": "npm:^6.0.0"
"@lezer/common": "npm:^1.0.0"
"@lezer/highlight": "npm:^1.0.0"
"@lezer/lr": "npm:^1.0.0"
style-mod: "npm:^4.0.0"
checksum: bb9411620e2f231653a3f0c4429e0d19a3843bff5dbc117df4649d7bf783ec4ad809c0add8bc0887a4ec3f48b4f8f941621168e47d76101d5383f0d670af1722
languageName: node
linkType: hard
"@codemirror/legacy-modes@npm:^6.3.2":
version: 6.3.2
resolution: "@codemirror/legacy-modes@npm:6.3.2"
dependencies:
"@codemirror/language": ^6.0.0
checksum: fa5f5477fb9e19267251e2ecd3de8c1a4c2512813555bb60111dce3951f2c3f6080a2985a573b7542534ba1d2c34115f7e39ee23fdf8f6f81db6f8ce447c1efc
languageName: node
linkType: hard
"@codemirror/lint@npm:^6.0.0":
version: 6.2.0
resolution: "@codemirror/lint@npm:6.2.0"
dependencies:
"@codemirror/state": "npm:^6.0.0"
"@codemirror/view": "npm:^6.0.0"
crelt: "npm:^1.0.5"
checksum: b97e55a07bca9f7e357e495853ba189ae0ff7dfe7e7ae445d7a0d6c6926ec792c7f5c6b6c13a1f137fd9fedf44a6624e9d500f76d0d46a3c3e9d19c2cda9d28a
languageName: node
linkType: hard
"@codemirror/search@npm:^6.3.0":
version: 6.4.0
resolution: "@codemirror/search@npm:6.4.0"
dependencies:
"@codemirror/state": ^6.0.0
"@codemirror/view": ^6.0.0
crelt: ^1.0.5
checksum: 441e04fc896ac984f224e3adb20bc8a6c63d929778335c70d2cb1e3843674c7998db93e2ab1cd05e8276cb3819766cd23951eec748fdf8e66e3611bd9a55aab5
languageName: node
linkType: hard
"@codemirror/state@npm:^6.0.0, @codemirror/state@npm:^6.1.4, @codemirror/state@npm:^6.2.0":
version: 6.2.0
resolution: "@codemirror/state@npm:6.2.0"
checksum: fdc99c773dc09c700dd02bf918f06132aa8d3069c262cc4eb6ca5c810ce24ae2d7e90719ae7630a8158fd263018de6d40bd78f312e6bfba754e737b64e6c6b3d
languageName: node
linkType: hard
"@codemirror/view@npm:^6.0.0, @codemirror/view@npm:^6.2.2, @codemirror/view@npm:^6.6.0":
version: 6.9.2
resolution: "@codemirror/view@npm:6.9.2"
dependencies:
"@codemirror/state": "npm:^6.1.4"
style-mod: "npm:^4.0.0"
w3c-keyname: "npm:^2.2.4"
checksum: e6faaf1b2daf9e4605eafd1782a0a6363cf0ee8a6c4e1aa57ebea2b2cc2b402914f07448f12210da0144126860adab052442c51831911a326867a53c745a60cf
languageName: node
linkType: hard
"@codemirror/view@npm:^6.9.6":
version: 6.12.0
resolution: "@codemirror/view@npm:6.12.0"
dependencies:
"@codemirror/state": ^6.1.4
style-mod: ^4.0.0
w3c-keyname: ^2.2.4
checksum: 512cbc9c05ac2cfa738cdf7aac711847b44e24ff5869f31839a9fcc11da6a512448fa9bc980535d55b897de80d49e744336a2724ca1fe3dae8bfcb31e339fe64
languageName: node
linkType: hard
"@discoveryjs/json-ext@npm:^0.5.0":
version: 0.5.7
resolution: "@discoveryjs/json-ext@npm:0.5.7"
checksum: 2176d301cc258ea5c2324402997cf8134ebb212469c0d397591636cea8d3c02f2b3cf9fd58dcb748c7a0dade77ebdc1b10284fa63e608c033a1db52fddc69918
languageName: node
linkType: hard
"@eslint-community/eslint-utils@npm:^4.2.0":
version: 4.3.0
resolution: "@eslint-community/eslint-utils@npm:4.3.0"
dependencies:
eslint-visitor-keys: "npm:^3.3.0"
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
checksum: f487760a692f0f1fef76e248ad72976919576ba57edc2b1b1dc1d182553bae6b5bf7b078e654da85d04f0af8a485d20bd26280002768f4fbcd2e330078340cb0
languageName: node
linkType: hard
"@eslint-community/regexpp@npm:^4.4.0":
version: 4.4.0
resolution: "@eslint-community/regexpp@npm:4.4.0"
checksum: 2d127af0c752b80e8a782eacfe996a86925d21de92da3ffc6f9e615e701145e44a62e26bdd88bfac2cd76779c39ba8d9875a91046ec5e7e5f23cb647c247ea6a
languageName: node
linkType: hard
"@eslint/eslintrc@npm:^2.0.1":
version: 2.0.1
resolution: "@eslint/eslintrc@npm:2.0.1"
dependencies:
ajv: "npm:^6.12.4"
debug: "npm:^4.3.2"
espree: "npm:^9.5.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: 56b9192a687a450db53a7b883daf9f0f447c43b3510189cf88808a7a2467c2a302a42a50f184cc6d5a9faf3d1df890a2ef0fd0d60b751f32a3e9dfea717c6b48
languageName: node
linkType: hard
"@eslint/js@npm:8.36.0":
version: 8.36.0
resolution: "@eslint/js@npm:8.36.0"
checksum: b7d6b84b823c8c7784be390741196617565527b1f7c0977fde9455bfb57fd88f81c074a03dd878757d2c33fa29f24291e9ecbc1425710f067917324b55e1bf3a
languageName: node
linkType: hard
"@fortawesome/fontawesome-free@npm:^5.12.0":
version: 5.15.4
resolution: "@fortawesome/fontawesome-free@npm:5.15.4"
checksum: 32281c3df4075290d9a96dfc22f72fadb3da7055d4117e48d34046b8c98032a55fa260ae351b0af5d6f6fb57a2f5d79a4abe52af456da35195f7cb7dda27b4a2
languageName: node
linkType: hard
"@gar/promisify@npm:^1.1.3":
version: 1.1.3
resolution: "@gar/promisify@npm:1.1.3"
checksum: 4059f790e2d07bf3c3ff3e0fec0daa8144fe35c1f6e0111c9921bd32106adaa97a4ab096ad7dab1e28ee6a9060083c4d1a4ada42a7f5f3f7a96b8812e2b757c1
languageName: node
linkType: hard
"@humanwhocodes/config-array@npm:^0.11.8":
version: 0.11.8
resolution: "@humanwhocodes/config-array@npm:0.11.8"
dependencies:
"@humanwhocodes/object-schema": "npm:^1.2.1"
debug: "npm:^4.1.1"
minimatch: "npm:^3.0.5"
checksum: 0fd6b3c54f1674ce0a224df09b9c2f9846d20b9e54fabae1281ecfc04f2e6ad69bf19e1d6af6a28f88e8aa3990168b6cb9e1ef755868c3256a630605ec2cb1d3
languageName: node
linkType: hard
"@humanwhocodes/module-importer@npm:^1.0.1":
version: 1.0.1
resolution: "@humanwhocodes/module-importer@npm:1.0.1"
checksum: 0fd22007db8034a2cdf2c764b140d37d9020bbfce8a49d3ec5c05290e77d4b0263b1b972b752df8c89e5eaa94073408f2b7d977aed131faf6cf396ebb5d7fb61
languageName: node
linkType: hard
"@humanwhocodes/object-schema@npm:^1.2.1":
version: 1.2.1
resolution: "@humanwhocodes/object-schema@npm:1.2.1"
checksum: a824a1ec31591231e4bad5787641f59e9633827d0a2eaae131a288d33c9ef0290bd16fda8da6f7c0fcb014147865d12118df10db57f27f41e20da92369fcb3f1
languageName: node
linkType: hard
"@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.0
resolution: "@jridgewell/resolve-uri@npm:3.1.0"
checksum: b5ceaaf9a110fcb2780d1d8f8d4a0bfd216702f31c988d8042e5f8fbe353c55d9b0f55a1733afdc64806f8e79c485d2464680ac48a0d9fcadb9548ee6b81d267
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.2":
version: 0.3.2
resolution: "@jridgewell/source-map@npm:0.3.2"
dependencies:
"@jridgewell/gen-mapping": "npm:^0.3.0"
"@jridgewell/trace-mapping": "npm:^0.3.9"
checksum: 1b83f0eb944e77b70559a394d5d3b3f98a81fcc186946aceb3ef42d036762b52ef71493c6c0a3b7c1d2f08785f53ba2df1277fe629a06e6109588ff4cdcf7482
languageName: node
linkType: hard
"@jridgewell/sourcemap-codec@npm:1.4.14, @jridgewell/sourcemap-codec@npm:^1.4.10":
version: 1.4.14
resolution: "@jridgewell/sourcemap-codec@npm:1.4.14"
checksum: 61100637b6d173d3ba786a5dff019e1a74b1f394f323c1fee337ff390239f053b87266c7a948777f4b1ee68c01a8ad0ab61e5ff4abb5a012a0b091bec391ab97
languageName: node
linkType: hard
"@jridgewell/trace-mapping@npm:^0.3.17, @jridgewell/trace-mapping@npm:^0.3.9":
version: 0.3.17
resolution: "@jridgewell/trace-mapping@npm:0.3.17"
dependencies:
"@jridgewell/resolve-uri": "npm:3.1.0"
"@jridgewell/sourcemap-codec": "npm:1.4.14"
checksum: 9d703b859cff5cd83b7308fd457a431387db5db96bd781a63bf48e183418dd9d3d44e76b9e4ae13237f6abeeb25d739ec9215c1d5bfdd08f66f750a50074a339
languageName: node
linkType: hard
"@jupyter/ydoc@npm:^1.0.2":
version: 1.0.2
resolution: "@jupyter/ydoc@npm:1.0.2"
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: 739f9630940466b3cfcd7b742dd06479f81772ca13f863d057af0bbb5e318829506969066ab72977e7c721644982b5c8f88cf44e1ae81955ed1c27e87632d1f2
languageName: node
linkType: hard
"@jupyterlab/application@npm:^4.0.0":
version: 4.0.0
resolution: "@jupyterlab/application@npm:4.0.0"
dependencies:
"@fortawesome/fontawesome-free": ^5.12.0
"@jupyterlab/apputils": ^4.0.0
"@jupyterlab/coreutils": ^6.0.0
"@jupyterlab/docregistry": ^4.0.0
"@jupyterlab/rendermime": ^4.0.0
"@jupyterlab/rendermime-interfaces": ^3.8.0
"@jupyterlab/services": ^7.0.0
"@jupyterlab/statedb": ^4.0.0
"@jupyterlab/translation": ^4.0.0
"@jupyterlab/ui-components": ^4.0.0
"@lumino/algorithm": ^2.0.0
"@lumino/application": ^2.1.1
"@lumino/commands": ^2.1.1
"@lumino/coreutils": ^2.1.1
"@lumino/disposable": ^2.1.1
"@lumino/messaging": ^2.0.0
"@lumino/polling": ^2.1.1
"@lumino/properties": ^2.0.0
"@lumino/signaling": ^2.1.1
"@lumino/widgets": ^2.1.1
checksum: 82750647de5997d6945627f517d82ffad3e7c272bce0c195819cc138b59546fbe43ee6c0ef4baf88de303964288ed1ac36234a99bedfb319eaf456b1321b199c
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.0.0":
version: 4.0.0
resolution: "@jupyterlab/attachments@npm:4.0.0"
dependencies:
"@jupyterlab/nbformat": ^4.0.0
"@jupyterlab/observables": ^5.0.0
"@jupyterlab/rendermime": ^4.0.0
"@jupyterlab/rendermime-interfaces": ^3.8.0
"@lumino/disposable": ^2.1.1
"@lumino/signaling": ^2.1.1
checksum: 71c8e488a0d31e00e1345336edece04faa0d2b6fbf5de284fad05bb2a8f732c57e9b2ffe10999dd416a1d00cdce4bc425f9f88dd91684cb8b55eea52a1d5ed98
languageName: node
linkType: hard
"@jupyterlab/builder@npm:^4.0.0":
version: 4.0.0
resolution: "@jupyterlab/builder@npm:4.0.0"
dependencies:
"@lumino/algorithm": ^2.0.0
"@lumino/application": ^2.1.1
"@lumino/commands": ^2.1.1
"@lumino/coreutils": ^2.1.1
"@lumino/disposable": ^2.1.1
"@lumino/domutils": ^2.0.0
"@lumino/dragdrop": ^2.1.1
"@lumino/messaging": ^2.0.0
"@lumino/properties": ^2.0.0
"@lumino/signaling": ^2.1.1
"@lumino/virtualdom": ^2.0.0
"@lumino/widgets": ^2.1.1
ajv: ^8.12.0
commander: ^9.4.1
css-loader: ^6.7.1
duplicate-package-checker-webpack-plugin: ^3.0.0
fs-extra: ^10.1.0
glob: ~7.1.6
license-webpack-plugin: ^2.3.14
mini-css-extract-plugin: ^2.7.0
mini-svg-data-uri: ^1.4.4
path-browserify: ^1.0.0
process: ^0.11.10
source-map-loader: ~1.0.2
style-loader: ~3.3.1
supports-color: ^7.2.0
terser-webpack-plugin: ^5.3.7
webpack: ^5.76.1
webpack-cli: ^5.0.1
webpack-merge: ^5.8.0
worker-loader: ^3.0.2
bin:
build-labextension: lib/build-labextension.js
checksum: c359031858376e37b2fe46bc7897fe0568b0cf90bcaaee6bded2e22f207c61a32d4b00b6954de00082e551dd07b6259997c00feeb25e7d44acf9ac97934fdd45
languageName: node
linkType: hard
"@jupyterlab/cells@npm:^4.0.0":
version: 4.0.0
resolution: "@jupyterlab/cells@npm:4.0.0"
dependencies:
"@codemirror/state": ^6.2.0
"@codemirror/view": ^6.9.6
"@jupyter/ydoc": ^1.0.2
"@jupyterlab/apputils": ^4.0.0
"@jupyterlab/attachments": ^4.0.0
"@jupyterlab/codeeditor": ^4.0.0
"@jupyterlab/codemirror": ^4.0.0
"@jupyterlab/coreutils": ^6.0.0
"@jupyterlab/documentsearch": ^4.0.0
"@jupyterlab/filebrowser": ^4.0.0
"@jupyterlab/nbformat": ^4.0.0
"@jupyterlab/observables": ^5.0.0
"@jupyterlab/outputarea": ^4.0.0
"@jupyterlab/rendermime": ^4.0.0
"@jupyterlab/services": ^7.0.0
"@jupyterlab/toc": ^6.0.0
"@jupyterlab/translation": ^4.0.0
"@jupyterlab/ui-components": ^4.0.0
"@lumino/algorithm": ^2.0.0
"@lumino/coreutils": ^2.1.1
"@lumino/domutils": ^2.0.0
"@lumino/dragdrop": ^2.1.1
"@lumino/messaging": ^2.0.0
"@lumino/polling": ^2.1.1
"@lumino/signaling": ^2.1.1
"@lumino/virtualdom": ^2.0.0
"@lumino/widgets": ^2.1.1
react: ^18.2.0
checksum: 2474642428f344a316b0296640f9adb07e805d3c8896d1a601a2a5131fc4f4a8a4a627583f3dff904f7c318d6c0f236bc0d9cd200545f395796fcfe4244ecbcb
languageName: node
linkType: hard
"@jupyterlab/codeeditor@npm:^4.0.0":
version: 4.0.0
resolution: "@jupyterlab/codeeditor@npm:4.0.0"
dependencies:
"@codemirror/state": ^6.2.0
"@jupyter/ydoc": ^1.0.2
"@jupyterlab/coreutils": ^6.0.0
"@jupyterlab/nbformat": ^4.0.0
"@jupyterlab/observables": ^5.0.0
"@jupyterlab/statusbar": ^4.0.0
"@jupyterlab/translation": ^4.0.0
"@jupyterlab/ui-components": ^4.0.0
"@lumino/coreutils": ^2.1.1
"@lumino/disposable": ^2.1.1
"@lumino/dragdrop": ^2.1.1
"@lumino/messaging": ^2.0.0
"@lumino/signaling": ^2.1.1
"@lumino/widgets": ^2.1.1
react: ^18.2.0
checksum: 8287d77738a41814eb83621691adbcee119e6a7b3d4741250e53fc11b8664ce1f6ae5a79150222b235d45ec7b22db980d773d77a517d6b5c6a241b8a27817b7a
languageName: node
linkType: hard
"@jupyterlab/codemirror@npm:^4.0.0":
version: 4.0.0
resolution: "@jupyterlab/codemirror@npm:4.0.0"
dependencies:
"@codemirror/autocomplete": ^6.5.1
"@codemirror/commands": ^6.2.3
"@codemirror/lang-cpp": ^6.0.2
"@codemirror/lang-css": ^6.1.1
"@codemirror/lang-html": ^6.4.3
"@codemirror/lang-java": ^6.0.1
"@codemirror/lang-javascript": ^6.1.7
"@codemirror/lang-json": ^6.0.1
"@codemirror/lang-markdown": ^6.1.1
"@codemirror/lang-php": ^6.0.1
"@codemirror/lang-python": ^6.1.2
"@codemirror/lang-rust": ^6.0.1
"@codemirror/lang-sql": ^6.4.1
"@codemirror/lang-wast": ^6.0.1
"@codemirror/lang-xml": ^6.0.2
"@codemirror/language": ^6.6.0
"@codemirror/legacy-modes": ^6.3.2
"@codemirror/search": ^6.3.0
"@codemirror/state": ^6.2.0
"@codemirror/view": ^6.9.6
"@jupyter/ydoc": ^1.0.2
"@jupyterlab/codeeditor": ^4.0.0
"@jupyterlab/coreutils": ^6.0.0
"@jupyterlab/documentsearch": ^4.0.0
"@jupyterlab/nbformat": ^4.0.0
"@jupyterlab/translation": ^4.0.0
"@lezer/common": ^1.0.2
"@lezer/generator": ^1.2.2
"@lezer/highlight": ^1.1.4
"@lezer/markdown": ^1.0.2
"@lumino/coreutils": ^2.1.1
"@lumino/disposable": ^2.1.1
"@lumino/signaling": ^2.1.1
yjs: ^13.5.40
checksum: 3252c57f1d35924d6d6ad2a48690fa8bbe4e1a22455f9e1514b4405d16ff379532477aed331cd28908e8d0ef572ee76937ee5f382c95dc62e5dd97fa911603d5
languageName: node
linkType: hard
"@jupyterlab/coreutils@npm:^6.0.0":
version: 6.0.0
resolution: "@jupyterlab/coreutils@npm:6.0.0"
dependencies:
"@lumino/coreutils": ^2.1.1
"@lumino/disposable": ^2.1.1
"@lumino/signaling": ^2.1.1
minimist: ~1.2.0
path-browserify: ^1.0.0
url-parse: ~1.5.4
checksum: c46bb60af792186b4d9d60378fdb2f03473055736e438e05971bcbf1d5edb62c7722f1465e5ef2fd2dc9c4b5b6043301012478b218cf6c475a99914b26a1fd14
languageName: node
linkType: hard
"@jupyterlab/docmanager@npm:^4.0.0":
version: 4.0.0
resolution: "@jupyterlab/docmanager@npm:4.0.0"
dependencies:
"@jupyterlab/apputils": ^4.0.0
"@jupyterlab/coreutils": ^6.0.0
"@jupyterlab/docregistry": ^4.0.0
"@jupyterlab/services": ^7.0.0
"@jupyterlab/statusbar": ^4.0.0
"@jupyterlab/translation": ^4.0.0
"@jupyterlab/ui-components": ^4.0.0
"@lumino/algorithm": ^2.0.0
"@lumino/coreutils": ^2.1.1
"@lumino/disposable": ^2.1.1
"@lumino/messaging": ^2.0.0
"@lumino/properties": ^2.0.0
"@lumino/signaling": ^2.1.1
"@lumino/widgets": ^2.1.1
react: ^18.2.0
checksum: d9495bea5f5e5de2d133be0ea097b9d2634575d1054dafb198d49398bfed6b9ff52d5d2ce0848ae11462fa5070f6651eccda3242f867661758f135b0703839f9
languageName: node
linkType: hard
"@jupyterlab/docregistry@npm:^4.0.0":
version: 4.0.0
resolution: "@jupyterlab/docregistry@npm:4.0.0"
dependencies:
"@jupyter/ydoc": ^1.0.2
"@jupyterlab/apputils": ^4.0.0
"@jupyterlab/codeeditor": ^4.0.0
"@jupyterlab/coreutils": ^6.0.0
"@jupyterlab/observables": ^5.0.0
"@jupyterlab/rendermime": ^4.0.0
"@jupyterlab/rendermime-interfaces": ^3.8.0
"@jupyterlab/services": ^7.0.0
"@jupyterlab/translation": ^4.0.0
"@jupyterlab/ui-components": ^4.0.0
"@lumino/algorithm": ^2.0.0
"@lumino/coreutils": ^2.1.1
"@lumino/disposable": ^2.1.1
"@lumino/messaging": ^2.0.0
"@lumino/properties": ^2.0.0
"@lumino/signaling": ^2.1.1
"@lumino/widgets": ^2.1.1
checksum: 8927ea10312238333d1036ea6f4047d86779120cdf6c8391f91e5d859e85d504c2345f629a2a8cf50cdc394739828cc4868a46ebefe1c20932a2f496463ca250
languageName: node
linkType: hard
"@jupyterlab/documentsearch@npm:^4.0.0":
version: 4.0.0
resolution: "@jupyterlab/documentsearch@npm:4.0.0"
dependencies:
"@jupyterlab/apputils": ^4.0.0
"@jupyterlab/translation": ^4.0.0
"@jupyterlab/ui-components": ^4.0.0
"@lumino/coreutils": ^2.1.1
"@lumino/disposable": ^2.1.1
"@lumino/messaging": ^2.0.0
"@lumino/polling": ^2.1.1
"@lumino/signaling": ^2.1.1
"@lumino/widgets": ^2.1.1
react: ^18.2.0
checksum: 686befb5ae48a485530f298f7d067b5c77d17524fff779f8c468857c44baab75f1ed3c504546f6440cf0cfc8420e617abcbaa120208d2166cfb124a6455e5472
languageName: node
linkType: hard
"@jupyterlab/filebrowser@npm:^4.0.0":
version: 4.0.0
resolution: "@jupyterlab/filebrowser@npm:4.0.0"
dependencies:
"@jupyterlab/apputils": ^4.0.0
"@jupyterlab/coreutils": ^6.0.0
"@jupyterlab/docmanager": ^4.0.0
"@jupyterlab/docregistry": ^4.0.0
"@jupyterlab/services": ^7.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/coreutils": ^2.1.1
"@lumino/disposable": ^2.1.1
"@lumino/domutils": ^2.0.0
"@lumino/dragdrop": ^2.1.1
"@lumino/messaging": ^2.0.0
"@lumino/polling": ^2.1.1
"@lumino/signaling": ^2.1.1
"@lumino/virtualdom": ^2.0.0
"@lumino/widgets": ^2.1.1
react: ^18.2.0
checksum: 58e61e9b0e6d373fa5cd93398dfee146c635d5f5008d00e640c4f0687ed8ed7135779806e159703a88ecd55f45b1725214c657a466e63577b70b0380c5852df5
languageName: node
linkType: hard
"@jupyterlab/lsp@npm:^4.0.0":
version: 4.0.0
resolution: "@jupyterlab/lsp@npm:4.0.0"
dependencies:
"@jupyterlab/apputils": ^4.0.0
"@jupyterlab/codeeditor": ^4.0.0
"@jupyterlab/coreutils": ^6.0.0
"@jupyterlab/docregistry": ^4.0.0
"@jupyterlab/services": ^7.0.0
"@jupyterlab/translation": ^4.0.0
"@lumino/coreutils": ^2.1.1
"@lumino/disposable": ^2.1.1
"@lumino/signaling": ^2.1.1
lodash.mergewith: ^4.6.1
vscode-jsonrpc: ^6.0.0
vscode-languageserver-protocol: ^3.17.0
vscode-ws-jsonrpc: ~1.0.2
checksum: 7657fe88fc155e7a988558b9b8d34a36d6bb5fee0571a0953ac77add170f82b2f7ad1d76c1f90185087daebb4d40c5ff9e7f44478abbcb485736f7806d3d7fb8
languageName: node
linkType: hard
"@jupyterlab/nbformat@npm:^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0, @jupyterlab/nbformat@npm:^4.0.0":
version: 4.0.0
resolution: "@jupyterlab/nbformat@npm:4.0.0"
dependencies:
"@lumino/coreutils": ^2.1.1
checksum: 152da6b9622c7683543ad2bd9525857a8a39b4b8a5474998e921232f108c366dd8625daeb14e2cc2aa8aac124b9a5d16f285310cd241c9769d51af80730dbd59
languageName: node
linkType: hard
"@jupyterlab/notebook@npm:^4.0.0":
version: 4.0.0
resolution: "@jupyterlab/notebook@npm:4.0.0"
dependencies:
"@jupyter/ydoc": ^1.0.2
"@jupyterlab/apputils": ^4.0.0
"@jupyterlab/cells": ^4.0.0
"@jupyterlab/codeeditor": ^4.0.0
"@jupyterlab/codemirror": ^4.0.0
"@jupyterlab/coreutils": ^6.0.0
"@jupyterlab/docregistry": ^4.0.0
"@jupyterlab/documentsearch": ^4.0.0
"@jupyterlab/lsp": ^4.0.0
"@jupyterlab/nbformat": ^4.0.0
"@jupyterlab/observables": ^5.0.0
"@jupyterlab/rendermime": ^4.0.0
"@jupyterlab/services": ^7.0.0
"@jupyterlab/settingregistry": ^4.0.0
"@jupyterlab/statusbar": ^4.0.0
"@jupyterlab/toc": ^6.0.0
"@jupyterlab/translation": ^4.0.0
"@jupyterlab/ui-components": ^4.0.0
"@lumino/algorithm": ^2.0.0
"@lumino/coreutils": ^2.1.1
"@lumino/domutils": ^2.0.0
"@lumino/dragdrop": ^2.1.1
"@lumino/messaging": ^2.0.0
"@lumino/properties": ^2.0.0
"@lumino/signaling": ^2.1.1
"@lumino/virtualdom": ^2.0.0
"@lumino/widgets": ^2.1.1
react: ^18.2.0
checksum: 29ba29519fba567d0d686426b750d58bfddf6235cb3ad812ef671750637dbfcdafb5348feda44168d83f65936e5478562cffdc7ceeabac221fcdfab38f11bc31
languageName: node
linkType: hard
"@jupyterlab/observables@npm:^4.0.0":
version: 4.6.5
resolution: "@jupyterlab/observables@npm:4.6.5"
dependencies:
"@lumino/algorithm": ^1.9.0
"@lumino/coreutils": ^1.11.0
"@lumino/disposable": ^1.10.0
"@lumino/messaging": ^1.10.0
"@lumino/signaling": ^1.10.0
checksum: 503b4f1c7d61fa3e7c69dc740a4d4a45948257434ebdcb875e86b03a818573250fe9824725a68c0d78715e1bac5c40cd412f387a159c8a40211115542a202030
languageName: node
linkType: hard
"@jupyterlab/observables@npm:^5.0.0":
version: 5.0.0
resolution: "@jupyterlab/observables@npm:5.0.0"
dependencies:
"@lumino/algorithm": ^2.0.0
"@lumino/coreutils": ^2.1.1
"@lumino/disposable": ^2.1.1
"@lumino/messaging": ^2.0.0
"@lumino/signaling": ^2.1.1
checksum: 1554f473e0ab0eef288ea86945c03a07d79f478bfdf55651036161a58cd1d9a0695e202ced0ebe3a6863f73ba12ccd85b86f7a4c2e6f9fe41ccddb0c4fbbc33e
languageName: node
linkType: hard
"@jupyterlab/outputarea@npm:^4.0.0":
version: 4.0.0
resolution: "@jupyterlab/outputarea@npm:4.0.0"
dependencies:
"@jupyterlab/apputils": ^4.0.0
"@jupyterlab/nbformat": ^4.0.0
"@jupyterlab/observables": ^5.0.0
"@jupyterlab/rendermime": ^4.0.0
"@jupyterlab/rendermime-interfaces": ^3.8.0
"@jupyterlab/services": ^7.0.0
"@jupyterlab/translation": ^4.0.0
"@lumino/algorithm": ^2.0.0
"@lumino/coreutils": ^2.1.1
"@lumino/disposable": ^2.1.1
"@lumino/messaging": ^2.0.0
"@lumino/properties": ^2.0.0
"@lumino/signaling": ^2.1.1
"@lumino/widgets": ^2.1.1
checksum: d2c22e1fe1ebe4407e7a5d383addda64561b5a3afda277a0c4750be48bf30fbb90ee6a3401ac0a9410a7e3c969792d34bc2dcc880806fa3b290ecace01710e80
languageName: node
linkType: hard
"@jupyterlab/rendermime-interfaces@npm:^3.8.0":
version: 3.8.0
resolution: "@jupyterlab/rendermime-interfaces@npm:3.8.0"
dependencies:
"@lumino/coreutils": ^2.1.1
"@lumino/widgets": ^2.1.1
checksum: 5e70a58a4d8aa7380a041d267972851b9b3fa5e4d68d254ede51c9e5bea4a76b38d47bc5c512e2fd84cd297f5bcaf9cbc9f73ba0824b5b910b10043309a820c7
languageName: node
linkType: hard
"@jupyterlab/rendermime@npm:^4.0.0":
version: 4.0.0
resolution: "@jupyterlab/rendermime@npm:4.0.0"
dependencies:
"@jupyterlab/apputils": ^4.0.0
"@jupyterlab/coreutils": ^6.0.0
"@jupyterlab/nbformat": ^4.0.0
"@jupyterlab/observables": ^5.0.0
"@jupyterlab/rendermime-interfaces": ^3.8.0
"@jupyterlab/services": ^7.0.0
"@jupyterlab/translation": ^4.0.0
"@lumino/coreutils": ^2.1.1
"@lumino/messaging": ^2.0.0
"@lumino/signaling": ^2.1.1
"@lumino/widgets": ^2.1.1
lodash.escape: ^4.0.1
checksum: fb6373517bf2fa2557b38ccf53ba95b45c9327f86f14726dedd433f0b3466f439ab98cb2c8ae10aded9f269bf7c11225765e286aeca56f3755bada8f5d5e102a
languageName: node
linkType: hard
"@jupyterlab/services@npm:^7.0.0":
version: 7.0.0
resolution: "@jupyterlab/services@npm:7.0.0"
dependencies:
"@jupyter/ydoc": ^1.0.2
"@jupyterlab/coreutils": ^6.0.0
"@jupyterlab/nbformat": ^4.0.0
"@jupyterlab/settingregistry": ^4.0.0
"@jupyterlab/statedb": ^4.0.0
"@lumino/coreutils": ^2.1.1
"@lumino/disposable": ^2.1.1
"@lumino/polling": ^2.1.1
"@lumino/properties": ^2.0.0
"@lumino/signaling": ^2.1.1
ws: ^8.11.0
checksum: 96e986e8007247aa5258586263e31e48dfa6e7e7bb2a9d61f699e41b291f50c8653a9c42ae340a428c9af58946c47f7021ccb6b79b74b750cf1547b8d6c81b03
languageName: node
linkType: hard
"@jupyterlab/settingregistry@npm:^4.0.0":
version: 4.0.0
resolution: "@jupyterlab/settingregistry@npm:4.0.0"
dependencies: