forked from deshaw/jupyterlab-limit-output
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyarn.lock
6082 lines (5463 loc) · 213 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: 53c2b231a61a46792b39a0d43bc4f4f776bb4542aa57ee04930676802e5501282c2fc8aac14e4cd1f1120ff8b52616b6ff5ab539ad30aa2277d726444b71619f
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: 836ffd155506768e991d6dd8c51db37cad5958ed1c8e0a2329ccd9527165d5c752e943d66a5c3c92ffd45f343419f0742e7636629a529f4fbd5303e3637746b9
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: a10e843595ddd9f97faa99917414813c06214f4d9205294013e20c70fbdf4f943760da37dec1d998bf3e6fc20fa2918a47c0e987a7e458663feb7698063ad7c6
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: dcad63db345fb110e032de46c3688384b0008a42a4845180ce7cd62b1a9c0507a1bed727c4d1060ed1a03ae57b4d918570259f81724aaac1a5b776056f37504e
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: fbff9fcb2f5539289c3c097d130e852afd10d89a3a08ac0b5ebebbc055cc84a4bcc3dcfed463d488cde12dd0902ef1858279e31d7349b2e8cee43913744bda33
languageName: node
linkType: hard
"@codemirror/state@npm:^6.2.0":
version: 6.4.0
resolution: "@codemirror/state@npm:6.4.0"
checksum: f1a94ab45dd5ae067d7f273bbe1a02fb118fa3defae012ff8a18711083bc7fb29436e3a7642c2621bb19a0d51546b398595b63dfdd48e5e15dcf6c629ec81ca1
languageName: node
linkType: hard
"@discoveryjs/json-ext@npm:^0.5.0":
version: 0.5.7
resolution: "@discoveryjs/json-ext@npm:0.5.7"
checksum: e10f1b02b78e4812646ddf289b7d9f2cb567d336c363b266bd50cd223cf3de7c2c74018d91cd2613041568397ef3a4a2b500aba588c6e5bd78c38374ba68f38c
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: 7e559c4ce59cd3a06b1b5a517b593912e680a7f981ae7affab0d01d709e99cd5647019be8fafa38c350305bc32f1f7d42c7073edde2ab536c745e365f37b607e
languageName: node
linkType: hard
"@eslint-community/regexpp@npm:^4.4.0":
version: 4.10.0
resolution: "@eslint-community/regexpp@npm:4.10.0"
checksum: c5f60ef1f1ea7649fa7af0e80a5a79f64b55a8a8fa5086de4727eb4c86c652aedee407a9c143b8995d2c0b2d75c1222bec9ba5d73dbfc1f314550554f0979ef4
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: 0eed93369f72ef044686d07824742121f9b95153ff34f4614e4e69d64332ee68c84eb70da851a9005bb76b3d1d64ad76c2e6293a808edc0f7dfb883689ca136d
languageName: node
linkType: hard
"@fortawesome/fontawesome-free@npm:^5.12.0":
version: 5.15.4
resolution: "@fortawesome/fontawesome-free@npm:5.15.4"
checksum: 0a12f11b17b3073475df965d423ac485715e281d11ecde17250fab5dc0a177fb29ced59242f6c024bef59429c502ba8fe831ed9500e14713cc30138e70df8fbc
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: 217fac9e03492361825a2bf761d4bb7ec6d10002a10f7314142245eb13ac9d123523d24d5619c3c4159af215c7b3e583ed386108e227014bef4efbf9caca8ccc
languageName: node
linkType: hard
"@humanwhocodes/object-schema@npm:^1.2.0":
version: 1.2.1
resolution: "@humanwhocodes/object-schema@npm:1.2.1"
checksum: c3c35fdb70c04a569278351c75553e293ae339684ed75895edc79facc7276e351115786946658d78133130c0cca80e57e2203bc07f8fa7fe7980300e8deef7db
languageName: node
linkType: hard
"@isaacs/cliui@npm:^8.0.2":
version: 8.0.2
resolution: "@isaacs/cliui@npm:8.0.2"
dependencies:
string-width: "npm:^5.1.2"
string-width-cjs: "npm:string-width@^4.2.0"
strip-ansi: "npm:^7.0.1"
strip-ansi-cjs: "npm:strip-ansi@^6.0.1"
wrap-ansi: "npm:^8.1.0"
wrap-ansi-cjs: "npm:wrap-ansi@^7.0.0"
checksum: b1bf42535d49f11dc137f18d5e4e63a28c5569de438a221c369483731e9dac9fb797af554e8bf02b6192d1e5eba6e6402cf93900c3d0ac86391d00d04876789e
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: 376fc11cf5a967318ba3ddd9d8e91be528eab6af66810a713c49b0c3f8dc67e9949452c51c38ab1b19aa618fb5e8594da5a249977e26b1e7fea1ee5a1fcacc74
languageName: node
linkType: hard
"@jridgewell/resolve-uri@npm:^3.1.0":
version: 3.1.1
resolution: "@jridgewell/resolve-uri@npm:3.1.1"
checksum: 0dbc9e29bc640bbbdc5b9876d2859c69042bfcf1423c1e6421bcca53e826660bff4e41c7d4bcb8dbea696404231a6f902f76ba41835d049e20f2dd6cffb713bf
languageName: node
linkType: hard
"@jridgewell/set-array@npm:^1.0.1":
version: 1.1.2
resolution: "@jridgewell/set-array@npm:1.1.2"
checksum: bc7ab4c4c00470de4e7562ecac3c0c84f53e7ee8a711e546d67c47da7febe7c45cd67d4d84ee3c9b2c05ae8e872656cdded8a707a283d30bd54fbc65aef821ab
languageName: node
linkType: hard
"@jridgewell/source-map@npm:^0.3.3":
version: 0.3.5
resolution: "@jridgewell/source-map@npm:0.3.5"
dependencies:
"@jridgewell/gen-mapping": "npm:^0.3.0"
"@jridgewell/trace-mapping": "npm:^0.3.9"
checksum: b985d9ebd833a21a6e9ace820c8a76f60345a34d9e28d98497c16b6e93ce1f131bff0abd45f8585f14aa382cce678ed680d628c631b40a9616a19cfbc2049b68
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: 0c6b5ae663087558039052a626d2d7ed5208da36cfd707dcc5cea4a07cfc918248403dcb5989a8f7afaf245ce0573b7cc6fd94c4a30453bd10e44d9363940ba5
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: 18cf19f88e2792c1c91515f2b629aae05f3cdbb2e60c3886e16e80725234ce26dd10144c4981c05d9366e7094498c0b4fe5c1a89f4a730d7376a4ba4af448149
languageName: node
linkType: hard
"@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: cf1572c5a5a9146a0a748c6ef678be1caa17d78b2ec1497566e421807268a09e2fbcf4a4c1f36d7e80d9c57f67cb88e8693ea5a6ea2e3964f9f96079091601ba
languageName: node
linkType: hard
"@jupyterlab/application@npm:^4.0.0":
version: 4.0.11
resolution: "@jupyterlab/application@npm:4.0.11"
dependencies:
"@fortawesome/fontawesome-free": "npm:^5.12.0"
"@jupyterlab/apputils": "npm:^4.1.11"
"@jupyterlab/coreutils": "npm:^6.0.11"
"@jupyterlab/docregistry": "npm:^4.0.11"
"@jupyterlab/rendermime": "npm:^4.0.11"
"@jupyterlab/rendermime-interfaces": "npm:^3.8.11"
"@jupyterlab/services": "npm:^7.0.11"
"@jupyterlab/statedb": "npm:^4.0.11"
"@jupyterlab/translation": "npm:^4.0.11"
"@jupyterlab/ui-components": "npm:^4.0.11"
"@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: 04b3bde4a1bd1b9dbcf393d98bada78cc6d0d8cfcf041a76a341a47d6062a7d45ac62c641f77c1bfb6d3878c91765d8871e27b1bdeac7806ae6092106fe4ad10
languageName: node
linkType: hard
"@jupyterlab/apputils@npm:^4.0.0, @jupyterlab/apputils@npm:^4.1.11":
version: 4.1.11
resolution: "@jupyterlab/apputils@npm:4.1.11"
dependencies:
"@jupyterlab/coreutils": "npm:^6.0.11"
"@jupyterlab/observables": "npm:^5.0.11"
"@jupyterlab/rendermime-interfaces": "npm:^3.8.11"
"@jupyterlab/services": "npm:^7.0.11"
"@jupyterlab/settingregistry": "npm:^4.0.11"
"@jupyterlab/statedb": "npm:^4.0.11"
"@jupyterlab/statusbar": "npm:^4.0.11"
"@jupyterlab/translation": "npm:^4.0.11"
"@jupyterlab/ui-components": "npm:^4.0.11"
"@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: bf6bb1a3abe6e6efd24aefabd4be95bdd4c87a5f1653165e6e95080b7e26a426d3d2f0d9b9d8b1c3da7e2d9c60fea82fe544360bb3079da18de74ab9ee9dcaf7
languageName: node
linkType: hard
"@jupyterlab/builder@npm:^4.0.0":
version: 4.0.11
resolution: "@jupyterlab/builder@npm:4.0.11"
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: bb624c9139eebcd442830956f110efc915822a1f0272f64aeff26fbc47c50d74db9f8a8af855145c5e9ee93ea0724373c9cd56ac0fe1da6f312e006ca4e1b513
languageName: node
linkType: hard
"@jupyterlab/codeeditor@npm:^4.0.11":
version: 4.0.11
resolution: "@jupyterlab/codeeditor@npm:4.0.11"
dependencies:
"@codemirror/state": "npm:^6.2.0"
"@jupyter/ydoc": "npm:^1.1.1"
"@jupyterlab/coreutils": "npm:^6.0.11"
"@jupyterlab/nbformat": "npm:^4.0.11"
"@jupyterlab/observables": "npm:^5.0.11"
"@jupyterlab/statusbar": "npm:^4.0.11"
"@jupyterlab/translation": "npm:^4.0.11"
"@jupyterlab/ui-components": "npm:^4.0.11"
"@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: ca90123b44f1c36faf1336ab8e1df7a3022da195fd4c20262eec1e3b237a62879e19532f989470fbbcffd9a3548a50797ac7a0037957cb85c87ade08ac1bb5b8
languageName: node
linkType: hard
"@jupyterlab/coreutils@npm:^6.0.11":
version: 6.0.11
resolution: "@jupyterlab/coreutils@npm:6.0.11"
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: 9e9dd819a48e591db0d7dbb733cecd2cfb39129dd9b116ed6b76a9c6d4eb9156c7bd15e1053499dd1a18a29b80b231b90d14e57f1c017951ba2984295f08753b
languageName: node
linkType: hard
"@jupyterlab/docregistry@npm:^4.0.11":
version: 4.0.11
resolution: "@jupyterlab/docregistry@npm:4.0.11"
dependencies:
"@jupyter/ydoc": "npm:^1.1.1"
"@jupyterlab/apputils": "npm:^4.1.11"
"@jupyterlab/codeeditor": "npm:^4.0.11"
"@jupyterlab/coreutils": "npm:^6.0.11"
"@jupyterlab/observables": "npm:^5.0.11"
"@jupyterlab/rendermime": "npm:^4.0.11"
"@jupyterlab/rendermime-interfaces": "npm:^3.8.11"
"@jupyterlab/services": "npm:^7.0.11"
"@jupyterlab/translation": "npm:^4.0.11"
"@jupyterlab/ui-components": "npm:^4.0.11"
"@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: f8b59678ce755c4b2f49e96686e040acb24e1636d3e77199d5998d8a4d2792fa7185948586c6bd1c306f02d298c767e94ed1ea018ad7fd71d454e66df01d8d89
languageName: node
linkType: hard
"@jupyterlab/nbformat@npm:^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0":
version: 3.6.7
resolution: "@jupyterlab/nbformat@npm:3.6.7"
dependencies:
"@lumino/coreutils": "npm:^1.11.0"
checksum: 68fd8f0b316dc04985817ca56efb26522c0c26431205a5ba4656195b7c06643c54fe734b66cc6fed5101750cd73cd58c8443ea6f949a3fa8f5c8d45beef5ba5a
languageName: node
linkType: hard
"@jupyterlab/nbformat@npm:^4.0.11":
version: 4.0.11
resolution: "@jupyterlab/nbformat@npm:4.0.11"
dependencies:
"@lumino/coreutils": "npm:^2.1.2"
checksum: c6e6002c1acac4786acf4711597fdd39c69637367e4183fc922166a8e502f8361a4f9a88ddeb1d393015299eb1f4f6588d3669a30ee1851b3c0bd9d9c55edcbd
languageName: node
linkType: hard
"@jupyterlab/observables@npm:^5.0.11":
version: 5.0.11
resolution: "@jupyterlab/observables@npm:5.0.11"
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: 4659b6f7e3eb3484e7475389f5c7bb9e81377c6af6d1976e864b3b99b2b7c28c6367ec685dc46ed24103932564e8fb726c1889b556d934050fe95a981de238eb
languageName: node
linkType: hard
"@jupyterlab/rendermime-interfaces@npm:^3.8.11":
version: 3.8.11
resolution: "@jupyterlab/rendermime-interfaces@npm:3.8.11"
dependencies:
"@lumino/coreutils": "npm:^1.11.0 || ^2.1.2"
"@lumino/widgets": "npm:^1.37.2 || ^2.3.0"
checksum: 66909b3f3df3123a9187bd03d71df677c23ac03c004176b33ab5d0c33c8ddd9e1e38d51486a36125a6f2026737dc270d0bcad5b438339106be4a8e5cab800b8f
languageName: node
linkType: hard
"@jupyterlab/rendermime@npm:^4.0.0, @jupyterlab/rendermime@npm:^4.0.11":
version: 4.0.11
resolution: "@jupyterlab/rendermime@npm:4.0.11"
dependencies:
"@jupyterlab/apputils": "npm:^4.1.11"
"@jupyterlab/coreutils": "npm:^6.0.11"
"@jupyterlab/nbformat": "npm:^4.0.11"
"@jupyterlab/observables": "npm:^5.0.11"
"@jupyterlab/rendermime-interfaces": "npm:^3.8.11"
"@jupyterlab/services": "npm:^7.0.11"
"@jupyterlab/translation": "npm:^4.0.11"
"@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: 2f9a4786a44c6ced81905963e95812b0de12df1fa6b68f2ba649cd7ca43e90d1bafe13dab366cfd24d357c753f40d303060a319161ea476dc35e1d0b4e52d9e2
languageName: node
linkType: hard
"@jupyterlab/services@npm:^7.0.11":
version: 7.0.11
resolution: "@jupyterlab/services@npm:7.0.11"
dependencies:
"@jupyter/ydoc": "npm:^1.1.1"
"@jupyterlab/coreutils": "npm:^6.0.11"
"@jupyterlab/nbformat": "npm:^4.0.11"
"@jupyterlab/settingregistry": "npm:^4.0.11"
"@jupyterlab/statedb": "npm:^4.0.11"
"@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: d5612d2e61a6fad5d229293287356cf65da4f4beb814c4956964b380835f0b743e0ac0b9fa976cd7a8adaae0d4417c5d5bc4ecf8f33ba1ea1a085cc59cc272cc
languageName: node
linkType: hard
"@jupyterlab/settingregistry@npm:^4.0.0, @jupyterlab/settingregistry@npm:^4.0.11":
version: 4.0.11
resolution: "@jupyterlab/settingregistry@npm:4.0.11"
dependencies:
"@jupyterlab/nbformat": "npm:^4.0.11"
"@jupyterlab/statedb": "npm:^4.0.11"
"@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: 5330758c74542b95b8caa19ef865d6c415edb6b030d738c471f684116492623837b07cf683a4d6e374db8fe61bd5937a854d96f41b19aeb61c4584970c859fec
languageName: node
linkType: hard
"@jupyterlab/statedb@npm:^4.0.11":
version: 4.0.11
resolution: "@jupyterlab/statedb@npm:4.0.11"
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: 0fefbdcb15245c6532c83b61591a4181810a7bd05bb274af249b440d5742e33348dda00ac8b3b4391ef0a2948d5a1b277168926a94ccb189f5e1aba6e8a0ed59
languageName: node
linkType: hard
"@jupyterlab/statusbar@npm:^4.0.11":
version: 4.0.11
resolution: "@jupyterlab/statusbar@npm:4.0.11"
dependencies:
"@jupyterlab/ui-components": "npm:^4.0.11"
"@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: e62e59875a540ffb2bba6913914b3225b0ee83e32345125ea5cfcb4f00d0b61c2f0dd79472b0703c0e9115057e1c8cab471978eaf0a108fa19950eec0919b1d9
languageName: node
linkType: hard
"@jupyterlab/translation@npm:^4.0.11":
version: 4.0.11
resolution: "@jupyterlab/translation@npm:4.0.11"
dependencies:
"@jupyterlab/coreutils": "npm:^6.0.11"
"@jupyterlab/rendermime-interfaces": "npm:^3.8.11"
"@jupyterlab/services": "npm:^7.0.11"
"@jupyterlab/statedb": "npm:^4.0.11"
"@lumino/coreutils": "npm:^2.1.2"
checksum: 6ec9ee73df91da9942175a35a90023ee968164950e3b5f48d35a15157e0d489aae5301fd658e9f2a5140357d64efb312197daaf0198df9368a6542000ebbfc8b
languageName: node
linkType: hard
"@jupyterlab/ui-components@npm:^4.0.11":
version: 4.0.11
resolution: "@jupyterlab/ui-components@npm:4.0.11"
dependencies:
"@jupyterlab/coreutils": "npm:^6.0.11"
"@jupyterlab/observables": "npm:^5.0.11"
"@jupyterlab/rendermime-interfaces": "npm:^3.8.11"
"@jupyterlab/translation": "npm:^4.0.11"
"@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: 8255c9e1e8dad6ecdad83fd4126b4ef7353dc6de5ad107e7371e79736db351646692a7937c19ae8fa14581ccbd3800d9b93fcf1ab9547fb6c96829be9ed3649a
languageName: node
linkType: hard
"@lumino/algorithm@npm:^2.0.1":
version: 2.0.1
resolution: "@lumino/algorithm@npm:2.0.1"
checksum: 9366508669a1334a63e0126e65b3887859ac27d4ed347868f18caac0e2bded5af8cac981a7705fb7223d2c89266817f0e5ba101cbed6c61b425d058398377b7e
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: 305f77b15ce6bbd420e6ff4cc90a4cbd62daadc669e968e9e2d5af431a918b900e99f7f877c65e77e3a327a81b2cf71031d5fd92cc31e11b8a992b572c7922ca
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: 1af416f9edda2b308d9efc144fd86e571f35a559327861cc414837637a7b2680fdae2e4cd8d05efc9228c2fe1bca32753d61dfbae866fcce7087801576e0eb2e
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: 54c15077cf6745d31249868d143c1e3498e0bac3bf6560d6dbfcda649fb9fcf8ba3093996e2979bc48b35b47b4284581ef3cb22431aac006f3163bc446afb651
languageName: node
linkType: hard
"@lumino/coreutils@npm:^1.11.0":
version: 1.12.1
resolution: "@lumino/coreutils@npm:1.12.1"
peerDependencies:
crypto: 1.0.1
checksum: 70338bce750687381d87a7d7655cfdde63f0d69e426695375d433fac38cccdf4b0e0b94cff612cd5fa0dcc35971cd2b5713e3893702b7d835d4963f4ae8e0f91
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: 006e541163574de92cdc7793aa6eb5a92a6daf772fed41a6d4e3d4a0d69aaf9a86cd3b927f02c2047732e66ad9183d17307510d8af3425566e64a16d8a820f99
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: 290412bbca60e3345e36bf9f5a1376a364320ef7b8ca0259ba6384fec8197051b63a6d04048fe0f1ddf471b37f507ce3fdbc59cd4bc9a1dece338fdfafb94669
languageName: node
linkType: hard
"@lumino/domutils@npm:^2.0.1":
version: 2.0.1
resolution: "@lumino/domutils@npm:2.0.1"
checksum: d5e0b33d0c67b60eaffc21ec106b3ad0dc3a3b23caf114b7e972facadd9781d70f9ab379c75785a24ea5eaf2897f849741c4cbacd4d77bcb5ea75bb234c2bc2c
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: ade2e25f365a35bfc99565e2701601fdb0a251f1b80d48a1a57bebd718a5fda7495fc34215b71435620ce140f6c4c5eb2d43fed5d3a8abae1b94cdcb7d05d9dc
languageName: node
linkType: hard
"@lumino/keyboard@npm:^2.0.1":
version: 2.0.1
resolution: "@lumino/keyboard@npm:2.0.1"
checksum: 089328fc5c7834ea2ba91efdd89414b9e94aa693b55558a76f7053134bedf1ed45b5c643bcf383acd92f191a87ad16b136a23c5e2b7744b77086fa7f0bacc35c
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: 93234d09dcf8c69c137a08cf907c4aa4e5e46c7de223969863f1b6f704383fe5b42bd05d40972e8c61ea791ecf4f0cb8049f5344a978dffe5b50c5c655bc4dea
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: b270a3f82fed7558f36856cf13f777847165196b0e14cb8943b28209e9450577f59f7d0336cf6f44a0f29c26620947d43da0daf383cd6a903401271d9e2581b1
languageName: node
linkType: hard
"@lumino/properties@npm:^2.0.1":
version: 2.0.1
resolution: "@lumino/properties@npm:2.0.1"
checksum: ec73832f0a8c0095fee860cec1de4182ed4acd07358d6de0fe74484845c17ef801b02d707172fa53e2a1cfbe0738b865a42e31875c07272fb0e92c5fc53426e6
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: 6e39464aeec8abb6f087db1e0469524025bc30aa971dd8ec05ff1ef94a1800f50e44012d891b7ad358f9c1efa87a362247f290cb72d432ad846329a8bce452dd
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: 78ad8edb06327b20aa1ef4c1e569f6a15e4657c10abb57a22c9351899c2c953a17b4a04a98672933bdc2ec7afbe0a3ced793299a6b3c9d976469aed21df6d247
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: 369f72f64650af05d2cdda97521178ec7a04d07b52956601568c817201ce24dc832d71872b4d65f626a3d0f8af5f40d3336bd102a8cde95c710ca4717671acb3
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: 732c3b6d1b1e967440e65f284bd06e5821fedf10a1bea9ed2bb75956ea1f30e08c44d3def9d6a230666574edbaf136f8cfd319c14fd1f87c66e6a44449afb2eb
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: 88dafe5e3e29a388b07264680dc996c17f4bda48d163a9d4f5c1112979f0ce8ec72aa7116122c350b4e7976bc5566dc3ddb579be1ceaacc727872eb4ed93926d
languageName: node
linkType: hard
"@nodelib/fs.walk@npm:^1.2.3":
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: db9de047c3bb9b51f9335a7bb46f4fcfb6829fb628318c12115fbaf7d369bfce71c15b103d1fc3b464812d936220ee9bc1c8f762d032c9f6be9acc99249095b1
languageName: node
linkType: hard
"@npmcli/agent@npm:^2.0.0":
version: 2.2.0
resolution: "@npmcli/agent@npm:2.2.0"
dependencies:
agent-base: "npm:^7.1.0"
http-proxy-agent: "npm:^7.0.0"
https-proxy-agent: "npm:^7.0.1"
lru-cache: "npm:^10.0.1"
socks-proxy-agent: "npm:^8.0.1"
checksum: 7b89590598476dda88e79c473766b67c682aae6e0ab0213491daa6083dcc0c171f86b3868f5506f22c09aa5ea69ad7dfb78f4bf39a8dca375d89a42f408645b3
languageName: node
linkType: hard
"@npmcli/fs@npm:^3.1.0":
version: 3.1.0
resolution: "@npmcli/fs@npm:3.1.0"
dependencies:
semver: "npm:^7.3.5"
checksum: 162b4a0b8705cd6f5c2470b851d1dc6cd228c86d2170e1769d738c1fbb69a87160901411c3c035331e9e99db72f1f1099a8b734bf1637cc32b9a5be1660e4e1e
languageName: node
linkType: hard
"@pkgjs/parseargs@npm:^0.11.0":
version: 0.11.0
resolution: "@pkgjs/parseargs@npm:0.11.0"
checksum: 5bd7576bb1b38a47a7fc7b51ac9f38748e772beebc56200450c4a817d712232b8f1d3ef70532c80840243c657d491cf6a6be1e3a214cff907645819fdc34aadd
languageName: node
linkType: hard
"@rjsf/core@npm:^5.1.0":
version: 5.16.1
resolution: "@rjsf/core@npm:5.16.1"
dependencies:
lodash: "npm:^4.17.21"
lodash-es: "npm:^4.17.21"
markdown-to-jsx: "npm:^7.4.0"
nanoid: "npm:^3.3.7"
prop-types: "npm:^15.8.1"
peerDependencies:
"@rjsf/utils": ^5.16.x
react: ^16.14.0 || >=17
checksum: 546075ebd46a00b891302c975578d049c55747a59f01e876c9ed79e92e79eeda19b0786aa47cbb94ec310119fba5f275d6872b7f7e28e0d2cddf21f9aff5dd55
languageName: node
linkType: hard
"@rjsf/utils@npm:^5.1.0":
version: 5.16.1
resolution: "@rjsf/utils@npm:5.16.1"
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: fa7c6578279bf47b9ba670fcac7a335acefefbcef010eed86d363a92097bd4bd7efe28ba44f4050ad1afe41ac88180f0750861f0b681353244533c00bd0af380
languageName: node
linkType: hard
"@types/chai@npm:^4.3.4":
version: 4.3.11
resolution: "@types/chai@npm:4.3.11"
checksum: 0c216ac4a19bfbf8318bb104d32e50704ee2ffc4b538b976c4326e6638fee121462402caa570662227a2a218810388aadb14bdbd3d3d474ec300b00695db448a
languageName: node
linkType: hard
"@types/eslint-scope@npm:^3.7.3":
version: 3.7.7
resolution: "@types/eslint-scope@npm:3.7.7"
dependencies:
"@types/eslint": "npm:*"
"@types/estree": "npm:*"
checksum: a0ecbdf2f03912679440550817ff77ef39a30fa8bfdacaf6372b88b1f931828aec392f52283240f0d648cf3055c5ddc564544a626bcf245f3d09fcb099ebe3cc
languageName: node
linkType: hard
"@types/eslint@npm:*":
version: 8.56.2
resolution: "@types/eslint@npm:8.56.2"
dependencies:
"@types/estree": "npm:*"
"@types/json-schema": "npm:*"
checksum: e33ca87a30a9454ba9943e1270ac759996f5fe598a1c1afbaec1d1e7346a339e20bf2a9d81f177067116bbaa6cfa4f748993cb338f57978ae862ad38ffae56fe
languageName: node
linkType: hard
"@types/estree@npm:*, @types/estree@npm:^1.0.5":
version: 1.0.5
resolution: "@types/estree@npm:1.0.5"
checksum: b3b0e334288ddb407c7b3357ca67dbee75ee22db242ca7c56fe27db4e1a31989cb8af48a84dd401deb787fe10cc6b2ab1ee82dc4783be87ededbe3d53c79c70d
languageName: node
linkType: hard
"@types/json-schema@npm:*, @types/json-schema@npm:^7.0.5, @types/json-schema@npm:^7.0.8, @types/json-schema@npm:^7.0.9":
version: 7.0.15
resolution: "@types/json-schema@npm:7.0.15"
checksum: a996a745e6c5d60292f36731dd41341339d4eeed8180bb09226e5c8d23759067692b1d88e5d91d72ee83dfc00d3aca8e7bd43ea120516c17922cbcb7c3e252db
languageName: node
linkType: hard
"@types/json5@npm:^0.0.29":
version: 0.0.29
resolution: "@types/json5@npm:0.0.29"
checksum: 6bf5337bc447b706bb5b4431d37686aa2ea6d07cfd6f79cc31de80170d6ff9b1c7384a9c0ccbc45b3f512bae9e9f75c2e12109806a15331dc94e8a8db6dbb4ac
languageName: node
linkType: hard
"@types/mocha@npm:^10.0.1":
version: 10.0.6
resolution: "@types/mocha@npm:10.0.6"
checksum: 4526c9e88388f9e1004c6d3937c5488a39908810f26b927173c58d52b43057f3895627dc06538e96706e08b88158885f869ec6311f6b58fd72bdef715f26d6c3
languageName: node
linkType: hard
"@types/node@npm:*":
version: 20.11.6
resolution: "@types/node@npm:20.11.6"
dependencies:
undici-types: "npm:~5.26.4"
checksum: 922bc1e78076bb79fd168902c80321b54487181e3be3386e183fc535d102d91c8902da25148eaec841410fab7fb872fd4a93ec9ac9299cedf0ebcbf16b442aa1
languageName: node
linkType: hard
"@types/prop-types@npm:*":
version: 15.7.11
resolution: "@types/prop-types@npm:15.7.11"
checksum: e53423cf9d510515ef8b47ff42f4f1b65a7b7b37c8704e2dbfcb9a60defe0c0e1f3cb1acfdeb466bad44ca938d7c79bffdd51b48ffb659df2432169d0b27a132
languageName: node
linkType: hard
"@types/react@npm:^18.0.26":
version: 18.2.48
resolution: "@types/react@npm:18.2.48"
dependencies:
"@types/prop-types": "npm:*"
"@types/scheduler": "npm:*"
csstype: "npm:^3.0.2"
checksum: 7e89f18ea2928b1638f564b156d692894dcb9352a7e0a807873c97e858abe1f23dbd165a25dd088a991344e973fdeef88ba5724bfb64504b74072cbc9c220c3a
languageName: node
linkType: hard
"@types/scheduler@npm:*":
version: 0.16.8
resolution: "@types/scheduler@npm:0.16.8"
checksum: f86de504945b8fc41b1f391f847444d542e2e4067cf7e5d9bfeb5d2d2393d3203b1161bc0ef3b1e104d828dabfb60baf06e8d2c27e27ff7e8258e6e618d8c4ec
languageName: node
linkType: hard
"@types/semver@npm:^7.3.12":
version: 7.5.6
resolution: "@types/semver@npm:7.5.6"
checksum: 196dc32db5f68cbcde2e6a42bb4aa5cbb100fa2b7bd9c8c82faaaf3e03fbe063e205dbb4f03c7cdf53da2edb70a0d34c9f2e601b54281b377eb8dc1743226acd
languageName: node
linkType: hard
"@types/source-list-map@npm:*":
version: 0.1.6
resolution: "@types/source-list-map@npm:0.1.6"
checksum: 1e6d8d4a48535c51368c65bb2c44a1c9fd9afe2eeefefa32cbf06f9c191f7b20f638b3aa755100de0a750b0ba6a76140e912f1bee75705bc2b9a58b5a5185539
languageName: node
linkType: hard
"@types/webpack-sources@npm:^0.1.5":
version: 0.1.12
resolution: "@types/webpack-sources@npm:0.1.12"
dependencies:
"@types/node": "npm:*"
"@types/source-list-map": "npm:*"
source-map: "npm:^0.6.1"
checksum: bcb583e3a08b18a51ce9b4729959ff03467f9b42ec885dd1a589fe27862bbbff467e901c34f398ef89ad00be6aae71e8b6c3b6fcdcd578ee8f16e378c5a125be
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: 3f40cb6bab5a2833c3544e4621b9fdacd8ea53420cadc1c63fac3b89cdf5c62be1e6b7bcf56976dede5db4c43830de298ced3db60b5494a3b961ca1b4bff9f2a
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: 315194b3bf39beb9bd16c190956c46beec64b8371e18d6bb72002108b250983eb1e186a01d34b77eb4045f4941acbb243b16155fbb46881105f65e37dc9e24d4
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: 861253235576c1c5c1772d23cdce1418c2da2618a479a7de4f6114a12a7ca853011a1e530525d0931c355a8fd237b9cd828fac560f85f9623e24054fd024726f
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: 93112e34026069a48f0484b98caca1c89d9707842afe14e08e7390af51cdde87378df29d213d3bbd10a7cfe6f91b228031b56218515ce077bdb62ddea9d9f474
languageName: node
linkType: hard
"@typescript-eslint/types@npm:5.62.0":
version: 5.62.0
resolution: "@typescript-eslint/types@npm:5.62.0"
checksum: 7febd3a7f0701c0b927e094f02e82d8ee2cada2b186fcb938bc2b94ff6fbad88237afc304cbaf33e82797078bbbb1baf91475f6400912f8b64c89be79bfa4ddf
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: d7984a3e9d56897b2481940ec803cb8e7ead03df8d9cfd9797350be82ff765dfcf3cfec04e7355e1779e948da8f02bc5e11719d07a596eb1cb995c48a95e38cf
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