-
Notifications
You must be signed in to change notification settings - Fork 5
/
yarn.lock
6340 lines (5706 loc) · 217 KB
/
yarn.lock
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 6
cacheKey: 8
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.25.9":
version: 7.26.2
resolution: "@babel/code-frame@npm:7.26.2"
dependencies:
"@babel/helper-validator-identifier": ^7.25.9
js-tokens: ^4.0.0
picocolors: ^1.0.0
checksum: db13f5c42d54b76c1480916485e6900748bbcb0014a8aca87f50a091f70ff4e0d0a6db63cade75eb41fcc3d2b6ba0a7f89e343def4f96f00269b41b8ab8dd7b8
languageName: node
linkType: hard
"@babel/generator@npm:^7.25.9":
version: 7.26.2
resolution: "@babel/generator@npm:7.26.2"
dependencies:
"@babel/parser": ^7.26.2
"@babel/types": ^7.26.0
"@jridgewell/gen-mapping": ^0.3.5
"@jridgewell/trace-mapping": ^0.3.25
jsesc: ^3.0.2
checksum: 6ff850b7d6082619f8c2f518d993cf7254cfbaa20b026282cbef5c9b2197686d076a432b18e36c4d1a42721c016df4f77a8f62c67600775d9683621d534b91b4
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.16.7":
version: 7.25.9
resolution: "@babel/helper-module-imports@npm:7.25.9"
dependencies:
"@babel/traverse": ^7.25.9
"@babel/types": ^7.25.9
checksum: 1b411ce4ca825422ef7065dffae7d8acef52023e51ad096351e3e2c05837e9bf9fca2af9ca7f28dc26d596a588863d0fedd40711a88e350b736c619a80e704e6
languageName: node
linkType: hard
"@babel/helper-string-parser@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-string-parser@npm:7.25.9"
checksum: 6435ee0849e101681c1849868278b5aee82686ba2c1e27280e5e8aca6233af6810d39f8e4e693d2f2a44a3728a6ccfd66f72d71826a94105b86b731697cdfa99
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-validator-identifier@npm:7.25.9"
checksum: 5b85918cb1a92a7f3f508ea02699e8d2422fe17ea8e82acd445006c0ef7520fbf48e3dbcdaf7b0a1d571fc3a2715a29719e5226636cb6042e15fe6ed2a590944
languageName: node
linkType: hard
"@babel/parser@npm:^7.25.9, @babel/parser@npm:^7.26.2":
version: 7.26.2
resolution: "@babel/parser@npm:7.26.2"
dependencies:
"@babel/types": ^7.26.0
bin:
parser: ./bin/babel-parser.js
checksum: c88b5ea0adf357ef909cdc2c31e284a154943edc59f63f6e8a4c20bf773a1b2f3d8c2205e59c09ca7cdad91e7466300114548876529277a80651b6436a48d5d9
languageName: node
linkType: hard
"@babel/runtime@npm:^7.12.5, @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.26.0
resolution: "@babel/runtime@npm:7.26.0"
dependencies:
regenerator-runtime: ^0.14.0
checksum: c8e2c0504ab271b3467a261a8f119bf2603eb857a0d71e37791f4e3fae00f681365073cc79f141ddaa90c6077c60ba56448004ad5429d07ac73532be9f7cf28a
languageName: node
linkType: hard
"@babel/template@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/template@npm:7.25.9"
dependencies:
"@babel/code-frame": ^7.25.9
"@babel/parser": ^7.25.9
"@babel/types": ^7.25.9
checksum: 103641fea19c7f4e82dc913aa6b6ac157112a96d7c724d513288f538b84bae04fb87b1f1e495ac1736367b1bc30e10f058b30208fb25f66038e1f1eb4e426472
languageName: node
linkType: hard
"@babel/traverse@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/traverse@npm:7.25.9"
dependencies:
"@babel/code-frame": ^7.25.9
"@babel/generator": ^7.25.9
"@babel/parser": ^7.25.9
"@babel/template": ^7.25.9
"@babel/types": ^7.25.9
debug: ^4.3.1
globals: ^11.1.0
checksum: 901d325662ff1dd9bc51de00862e01055fa6bc374f5297d7e3731f2f0e268bbb1d2141f53fa82860aa308ee44afdcf186a948f16c83153927925804b95a9594d
languageName: node
linkType: hard
"@babel/types@npm:^7.25.9, @babel/types@npm:^7.26.0":
version: 7.26.0
resolution: "@babel/types@npm:7.26.0"
dependencies:
"@babel/helper-string-parser": ^7.25.9
"@babel/helper-validator-identifier": ^7.25.9
checksum: a3dd37dabac693018872da96edb8c1843a605c1bfacde6c3f504fba79b972426a6f24df70aa646356c0c1b19bdd2c722c623c684a996c002381071680602280d
languageName: node
linkType: hard
"@codemirror/state@npm:^6.4.1":
version: 6.4.1
resolution: "@codemirror/state@npm:6.4.1"
checksum: b81b55574091349eed4d32fc0eadb0c9688f1f7c98b681318f59138ee0f527cb4c4a97831b70547c0640f02f3127647838ae6730782de4a3dd2cc58836125d01
languageName: node
linkType: hard
"@csstools/css-parser-algorithms@npm:^2.3.1":
version: 2.7.1
resolution: "@csstools/css-parser-algorithms@npm:2.7.1"
peerDependencies:
"@csstools/css-tokenizer": ^2.4.1
checksum: 304e6f92e583042c310e368a82b694af563a395e5c55911caefe52765c5acb000b9daa17356ea8a4dd37d4d50132b76de48ced75159b169b53e134ff78b362ba
languageName: node
linkType: hard
"@csstools/css-tokenizer@npm:^2.2.0":
version: 2.4.1
resolution: "@csstools/css-tokenizer@npm:2.4.1"
checksum: 395c51f8724ddc4851d836f484346bb3ea6a67af936dde12cbf9a57ae321372e79dee717cbe4823599eb0e6fd2d5405cf8873450e986c2fca6e6ed82e7b10219
languageName: node
linkType: hard
"@csstools/media-query-list-parser@npm:^2.1.4":
version: 2.1.13
resolution: "@csstools/media-query-list-parser@npm:2.1.13"
peerDependencies:
"@csstools/css-parser-algorithms": ^2.7.1
"@csstools/css-tokenizer": ^2.4.1
checksum: 7754b4b9fcc749a51a2bcd34a167ad16e7227ff087f6c4e15b3593d3342413446b72dad37f1adb99c62538730c77e3e47842987ce453fbb3849d329a39ba9ad7
languageName: node
linkType: hard
"@csstools/selector-specificity@npm:^3.0.0":
version: 3.1.1
resolution: "@csstools/selector-specificity@npm:3.1.1"
peerDependencies:
postcss-selector-parser: ^6.0.13
checksum: 3786a6afea97b08ad739ee8f4004f7e0a9e25049cee13af809dbda6462090744012a54bd9275a44712791e8f103f85d21641f14e81799f9dab946b0459a5e1ef
languageName: node
linkType: hard
"@discoveryjs/json-ext@npm:^0.5.0":
version: 0.5.7
resolution: "@discoveryjs/json-ext@npm:0.5.7"
checksum: 2176d301cc258ea5c2324402997cf8134ebb212469c0d397591636cea8d3c02f2b3cf9fd58dcb748c7a0dade77ebdc1b10284fa63e608c033a1db52fddc69918
languageName: node
linkType: hard
"@emotion/babel-plugin@npm:^11.12.0":
version: 11.12.0
resolution: "@emotion/babel-plugin@npm:11.12.0"
dependencies:
"@babel/helper-module-imports": ^7.16.7
"@babel/runtime": ^7.18.3
"@emotion/hash": ^0.9.2
"@emotion/memoize": ^0.9.0
"@emotion/serialize": ^1.2.0
babel-plugin-macros: ^3.1.0
convert-source-map: ^1.5.0
escape-string-regexp: ^4.0.0
find-root: ^1.1.0
source-map: ^0.5.7
stylis: 4.2.0
checksum: b5d4b3dfe97e6763794a42b5c3a027a560caa1aa6dcaf05c18e5969691368dd08245c077bad7397dcc720b53d29caeaaec1888121e68cfd9ab02ff52f6fef662
languageName: node
linkType: hard
"@emotion/cache@npm:^11.11.0, @emotion/cache@npm:^11.13.0":
version: 11.13.1
resolution: "@emotion/cache@npm:11.13.1"
dependencies:
"@emotion/memoize": ^0.9.0
"@emotion/sheet": ^1.4.0
"@emotion/utils": ^1.4.0
"@emotion/weak-memoize": ^0.4.0
stylis: 4.2.0
checksum: 94b161786a03a08a1e30257478fad9a9be1ac8585ddca0c6410d7411fd474fc8b0d6d1167d7d15bdb012d1fd8a1220ac2bbc79501ad9b292b83c17da0874d7de
languageName: node
linkType: hard
"@emotion/hash@npm:^0.9.2":
version: 0.9.2
resolution: "@emotion/hash@npm:0.9.2"
checksum: 379bde2830ccb0328c2617ec009642321c0e009a46aa383dfbe75b679c6aea977ca698c832d225a893901f29d7b3eef0e38cf341f560f6b2b56f1ff23c172387
languageName: node
linkType: hard
"@emotion/is-prop-valid@npm:^1.3.0":
version: 1.3.1
resolution: "@emotion/is-prop-valid@npm:1.3.1"
dependencies:
"@emotion/memoize": ^0.9.0
checksum: fe6549d54f389e1a17cb02d832af7ee85fb6ea126fc18d02ca47216e8ff19332c1983f4a0ba68602cfcd3b325ffd4ebf0b2d0c6270f1e7e6fe3fca4ba7741e1a
languageName: node
linkType: hard
"@emotion/memoize@npm:^0.9.0":
version: 0.9.0
resolution: "@emotion/memoize@npm:0.9.0"
checksum: 038132359397348e378c593a773b1148cd0cf0a2285ffd067a0f63447b945f5278860d9de718f906a74c7c940ba1783ac2ca18f1c06a307b01cc0e3944e783b1
languageName: node
linkType: hard
"@emotion/react@npm:^11.4.1":
version: 11.13.3
resolution: "@emotion/react@npm:11.13.3"
dependencies:
"@babel/runtime": ^7.18.3
"@emotion/babel-plugin": ^11.12.0
"@emotion/cache": ^11.13.0
"@emotion/serialize": ^1.3.1
"@emotion/use-insertion-effect-with-fallbacks": ^1.1.0
"@emotion/utils": ^1.4.0
"@emotion/weak-memoize": ^0.4.0
hoist-non-react-statics: ^3.3.1
peerDependencies:
react: ">=16.8.0"
peerDependenciesMeta:
"@types/react":
optional: true
checksum: 0b58374bf28de914b49881f0060acfb908989869ebab63a2287773fc5e91a39f15552632b03d376c3e9835c5b4f23a5ebac8b0963b29af164d46c0a77ac928f0
languageName: node
linkType: hard
"@emotion/serialize@npm:^1.2.0, @emotion/serialize@npm:^1.3.0, @emotion/serialize@npm:^1.3.1":
version: 1.3.2
resolution: "@emotion/serialize@npm:1.3.2"
dependencies:
"@emotion/hash": ^0.9.2
"@emotion/memoize": ^0.9.0
"@emotion/unitless": ^0.10.0
"@emotion/utils": ^1.4.1
csstype: ^3.0.2
checksum: 8051bafe32459e1aecf716cdb66a22b090060806104cca89d4e664893b56878d3e9bb94a4657df9b7b3fd183700a9be72f7144c959ddcbd3cf7b330206919237
languageName: node
linkType: hard
"@emotion/sheet@npm:^1.4.0":
version: 1.4.0
resolution: "@emotion/sheet@npm:1.4.0"
checksum: eeb1212e3289db8e083e72e7e401cd6d1a84deece87e9ce184f7b96b9b5dbd6f070a89057255a6ff14d9865c3ce31f27c39248a053e4cdd875540359042586b4
languageName: node
linkType: hard
"@emotion/styled@npm:^11.3.0":
version: 11.13.0
resolution: "@emotion/styled@npm:11.13.0"
dependencies:
"@babel/runtime": ^7.18.3
"@emotion/babel-plugin": ^11.12.0
"@emotion/is-prop-valid": ^1.3.0
"@emotion/serialize": ^1.3.0
"@emotion/use-insertion-effect-with-fallbacks": ^1.1.0
"@emotion/utils": ^1.4.0
peerDependencies:
"@emotion/react": ^11.0.0-rc.0
react: ">=16.8.0"
peerDependenciesMeta:
"@types/react":
optional: true
checksum: f5b951059418f57bc8ea32b238afb25965ece3314f2ffd1b14ce049ba3c066a424990dfbfabbf57bb88e044eaa80bf19f620ac988adda3d2fc483177be6da05e
languageName: node
linkType: hard
"@emotion/unitless@npm:^0.10.0":
version: 0.10.0
resolution: "@emotion/unitless@npm:0.10.0"
checksum: d79346df31a933e6d33518e92636afeb603ce043f3857d0a39a2ac78a09ef0be8bedff40130930cb25df1beeee12d96ee38613963886fa377c681a89970b787c
languageName: node
linkType: hard
"@emotion/use-insertion-effect-with-fallbacks@npm:^1.1.0":
version: 1.1.0
resolution: "@emotion/use-insertion-effect-with-fallbacks@npm:1.1.0"
peerDependencies:
react: ">=16.8.0"
checksum: 63665191773b27de66807c53b90091ef0d10d5161381f62726cfceecfe1d8c944f18594b8021805fc81575b64246fd5ab9c75d60efabec92f940c1c410530949
languageName: node
linkType: hard
"@emotion/utils@npm:^1.4.0, @emotion/utils@npm:^1.4.1":
version: 1.4.1
resolution: "@emotion/utils@npm:1.4.1"
checksum: 088f6844c735981f53c84a76101cf261422301e7895cb37fea6a47e7950247ffa8ca174ca2a15d9b29a47f0fa831b432017ca7683bccbb5cfd78dda82743d856
languageName: node
linkType: hard
"@emotion/weak-memoize@npm:^0.4.0":
version: 0.4.0
resolution: "@emotion/weak-memoize@npm:0.4.0"
checksum: db5da0e89bd752c78b6bd65a1e56231f0abebe2f71c0bd8fc47dff96408f7065b02e214080f99924f6a3bfe7ee15afc48dad999d76df86b39b16e513f7a94f52
languageName: node
linkType: hard
"@eslint-community/eslint-utils@npm:^4.2.0, @eslint-community/eslint-utils@npm:^4.4.0":
version: 4.4.1
resolution: "@eslint-community/eslint-utils@npm:4.4.1"
dependencies:
eslint-visitor-keys: ^3.4.3
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
checksum: a7ffc838eb6a9ef594cda348458ccf38f34439ac77dc090fa1c120024bcd4eb911dfd74d5ef44d42063e7949fa7c5123ce714a015c4abb917d4124be1bd32bfe
languageName: node
linkType: hard
"@eslint-community/regexpp@npm:^4.5.1, @eslint-community/regexpp@npm:^4.6.1":
version: 4.12.1
resolution: "@eslint-community/regexpp@npm:4.12.1"
checksum: 0d628680e204bc316d545b4993d3658427ca404ae646ce541fcc65306b8c712c340e5e573e30fb9f85f4855c0c5f6dca9868931f2fcced06417fbe1a0c6cd2d6
languageName: node
linkType: hard
"@eslint/eslintrc@npm:^2.1.4":
version: 2.1.4
resolution: "@eslint/eslintrc@npm:2.1.4"
dependencies:
ajv: ^6.12.4
debug: ^4.3.2
espree: ^9.6.0
globals: ^13.19.0
ignore: ^5.2.0
import-fresh: ^3.2.1
js-yaml: ^4.1.0
minimatch: ^3.1.2
strip-json-comments: ^3.1.1
checksum: 10957c7592b20ca0089262d8c2a8accbad14b4f6507e35416c32ee6b4dbf9cad67dfb77096bbd405405e9ada2b107f3797fe94362e1c55e0b09d6e90dd149127
languageName: node
linkType: hard
"@eslint/js@npm:8.57.1":
version: 8.57.1
resolution: "@eslint/js@npm:8.57.1"
checksum: 2afb77454c06e8316793d2e8e79a0154854d35e6782a1217da274ca60b5044d2c69d6091155234ed0551a1e408f86f09dd4ece02752c59568fa403e60611e880
languageName: node
linkType: hard
"@fortawesome/fontawesome-free@npm:^5.12.0":
version: 5.15.4
resolution: "@fortawesome/fontawesome-free@npm:5.15.4"
checksum: 32281c3df4075290d9a96dfc22f72fadb3da7055d4117e48d34046b8c98032a55fa260ae351b0af5d6f6fb57a2f5d79a4abe52af456da35195f7cb7dda27b4a2
languageName: node
linkType: hard
"@humanwhocodes/config-array@npm:^0.13.0":
version: 0.13.0
resolution: "@humanwhocodes/config-array@npm:0.13.0"
dependencies:
"@humanwhocodes/object-schema": ^2.0.3
debug: ^4.3.1
minimatch: ^3.0.5
checksum: eae69ff9134025dd2924f0b430eb324981494be26f0fddd267a33c28711c4db643242cf9fddf7dadb9d16c96b54b2d2c073e60a56477df86e0173149313bd5d6
languageName: node
linkType: hard
"@humanwhocodes/module-importer@npm:^1.0.1":
version: 1.0.1
resolution: "@humanwhocodes/module-importer@npm:1.0.1"
checksum: 0fd22007db8034a2cdf2c764b140d37d9020bbfce8a49d3ec5c05290e77d4b0263b1b972b752df8c89e5eaa94073408f2b7d977aed131faf6cf396ebb5d7fb61
languageName: node
linkType: hard
"@humanwhocodes/object-schema@npm:^2.0.3":
version: 2.0.3
resolution: "@humanwhocodes/object-schema@npm:2.0.3"
checksum: d3b78f6c5831888c6ecc899df0d03bcc25d46f3ad26a11d7ea52944dc36a35ef543fad965322174238d677a43d5c694434f6607532cff7077062513ad7022631
languageName: node
linkType: hard
"@isaacs/cliui@npm:^8.0.2":
version: 8.0.2
resolution: "@isaacs/cliui@npm:8.0.2"
dependencies:
string-width: ^5.1.2
string-width-cjs: "npm:string-width@^4.2.0"
strip-ansi: ^7.0.1
strip-ansi-cjs: "npm:strip-ansi@^6.0.1"
wrap-ansi: ^8.1.0
wrap-ansi-cjs: "npm:wrap-ansi@^7.0.0"
checksum: 4a473b9b32a7d4d3cfb7a614226e555091ff0c5a29a1734c28c72a182c2f6699b26fc6b5c2131dfd841e86b185aea714c72201d7c98c2fba5f17709333a67aeb
languageName: node
linkType: hard
"@jridgewell/gen-mapping@npm:^0.3.5":
version: 0.3.5
resolution: "@jridgewell/gen-mapping@npm:0.3.5"
dependencies:
"@jridgewell/set-array": ^1.2.1
"@jridgewell/sourcemap-codec": ^1.4.10
"@jridgewell/trace-mapping": ^0.3.24
checksum: ff7a1764ebd76a5e129c8890aa3e2f46045109dabde62b0b6c6a250152227647178ff2069ea234753a690d8f3c4ac8b5e7b267bbee272bffb7f3b0a370ab6e52
languageName: node
linkType: hard
"@jridgewell/resolve-uri@npm:^3.1.0":
version: 3.1.2
resolution: "@jridgewell/resolve-uri@npm:3.1.2"
checksum: 83b85f72c59d1c080b4cbec0fef84528963a1b5db34e4370fa4bd1e3ff64a0d80e0cee7369d11d73c704e0286fb2865b530acac7a871088fbe92b5edf1000870
languageName: node
linkType: hard
"@jridgewell/set-array@npm:^1.2.1":
version: 1.2.1
resolution: "@jridgewell/set-array@npm:1.2.1"
checksum: 832e513a85a588f8ed4f27d1279420d8547743cc37fcad5a5a76fc74bb895b013dfe614d0eed9cb860048e6546b798f8f2652020b4b2ba0561b05caa8c654b10
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": ^0.3.5
"@jridgewell/trace-mapping": ^0.3.25
checksum: c9dc7d899397df95e3c9ec287b93c0b56f8e4453cd20743e2b9c8e779b1949bc3cccf6c01bb302779e46560eb45f62ea38d19fedd25370d814734268450a9f30
languageName: node
linkType: hard
"@jridgewell/sourcemap-codec@npm:^1.4.10, @jridgewell/sourcemap-codec@npm:^1.4.14":
version: 1.5.0
resolution: "@jridgewell/sourcemap-codec@npm:1.5.0"
checksum: 05df4f2538b3b0f998ea4c1cd34574d0feba216fa5d4ccaef0187d12abf82eafe6021cec8b49f9bb4d90f2ba4582ccc581e72986a5fcf4176ae0cfeb04cf52ec
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": ^3.1.0
"@jridgewell/sourcemap-codec": ^1.4.14
checksum: 9d3c40d225e139987b50c48988f8717a54a8c994d8a948ee42e1412e08988761d0754d7d10b803061cc3aebf35f92a5dbbab493bd0e1a9ef9e89a2130e83ba34
languageName: node
linkType: hard
"@jupyter-widgets/base@npm:^1.1.10 || ^2 || ^3 || ^4 || ^5 || ^6":
version: 6.0.10
resolution: "@jupyter-widgets/base@npm:6.0.10"
dependencies:
"@jupyterlab/services": ^6.0.0 || ^7.0.0
"@lumino/coreutils": ^1.11.1 || ^2.1
"@lumino/messaging": ^1.10.1 || ^2.1
"@lumino/widgets": ^1.30.0 || ^2.1
"@types/backbone": 1.4.14
"@types/lodash": ^4.14.134
backbone: 1.4.0
jquery: ^3.1.1
lodash: ^4.17.4
checksum: 423f96bf6bee953f9347e7fb85a89bbae5f4040a91ab6d6769bc72b1f9752b388cb3b9ede68032133c4c567fc411d06ced290e0bfb80d3c348caa0eaf81cab9b
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": ^0.16.7
react: ">=17.0.0 <19.0.0"
checksum: 37894347e63ebb528725e8b8b4038d138019823f5c9e28e3f6abb93b46d771b2ee3cc004d5ff7d9a06a93f2d90e41000bd2abae14364be34ba99c5e05864810e
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": ^5.3.1
"@microsoft/fast-element": ^1.12.0
"@microsoft/fast-foundation": ^2.49.4
"@microsoft/fast-web-utilities": ^5.4.1
checksum: ec3336247bbabb2e2587c2cf8b9d0e80786b454916dd600b3d6791bf08c3d1e45a7ec1becf366a5491ab56b0be020baa8c50a5b6067961faf5ec904de31243aa
languageName: node
linkType: hard
"@jupyter/ydoc@npm:^3.0.0":
version: 3.0.0
resolution: "@jupyter/ydoc@npm:3.0.0"
dependencies:
"@jupyterlab/nbformat": ^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0
"@lumino/coreutils": ^1.11.0 || ^2.0.0
"@lumino/disposable": ^1.10.0 || ^2.0.0
"@lumino/signaling": ^1.10.0 || ^2.0.0
y-protocols: ^1.0.5
yjs: ^13.5.40
checksum: e9419a461f33d2685db346b19806865fe37f61b2ca33eb39c4ea905d765794a928442adf1bbffda67b665bdeba3be9a082189a57eaab5367aeaf6b57caeda822
languageName: node
linkType: hard
"@jupyterlab/application@npm:^4.0.0":
version: 4.3.0
resolution: "@jupyterlab/application@npm:4.3.0"
dependencies:
"@fortawesome/fontawesome-free": ^5.12.0
"@jupyterlab/apputils": ^4.4.0
"@jupyterlab/coreutils": ^6.3.0
"@jupyterlab/docregistry": ^4.3.0
"@jupyterlab/rendermime": ^4.3.0
"@jupyterlab/rendermime-interfaces": ^3.11.0
"@jupyterlab/services": ^7.3.0
"@jupyterlab/statedb": ^4.3.0
"@jupyterlab/translation": ^4.3.0
"@jupyterlab/ui-components": ^4.3.0
"@lumino/algorithm": ^2.0.2
"@lumino/application": ^2.4.1
"@lumino/commands": ^2.3.1
"@lumino/coreutils": ^2.2.0
"@lumino/disposable": ^2.1.3
"@lumino/messaging": ^2.0.2
"@lumino/polling": ^2.1.3
"@lumino/properties": ^2.0.2
"@lumino/signaling": ^2.1.3
"@lumino/widgets": ^2.5.0
checksum: 1c5b0dd78074f900bbf8132be07e290f5d4ccecab136ce499db11c2926d6e2755e73666ee3c5a3ce43153f697a0644fecf65d31394bc0f84a58e2a3e3df3512f
languageName: node
linkType: hard
"@jupyterlab/apputils@npm:^4.0.0, @jupyterlab/apputils@npm:^4.4.0":
version: 4.4.0
resolution: "@jupyterlab/apputils@npm:4.4.0"
dependencies:
"@jupyterlab/coreutils": ^6.3.0
"@jupyterlab/observables": ^5.3.0
"@jupyterlab/rendermime-interfaces": ^3.11.0
"@jupyterlab/services": ^7.3.0
"@jupyterlab/settingregistry": ^4.3.0
"@jupyterlab/statedb": ^4.3.0
"@jupyterlab/statusbar": ^4.3.0
"@jupyterlab/translation": ^4.3.0
"@jupyterlab/ui-components": ^4.3.0
"@lumino/algorithm": ^2.0.2
"@lumino/commands": ^2.3.1
"@lumino/coreutils": ^2.2.0
"@lumino/disposable": ^2.1.3
"@lumino/domutils": ^2.0.2
"@lumino/messaging": ^2.0.2
"@lumino/signaling": ^2.1.3
"@lumino/virtualdom": ^2.0.2
"@lumino/widgets": ^2.5.0
"@types/react": ^18.0.26
react: ^18.2.0
sanitize-html: ~2.12.1
checksum: d4064ab3eb7583dd176c77b15f0619aeb4249ebf4a6d7088f473658ea876414625232955885cfe98668a75228c151ce112a7474b4e87e52732ebae93713f5d4f
languageName: node
linkType: hard
"@jupyterlab/builder@npm:^4.0.0":
version: 4.3.0
resolution: "@jupyterlab/builder@npm:4.3.0"
dependencies:
"@lumino/algorithm": ^2.0.2
"@lumino/application": ^2.4.1
"@lumino/commands": ^2.3.1
"@lumino/coreutils": ^2.2.0
"@lumino/disposable": ^2.1.3
"@lumino/domutils": ^2.0.2
"@lumino/dragdrop": ^2.1.5
"@lumino/messaging": ^2.0.2
"@lumino/properties": ^2.0.2
"@lumino/signaling": ^2.1.3
"@lumino/virtualdom": ^2.0.2
"@lumino/widgets": ^2.5.0
ajv: ^8.12.0
commander: ^9.4.1
css-loader: ^6.7.1
duplicate-package-checker-webpack-plugin: ^3.0.0
fs-extra: ^10.1.0
glob: ~7.1.6
license-webpack-plugin: ^2.3.14
mini-css-extract-plugin: ^2.7.0
mini-svg-data-uri: ^1.4.4
path-browserify: ^1.0.0
process: ^0.11.10
source-map-loader: ~1.0.2
style-loader: ~3.3.1
supports-color: ^7.2.0
terser-webpack-plugin: ^5.3.7
webpack: ^5.76.1
webpack-cli: ^5.0.1
webpack-merge: ^5.8.0
worker-loader: ^3.0.2
bin:
build-labextension: lib/build-labextension.js
checksum: d9d7f6ca21f465f632361b1afdff11ea5ce32f17a118df6904dd7cacdc8523e5055c34a45cec6888e07a5a57fec53702e7e84a96668126c1cb7fa2e2390ca3d4
languageName: node
linkType: hard
"@jupyterlab/codeeditor@npm:^4.3.0":
version: 4.3.0
resolution: "@jupyterlab/codeeditor@npm:4.3.0"
dependencies:
"@codemirror/state": ^6.4.1
"@jupyter/ydoc": ^3.0.0
"@jupyterlab/apputils": ^4.4.0
"@jupyterlab/coreutils": ^6.3.0
"@jupyterlab/nbformat": ^4.3.0
"@jupyterlab/observables": ^5.3.0
"@jupyterlab/statusbar": ^4.3.0
"@jupyterlab/translation": ^4.3.0
"@jupyterlab/ui-components": ^4.3.0
"@lumino/coreutils": ^2.2.0
"@lumino/disposable": ^2.1.3
"@lumino/dragdrop": ^2.1.5
"@lumino/messaging": ^2.0.2
"@lumino/signaling": ^2.1.3
"@lumino/widgets": ^2.5.0
react: ^18.2.0
checksum: 86e1f252ce4d810935a9c3d1e22a74af62547331aa8bf0d973002382517409a1370d2f313f3f59648d816e23f46731ee05bda9e4895e6a4057496a9c70be8de4
languageName: node
linkType: hard
"@jupyterlab/coreutils@npm:^6.3.0":
version: 6.3.0
resolution: "@jupyterlab/coreutils@npm:6.3.0"
dependencies:
"@lumino/coreutils": ^2.2.0
"@lumino/disposable": ^2.1.3
"@lumino/signaling": ^2.1.3
minimist: ~1.2.0
path-browserify: ^1.0.0
url-parse: ~1.5.4
checksum: 9e235685a1a5839a26a4fe44547be6bd1f0788809bd423c6d0d1a2ee09e24885246f5f7085d48db47245f52d138a7352f796c10813efebd70e38e6af11186122
languageName: node
linkType: hard
"@jupyterlab/docregistry@npm:^4.3.0":
version: 4.3.0
resolution: "@jupyterlab/docregistry@npm:4.3.0"
dependencies:
"@jupyter/ydoc": ^3.0.0
"@jupyterlab/apputils": ^4.4.0
"@jupyterlab/codeeditor": ^4.3.0
"@jupyterlab/coreutils": ^6.3.0
"@jupyterlab/observables": ^5.3.0
"@jupyterlab/rendermime": ^4.3.0
"@jupyterlab/rendermime-interfaces": ^3.11.0
"@jupyterlab/services": ^7.3.0
"@jupyterlab/translation": ^4.3.0
"@jupyterlab/ui-components": ^4.3.0
"@lumino/algorithm": ^2.0.2
"@lumino/coreutils": ^2.2.0
"@lumino/disposable": ^2.1.3
"@lumino/messaging": ^2.0.2
"@lumino/properties": ^2.0.2
"@lumino/signaling": ^2.1.3
"@lumino/widgets": ^2.5.0
react: ^18.2.0
checksum: 37a0c05025a484049fa15013ffd17fe801768cbb80bac5f2152613511da0d7e7980876e7d677caef392d016967c2f119757e0b9362d178e18a9440a4210586fd
languageName: node
linkType: hard
"@jupyterlab/nbformat@npm:^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0, @jupyterlab/nbformat@npm:^4.3.0":
version: 4.3.0
resolution: "@jupyterlab/nbformat@npm:4.3.0"
dependencies:
"@lumino/coreutils": ^2.2.0
checksum: 52e23a2568bf01741196321a5960c13b86ab55318a2e3a3ebde71fc1b89347279acd342a4cddf6ab8b47a4cc3cdd8fe03f206f68115a9d6ac433b0b0582c13ed
languageName: node
linkType: hard
"@jupyterlab/observables@npm:^5.3.0":
version: 5.3.0
resolution: "@jupyterlab/observables@npm:5.3.0"
dependencies:
"@lumino/algorithm": ^2.0.2
"@lumino/coreutils": ^2.2.0
"@lumino/disposable": ^2.1.3
"@lumino/messaging": ^2.0.2
"@lumino/signaling": ^2.1.3
checksum: 8d1c5e6eebeebe8fe45098531c9be9b3f0f0f3ec153203746fba233fe74db028f93261f11e0897a020ac0ae6872e7c3e03c4365678663bbbe4f0125b89174f37
languageName: node
linkType: hard
"@jupyterlab/rendermime-interfaces@npm:^3.11.0":
version: 3.11.0
resolution: "@jupyterlab/rendermime-interfaces@npm:3.11.0"
dependencies:
"@lumino/coreutils": ^1.11.0 || ^2.2.0
"@lumino/widgets": ^1.37.2 || ^2.5.0
checksum: ef31fb5b621a83c5080e68cbd12c086bc7f9dc21c84e04f38808e9f5da079367d3c75ab7af09d2a3afc9e588511f905c77ac50b8e2cbd98d0c3b3e748716d7f7
languageName: node
linkType: hard
"@jupyterlab/rendermime@npm:^4.3.0":
version: 4.3.0
resolution: "@jupyterlab/rendermime@npm:4.3.0"
dependencies:
"@jupyterlab/apputils": ^4.4.0
"@jupyterlab/coreutils": ^6.3.0
"@jupyterlab/nbformat": ^4.3.0
"@jupyterlab/observables": ^5.3.0
"@jupyterlab/rendermime-interfaces": ^3.11.0
"@jupyterlab/services": ^7.3.0
"@jupyterlab/translation": ^4.3.0
"@lumino/coreutils": ^2.2.0
"@lumino/messaging": ^2.0.2
"@lumino/signaling": ^2.1.3
"@lumino/widgets": ^2.5.0
lodash.escape: ^4.0.1
checksum: 84237267b19fbc18e3a6f3797d291de5b16b44583e3cbda282dbd6990612b5d64150a3b1ac6ad77092c9294b866d47a4f1972fe54617c8adeaadb7e0662d691f
languageName: node
linkType: hard
"@jupyterlab/services@npm:^6.0.0 || ^7.0.0, @jupyterlab/services@npm:^7.3.0":
version: 7.3.0
resolution: "@jupyterlab/services@npm:7.3.0"
dependencies:
"@jupyter/ydoc": ^3.0.0
"@jupyterlab/coreutils": ^6.3.0
"@jupyterlab/nbformat": ^4.3.0
"@jupyterlab/settingregistry": ^4.3.0
"@jupyterlab/statedb": ^4.3.0
"@lumino/coreutils": ^2.2.0
"@lumino/disposable": ^2.1.3
"@lumino/polling": ^2.1.3
"@lumino/properties": ^2.0.2
"@lumino/signaling": ^2.1.3
ws: ^8.11.0
checksum: 949a7452f7fdbc97efc63452db26b5f906595e40b1f6b7164e4e8f5fb8136f47fee703c7c9ef75313b6863552e68ce67d51bddd57b8ff6e9712a1a1e62724fe1
languageName: node
linkType: hard
"@jupyterlab/settingregistry@npm:^4.3.0":
version: 4.3.0
resolution: "@jupyterlab/settingregistry@npm:4.3.0"
dependencies:
"@jupyterlab/nbformat": ^4.3.0
"@jupyterlab/statedb": ^4.3.0
"@lumino/commands": ^2.3.1
"@lumino/coreutils": ^2.2.0
"@lumino/disposable": ^2.1.3
"@lumino/signaling": ^2.1.3
"@rjsf/utils": ^5.13.4
ajv: ^8.12.0
json5: ^2.2.3
peerDependencies:
react: ">=16"
checksum: 6a0c47b3be2188e487ec74c3ccd9e199c99a72533367b727a913d45d7096dbbb2757a63e55e5d4a9be51fbd274fe6f5f42ee1a6f021fd6a782885d6d58a3f957
languageName: node
linkType: hard
"@jupyterlab/statedb@npm:^4.3.0":
version: 4.3.0
resolution: "@jupyterlab/statedb@npm:4.3.0"
dependencies:
"@lumino/commands": ^2.3.1
"@lumino/coreutils": ^2.2.0
"@lumino/disposable": ^2.1.3
"@lumino/properties": ^2.0.2
"@lumino/signaling": ^2.1.3
checksum: 68e1a8bffe41a236d34cb8135e0ebf906e1d087ff71d2f1e135c7cd369c7b5e2e675765d5a0627a2487a831141cb06a9ce880609ec9988b0f7e5a0156f4212f3
languageName: node
linkType: hard
"@jupyterlab/statusbar@npm:^4.3.0":
version: 4.3.0
resolution: "@jupyterlab/statusbar@npm:4.3.0"
dependencies:
"@jupyterlab/ui-components": ^4.3.0
"@lumino/algorithm": ^2.0.2
"@lumino/coreutils": ^2.2.0
"@lumino/disposable": ^2.1.3
"@lumino/messaging": ^2.0.2
"@lumino/signaling": ^2.1.3
"@lumino/widgets": ^2.5.0
react: ^18.2.0
checksum: f849b903043056a4eda3f9c6900e598c0bd9b8b30cc7632996ede6104421d49bf10d3421a654c1afe008388b3c58a5dda33e7120ed0483c4fef7d0523153ffff
languageName: node
linkType: hard
"@jupyterlab/translation@npm:^4.3.0":
version: 4.3.0
resolution: "@jupyterlab/translation@npm:4.3.0"
dependencies:
"@jupyterlab/coreutils": ^6.3.0
"@jupyterlab/rendermime-interfaces": ^3.11.0
"@jupyterlab/services": ^7.3.0
"@jupyterlab/statedb": ^4.3.0
"@lumino/coreutils": ^2.2.0
checksum: bcd466cdb5a52e0a57f5274bb440098f6fc49c784212654e2bf2e09acd1119538b5e5737fb841496056fa85ca8c49d73a769d598f1f67a1b1235852dbb31766c
languageName: node
linkType: hard
"@jupyterlab/ui-components@npm:^4.3.0":
version: 4.3.0
resolution: "@jupyterlab/ui-components@npm:4.3.0"
dependencies:
"@jupyter/react-components": ^0.16.6
"@jupyter/web-components": ^0.16.6
"@jupyterlab/coreutils": ^6.3.0
"@jupyterlab/observables": ^5.3.0
"@jupyterlab/rendermime-interfaces": ^3.11.0
"@jupyterlab/translation": ^4.3.0
"@lumino/algorithm": ^2.0.2
"@lumino/commands": ^2.3.1
"@lumino/coreutils": ^2.2.0
"@lumino/disposable": ^2.1.3
"@lumino/messaging": ^2.0.2
"@lumino/polling": ^2.1.3
"@lumino/properties": ^2.0.2
"@lumino/signaling": ^2.1.3
"@lumino/virtualdom": ^2.0.2
"@lumino/widgets": ^2.5.0
"@rjsf/core": ^5.13.4
"@rjsf/utils": ^5.13.4
react: ^18.2.0
react-dom: ^18.2.0
typestyle: ^2.0.4
peerDependencies:
react: ^18.2.0
checksum: e1efefd65fb19aa103897d25d5b898972df52c81857136ecb3dd5b5d49a671076161079fe293ae0d55ed7cfef11c670f549beaf54d88877ff0cf806d0d568041
languageName: node
linkType: hard
"@lumino/algorithm@npm:^1.9.2":
version: 1.9.2
resolution: "@lumino/algorithm@npm:1.9.2"
checksum: a89e7c63504236119634858e271db1cc649684d30ced5a6ebe2788af7c0837f1e05a6fd3047d8525eb756c42ce137f76b3688f75fd3ef915b71cd4f213dfbb96
languageName: node
linkType: hard
"@lumino/algorithm@npm:^2.0.2":
version: 2.0.2
resolution: "@lumino/algorithm@npm:2.0.2"
checksum: 34b25684b845f1bdbf78ca45ebd99a97b67b2992440c9643aafe5fc5a99fae1ddafa9e5890b246b233dc3a12d9f66aa84afe4a2aac44cf31071348ed217740db
languageName: node
linkType: hard
"@lumino/application@npm:^2.4.1":
version: 2.4.1
resolution: "@lumino/application@npm:2.4.1"
dependencies:
"@lumino/commands": ^2.3.1
"@lumino/coreutils": ^2.2.0
"@lumino/widgets": ^2.5.0
checksum: b7166d1bf4f0e3cc945d984b4057a4cd106d38df6cb4c6f1259c75484e2b976018aca55f169fa4af7dd174ce7117be1920966bef0fb7cba756f503f0df1d211e
languageName: node
linkType: hard
"@lumino/collections@npm:^1.9.3":
version: 1.9.3
resolution: "@lumino/collections@npm:1.9.3"
dependencies:
"@lumino/algorithm": ^1.9.2
checksum: 1c87a12743eddd6f6b593e47945a5645e2f99ad61c5192499b0745e48ee9aff263c7145541e77dfeea4c9f50bdd017fddfa47bfc60e718de4f28533ce45bf8c3
languageName: node
linkType: hard
"@lumino/collections@npm:^2.0.2":
version: 2.0.2
resolution: "@lumino/collections@npm:2.0.2"
dependencies:
"@lumino/algorithm": ^2.0.2
checksum: e8bb2068a3741940e0dd396fa729c3c9d12458b41b7c2a9d171c5c034e69fb5834116a824094a8aa4182397e13abace06025ed5032a755ea85b976eae74ee9a9
languageName: node
linkType: hard
"@lumino/commands@npm:^2.3.1":
version: 2.3.1
resolution: "@lumino/commands@npm:2.3.1"
dependencies:
"@lumino/algorithm": ^2.0.2
"@lumino/coreutils": ^2.2.0
"@lumino/disposable": ^2.1.3
"@lumino/domutils": ^2.0.2
"@lumino/keyboard": ^2.0.2
"@lumino/signaling": ^2.1.3
"@lumino/virtualdom": ^2.0.2
checksum: 83bc6d66de37e58582b00f70ce66e797c9fcf84e36041c6881631ed0d281305e2a49927f5b2fe6c5c965733f3cd6fb4a233c7b7967fc050497024a941659bd65
languageName: node
linkType: hard
"@lumino/coreutils@npm:^1.11.0 || ^2.0.0, @lumino/coreutils@npm:^1.11.0 || ^2.2.0, @lumino/coreutils@npm:^1.11.1 || ^2.1, @lumino/coreutils@npm:^2.2.0":
version: 2.2.0
resolution: "@lumino/coreutils@npm:2.2.0"
dependencies:
"@lumino/algorithm": ^2.0.2
checksum: 345fcd5d7493d745831dd944edfbd8eda06cc59a117e71023fc97ce53badd697be2bd51671f071f5ff0064f75f104575d9695f116a07517bafbedd38e5c7a785
languageName: node
linkType: hard
"@lumino/disposable@npm:^1.10.0 || ^2.0.0, @lumino/disposable@npm:^2.1.3":
version: 2.1.3
resolution: "@lumino/disposable@npm:2.1.3"
dependencies:
"@lumino/signaling": ^2.1.3
checksum: b9a346fa2752b3cd1b053cb637ee173501d33082a73423429070e8acc508b034ea0babdae0549b923cbdd287ee1fc7f6159f0539c9fff7574393a214eef07c57
languageName: node
linkType: hard
"@lumino/domutils@npm:^2.0.2":
version: 2.0.2
resolution: "@lumino/domutils@npm:2.0.2"
checksum: 037b8d0b62af43887fd7edd506fa551e2af104a4b46d62e6fef256e16754dba40d351513beb5083834d468b2c7806aae0fe205fd6aac8ef24759451ee998bbd9
languageName: node
linkType: hard
"@lumino/dragdrop@npm:^2.1.5":
version: 2.1.5
resolution: "@lumino/dragdrop@npm:2.1.5"
dependencies:
"@lumino/coreutils": ^2.2.0
"@lumino/disposable": ^2.1.3
checksum: 48e34bea73186dcde4565fa68cd25067b7f5fe910813d28da9ab3c5392bfaa0b26aab1290635dc953d85bbb139da7ac1ffc040a5d5777d58fd087975dd4b5ef7
languageName: node
linkType: hard
"@lumino/keyboard@npm:^2.0.2":
version: 2.0.2
resolution: "@lumino/keyboard@npm:2.0.2"
checksum: 198e8c17825c9a831fa0770f58a71574b936acb0f0bbbe7f8feb73d89686dda7ff41fcb02d12b401f5d462b45fe0bba24f7f38befb7cefe0826576559f0bee6d
languageName: node
linkType: hard
"@lumino/messaging@npm:^1.10.1 || ^2.1":
version: 1.10.3
resolution: "@lumino/messaging@npm:1.10.3"
dependencies:
"@lumino/algorithm": ^1.9.2
"@lumino/collections": ^1.9.3
checksum: 1131e80379fa9b8a9b5d3418c90e25d4be48e2c92ec711518190772f9e8845a695bef45daddd06a129168cf6f158c8ad80ae86cb245f566e9195bbd9a0843b7a
languageName: node
linkType: hard
"@lumino/messaging@npm:^2.0.2":
version: 2.0.2
resolution: "@lumino/messaging@npm:2.0.2"
dependencies:
"@lumino/algorithm": ^2.0.2
"@lumino/collections": ^2.0.2
checksum: 66abd8c473026123589dc22f2ce8f85da10e0b1a05c05ed9b2011035721da5f751cc7ef63b628877f446a78a4287e26ad1450efbeaf0c2e03b1d08be9abaca4d
languageName: node
linkType: hard
"@lumino/polling@npm:^2.1.3":
version: 2.1.3
resolution: "@lumino/polling@npm:2.1.3"
dependencies:
"@lumino/coreutils": ^2.2.0
"@lumino/disposable": ^2.1.3
"@lumino/signaling": ^2.1.3
checksum: 2c94dbc2339dd06b3b89a3a690d23576ce095f92bf1f614557dcaeb1c1a8a707b2a18d78c03e5fd7376a43e3f393cc4fec42a65580ae4b67c6630ea86cecbac6
languageName: node
linkType: hard
"@lumino/properties@npm:^2.0.2":
version: 2.0.2
resolution: "@lumino/properties@npm:2.0.2"
checksum: cbe802bd49ced7e13e50b1d89b82e0f03fb44a590c704e6b9343226498b21d8abfe119b024209e79876b4fc0938dbf85e964c6c4cd5bbdd4d7ba41ce0fb69f3f
languageName: node
linkType: hard
"@lumino/signaling@npm:^1.10.0 || ^2.0.0, @lumino/signaling@npm:^2.1.3":
version: 2.1.3
resolution: "@lumino/signaling@npm:2.1.3"
dependencies:
"@lumino/algorithm": ^2.0.2
"@lumino/coreutils": ^2.2.0
checksum: ce59383bd75fe30df5800e0442dbc4193cc6778e2530b9be0f484d159f1d8668be5c6ee92cee9df36d5a0c3dbd9126d0479a82581dee1df889d5c9f922d3328d
languageName: node
linkType: hard
"@lumino/virtualdom@npm:^2.0.2":
version: 2.0.2
resolution: "@lumino/virtualdom@npm:2.0.2"
dependencies:
"@lumino/algorithm": ^2.0.2
checksum: 0e1220d5b3b2441e7668f3542a6341e015bdbea0c8bd6d4be962009386c034336540732596d5dedcd54ca57fbde61c2942549129a3e1b0fccb1aa143685fcd15
languageName: node
linkType: hard
"@lumino/widgets@npm:^1.30.0 || ^2.1, @lumino/widgets@npm:^1.37.2 || ^2.5.0, @lumino/widgets@npm:^2.5.0":
version: 2.5.0
resolution: "@lumino/widgets@npm:2.5.0"
dependencies:
"@lumino/algorithm": ^2.0.2
"@lumino/commands": ^2.3.1
"@lumino/coreutils": ^2.2.0
"@lumino/disposable": ^2.1.3
"@lumino/domutils": ^2.0.2
"@lumino/dragdrop": ^2.1.5
"@lumino/keyboard": ^2.0.2
"@lumino/messaging": ^2.0.2
"@lumino/properties": ^2.0.2
"@lumino/signaling": ^2.1.3
"@lumino/virtualdom": ^2.0.2
checksum: c5055e42b0b7d5d9a0c29d14c7053478cbdef057525e262ccd59c987971364d5462ed1a59d5008b889cf5ecc6810e90c681364239500b9c8ee0ae4624d60df84
languageName: node
linkType: hard