-
Notifications
You must be signed in to change notification settings - Fork 2
/
yarn.lock
5385 lines (4839 loc) · 190 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
"@aashutoshrathi/word-wrap@npm:^1.2.3":
version: 1.2.6
resolution: "@aashutoshrathi/word-wrap@npm:1.2.6"
checksum: ada901b9e7c680d190f1d012c84217ce0063d8f5c5a7725bb91ec3c5ed99bb7572680eb2d2938a531ccbaec39a95422fcd8a6b4a13110c7d98dd75402f66a0cd
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0":
version: 7.22.13
resolution: "@babel/code-frame@npm:7.22.13"
dependencies:
"@babel/highlight": "npm:^7.22.13"
chalk: "npm:^2.4.2"
checksum: 22e342c8077c8b77eeb11f554ecca2ba14153f707b85294fcf6070b6f6150aae88a7b7436dd88d8c9289970585f3fe5b9b941c5aa3aa26a6d5a8ef3f292da058
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: 136412784d9428266bcdd4d91c32bcf9ff0e8d25534a9d94b044f77fe76bc50f941a90319b05aafd1ec04f7d127cd57a179a3716009ff7f3412ef835ada95bdc
languageName: node
linkType: hard
"@babel/highlight@npm:^7.22.13":
version: 7.22.20
resolution: "@babel/highlight@npm:7.22.20"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.22.20"
chalk: "npm:^2.4.2"
js-tokens: "npm:^4.0.0"
checksum: 84bd034dca309a5e680083cd827a766780ca63cef37308404f17653d32366ea76262bd2364b2d38776232f2d01b649f26721417d507e8b4b6da3e4e739f6d134
languageName: node
linkType: hard
"@codemirror/state@npm:^6.2.0":
version: 6.2.1
resolution: "@codemirror/state@npm:6.2.1"
checksum: d12a321d0471b264b9d3259042bff913a8b939e8d28d408ff452004538a71ca9d5329df3f8a1d8a9183f5b42a7ef5b200737bcab1065714f5ae8e0a5ba9d59d3
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: 97c89f23b3b527d7bd51ed299969ed2b9fbb219a367948b44aefec228b8eda6ae0ad74fe8a82f9aac8ff32cfd00bb6d0c98d1daeab2e8fc6d5c4af25e5be5673
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
"@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: cdfe3ae42b4f572cbfb46d20edafe6f36fc5fb52bf2d90875c58aefe226892b9677fef60820e2832caf864a326fe4fc225714c46e8389ccca04d5f9288aabd22
languageName: node
linkType: hard
"@eslint-community/regexpp@npm:^4.4.0, @eslint-community/regexpp@npm:^4.6.1":
version: 4.8.1
resolution: "@eslint-community/regexpp@npm:4.8.1"
checksum: 82d62c845ef42b810f268cfdc84d803a2da01735fb52e902fd34bdc09f92464a094fd8e4802839874b000b2f73f67c972859e813ba705233515d3e954f234bf2
languageName: node
linkType: hard
"@eslint/eslintrc@npm:^2.1.2":
version: 2.1.2
resolution: "@eslint/eslintrc@npm:2.1.2"
dependencies:
ajv: "npm:^6.12.4"
debug: "npm:^4.3.2"
espree: "npm:^9.6.0"
globals: "npm:^13.19.0"
ignore: "npm:^5.2.0"
import-fresh: "npm:^3.2.1"
js-yaml: "npm:^4.1.0"
minimatch: "npm:^3.1.2"
strip-json-comments: "npm:^3.1.1"
checksum: bc742a1e3b361f06fedb4afb6bf32cbd27171292ef7924f61c62f2aed73048367bcc7ac68f98c06d4245cd3fabc43270f844e3c1699936d4734b3ac5398814a7
languageName: node
linkType: hard
"@eslint/js@npm:8.49.0":
version: 8.49.0
resolution: "@eslint/js@npm:8.49.0"
checksum: a6601807c8aeeefe866926ad92ed98007c034a735af20ff709009e39ad1337474243d47908500a3bde04e37bfba16bcf1d3452417f962e1345bc8756edd6b830
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.11.11":
version: 0.11.11
resolution: "@humanwhocodes/config-array@npm:0.11.11"
dependencies:
"@humanwhocodes/object-schema": "npm:^1.2.1"
debug: "npm:^4.1.1"
minimatch: "npm:^3.0.5"
checksum: db84507375ab77b8ffdd24f498a5b49ad6b64391d30dd2ac56885501d03964d29637e05b1ed5aefa09d57ac667e28028bc22d2da872bfcd619652fbdb5f4ca19
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:^1.2.1":
version: 1.2.1
resolution: "@humanwhocodes/object-schema@npm:1.2.1"
checksum: a824a1ec31591231e4bad5787641f59e9633827d0a2eaae131a288d33c9ef0290bd16fda8da6f7c0fcb014147865d12118df10db57f27f41e20da92369fcb3f1
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: 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: 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: 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: 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: b881c7e503db3fc7f3c1f35a1dd2655a188cc51a3612d76efc8a6eb74728bef5606e6758ee77423e564092b4a518aba569bbb21c9bac5ab7a35b0c6ae7e344c8
languageName: node
linkType: hard
"@jridgewell/trace-mapping@npm:^0.3.17, @jridgewell/trace-mapping@npm:^0.3.9":
version: 0.3.19
resolution: "@jridgewell/trace-mapping@npm:0.3.19"
dependencies:
"@jridgewell/resolve-uri": "npm:^3.1.0"
"@jridgewell/sourcemap-codec": "npm:^1.4.14"
checksum: 956a6f0f6fec060fb48c6bf1f5ec2064e13cd38c8be3873877d4b92b4a27ba58289a34071752671262a3e3c202abcc3fa2aac64d8447b4b0fa1ba3c9047f1c20
languageName: node
linkType: hard
"@jupyter/ydoc@npm:^1.0.2":
version: 1.1.0
resolution: "@jupyter/ydoc@npm:1.1.0"
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: 75530fa80ee157763d20c53251d3f28a8f19396145a7b59b003abd0ba4b040f977e259aaf61e220a2f74340902a0620f7a71f9ed09a165276e0178f4821fc821
languageName: node
linkType: hard
"@jupyterlab/application@npm:^4.0.0":
version: 4.0.6
resolution: "@jupyterlab/application@npm:4.0.6"
dependencies:
"@fortawesome/fontawesome-free": "npm:^5.12.0"
"@jupyterlab/apputils": "npm:^4.1.6"
"@jupyterlab/coreutils": "npm:^6.0.6"
"@jupyterlab/docregistry": "npm:^4.0.6"
"@jupyterlab/rendermime": "npm:^4.0.6"
"@jupyterlab/rendermime-interfaces": "npm:^3.8.6"
"@jupyterlab/services": "npm:^7.0.6"
"@jupyterlab/statedb": "npm:^4.0.6"
"@jupyterlab/translation": "npm:^4.0.6"
"@jupyterlab/ui-components": "npm:^4.0.6"
"@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: 1212b71d3717bc02543b3eee74e69be799634421bd9b291b7adf07ba27bf6f9c7db860c423c824eaced9c2524db2f6b58de2c58e7edd5de2f0d7fabbb2c94b8c
languageName: node
linkType: hard
"@jupyterlab/apputils@npm:^4.0.0, @jupyterlab/apputils@npm:^4.1.6":
version: 4.1.6
resolution: "@jupyterlab/apputils@npm:4.1.6"
dependencies:
"@jupyterlab/coreutils": "npm:^6.0.6"
"@jupyterlab/observables": "npm:^5.0.6"
"@jupyterlab/rendermime-interfaces": "npm:^3.8.6"
"@jupyterlab/services": "npm:^7.0.6"
"@jupyterlab/settingregistry": "npm:^4.0.6"
"@jupyterlab/statedb": "npm:^4.0.6"
"@jupyterlab/statusbar": "npm:^4.0.6"
"@jupyterlab/translation": "npm:^4.0.6"
"@jupyterlab/ui-components": "npm:^4.0.6"
"@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: 40fb43f5a6464c665f1b941d164f3366ab8ea906fed72894ccf026ebeebf0734409edb6546a151ac267cbd4f945e23474251aed644f7f0f0dbf2548b9230ae22
languageName: node
linkType: hard
"@jupyterlab/builder@npm:^4.0.0":
version: 4.0.6
resolution: "@jupyterlab/builder@npm:4.0.6"
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.3"
"@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: 8ee8db483e07bcc99c45133616a60f57eb2f323898217961cecf82ef875343879327ad7e74adaa860577742d946e8325f16dfcb54845930db41faa9f4bdad70c
languageName: node
linkType: hard
"@jupyterlab/codeeditor@npm:^4.0.6":
version: 4.0.6
resolution: "@jupyterlab/codeeditor@npm:4.0.6"
dependencies:
"@codemirror/state": "npm:^6.2.0"
"@jupyter/ydoc": "npm:^1.0.2"
"@jupyterlab/coreutils": "npm:^6.0.6"
"@jupyterlab/nbformat": "npm:^4.0.6"
"@jupyterlab/observables": "npm:^5.0.6"
"@jupyterlab/statusbar": "npm:^4.0.6"
"@jupyterlab/translation": "npm:^4.0.6"
"@jupyterlab/ui-components": "npm:^4.0.6"
"@lumino/coreutils": "npm:^2.1.2"
"@lumino/disposable": "npm:^2.1.2"
"@lumino/dragdrop": "npm:^2.1.3"
"@lumino/messaging": "npm:^2.0.1"
"@lumino/signaling": "npm:^2.1.2"
"@lumino/widgets": "npm:^2.3.0"
react: "npm:^18.2.0"
checksum: 831d330273280781dbdc223325d575ac373c0db17fab208f327bce4e1c2286c62f8264d1d612da1a762bc006cd81dfb0eb5108dd3bd8f8298f9be8ecac98b2ca
languageName: node
linkType: hard
"@jupyterlab/coreutils@npm:^6.0.0, @jupyterlab/coreutils@npm:^6.0.6":
version: 6.0.6
resolution: "@jupyterlab/coreutils@npm:6.0.6"
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: cf3cfbc7c48cae20549f5514a949b253c2f9d67c79db107ab0a81c2b7a9c08e28f9fd264e3d944a05a8cb1bbb9676c6b4163b75c28788d1cb3a3cc523d44d802
languageName: node
linkType: hard
"@jupyterlab/docmanager@npm:^4.0.0":
version: 4.0.6
resolution: "@jupyterlab/docmanager@npm:4.0.6"
dependencies:
"@jupyterlab/apputils": "npm:^4.1.6"
"@jupyterlab/coreutils": "npm:^6.0.6"
"@jupyterlab/docregistry": "npm:^4.0.6"
"@jupyterlab/services": "npm:^7.0.6"
"@jupyterlab/statusbar": "npm:^4.0.6"
"@jupyterlab/translation": "npm:^4.0.6"
"@jupyterlab/ui-components": "npm:^4.0.6"
"@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"
react: "npm:^18.2.0"
checksum: 25d3f694ae8664ca6c54bfcd36d8913caba9455fea68ed3df23963ce9723254c1f2c38fb6a93e267187f095392507d40cd2a4181c30173306c1c0b962e001b93
languageName: node
linkType: hard
"@jupyterlab/docregistry@npm:^4.0.6":
version: 4.0.6
resolution: "@jupyterlab/docregistry@npm:4.0.6"
dependencies:
"@jupyter/ydoc": "npm:^1.0.2"
"@jupyterlab/apputils": "npm:^4.1.6"
"@jupyterlab/codeeditor": "npm:^4.0.6"
"@jupyterlab/coreutils": "npm:^6.0.6"
"@jupyterlab/observables": "npm:^5.0.6"
"@jupyterlab/rendermime": "npm:^4.0.6"
"@jupyterlab/rendermime-interfaces": "npm:^3.8.6"
"@jupyterlab/services": "npm:^7.0.6"
"@jupyterlab/translation": "npm:^4.0.6"
"@jupyterlab/ui-components": "npm:^4.0.6"
"@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: 57de3751ea04037f27596ffe782392fb4840f3fba1776a64bb7b0dc5936a3cee4de115b2133147cda23a697d3da7802daaec0effae10be329d6c774f102091ee
languageName: node
linkType: hard
"@jupyterlab/launcher@npm:^4.0.0":
version: 4.0.6
resolution: "@jupyterlab/launcher@npm:4.0.6"
dependencies:
"@jupyterlab/apputils": "npm:^4.1.6"
"@jupyterlab/translation": "npm:^4.0.6"
"@jupyterlab/ui-components": "npm:^4.0.6"
"@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/properties": "npm:^2.0.1"
"@lumino/widgets": "npm:^2.3.0"
react: "npm:^18.2.0"
checksum: 3576c05a2e38c369e709644ba86c4cba5ee55e9ab4628630fcda4351ffc550040d58be55a37d6f7fbaaa31426d813329d9283dab440e74ea10cc86337d08569e
languageName: node
linkType: hard
"@jupyterlab/nbformat@npm:^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0, @jupyterlab/nbformat@npm:^4.0.6":
version: 4.0.6
resolution: "@jupyterlab/nbformat@npm:4.0.6"
dependencies:
"@lumino/coreutils": "npm:^2.1.2"
checksum: 43ace863be98a82875a55a947828b9b987cff35bb484e6cb6474c97f60aadbf31027c5f2fdf81b4ee2d108dc735b92c15c9b35cded765b0e476ebf0c8fd670f6
languageName: node
linkType: hard
"@jupyterlab/observables@npm:^5.0.6":
version: 5.0.6
resolution: "@jupyterlab/observables@npm:5.0.6"
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: 23232972e6a049b2addeae1d445bc3a10bb6c9a3dd4794225a0344aaa1ff62421ee300ef8803a19a3f068d2bba2de8b9a8dec719a7f47019fbd77c8d5dafb7a0
languageName: node
linkType: hard
"@jupyterlab/rendermime-interfaces@npm:^3.8.6":
version: 3.8.6
resolution: "@jupyterlab/rendermime-interfaces@npm:3.8.6"
dependencies:
"@lumino/coreutils": "npm:^1.11.0 || ^2.1.2"
"@lumino/widgets": "npm:^1.37.2 || ^2.3.0"
checksum: 84ba0c3979e6ace6246e00248d1248075afb112f55be202257bb89a553b235d36ca82879c56f46f58285a5fc6d39914e93fea203c53245e0ac8d1b5ef838bb50
languageName: node
linkType: hard
"@jupyterlab/rendermime@npm:^4.0.6":
version: 4.0.6
resolution: "@jupyterlab/rendermime@npm:4.0.6"
dependencies:
"@jupyterlab/apputils": "npm:^4.1.6"
"@jupyterlab/coreutils": "npm:^6.0.6"
"@jupyterlab/nbformat": "npm:^4.0.6"
"@jupyterlab/observables": "npm:^5.0.6"
"@jupyterlab/rendermime-interfaces": "npm:^3.8.6"
"@jupyterlab/services": "npm:^7.0.6"
"@jupyterlab/translation": "npm:^4.0.6"
"@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: 8f44601ccd6abe9985f8f713dcabf48ae38246b8b5a17a3963ebfe298dc2a03cc49d1f99c6d3bfeadbe1eb74803d0b3138c01347693a99166d7d70cb832c400b
languageName: node
linkType: hard
"@jupyterlab/services@npm:^7.0.0, @jupyterlab/services@npm:^7.0.6":
version: 7.0.6
resolution: "@jupyterlab/services@npm:7.0.6"
dependencies:
"@jupyter/ydoc": "npm:^1.0.2"
"@jupyterlab/coreutils": "npm:^6.0.6"
"@jupyterlab/nbformat": "npm:^4.0.6"
"@jupyterlab/settingregistry": "npm:^4.0.6"
"@jupyterlab/statedb": "npm:^4.0.6"
"@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: 6e12ef309559977209e61ce3ec8ca74aa486d54f50d8f38211b684055fb2335a21c2ae6e846d2863e48524bffd7d6ac4d36dfc9f7ca610ae4b1c60752fa6c3a8
languageName: node
linkType: hard
"@jupyterlab/settingregistry@npm:^4.0.6":
version: 4.0.6
resolution: "@jupyterlab/settingregistry@npm:4.0.6"
dependencies:
"@jupyterlab/nbformat": "npm:^4.0.6"
"@jupyterlab/statedb": "npm:^4.0.6"
"@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: 70b6fc44a25e0d4ec36501c1418fe2764b9a9415f892df0901c43480b608a1621141ec8045183dfbca5aedf11ebaf1518dd76e2e96373b9ebe0efa6586ce856d
languageName: node
linkType: hard
"@jupyterlab/statedb@npm:^4.0.6":
version: 4.0.6
resolution: "@jupyterlab/statedb@npm:4.0.6"
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: de507d094afcce7f7d12f9dc846788765616140b2f75ea22997f780056baaaadae0cf9683471a1d96c61d448b38860640c823302aeef0d5e5d7c9cf598074328
languageName: node
linkType: hard
"@jupyterlab/statusbar@npm:^4.0.6":
version: 4.0.6
resolution: "@jupyterlab/statusbar@npm:4.0.6"
dependencies:
"@jupyterlab/ui-components": "npm:^4.0.6"
"@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: c5d579b101e19670182d87de0d601fc9c73c40b5a81120e18e6cd7853ee9fd744fa31524f24b2c92cb587bb2d6aa54c08f6e257d868426a73d968e48b1101b7c
languageName: node
linkType: hard
"@jupyterlab/translation@npm:^4.0.6":
version: 4.0.6
resolution: "@jupyterlab/translation@npm:4.0.6"
dependencies:
"@jupyterlab/coreutils": "npm:^6.0.6"
"@jupyterlab/rendermime-interfaces": "npm:^3.8.6"
"@jupyterlab/services": "npm:^7.0.6"
"@jupyterlab/statedb": "npm:^4.0.6"
"@lumino/coreutils": "npm:^2.1.2"
checksum: 490243a26898bbdcc1909e8e1649be90580c6d4502417590fd1b3ca24db5aeff2323e567dbfb1d528c56df89ed2e7717753ece784134f9e409d14df92bf25682
languageName: node
linkType: hard
"@jupyterlab/ui-components@npm:^4.0.6":
version: 4.0.6
resolution: "@jupyterlab/ui-components@npm:4.0.6"
dependencies:
"@jupyterlab/coreutils": "npm:^6.0.6"
"@jupyterlab/observables": "npm:^5.0.6"
"@jupyterlab/rendermime-interfaces": "npm:^3.8.6"
"@jupyterlab/translation": "npm:^4.0.6"
"@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: 02997c3c35c15c0eda6a0d49fe9cfd12a3c5194c026b2ae8d8e53c7af80b769ba1598e7c24283450bacae7b8fab838d18f6c614d686c98d3d43e68f1f00b2528
languageName: node
linkType: hard
"@lumino/algorithm@npm:^2.0.1":
version: 2.0.1
resolution: "@lumino/algorithm@npm:2.0.1"
checksum: cbf7fcf6ee6b785ea502cdfddc53d61f9d353dcb9659343511d5cd4b4030be2ff2ca4c08daec42f84417ab0318a3d9972a17319fa5231693e109ab112dcf8000
languageName: node
linkType: hard
"@lumino/application@npm:^2.2.1":
version: 2.2.1
resolution: "@lumino/application@npm:2.2.1"
dependencies:
"@lumino/commands": "npm:^2.1.3"
"@lumino/coreutils": "npm:^2.1.2"
"@lumino/widgets": "npm:^2.3.0"
checksum: a33e661703728440bc7d2ddb4674261f4de0d20eb8c9846646cbd6debac03b5c65e78d739a500903550fd83b8f47b47fa82ec178c97bc9967ca3ac4014075cde
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: 8a29b7973a388a33c5beda0819dcd2dc2aad51a8406dcfd4581b055a9f77a39dc5800f7a8b4ae3c0bb97ae7b56a7a869e2560ffb7a920a28e93b477ba05907d6
languageName: node
linkType: hard
"@lumino/commands@npm:^2.1.3":
version: 2.1.3
resolution: "@lumino/commands@npm:2.1.3"
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: e4e3ee279f2a5e8d68e4ce142c880333f5542f90c684972402356936ecb5cf5e07163800b59e7cb8c911cbdb4e5089edcc5dd2990bc8db10c87517268de1fc5d
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: 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: ac2fb2bf18d0b2939fda454f3db248a0ff6e8a77b401e586d1caa9293b3318f808b93a117c9c3ac27cd17aab545aea83b49108d099b9b2f5503ae2a012fbc6e2
languageName: node
linkType: hard
"@lumino/domutils@npm:^2.0.1":
version: 2.0.1
resolution: "@lumino/domutils@npm:2.0.1"
checksum: 61fa0ab226869dfbb763fc426790cf5a43b7d6f4cea1364c6dd56d61c44bff05eea188d33ff847449608ef58ed343161bee15c19b96f35410e4ee35815dc611a
languageName: node
linkType: hard
"@lumino/dragdrop@npm:^2.1.3":
version: 2.1.3
resolution: "@lumino/dragdrop@npm:2.1.3"
dependencies:
"@lumino/coreutils": "npm:^2.1.2"
"@lumino/disposable": "npm:^2.1.2"
checksum: d5f7eb4cc9f9a084cb9af10f02d6741b25d683350878ecbc324e24ba9d4b5246451a410e2ca5fff227aab1c191d1e73a2faf431f93e13111d67a4e426e126258
languageName: node
linkType: hard
"@lumino/keyboard@npm:^2.0.1":
version: 2.0.1
resolution: "@lumino/keyboard@npm:2.0.1"
checksum: 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: 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: fa9b401e6dbeb8f31d7e3ba485e8ef1e0c92b3f2da086239c0ed49931026f5d3528709193c93e031e35ac624fb4bbbfcdcbaa0e25eb797f36e2952e5cd91e9e3
languageName: node
linkType: hard
"@lumino/properties@npm:^2.0.1":
version: 2.0.1
resolution: "@lumino/properties@npm:2.0.1"
checksum: 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: 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: cf59b6f15b430e13e9e657b7a0619b9056cd9ea7b2a87f407391d071c501b77403c302b6a66dca510382045e75b2e3fe551630bb391f1c6b33678057d4bec164
languageName: node
linkType: hard
"@lumino/widgets@npm:^1.37.2 || ^2.3.0, @lumino/widgets@npm:^2.3.0":
version: 2.3.0
resolution: "@lumino/widgets@npm:2.3.0"
dependencies:
"@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/dragdrop": "npm:^2.1.3"
"@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: a8559bd3574b7fc16e7679e05994c515b0d3e78dada35786d161f67c639941d134e92ce31d95c2e4ac06709cdf83b0e7fb4b6414a3f7779579222a2fb525d025
languageName: node
linkType: hard
"@nodelib/fs.scandir@npm:2.1.5":
version: 2.1.5
resolution: "@nodelib/fs.scandir@npm:2.1.5"
dependencies:
"@nodelib/fs.stat": "npm:2.0.5"
run-parallel: "npm:^1.1.9"
checksum: a970d595bd23c66c880e0ef1817791432dbb7acbb8d44b7e7d0e7a22f4521260d4a83f7f9fd61d44fda4610105577f8f58a60718105fb38352baed612fd79e59
languageName: node
linkType: hard
"@nodelib/fs.stat@npm:2.0.5, @nodelib/fs.stat@npm:^2.0.2":
version: 2.0.5
resolution: "@nodelib/fs.stat@npm:2.0.5"
checksum: 012480b5ca9d97bff9261571dbbec7bbc6033f69cc92908bc1ecfad0792361a5a1994bc48674b9ef76419d056a03efadfce5a6cf6dbc0a36559571a7a483f6f0
languageName: node
linkType: hard
"@nodelib/fs.walk@npm:^1.2.3, @nodelib/fs.walk@npm:^1.2.8":
version: 1.2.8
resolution: "@nodelib/fs.walk@npm:1.2.8"
dependencies:
"@nodelib/fs.scandir": "npm:2.1.5"
fastq: "npm:^1.6.0"
checksum: 190c643f156d8f8f277bf2a6078af1ffde1fd43f498f187c2db24d35b4b4b5785c02c7dc52e356497b9a1b65b13edc996de08de0b961c32844364da02986dc53
languageName: node
linkType: hard
"@rjsf/core@npm:^5.1.0":
version: 5.13.0
resolution: "@rjsf/core@npm:5.13.0"
dependencies:
lodash: "npm:^4.17.21"
lodash-es: "npm:^4.17.21"
markdown-to-jsx: "npm:^7.3.2"
nanoid: "npm:^3.3.6"
prop-types: "npm:^15.8.1"
peerDependencies:
"@rjsf/utils": ^5.12.x
react: ^16.14.0 || >=17
checksum: d7d66d20fcdf310f4b152c22e1ac1ca8abe5f40b502711c9cabc4241b3252ec0e58345aa194529d2bdfb7a51b9f1179c9ddefc0cdc7fd9f94ad10c5e5b1032b8
languageName: node
linkType: hard
"@rjsf/utils@npm:^5.1.0":
version: 5.13.0
resolution: "@rjsf/utils@npm:5.13.0"
dependencies:
json-schema-merge-allof: "npm:^0.8.1"
jsonpointer: "npm:^5.0.1"
lodash: "npm:^4.17.21"
lodash-es: "npm:^4.17.21"
react-is: "npm:^18.2.0"
peerDependencies:
react: ^16.14.0 || >=17
checksum: 283e2b405eac2f4fdd243b2e35ade7e83a4bf7551eb5e075499e8eb5d3a3ae161e9c047bcf63d2e6fef7c6b2e7438f1a150f353b909df992e85194940c311f9b
languageName: node
linkType: hard
"@types/eslint-scope@npm:^3.7.3":
version: 3.7.4
resolution: "@types/eslint-scope@npm:3.7.4"
dependencies:
"@types/eslint": "npm:*"
"@types/estree": "npm:*"
checksum: ea6a9363e92f301cd3888194469f9ec9d0021fe0a397a97a6dd689e7545c75de0bd2153dfb13d3ab532853a278b6572c6f678ce846980669e41029d205653460
languageName: node
linkType: hard
"@types/eslint@npm:*":
version: 8.44.2
resolution: "@types/eslint@npm:8.44.2"
dependencies:
"@types/estree": "npm:*"
"@types/json-schema": "npm:*"
checksum: 25b3ef61bae96350026593c9914c8a61ee02fde48ab8d568a73ee45032f13c0028c62e47a5ff78715af488dfe8e8bba913f7d30f859f60c7f9e639d328e80482
languageName: node
linkType: hard
"@types/estree@npm:*, @types/estree@npm:^1.0.0":
version: 1.0.1
resolution: "@types/estree@npm:1.0.1"
checksum: e9aa175eacb797216fafce4d41e8202c7a75555bc55232dee0f9903d7171f8f19f0ae7d5191bb1a88cb90e65468be508c0df850a9fb81b4433b293a5a749899d
languageName: node
linkType: hard
"@types/json-schema@npm:*, @types/json-schema@npm:^7.0.11, @types/json-schema@npm:^7.0.5, @types/json-schema@npm:^7.0.8, @types/json-schema@npm:^7.0.9":
version: 7.0.13
resolution: "@types/json-schema@npm:7.0.13"
checksum: 345df21a678fa72fb389f35f33de77833d09d4a142bb2bcb27c18690efa4cf70fc2876e43843cefb3fbdb9fcb12cd3e970a90936df30f53bbee899865ff605ab
languageName: node
linkType: hard
"@types/minimist@npm:^1.2.0":
version: 1.2.2
resolution: "@types/minimist@npm:1.2.2"
checksum: b8da83c66eb4aac0440e64674b19564d9d86c80ae273144db9681e5eeff66f238ade9515f5006ffbfa955ceff8b89ad2bd8ec577d7caee74ba101431fb07045d
languageName: node
linkType: hard
"@types/node@npm:*":
version: 20.6.3
resolution: "@types/node@npm:20.6.3"
checksum: 444a6f1f41cfa8d3e20ce0108e6e43960fb2ae0e481f233bb1c14d6252aa63a92e021de561cd317d9fdb411688f871065f40175a1f18763282dee2613a08f8a3
languageName: node
linkType: hard
"@types/normalize-package-data@npm:^2.4.0":
version: 2.4.1
resolution: "@types/normalize-package-data@npm:2.4.1"
checksum: e87bccbf11f95035c89a132b52b79ce69a1e3652fe55962363063c9c0dae0fe2477ebc585e03a9652adc6f381d24ba5589cc5e51849df4ced3d3e004a7d40ed5
languageName: node
linkType: hard
"@types/parse-json@npm:^4.0.0":
version: 4.0.0
resolution: "@types/parse-json@npm:4.0.0"
checksum: fd6bce2b674b6efc3db4c7c3d336bd70c90838e8439de639b909ce22f3720d21344f52427f1d9e57b265fcb7f6c018699b99e5e0c208a1a4823014269a6bf35b
languageName: node
linkType: hard
"@types/prop-types@npm:*":
version: 15.7.6
resolution: "@types/prop-types@npm:15.7.6"
checksum: 5f2796c7330461a556c4d18035fb914b372f96b1619a4f8302d07e1ea708e06a2dbe666dfcd8ff03f64c625aa4c12b31f677d0298a32910f5ab7ee51521d8086
languageName: node
linkType: hard
"@types/react@npm:^18.0.26":
version: 18.2.22
resolution: "@types/react@npm:18.2.22"
dependencies:
"@types/prop-types": "npm:*"
"@types/scheduler": "npm:*"
csstype: "npm:^3.0.2"
checksum: 44289523dabaadcd3fd85689abb98f9ebcc8492d7e978348d1c986138acef4801030b279e89a19e38a6319e294bcea77559e37e0c803e4bacf2b8ae3a56ba587
languageName: node
linkType: hard
"@types/scheduler@npm:*":
version: 0.16.3
resolution: "@types/scheduler@npm:0.16.3"
checksum: 2b0aec39c24268e3ce938c5db2f2e77f5c3dd280e05c262d9c2fe7d890929e4632a6b8e94334017b66b45e4f92a5aa42ba3356640c2a1175fa37bef2f5200767
languageName: node
linkType: hard
"@types/semver@npm:^7.3.12":
version: 7.5.2
resolution: "@types/semver@npm:7.5.2"
checksum: 743aa8a2b58e20b329c19bd2459152cb049d12fafab7279b90ac11e0f268c97efbcb606ea0c681cca03f79015381b40d9b1244349b354270bec3f939ed49f6e9
languageName: node
linkType: hard
"@types/source-list-map@npm:*":
version: 0.1.2
resolution: "@types/source-list-map@npm:0.1.2"
checksum: fda8f37537aca9d3ed860d559289ab1dddb6897e642e6f53e909bbd18a7ac3129a8faa2a7d093847c91346cf09c86ef36e350c715406fba1f2271759b449adf6
languageName: node
linkType: hard
"@types/webpack-sources@npm:^0.1.5":
version: 0.1.9
resolution: "@types/webpack-sources@npm:0.1.9"
dependencies:
"@types/node": "npm:*"
"@types/source-list-map": "npm:*"
source-map: "npm:^0.6.1"
checksum: bc09c584c7047e8aed29801a3981787dee3898e9e7a99891a362df114fcac3879eea5a00932314866a01b25220391839be09fe1487b16d4970ff4a7afd5b9725
languageName: node
linkType: hard
"@typescript-eslint/eslint-plugin@npm:^5.55.0":
version: 5.62.0
resolution: "@typescript-eslint/eslint-plugin@npm:5.62.0"
dependencies:
"@eslint-community/regexpp": "npm:^4.4.0"
"@typescript-eslint/scope-manager": "npm:5.62.0"
"@typescript-eslint/type-utils": "npm:5.62.0"
"@typescript-eslint/utils": "npm:5.62.0"
debug: "npm:^4.3.4"
graphemer: "npm:^1.4.0"
ignore: "npm:^5.2.0"
natural-compare-lite: "npm:^1.4.0"
semver: "npm:^7.3.7"
tsutils: "npm:^3.21.0"
peerDependencies:
"@typescript-eslint/parser": ^5.0.0
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
peerDependenciesMeta:
typescript:
optional: true
checksum: fc104b389c768f9fa7d45a48c86d5c1ad522c1d0512943e782a56b1e3096b2cbcc1eea3fcc590647bf0658eef61aac35120a9c6daf979bf629ad2956deb516a1
languageName: node
linkType: hard
"@typescript-eslint/parser@npm:^5.55.0":
version: 5.62.0
resolution: "@typescript-eslint/parser@npm:5.62.0"
dependencies:
"@typescript-eslint/scope-manager": "npm:5.62.0"
"@typescript-eslint/types": "npm:5.62.0"
"@typescript-eslint/typescript-estree": "npm:5.62.0"
debug: "npm:^4.3.4"
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
peerDependenciesMeta:
typescript:
optional: true
checksum: d168f4c7f21a7a63f47002e2d319bcbb6173597af5c60c1cf2de046b46c76b4930a093619e69faf2d30214c29ab27b54dcf1efc7046a6a6bd6f37f59a990e752
languageName: node
linkType: hard
"@typescript-eslint/scope-manager@npm:5.62.0":
version: 5.62.0
resolution: "@typescript-eslint/scope-manager@npm:5.62.0"
dependencies:
"@typescript-eslint/types": "npm:5.62.0"
"@typescript-eslint/visitor-keys": "npm:5.62.0"
checksum: 6062d6b797fe1ce4d275bb0d17204c827494af59b5eaf09d8a78cdd39dadddb31074dded4297aaf5d0f839016d601032857698b0e4516c86a41207de606e9573
languageName: node
linkType: hard
"@typescript-eslint/type-utils@npm:5.62.0":
version: 5.62.0
resolution: "@typescript-eslint/type-utils@npm:5.62.0"
dependencies:
"@typescript-eslint/typescript-estree": "npm:5.62.0"
"@typescript-eslint/utils": "npm:5.62.0"
debug: "npm:^4.3.4"
tsutils: "npm:^3.21.0"
peerDependencies:
eslint: "*"
peerDependenciesMeta:
typescript:
optional: true
checksum: fc41eece5f315dfda14320be0da78d3a971d650ea41300be7196934b9715f3fe1120a80207551eb71d39568275dbbcf359bde540d1ca1439d8be15e9885d2739
languageName: node
linkType: hard
"@typescript-eslint/types@npm:5.62.0":
version: 5.62.0
resolution: "@typescript-eslint/types@npm:5.62.0"
checksum: 48c87117383d1864766486f24de34086155532b070f6264e09d0e6139449270f8a9559cfef3c56d16e3bcfb52d83d42105d61b36743626399c7c2b5e0ac3b670
languageName: node
linkType: hard
"@typescript-eslint/typescript-estree@npm:5.62.0":
version: 5.62.0
resolution: "@typescript-eslint/typescript-estree@npm:5.62.0"
dependencies:
"@typescript-eslint/types": "npm:5.62.0"
"@typescript-eslint/visitor-keys": "npm:5.62.0"
debug: "npm:^4.3.4"
globby: "npm:^11.1.0"
is-glob: "npm:^4.0.3"
semver: "npm:^7.3.7"
tsutils: "npm:^3.21.0"
peerDependenciesMeta:
typescript:
optional: true
checksum: 3624520abb5807ed8f57b1197e61c7b1ed770c56dfcaca66372d584ff50175225798bccb701f7ef129d62c5989070e1ee3a0aa2d84e56d9524dcf011a2bb1a52
languageName: node
linkType: hard
"@typescript-eslint/utils@npm:5.62.0":
version: 5.62.0
resolution: "@typescript-eslint/utils@npm:5.62.0"
dependencies:
"@eslint-community/eslint-utils": "npm:^4.2.0"
"@types/json-schema": "npm:^7.0.9"
"@types/semver": "npm:^7.3.12"
"@typescript-eslint/scope-manager": "npm:5.62.0"
"@typescript-eslint/types": "npm:5.62.0"
"@typescript-eslint/typescript-estree": "npm:5.62.0"
eslint-scope: "npm:^5.1.1"
semver: "npm:^7.3.7"
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
checksum: ee9398c8c5db6d1da09463ca7bf36ed134361e20131ea354b2da16a5fdb6df9ba70c62a388d19f6eebb421af1786dbbd79ba95ddd6ab287324fc171c3e28d931
languageName: node
linkType: hard
"@typescript-eslint/visitor-keys@npm:5.62.0":
version: 5.62.0
resolution: "@typescript-eslint/visitor-keys@npm:5.62.0"
dependencies: