-
-
Notifications
You must be signed in to change notification settings - Fork 63
/
yarn.lock
6195 lines (5591 loc) · 211 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
"@codemirror/autocomplete@npm:^6.0.0, @codemirror/autocomplete@npm:^6.3.2, @codemirror/autocomplete@npm:^6.5.1":
version: 6.8.0
resolution: "@codemirror/autocomplete@npm:6.8.0"
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: b251a21065a954be7a4a9cf6fd1dce6027bd79ac7006728c0fde364b50c75ee4079bd53acf9890fdfdca78453c863f0c010010c26010cd9acdede3480273ad23
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": ^6.0.0
"@lezer/cpp": ^1.0.0
checksum: bb9eba482cca80037ce30c7b193cf45eff19ccbb773764fddf2071756468ecc25aa53c777c943635054f89095b0247b9b50c339e107e41e68d34d12a7295f9a9
languageName: node
linkType: hard
"@codemirror/lang-css@npm:^6.0.0, @codemirror/lang-css@npm:^6.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, @codemirror/lang-html@npm:^6.4.3":
version: 6.4.4
resolution: "@codemirror/lang-html@npm:6.4.4"
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: 99693fee5392c85b0974c4cfd015aa9ba6e015baf8abbddfbb1f5f8c4801e78c3d053d8b19e1dafe3d913b2902e97ed6c95d8a237cd496e8fbcc1548cebe6485
languageName: node
linkType: hard
"@codemirror/lang-java@npm:^6.0.1":
version: 6.0.1
resolution: "@codemirror/lang-java@npm:6.0.1"
dependencies:
"@codemirror/language": ^6.0.0
"@lezer/java": ^1.0.0
checksum: 4679104683cbffcd224ac04c7e5d144b787494697b26470b07017259035b7bb3fa62609d9a61bfbc566f1756d9f972f9f26d96a3c1362dd48881c1172f9a914d
languageName: node
linkType: hard
"@codemirror/lang-javascript@npm:^6.0.0, @codemirror/lang-javascript@npm:^6.1.7":
version: 6.1.9
resolution: "@codemirror/lang-javascript@npm:6.1.9"
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: 6c79b51c61d37b3f4dde6312df02183045c31f055e5cf8550b497f39798b823b4e380a641a2cfc97f3f26fd4e89194258d8ef741c42acd72b3f2e18257b427a5
languageName: node
linkType: hard
"@codemirror/lang-json@npm:^6.0.1":
version: 6.0.1
resolution: "@codemirror/lang-json@npm:6.0.1"
dependencies:
"@codemirror/language": ^6.0.0
"@lezer/json": ^1.0.0
checksum: e9e87d50ff7b81bd56a6ab50740b1dd54e9a93f1be585e1d59d0642e2148842ea1528ac7b7221eb4ddc7fe84bbc28065144cc3ab86f6e06c6aeb2d4b4e62acf1
languageName: node
linkType: hard
"@codemirror/lang-markdown@npm:^6.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": ^6.0.0
"@codemirror/language": ^6.0.0
"@codemirror/state": ^6.0.0
"@lezer/common": ^1.0.0
"@lezer/php": ^1.0.0
checksum: c003a29a426486453fdfddbf7302982fa2aa7f059bf6f1ce4cbf08341b0162eee5e2f50e0d71c418dcd358491631780156d846fe352754d042576172c5d86721
languageName: node
linkType: hard
"@codemirror/lang-python@npm:^6.1.2":
version: 6.1.3
resolution: "@codemirror/lang-python@npm:6.1.3"
dependencies:
"@codemirror/autocomplete": ^6.3.2
"@codemirror/language": ^6.8.0
"@lezer/python": ^1.1.4
checksum: 65a0276a4503e4e3b70dd28d1c93ef472632b6d2c4bf3ae92d305d14ee8cf60b0bbbf62d5ceb51294de9598d9e2d42eafcde26f317ee7b90d0a11dfa863c1d1a
languageName: node
linkType: hard
"@codemirror/lang-rust@npm:^6.0.1":
version: 6.0.1
resolution: "@codemirror/lang-rust@npm:6.0.1"
dependencies:
"@codemirror/language": ^6.0.0
"@lezer/rust": ^1.0.0
checksum: 8a439944cb22159b0b3465ca4fa4294c69843219d5d30e278ae6df8e48f30a7a9256129723c025ec9b5e694d31a3560fb004300b125ffcd81c22d13825845170
languageName: node
linkType: hard
"@codemirror/lang-sql@npm:^6.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": ^6.0.0
"@lezer/highlight": ^1.0.0
"@lezer/lr": ^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": ^6.0.0
"@codemirror/language": ^6.4.0
"@codemirror/state": ^6.0.0
"@lezer/common": ^1.0.0
"@lezer/xml": ^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, @codemirror/language@npm:^6.8.0":
version: 6.8.0
resolution: "@codemirror/language@npm:6.8.0"
dependencies:
"@codemirror/state": ^6.0.0
"@codemirror/view": ^6.0.0
"@lezer/common": ^1.0.0
"@lezer/highlight": ^1.0.0
"@lezer/lr": ^1.0.0
style-mod: ^4.0.0
checksum: 64408d996641931fa4c6b892e17ee1fdaee0f63d3d84c019a6ea7b1e6d1c774f92357b95c2ebaed60545062b795b72d0a058c03578b2bf4023c87726e97b5d2f
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.2
resolution: "@codemirror/lint@npm:6.2.2"
dependencies:
"@codemirror/state": ^6.0.0
"@codemirror/view": ^6.0.0
crelt: ^1.0.5
checksum: f37dea6f84b5ee74e4e77c0ad244a3e0c10beb26542c5e10b2d5655f1fab3a9e580da2d772f2a6e3b09eb944ef8a52ff4e1b61cb8a02ee78e97f2ae8ae13842a
languageName: node
linkType: hard
"@codemirror/search@npm:^6.3.0":
version: 6.5.0
resolution: "@codemirror/search@npm:6.5.0"
dependencies:
"@codemirror/state": ^6.0.0
"@codemirror/view": ^6.0.0
crelt: ^1.0.5
checksum: 2e9f2344b7dbd4bad79058c105d8cbd02b2bf94c27495310f0e3b6e999010aa080dceea47ef46e35439cc9e131b47c46f7d2eda700ef491b5f2f34bbc8e145ab
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.1
resolution: "@codemirror/state@npm:6.2.1"
checksum: d12a321d0471b264b9d3259042bff913a8b939e8d28d408ff452004538a71ca9d5329df3f8a1d8a9183f5b42a7ef5b200737bcab1065714f5ae8e0a5ba9d59d3
languageName: node
linkType: hard
"@codemirror/view@npm:^6.0.0, @codemirror/view@npm:^6.2.2, @codemirror/view@npm:^6.6.0, @codemirror/view@npm:^6.9.6":
version: 6.13.2
resolution: "@codemirror/view@npm:6.13.2"
dependencies:
"@codemirror/state": ^6.1.4
style-mod: ^4.0.0
w3c-keyname: ^2.2.4
checksum: db0d638fbbe2f9a832674f06512ca55cdb7576a265c01ab8a7b6715d2a50ddf53200f597637b146adebe1df51255fe5bd2d2c74cf1fa539b0434764c0550d3a5
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.4.0
resolution: "@eslint-community/eslint-utils@npm:4.4.0"
dependencies:
eslint-visitor-keys: ^3.3.0
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
checksum: cdfe3ae42b4f572cbfb46d20edafe6f36fc5fb52bf2d90875c58aefe226892b9677fef60820e2832caf864a326fe4fc225714c46e8389ccca04d5f9288aabd22
languageName: node
linkType: hard
"@eslint-community/regexpp@npm:^4.4.0":
version: 4.5.1
resolution: "@eslint-community/regexpp@npm:4.5.1"
checksum: 6d901166d64998d591fab4db1c2f872981ccd5f6fe066a1ad0a93d4e11855ecae6bfb76660869a469563e8882d4307228cebd41142adb409d182f2966771e57e
languageName: node
linkType: hard
"@eslint/eslintrc@npm:^2.0.3":
version: 2.0.3
resolution: "@eslint/eslintrc@npm:2.0.3"
dependencies:
ajv: ^6.12.4
debug: ^4.3.2
espree: ^9.5.2
globals: ^13.19.0
ignore: ^5.2.0
import-fresh: ^3.2.1
js-yaml: ^4.1.0
minimatch: ^3.1.2
strip-json-comments: ^3.1.1
checksum: ddc51f25f8524d8231db9c9bf03177e503d941a332e8d5ce3b10b09241be4d5584a378a529a27a527586bfbccf3031ae539eb891352033c340b012b4d0c81d92
languageName: node
linkType: hard
"@eslint/js@npm:8.42.0":
version: 8.42.0
resolution: "@eslint/js@npm:8.42.0"
checksum: 750558843ac458f7da666122083ee05306fc087ecc1e5b21e7e14e23885775af6c55bcc92283dff1862b7b0d8863ec676c0f18c7faf1219c722fe91a8ece56b6
languageName: node
linkType: hard
"@fortawesome/fontawesome-free@npm:^5.12.0":
version: 5.15.4
resolution: "@fortawesome/fontawesome-free@npm:5.15.4"
checksum: 32281c3df4075290d9a96dfc22f72fadb3da7055d4117e48d34046b8c98032a55fa260ae351b0af5d6f6fb57a2f5d79a4abe52af456da35195f7cb7dda27b4a2
languageName: node
linkType: hard
"@humanwhocodes/config-array@npm:^0.11.10":
version: 0.11.10
resolution: "@humanwhocodes/config-array@npm:0.11.10"
dependencies:
"@humanwhocodes/object-schema": ^1.2.1
debug: ^4.1.1
minimatch: ^3.0.5
checksum: 1b1302e2403d0e35bc43e66d67a2b36b0ad1119efc704b5faff68c41f791a052355b010fb2d27ef022670f550de24cd6d08d5ecf0821c16326b7dcd0ee5d5d8a
languageName: node
linkType: hard
"@humanwhocodes/module-importer@npm:^1.0.1":
version: 1.0.1
resolution: "@humanwhocodes/module-importer@npm:1.0.1"
checksum: 0fd22007db8034a2cdf2c764b140d37d9020bbfce8a49d3ec5c05290e77d4b0263b1b972b752df8c89e5eaa94073408f2b7d977aed131faf6cf396ebb5d7fb61
languageName: node
linkType: hard
"@humanwhocodes/object-schema@npm:^1.2.1":
version: 1.2.1
resolution: "@humanwhocodes/object-schema@npm:1.2.1"
checksum: a824a1ec31591231e4bad5787641f59e9633827d0a2eaae131a288d33c9ef0290bd16fda8da6f7c0fcb014147865d12118df10db57f27f41e20da92369fcb3f1
languageName: node
linkType: hard
"@isaacs/cliui@npm:^8.0.2":
version: 8.0.2
resolution: "@isaacs/cliui@npm:8.0.2"
dependencies:
string-width: ^5.1.2
string-width-cjs: "npm:string-width@^4.2.0"
strip-ansi: ^7.0.1
strip-ansi-cjs: "npm:strip-ansi@^6.0.1"
wrap-ansi: ^8.1.0
wrap-ansi-cjs: "npm:wrap-ansi@^7.0.0"
checksum: 4a473b9b32a7d4d3cfb7a614226e555091ff0c5a29a1734c28c72a182c2f6699b26fc6b5c2131dfd841e86b185aea714c72201d7c98c2fba5f17709333a67aeb
languageName: node
linkType: hard
"@jridgewell/gen-mapping@npm:^0.3.0":
version: 0.3.3
resolution: "@jridgewell/gen-mapping@npm:0.3.3"
dependencies:
"@jridgewell/set-array": ^1.0.1
"@jridgewell/sourcemap-codec": ^1.4.10
"@jridgewell/trace-mapping": ^0.3.9
checksum: 4a74944bd31f22354fc01c3da32e83c19e519e3bbadafa114f6da4522ea77dd0c2842607e923a591d60a76699d819a2fbb6f3552e277efdb9b58b081390b60ab
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.3":
version: 0.3.3
resolution: "@jridgewell/source-map@npm:0.3.3"
dependencies:
"@jridgewell/gen-mapping": ^0.3.0
"@jridgewell/trace-mapping": ^0.3.9
checksum: ae1302146339667da5cd6541260ecbef46ae06819a60f88da8f58b3e64682f787c09359933d050dea5d2173ea7fa40f40dd4d4e7a8d325c5892cccd99aaf8959
languageName: node
linkType: hard
"@jridgewell/sourcemap-codec@npm:1.4.14":
version: 1.4.14
resolution: "@jridgewell/sourcemap-codec@npm:1.4.14"
checksum: 61100637b6d173d3ba786a5dff019e1a74b1f394f323c1fee337ff390239f053b87266c7a948777f4b1ee68c01a8ad0ab61e5ff4abb5a012a0b091bec391ab97
languageName: node
linkType: hard
"@jridgewell/sourcemap-codec@npm:^1.4.10":
version: 1.4.15
resolution: "@jridgewell/sourcemap-codec@npm:1.4.15"
checksum: b881c7e503db3fc7f3c1f35a1dd2655a188cc51a3612d76efc8a6eb74728bef5606e6758ee77423e564092b4a518aba569bbb21c9bac5ab7a35b0c6ae7e344c8
languageName: node
linkType: hard
"@jridgewell/trace-mapping@npm:^0.3.17, @jridgewell/trace-mapping@npm:^0.3.9":
version: 0.3.18
resolution: "@jridgewell/trace-mapping@npm:0.3.18"
dependencies:
"@jridgewell/resolve-uri": 3.1.0
"@jridgewell/sourcemap-codec": 1.4.14
checksum: 0572669f855260808c16fe8f78f5f1b4356463b11d3f2c7c0b5580c8ba1cbf4ae53efe9f627595830856e57dbac2325ac17eb0c3dd0ec42102e6f227cc289c02
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.2
resolution: "@jupyterlab/application@npm:4.0.2"
dependencies:
"@fortawesome/fontawesome-free": ^5.12.0
"@jupyterlab/apputils": ^4.1.2
"@jupyterlab/coreutils": ^6.0.2
"@jupyterlab/docregistry": ^4.0.2
"@jupyterlab/rendermime": ^4.0.2
"@jupyterlab/rendermime-interfaces": ^3.8.2
"@jupyterlab/services": ^7.0.2
"@jupyterlab/statedb": ^4.0.2
"@jupyterlab/translation": ^4.0.2
"@jupyterlab/ui-components": ^4.0.2
"@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: 5709b59c794e481d6e9b6c5575042c569f38058b6fc2a2c1d2831bdd0d1b0ff4df60c17132753ed8d9be1e2a28e4a0a18310d2b80e8ff5812fdaccbb1ee18bce
languageName: node
linkType: hard
"@jupyterlab/apputils@npm:^4.0.0, @jupyterlab/apputils@npm:^4.1.2":
version: 4.1.2
resolution: "@jupyterlab/apputils@npm:4.1.2"
dependencies:
"@jupyterlab/coreutils": ^6.0.2
"@jupyterlab/observables": ^5.0.2
"@jupyterlab/rendermime-interfaces": ^3.8.2
"@jupyterlab/services": ^7.0.2
"@jupyterlab/settingregistry": ^4.0.2
"@jupyterlab/statedb": ^4.0.2
"@jupyterlab/statusbar": ^4.0.2
"@jupyterlab/translation": ^4.0.2
"@jupyterlab/ui-components": ^4.0.2
"@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: 89a445478b54d1132e753022a81393dd3e53f7f36de2d9e905ece3bae911382ddff6afc16c4b649646b1a125c774ccc83fa4d92e29a48a423d4410a4a5554bb4
languageName: node
linkType: hard
"@jupyterlab/attachments@npm:^4.0.2":
version: 4.0.2
resolution: "@jupyterlab/attachments@npm:4.0.2"
dependencies:
"@jupyterlab/nbformat": ^4.0.2
"@jupyterlab/observables": ^5.0.2
"@jupyterlab/rendermime": ^4.0.2
"@jupyterlab/rendermime-interfaces": ^3.8.2
"@lumino/disposable": ^2.1.1
"@lumino/signaling": ^2.1.1
checksum: 178d6abf3ff0767d87f78a79470760cf0025c3171e65dfd9a07916f3f6322f1080a21985ccdfdfeeec6fb73fb9aac9179cc413c43e4e33a45bcbcefa6cb97714
languageName: node
linkType: hard
"@jupyterlab/builder@npm:^4.0.0":
version: 4.0.2
resolution: "@jupyterlab/builder@npm:4.0.2"
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: bb3ecbde5b2207d38577ad4f49af3b92a68b093d56b9eb1611fa967e553aab3e899a6e651edf90834e1b2d9ced57078e976ac03791178104962325423da25e7e
languageName: node
linkType: hard
"@jupyterlab/cells@npm:^4.0.2":
version: 4.0.2
resolution: "@jupyterlab/cells@npm:4.0.2"
dependencies:
"@codemirror/state": ^6.2.0
"@codemirror/view": ^6.9.6
"@jupyter/ydoc": ^1.0.2
"@jupyterlab/apputils": ^4.1.2
"@jupyterlab/attachments": ^4.0.2
"@jupyterlab/codeeditor": ^4.0.2
"@jupyterlab/codemirror": ^4.0.2
"@jupyterlab/coreutils": ^6.0.2
"@jupyterlab/documentsearch": ^4.0.2
"@jupyterlab/filebrowser": ^4.0.2
"@jupyterlab/nbformat": ^4.0.2
"@jupyterlab/observables": ^5.0.2
"@jupyterlab/outputarea": ^4.0.2
"@jupyterlab/rendermime": ^4.0.2
"@jupyterlab/services": ^7.0.2
"@jupyterlab/toc": ^6.0.2
"@jupyterlab/translation": ^4.0.2
"@jupyterlab/ui-components": ^4.0.2
"@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: 92aa9ced743b41fbe5c0d3700762e3f825c9b01fb9b5684c909de330a62561a7b05af27390ca5993f905ec7141fa01072446b51232a8616181dd4eaed178b77f
languageName: node
linkType: hard
"@jupyterlab/codeeditor@npm:^4.0.0, @jupyterlab/codeeditor@npm:^4.0.2":
version: 4.0.2
resolution: "@jupyterlab/codeeditor@npm:4.0.2"
dependencies:
"@codemirror/state": ^6.2.0
"@jupyter/ydoc": ^1.0.2
"@jupyterlab/coreutils": ^6.0.2
"@jupyterlab/nbformat": ^4.0.2
"@jupyterlab/observables": ^5.0.2
"@jupyterlab/statusbar": ^4.0.2
"@jupyterlab/translation": ^4.0.2
"@jupyterlab/ui-components": ^4.0.2
"@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: 61b638011acd21195fcd53b3b1f1df54abef0e0db85937f41f3a323cc6df75bcd63261739518bfd82b6bf45f638a090687cb43c2b66880546cff3e962d2e5994
languageName: node
linkType: hard
"@jupyterlab/codemirror@npm:^4.0.2":
version: 4.0.2
resolution: "@jupyterlab/codemirror@npm:4.0.2"
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.2
"@jupyterlab/coreutils": ^6.0.2
"@jupyterlab/documentsearch": ^4.0.2
"@jupyterlab/nbformat": ^4.0.2
"@jupyterlab/translation": ^4.0.2
"@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: 1ddf08979874fc522eb88de6a743129640c5721410a8c6feb58d2e37b35ebcdeee5c217890e7f9561a595ca8b1c9b4a222b07da5e2e95c1e2dcd8c467378c50d
languageName: node
linkType: hard
"@jupyterlab/console@npm:^4.0.0":
version: 4.0.2
resolution: "@jupyterlab/console@npm:4.0.2"
dependencies:
"@codemirror/state": ^6.2.0
"@codemirror/view": ^6.9.6
"@jupyter/ydoc": ^1.0.2
"@jupyterlab/apputils": ^4.1.2
"@jupyterlab/cells": ^4.0.2
"@jupyterlab/codeeditor": ^4.0.2
"@jupyterlab/coreutils": ^6.0.2
"@jupyterlab/nbformat": ^4.0.2
"@jupyterlab/observables": ^5.0.2
"@jupyterlab/rendermime": ^4.0.2
"@jupyterlab/services": ^7.0.2
"@jupyterlab/translation": ^4.0.2
"@jupyterlab/ui-components": ^4.0.2
"@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
checksum: 4a7a4a8a06663902840c4216b257e380105366c7808f5f4ba891d45fb60b4f7605c455d2d0290dcc576dcc4c833a00d140c71604ecbeab3f2054c460fd6bbc79
languageName: node
linkType: hard
"@jupyterlab/coreutils@npm:^6.0.0, @jupyterlab/coreutils@npm:^6.0.2":
version: 6.0.2
resolution: "@jupyterlab/coreutils@npm:6.0.2"
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: c2e9b9bf7227f68bb6b91044d2ac3808a872ac967e22f6aee10241d5dbc78a19deee65f91dd87c080f63170a760c96c99cb31e0e0b6f32c6341e432d781355ce
languageName: node
linkType: hard
"@jupyterlab/docmanager@npm:^4.0.2":
version: 4.0.2
resolution: "@jupyterlab/docmanager@npm:4.0.2"
dependencies:
"@jupyterlab/apputils": ^4.1.2
"@jupyterlab/coreutils": ^6.0.2
"@jupyterlab/docregistry": ^4.0.2
"@jupyterlab/services": ^7.0.2
"@jupyterlab/statusbar": ^4.0.2
"@jupyterlab/translation": ^4.0.2
"@jupyterlab/ui-components": ^4.0.2
"@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: dca1f56209608a82eebb0a365657f955bc8c546d66e00ec7747e753e3c76c8c0a5ed24b51736d157d2ed9d8264dc69545221e8fc2aa6af3eb6ec7eb4fd537a69
languageName: node
linkType: hard
"@jupyterlab/docregistry@npm:^4.0.0, @jupyterlab/docregistry@npm:^4.0.2":
version: 4.0.2
resolution: "@jupyterlab/docregistry@npm:4.0.2"
dependencies:
"@jupyter/ydoc": ^1.0.2
"@jupyterlab/apputils": ^4.1.2
"@jupyterlab/codeeditor": ^4.0.2
"@jupyterlab/coreutils": ^6.0.2
"@jupyterlab/observables": ^5.0.2
"@jupyterlab/rendermime": ^4.0.2
"@jupyterlab/rendermime-interfaces": ^3.8.2
"@jupyterlab/services": ^7.0.2
"@jupyterlab/translation": ^4.0.2
"@jupyterlab/ui-components": ^4.0.2
"@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: b88c6a6ab7825aff95541c8a9f4381ccee4533e8c5bda588538c8a110dd8c6cb413e73345bc8fbf74aebe9fed4f9d298de6efa08378212869510e81ccb9f10ca
languageName: node
linkType: hard
"@jupyterlab/documentsearch@npm:^4.0.2":
version: 4.0.2
resolution: "@jupyterlab/documentsearch@npm:4.0.2"
dependencies:
"@jupyterlab/apputils": ^4.1.2
"@jupyterlab/translation": ^4.0.2
"@jupyterlab/ui-components": ^4.0.2
"@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: d621722648f8d0e9c17c4df093bf02de0b3c5c1e8cb4b4b46482114700c4ca47dbb35831d2f046b0a28c950c6cd7442cdd791357af87d6e4df5da3b347d463e0
languageName: node
linkType: hard
"@jupyterlab/filebrowser@npm:^4.0.2":
version: 4.0.2
resolution: "@jupyterlab/filebrowser@npm:4.0.2"
dependencies:
"@jupyterlab/apputils": ^4.1.2
"@jupyterlab/coreutils": ^6.0.2
"@jupyterlab/docmanager": ^4.0.2
"@jupyterlab/docregistry": ^4.0.2
"@jupyterlab/services": ^7.0.2
"@jupyterlab/statedb": ^4.0.2
"@jupyterlab/statusbar": ^4.0.2
"@jupyterlab/translation": ^4.0.2
"@jupyterlab/ui-components": ^4.0.2
"@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: ae5426f6811488cb90538f8ec74fa87d4ead847a2727ba64d35b4b2d81e6058bc6340853affedb2e4e7362627453b8dd1e108142a425bc039745714058ce5d73
languageName: node
linkType: hard
"@jupyterlab/lsp@npm:^4.0.2":
version: 4.0.2
resolution: "@jupyterlab/lsp@npm:4.0.2"
dependencies:
"@jupyterlab/apputils": ^4.1.2
"@jupyterlab/codeeditor": ^4.0.2
"@jupyterlab/coreutils": ^6.0.2
"@jupyterlab/docregistry": ^4.0.2
"@jupyterlab/services": ^7.0.2
"@jupyterlab/translation": ^4.0.2
"@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: 476517f4cd9ce7758638f96c1037f26d758ec8e102d87b9472cbaa6208d94bcfc1da0ec853202761f6542404a034932657b14f82e2355d312b3f0c5c140cfbfd
languageName: node
linkType: hard
"@jupyterlab/mainmenu@npm:^4.0.0":
version: 4.0.2
resolution: "@jupyterlab/mainmenu@npm:4.0.2"
dependencies:
"@jupyterlab/apputils": ^4.1.2
"@jupyterlab/translation": ^4.0.2
"@jupyterlab/ui-components": ^4.0.2
"@lumino/algorithm": ^2.0.0
"@lumino/commands": ^2.1.1
"@lumino/coreutils": ^2.1.1
"@lumino/widgets": ^2.1.1
checksum: de84dad79c237aad7db8c433c598d0e57e415bafac0e2029ddbe200ab8129e18ddd45674b5506e8f9cd8c23af491ec30c39ee2e9478647af72cf419c266127c7
languageName: node
linkType: hard
"@jupyterlab/nbformat@npm:^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0, @jupyterlab/nbformat@npm:^4.0.0, @jupyterlab/nbformat@npm:^4.0.2":
version: 4.0.2
resolution: "@jupyterlab/nbformat@npm:4.0.2"
dependencies:
"@lumino/coreutils": ^2.1.1
checksum: cccd1c7fd8717ccece1f7642f3f7218103c3baa479fce85666770719b3359116e5279cdd97e2b584122a793b437fc9ece7055d1da27ad35a090f90398a76d59f
languageName: node
linkType: hard
"@jupyterlab/notebook@npm:^4.0.0":
version: 4.0.2
resolution: "@jupyterlab/notebook@npm:4.0.2"
dependencies:
"@jupyter/ydoc": ^1.0.2
"@jupyterlab/apputils": ^4.1.2
"@jupyterlab/cells": ^4.0.2
"@jupyterlab/codeeditor": ^4.0.2
"@jupyterlab/codemirror": ^4.0.2
"@jupyterlab/coreutils": ^6.0.2
"@jupyterlab/docregistry": ^4.0.2
"@jupyterlab/documentsearch": ^4.0.2
"@jupyterlab/lsp": ^4.0.2
"@jupyterlab/nbformat": ^4.0.2
"@jupyterlab/observables": ^5.0.2
"@jupyterlab/rendermime": ^4.0.2
"@jupyterlab/services": ^7.0.2
"@jupyterlab/settingregistry": ^4.0.2
"@jupyterlab/statusbar": ^4.0.2
"@jupyterlab/toc": ^6.0.2
"@jupyterlab/translation": ^4.0.2
"@jupyterlab/ui-components": ^4.0.2
"@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: 053cde5377aceac7ff6fe30e734354df1839cbf84bfd19f7d3992a1aaddcd66f5c8470bb2537c94b28dfdb194dfdacfaa38207fd2d4989b0575b27c20396bbfe
languageName: node
linkType: hard
"@jupyterlab/observables@npm:^5.0.2":
version: 5.0.2
resolution: "@jupyterlab/observables@npm:5.0.2"
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: 6d206873f3e2bfd95267fde6fae565eef5c1f7df93dc0a27091ea3eceea5cbded6c8b90eb5d4311e3b6158385455ed358602cb4b3daee717f6cc195b259cfb24
languageName: node
linkType: hard
"@jupyterlab/outputarea@npm:^4.0.2":
version: 4.0.2
resolution: "@jupyterlab/outputarea@npm:4.0.2"
dependencies:
"@jupyterlab/apputils": ^4.1.2
"@jupyterlab/nbformat": ^4.0.2
"@jupyterlab/observables": ^5.0.2
"@jupyterlab/rendermime": ^4.0.2
"@jupyterlab/rendermime-interfaces": ^3.8.2
"@jupyterlab/services": ^7.0.2
"@jupyterlab/translation": ^4.0.2
"@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: 8387b93e7b6bf1a63495eef8a7746870e4210818ff26af5c8ecdf4b9e78433ec47b58ddaa5ab11fbf5cf143802b23a186c90589974cd408cae95330fa3960f32
languageName: node
linkType: hard
"@jupyterlab/rendermime-interfaces@npm:^3.8.2":
version: 3.8.2
resolution: "@jupyterlab/rendermime-interfaces@npm:3.8.2"
dependencies:
"@lumino/coreutils": ^1.11.0 || ^2.1.1
"@lumino/widgets": ^1.37.2 || ^2.1.1
checksum: e1164a4ad7654e5e8af0c1c2f1c8938f01a4bd07e04ff788e8b3adfaa9cb7ef07118c44513648c69263929e1658f02dcbab7aac776c6071228b0b80c8ca4e65a
languageName: node
linkType: hard
"@jupyterlab/rendermime@npm:^4.0.2":
version: 4.0.2
resolution: "@jupyterlab/rendermime@npm:4.0.2"
dependencies:
"@jupyterlab/apputils": ^4.1.2
"@jupyterlab/coreutils": ^6.0.2
"@jupyterlab/nbformat": ^4.0.2
"@jupyterlab/observables": ^5.0.2
"@jupyterlab/rendermime-interfaces": ^3.8.2
"@jupyterlab/services": ^7.0.2
"@jupyterlab/translation": ^4.0.2
"@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: 6118adf39cfe3c5918c9b677ff5d8dbe97ce469427f9969e1d16fba944b53d6e6c9d2c1e2deaaf928cdb94222a8941c7bb7cfc81693683fd07c08e92bc3d6cea
languageName: node
linkType: hard
"@jupyterlab/services@npm:^7.0.0, @jupyterlab/services@npm:^7.0.2":
version: 7.0.2
resolution: "@jupyterlab/services@npm:7.0.2"
dependencies:
"@jupyter/ydoc": ^1.0.2
"@jupyterlab/coreutils": ^6.0.2
"@jupyterlab/nbformat": ^4.0.2
"@jupyterlab/settingregistry": ^4.0.2
"@jupyterlab/statedb": ^4.0.2
"@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: 4a4b5328f2f50ec1d501f67d63fbfb329f37a6c090227e0aecdbbb7316d9df0e5891af47cb948958e9307a0afc52f0ddf05c2be7acb9e2f44e54cf568dc3b90c
languageName: node
linkType: hard
"@jupyterlab/settingregistry@npm:^4.0.0, @jupyterlab/settingregistry@npm:^4.0.2":
version: 4.0.2
resolution: "@jupyterlab/settingregistry@npm:4.0.2"
dependencies:
"@jupyterlab/nbformat": ^4.0.2
"@jupyterlab/statedb": ^4.0.2
"@lumino/commands": ^2.1.1
"@lumino/coreutils": ^2.1.1
"@lumino/disposable": ^2.1.1
"@lumino/signaling": ^2.1.1
"@rjsf/utils": ^5.1.0
ajv: ^8.12.0
json5: ^2.2.3
peerDependencies:
react: ">=16"
checksum: c2e019f70a4f19cf99bc2029c136197f2a750f319e16f8605a6f8d690b6930ac32e24678b090a09f9e949e540cf6b4214d3d3597ec119bd6896db3b456ac6299
languageName: node
linkType: hard
"@jupyterlab/statedb@npm:^4.0.0, @jupyterlab/statedb@npm:^4.0.2":
version: 4.0.2
resolution: "@jupyterlab/statedb@npm:4.0.2"
dependencies:
"@lumino/commands": ^2.1.1
"@lumino/coreutils": ^2.1.1
"@lumino/disposable": ^2.1.1
"@lumino/properties": ^2.0.0
"@lumino/signaling": ^2.1.1
checksum: 88fc80914f4c128ae6b0630ffe97111cc95a8edc4f34e749615aa8396262d74efcc82e02d0c7c2dcd0268b7cc35a0bfbd7455a4b6cb9203bcad488e1cbad5c25
languageName: node
linkType: hard
"@jupyterlab/statusbar@npm:^4.0.2":
version: 4.0.2
resolution: "@jupyterlab/statusbar@npm:4.0.2"
dependencies:
"@jupyterlab/ui-components": ^4.0.2
"@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
"@lumino/widgets": ^2.1.1
react: ^18.2.0
checksum: d792eb8fca00ac5ec7d5abcb3694db5c80706ec468aa4a9bef543f02a788d80ca2a9b81def0a846da14aed22dbd4ceffe0c95c0047c5025c2e5d69fc55f739b9
languageName: node
linkType: hard
"@jupyterlab/toc@npm:^6.0.2":
version: 6.0.2
resolution: "@jupyterlab/toc@npm:6.0.2"
dependencies:
"@jupyterlab/apputils": ^4.1.2
"@jupyterlab/coreutils": ^6.0.2
"@jupyterlab/docregistry": ^4.0.2
"@jupyterlab/observables": ^5.0.2
"@jupyterlab/rendermime": ^4.0.2
"@jupyterlab/translation": ^4.0.2
"@jupyterlab/ui-components": ^4.0.2
"@lumino/coreutils": ^2.1.1