-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathyarn.lock
18529 lines (16742 loc) · 661 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
"@arcanis/slice-ansi@npm:^1.1.1":
version: 1.1.1
resolution: "@arcanis/slice-ansi@npm:1.1.1"
dependencies:
grapheme-splitter: "npm:^1.0.4"
checksum: 10c0/2f222b121b8aaf67e8495e27d60ebfc34e2472033445c3380e93fb06aba9bfef6ab3096aca190a181b3dd505ed4c07f4dc7243fc9cb5369008b649cd1e39e8d8
languageName: node
linkType: hard
"@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: 10c0/e3966f2717b7ebd9610524730e10b75ee74154f62617e5e115c97dbbbabc5351845c9aa850788012cb4d9aee85c3dc59fe6bef36690f244e8dcfca34bd35e9c9
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.18.6":
version: 7.22.5
resolution: "@babel/helper-validator-identifier@npm:7.22.5"
checksum: 10c0/2ff1d3833154d17ccf773b8a71fdc0cd0e7356aa8033179d0e3133787dfb33d97796cbff8b92a97c56268205337dfc720227aeddc677c1bc08ae1b67a95252d7
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: 10c0/a6a6928d25099ef04c337fcbb829fab8059bb67d31ac37212efd611bdbe247d0e71a5096c4524272cb56399f40251fac57c025e42d3bc924db0183a6435a60ac
languageName: node
linkType: hard
"@babel/runtime@npm:^7.16.7, @babel/runtime@npm:^7.20.6":
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
"@braintree/sanitize-url@npm:^6.0.1":
version: 6.0.4
resolution: "@braintree/sanitize-url@npm:6.0.4"
checksum: 10c0/5d7bac57f3e49931db83f65aaa4fd22f96caa323bf0c7fcf6851fdbed179a8cf29eaa5dd372d340fc51ca5f44345ea5bc0196b36c8b16179888a7c9044313420
languageName: node
linkType: hard
"@codemirror/autocomplete@npm:^6.0.0, @codemirror/autocomplete@npm:^6.16.0, @codemirror/autocomplete@npm:^6.3.2, @codemirror/autocomplete@npm:^6.7.1":
version: 6.18.4
resolution: "@codemirror/autocomplete@npm:6.18.4"
dependencies:
"@codemirror/language": "npm:^6.0.0"
"@codemirror/state": "npm:^6.0.0"
"@codemirror/view": "npm:^6.17.0"
"@lezer/common": "npm:^1.0.0"
checksum: 10c0/602ea9395b3ebbb258669d7a946f650cc734742d1f67fd277c804ae152411f198546a1dc0c64ff2fda12a46eb83d766540ab609d1e3afa817bfe8131d10dfbdb
languageName: node
linkType: hard
"@codemirror/commands@npm:^6.5.0":
version: 6.7.1
resolution: "@codemirror/commands@npm:6.7.1"
dependencies:
"@codemirror/language": "npm:^6.0.0"
"@codemirror/state": "npm:^6.4.0"
"@codemirror/view": "npm:^6.27.0"
"@lezer/common": "npm:^1.1.0"
checksum: 10c0/287a50eebc50b316bd5a69c66005c14107f3be571e65812bc0811f5f0d187ca0670ba0be54b0266433450330600ceef569fa52d0678a1c2a17f73b10b0df2356
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.2.1":
version: 6.3.1
resolution: "@codemirror/lang-css@npm:6.3.1"
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.1.7"
checksum: 10c0/339387c5a1b90076ae41017e66d7da70dd2aca4e5e4d012c95df33d0f6e740410cf1fb53c4845e3814636d587ce6eff05ebca3173dcfc564a1f646d24f299180
languageName: node
linkType: hard
"@codemirror/lang-html@npm:^6.0.0, @codemirror/lang-html@npm:^6.4.9":
version: 6.4.9
resolution: "@codemirror/lang-html@npm:6.4.9"
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.17.0"
"@lezer/common": "npm:^1.0.0"
"@lezer/css": "npm:^1.1.0"
"@lezer/html": "npm:^1.3.0"
checksum: 10c0/0d6197aa645cc0a9da33789ea30423d4b8320b8e636c8587c7fcf58bdf90ea6934451d84ccbd9dd60dbc7046428204d7c986bd742c2cc459bee7c9653258db70
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.2.2":
version: 6.2.2
resolution: "@codemirror/lang-javascript@npm:6.2.2"
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.17.0"
"@lezer/common": "npm:^1.0.0"
"@lezer/javascript": "npm:^1.0.0"
checksum: 10c0/348969167fa5f18e8ec7e3614d408a95a54514f5625afcc680377d58a53d0f4ea412dcaeee65f0965e7d96f358d513b5c2744641b21ee5d0d976905b33715e48
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.2.5":
version: 6.3.1
resolution: "@codemirror/lang-markdown@npm:6.3.1"
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.2.1"
"@lezer/markdown": "npm:^1.0.0"
checksum: 10c0/0e76804a4b596e26e0265cb71e4fee1fa47af64162af622d731d72301e288a98d698468680121ec3cd34042f0fd4a6cafcf6a36e33f1d181d40a1154020dc440
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.6":
version: 6.1.6
resolution: "@codemirror/lang-python@npm:6.1.6"
dependencies:
"@codemirror/autocomplete": "npm:^6.3.2"
"@codemirror/language": "npm:^6.8.0"
"@codemirror/state": "npm:^6.0.0"
"@lezer/common": "npm:^1.2.1"
"@lezer/python": "npm:^1.1.4"
checksum: 10c0/0ddb02410986c7e36f685fb4eea70d19c2407cecc6aaffe730e876feaea717613740a6db73569315b58b480e819e5cf54251971e4a2f2f12a57a56fb00bd4d72
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.6.4":
version: 6.8.0
resolution: "@codemirror/lang-sql@npm:6.8.0"
dependencies:
"@codemirror/autocomplete": "npm:^6.0.0"
"@codemirror/language": "npm:^6.0.0"
"@codemirror/state": "npm:^6.0.0"
"@lezer/common": "npm:^1.2.0"
"@lezer/highlight": "npm:^1.0.0"
"@lezer/lr": "npm:^1.0.0"
checksum: 10c0/a2500e4cebf6c074c89338a020332c44094e7a6eead04ad6d7e423173a4f4637a6021fdbf68935a2f23550eb7b1d1d078855b3d3bf84b50ab7ad1ff01a95d463
languageName: node
linkType: hard
"@codemirror/lang-wast@npm:^6.0.2":
version: 6.0.2
resolution: "@codemirror/lang-wast@npm:6.0.2"
dependencies:
"@codemirror/language": "npm:^6.0.0"
"@lezer/common": "npm:^1.2.0"
"@lezer/highlight": "npm:^1.0.0"
"@lezer/lr": "npm:^1.0.0"
checksum: 10c0/a45bfbcaa2f6737987420da83690a402204f52786f60640555e4382a34db5e26d0a6cb29552d7dc6ec1b47794ae68e8a9703ce6fc4ef46f3f48db9bbf85641eb
languageName: node
linkType: hard
"@codemirror/lang-xml@npm:^6.1.0":
version: 6.1.0
resolution: "@codemirror/lang-xml@npm:6.1.0"
dependencies:
"@codemirror/autocomplete": "npm:^6.0.0"
"@codemirror/language": "npm:^6.4.0"
"@codemirror/state": "npm:^6.0.0"
"@codemirror/view": "npm:^6.0.0"
"@lezer/common": "npm:^1.0.0"
"@lezer/xml": "npm:^1.0.0"
checksum: 10c0/14fe84cf5c8a43f1772963a0d24df55a0c8c59d253b0927a8409bc4be0e00e9cc26c378ef14879418c02504d087590bb55ccc1d09f393eef7e19852095df538a
languageName: node
linkType: hard
"@codemirror/language@npm:^6.0.0, @codemirror/language@npm:^6.10.1, @codemirror/language@npm:^6.3.0, @codemirror/language@npm:^6.4.0, @codemirror/language@npm:^6.6.0, @codemirror/language@npm:^6.8.0":
version: 6.10.8
resolution: "@codemirror/language@npm:6.10.8"
dependencies:
"@codemirror/state": "npm:^6.0.0"
"@codemirror/view": "npm:^6.23.0"
"@lezer/common": "npm:^1.1.0"
"@lezer/highlight": "npm:^1.0.0"
"@lezer/lr": "npm:^1.0.0"
style-mod: "npm:^4.0.0"
checksum: 10c0/b7d07bc4726046563d4cfcd5d26ae64300fbfa58d81c034674d25e346ace0b5b2a53446d0b246ff09f6b0111a7ff35d827f2d5cc4ef95de9dfd43e4d068fe3a7
languageName: node
linkType: hard
"@codemirror/legacy-modes@npm:^6.4.0":
version: 6.4.2
resolution: "@codemirror/legacy-modes@npm:6.4.2"
dependencies:
"@codemirror/language": "npm:^6.0.0"
checksum: 10c0/1020d3ac30a9c78f2474558e7cbf0dd384316a68092e588d1ca73379ba7af35a9c2cf42dc72c81f7f48ba3c00a982d782aec2be5dede7202bcd13ffb2698e1e2
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.5.6":
version: 6.5.8
resolution: "@codemirror/search@npm:6.5.8"
dependencies:
"@codemirror/state": "npm:^6.0.0"
"@codemirror/view": "npm:^6.0.0"
crelt: "npm:^1.0.5"
checksum: 10c0/67a36fb0781427b23c39e223ecd9729b170a2e28874825b2d63b551761e620f2523707d7e593426b5cc4d5ea520ffb9026408de02a0aacfe55453e70e2d9b7a2
languageName: node
linkType: hard
"@codemirror/state@npm:^6.0.0, @codemirror/state@npm:^6.4.0, @codemirror/state@npm:^6.4.1, @codemirror/state@npm:^6.5.0":
version: 6.5.0
resolution: "@codemirror/state@npm:6.5.0"
dependencies:
"@marijn/find-cluster-break": "npm:^1.0.0"
checksum: 10c0/740425d605d7b12524e3abef242a8ca0ea1a17bab97f7583221f89c56b8f2eb236f8a227885e2bb472662b328d2a32b972fbf8543096224711679dfc3a28b492
languageName: node
linkType: hard
"@codemirror/view@npm:^6.0.0, @codemirror/view@npm:^6.17.0, @codemirror/view@npm:^6.23.0, @codemirror/view@npm:^6.26.3, @codemirror/view@npm:^6.27.0":
version: 6.36.1
resolution: "@codemirror/view@npm:6.36.1"
dependencies:
"@codemirror/state": "npm:^6.5.0"
style-mod: "npm:^4.1.0"
w3c-keyname: "npm:^2.2.4"
checksum: 10c0/7a580ec072801c05df2cc9f1f0e3bf5fda228e533e2537fd02f92632a4b57fc8ad63bbd53d991a8b86acd50019a9e167e2f0193b8979c7f9f234045535a6443e
languageName: node
linkType: hard
"@csstools/css-parser-algorithms@npm:^2.3.0":
version: 2.3.0
resolution: "@csstools/css-parser-algorithms@npm:2.3.0"
peerDependencies:
"@csstools/css-tokenizer": ^2.1.1
checksum: 10c0/faf3182479f4c9175530b41ef9f8592350a6d7cb41c1fcf4feb5975090860661ce43ee0dcd54ae0b83bfe36cb28e402679baeafc5ce412cf5eda44b1bba04b7a
languageName: node
linkType: hard
"@csstools/css-tokenizer@npm:^2.1.1":
version: 2.1.1
resolution: "@csstools/css-tokenizer@npm:2.1.1"
checksum: 10c0/231a3003a33b5ce260807cd707018fcd36bf63f3a4c2a4600fe6500d7257cbdfc352cda4c5c06ed5389fa59dc0b5ae3e487fdcab841b00b7e94192b34fb5c445
languageName: node
linkType: hard
"@csstools/media-query-list-parser@npm:^2.1.2":
version: 2.1.2
resolution: "@csstools/media-query-list-parser@npm:2.1.2"
peerDependencies:
"@csstools/css-parser-algorithms": ^2.3.0
"@csstools/css-tokenizer": ^2.1.1
checksum: 10c0/bcb316bafec931d8b84b09c59a1a0ab6614cff1d2170fba0c2924f7266db1825980c1cd14a2652ae2fc03d24a723bd4915dc14dc97f36369e10a7d9599870afa
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
"@cypress/request@npm:3.0.6":
version: 3.0.6
resolution: "@cypress/request@npm:3.0.6"
dependencies:
aws-sign2: "npm:~0.7.0"
aws4: "npm:^1.8.0"
caseless: "npm:~0.12.0"
combined-stream: "npm:~1.0.6"
extend: "npm:~3.0.2"
forever-agent: "npm:~0.6.1"
form-data: "npm:~4.0.0"
http-signature: "npm:~1.4.0"
is-typedarray: "npm:~1.0.0"
isstream: "npm:~0.1.2"
json-stringify-safe: "npm:~5.0.1"
mime-types: "npm:~2.1.19"
performance-now: "npm:^2.1.0"
qs: "npm:6.13.0"
safe-buffer: "npm:^5.1.2"
tough-cookie: "npm:^5.0.0"
tunnel-agent: "npm:^0.6.0"
uuid: "npm:^8.3.2"
checksum: 10c0/24671e655768ef09b099e93fdef5bab58f501a050ddb833d0bf13a44d146e5b3359d71658daecd183d2cb37a1e56cf8aed8a736e3730a23e2383263bd87b2305
languageName: node
linkType: hard
"@discoveryjs/json-ext@npm:0.5.7, @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.4.0, @eslint-community/regexpp@npm:^4.5.1":
version: 4.5.1
resolution: "@eslint-community/regexpp@npm:4.5.1"
checksum: 10c0/d79cbd99cc4dcfbb17e8dd30a30bb5aec5da9c60b9471043f886f116615bb15f0d417cb0ca638cefedba0b4c67c339e2011b53d88264a4540775f042a5879e01
languageName: node
linkType: hard
"@eslint/eslintrc@npm:^2.1.0":
version: 2.1.0
resolution: "@eslint/eslintrc@npm:2.1.0"
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/6ffbc3e7867b377754492539af0e2f5b55645a2c67279a70508fe09080bc76d49ba64b579e59a2a04014f84d0768301736fbcdd94c7b3ad4f0e648c32bf21e43
languageName: node
linkType: hard
"@eslint/js@npm:8.44.0":
version: 8.44.0
resolution: "@eslint/js@npm:8.44.0"
checksum: 10c0/ce7b966f8804228e4d5725d44d3c8fb7fc427176f077401323a02e082f628d207133a25704330e610ebe3254fdf1acb186f779d1242fd145a758fdcc4486a660
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
"@hutson/parse-repository-url@npm:^3.0.0":
version: 3.0.2
resolution: "@hutson/parse-repository-url@npm:3.0.2"
checksum: 10c0/d9197757ecad2df18d29d3e1d1fe0716d458fd88b849c71cbec9e78239f911074c97e8d764dfd8ed890431c1137e52dd7a337207fd65be20ce0784f7860ae4d1
languageName: node
linkType: hard
"@iarna/cli@npm:^2.1.0":
version: 2.1.0
resolution: "@iarna/cli@npm:2.1.0"
dependencies:
glob: "npm:^7.1.2"
signal-exit: "npm:^3.0.2"
checksum: 10c0/ee8f2529105c15417cfcb3ce4ffc3ad9cffb96bbe0575b6dc945a1748959729831ece73f1ade1941e3ed480e1ab24d3ecd91770820288db8bfc842912e800c7d
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
"@jest/schemas@npm:^29.6.0":
version: 29.6.0
resolution: "@jest/schemas@npm:29.6.0"
dependencies:
"@sinclair/typebox": "npm:^0.27.8"
checksum: 10c0/8671b1fb59c4296204d335190e8451e1983d9f2db6dbbd38f838c6c273fd222fc11e4e0df04adfb6169d36acfb9693d525db136653ec04e6884180f45a131d8f
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: 10c0/82685c8735c63fe388badee45e2970a6bc83eed1c84d46d8652863bafeca22a6c6cc15812f5999a4535366f4668ccc9ba6d5c67dfb72e846fa8a063806f10afd
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/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.10, @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/trace-mapping@npm:^0.3.20, @jridgewell/trace-mapping@npm:^0.3.9":
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/react-components@npm:^0.16.6":
version: 0.16.7
resolution: "@jupyter/react-components@npm:0.16.7"
dependencies:
"@jupyter/web-components": "npm:^0.16.7"
react: "npm:>=17.0.0 <19.0.0"
checksum: 10c0/739dd996819f61004c2e9911da4d1e6a68522d68127cf417ad9d21ce291f8650449b9d54d2edef94a34585a444c15a1a46bf56859da8dcd2c782f6ad6c43acc0
languageName: node
linkType: hard
"@jupyter/web-components@npm:^0.16.6, @jupyter/web-components@npm:^0.16.7":
version: 0.16.7
resolution: "@jupyter/web-components@npm:0.16.7"
dependencies:
"@microsoft/fast-colors": "npm:^5.3.1"
"@microsoft/fast-element": "npm:^1.12.0"
"@microsoft/fast-foundation": "npm:^2.49.4"
"@microsoft/fast-web-utilities": "npm:^5.4.1"
checksum: 10c0/37e8fcb44e03b3db8470726df2ff90f6fabca4918c58f4f129e2cf8117bea28384cb7a6f3c355bf6d7cc0b92cc9636a8fc674ef83c93100f77a473a929c91c76
languageName: node
linkType: hard
"@jupyter/ydoc@npm:^3.0.0":
version: 3.0.2
resolution: "@jupyter/ydoc@npm:3.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/7f25e97d9bc9178422fde6a0e1fb9e6bfa3ddc1bc22f443d229272f3c324b77844e8986eb2f8ff52e82884c211a39e919646739536858d1be40d0a1a54933809
languageName: node
linkType: hard
"@jupyterlab/application-extension@npm:^4.1.0":
version: 4.3.4
resolution: "@jupyterlab/application-extension@npm:4.3.4"
dependencies:
"@jupyterlab/application": "npm:^4.3.4"
"@jupyterlab/apputils": "npm:^4.4.4"
"@jupyterlab/coreutils": "npm:^6.3.4"
"@jupyterlab/property-inspector": "npm:^4.3.4"
"@jupyterlab/settingregistry": "npm:^4.3.4"
"@jupyterlab/statedb": "npm:^4.3.4"
"@jupyterlab/statusbar": "npm:^4.3.4"
"@jupyterlab/translation": "npm:^4.3.4"
"@jupyterlab/ui-components": "npm:^4.3.4"
"@lumino/algorithm": "npm:^2.0.2"
"@lumino/commands": "npm:^2.3.1"
"@lumino/coreutils": "npm:^2.2.0"
"@lumino/disposable": "npm:^2.1.3"
"@lumino/widgets": "npm:^2.5.0"
react: "npm:^18.2.0"
checksum: 10c0/e95657f037226a8ed4831151fb7ab1f297e15b7bdff272a408846a5940ff1f9c834dd47142d603b5d392e342fd0a77db8a3db8b7dba2dd822212fd34ef086530
languageName: node
linkType: hard
"@jupyterlab/application@npm:^4.0.2, @jupyterlab/application@npm:^4.1.0, @jupyterlab/application@npm:^4.1.8, @jupyterlab/application@npm:^4.3.4":
version: 4.3.4
resolution: "@jupyterlab/application@npm:4.3.4"
dependencies:
"@fortawesome/fontawesome-free": "npm:^5.12.0"
"@jupyterlab/apputils": "npm:^4.4.4"
"@jupyterlab/coreutils": "npm:^6.3.4"
"@jupyterlab/docregistry": "npm:^4.3.4"
"@jupyterlab/rendermime": "npm:^4.3.4"
"@jupyterlab/rendermime-interfaces": "npm:^3.11.4"
"@jupyterlab/services": "npm:^7.3.4"
"@jupyterlab/statedb": "npm:^4.3.4"
"@jupyterlab/translation": "npm:^4.3.4"
"@jupyterlab/ui-components": "npm:^4.3.4"
"@lumino/algorithm": "npm:^2.0.2"
"@lumino/application": "npm:^2.4.1"
"@lumino/commands": "npm:^2.3.1"
"@lumino/coreutils": "npm:^2.2.0"
"@lumino/disposable": "npm:^2.1.3"
"@lumino/messaging": "npm:^2.0.2"
"@lumino/polling": "npm:^2.1.3"
"@lumino/properties": "npm:^2.0.2"
"@lumino/signaling": "npm:^2.1.3"
"@lumino/widgets": "npm:^2.5.0"
checksum: 10c0/777e3256c16563c2db3a5285e0537a3aa9e81bb04248d3e378291bfb98e289bad255741d7ac973f80767de4d6751c2e814569394ddfb219c1d584276e8d9a941
languageName: node
linkType: hard
"@jupyterlab/apputils-extension@npm:^4.1.0":
version: 4.3.4
resolution: "@jupyterlab/apputils-extension@npm:4.3.4"
dependencies:
"@jupyterlab/application": "npm:^4.3.4"
"@jupyterlab/apputils": "npm:^4.4.4"
"@jupyterlab/coreutils": "npm:^6.3.4"
"@jupyterlab/docregistry": "npm:^4.3.4"
"@jupyterlab/mainmenu": "npm:^4.3.4"
"@jupyterlab/rendermime-interfaces": "npm:^3.11.4"
"@jupyterlab/services": "npm:^7.3.4"
"@jupyterlab/settingregistry": "npm:^4.3.4"
"@jupyterlab/statedb": "npm:^4.3.4"
"@jupyterlab/statusbar": "npm:^4.3.4"
"@jupyterlab/translation": "npm:^4.3.4"
"@jupyterlab/ui-components": "npm:^4.3.4"
"@jupyterlab/workspaces": "npm:^4.3.4"
"@lumino/algorithm": "npm:^2.0.2"
"@lumino/commands": "npm:^2.3.1"
"@lumino/coreutils": "npm:^2.2.0"
"@lumino/disposable": "npm:^2.1.3"
"@lumino/domutils": "npm:^2.0.2"
"@lumino/polling": "npm:^2.1.3"
"@lumino/widgets": "npm:^2.5.0"
react: "npm:^18.2.0"
react-dom: "npm:^18.2.0"
react-toastify: "npm:^9.0.8"
checksum: 10c0/90e4dae8b71f2f24218f312b022e8b4b69c75ee4e895f25fc51e4310ce4916d97c0cdd1f52056f37290a21421d899acdd886044c50c71f7c606c865b568fd9ab
languageName: node
linkType: hard
"@jupyterlab/apputils@npm:^4.0.2, @jupyterlab/apputils@npm:^4.1.0, @jupyterlab/apputils@npm:^4.4.4":
version: 4.4.4
resolution: "@jupyterlab/apputils@npm:4.4.4"
dependencies:
"@jupyterlab/coreutils": "npm:^6.3.4"
"@jupyterlab/observables": "npm:^5.3.4"
"@jupyterlab/rendermime-interfaces": "npm:^3.11.4"
"@jupyterlab/services": "npm:^7.3.4"
"@jupyterlab/settingregistry": "npm:^4.3.4"
"@jupyterlab/statedb": "npm:^4.3.4"
"@jupyterlab/statusbar": "npm:^4.3.4"
"@jupyterlab/translation": "npm:^4.3.4"
"@jupyterlab/ui-components": "npm:^4.3.4"
"@lumino/algorithm": "npm:^2.0.2"
"@lumino/commands": "npm:^2.3.1"
"@lumino/coreutils": "npm:^2.2.0"
"@lumino/disposable": "npm:^2.1.3"
"@lumino/domutils": "npm:^2.0.2"
"@lumino/messaging": "npm:^2.0.2"
"@lumino/signaling": "npm:^2.1.3"
"@lumino/virtualdom": "npm:^2.0.2"
"@lumino/widgets": "npm:^2.5.0"
"@types/react": "npm:^18.0.26"
react: "npm:^18.2.0"
sanitize-html: "npm:~2.12.1"
checksum: 10c0/4aa0215bf4797a3e29ba3f3f01e12258fc84b8e0d9667781c4c8e4a981e69b170d5f84553dd05b033eface497deaa153d90fc26586e2ba0a4da0cd4401b68c9a
languageName: node
linkType: hard
"@jupyterlab/attachments@npm:^4.3.4":
version: 4.3.4
resolution: "@jupyterlab/attachments@npm:4.3.4"
dependencies:
"@jupyterlab/nbformat": "npm:^4.3.4"
"@jupyterlab/observables": "npm:^5.3.4"
"@jupyterlab/rendermime": "npm:^4.3.4"
"@jupyterlab/rendermime-interfaces": "npm:^3.11.4"
"@lumino/disposable": "npm:^2.1.3"
"@lumino/signaling": "npm:^2.1.3"
checksum: 10c0/471f5d0091450341bf20e315eef1bb5d537262ceac7fb7c43a2b9c9436863155eead44d4bbf32820209344db0e78bdb969046969b4ac7cfedd6fa66e3eb5de9d
languageName: node
linkType: hard
"@jupyterlab/builder@npm:^4.0.2, @jupyterlab/builder@npm:^4.1.0":
version: 4.3.4
resolution: "@jupyterlab/builder@npm:4.3.4"
dependencies:
"@lumino/algorithm": "npm:^2.0.2"
"@lumino/application": "npm:^2.4.1"
"@lumino/commands": "npm:^2.3.1"
"@lumino/coreutils": "npm:^2.2.0"
"@lumino/disposable": "npm:^2.1.3"
"@lumino/domutils": "npm:^2.0.2"
"@lumino/dragdrop": "npm:^2.1.5"
"@lumino/messaging": "npm:^2.0.2"
"@lumino/properties": "npm:^2.0.2"
"@lumino/signaling": "npm:^2.1.3"
"@lumino/virtualdom": "npm:^2.0.2"
"@lumino/widgets": "npm:^2.5.0"
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/b89b08d18c01a6f50f5f567ba3e72545c4583ecab3947141264bfc8cf590485163a9ed68d0aa43c18a206a36783387b760191d7409e4e20ceeea42d2217e472d
languageName: node
linkType: hard
"@jupyterlab/buildutils@npm:^4.1.0":
version: 4.3.4
resolution: "@jupyterlab/buildutils@npm:4.3.4"
dependencies:
"@yarnpkg/core": "npm:^4.0.3"
"@yarnpkg/parsers": "npm:^3.0.0"
commander: "npm:^9.4.1"
crypto: "npm:~1.0.1"
dependency-graph: "npm:^0.11.0"
fs-extra: "npm:^10.1.0"
glob: "npm:~7.1.6"
inquirer: "npm:^9.1.4"
micromatch: "npm:^4.0.2"
minimatch: "npm:~3.0.4"
os: "npm:~0.1.1"
package-json: "npm:^7.0.0"
prettier: "npm:~2.6.0"
process: "npm:^0.11.10"
semver: "npm:^7.3.2"
sort-package-json: "npm:~1.53.1"
typescript: "npm:~5.1.6"
verdaccio: "npm:^5.25.0"
bin:
get-dependency: lib/get-dependency.js
local-repository: lib/local-repository.js
remove-dependency: lib/remove-dependency.js
update-dependency: lib/update-dependency.js
update-dist-tag: lib/update-dist-tag.js
update-staging-lock: lib/update-staging-lock.js
checksum: 10c0/bf9a864a6d5f26471496006c370d0a6809a0ce76efc8b9afb43e2b661ae9b7e3485bd4e6773ebfb5455ba0096d94f83101140b5f05198c994b486a50c4aea1df
languageName: node
linkType: hard
"@jupyterlab/cells@npm:^4.1.0, @jupyterlab/cells@npm:^4.3.4":
version: 4.3.4
resolution: "@jupyterlab/cells@npm:4.3.4"
dependencies:
"@codemirror/state": "npm:^6.4.1"
"@codemirror/view": "npm:^6.26.3"
"@jupyter/ydoc": "npm:^3.0.0"
"@jupyterlab/apputils": "npm:^4.4.4"
"@jupyterlab/attachments": "npm:^4.3.4"
"@jupyterlab/codeeditor": "npm:^4.3.4"
"@jupyterlab/codemirror": "npm:^4.3.4"
"@jupyterlab/coreutils": "npm:^6.3.4"
"@jupyterlab/documentsearch": "npm:^4.3.4"
"@jupyterlab/filebrowser": "npm:^4.3.4"
"@jupyterlab/nbformat": "npm:^4.3.4"
"@jupyterlab/observables": "npm:^5.3.4"
"@jupyterlab/outputarea": "npm:^4.3.4"
"@jupyterlab/rendermime": "npm:^4.3.4"
"@jupyterlab/services": "npm:^7.3.4"
"@jupyterlab/toc": "npm:^6.3.4"
"@jupyterlab/translation": "npm:^4.3.4"
"@jupyterlab/ui-components": "npm:^4.3.4"
"@lumino/algorithm": "npm:^2.0.2"
"@lumino/coreutils": "npm:^2.2.0"
"@lumino/domutils": "npm:^2.0.2"
"@lumino/dragdrop": "npm:^2.1.5"
"@lumino/messaging": "npm:^2.0.2"
"@lumino/polling": "npm:^2.1.3"
"@lumino/signaling": "npm:^2.1.3"
"@lumino/virtualdom": "npm:^2.0.2"
"@lumino/widgets": "npm:^2.5.0"
react: "npm:^18.2.0"
checksum: 10c0/f5130f6b3fabf566e67073ba5fed00cc3430ba6b887f83b382941031c686b7bb9f0ff15dbfff4964c7a923e8143fc4a7c82c28bafea7c6f1af7069add6746c5b
languageName: node
linkType: hard
"@jupyterlab/codeeditor@npm:^4.3.4":
version: 4.3.4
resolution: "@jupyterlab/codeeditor@npm:4.3.4"
dependencies:
"@codemirror/state": "npm:^6.4.1"
"@jupyter/ydoc": "npm:^3.0.0"
"@jupyterlab/apputils": "npm:^4.4.4"
"@jupyterlab/coreutils": "npm:^6.3.4"
"@jupyterlab/nbformat": "npm:^4.3.4"
"@jupyterlab/observables": "npm:^5.3.4"
"@jupyterlab/statusbar": "npm:^4.3.4"
"@jupyterlab/translation": "npm:^4.3.4"
"@jupyterlab/ui-components": "npm:^4.3.4"
"@lumino/coreutils": "npm:^2.2.0"
"@lumino/disposable": "npm:^2.1.3"
"@lumino/dragdrop": "npm:^2.1.5"
"@lumino/messaging": "npm:^2.0.2"
"@lumino/signaling": "npm:^2.1.3"
"@lumino/widgets": "npm:^2.5.0"
react: "npm:^18.2.0"
checksum: 10c0/41d79d7e43402d23c61de589b3309b475be89ef22334666f13d275a8e8c8575ca041e7a88eb44b5416ec2e1b9df37ac865be5255ef573645263b41f6bf5ec806
languageName: node
linkType: hard
"@jupyterlab/codemirror-extension@npm:^4.1.0":
version: 4.3.4
resolution: "@jupyterlab/codemirror-extension@npm:4.3.4"
dependencies:
"@codemirror/commands": "npm:^6.5.0"
"@codemirror/lang-markdown": "npm:^6.2.5"
"@codemirror/language": "npm:^6.10.1"
"@codemirror/legacy-modes": "npm:^6.4.0"
"@codemirror/search": "npm:^6.5.6"
"@codemirror/view": "npm:^6.26.3"
"@jupyter/ydoc": "npm:^3.0.0"
"@jupyterlab/application": "npm:^4.3.4"
"@jupyterlab/codeeditor": "npm:^4.3.4"
"@jupyterlab/codemirror": "npm:^4.3.4"
"@jupyterlab/settingregistry": "npm:^4.3.4"
"@jupyterlab/statusbar": "npm:^4.3.4"
"@jupyterlab/translation": "npm:^4.3.4"
"@jupyterlab/ui-components": "npm:^4.3.4"
"@lumino/coreutils": "npm:^2.2.0"
"@lumino/widgets": "npm:^2.5.0"
"@rjsf/utils": "npm:^5.13.4"
"@rjsf/validator-ajv8": "npm:^5.13.4"
react: "npm:^18.2.0"
checksum: 10c0/20d5a15b771f32f0753b03408e4969053a72502ac9d7f3c3381af905188de189e5fb1bff494447b653b90f166bf2380a8147f83bab832a3e7fc810ef7d74daf3
languageName: node
linkType: hard
"@jupyterlab/codemirror@npm:^4.3.4":
version: 4.3.4
resolution: "@jupyterlab/codemirror@npm:4.3.4"
dependencies:
"@codemirror/autocomplete": "npm:^6.16.0"
"@codemirror/commands": "npm:^6.5.0"
"@codemirror/lang-cpp": "npm:^6.0.2"
"@codemirror/lang-css": "npm:^6.2.1"
"@codemirror/lang-html": "npm:^6.4.9"
"@codemirror/lang-java": "npm:^6.0.1"
"@codemirror/lang-javascript": "npm:^6.2.2"
"@codemirror/lang-json": "npm:^6.0.1"
"@codemirror/lang-markdown": "npm:^6.2.5"
"@codemirror/lang-php": "npm:^6.0.1"
"@codemirror/lang-python": "npm:^6.1.6"
"@codemirror/lang-rust": "npm:^6.0.1"
"@codemirror/lang-sql": "npm:^6.6.4"
"@codemirror/lang-wast": "npm:^6.0.2"
"@codemirror/lang-xml": "npm:^6.1.0"
"@codemirror/language": "npm:^6.10.1"
"@codemirror/legacy-modes": "npm:^6.4.0"
"@codemirror/search": "npm:^6.5.6"
"@codemirror/state": "npm:^6.4.1"
"@codemirror/view": "npm:^6.26.3"
"@jupyter/ydoc": "npm:^3.0.0"
"@jupyterlab/codeeditor": "npm:^4.3.4"
"@jupyterlab/coreutils": "npm:^6.3.4"
"@jupyterlab/documentsearch": "npm:^4.3.4"
"@jupyterlab/nbformat": "npm:^4.3.4"
"@jupyterlab/translation": "npm:^4.3.4"
"@lezer/common": "npm:^1.2.1"
"@lezer/generator": "npm:^1.7.0"
"@lezer/highlight": "npm:^1.2.0"
"@lezer/markdown": "npm:^1.3.0"
"@lumino/coreutils": "npm:^2.2.0"
"@lumino/disposable": "npm:^2.1.3"
"@lumino/signaling": "npm:^2.1.3"
yjs: "npm:^13.5.40"
checksum: 10c0/209bd17c49c4377b1e1fa6b70d3f8562e0db8a7763a497e7d7f37aec034221bf9fbd724836f84a369ef0bd6011abd4acd0df7e14a327cd7dd4432cfab459130c
languageName: node
linkType: hard
"@jupyterlab/completer@npm:^4.3.4":
version: 4.3.4
resolution: "@jupyterlab/completer@npm:4.3.4"
dependencies:
"@codemirror/state": "npm:^6.4.1"
"@codemirror/view": "npm:^6.26.3"
"@jupyter/ydoc": "npm:^3.0.0"
"@jupyterlab/apputils": "npm:^4.4.4"
"@jupyterlab/codeeditor": "npm:^4.3.4"
"@jupyterlab/codemirror": "npm:^4.3.4"
"@jupyterlab/coreutils": "npm:^6.3.4"
"@jupyterlab/rendermime": "npm:^4.3.4"
"@jupyterlab/services": "npm:^7.3.4"
"@jupyterlab/settingregistry": "npm:^4.3.4"
"@jupyterlab/statedb": "npm:^4.3.4"
"@jupyterlab/translation": "npm:^4.3.4"
"@jupyterlab/ui-components": "npm:^4.3.4"
"@lumino/algorithm": "npm:^2.0.2"
"@lumino/coreutils": "npm:^2.2.0"
"@lumino/disposable": "npm:^2.1.3"
"@lumino/domutils": "npm:^2.0.2"
"@lumino/messaging": "npm:^2.0.2"
"@lumino/signaling": "npm:^2.1.3"
"@lumino/widgets": "npm:^2.5.0"
checksum: 10c0/b926c3182c54e4713d9591df65026de5afce21de3d8ce589c6e9f5e093ee359acc33d05a36e22b69c5328006528d5728d708e45c76147ae5f227d05e9dac8a93
languageName: node
linkType: hard
"@jupyterlab/console@npm:^4.3.4":
version: 4.3.4
resolution: "@jupyterlab/console@npm:4.3.4"
dependencies:
"@jupyter/ydoc": "npm:^3.0.0"
"@jupyterlab/apputils": "npm:^4.4.4"
"@jupyterlab/cells": "npm:^4.3.4"
"@jupyterlab/codeeditor": "npm:^4.3.4"
"@jupyterlab/coreutils": "npm:^6.3.4"
"@jupyterlab/nbformat": "npm:^4.3.4"
"@jupyterlab/observables": "npm:^5.3.4"
"@jupyterlab/rendermime": "npm:^4.3.4"
"@jupyterlab/services": "npm:^7.3.4"
"@jupyterlab/translation": "npm:^4.3.4"
"@jupyterlab/ui-components": "npm:^4.3.4"
"@lumino/coreutils": "npm:^2.2.0"
"@lumino/disposable": "npm:^2.1.3"
"@lumino/dragdrop": "npm:^2.1.5"
"@lumino/messaging": "npm:^2.0.2"
"@lumino/signaling": "npm:^2.1.3"
"@lumino/widgets": "npm:^2.5.0"
checksum: 10c0/2ea464a936cf421a894a97a161902a0acdbea0f32fbe90d12f272a9eda224c41d0559020f35a74b97eeaf9f0b80e1d116fc0e325ee39e66fa32f5e556278df08
languageName: node
linkType: hard
"@jupyterlab/coreutils@npm:^5.6.8":
version: 5.6.8
resolution: "@jupyterlab/coreutils@npm:5.6.8"
dependencies:
"@lumino/coreutils": "npm:^1.11.0"
"@lumino/disposable": "npm:^1.10.0"
"@lumino/signaling": "npm:^1.10.0"
minimist: "npm:~1.2.0"
moment: "npm:^2.24.0"
path-browserify: "npm:^1.0.0"
url-parse: "npm:~1.5.1"
checksum: 10c0/442f42133abe93bece4f3dd27360c67c3ee984ce0b301e7963651d004579e2a354af20b1a42f67c636385d95de8671422c43d7c87306f9711daabb6acc544bc3
languageName: node
linkType: hard
"@jupyterlab/coreutils@npm:^6.0.2, @jupyterlab/coreutils@npm:^6.1.0, @jupyterlab/coreutils@npm:^6.3.4":
version: 6.3.4
resolution: "@jupyterlab/coreutils@npm:6.3.4"
dependencies:
"@lumino/coreutils": "npm:^2.2.0"
"@lumino/disposable": "npm:^2.1.3"
"@lumino/signaling": "npm:^2.1.3"
minimist: "npm:~1.2.0"
path-browserify: "npm:^1.0.0"
url-parse: "npm:~1.5.4"
checksum: 10c0/a866a78133e4d90ecf9e0675fd27997bea547a1da4e5b19515eac62bb8f69b4543e6895f06cbb053480ff1075f33e29f7128084cda9930df2ecdd20a46cb91b8
languageName: node
linkType: hard