-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathyarn.lock
6990 lines (6282 loc) · 247 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: 8/ada901b9e7c680d190f1d012c84217ce0063d8f5c5a7725bb91ec3c5ed99bb7572680eb2d2938a531ccbaec39a95422fcd8a6b4a13110c7d98dd75402f66a0cd
languageName: node
linkType: hard
"@babel/code-frame@npm:7.12.11":
version: 7.12.11
resolution: "@babel/code-frame@npm:7.12.11"
dependencies:
"@babel/highlight": "npm:^7.10.4"
checksum: 8/3963eff3ebfb0e091c7e6f99596ef4b258683e4ba8a134e4e95f77afe85be5c931e184fff6435fb4885d12eba04a5e25532f7fbc292ca13b48e7da943474e2f3
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0":
version: 7.23.5
resolution: "@babel/code-frame@npm:7.23.5"
dependencies:
"@babel/highlight": "npm:^7.23.4"
chalk: "npm:^2.4.2"
checksum: 8/d90981fdf56a2824a9b14d19a4c0e8db93633fd488c772624b4e83e0ceac6039a27cd298a247c3214faa952bf803ba23696172ae7e7235f3b97f43ba278c569a
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.16.7":
version: 7.22.15
resolution: "@babel/helper-module-imports@npm:7.22.15"
dependencies:
"@babel/types": "npm:^7.22.15"
checksum: 8/ecd7e457df0a46f889228f943ef9b4a47d485d82e030676767e6a2fdcbdaa63594d8124d4b55fd160b41c201025aec01fc27580352b1c87a37c9c6f33d116702
languageName: node
linkType: hard
"@babel/helper-string-parser@npm:^7.23.4":
version: 7.23.4
resolution: "@babel/helper-string-parser@npm:7.23.4"
checksum: 8/c0641144cf1a7e7dc93f3d5f16d5327465b6cf5d036b48be61ecba41e1eece161b48f46b7f960951b67f8c3533ce506b16dece576baef4d8b3b49f8c65410f90
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.22.20":
version: 7.22.20
resolution: "@babel/helper-validator-identifier@npm:7.22.20"
checksum: 8/136412784d9428266bcdd4d91c32bcf9ff0e8d25534a9d94b044f77fe76bc50f941a90319b05aafd1ec04f7d127cd57a179a3716009ff7f3412ef835ada95bdc
languageName: node
linkType: hard
"@babel/highlight@npm:^7.10.4, @babel/highlight@npm:^7.23.4":
version: 7.23.4
resolution: "@babel/highlight@npm:7.23.4"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.22.20"
chalk: "npm:^2.4.2"
js-tokens: "npm:^4.0.0"
checksum: 8/643acecdc235f87d925979a979b539a5d7d1f31ae7db8d89047269082694122d11aa85351304c9c978ceeb6d250591ccadb06c366f358ccee08bb9c122476b89
languageName: node
linkType: hard
"@babel/runtime@npm:7.16.7":
version: 7.16.7
resolution: "@babel/runtime@npm:7.16.7"
dependencies:
regenerator-runtime: "npm:^0.13.4"
checksum: 8/47912f0aaacd1cab2e2552aaf3e6eaffbcaf2d5ac9b07a89a12ac0d42029cb92c070b0d16f825e4277c4a34677c54d8ffe85e1f7c6feb57de58f700eec67ce2f
languageName: node
linkType: hard
"@babel/runtime@npm:^7.12.5, @babel/runtime@npm:^7.13.6, @babel/runtime@npm:^7.18.3, @babel/runtime@npm:^7.23.9, @babel/runtime@npm:^7.5.5, @babel/runtime@npm:^7.8.7":
version: 7.23.9
resolution: "@babel/runtime@npm:7.23.9"
dependencies:
regenerator-runtime: "npm:^0.14.0"
checksum: 8/6bbebe8d27c0c2dd275d1ac197fc1a6c00e18dab68cc7aaff0adc3195b45862bae9c4cc58975629004b0213955b2ed91e99eccb3d9b39cabea246c657323d667
languageName: node
linkType: hard
"@babel/types@npm:^7.22.15":
version: 7.23.9
resolution: "@babel/types@npm:7.23.9"
dependencies:
"@babel/helper-string-parser": "npm:^7.23.4"
"@babel/helper-validator-identifier": "npm:^7.22.20"
to-fast-properties: "npm:^2.0.0"
checksum: 8/0a9b008e9bfc89beb8c185e620fa0f8ed6c771f1e1b2e01e1596870969096fec7793898a1d64a035176abf1dd13e2668ee30bf699f2d92c210a8128f4b151e65
languageName: node
linkType: hard
"@codemirror/state@npm:^6.2.0":
version: 6.4.0
resolution: "@codemirror/state@npm:6.4.0"
checksum: 8/c5236fe5786f1b85d17273a5c17fa8aeb063658c1404ab18caeb6e7591663ec96b65d453ab8162f75839c3801b04cd55ba4bc48f44cb61ebfeeee383f89553c7
languageName: node
linkType: hard
"@discoveryjs/json-ext@npm:^0.5.0":
version: 0.5.7
resolution: "@discoveryjs/json-ext@npm:0.5.7"
checksum: 8/2176d301cc258ea5c2324402997cf8134ebb212469c0d397591636cea8d3c02f2b3cf9fd58dcb748c7a0dade77ebdc1b10284fa63e608c033a1db52fddc69918
languageName: node
linkType: hard
"@emotion/babel-plugin@npm:^11.11.0":
version: 11.11.0
resolution: "@emotion/babel-plugin@npm:11.11.0"
dependencies:
"@babel/helper-module-imports": "npm:^7.16.7"
"@babel/runtime": "npm:^7.18.3"
"@emotion/hash": "npm:^0.9.1"
"@emotion/memoize": "npm:^0.8.1"
"@emotion/serialize": "npm:^1.1.2"
babel-plugin-macros: "npm:^3.1.0"
convert-source-map: "npm:^1.5.0"
escape-string-regexp: "npm:^4.0.0"
find-root: "npm:^1.1.0"
source-map: "npm:^0.5.7"
stylis: "npm:4.2.0"
checksum: 8/6b363edccc10290f7a23242c06f88e451b5feb2ab94152b18bb8883033db5934fb0e421e2d67d09907c13837c21218a3ac28c51707778a54d6cd3706c0c2f3f9
languageName: node
linkType: hard
"@emotion/cache@npm:^11.11.0":
version: 11.11.0
resolution: "@emotion/cache@npm:11.11.0"
dependencies:
"@emotion/memoize": "npm:^0.8.1"
"@emotion/sheet": "npm:^1.2.2"
"@emotion/utils": "npm:^1.2.1"
"@emotion/weak-memoize": "npm:^0.3.1"
stylis: "npm:4.2.0"
checksum: 8/8eb1dc22beaa20c21a2e04c284d5a2630a018a9d51fb190e52de348c8d27f4e8ca4bbab003d68b4f6cd9cc1c569ca747a997797e0f76d6c734a660dc29decf08
languageName: node
linkType: hard
"@emotion/hash@npm:^0.9.1":
version: 0.9.1
resolution: "@emotion/hash@npm:0.9.1"
checksum: 8/716e17e48bf9047bf9383982c071de49f2615310fb4e986738931776f5a823bc1f29c84501abe0d3df91a3803c80122d24e28b57351bca9e01356ebb33d89876
languageName: node
linkType: hard
"@emotion/is-prop-valid@npm:^1.2.1":
version: 1.2.1
resolution: "@emotion/is-prop-valid@npm:1.2.1"
dependencies:
"@emotion/memoize": "npm:^0.8.1"
checksum: 8/8f42dc573a3fad79b021479becb639b8fe3b60bdd1081a775d32388bca418ee53074c7602a4c845c5f75fa6831eb1cbdc4d208cc0299f57014ed3a02abcad16a
languageName: node
linkType: hard
"@emotion/memoize@npm:^0.8.1":
version: 0.8.1
resolution: "@emotion/memoize@npm:0.8.1"
checksum: 8/a19cc01a29fcc97514948eaab4dc34d8272e934466ed87c07f157887406bc318000c69ae6f813a9001c6a225364df04249842a50e692ef7a9873335fbcc141b0
languageName: node
linkType: hard
"@emotion/react@npm:^11.7.1":
version: 11.11.3
resolution: "@emotion/react@npm:11.11.3"
dependencies:
"@babel/runtime": "npm:^7.18.3"
"@emotion/babel-plugin": "npm:^11.11.0"
"@emotion/cache": "npm:^11.11.0"
"@emotion/serialize": "npm:^1.1.3"
"@emotion/use-insertion-effect-with-fallbacks": "npm:^1.0.1"
"@emotion/utils": "npm:^1.2.1"
"@emotion/weak-memoize": "npm:^0.3.1"
hoist-non-react-statics: "npm:^3.3.1"
peerDependencies:
react: ">=16.8.0"
peerDependenciesMeta:
"@types/react":
optional: true
checksum: 8/2e4b223591569f0a41686d5bd72dc8778629b7be33267e4a09582979e6faee4d7218de84e76294ed827058d4384d75557b5d71724756539c1f235e9a69e62b2e
languageName: node
linkType: hard
"@emotion/serialize@npm:^1.1.2, @emotion/serialize@npm:^1.1.3":
version: 1.1.3
resolution: "@emotion/serialize@npm:1.1.3"
dependencies:
"@emotion/hash": "npm:^0.9.1"
"@emotion/memoize": "npm:^0.8.1"
"@emotion/unitless": "npm:^0.8.1"
"@emotion/utils": "npm:^1.2.1"
csstype: "npm:^3.0.2"
checksum: 8/5a756ce7e2692322683978d8ed2e84eadd60bd6f629618a82c5018c84d98684b117e57fad0174f68ec2ec0ac089bb2e0bcc8ea8c2798eb904b6d3236aa046063
languageName: node
linkType: hard
"@emotion/sheet@npm:^1.2.2":
version: 1.2.2
resolution: "@emotion/sheet@npm:1.2.2"
checksum: 8/d973273c9c15f1c291ca2269728bf044bd3e92a67bca87943fa9ec6c3cd2b034f9a6bfe95ef1b5d983351d128c75b547b43ff196a00a3875f7e1d269793cecfe
languageName: node
linkType: hard
"@emotion/styled@npm:^11.6.0":
version: 11.11.0
resolution: "@emotion/styled@npm:11.11.0"
dependencies:
"@babel/runtime": "npm:^7.18.3"
"@emotion/babel-plugin": "npm:^11.11.0"
"@emotion/is-prop-valid": "npm:^1.2.1"
"@emotion/serialize": "npm:^1.1.2"
"@emotion/use-insertion-effect-with-fallbacks": "npm:^1.0.1"
"@emotion/utils": "npm:^1.2.1"
peerDependencies:
"@emotion/react": ^11.0.0-rc.0
react: ">=16.8.0"
peerDependenciesMeta:
"@types/react":
optional: true
checksum: 8/904f641aad3892c65d7d6c0808b036dae1e6d6dad4861c1c7dc0baa59977047c6cad220691206eba7b4059f1a1c6e6c1ef4ebb8c829089e280fa0f2164a01e6b
languageName: node
linkType: hard
"@emotion/unitless@npm:^0.8.1":
version: 0.8.1
resolution: "@emotion/unitless@npm:0.8.1"
checksum: 8/385e21d184d27853bb350999471f00e1429fa4e83182f46cd2c164985999d9b46d558dc8b9cc89975cb337831ce50c31ac2f33b15502e85c299892e67e7b4a88
languageName: node
linkType: hard
"@emotion/use-insertion-effect-with-fallbacks@npm:^1.0.1":
version: 1.0.1
resolution: "@emotion/use-insertion-effect-with-fallbacks@npm:1.0.1"
peerDependencies:
react: ">=16.8.0"
checksum: 8/700b6e5bbb37a9231f203bb3af11295eed01d73b2293abece0bc2a2237015e944d7b5114d4887ad9a79776504aa51ed2a8b0ddbc117c54495dd01a6b22f93786
languageName: node
linkType: hard
"@emotion/utils@npm:^1.2.1":
version: 1.2.1
resolution: "@emotion/utils@npm:1.2.1"
checksum: 8/e0b44be0705b56b079c55faff93952150be69e79b660ae70ddd5b6e09fc40eb1319654315a9f34bb479d7f4ec94be6068c061abbb9e18b9778ae180ad5d97c73
languageName: node
linkType: hard
"@emotion/weak-memoize@npm:^0.3.1":
version: 0.3.1
resolution: "@emotion/weak-memoize@npm:0.3.1"
checksum: 8/b2be47caa24a8122622ea18cd2d650dbb4f8ad37b636dc41ed420c2e082f7f1e564ecdea68122b546df7f305b159bf5ab9ffee872abd0f052e687428459af594
languageName: node
linkType: hard
"@eslint/eslintrc@npm:^0.4.3":
version: 0.4.3
resolution: "@eslint/eslintrc@npm:0.4.3"
dependencies:
ajv: "npm:^6.12.4"
debug: "npm:^4.1.1"
espree: "npm:^7.3.0"
globals: "npm:^13.9.0"
ignore: "npm:^4.0.6"
import-fresh: "npm:^3.2.1"
js-yaml: "npm:^3.13.1"
minimatch: "npm:^3.0.4"
strip-json-comments: "npm:^3.1.1"
checksum: 8/03a7704150b868c318aab6a94d87a33d30dc2ec579d27374575014f06237ba1370ae11178db772f985ef680d469dc237e7b16a1c5d8edaaeb8c3733e7a95a6d3
languageName: node
linkType: hard
"@floating-ui/core@npm:^1.6.0":
version: 1.6.0
resolution: "@floating-ui/core@npm:1.6.0"
dependencies:
"@floating-ui/utils": "npm:^0.2.1"
checksum: 8/2e25c53b0c124c5c9577972f8ae21d081f2f7895e6695836a53074463e8c65b47722744d6d2b5a993164936da006a268bcfe87fe68fd24dc235b1cb86bed3127
languageName: node
linkType: hard
"@floating-ui/dom@npm:^1.6.1":
version: 1.6.1
resolution: "@floating-ui/dom@npm:1.6.1"
dependencies:
"@floating-ui/core": "npm:^1.6.0"
"@floating-ui/utils": "npm:^0.2.1"
checksum: 8/5565e4dee612bab62950913c311d75d3f773bd1d9dc437f7e33b46340f32ec565733c995c6185381adaf64e627df3c79901d0a9d555f58c02509d0764bceb57d
languageName: node
linkType: hard
"@floating-ui/react-dom@npm:^2.0.8":
version: 2.0.8
resolution: "@floating-ui/react-dom@npm:2.0.8"
dependencies:
"@floating-ui/dom": "npm:^1.6.1"
peerDependencies:
react: ">=16.8.0"
react-dom: ">=16.8.0"
checksum: 8/5da7f13a69281e38859a3203a608fe9de1d850b332b355c10c0c2427c7b7209a0374c10f6295b6577c1a70237af8b678340bd4cc0a4b1c66436a94755d81e526
languageName: node
linkType: hard
"@floating-ui/utils@npm:^0.2.1":
version: 0.2.1
resolution: "@floating-ui/utils@npm:0.2.1"
checksum: 8/9ed4380653c7c217cd6f66ae51f20fdce433730dbc77f95b5abfb5a808f5fdb029c6ae249b4e0490a816f2453aa6e586d9a873cd157fdba4690f65628efc6e06
languageName: node
linkType: hard
"@fortawesome/fontawesome-free@npm:^5.12.0":
version: 5.15.4
resolution: "@fortawesome/fontawesome-free@npm:5.15.4"
checksum: 8/32281c3df4075290d9a96dfc22f72fadb3da7055d4117e48d34046b8c98032a55fa260ae351b0af5d6f6fb57a2f5d79a4abe52af456da35195f7cb7dda27b4a2
languageName: node
linkType: hard
"@humanwhocodes/config-array@npm:^0.5.0":
version: 0.5.0
resolution: "@humanwhocodes/config-array@npm:0.5.0"
dependencies:
"@humanwhocodes/object-schema": "npm:^1.2.0"
debug: "npm:^4.1.1"
minimatch: "npm:^3.0.4"
checksum: 8/44ee6a9f05d93dd9d5935a006b17572328ba9caff8002442f601736cbda79c580cc0f5a49ce9eb88fbacc5c3a6b62098357c2e95326cd17bb9f1a6c61d6e95e7
languageName: node
linkType: hard
"@humanwhocodes/object-schema@npm:^1.2.0":
version: 1.2.1
resolution: "@humanwhocodes/object-schema@npm:1.2.1"
checksum: 8/a824a1ec31591231e4bad5787641f59e9633827d0a2eaae131a288d33c9ef0290bd16fda8da6f7c0fcb014147865d12118df10db57f27f41e20da92369fcb3f1
languageName: node
linkType: hard
"@ipld/car@npm:^5.1.0":
version: 5.2.6
resolution: "@ipld/car@npm:5.2.6"
dependencies:
"@ipld/dag-cbor": "npm:^9.0.7"
cborg: "npm:^4.0.5"
multiformats: "npm:^13.0.0"
varint: "npm:^6.0.0"
checksum: 8/ce0ecd1949a6e45693a463c6b94574f3a95636afeb47cd338f21a508424d7107b060e426d54469e3d6eafe7ba638fbc4f4ad7164adba78224a381948a240d8f0
languageName: node
linkType: hard
"@ipld/dag-cbor@npm:^9.0.0, @ipld/dag-cbor@npm:^9.0.7":
version: 9.1.0
resolution: "@ipld/dag-cbor@npm:9.1.0"
dependencies:
cborg: "npm:^4.0.0"
multiformats: "npm:^13.0.0"
checksum: 8/dd9bde7ac236c75857236e433e2f7524b0545f9943e5d253726be7bf76b3f9394a98abdb640115e2ca7ca31185f44f7591206432f0fe061bb5a3cc13d6956af2
languageName: node
linkType: hard
"@ipld/dag-json@npm:^10.0.1, @ipld/dag-json@npm:^10.1.7":
version: 10.1.7
resolution: "@ipld/dag-json@npm:10.1.7"
dependencies:
cborg: "npm:^4.0.0"
multiformats: "npm:^13.0.0"
checksum: 8/2ac94d6471dd0e71acc65eb61e6617880b6f291d4c11cb70f717534734a88fdbae014b0aaf011bcad5599c002f749d01ec638820a2d1d8c464c3e4a59f6a4e8a
languageName: node
linkType: hard
"@ipld/dag-pb@npm:^4.0.0, @ipld/dag-pb@npm:^4.0.2":
version: 4.0.8
resolution: "@ipld/dag-pb@npm:4.0.8"
dependencies:
multiformats: "npm:^13.0.0"
checksum: 8/b322ffb412ca60f872ee9222dc802e4a68632e44e4ebbe1105465c62d3dac7265929cb0ddabf34105fc783c18225be7b6050be4ce18590620dec44c6ef088ff9
languageName: node
linkType: hard
"@ipld/unixfs@npm:^3.0.0":
version: 3.0.0
resolution: "@ipld/unixfs@npm:3.0.0"
dependencies:
"@ipld/dag-pb": "npm:^4.0.0"
"@multiformats/murmur3": "npm:^2.1.3"
"@perma/map": "npm:^1.0.2"
actor: "npm:^2.3.1"
multiformats: "npm:^13.0.1"
protobufjs: "npm:^7.1.2"
rabin-rs: "npm:^2.1.0"
checksum: 8/0a5a56668d65fa471fe65a8560342341da3bfee872e3e335e2ebedf304ef33c15659cc24fc43c08b25c985c9a29cf9a508b791a189aff1c8e739d54ad9e79cad
languageName: node
linkType: hard
"@itk-wasm/dam@npm:^1.1.1":
version: 1.1.1
resolution: "@itk-wasm/dam@npm:1.1.1"
dependencies:
axios: "npm:^1.4.0"
commander: "npm:^10.0.1"
decompress: "npm:^4.2.1"
files-from-path: "npm:^1.0.0"
ipfs-car: "npm:^1.0.0"
tar: "npm:^6.1.13"
bin:
dam: cli.js
checksum: 8/86f0d53ecd4e65e879f4e9cea2735a5bed1a0a5d59e23159519995910586fddcd51a4a5df1d721fe5facc446e3c36a72fe014364353f9f689dba4c51ed3cb277
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: 8/4a74944bd31f22354fc01c3da32e83c19e519e3bbadafa114f6da4522ea77dd0c2842607e923a591d60a76699d819a2fbb6f3552e277efdb9b58b081390b60ab
languageName: node
linkType: hard
"@jridgewell/resolve-uri@npm:^3.1.0":
version: 3.1.1
resolution: "@jridgewell/resolve-uri@npm:3.1.1"
checksum: 8/f5b441fe7900eab4f9155b3b93f9800a916257f4e8563afbcd3b5a5337b55e52bd8ae6735453b1b745457d9f6cdb16d74cd6220bbdd98cf153239e13f6cbb653
languageName: node
linkType: hard
"@jridgewell/set-array@npm:^1.0.1":
version: 1.1.2
resolution: "@jridgewell/set-array@npm:1.1.2"
checksum: 8/69a84d5980385f396ff60a175f7177af0b8da4ddb81824cb7016a9ef914eee9806c72b6b65942003c63f7983d4f39a5c6c27185bbca88eb4690b62075602e28e
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: 8/1ad4dec0bdafbade57920a50acec6634f88a0eb735851e0dda906fa9894e7f0549c492678aad1a10f8e144bfe87f238307bf2a914a1bc85b7781d345417e9f6f
languageName: node
linkType: hard
"@jridgewell/sourcemap-codec@npm:^1.4.10, @jridgewell/sourcemap-codec@npm:^1.4.14":
version: 1.4.15
resolution: "@jridgewell/sourcemap-codec@npm:1.4.15"
checksum: 8/b881c7e503db3fc7f3c1f35a1dd2655a188cc51a3612d76efc8a6eb74728bef5606e6758ee77423e564092b4a518aba569bbb21c9bac5ab7a35b0c6ae7e344c8
languageName: node
linkType: hard
"@jridgewell/trace-mapping@npm:^0.3.20, @jridgewell/trace-mapping@npm:^0.3.9":
version: 0.3.22
resolution: "@jridgewell/trace-mapping@npm:0.3.22"
dependencies:
"@jridgewell/resolve-uri": "npm:^3.1.0"
"@jridgewell/sourcemap-codec": "npm:^1.4.14"
checksum: 8/ac7dd2cfe0b479aa1b81776d40d789243131cc792dc8b6b6a028c70fcd6171958ae1a71bf67b618ffe3c0c3feead9870c095ee46a5e30319410d92976b28f498
languageName: node
linkType: hard
"@jupyter/ydoc@npm:^1.0.2, @jupyter/ydoc@npm:^1.1.1":
version: 1.1.1
resolution: "@jupyter/ydoc@npm:1.1.1"
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: 8/a239b1dd57cfc9ba36c06ac5032a1b6388849ae01a1d0db0d45094f71fdadf4d473b4bf8becbef0cfcdc85cae505361fbec0822b02da5aa48e06b66f742dd7a0
languageName: node
linkType: hard
"@jupyterlab/application@npm:^4.0.0":
version: 4.0.12
resolution: "@jupyterlab/application@npm:4.0.12"
dependencies:
"@fortawesome/fontawesome-free": "npm:^5.12.0"
"@jupyterlab/apputils": "npm:^4.1.12"
"@jupyterlab/coreutils": "npm:^6.0.12"
"@jupyterlab/docregistry": "npm:^4.0.12"
"@jupyterlab/rendermime": "npm:^4.0.12"
"@jupyterlab/rendermime-interfaces": "npm:^3.8.12"
"@jupyterlab/services": "npm:^7.0.12"
"@jupyterlab/statedb": "npm:^4.0.12"
"@jupyterlab/translation": "npm:^4.0.12"
"@jupyterlab/ui-components": "npm:^4.0.12"
"@lumino/algorithm": "npm:^2.0.1"
"@lumino/application": "npm:^2.2.1"
"@lumino/commands": "npm:^2.1.3"
"@lumino/coreutils": "npm:^2.1.2"
"@lumino/disposable": "npm:^2.1.2"
"@lumino/messaging": "npm:^2.0.1"
"@lumino/polling": "npm:^2.1.2"
"@lumino/properties": "npm:^2.0.1"
"@lumino/signaling": "npm:^2.1.2"
"@lumino/widgets": "npm:^2.3.0"
checksum: 8/858b3d6f514a430314e703e43078d8b8f7bf47f1808a70aad5fd0bf924e07ce4d7397432f8b7d8a330fd655f694585e3c804591426bef9efb40768663c78e0a2
languageName: node
linkType: hard
"@jupyterlab/apputils@npm:^4.1.12":
version: 4.1.12
resolution: "@jupyterlab/apputils@npm:4.1.12"
dependencies:
"@jupyterlab/coreutils": "npm:^6.0.12"
"@jupyterlab/observables": "npm:^5.0.12"
"@jupyterlab/rendermime-interfaces": "npm:^3.8.12"
"@jupyterlab/services": "npm:^7.0.12"
"@jupyterlab/settingregistry": "npm:^4.0.12"
"@jupyterlab/statedb": "npm:^4.0.12"
"@jupyterlab/statusbar": "npm:^4.0.12"
"@jupyterlab/translation": "npm:^4.0.12"
"@jupyterlab/ui-components": "npm:^4.0.12"
"@lumino/algorithm": "npm:^2.0.1"
"@lumino/commands": "npm:^2.1.3"
"@lumino/coreutils": "npm:^2.1.2"
"@lumino/disposable": "npm:^2.1.2"
"@lumino/domutils": "npm:^2.0.1"
"@lumino/messaging": "npm:^2.0.1"
"@lumino/signaling": "npm:^2.1.2"
"@lumino/virtualdom": "npm:^2.0.1"
"@lumino/widgets": "npm:^2.3.0"
"@types/react": "npm:^18.0.26"
react: "npm:^18.2.0"
sanitize-html: "npm:~2.7.3"
checksum: 8/ee0dd5398c407697b53d80f5198fb63139339a3ac3fcb45cd75fda10177fde11979fa5aa4fec882f9e13bd6164610e7bb583dd1440eb329132f993c709f13bbc
languageName: node
linkType: hard
"@jupyterlab/builder@npm:^4.0.0":
version: 4.0.12
resolution: "@jupyterlab/builder@npm:4.0.12"
dependencies:
"@lumino/algorithm": "npm:^2.0.1"
"@lumino/application": "npm:^2.2.1"
"@lumino/commands": "npm:^2.1.3"
"@lumino/coreutils": "npm:^2.1.2"
"@lumino/disposable": "npm:^2.1.2"
"@lumino/domutils": "npm:^2.0.1"
"@lumino/dragdrop": "npm:^2.1.4"
"@lumino/messaging": "npm:^2.0.1"
"@lumino/properties": "npm:^2.0.1"
"@lumino/signaling": "npm:^2.1.2"
"@lumino/virtualdom": "npm:^2.0.1"
"@lumino/widgets": "npm:^2.3.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: 8/8e41f75c107d9cff8d24a317708980dc2e61b066499df90b0b1f3942eebf889b3109346b77f004fd39cd96cc10255cf70af845bbec55e93e82150702591091fb
languageName: node
linkType: hard
"@jupyterlab/codeeditor@npm:^4.0.12":
version: 4.0.12
resolution: "@jupyterlab/codeeditor@npm:4.0.12"
dependencies:
"@codemirror/state": "npm:^6.2.0"
"@jupyter/ydoc": "npm:^1.1.1"
"@jupyterlab/coreutils": "npm:^6.0.12"
"@jupyterlab/nbformat": "npm:^4.0.12"
"@jupyterlab/observables": "npm:^5.0.12"
"@jupyterlab/statusbar": "npm:^4.0.12"
"@jupyterlab/translation": "npm:^4.0.12"
"@jupyterlab/ui-components": "npm:^4.0.12"
"@lumino/coreutils": "npm:^2.1.2"
"@lumino/disposable": "npm:^2.1.2"
"@lumino/dragdrop": "npm:^2.1.4"
"@lumino/messaging": "npm:^2.0.1"
"@lumino/signaling": "npm:^2.1.2"
"@lumino/widgets": "npm:^2.3.0"
react: "npm:^18.2.0"
checksum: 8/41ed7af7e0a369f0fb8e99a4f217145f8c2c76bf6e3b7d879de030544c657451c45a175ef9257d519ea6a2bc68481dacc37cdf92a1be620d6184152e90919185
languageName: node
linkType: hard
"@jupyterlab/coreutils@npm:^6.0.0, @jupyterlab/coreutils@npm:^6.0.12":
version: 6.0.12
resolution: "@jupyterlab/coreutils@npm:6.0.12"
dependencies:
"@lumino/coreutils": "npm:^2.1.2"
"@lumino/disposable": "npm:^2.1.2"
"@lumino/signaling": "npm:^2.1.2"
minimist: "npm:~1.2.0"
path-browserify: "npm:^1.0.0"
url-parse: "npm:~1.5.4"
checksum: 8/4a225e5e05cefe5f1cfbbfc25222553f89e866b6dca61bc3cba7ecbd759b1b0738ea2798489f41329dceedf3f5de63250554a6b2d5100cbf1c56c153e6d49672
languageName: node
linkType: hard
"@jupyterlab/docregistry@npm:^4.0.12":
version: 4.0.12
resolution: "@jupyterlab/docregistry@npm:4.0.12"
dependencies:
"@jupyter/ydoc": "npm:^1.1.1"
"@jupyterlab/apputils": "npm:^4.1.12"
"@jupyterlab/codeeditor": "npm:^4.0.12"
"@jupyterlab/coreutils": "npm:^6.0.12"
"@jupyterlab/observables": "npm:^5.0.12"
"@jupyterlab/rendermime": "npm:^4.0.12"
"@jupyterlab/rendermime-interfaces": "npm:^3.8.12"
"@jupyterlab/services": "npm:^7.0.12"
"@jupyterlab/translation": "npm:^4.0.12"
"@jupyterlab/ui-components": "npm:^4.0.12"
"@lumino/algorithm": "npm:^2.0.1"
"@lumino/coreutils": "npm:^2.1.2"
"@lumino/disposable": "npm:^2.1.2"
"@lumino/messaging": "npm:^2.0.1"
"@lumino/properties": "npm:^2.0.1"
"@lumino/signaling": "npm:^2.1.2"
"@lumino/widgets": "npm:^2.3.0"
checksum: 8/48e53ac2d508b7da2cff50810494b02058ad06ccf6dfe397be81146f79e5da5ebc0461dc7ef1871a393f077556b3d2491b5c3950022b550ca383d4a9ba34afbd
languageName: node
linkType: hard
"@jupyterlab/nbformat@npm:^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0, @jupyterlab/nbformat@npm:^4.0.12":
version: 4.0.12
resolution: "@jupyterlab/nbformat@npm:4.0.12"
dependencies:
"@lumino/coreutils": "npm:^2.1.2"
checksum: 8/e9bd3385e9b7020f27577dc790462cebab3fada9571b64e57c19d9246b944726a1b3d866fec79b4be67153e2b19a1caa08d15d066274b975bfd07cd8211de605
languageName: node
linkType: hard
"@jupyterlab/observables@npm:^5.0.12":
version: 5.0.12
resolution: "@jupyterlab/observables@npm:5.0.12"
dependencies:
"@lumino/algorithm": "npm:^2.0.1"
"@lumino/coreutils": "npm:^2.1.2"
"@lumino/disposable": "npm:^2.1.2"
"@lumino/messaging": "npm:^2.0.1"
"@lumino/signaling": "npm:^2.1.2"
checksum: 8/49eddcdf16283977879117b99117cbdfcbd25a3f4d9e4f174a0c2d78996b9ec686e5939854f22be1e5ae4d74175f9c4d44b5bdd180993270a42acecaee6553e7
languageName: node
linkType: hard
"@jupyterlab/rendermime-interfaces@npm:^3.8.12":
version: 3.8.12
resolution: "@jupyterlab/rendermime-interfaces@npm:3.8.12"
dependencies:
"@lumino/coreutils": "npm:^1.11.0 || ^2.1.2"
"@lumino/widgets": "npm:^1.37.2 || ^2.3.0"
checksum: 8/8f1a0242325fa2f7ca02cc09f87db78f2ba9d9a84d38867c1bfcab09e695ebe102beba82f7b38fb850c21fc4f298c2bf51944a7604664e4c8bcdd69b038ada10
languageName: node
linkType: hard
"@jupyterlab/rendermime@npm:^4.0.12":
version: 4.0.12
resolution: "@jupyterlab/rendermime@npm:4.0.12"
dependencies:
"@jupyterlab/apputils": "npm:^4.1.12"
"@jupyterlab/coreutils": "npm:^6.0.12"
"@jupyterlab/nbformat": "npm:^4.0.12"
"@jupyterlab/observables": "npm:^5.0.12"
"@jupyterlab/rendermime-interfaces": "npm:^3.8.12"
"@jupyterlab/services": "npm:^7.0.12"
"@jupyterlab/translation": "npm:^4.0.12"
"@lumino/coreutils": "npm:^2.1.2"
"@lumino/messaging": "npm:^2.0.1"
"@lumino/signaling": "npm:^2.1.2"
"@lumino/widgets": "npm:^2.3.0"
lodash.escape: "npm:^4.0.1"
checksum: 8/5a9344518485b364a34d33fa2fba8ba521ee90a1feaba9908e5e79969b8a27d8e1fa8e9943555a2fe878f6829055075732843b1c575cf0aad03173ee5a445d26
languageName: node
linkType: hard
"@jupyterlab/services@npm:^7.0.0, @jupyterlab/services@npm:^7.0.12":
version: 7.0.12
resolution: "@jupyterlab/services@npm:7.0.12"
dependencies:
"@jupyter/ydoc": "npm:^1.1.1"
"@jupyterlab/coreutils": "npm:^6.0.12"
"@jupyterlab/nbformat": "npm:^4.0.12"
"@jupyterlab/settingregistry": "npm:^4.0.12"
"@jupyterlab/statedb": "npm:^4.0.12"
"@lumino/coreutils": "npm:^2.1.2"
"@lumino/disposable": "npm:^2.1.2"
"@lumino/polling": "npm:^2.1.2"
"@lumino/properties": "npm:^2.0.1"
"@lumino/signaling": "npm:^2.1.2"
ws: "npm:^8.11.0"
checksum: 8/0f50969443db19f39985524202b110bf38c4c4554d06d287d5f04758823446b879b7ed541f179c4db5f1a73184ee2790a29ebdff49820f00e1254729c223f15a
languageName: node
linkType: hard
"@jupyterlab/settingregistry@npm:^4.0.12":
version: 4.0.12
resolution: "@jupyterlab/settingregistry@npm:4.0.12"
dependencies:
"@jupyterlab/nbformat": "npm:^4.0.12"
"@jupyterlab/statedb": "npm:^4.0.12"
"@lumino/commands": "npm:^2.1.3"
"@lumino/coreutils": "npm:^2.1.2"
"@lumino/disposable": "npm:^2.1.2"
"@lumino/signaling": "npm:^2.1.2"
"@rjsf/utils": "npm:^5.1.0"
ajv: "npm:^8.12.0"
json5: "npm:^2.2.3"
peerDependencies:
react: ">=16"
checksum: 8/1d3b425effb33333b3c89b0f4bac08ffba5fd97602ce92fb3c3037c15573c853609ec04b0e7e2d4c74f67a75360063e1fd00ba19862abc992f867a3d31e8b440
languageName: node
linkType: hard
"@jupyterlab/statedb@npm:^4.0.12":
version: 4.0.12
resolution: "@jupyterlab/statedb@npm:4.0.12"
dependencies:
"@lumino/commands": "npm:^2.1.3"
"@lumino/coreutils": "npm:^2.1.2"
"@lumino/disposable": "npm:^2.1.2"
"@lumino/properties": "npm:^2.0.1"
"@lumino/signaling": "npm:^2.1.2"
checksum: 8/a0bc781a2c16067890ad1a7f7a774ea9b47a9db052cde756416f953aef6cb9451e057a18230b0bb91dad0c3000dbeb6d349121561050e8dc4a91478aa0d40e61
languageName: node
linkType: hard
"@jupyterlab/statusbar@npm:^4.0.12":
version: 4.0.12
resolution: "@jupyterlab/statusbar@npm:4.0.12"
dependencies:
"@jupyterlab/ui-components": "npm:^4.0.12"
"@lumino/algorithm": "npm:^2.0.1"
"@lumino/coreutils": "npm:^2.1.2"
"@lumino/disposable": "npm:^2.1.2"
"@lumino/messaging": "npm:^2.0.1"
"@lumino/signaling": "npm:^2.1.2"
"@lumino/widgets": "npm:^2.3.0"
react: "npm:^18.2.0"
checksum: 8/54437a6cbe08c0547b4001ac8f7e177b3a26d9e870db7fc10ee879144631e3f71a4772a1a9f94175ecb79dfffe6c8bb747d531d756a8466d9c7891cc4190443b
languageName: node
linkType: hard
"@jupyterlab/translation@npm:^4.0.12":
version: 4.0.12
resolution: "@jupyterlab/translation@npm:4.0.12"
dependencies:
"@jupyterlab/coreutils": "npm:^6.0.12"
"@jupyterlab/rendermime-interfaces": "npm:^3.8.12"
"@jupyterlab/services": "npm:^7.0.12"
"@jupyterlab/statedb": "npm:^4.0.12"
"@lumino/coreutils": "npm:^2.1.2"
checksum: 8/48cf5afd35c83f8f61583e1b8e742b763f28cacfd870fff986cfd87964adf654519e96aef48a69971c0667402b0a806eb583b9cb1d4730272f0e47916807266d
languageName: node
linkType: hard
"@jupyterlab/ui-components@npm:^4.0.0, @jupyterlab/ui-components@npm:^4.0.12":
version: 4.0.12
resolution: "@jupyterlab/ui-components@npm:4.0.12"
dependencies:
"@jupyterlab/coreutils": "npm:^6.0.12"
"@jupyterlab/observables": "npm:^5.0.12"
"@jupyterlab/rendermime-interfaces": "npm:^3.8.12"
"@jupyterlab/translation": "npm:^4.0.12"
"@lumino/algorithm": "npm:^2.0.1"
"@lumino/commands": "npm:^2.1.3"
"@lumino/coreutils": "npm:^2.1.2"
"@lumino/disposable": "npm:^2.1.2"
"@lumino/messaging": "npm:^2.0.1"
"@lumino/polling": "npm:^2.1.2"
"@lumino/properties": "npm:^2.0.1"
"@lumino/signaling": "npm:^2.1.2"
"@lumino/virtualdom": "npm:^2.0.1"
"@lumino/widgets": "npm:^2.3.0"
"@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: 8/c9bf51f684e215cce82e837c1c5ec70af1e7580589cee228a24377237e51bc61f6dce3d92d8be63f270ff35df1ac409603100b738b3934210f7d5a38cd83067d
languageName: node
linkType: hard
"@kitware/vtk.js@npm:^22.4.0":
version: 22.6.2
resolution: "@kitware/vtk.js@npm:22.6.2"
dependencies:
"@babel/runtime": "npm:7.16.7"
commander: "npm:8.3.0"
d3-scale: "npm:4.0.2"
gl-matrix: "npm:3.4.3"
globalthis: "npm:1.0.2"
jszip: "npm:3.7.1"
pako: "npm:2.0.4"
seedrandom: "npm:3.0.5"
shader-loader: "npm:1.3.1"
shelljs: "npm:0.8.5"
spark-md5: "npm:^3.0.2"
stream-browserify: "npm:3.0.0"
webworker-promise: "npm:0.4.4"
worker-loader: "npm:3.0.8"
xmlbuilder2: "npm:3.0.2"
peerDependencies:
wslink: ^1.1.0
bin:
vtkDataConverter: Utilities/DataGenerator/convert-cli.js
xml2json: Utilities/XMLConverter/xml2json-cli.js
checksum: 8/055c257fa4fc35c6db93d5f84681159da933a8a2ea9fb04a869a337c00e4914e56220815f5eb3534caba96dec1d11422cf826a9de37b1673e7ccb1f65a903d21
languageName: node
linkType: hard
"@lumino/algorithm@npm:^2.0.1":
version: 2.0.1
resolution: "@lumino/algorithm@npm:2.0.1"
checksum: 8/cbf7fcf6ee6b785ea502cdfddc53d61f9d353dcb9659343511d5cd4b4030be2ff2ca4c08daec42f84417ab0318a3d9972a17319fa5231693e109ab112dcf8000
languageName: node
linkType: hard
"@lumino/application@npm:^2.2.1":
version: 2.3.0
resolution: "@lumino/application@npm:2.3.0"
dependencies:
"@lumino/commands": "npm:^2.2.0"
"@lumino/coreutils": "npm:^2.1.2"
"@lumino/widgets": "npm:^2.3.1"
checksum: 8/9d1eb5bc972ed158bf219604a53bbac1262059bc5b0123d3e041974486b9cbb8288abeeec916f3b62f62d7c32e716cccf8b73e4832ae927e4f9dd4e4b0cd37ed
languageName: node
linkType: hard
"@lumino/collections@npm:^2.0.1":
version: 2.0.1
resolution: "@lumino/collections@npm:2.0.1"
dependencies:
"@lumino/algorithm": "npm:^2.0.1"
checksum: 8/8a29b7973a388a33c5beda0819dcd2dc2aad51a8406dcfd4581b055a9f77a39dc5800f7a8b4ae3c0bb97ae7b56a7a869e2560ffb7a920a28e93b477ba05907d6
languageName: node
linkType: hard
"@lumino/commands@npm:^2.1.3, @lumino/commands@npm:^2.2.0":
version: 2.2.0
resolution: "@lumino/commands@npm:2.2.0"
dependencies:
"@lumino/algorithm": "npm:^2.0.1"
"@lumino/coreutils": "npm:^2.1.2"
"@lumino/disposable": "npm:^2.1.2"
"@lumino/domutils": "npm:^2.0.1"
"@lumino/keyboard": "npm:^2.0.1"
"@lumino/signaling": "npm:^2.1.2"
"@lumino/virtualdom": "npm:^2.0.1"
checksum: 8/093e9715491e5cef24bc80665d64841417b400f2fa595f9b60832a3b6340c405c94a6aa276911944a2c46d79a6229f3cc087b73f50852bba25ece805abd0fae9
languageName: node
linkType: hard
"@lumino/coreutils@npm:^1.11.0 || ^2.0.0, @lumino/coreutils@npm:^1.11.0 || ^2.1.2, @lumino/coreutils@npm:^2.1.2":
version: 2.1.2
resolution: "@lumino/coreutils@npm:2.1.2"
checksum: 8/7865317ac0676b448d108eb57ab5d8b2a17c101995c0f7a7106662d9fe6c859570104525f83ee3cda12ae2e326803372206d6f4c1f415a5b59e4158a7b81066f
languageName: node
linkType: hard
"@lumino/disposable@npm:^1.10.0 || ^2.0.0, @lumino/disposable@npm:^2.1.2":
version: 2.1.2
resolution: "@lumino/disposable@npm:2.1.2"
dependencies:
"@lumino/signaling": "npm:^2.1.2"
checksum: 8/ac2fb2bf18d0b2939fda454f3db248a0ff6e8a77b401e586d1caa9293b3318f808b93a117c9c3ac27cd17aab545aea83b49108d099b9b2f5503ae2a012fbc6e2
languageName: node
linkType: hard
"@lumino/domutils@npm:^2.0.1":
version: 2.0.1
resolution: "@lumino/domutils@npm:2.0.1"
checksum: 8/61fa0ab226869dfbb763fc426790cf5a43b7d6f4cea1364c6dd56d61c44bff05eea188d33ff847449608ef58ed343161bee15c19b96f35410e4ee35815dc611a
languageName: node
linkType: hard
"@lumino/dragdrop@npm:^2.1.4":
version: 2.1.4
resolution: "@lumino/dragdrop@npm:2.1.4"
dependencies:
"@lumino/coreutils": "npm:^2.1.2"
"@lumino/disposable": "npm:^2.1.2"
checksum: 8/43d82484b13b38b612e7dfb424a840ed6a38d0db778af10655c4ba235c67b5b12db1683929b35a36ab2845f77466066dfd1ee25c1c273e8e175677eba9dc560d
languageName: node
linkType: hard
"@lumino/keyboard@npm:^2.0.1":
version: 2.0.1
resolution: "@lumino/keyboard@npm:2.0.1"
checksum: 8/cf33f13427a418efd7cc91061233321e860d5404f3d86397781028309bef86c8ad2d88276ffe335c1db0fe619bd9d1e60641c81f881696957a58703ee4652c3e
languageName: node
linkType: hard
"@lumino/messaging@npm:^2.0.1":
version: 2.0.1
resolution: "@lumino/messaging@npm:2.0.1"
dependencies:
"@lumino/algorithm": "npm:^2.0.1"
"@lumino/collections": "npm:^2.0.1"
checksum: 8/964c4651c374b17452b4252b7d71500b32d2ecd87c192fc5bcf5d3bd1070661d78d07edcac8eca7d1d6fd50aa25992505485e1296d6dd995691b8e349b652045
languageName: node
linkType: hard
"@lumino/polling@npm:^2.1.2":
version: 2.1.2
resolution: "@lumino/polling@npm:2.1.2"
dependencies:
"@lumino/coreutils": "npm:^2.1.2"
"@lumino/disposable": "npm:^2.1.2"
"@lumino/signaling": "npm:^2.1.2"
checksum: 8/fa9b401e6dbeb8f31d7e3ba485e8ef1e0c92b3f2da086239c0ed49931026f5d3528709193c93e031e35ac624fb4bbbfcdcbaa0e25eb797f36e2952e5cd91e9e3
languageName: node
linkType: hard
"@lumino/properties@npm:^2.0.1":
version: 2.0.1
resolution: "@lumino/properties@npm:2.0.1"
checksum: 8/c50173a935148cc4148fdaea119df1d323ee004ae16ab666800388d27e9730345629662d85f25591683329b39f0cdae60ee8c94e8943b4d0ef7d7370a38128d6
languageName: node
linkType: hard
"@lumino/signaling@npm:^1.10.0 || ^2.0.0, @lumino/signaling@npm:^2.1.2":
version: 2.1.2
resolution: "@lumino/signaling@npm:2.1.2"
dependencies:
"@lumino/algorithm": "npm:^2.0.1"
"@lumino/coreutils": "npm:^2.1.2"
checksum: 8/ad7d7153db57980da899c43e412e6130316ef30b231a70250e7af49058db16cadb018c1417a2ea8083d83c48623cfe6b705fa82bf10216b1a8949aed9f4aca4e
languageName: node
linkType: hard
"@lumino/virtualdom@npm:^2.0.1":
version: 2.0.1
resolution: "@lumino/virtualdom@npm:2.0.1"
dependencies:
"@lumino/algorithm": "npm:^2.0.1"
checksum: 8/cf59b6f15b430e13e9e657b7a0619b9056cd9ea7b2a87f407391d071c501b77403c302b6a66dca510382045e75b2e3fe551630bb391f1c6b33678057d4bec164
languageName: node
linkType: hard
"@lumino/widgets@npm:^1.37.2 || ^2.3.0, @lumino/widgets@npm:^2.3.0, @lumino/widgets@npm:^2.3.1":
version: 2.3.1
resolution: "@lumino/widgets@npm:2.3.1"
dependencies:
"@lumino/algorithm": "npm:^2.0.1"
"@lumino/commands": "npm:^2.2.0"
"@lumino/coreutils": "npm:^2.1.2"
"@lumino/disposable": "npm:^2.1.2"
"@lumino/domutils": "npm:^2.0.1"
"@lumino/dragdrop": "npm:^2.1.4"
"@lumino/keyboard": "npm:^2.0.1"
"@lumino/messaging": "npm:^2.0.1"
"@lumino/properties": "npm:^2.0.1"
"@lumino/signaling": "npm:^2.1.2"
"@lumino/virtualdom": "npm:^2.0.1"
checksum: 8/ba7b8f8839c1cd2a41dbda13281094eb6981a270cccf4f25a0cf83686dcc526a2d8044a20204317630bb7dd4a04d65361408c7623a921549c781afca84b91c67
languageName: node
linkType: hard
"@mui/base@npm:5.0.0-beta.34":
version: 5.0.0-beta.34
resolution: "@mui/base@npm:5.0.0-beta.34"
dependencies:
"@babel/runtime": "npm:^7.23.9"
"@floating-ui/react-dom": "npm:^2.0.8"
"@mui/types": "npm:^7.2.13"
"@mui/utils": "npm:^5.15.7"
"@popperjs/core": "npm:^2.11.8"
clsx: "npm:^2.1.0"
prop-types: "npm:^15.8.1"
peerDependencies:
"@types/react": ^17.0.0 || ^18.0.0
react: ^17.0.0 || ^18.0.0
react-dom: ^17.0.0 || ^18.0.0
peerDependenciesMeta:
"@types/react":
optional: true
checksum: 8/740281746476e6557c013f7ecd8c567a5ea9b7dce70881d7028bf91bf4bd867e6527f1396e3baee915fc5f5c039c628212db12a6cd9688a9ad44d85fc0624bc0
languageName: node
linkType: hard
"@mui/core-downloads-tracker@npm:^5.15.7":
version: 5.15.7
resolution: "@mui/core-downloads-tracker@npm:5.15.7"
checksum: 8/cdaea04222020086fd68e25bdf0f4dfdfc9a3b58a558297ef0a247f02cce8ea7671f9a31c07c5b53cfe553d24110baed2b03b701b1bea60f5c2b2e3ba56ba6fc
languageName: node
linkType: hard