-
-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathyarn.lock
13147 lines (11828 loc) · 462 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
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.12.13":
version: 7.21.4
resolution: "@babel/code-frame@npm:7.21.4"
dependencies:
"@babel/highlight": "npm:^7.18.6"
checksum: 10c0/c357e4b3b7a56927cb26fcb057166fef3cc701a4e35b2fa8a87402c31be0fd41d0144c61c87bf7d3b2a8f1c4d9ef00592dc0c7e8b9500dae43340a1e9f1096de
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.18.6":
version: 7.19.1
resolution: "@babel/helper-validator-identifier@npm:7.19.1"
checksum: 10c0/f978ecfea840f65b64ab9e17fac380625a45f4fe1361eeb29867fcfd1c9eaa72abd7023f2f40ac3168587d7e5153660d16cfccb352a557be2efd347a051b4b20
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.15.4":
version: 7.21.0
resolution: "@babel/runtime@npm:7.21.0"
dependencies:
regenerator-runtime: "npm:^0.13.11"
checksum: 10c0/8fc28acf3b353390a8188a63d443719847b24b66028fdc8bb301c08e2ee013b52aaeb9d0e9783fa5dcd72bb3c0172fb647419db32392101001738356bdc1f4ab
languageName: node
linkType: hard
"@codemirror/state@npm:^6.2.0":
version: 6.2.0
resolution: "@codemirror/state@npm:6.2.0"
checksum: 10c0/9e1569b3b01a80e634a97816adc82ba938d36d0a0626c82d7ff74faecfd9e1b94b29de58564e0d40b702ac833de34e96448f4ee5c148b68f33c8d7e1c23a3b1b
languageName: node
linkType: hard
"@csstools/selector-specificity@npm:^2.0.2":
version: 2.2.0
resolution: "@csstools/selector-specificity@npm:2.2.0"
peerDependencies:
postcss-selector-parser: ^6.0.10
checksum: 10c0/d81c9b437f7d45ad0171e09240454ced439fa3e67576daae4ec7bb9c03e7a6061afeb0fa21d41f5f45d54bf8e242a7aa8101fbbba7ca7632dd847601468b5d9e
languageName: node
linkType: hard
"@discoveryjs/json-ext@npm:^0.5.0":
version: 0.5.6
resolution: "@discoveryjs/json-ext@npm:0.5.6"
checksum: 10c0/4bcaae126686b3b6f472d79aae47868f934f3fecc337f11e5ac289f6f776d139fe2bdcfe325af2bc526312495bc96975306e29f8316150c1ac7483b95d80035b
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: "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":
version: 4.5.0
resolution: "@eslint-community/regexpp@npm:4.5.0"
checksum: 10c0/7a828a8cf9422c4d6676f3b207237cabf3cd3c4327a28c5990b726630677ddc35ea9f9488d3c9c449db924cd5d9d58ded7824339774ca3592d292e0d6f945bde
languageName: node
linkType: hard
"@eslint/eslintrc@npm:^2.0.2":
version: 2.0.2
resolution: "@eslint/eslintrc@npm:2.0.2"
dependencies:
ajv: "npm:^6.12.4"
debug: "npm:^4.3.2"
espree: "npm:^9.5.1"
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/6ae7360f4e45fbfa6f66ba92be506860d15f070847bdad4542c97eda98b16c1f4f5be4a8807ccb284224691eb4125bbffc51e8933f6cb186d6cf23a8e668eb5b
languageName: node
linkType: hard
"@eslint/js@npm:8.37.0":
version: 8.37.0
resolution: "@eslint/js@npm:8.37.0"
checksum: 10c0/6abb3d97412ac960c7436ecdaa56eb00ac57c34782dc0901c82b259c32704e45044927b2910d786ec2127e548986d67e7ba29fec46abfb5d8fc9bedf379af2cf
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
"@gar/promisify@npm:^1.1.3":
version: 1.1.3
resolution: "@gar/promisify@npm:1.1.3"
checksum: 10c0/0b3c9958d3cd17f4add3574975e3115ae05dc7f1298a60810414b16f6f558c137b5fb3cd3905df380bacfd955ec13f67c1e6710cbb5c246a7e8d65a8289b2bff
languageName: node
linkType: hard
"@humanwhocodes/config-array@npm:^0.11.8":
version: 0.11.8
resolution: "@humanwhocodes/config-array@npm:0.11.8"
dependencies:
"@humanwhocodes/object-schema": "npm:^1.2.1"
debug: "npm:^4.1.1"
minimatch: "npm:^3.0.5"
checksum: 10c0/441223496cc5ae3ae443e11e2ba05f03f6418d1e0233e3d160b027dda742d7a957fa9e1d56125d5829079419c797c13e1ae8ffe3454f268901ac18f68e0198f1
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
"@isaacs/string-locale-compare@npm:^1.1.0":
version: 1.1.0
resolution: "@isaacs/string-locale-compare@npm:1.1.0"
checksum: 10c0/d67226ff7ac544a495c77df38187e69e0e3a0783724777f86caadafb306e2155dc3b5787d5927916ddd7fb4a53561ac8f705448ac3235d18ea60da5854829fdf
languageName: node
linkType: hard
"@jest/expect-utils@npm:^29.5.0":
version: 29.5.0
resolution: "@jest/expect-utils@npm:29.5.0"
dependencies:
jest-get-type: "npm:^29.4.3"
checksum: 10c0/e7f44de651b5ef71c6e1b7a0350a704258167c20b6e8165b3100346d5c7f8eb4cd2c229ea2c048e9161666d1c086fbbc422f111f3b77da3fb89a99d52d4b3690
languageName: node
linkType: hard
"@jest/schemas@npm:^29.4.3":
version: 29.4.3
resolution: "@jest/schemas@npm:29.4.3"
dependencies:
"@sinclair/typebox": "npm:^0.25.16"
checksum: 10c0/8a35967cec454d1de2d5a58ab99b49a0ff798d1dce2d817bdd9960bb2f070493f767fbbf419e6a263860d3b1ef1e50ab609a76ae21b5f8c09bb0859e8f51a098
languageName: node
linkType: hard
"@jest/types@npm:^29.5.0":
version: 29.5.0
resolution: "@jest/types@npm:29.5.0"
dependencies:
"@jest/schemas": "npm:^29.4.3"
"@types/istanbul-lib-coverage": "npm:^2.0.0"
"@types/istanbul-reports": "npm:^3.0.0"
"@types/node": "npm:*"
"@types/yargs": "npm:^17.0.8"
chalk: "npm:^4.0.0"
checksum: 10c0/f1cccd2e9b00a985bfdac03517f906cdf7a481be3606c335f8ec08a7272b7cf700b23484ce323a912b374defb90d3ab88c643cf2a2f47635c1c4feacfa1c1b2d
languageName: node
linkType: hard
"@jlab-contrib/msa@npm:^1.1.2":
version: 1.1.2
resolution: "@jlab-contrib/msa@npm:1.1.2"
dependencies:
backbone-childs: "npm:^1.0.3"
backbone-thin: "npm:^1.0.8"
backbone-viewj: "npm:^1.0.1"
bio.io: "npm:^1.0.6"
biojs-events: "npm:^0.0.4"
biojs-model: "npm:^0.0.5"
biojs-vis-seqlogo: "npm:0.0.14"
blueimp_canvastoblob: "npm:^1.0.0"
browser-saveas: "npm:^1.0.1"
canvas2svg: "npm:^1.0.16"
dom-helper: "npm:^1.0.0"
html2canvas: "npm:^1.0.0-rc.7"
jbone: "npm:^1.1.2"
koala-js: "npm:^1.0.7"
linear-scale: "npm:^0.0.3"
lodash: "npm:^4.13.1"
mouse-pos: "npm:^1.0.3"
msa-colorschemes: "npm:^1.0.10"
msa-seqtools: "npm:^0.1.8"
xhr: "npm:^2.2.0"
checksum: 10c0/da28b32c66e5ef06aac46d767a743c18bb684d6084a88c39834f8513b3b8fc5443fdcfad2b8dc0b55528960cb7d575b836c470ab4369b6efff1f0a75c8173a51
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/gen-mapping@npm:^0.3.5":
version: 0.3.5
resolution: "@jridgewell/gen-mapping@npm:0.3.5"
dependencies:
"@jridgewell/set-array": "npm:^1.2.1"
"@jridgewell/sourcemap-codec": "npm:^1.4.10"
"@jridgewell/trace-mapping": "npm:^0.3.24"
checksum: 10c0/1be4fd4a6b0f41337c4f5fdf4afc3bd19e39c3691924817108b82ffcb9c9e609c273f936932b9fba4b3a298ce2eb06d9bff4eb1cc3bd81c4f4ee1b4917e25feb
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/set-array@npm:^1.2.1":
version: 1.2.1
resolution: "@jridgewell/set-array@npm:1.2.1"
checksum: 10c0/2a5aa7b4b5c3464c895c802d8ae3f3d2b92fcbe84ad12f8d0bfbb1f5ad006717e7577ee1fd2eac00c088abe486c7adb27976f45d2941ff6b0b92b2c3302c60f4
languageName: node
linkType: hard
"@jridgewell/source-map@npm:^0.3.2":
version: 0.3.2
resolution: "@jridgewell/source-map@npm:0.3.2"
dependencies:
"@jridgewell/gen-mapping": "npm:^0.3.0"
"@jridgewell/trace-mapping": "npm:^0.3.9"
checksum: 10c0/1540da323456878281c8e03fc4edc444ea151aa441eb38a43d84d39df8fec9446e375202cd999b54637f4627e42e2a38b3ab07195e5e49616fc6b7eee1b7119f
languageName: node
linkType: hard
"@jridgewell/source-map@npm:^0.3.3":
version: 0.3.6
resolution: "@jridgewell/source-map@npm:0.3.6"
dependencies:
"@jridgewell/gen-mapping": "npm:^0.3.5"
"@jridgewell/trace-mapping": "npm:^0.3.25"
checksum: 10c0/6a4ecc713ed246ff8e5bdcc1ef7c49aaa93f7463d948ba5054dda18b02dcc6a055e2828c577bcceee058f302ce1fc95595713d44f5c45e43d459f88d267f2f04
languageName: node
linkType: hard
"@jridgewell/sourcemap-codec@npm:1.4.14, @jridgewell/sourcemap-codec@npm:^1.4.10":
version: 1.4.14
resolution: "@jridgewell/sourcemap-codec@npm:1.4.14"
checksum: 10c0/3fbaff1387c1338b097eeb6ff92890d7838f7de0dde259e4983763b44540bfd5ca6a1f7644dc8ad003a57f7e80670d5b96a8402f1386ba9aee074743ae9bad51
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.17
resolution: "@jridgewell/trace-mapping@npm:0.3.17"
dependencies:
"@jridgewell/resolve-uri": "npm:3.1.0"
"@jridgewell/sourcemap-codec": "npm:1.4.14"
checksum: 10c0/40b65fcbdd7cc5a60dbe0a2780b6670ebbc1a31c96e43833e0bf2fee0773b1ba5137ab7d137b28fc3f215567bd5f9d06b7b30634ba15636c13bd8a863c20ae9a
languageName: node
linkType: hard
"@jridgewell/trace-mapping@npm:^0.3.20, @jridgewell/trace-mapping@npm:^0.3.24, @jridgewell/trace-mapping@npm:^0.3.25":
version: 0.3.25
resolution: "@jridgewell/trace-mapping@npm:0.3.25"
dependencies:
"@jridgewell/resolve-uri": "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:^3.0.0 || ^4.0.0, @jupyterlab/application@npm:^4.0.0":
version: 4.0.0
resolution: "@jupyterlab/application@npm:4.0.0"
dependencies:
"@fortawesome/fontawesome-free": "npm:^5.12.0"
"@jupyterlab/apputils": "npm:^4.0.0"
"@jupyterlab/coreutils": "npm:^6.0.0"
"@jupyterlab/docregistry": "npm:^4.0.0"
"@jupyterlab/rendermime": "npm:^4.0.0"
"@jupyterlab/rendermime-interfaces": "npm:^3.8.0"
"@jupyterlab/services": "npm:^7.0.0"
"@jupyterlab/statedb": "npm:^4.0.0"
"@jupyterlab/translation": "npm:^4.0.0"
"@jupyterlab/ui-components": "npm:^4.0.0"
"@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/951d77a5ebf5a77c8d35a7a6443569876f1801b1963e497c0d2d8ea7ebf263715b426db146cd0907ef8cb4268e217764413a56453e86887db8fd8b2ed6de9eaf
languageName: node
linkType: hard
"@jupyterlab/apputils@npm:^3.0.0 || ^4.0.0, @jupyterlab/apputils@npm:^4.0.0":
version: 4.0.0
resolution: "@jupyterlab/apputils@npm:4.0.0"
dependencies:
"@jupyterlab/coreutils": "npm:^6.0.0"
"@jupyterlab/observables": "npm:^5.0.0"
"@jupyterlab/rendermime-interfaces": "npm:^3.8.0"
"@jupyterlab/services": "npm:^7.0.0"
"@jupyterlab/settingregistry": "npm:^4.0.0"
"@jupyterlab/statedb": "npm:^4.0.0"
"@jupyterlab/statusbar": "npm:^4.0.0"
"@jupyterlab/translation": "npm:^4.0.0"
"@jupyterlab/ui-components": "npm:^4.0.0"
"@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/8eb2e25d60048354e00fa85681559e6c9c570ba03f534b6546eadc0cc16e952172034ab1f065f7e74f6cefaa93c00f4188c7d27b99260591a6600cc77fa04bde
languageName: node
linkType: hard
"@jupyterlab/builder@npm:^4.0.0":
version: 4.0.0
resolution: "@jupyterlab/builder@npm:4.0.0"
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/a9250ad04b8943b2d233a9a84418bcfaacc702805ae4131283080f54e74609b526735f35db016f62b982f113196de6af5855a58c42eeaec7ed019e3bfa383317
languageName: node
linkType: hard
"@jupyterlab/buildutils@npm:^4.0.0":
version: 4.0.0
resolution: "@jupyterlab/buildutils@npm:4.0.0"
dependencies:
"@yarnpkg/lockfile": "npm:^1.1.0"
child_process: "npm:~1.0.2"
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"
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.0.4"
verdaccio: "npm:^5.20.1"
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
checksum: 10c0/3174adeec554ed36b40270429d0e9c817000b9b58ad62cb9611362c3f53ef6a37177bc7532e62ad9a42a1be14c9264fec951dbd243c3b039173c60ac58b7d206
languageName: node
linkType: hard
"@jupyterlab/codeeditor@npm:^4.0.0":
version: 4.0.0
resolution: "@jupyterlab/codeeditor@npm:4.0.0"
dependencies:
"@codemirror/state": "npm:^6.2.0"
"@jupyter/ydoc": "npm:^1.0.2"
"@jupyterlab/coreutils": "npm:^6.0.0"
"@jupyterlab/nbformat": "npm:^4.0.0"
"@jupyterlab/observables": "npm:^5.0.0"
"@jupyterlab/statusbar": "npm:^4.0.0"
"@jupyterlab/translation": "npm:^4.0.0"
"@jupyterlab/ui-components": "npm:^4.0.0"
"@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/14626351f0fcd537ad34fee09d82170411d821ef9af2974501dd2363f928a98ab921cdae5b5ac1313d86efe64c3bdf891ab8ef5e4f4159fa7f1a35c23b493dec
languageName: node
linkType: hard
"@jupyterlab/coreutils@npm:^6.0.0":
version: 6.0.0
resolution: "@jupyterlab/coreutils@npm:6.0.0"
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/4b1ba6a6d735724691d6b1985e01a9eea62c5c41bb008ad327ee0f9b8462fb24ee519be1801e4bb88ce7e2f2f94b403db23d11538a5692ef89001f9368aedc0a
languageName: node
linkType: hard
"@jupyterlab/docregistry@npm:^4.0.0":
version: 4.0.0
resolution: "@jupyterlab/docregistry@npm:4.0.0"
dependencies:
"@jupyter/ydoc": "npm:^1.0.2"
"@jupyterlab/apputils": "npm:^4.0.0"
"@jupyterlab/codeeditor": "npm:^4.0.0"
"@jupyterlab/coreutils": "npm:^6.0.0"
"@jupyterlab/observables": "npm:^5.0.0"
"@jupyterlab/rendermime": "npm:^4.0.0"
"@jupyterlab/rendermime-interfaces": "npm:^3.8.0"
"@jupyterlab/services": "npm:^7.0.0"
"@jupyterlab/translation": "npm:^4.0.0"
"@jupyterlab/ui-components": "npm:^4.0.0"
"@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/67bf886402090b5638a71b1f5a89f2fc4b9935f868ea62247290649246cedcdab6bc0ecd976e3f71ce921ce26a1f74d0131daa3009f93a3589fecb8b74b7058c
languageName: node
linkType: hard
"@jupyterlab/fasta-extension@workspace:packages/fasta-extension":
version: 0.0.0-use.local
resolution: "@jupyterlab/fasta-extension@workspace:packages/fasta-extension"
dependencies:
"@jlab-contrib/msa": "npm:^1.1.2"
"@jupyterlab/builder": "npm:^4.0.0"
"@jupyterlab/rendermime-interfaces": "npm:^3.0.0 || ^3.8.0"
"@lumino/messaging": "npm:^1.0.0 || ^2.0.0"
"@lumino/widgets": "npm:^1.0.0 || ^2.1.0"
"@types/json-schema": "npm:^7.0.11"
"@typescript-eslint/eslint-plugin": "npm:^5.55.0"
"@typescript-eslint/parser": "npm:^5.55.0"
css-loader: "npm:^6.7.1"
eslint: "npm:^8.36.0"
eslint-config-prettier: "npm:^8.7.0"
eslint-plugin-prettier: "npm:^4.2.1"
npm-run-all: "npm:^4.1.5"
prettier: "npm:^2.8.7"
rimraf: "npm:^4.4.1"
source-map-loader: "npm:^1.0.2"
style-loader: "npm:^3.3.1"
stylelint: "npm:^14.9.1"
stylelint-config-prettier: "npm:^9.0.4"
stylelint-config-recommended: "npm:^8.0.0"
stylelint-config-standard: "npm:^26.0.0"
stylelint-prettier: "npm:^2.0.0"
typescript: "npm:~5.0.2"
yjs: "npm:^13.5.40"
languageName: unknown
linkType: soft
"@jupyterlab/geojson-extension@workspace:packages/geojson-extension":
version: 0.0.0-use.local
resolution: "@jupyterlab/geojson-extension@workspace:packages/geojson-extension"
dependencies:
"@jupyterlab/apputils": "npm:^3.0.0 || ^4.0.0"
"@jupyterlab/builder": "npm:^4.0.0"
"@jupyterlab/rendermime-interfaces": "npm:^3.0.0 || ^3.8.0"
"@jupyterlab/ui-components": "npm:^3.0.0 || ^4.0.0"
"@lumino/algorithm": "npm:^1.0.0 || ^2.1.0"
"@lumino/messaging": "npm:^1.0.0 || ^2.0.0"
"@lumino/widgets": "npm:^1.0.0 || ^2.1.0"
"@types/jest": "npm:^29.2.0"
"@types/json-schema": "npm:^7.0.11"
"@types/leaflet": "npm:^1.4.0"
"@typescript-eslint/eslint-plugin": "npm:^5.55.0"
"@typescript-eslint/parser": "npm:^5.55.0"
css-loader: "npm:^6.7.1"
eslint: "npm:^8.36.0"
eslint-config-prettier: "npm:^8.7.0"
eslint-plugin-prettier: "npm:^4.2.1"
leaflet: "npm:^1.5.0"
npm-run-all: "npm:^4.1.5"
prettier: "npm:^2.8.7"
rimraf: "npm:^4.4.1"
source-map-loader: "npm:^1.0.2"
style-loader: "npm:^3.3.1"
stylelint: "npm:^14.9.1"
stylelint-config-prettier: "npm:^9.0.4"
stylelint-config-recommended: "npm:^8.0.0"
stylelint-config-standard: "npm:^26.0.0"
stylelint-prettier: "npm:^2.0.0"
typescript: "npm:~5.0.2"
yjs: "npm:^13.5.40"
languageName: unknown
linkType: soft
"@jupyterlab/katex-extension@workspace:packages/katex-extension":
version: 0.0.0-use.local
resolution: "@jupyterlab/katex-extension@workspace:packages/katex-extension"
dependencies:
"@jupyterlab/application": "npm:^3.0.0 || ^4.0.0"
"@jupyterlab/builder": "npm:^4.0.0"
"@jupyterlab/rendermime": "npm:^3.0.0 || ^4.0.0"
"@jupyterlab/rendermime-interfaces": "npm:^3.0.0 || ^3.8.0"
"@jupyterlab/settingregistry": "npm:^3.0.0 || ^4.0.0"
"@types/json-schema": "npm:^7.0.11"
"@types/katex": "npm:^0.11.0"
"@typescript-eslint/eslint-plugin": "npm:^5.55.0"
"@typescript-eslint/parser": "npm:^5.55.0"
css-loader: "npm:^6.7.1"
eslint: "npm:^8.36.0"
eslint-config-prettier: "npm:^8.7.0"
eslint-plugin-prettier: "npm:^4.2.1"
katex: "npm:^0.12.0"
npm-run-all: "npm:^4.1.5"
prettier: "npm:^2.8.7"
rimraf: "npm:^4.4.1"
source-map-loader: "npm:^1.0.2"
style-loader: "npm:^3.3.1"
stylelint: "npm:^14.9.1"
stylelint-config-prettier: "npm:^9.0.4"
stylelint-config-recommended: "npm:^8.0.0"
stylelint-config-standard: "npm:^26.0.0"
stylelint-prettier: "npm:^2.0.0"
typescript: "npm:~5.0.2"
yjs: "npm:^13.5.40"
languageName: unknown
linkType: soft
"@jupyterlab/mathjax2-extension@workspace:packages/mathjax2-extension":
version: 0.0.0-use.local
resolution: "@jupyterlab/mathjax2-extension@workspace:packages/mathjax2-extension"
dependencies:
"@jupyterlab/application": "npm:^4.0.0"
"@jupyterlab/builder": "npm:^4.0.0"
"@jupyterlab/coreutils": "npm:^6.0.0"
"@jupyterlab/rendermime": "npm:^4.0.0"
"@jupyterlab/rendermime-interfaces": "npm:^3.8.0"
"@jupyterlab/translation": "npm:^4.0.0"
"@lumino/coreutils": "npm:^2.1.0"
"@types/json-schema": "npm:^7.0.11"
"@typescript-eslint/eslint-plugin": "npm:^5.55.0"
"@typescript-eslint/parser": "npm:^5.55.0"
css-loader: "npm:^6.7.1"
eslint: "npm:^8.36.0"
eslint-config-prettier: "npm:^8.7.0"
eslint-plugin-prettier: "npm:^4.2.1"
npm-run-all: "npm:^4.1.5"
prettier: "npm:^2.8.7"
rimraf: "npm:^4.4.1"
source-map-loader: "npm:^1.0.2"
style-loader: "npm:^3.3.1"
stylelint: "npm:^14.9.1"
stylelint-config-prettier: "npm:^9.0.4"
stylelint-config-recommended: "npm:^8.0.0"
stylelint-config-standard: "npm:^26.0.0"
stylelint-prettier: "npm:^2.0.0"
typescript: "npm:~5.0.2"
yjs: "npm:^13.5.40"
languageName: unknown
linkType: soft
"@jupyterlab/nbformat@npm:^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0, @jupyterlab/nbformat@npm:^4.0.0":
version: 4.0.0
resolution: "@jupyterlab/nbformat@npm:4.0.0"
dependencies:
"@lumino/coreutils": "npm:^2.1.1"
checksum: 10c0/914fbdf858e8c7fe239ce54628432b1632fe6927d7bdaec544ab506c7233db6c303610f1ffe63355d91cf56ee303509608d0e214f9b7f7623d3bbd054f102b1b
languageName: node
linkType: hard
"@jupyterlab/observables@npm:^5.0.0":
version: 5.0.0
resolution: "@jupyterlab/observables@npm:5.0.0"
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/f0a783561b88e65bd087f83660fb556e9f9ce0d848f292c42817f4a27fbd1f56d2c8bc82ce7e49bf3ed026af2f7680a23d76b78937e263cdcf05ffb6f76fcd58
languageName: node
linkType: hard
"@jupyterlab/rendermime-interfaces@npm:^3.0.0 || ^3.8.0, @jupyterlab/rendermime-interfaces@npm:^3.8.0":
version: 3.8.0
resolution: "@jupyterlab/rendermime-interfaces@npm:3.8.0"
dependencies:
"@lumino/coreutils": "npm:^2.1.1"
"@lumino/widgets": "npm:^2.1.1"
checksum: 10c0/56b9144fe141cc7c695fd08ff0dc98f4a593a37392fd53b3ac011db54f6080aa4b814012b2b52d7385e799dc1577742c291ae8a890b34a2ad0a30a29acc8ad75
languageName: node
linkType: hard
"@jupyterlab/rendermime@npm:^3.0.0 || ^4.0.0, @jupyterlab/rendermime@npm:^4.0.0":
version: 4.0.0
resolution: "@jupyterlab/rendermime@npm:4.0.0"
dependencies:
"@jupyterlab/apputils": "npm:^4.0.0"
"@jupyterlab/coreutils": "npm:^6.0.0"
"@jupyterlab/nbformat": "npm:^4.0.0"
"@jupyterlab/observables": "npm:^5.0.0"
"@jupyterlab/rendermime-interfaces": "npm:^3.8.0"
"@jupyterlab/services": "npm:^7.0.0"
"@jupyterlab/translation": "npm:^4.0.0"
"@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/cbab8d4df9cc34bfbd04879dd74e4260ddf14f02f7348b7af6e1e7db940416e5005740ea1ab23f211f168e9827694edcb628c6a322d07d6e005da79cf9e1cc5b
languageName: node
linkType: hard
"@jupyterlab/services@npm:^7.0.0":
version: 7.0.0
resolution: "@jupyterlab/services@npm:7.0.0"
dependencies:
"@jupyter/ydoc": "npm:^1.0.2"
"@jupyterlab/coreutils": "npm:^6.0.0"
"@jupyterlab/nbformat": "npm:^4.0.0"
"@jupyterlab/settingregistry": "npm:^4.0.0"
"@jupyterlab/statedb": "npm:^4.0.0"
"@lumino/coreutils": "npm:^2.1.1"
"@lumino/disposable": "npm:^2.1.1"
"@lumino/polling": "npm:^2.1.1"
"@lumino/properties": "npm:^2.0.0"
"@lumino/signaling": "npm:^2.1.1"
ws: "npm:^8.11.0"
checksum: 10c0/17f273a5fa04ad1f1ba6f382772e09d4a9a429e72e21496e35eb3c7109a3b2f5d980bdcaf738b15fbfc8c9d59237fad46ac381d34cbaca48b6ed41baa383d056
languageName: node
linkType: hard
"@jupyterlab/settingregistry@npm:^3.0.0 || ^4.0.0, @jupyterlab/settingregistry@npm:^4.0.0":
version: 4.0.0
resolution: "@jupyterlab/settingregistry@npm:4.0.0"
dependencies:
"@jupyterlab/nbformat": "npm:^4.0.0"
"@jupyterlab/statedb": "npm:^4.0.0"
"@lumino/commands": "npm:^2.1.1"
"@lumino/coreutils": "npm:^2.1.1"
"@lumino/disposable": "npm:^2.1.1"
"@lumino/signaling": "npm:^2.1.1"
"@rjsf/utils": "npm:^5.1.0"
ajv: "npm:^8.12.0"
json5: "npm:^2.2.3"
peerDependencies:
react: ">=16"
checksum: 10c0/3f432f69655a64bdd150da61abc94c5bdc6aacf9e932911189f432e61ad0bef3ea1f0d87426712177cdc9b66a3dde6cd40a3b43d6a440240c85995e854261f52
languageName: node
linkType: hard
"@jupyterlab/statedb@npm:^4.0.0":
version: 4.0.0
resolution: "@jupyterlab/statedb@npm:4.0.0"
dependencies:
"@lumino/commands": "npm:^2.1.1"
"@lumino/coreutils": "npm:^2.1.1"
"@lumino/disposable": "npm:^2.1.1"
"@lumino/properties": "npm:^2.0.0"
"@lumino/signaling": "npm:^2.1.1"
checksum: 10c0/b58f24252b0f20c13679cf75c9a1be8fee78883c5ed9671d9e3c051259e33ad4bc4c6b482a497af8cc50d62b91a6b3c6e0b85d8d65a4f6ecc46d24484644a56d
languageName: node
linkType: hard
"@jupyterlab/statusbar@npm:^4.0.0":
version: 4.0.0
resolution: "@jupyterlab/statusbar@npm:4.0.0"
dependencies:
"@jupyterlab/ui-components": "npm:^4.0.0"
"@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"
"@lumino/widgets": "npm:^2.1.1"
react: "npm:^18.2.0"
checksum: 10c0/337f250aa1f49c1b5b880984d295df7538aa3321407b6ffa7b148221174ea10b3696322cc11800b5c54d5207f5393cb715ec30e4487f16fcd88a65dfec352e91
languageName: node
linkType: hard
"@jupyterlab/translation@npm:^4.0.0":
version: 4.0.0
resolution: "@jupyterlab/translation@npm:4.0.0"
dependencies:
"@jupyterlab/coreutils": "npm:^6.0.0"
"@jupyterlab/rendermime-interfaces": "npm:^3.8.0"
"@jupyterlab/services": "npm:^7.0.0"
"@jupyterlab/statedb": "npm:^4.0.0"
"@lumino/coreutils": "npm:^2.1.1"
checksum: 10c0/f26f60be35e158a99e8ac87f31f74b89ec8174b1fecafd8c9bdea1145cafc0616461d5186e41df76d73a644cff86123401b50b81f49f0b74604eb32ce6dfa865
languageName: node
linkType: hard
"@jupyterlab/ui-components@npm:^3.0.0 || ^4.0.0, @jupyterlab/ui-components@npm:^4.0.0":
version: 4.0.0
resolution: "@jupyterlab/ui-components@npm:4.0.0"
dependencies:
"@jupyterlab/coreutils": "npm:^6.0.0"
"@jupyterlab/observables": "npm:^5.0.0"
"@jupyterlab/rendermime-interfaces": "npm:^3.8.0"
"@jupyterlab/translation": "npm:^4.0.0"
"@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/messaging": "npm:^2.0.0"
"@lumino/polling": "npm:^2.1.1"
"@lumino/properties": "npm:^2.0.0"
"@lumino/signaling": "npm:^2.1.1"
"@lumino/virtualdom": "npm:^2.0.0"
"@lumino/widgets": "npm:^2.1.1"
"@rjsf/core": "npm:^5.1.0"
"@rjsf/utils": "npm:^5.1.0"
react: "npm:^18.2.0"
react-dom: "npm:^18.2.0"
typestyle: "npm:^2.0.4"
peerDependencies:
react: ^18.2.0
checksum: 10c0/6a152babf32e206adebe05096bc52b533d1140d22f7e7e8d026022d47859e59f65c4d3d6c243c4727e79e6d277c2fb5dffc1357bba112697f92dc4a97a6e71a7
languageName: node
linkType: hard
"@jupyterlab/vega3-extension@workspace:packages/vega3-extension":
version: 0.0.0-use.local
resolution: "@jupyterlab/vega3-extension@workspace:packages/vega3-extension"
dependencies:
"@jupyterlab/builder": "npm:^4.0.0"
"@jupyterlab/rendermime-interfaces": "npm:^3.0.0 || ^3.8.0"
"@lumino/coreutils": "npm:^1.0.0 || ^2.1.0"
"@lumino/widgets": "npm:^1.0.0 || ^2.1.0"
"@types/json-schema": "npm:^7.0.11"
"@typescript-eslint/eslint-plugin": "npm:^5.55.0"
"@typescript-eslint/parser": "npm:^5.55.0"
css-loader: "npm:^6.7.1"
eslint: "npm:^8.36.0"
eslint-config-prettier: "npm:^8.7.0"
eslint-plugin-prettier: "npm:^4.2.1"
npm-run-all: "npm:^4.1.5"
prettier: "npm:^2.8.7"
rimraf: "npm:^4.4.1"
source-map-loader: "npm:^1.0.2"
style-loader: "npm:^3.3.1"
stylelint: "npm:^14.9.1"
stylelint-config-prettier: "npm:^9.0.4"
stylelint-config-recommended: "npm:^8.0.0"
stylelint-config-standard: "npm:^26.0.0"
stylelint-prettier: "npm:^2.0.0"
typescript: "npm:~5.0.2"
vega-embed: "npm:3.9.2"
yjs: "npm:^13.5.40"
languageName: unknown
linkType: soft
"@lerna/child-process@npm:6.6.1":
version: 6.6.1
resolution: "@lerna/child-process@npm:6.6.1"
dependencies:
chalk: "npm:^4.1.0"
execa: "npm:^5.0.0"
strong-log-transformer: "npm:^2.1.0"
checksum: 10c0/423cca21bf43c4455241e8ef2ad9d7f8831897292599a50e6956be6510defb86d5b9b80dcef7ebd1054dc3b9f620c67bc3af712b84d33a62841a75737760ebcf
languageName: node
linkType: hard
"@lerna/create@npm:6.6.1":
version: 6.6.1
resolution: "@lerna/create@npm:6.6.1"
dependencies:
"@lerna/child-process": "npm:6.6.1"
dedent: "npm:^0.7.0"
fs-extra: "npm:^9.1.0"
init-package-json: "npm:^3.0.2"
npm-package-arg: "npm:8.1.1"
p-reduce: "npm:^2.1.0"
pacote: "npm:^13.6.1"
pify: "npm:^5.0.0"
semver: "npm:^7.3.4"
slash: "npm:^3.0.0"
validate-npm-package-license: "npm:^3.0.4"
validate-npm-package-name: "npm:^4.0.0"
yargs-parser: "npm:20.2.4"
checksum: 10c0/b181a048863f4ac2a5f120aee540dbd98a8b3fb25c80f3996b581ab138a2ffd5fa97120f3598da9c1b37ca28062938014bd7fec0dd3ce676469b8a31c79c7bd5
languageName: node
linkType: hard
"@lerna/legacy-package-management@npm:6.6.1":
version: 6.6.1
resolution: "@lerna/legacy-package-management@npm:6.6.1"
dependencies:
"@npmcli/arborist": "npm:6.2.3"
"@npmcli/run-script": "npm:4.1.7"
"@nrwl/devkit": "npm:>=15.5.2 < 16"
"@octokit/rest": "npm:19.0.3"
byte-size: "npm:7.0.0"
chalk: "npm:4.1.0"
clone-deep: "npm:4.0.1"
cmd-shim: "npm:5.0.0"
columnify: "npm:1.6.0"
config-chain: "npm:1.1.12"
conventional-changelog-core: "npm:4.2.4"
conventional-recommended-bump: "npm:6.1.0"
cosmiconfig: "npm:7.0.0"
dedent: "npm:0.7.0"
dot-prop: "npm:6.0.1"
execa: "npm:5.0.0"
file-url: "npm:3.0.0"
find-up: "npm:5.0.0"
fs-extra: "npm:9.1.0"
get-port: "npm:5.1.1"
get-stream: "npm:6.0.0"
git-url-parse: "npm:13.1.0"
glob-parent: "npm:5.1.2"
globby: "npm:11.1.0"
graceful-fs: "npm:4.2.10"
has-unicode: "npm:2.0.1"
inquirer: "npm:8.2.4"
is-ci: "npm:2.0.0"
is-stream: "npm:2.0.0"
libnpmpublish: "npm:6.0.4"
load-json-file: "npm:6.2.0"
make-dir: "npm:3.1.0"
minimatch: "npm:3.0.5"
multimatch: "npm:5.0.0"
node-fetch: "npm:2.6.7"
npm-package-arg: "npm:8.1.1"
npm-packlist: "npm:5.1.1"
npm-registry-fetch: "npm:14.0.3"
npmlog: "npm:6.0.2"
p-map: "npm:4.0.0"
p-map-series: "npm:2.1.0"
p-queue: "npm:6.6.2"
p-waterfall: "npm:2.1.1"
pacote: "npm:13.6.2"
pify: "npm:5.0.0"
pretty-format: "npm:29.4.3"
read-cmd-shim: "npm:3.0.0"
read-package-json: "npm:5.0.1"
resolve-from: "npm:5.0.0"
semver: "npm:7.3.8"
signal-exit: "npm:3.0.7"
slash: "npm:3.0.0"
ssri: "npm:9.0.1"
strong-log-transformer: "npm:2.1.0"
tar: "npm:6.1.11"
temp-dir: "npm:1.0.0"
tempy: "npm:1.0.0"
upath: "npm:2.0.1"
uuid: "npm:8.3.2"
write-file-atomic: "npm:4.0.1"
write-pkg: "npm:4.0.0"
yargs: "npm:16.2.0"
checksum: 10c0/ce380181cda6e3787e5ac267b15a01a4c2e211655267d0389a6ea3127c473211cfc24503ae3f761314a13e649b6c738ef6655105cfe89c01b3785af633f76734
languageName: node
linkType: hard
"@lumino/algorithm@npm:^1.0.0 || ^2.1.0":
version: 1.9.2
resolution: "@lumino/algorithm@npm:1.9.2"
checksum: 10c0/2fe75498bb84d8fc1c844293afaae638a0032a8cc17112b73b7f9d400929d477ade4f1181e95bc71d70bf4bc734b560860556ad744fadac7335f158becbe0e2f
languageName: node
linkType: hard
"@lumino/algorithm@npm:^2.0.0":
version: 2.0.0
resolution: "@lumino/algorithm@npm:2.0.0"
checksum: 10c0/b6964fb2f6edf20dcfe7421e4c8f24fc8391f10f91aa8cd213416061ed8c07a2215656161a3e226a7c7ab00993e703552293174bcd5ce46c0cf0584b0987cbfb
languageName: node
linkType: hard
"@lumino/application@npm:^2.1.1":
version: 2.1.1
resolution: "@lumino/application@npm:2.1.1"
dependencies:
"@lumino/commands": "npm:^2.1.1"
"@lumino/coreutils": "npm:^2.1.1"
"@lumino/widgets": "npm:^2.1.1"
checksum: 10c0/3206e02fdc5867e0548383299bf5d21027057dd6eaa2f8afd62dc9b575313e76e9112dbc3d1051482014275a3f07f1a9bb613d35299ffb84e06323977371a6d8
languageName: node
linkType: hard
"@lumino/collections@npm:^2.0.0":
version: 2.0.0
resolution: "@lumino/collections@npm:2.0.0"
dependencies:
"@lumino/algorithm": "npm:^2.0.0"
checksum: 10c0/0c8e68ba27f90cabb2ca24dd0e7c422c07e74a9db3c4f27cd51e5ed3d381a2a49eabdcc62b0c83bea7f6003ca3c12ada0e5ac9408a720b500f355fd8a6929820
languageName: node
linkType: hard
"@lumino/commands@npm:^2.1.1":
version: 2.1.1
resolution: "@lumino/commands@npm:2.1.1"
dependencies:
"@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/keyboard": "npm:^2.0.0"