-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathyarn.lock
6750 lines (6087 loc) · 243 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: 8
cacheKey: 10c0
"@aashutoshrathi/word-wrap@npm:^1.2.3":
version: 1.2.6
resolution: "@aashutoshrathi/word-wrap@npm:1.2.6"
checksum: 10c0/53c2b231a61a46792b39a0d43bc4f4f776bb4542aa57ee04930676802e5501282c2fc8aac14e4cd1f1120ff8b52616b6ff5ab539ad30aa2277d726444b71619f
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0":
version: 7.22.5
resolution: "@babel/code-frame@npm:7.22.5"
dependencies:
"@babel/highlight": "npm:^7.22.5"
checksum: 10c0/0b6c5eaf9e58be7140ac790b7bdf8148e8a24e26502dcaa50f157259c083b0584285748fd90d342ae311a5bb1eaad7835aec625296d2b46853464f9bd8991e28
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-validator-identifier@npm:7.22.5"
checksum: 10c0/2ff1d3833154d17ccf773b8a71fdc0cd0e7356aa8033179d0e3133787dfb33d97796cbff8b92a97c56268205337dfc720227aeddc677c1bc08ae1b67a95252d7
languageName: node
linkType: hard
"@babel/highlight@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/highlight@npm:7.22.5"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.22.5"
chalk: "npm:^2.0.0"
js-tokens: "npm:^4.0.0"
checksum: 10c0/e8cc07b5de76a9bf779982096ccbbe5a867c36d3786b26151eb570d9344a68af8aa065ed97d431e0d18ba55fe792c7c4301e0d62afff7a52ee0d20678443be54
languageName: node
linkType: hard
"@babel/runtime@npm:^7.0.0":
version: 7.22.6
resolution: "@babel/runtime@npm:7.22.6"
dependencies:
regenerator-runtime: "npm:^0.13.11"
checksum: 10c0/5a273e7d66586582041c68332028db5376d754d483422541fdc904e10474a6f8aef14dd3a5aabcbcb6daea87b64531cc4be993d2943557ede4a2613f5328a981
languageName: node
linkType: hard
"@codemirror/autocomplete@npm:^6.0.0, @codemirror/autocomplete@npm:^6.3.2, @codemirror/autocomplete@npm:^6.5.1, @codemirror/autocomplete@npm:^6.7.1":
version: 6.9.0
resolution: "@codemirror/autocomplete@npm:6.9.0"
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: 10c0/f6701eda2a5b8c36c2b846acd7d44815535ceb1eb0492010324f3f1dcf3ef142f5f3af72bb32b8d3740950ff4713fc4efe8c6cef6e5f161a1c814309cbd8832f
languageName: node
linkType: hard
"@codemirror/commands@npm:^6.2.3":
version: 6.2.4
resolution: "@codemirror/commands@npm:6.2.4"
dependencies:
"@codemirror/language": "npm:^6.0.0"
"@codemirror/state": "npm:^6.2.0"
"@codemirror/view": "npm:^6.0.0"
"@lezer/common": "npm:^1.0.0"
checksum: 10c0/1498b026dd7509fdd42e6e881e3d117cc258a864b44b1aa9582a581076ee96572ac0d8612ad58550a5487b7ff741a0b937b72ef584bdacaef14adafc62c968f1
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: 10c0/afce320324a1536aa9c86f2bd0709d1cfb7e3c5fc5349027e146354cae566319f6d5bfada77067b26b5111bab6c3e747cc818bda926d218e261e208e36185e60
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": "npm:^6.0.0"
"@codemirror/language": "npm:^6.0.0"
"@codemirror/state": "npm:^6.0.0"
"@lezer/common": "npm:^1.0.2"
"@lezer/css": "npm:^1.0.0"
checksum: 10c0/18133ee5409f8f019d4ab011e10f8bdaab9b544f50f506bf1384e914c2571bfc5b2d58336186e2d6a756c34628d41151817130804679047c345ad54127398e0b
languageName: node
linkType: hard
"@codemirror/lang-html@npm:^6.0.0, @codemirror/lang-html@npm:^6.4.3":
version: 6.4.5
resolution: "@codemirror/lang-html@npm:6.4.5"
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: 10c0/91256d3ed451654bd7f512ad316bba239b5143a434428a1ecfb773e8930fdff55698265210f350cccb744af69665e36cfb5b85ba398b61efcfc1f9797bd2666e
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: 10c0/d8526423f8e33019ad9095d5c4a857f5ef5f842f926f37cff4f95a99e7e28e0b27def0098e5ecb4abbafe358854d49232dc143c3a909d34eca5f9cf5c6a355fb
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": "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: 10c0/c8e4801adc9e004e51cf3d54a0cb8dd6dbf40764bdbbf66f12312b1ea4a19d9f42df81ab25b451712dc0f951403e69b8cbc7fd1f8621e0a9db79deaed96e9569
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: 10c0/c70301ba43d44dbd1ff0ccab6ec6e3fb9825d61d4854b4839441a8144a9c96997acdad16d93199d157308dd80088a5e9f14b66f395c7e79f4dadc6b4e70ce8a8
languageName: node
linkType: hard
"@codemirror/lang-markdown@npm:^6.1.1":
version: 6.2.0
resolution: "@codemirror/lang-markdown@npm:6.2.0"
dependencies:
"@codemirror/autocomplete": "npm:^6.7.1"
"@codemirror/lang-html": "npm:^6.0.0"
"@codemirror/language": "npm:^6.3.0"
"@codemirror/state": "npm:^6.0.0"
"@codemirror/view": "npm:^6.0.0"
"@lezer/common": "npm:^1.0.0"
"@lezer/markdown": "npm:^1.0.0"
checksum: 10c0/2d928a47fce003e98f58cb8ba35bc226268d2d920d77a7e3e9d17dbf7bc8fca64c8c369773c61bd7042c8989e8808a9be9ec95bbee7074e6a32ec8ef2e9dd2f6
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: 10c0/1dd34674ca0dc8d1d0616efc080ef98cbe998b023d434b24a923369c78e46bad839e8c45d7d2cbe86379b410b328f0aa79a4bccd7739a2bdfd9fd47071a8b521
languageName: node
linkType: hard
"@codemirror/lang-python@npm:^6.1.3":
version: 6.1.3
resolution: "@codemirror/lang-python@npm:6.1.3"
dependencies:
"@codemirror/autocomplete": "npm:^6.3.2"
"@codemirror/language": "npm:^6.8.0"
"@lezer/python": "npm:^1.1.4"
checksum: 10c0/c1e57991c7f614c29d2ac13134fca16da59acfee4be3501a8af25a8f6e61706aab35f59aac5e6d22fa9157048a746744d7286de8cba2ef8d3069e4cae0fab704
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: 10c0/688763c130c973471fadd1932db12e60bffa5e18e0e69c00a415a154e727e141cf4cc554575f193440f80347be039cc4c21e0857bd651db7421633ca4fa612b6
languageName: node
linkType: hard
"@codemirror/lang-sql@npm:^6.4.1":
version: 6.5.2
resolution: "@codemirror/lang-sql@npm:6.5.2"
dependencies:
"@codemirror/autocomplete": "npm:^6.0.0"
"@codemirror/language": "npm:^6.0.0"
"@codemirror/state": "npm:^6.0.0"
"@lezer/highlight": "npm:^1.0.0"
"@lezer/lr": "npm:^1.0.0"
checksum: 10c0/74a7b3f3a3cf8410becf5a7e263a0ed5a5a2ff864ca9d696e576fd185036c9b7275a292cba4958144c2b7218a12a3ed105fc200dcfefc5c555ae7fd571cbe3f4
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: 10c0/12fecb2e3706b612e02fbcd74638c5b091ebe275c513d23e7187da88a190f911db2a1976b81639752faf1baf463ace0d471c1ed505f5623c1c4763cfcece7e0d
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: 10c0/3d9b27dca01fa4816c0f528225d86f84826156f10de82a7af4e356430ff3cc19a36d4130d6ad0bb376569704130d90a578850199516aff8ae849b92d94a194a7
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": "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: 10c0/9e6fc6d57b6e268acf4022193995440f4b6541c5c6dad2707c0fef0b8bffa17230a4fe40d5620dc1a76e35fd1e24c43a59790482dccaab8b77fb31ec704281dc
languageName: node
linkType: hard
"@codemirror/legacy-modes@npm:^6.3.2":
version: 6.3.3
resolution: "@codemirror/legacy-modes@npm:6.3.3"
dependencies:
"@codemirror/language": "npm:^6.0.0"
checksum: 10c0/59f227794f15df21c05ebb751fe32499f1638e7d55de0fc2712a8c87e7e18be770bbe982a35253481eafec35df3f231a54b2dee6e8ca998f121324830bb8c8ad
languageName: node
linkType: hard
"@codemirror/lint@npm:^6.0.0":
version: 6.4.0
resolution: "@codemirror/lint@npm:6.4.0"
dependencies:
"@codemirror/state": "npm:^6.0.0"
"@codemirror/view": "npm:^6.0.0"
crelt: "npm:^1.0.5"
checksum: 10c0/dd35a7cea4c68efdbb0f949ed14bc3adc69dd0220f04451873deeda7642828d7ddf1056d0b490822ffaf5fb28149e630b53029894b0b68fcb8409d66f9ab428a
languageName: node
linkType: hard
"@codemirror/search@npm:^6.3.0":
version: 6.5.1
resolution: "@codemirror/search@npm:6.5.1"
dependencies:
"@codemirror/state": "npm:^6.0.0"
"@codemirror/view": "npm:^6.0.0"
crelt: "npm:^1.0.5"
checksum: 10c0/c4970a5453f17089eb22658e6bca5ff83d5307e96cfb047b58e537f8924b10e7637dd0abc078124268bbc8595e53843d8a50d78e1b48f7201554bdd81ba5e9a0
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: 10c0/ebae138825791055366efa3ad5c643a4d4718ae159d67664d5e0a226c1f0bd1528695d2eb5d970ad0cef30c301af1f4a3318b0ca271aacacf38f8800eaf51190
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.16.0
resolution: "@codemirror/view@npm:6.16.0"
dependencies:
"@codemirror/state": "npm:^6.1.4"
style-mod: "npm:^4.0.0"
w3c-keyname: "npm:^2.2.4"
checksum: 10c0/b29a81638595de8a27cdc12078db1d6be372dbcf3a40aecf30fd3d4b62a5514cba27cf62cdb90964dcdd132b396f8efa800d0474d7e24fc776f43093b0292e78
languageName: node
linkType: hard
"@csstools/css-parser-algorithms@npm:^2.3.0":
version: 2.3.1
resolution: "@csstools/css-parser-algorithms@npm:2.3.1"
peerDependencies:
"@csstools/css-tokenizer": ^2.2.0
checksum: 10c0/0f1688cc5de75f41af4581a0b4df994e9af90f6df2b3f962e0680c4ed8e2aa32b23fbf3ba4fdaffc09a9afcf93fcf13a9743204f179bab57a7603ce88cb635e8
languageName: node
linkType: hard
"@csstools/css-tokenizer@npm:^2.1.1":
version: 2.2.0
resolution: "@csstools/css-tokenizer@npm:2.2.0"
checksum: 10c0/7a6178d5a148e426ea79d4b2761857daacd7cde00512b45697146228d59183b0043f9803b48be55299f5a331f07ff14477612c608f18df7550ee642467d74564
languageName: node
linkType: hard
"@csstools/media-query-list-parser@npm:^2.1.2":
version: 2.1.3
resolution: "@csstools/media-query-list-parser@npm:2.1.3"
peerDependencies:
"@csstools/css-parser-algorithms": ^2.3.1
"@csstools/css-tokenizer": ^2.2.0
checksum: 10c0/45fa61b108b841fa26447c26abd5f643e3ceb911db96f670e5d472c40f57dcb6e4df99db922e6a40853ef45e2a4433771fc20fbc8b2746cd3f584bb413108e01
languageName: node
linkType: hard
"@csstools/selector-specificity@npm:^3.0.0":
version: 3.0.0
resolution: "@csstools/selector-specificity@npm:3.0.0"
peerDependencies:
postcss-selector-parser: ^6.0.13
checksum: 10c0/6f0e2fa9a3c5dcbc7a446fd827d3eb85ca775cc884f73f0bbb119ab49b4f5f0af8763dd23a37d423f4e7989069c09bb977e7e5f017db296e1417abb1fba75c30
languageName: node
linkType: hard
"@discoveryjs/json-ext@npm:^0.5.0":
version: 0.5.7
resolution: "@discoveryjs/json-ext@npm:0.5.7"
checksum: 10c0/e10f1b02b78e4812646ddf289b7d9f2cb567d336c363b266bd50cd223cf3de7c2c74018d91cd2613041568397ef3a4a2b500aba588c6e5bd78c38374ba68f38c
languageName: node
linkType: hard
"@eslint-community/eslint-utils@npm:^4.2.0, @eslint-community/eslint-utils@npm:^4.4.0":
version: 4.4.0
resolution: "@eslint-community/eslint-utils@npm:4.4.0"
dependencies:
eslint-visitor-keys: "npm:^3.3.0"
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
checksum: 10c0/7e559c4ce59cd3a06b1b5a517b593912e680a7f981ae7affab0d01d709e99cd5647019be8fafa38c350305bc32f1f7d42c7073edde2ab536c745e365f37b607e
languageName: node
linkType: hard
"@eslint-community/regexpp@npm:^4.5.1, @eslint-community/regexpp@npm:^4.6.1":
version: 4.6.2
resolution: "@eslint-community/regexpp@npm:4.6.2"
checksum: 10c0/da800788298f8419f4c4e04eaa4e3c97e7f57537e822e7b150de662e420e3d437816b863e490807bd0b00e715b0989f9d8864bf54357cbcfa84e4255b910789d
languageName: node
linkType: hard
"@eslint/eslintrc@npm:^2.1.1":
version: 2.1.1
resolution: "@eslint/eslintrc@npm:2.1.1"
dependencies:
ajv: "npm:^6.12.4"
debug: "npm:^4.3.2"
espree: "npm:^9.6.0"
globals: "npm:^13.19.0"
ignore: "npm:^5.2.0"
import-fresh: "npm:^3.2.1"
js-yaml: "npm:^4.1.0"
minimatch: "npm:^3.1.2"
strip-json-comments: "npm:^3.1.1"
checksum: 10c0/104ec8997206eabc87de84b87a2852efce0ff98730d377061734da2554c79c9b6d417fbe66248ef5566a0501ef41fddec3a00f79b77731102903586a63b2ed34
languageName: node
linkType: hard
"@eslint/js@npm:^8.46.0":
version: 8.46.0
resolution: "@eslint/js@npm:8.46.0"
checksum: 10c0/674c5800e4e9829322aa84195b23c59db326cb42190ac0284bdfe70b2442d544837f3006d8d8c166afaa86ab7072df1b77f7fdb43a60aa2bb1ede90d82e38540
languageName: node
linkType: hard
"@fortawesome/fontawesome-free@npm:^5.12.0":
version: 5.15.4
resolution: "@fortawesome/fontawesome-free@npm:5.15.4"
checksum: 10c0/0a12f11b17b3073475df965d423ac485715e281d11ecde17250fab5dc0a177fb29ced59242f6c024bef59429c502ba8fe831ed9500e14713cc30138e70df8fbc
languageName: node
linkType: hard
"@humanwhocodes/config-array@npm:^0.11.10":
version: 0.11.10
resolution: "@humanwhocodes/config-array@npm:0.11.10"
dependencies:
"@humanwhocodes/object-schema": "npm:^1.2.1"
debug: "npm:^4.1.1"
minimatch: "npm:^3.0.5"
checksum: 10c0/9e307a49a5baa28beb243d2c14c145f288fccd6885f4c92a9055707057ec40980242256b2a07c976cfa6c75f7081da111a40a9844d1ca8daeff2302f8b640e76
languageName: node
linkType: hard
"@humanwhocodes/module-importer@npm:^1.0.1":
version: 1.0.1
resolution: "@humanwhocodes/module-importer@npm:1.0.1"
checksum: 10c0/909b69c3b86d482c26b3359db16e46a32e0fb30bd306a3c176b8313b9e7313dba0f37f519de6aa8b0a1921349e505f259d19475e123182416a506d7f87e7f529
languageName: node
linkType: hard
"@humanwhocodes/object-schema@npm:^1.2.1":
version: 1.2.1
resolution: "@humanwhocodes/object-schema@npm:1.2.1"
checksum: 10c0/c3c35fdb70c04a569278351c75553e293ae339684ed75895edc79facc7276e351115786946658d78133130c0cca80e57e2203bc07f8fa7fe7980300e8deef7db
languageName: node
linkType: hard
"@isaacs/cliui@npm:^8.0.2":
version: 8.0.2
resolution: "@isaacs/cliui@npm:8.0.2"
dependencies:
string-width: "npm:^5.1.2"
string-width-cjs: "npm:string-width@^4.2.0"
strip-ansi: "npm:^7.0.1"
strip-ansi-cjs: "npm:strip-ansi@^6.0.1"
wrap-ansi: "npm:^8.1.0"
wrap-ansi-cjs: "npm:wrap-ansi@^7.0.0"
checksum: 10c0/b1bf42535d49f11dc137f18d5e4e63a28c5569de438a221c369483731e9dac9fb797af554e8bf02b6192d1e5eba6e6402cf93900c3d0ac86391d00d04876789e
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": "npm:^1.0.1"
"@jridgewell/sourcemap-codec": "npm:^1.4.10"
"@jridgewell/trace-mapping": "npm:^0.3.9"
checksum: 10c0/376fc11cf5a967318ba3ddd9d8e91be528eab6af66810a713c49b0c3f8dc67e9949452c51c38ab1b19aa618fb5e8594da5a249977e26b1e7fea1ee5a1fcacc74
languageName: node
linkType: hard
"@jridgewell/resolve-uri@npm:3.1.0":
version: 3.1.0
resolution: "@jridgewell/resolve-uri@npm:3.1.0"
checksum: 10c0/78055e2526108331126366572045355051a930f017d1904a4f753d3f4acee8d92a14854948095626f6163cffc24ea4e3efa30637417bb866b84743dec7ef6fd9
languageName: node
linkType: hard
"@jridgewell/resolve-uri@npm:^3.1.0":
version: 3.1.2
resolution: "@jridgewell/resolve-uri@npm:3.1.2"
checksum: 10c0/d502e6fb516b35032331406d4e962c21fe77cdf1cbdb49c6142bcbd9e30507094b18972778a6e27cbad756209cfe34b1a27729e6fa08a2eb92b33943f680cf1e
languageName: node
linkType: hard
"@jridgewell/set-array@npm:^1.0.1":
version: 1.1.2
resolution: "@jridgewell/set-array@npm:1.1.2"
checksum: 10c0/bc7ab4c4c00470de4e7562ecac3c0c84f53e7ee8a711e546d67c47da7febe7c45cd67d4d84ee3c9b2c05ae8e872656cdded8a707a283d30bd54fbc65aef821ab
languageName: node
linkType: hard
"@jridgewell/source-map@npm:^0.3.3":
version: 0.3.5
resolution: "@jridgewell/source-map@npm:0.3.5"
dependencies:
"@jridgewell/gen-mapping": "npm:^0.3.0"
"@jridgewell/trace-mapping": "npm:^0.3.9"
checksum: 10c0/b985d9ebd833a21a6e9ace820c8a76f60345a34d9e28d98497c16b6e93ce1f131bff0abd45f8585f14aa382cce678ed680d628c631b40a9616a19cfbc2049b68
languageName: node
linkType: hard
"@jridgewell/sourcemap-codec@npm:1.4.14":
version: 1.4.14
resolution: "@jridgewell/sourcemap-codec@npm:1.4.14"
checksum: 10c0/3fbaff1387c1338b097eeb6ff92890d7838f7de0dde259e4983763b44540bfd5ca6a1f7644dc8ad003a57f7e80670d5b96a8402f1386ba9aee074743ae9bad51
languageName: node
linkType: hard
"@jridgewell/sourcemap-codec@npm:^1.4.10":
version: 1.4.15
resolution: "@jridgewell/sourcemap-codec@npm:1.4.15"
checksum: 10c0/0c6b5ae663087558039052a626d2d7ed5208da36cfd707dcc5cea4a07cfc918248403dcb5989a8f7afaf245ce0573b7cc6fd94c4a30453bd10e44d9363940ba5
languageName: node
linkType: hard
"@jridgewell/sourcemap-codec@npm:^1.4.14":
version: 1.5.0
resolution: "@jridgewell/sourcemap-codec@npm:1.5.0"
checksum: 10c0/2eb864f276eb1096c3c11da3e9bb518f6d9fc0023c78344cdc037abadc725172c70314bdb360f2d4b7bffec7f5d657ce006816bc5d4ecb35e61b66132db00c18
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": "npm:3.1.0"
"@jridgewell/sourcemap-codec": "npm:1.4.14"
checksum: 10c0/e5045775f076022b6c7cc64a7b55742faa5442301cb3389fd0e6712fafc46a2bb13c68fa1ffaf7b8bb665a91196f050b4115885fc802094ebc06a1cf665935ac
languageName: node
linkType: hard
"@jridgewell/trace-mapping@npm:^0.3.20":
version: 0.3.25
resolution: "@jridgewell/trace-mapping@npm:0.3.25"
dependencies:
"@jridgewell/resolve-uri": "npm:^3.1.0"
"@jridgewell/sourcemap-codec": "npm:^1.4.14"
checksum: 10c0/3d1ce6ebc69df9682a5a8896b414c6537e428a1d68b02fcc8363b04284a8ca0df04d0ee3013132252ab14f2527bc13bea6526a912ecb5658f0e39fd2860b4df4
languageName: node
linkType: hard
"@jupyter/ydoc@npm:^1.0.2":
version: 1.0.2
resolution: "@jupyter/ydoc@npm:1.0.2"
dependencies:
"@jupyterlab/nbformat": "npm:^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0"
"@lumino/coreutils": "npm:^1.11.0 || ^2.0.0"
"@lumino/disposable": "npm:^1.10.0 || ^2.0.0"
"@lumino/signaling": "npm:^1.10.0 || ^2.0.0"
y-protocols: "npm:^1.0.5"
yjs: "npm:^13.5.40"
checksum: 10c0/64bb974552b3ba9bd39dad60c4df8d3d0589ba9485bad850ff75ffe6bc33247dc2e556e88dca8212825a73a0bfb0d50e913502c556e23d6909242469e34a62ce
languageName: node
linkType: hard
"@jupyterlab/application@npm:^4.0.4":
version: 4.0.4
resolution: "@jupyterlab/application@npm:4.0.4"
dependencies:
"@fortawesome/fontawesome-free": "npm:^5.12.0"
"@jupyterlab/apputils": "npm:^4.1.4"
"@jupyterlab/coreutils": "npm:^6.0.4"
"@jupyterlab/docregistry": "npm:^4.0.4"
"@jupyterlab/rendermime": "npm:^4.0.4"
"@jupyterlab/rendermime-interfaces": "npm:^3.8.4"
"@jupyterlab/services": "npm:^7.0.4"
"@jupyterlab/statedb": "npm:^4.0.4"
"@jupyterlab/translation": "npm:^4.0.4"
"@jupyterlab/ui-components": "npm:^4.0.4"
"@lumino/algorithm": "npm:^2.0.0"
"@lumino/application": "npm:^2.1.1"
"@lumino/commands": "npm:^2.1.1"
"@lumino/coreutils": "npm:^2.1.1"
"@lumino/disposable": "npm:^2.1.1"
"@lumino/messaging": "npm:^2.0.0"
"@lumino/polling": "npm:^2.1.1"
"@lumino/properties": "npm:^2.0.0"
"@lumino/signaling": "npm:^2.1.1"
"@lumino/widgets": "npm:^2.1.1"
checksum: 10c0/db4fe4b3a6a1dd63bf62fe25d730c56fe7b857bc36b09a4e14ceb927a3302b6d6dce51673c82d71e8a3ebccab60daf273454232e574a2bd3b1a2dee660a6ff88
languageName: node
linkType: hard
"@jupyterlab/apputils@npm:^4.1.4":
version: 4.1.4
resolution: "@jupyterlab/apputils@npm:4.1.4"
dependencies:
"@jupyterlab/coreutils": "npm:^6.0.4"
"@jupyterlab/observables": "npm:^5.0.4"
"@jupyterlab/rendermime-interfaces": "npm:^3.8.4"
"@jupyterlab/services": "npm:^7.0.4"
"@jupyterlab/settingregistry": "npm:^4.0.4"
"@jupyterlab/statedb": "npm:^4.0.4"
"@jupyterlab/statusbar": "npm:^4.0.4"
"@jupyterlab/translation": "npm:^4.0.4"
"@jupyterlab/ui-components": "npm:^4.0.4"
"@lumino/algorithm": "npm:^2.0.0"
"@lumino/commands": "npm:^2.1.1"
"@lumino/coreutils": "npm:^2.1.1"
"@lumino/disposable": "npm:^2.1.1"
"@lumino/domutils": "npm:^2.0.0"
"@lumino/messaging": "npm:^2.0.0"
"@lumino/signaling": "npm:^2.1.1"
"@lumino/virtualdom": "npm:^2.0.0"
"@lumino/widgets": "npm:^2.1.1"
"@types/react": "npm:^18.0.26"
react: "npm:^18.2.0"
sanitize-html: "npm:~2.7.3"
checksum: 10c0/0602f1575e17ef9a809d499dfc6d232f2ffc67ea36174dde97a4bef990b67ca6d03bf09428a1ab300d26175876277541a003b7917df329851bd04b3b70bf316f
languageName: node
linkType: hard
"@jupyterlab/attachments@npm:^4.0.4":
version: 4.0.4
resolution: "@jupyterlab/attachments@npm:4.0.4"
dependencies:
"@jupyterlab/nbformat": "npm:^4.0.4"
"@jupyterlab/observables": "npm:^5.0.4"
"@jupyterlab/rendermime": "npm:^4.0.4"
"@jupyterlab/rendermime-interfaces": "npm:^3.8.4"
"@lumino/disposable": "npm:^2.1.1"
"@lumino/signaling": "npm:^2.1.1"
checksum: 10c0/c2d9c9e165923167742f3ce32c2d8136a4afbbf26e946e83cb1f7613e499554380bd0e8078664d76ed29336a0e606da3e5b92e64ea709a632731d97877922cd4
languageName: node
linkType: hard
"@jupyterlab/builder@npm:^4.0.0":
version: 4.0.4
resolution: "@jupyterlab/builder@npm:4.0.4"
dependencies:
"@lumino/algorithm": "npm:^2.0.0"
"@lumino/application": "npm:^2.1.1"
"@lumino/commands": "npm:^2.1.1"
"@lumino/coreutils": "npm:^2.1.1"
"@lumino/disposable": "npm:^2.1.1"
"@lumino/domutils": "npm:^2.0.0"
"@lumino/dragdrop": "npm:^2.1.1"
"@lumino/messaging": "npm:^2.0.0"
"@lumino/properties": "npm:^2.0.0"
"@lumino/signaling": "npm:^2.1.1"
"@lumino/virtualdom": "npm:^2.0.0"
"@lumino/widgets": "npm:^2.1.1"
ajv: "npm:^8.12.0"
commander: "npm:^9.4.1"
css-loader: "npm:^6.7.1"
duplicate-package-checker-webpack-plugin: "npm:^3.0.0"
fs-extra: "npm:^10.1.0"
glob: "npm:~7.1.6"
license-webpack-plugin: "npm:^2.3.14"
mini-css-extract-plugin: "npm:^2.7.0"
mini-svg-data-uri: "npm:^1.4.4"
path-browserify: "npm:^1.0.0"
process: "npm:^0.11.10"
source-map-loader: "npm:~1.0.2"
style-loader: "npm:~3.3.1"
supports-color: "npm:^7.2.0"
terser-webpack-plugin: "npm:^5.3.7"
webpack: "npm:^5.76.1"
webpack-cli: "npm:^5.0.1"
webpack-merge: "npm:^5.8.0"
worker-loader: "npm:^3.0.2"
bin:
build-labextension: lib/build-labextension.js
checksum: 10c0/11ee3948cec641b716ef69d878f2c5e0a62e1742cf86eec5225736d3a23bb84e5a9765f53799b258c16acdb2c780b785cd96f2d629c796063ca20ef4966c7a33
languageName: node
linkType: hard
"@jupyterlab/cells@npm:^4.0.4":
version: 4.0.4
resolution: "@jupyterlab/cells@npm:4.0.4"
dependencies:
"@codemirror/state": "npm:^6.2.0"
"@codemirror/view": "npm:^6.9.6"
"@jupyter/ydoc": "npm:^1.0.2"
"@jupyterlab/apputils": "npm:^4.1.4"
"@jupyterlab/attachments": "npm:^4.0.4"
"@jupyterlab/codeeditor": "npm:^4.0.4"
"@jupyterlab/codemirror": "npm:^4.0.4"
"@jupyterlab/coreutils": "npm:^6.0.4"
"@jupyterlab/documentsearch": "npm:^4.0.4"
"@jupyterlab/filebrowser": "npm:^4.0.4"
"@jupyterlab/nbformat": "npm:^4.0.4"
"@jupyterlab/observables": "npm:^5.0.4"
"@jupyterlab/outputarea": "npm:^4.0.4"
"@jupyterlab/rendermime": "npm:^4.0.4"
"@jupyterlab/services": "npm:^7.0.4"
"@jupyterlab/toc": "npm:^6.0.4"
"@jupyterlab/translation": "npm:^4.0.4"
"@jupyterlab/ui-components": "npm:^4.0.4"
"@lumino/algorithm": "npm:^2.0.0"
"@lumino/coreutils": "npm:^2.1.1"
"@lumino/domutils": "npm:^2.0.0"
"@lumino/dragdrop": "npm:^2.1.1"
"@lumino/messaging": "npm:^2.0.0"
"@lumino/polling": "npm:^2.1.1"
"@lumino/signaling": "npm:^2.1.1"
"@lumino/virtualdom": "npm:^2.0.0"
"@lumino/widgets": "npm:^2.1.1"
react: "npm:^18.2.0"
checksum: 10c0/a3d9c9b07f5d2171f7a23ed430b0ebf30777aeb998f6f21a66b416c1a5b89de01e1477d9219ddd9890de681269a4fe31375d856675b437db41186e4ba0b760ad
languageName: node
linkType: hard
"@jupyterlab/codeeditor@npm:^4.0.4":
version: 4.0.4
resolution: "@jupyterlab/codeeditor@npm:4.0.4"
dependencies:
"@codemirror/state": "npm:^6.2.0"
"@jupyter/ydoc": "npm:^1.0.2"
"@jupyterlab/coreutils": "npm:^6.0.4"
"@jupyterlab/nbformat": "npm:^4.0.4"
"@jupyterlab/observables": "npm:^5.0.4"
"@jupyterlab/statusbar": "npm:^4.0.4"
"@jupyterlab/translation": "npm:^4.0.4"
"@jupyterlab/ui-components": "npm:^4.0.4"
"@lumino/coreutils": "npm:^2.1.1"
"@lumino/disposable": "npm:^2.1.1"
"@lumino/dragdrop": "npm:^2.1.1"
"@lumino/messaging": "npm:^2.0.0"
"@lumino/signaling": "npm:^2.1.1"
"@lumino/widgets": "npm:^2.1.1"
react: "npm:^18.2.0"
checksum: 10c0/4a65b856b6da49554f1a2f7d306cedadafeda2123662ef19628d8c880da662e9f13b024dae494e3821aaae30e3c4380ba8cb2c5b88360a22fcc9b88a758f2b15
languageName: node
linkType: hard
"@jupyterlab/codemirror@npm:^4.0.4":
version: 4.0.4
resolution: "@jupyterlab/codemirror@npm:4.0.4"
dependencies:
"@codemirror/autocomplete": "npm:^6.5.1"
"@codemirror/commands": "npm:^6.2.3"
"@codemirror/lang-cpp": "npm:^6.0.2"
"@codemirror/lang-css": "npm:^6.1.1"
"@codemirror/lang-html": "npm:^6.4.3"
"@codemirror/lang-java": "npm:^6.0.1"
"@codemirror/lang-javascript": "npm:^6.1.7"
"@codemirror/lang-json": "npm:^6.0.1"
"@codemirror/lang-markdown": "npm:^6.1.1"
"@codemirror/lang-php": "npm:^6.0.1"
"@codemirror/lang-python": "npm:^6.1.3"
"@codemirror/lang-rust": "npm:^6.0.1"
"@codemirror/lang-sql": "npm:^6.4.1"
"@codemirror/lang-wast": "npm:^6.0.1"
"@codemirror/lang-xml": "npm:^6.0.2"
"@codemirror/language": "npm:^6.6.0"
"@codemirror/legacy-modes": "npm:^6.3.2"
"@codemirror/search": "npm:^6.3.0"
"@codemirror/state": "npm:^6.2.0"
"@codemirror/view": "npm:^6.9.6"
"@jupyter/ydoc": "npm:^1.0.2"
"@jupyterlab/codeeditor": "npm:^4.0.4"
"@jupyterlab/coreutils": "npm:^6.0.4"
"@jupyterlab/documentsearch": "npm:^4.0.4"
"@jupyterlab/nbformat": "npm:^4.0.4"
"@jupyterlab/translation": "npm:^4.0.4"
"@lezer/common": "npm:^1.0.2"
"@lezer/generator": "npm:^1.2.2"
"@lezer/highlight": "npm:^1.1.4"
"@lezer/markdown": "npm:^1.0.2"
"@lumino/coreutils": "npm:^2.1.1"
"@lumino/disposable": "npm:^2.1.1"
"@lumino/signaling": "npm:^2.1.1"
yjs: "npm:^13.5.40"
checksum: 10c0/c6c511886745f0833dea50ddcc860ee645510f5746019edb51f463f2cec8b11028082ca594d68fd11bba88f34499de51554730d1b03921f72fc283b6616eab71
languageName: node
linkType: hard
"@jupyterlab/coreutils@npm:^6.0.4":
version: 6.0.4
resolution: "@jupyterlab/coreutils@npm:6.0.4"
dependencies:
"@lumino/coreutils": "npm:^2.1.1"
"@lumino/disposable": "npm:^2.1.1"
"@lumino/signaling": "npm:^2.1.1"
minimist: "npm:~1.2.0"
path-browserify: "npm:^1.0.0"
url-parse: "npm:~1.5.4"
checksum: 10c0/0dd3e16b9fb6bc836effc34be0006efd8cebcde445ab2d7d2c38de1c15a6e525a6665e03c3ba783f336e0ee5e99bd18e1044a9c24cd4db43e50123773f1bad02
languageName: node
linkType: hard
"@jupyterlab/docmanager@npm:^4.0.4":
version: 4.0.4
resolution: "@jupyterlab/docmanager@npm:4.0.4"
dependencies:
"@jupyterlab/apputils": "npm:^4.1.4"
"@jupyterlab/coreutils": "npm:^6.0.4"
"@jupyterlab/docregistry": "npm:^4.0.4"
"@jupyterlab/services": "npm:^7.0.4"
"@jupyterlab/statusbar": "npm:^4.0.4"
"@jupyterlab/translation": "npm:^4.0.4"
"@jupyterlab/ui-components": "npm:^4.0.4"
"@lumino/algorithm": "npm:^2.0.0"
"@lumino/coreutils": "npm:^2.1.1"
"@lumino/disposable": "npm:^2.1.1"
"@lumino/messaging": "npm:^2.0.0"
"@lumino/properties": "npm:^2.0.0"
"@lumino/signaling": "npm:^2.1.1"
"@lumino/widgets": "npm:^2.1.1"
react: "npm:^18.2.0"
checksum: 10c0/a4a1b7bec0b6cd0e41060cac9281fbf2b215b42222817a01fe55b81853658e185a67e3b3a1dde285d66b8139cdf84ad23d9d3a3f8c62a60ec8d45b0cb79da8db
languageName: node
linkType: hard
"@jupyterlab/docregistry@npm:^4.0.4":
version: 4.0.4
resolution: "@jupyterlab/docregistry@npm:4.0.4"
dependencies:
"@jupyter/ydoc": "npm:^1.0.2"
"@jupyterlab/apputils": "npm:^4.1.4"
"@jupyterlab/codeeditor": "npm:^4.0.4"
"@jupyterlab/coreutils": "npm:^6.0.4"
"@jupyterlab/observables": "npm:^5.0.4"
"@jupyterlab/rendermime": "npm:^4.0.4"
"@jupyterlab/rendermime-interfaces": "npm:^3.8.4"
"@jupyterlab/services": "npm:^7.0.4"
"@jupyterlab/translation": "npm:^4.0.4"
"@jupyterlab/ui-components": "npm:^4.0.4"
"@lumino/algorithm": "npm:^2.0.0"
"@lumino/coreutils": "npm:^2.1.1"
"@lumino/disposable": "npm:^2.1.1"
"@lumino/messaging": "npm:^2.0.0"
"@lumino/properties": "npm:^2.0.0"
"@lumino/signaling": "npm:^2.1.1"
"@lumino/widgets": "npm:^2.1.1"
checksum: 10c0/ab60095021f48fc73f11bcef2d978366090dfd3db23d1b1753b1d2f1290a9e9cd7baba33f2bd3b3eaadf5b245c148376d43235c98bd1201b9d5600783dfe7e72
languageName: node
linkType: hard
"@jupyterlab/documentsearch@npm:^4.0.4":
version: 4.0.4
resolution: "@jupyterlab/documentsearch@npm:4.0.4"
dependencies:
"@jupyterlab/apputils": "npm:^4.1.4"
"@jupyterlab/translation": "npm:^4.0.4"
"@jupyterlab/ui-components": "npm:^4.0.4"
"@lumino/coreutils": "npm:^2.1.1"
"@lumino/disposable": "npm:^2.1.1"
"@lumino/messaging": "npm:^2.0.0"
"@lumino/polling": "npm:^2.1.1"
"@lumino/signaling": "npm:^2.1.1"
"@lumino/widgets": "npm:^2.1.1"
react: "npm:^18.2.0"
checksum: 10c0/93e8a26ec5bd249815c39003efa88420e6214d5eed35727036c18f2dbe17e3e151a89ebd9b7df452ddcf9b7e9575b80ef79088b2efbc59268adfc1be8609c7b1
languageName: node
linkType: hard
"@jupyterlab/filebrowser@npm:^4.0.4":
version: 4.0.4
resolution: "@jupyterlab/filebrowser@npm:4.0.4"
dependencies:
"@jupyterlab/apputils": "npm:^4.1.4"
"@jupyterlab/coreutils": "npm:^6.0.4"
"@jupyterlab/docmanager": "npm:^4.0.4"
"@jupyterlab/docregistry": "npm:^4.0.4"
"@jupyterlab/services": "npm:^7.0.4"
"@jupyterlab/statedb": "npm:^4.0.4"
"@jupyterlab/statusbar": "npm:^4.0.4"
"@jupyterlab/translation": "npm:^4.0.4"
"@jupyterlab/ui-components": "npm:^4.0.4"
"@lumino/algorithm": "npm:^2.0.0"
"@lumino/coreutils": "npm:^2.1.1"
"@lumino/disposable": "npm:^2.1.1"
"@lumino/domutils": "npm:^2.0.0"
"@lumino/dragdrop": "npm:^2.1.1"
"@lumino/messaging": "npm:^2.0.0"
"@lumino/polling": "npm:^2.1.1"
"@lumino/signaling": "npm:^2.1.1"
"@lumino/virtualdom": "npm:^2.0.0"
"@lumino/widgets": "npm:^2.1.1"
react: "npm:^18.2.0"
checksum: 10c0/293431de90e76d60b50991055ef87b0b2b653b76a1e45768d3d69cb73d20861949a3c137d879a543109cf236c36d2fbd5851a3d38f7f984c45fd3e8ade6f9e7b
languageName: node
linkType: hard
"@jupyterlab/lsp@npm:^4.0.4":
version: 4.0.4
resolution: "@jupyterlab/lsp@npm:4.0.4"
dependencies:
"@jupyterlab/apputils": "npm:^4.1.4"
"@jupyterlab/codeeditor": "npm:^4.0.4"
"@jupyterlab/coreutils": "npm:^6.0.4"
"@jupyterlab/docregistry": "npm:^4.0.4"
"@jupyterlab/services": "npm:^7.0.4"
"@jupyterlab/translation": "npm:^4.0.4"
"@lumino/coreutils": "npm:^2.1.1"
"@lumino/disposable": "npm:^2.1.1"
"@lumino/signaling": "npm:^2.1.1"
lodash.mergewith: "npm:^4.6.1"
vscode-jsonrpc: "npm:^6.0.0"
vscode-languageserver-protocol: "npm:^3.17.0"
vscode-ws-jsonrpc: "npm:~1.0.2"
checksum: 10c0/8225d4af01cc51f1545f8295642d96e92654d6ed0fd9baf6a43dbf1d5f6cd660443143ad8cef4140de688ef0eeeb6660c25a771fdc5d1f293391c1b073dcda63
languageName: node
linkType: hard
"@jupyterlab/mainmenu@npm:^4.0.4":
version: 4.0.4
resolution: "@jupyterlab/mainmenu@npm:4.0.4"
dependencies:
"@jupyterlab/apputils": "npm:^4.1.4"
"@jupyterlab/translation": "npm:^4.0.4"
"@jupyterlab/ui-components": "npm:^4.0.4"
"@lumino/algorithm": "npm:^2.0.0"
"@lumino/commands": "npm:^2.1.1"
"@lumino/coreutils": "npm:^2.1.1"
"@lumino/widgets": "npm:^2.1.1"
checksum: 10c0/7d632a1b2117af35edba3c5f869ca7a83d98bfcb8f3e5e226f80744b7444c9d9ac22c92b3738c0a7c5c996fa48d5c5ab642a5968a24f03e30515c83bbf4b5f03
languageName: node
linkType: hard
"@jupyterlab/nbformat@npm:^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0, @jupyterlab/nbformat@npm:^4.0.4":
version: 4.0.4
resolution: "@jupyterlab/nbformat@npm:4.0.4"
dependencies:
"@lumino/coreutils": "npm:^2.1.1"
checksum: 10c0/0969b18946a098b26aa37e52082282dd5b42de520dcc488026b5b152c62fce954d04ceab25ed71b18767f13254d0f50e1dfbdfe84fe3cfee0ed7f6097b1c1808
languageName: node
linkType: hard
"@jupyterlab/notebook@npm:^4.0.4":
version: 4.0.4
resolution: "@jupyterlab/notebook@npm:4.0.4"
dependencies:
"@jupyter/ydoc": "npm:^1.0.2"
"@jupyterlab/apputils": "npm:^4.1.4"
"@jupyterlab/cells": "npm:^4.0.4"
"@jupyterlab/codeeditor": "npm:^4.0.4"
"@jupyterlab/codemirror": "npm:^4.0.4"
"@jupyterlab/coreutils": "npm:^6.0.4"
"@jupyterlab/docregistry": "npm:^4.0.4"
"@jupyterlab/documentsearch": "npm:^4.0.4"
"@jupyterlab/lsp": "npm:^4.0.4"
"@jupyterlab/nbformat": "npm:^4.0.4"
"@jupyterlab/observables": "npm:^5.0.4"
"@jupyterlab/rendermime": "npm:^4.0.4"
"@jupyterlab/services": "npm:^7.0.4"
"@jupyterlab/settingregistry": "npm:^4.0.4"
"@jupyterlab/statusbar": "npm:^4.0.4"
"@jupyterlab/toc": "npm:^6.0.4"
"@jupyterlab/translation": "npm:^4.0.4"
"@jupyterlab/ui-components": "npm:^4.0.4"
"@lumino/algorithm": "npm:^2.0.0"
"@lumino/coreutils": "npm:^2.1.1"
"@lumino/domutils": "npm:^2.0.0"
"@lumino/dragdrop": "npm:^2.1.1"
"@lumino/messaging": "npm:^2.0.0"
"@lumino/properties": "npm:^2.0.0"
"@lumino/signaling": "npm:^2.1.1"
"@lumino/virtualdom": "npm:^2.0.0"
"@lumino/widgets": "npm:^2.1.1"
react: "npm:^18.2.0"
checksum: 10c0/560c5abc6df9441ff98a19e77a4eecbbed604aa360710fba225789cdda2192df6c1013117b24bfe36c02318119931b243120a92202b83f91d682ca2d5a312f6c
languageName: node
linkType: hard
"@jupyterlab/observables@npm:^5.0.4":
version: 5.0.4
resolution: "@jupyterlab/observables@npm:5.0.4"
dependencies:
"@lumino/algorithm": "npm:^2.0.0"
"@lumino/coreutils": "npm:^2.1.1"
"@lumino/disposable": "npm:^2.1.1"
"@lumino/messaging": "npm:^2.0.0"
"@lumino/signaling": "npm:^2.1.1"
checksum: 10c0/0260584b58400e5a6975f282118d42f5a77ea06c61d73abc33517e34a8875be11911f59ebf53ca19f70abb2b5f50e08c76c0d1f67673b059365653a7e71a48cd
languageName: node
linkType: hard
"@jupyterlab/outputarea@npm:^4.0.4":
version: 4.0.4
resolution: "@jupyterlab/outputarea@npm:4.0.4"
dependencies:
"@jupyterlab/apputils": "npm:^4.1.4"
"@jupyterlab/nbformat": "npm:^4.0.4"
"@jupyterlab/observables": "npm:^5.0.4"
"@jupyterlab/rendermime": "npm:^4.0.4"
"@jupyterlab/rendermime-interfaces": "npm:^3.8.4"
"@jupyterlab/services": "npm:^7.0.4"
"@jupyterlab/translation": "npm:^4.0.4"
"@lumino/algorithm": "npm:^2.0.0"
"@lumino/coreutils": "npm:^2.1.1"
"@lumino/disposable": "npm:^2.1.1"
"@lumino/messaging": "npm:^2.0.0"
"@lumino/properties": "npm:^2.0.0"
"@lumino/signaling": "npm:^2.1.1"
"@lumino/widgets": "npm:^2.1.1"
checksum: 10c0/34b1b2ab1904986f3e7eae75e91f4bf2c24767f0a115cc4c24ff47b5cc7886134b79e8b38ee46017044922398649c5a1f943a072f1552652d164aaeef369f042
languageName: node
linkType: hard
"@jupyterlab/rendermime-interfaces@npm:^3.8.4":
version: 3.8.4
resolution: "@jupyterlab/rendermime-interfaces@npm:3.8.4"
dependencies:
"@lumino/coreutils": "npm:^1.11.0 || ^2.1.1"
"@lumino/widgets": "npm:^1.37.2 || ^2.1.1"
checksum: 10c0/93f9345ecb50ad96d05ce2f30707eef00a2bf62c281df40218a1391ae435b1d2e4f91e90a43d35413837352af1061662572b3c870076fea95346d05f725c5b1c
languageName: node
linkType: hard
"@jupyterlab/rendermime@npm:^4.0.4":
version: 4.0.4
resolution: "@jupyterlab/rendermime@npm:4.0.4"
dependencies:
"@jupyterlab/apputils": "npm:^4.1.4"
"@jupyterlab/coreutils": "npm:^6.0.4"
"@jupyterlab/nbformat": "npm:^4.0.4"
"@jupyterlab/observables": "npm:^5.0.4"
"@jupyterlab/rendermime-interfaces": "npm:^3.8.4"
"@jupyterlab/services": "npm:^7.0.4"
"@jupyterlab/translation": "npm:^4.0.4"
"@lumino/coreutils": "npm:^2.1.1"
"@lumino/messaging": "npm:^2.0.0"
"@lumino/signaling": "npm:^2.1.1"
"@lumino/widgets": "npm:^2.1.1"
lodash.escape: "npm:^4.0.1"
checksum: 10c0/c3b0d1e34be1e1e9bbddd72a84a5025770d6efaffbb85064f7e72a110944ebe48f46c0b4468676c9770cd05b5b70973953a75a63cfbb99937a8c795d545cdd19
languageName: node
linkType: hard
"@jupyterlab/services@npm:^7.0.4":
version: 7.0.4
resolution: "@jupyterlab/services@npm:7.0.4"