-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathyarn.lock
7653 lines (6873 loc) · 271 KB
/
yarn.lock
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 8
cacheKey: 10c0
"@babel/code-frame@npm:^7.0.0":
version: 7.22.5
resolution: "@babel/code-frame@npm:7.22.5"
dependencies:
"@babel/highlight": "npm:^7.22.5"
checksum: 10c0/0b6c5eaf9e58be7140ac790b7bdf8148e8a24e26502dcaa50f157259c083b0584285748fd90d342ae311a5bb1eaad7835aec625296d2b46853464f9bd8991e28
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-validator-identifier@npm:7.22.5"
checksum: 10c0/2ff1d3833154d17ccf773b8a71fdc0cd0e7356aa8033179d0e3133787dfb33d97796cbff8b92a97c56268205337dfc720227aeddc677c1bc08ae1b67a95252d7
languageName: node
linkType: hard
"@babel/highlight@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/highlight@npm:7.22.5"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.22.5"
chalk: "npm:^2.0.0"
js-tokens: "npm:^4.0.0"
checksum: 10c0/e8cc07b5de76a9bf779982096ccbbe5a867c36d3786b26151eb570d9344a68af8aa065ed97d431e0d18ba55fe792c7c4301e0d62afff7a52ee0d20678443be54
languageName: node
linkType: hard
"@babel/runtime@npm:^7.0.0":
version: 7.22.5
resolution: "@babel/runtime@npm:7.22.5"
dependencies:
regenerator-runtime: "npm:^0.13.11"
checksum: 10c0/11dcaeecd2246857ccf22f939fcae28a58d29e410607bfa28b95d9b03e298a3e3df8a530e22637d5bfccfc1661fb39cc50c06b404b5d53454bd93889c7dd3eb8
languageName: node
linkType: hard
"@codemirror/state@npm:^6.2.0":
version: 6.2.1
resolution: "@codemirror/state@npm:6.2.1"
checksum: 10c0/ebae138825791055366efa3ad5c643a4d4718ae159d67664d5e0a226c1f0bd1528695d2eb5d970ad0cef30c301af1f4a3318b0ca271aacacf38f8800eaf51190
languageName: node
linkType: hard
"@csstools/selector-specificity@npm:^2.0.2":
version: 2.2.0
resolution: "@csstools/selector-specificity@npm:2.2.0"
peerDependencies:
postcss-selector-parser: ^6.0.10
checksum: 10c0/d81c9b437f7d45ad0171e09240454ced439fa3e67576daae4ec7bb9c03e7a6061afeb0fa21d41f5f45d54bf8e242a7aa8101fbbba7ca7632dd847601468b5d9e
languageName: node
linkType: hard
"@discoveryjs/json-ext@npm:^0.5.0":
version: 0.5.3
resolution: "@discoveryjs/json-ext@npm:0.5.3"
checksum: 10c0/73789df18a61dfd91d839b95c403af9ba32b897c5b419d9a724de588099ce6cefc379ada7617a77dad967b6a026927faa65f55154205cfe88da8c0fca3da2986
languageName: node
linkType: hard
"@eslint-community/eslint-utils@npm:^4.2.0":
version: 4.4.0
resolution: "@eslint-community/eslint-utils@npm:4.4.0"
dependencies:
eslint-visitor-keys: "npm:^3.3.0"
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
checksum: 10c0/7e559c4ce59cd3a06b1b5a517b593912e680a7f981ae7affab0d01d709e99cd5647019be8fafa38c350305bc32f1f7d42c7073edde2ab536c745e365f37b607e
languageName: node
linkType: hard
"@eslint-community/regexpp@npm:^4.4.0":
version: 4.5.1
resolution: "@eslint-community/regexpp@npm:4.5.1"
checksum: 10c0/d79cbd99cc4dcfbb17e8dd30a30bb5aec5da9c60b9471043f886f116615bb15f0d417cb0ca638cefedba0b4c67c339e2011b53d88264a4540775f042a5879e01
languageName: node
linkType: hard
"@eslint/eslintrc@npm:^2.0.3":
version: 2.0.3
resolution: "@eslint/eslintrc@npm:2.0.3"
dependencies:
ajv: "npm:^6.12.4"
debug: "npm:^4.3.2"
espree: "npm:^9.5.2"
globals: "npm:^13.19.0"
ignore: "npm:^5.2.0"
import-fresh: "npm:^3.2.1"
js-yaml: "npm:^4.1.0"
minimatch: "npm:^3.1.2"
strip-json-comments: "npm:^3.1.1"
checksum: 10c0/46291c33bf580ab12101fb7f20adabaa60326a7de094409ab4a5ca4611552ab2325f8d677d6c1d2d9f45f83f93360b115a0b4488bc48180cca0d0f386804d829
languageName: node
linkType: hard
"@eslint/js@npm:8.42.0":
version: 8.42.0
resolution: "@eslint/js@npm:8.42.0"
checksum: 10c0/4ae46df1f32095cf9527d1f6a8a30512151f8eb66dd883a226face17c9e7cfdd2dcb3d4e3124fb67ac5801e0a776b1d7bba368276cfb1e1e4eefb047e38b41d6
languageName: node
linkType: hard
"@fortawesome/fontawesome-free@npm:^5.12.0":
version: 5.15.4
resolution: "@fortawesome/fontawesome-free@npm:5.15.4"
checksum: 10c0/0a12f11b17b3073475df965d423ac485715e281d11ecde17250fab5dc0a177fb29ced59242f6c024bef59429c502ba8fe831ed9500e14713cc30138e70df8fbc
languageName: node
linkType: hard
"@humanwhocodes/config-array@npm:^0.11.10":
version: 0.11.10
resolution: "@humanwhocodes/config-array@npm:0.11.10"
dependencies:
"@humanwhocodes/object-schema": "npm:^1.2.1"
debug: "npm:^4.1.1"
minimatch: "npm:^3.0.5"
checksum: 10c0/9e307a49a5baa28beb243d2c14c145f288fccd6885f4c92a9055707057ec40980242256b2a07c976cfa6c75f7081da111a40a9844d1ca8daeff2302f8b640e76
languageName: node
linkType: hard
"@humanwhocodes/module-importer@npm:^1.0.1":
version: 1.0.1
resolution: "@humanwhocodes/module-importer@npm:1.0.1"
checksum: 10c0/909b69c3b86d482c26b3359db16e46a32e0fb30bd306a3c176b8313b9e7313dba0f37f519de6aa8b0a1921349e505f259d19475e123182416a506d7f87e7f529
languageName: node
linkType: hard
"@humanwhocodes/object-schema@npm:^1.2.1":
version: 1.2.1
resolution: "@humanwhocodes/object-schema@npm:1.2.1"
checksum: 10c0/c3c35fdb70c04a569278351c75553e293ae339684ed75895edc79facc7276e351115786946658d78133130c0cca80e57e2203bc07f8fa7fe7980300e8deef7db
languageName: node
linkType: hard
"@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: 10c0/376fc11cf5a967318ba3ddd9d8e91be528eab6af66810a713c49b0c3f8dc67e9949452c51c38ab1b19aa618fb5e8594da5a249977e26b1e7fea1ee5a1fcacc74
languageName: node
linkType: hard
"@jridgewell/resolve-uri@npm:3.1.0":
version: 3.1.0
resolution: "@jridgewell/resolve-uri@npm:3.1.0"
checksum: 10c0/78055e2526108331126366572045355051a930f017d1904a4f753d3f4acee8d92a14854948095626f6163cffc24ea4e3efa30637417bb866b84743dec7ef6fd9
languageName: node
linkType: hard
"@jridgewell/resolve-uri@npm:^3.1.0":
version: 3.1.2
resolution: "@jridgewell/resolve-uri@npm:3.1.2"
checksum: 10c0/d502e6fb516b35032331406d4e962c21fe77cdf1cbdb49c6142bcbd9e30507094b18972778a6e27cbad756209cfe34b1a27729e6fa08a2eb92b33943f680cf1e
languageName: node
linkType: hard
"@jridgewell/set-array@npm:^1.0.1":
version: 1.1.2
resolution: "@jridgewell/set-array@npm:1.1.2"
checksum: 10c0/bc7ab4c4c00470de4e7562ecac3c0c84f53e7ee8a711e546d67c47da7febe7c45cd67d4d84ee3c9b2c05ae8e872656cdded8a707a283d30bd54fbc65aef821ab
languageName: node
linkType: hard
"@jridgewell/source-map@npm:^0.3.3":
version: 0.3.3
resolution: "@jridgewell/source-map@npm:0.3.3"
dependencies:
"@jridgewell/gen-mapping": "npm:^0.3.0"
"@jridgewell/trace-mapping": "npm:^0.3.9"
checksum: 10c0/f341e3ed1e9dfe5ae95201e9e820bee7c0518f20f2831b9964ce6c4bfe59477fb7e3257a45fac193cb4aea0019f0a4f8ed68abb12fd3956610317946f7341e3f
languageName: node
linkType: hard
"@jridgewell/sourcemap-codec@npm:1.4.14":
version: 1.4.14
resolution: "@jridgewell/sourcemap-codec@npm:1.4.14"
checksum: 10c0/3fbaff1387c1338b097eeb6ff92890d7838f7de0dde259e4983763b44540bfd5ca6a1f7644dc8ad003a57f7e80670d5b96a8402f1386ba9aee074743ae9bad51
languageName: node
linkType: hard
"@jridgewell/sourcemap-codec@npm:^1.4.10":
version: 1.4.15
resolution: "@jridgewell/sourcemap-codec@npm:1.4.15"
checksum: 10c0/0c6b5ae663087558039052a626d2d7ed5208da36cfd707dcc5cea4a07cfc918248403dcb5989a8f7afaf245ce0573b7cc6fd94c4a30453bd10e44d9363940ba5
languageName: node
linkType: hard
"@jridgewell/sourcemap-codec@npm:^1.4.14":
version: 1.5.0
resolution: "@jridgewell/sourcemap-codec@npm:1.5.0"
checksum: 10c0/2eb864f276eb1096c3c11da3e9bb518f6d9fc0023c78344cdc037abadc725172c70314bdb360f2d4b7bffec7f5d657ce006816bc5d4ecb35e61b66132db00c18
languageName: node
linkType: hard
"@jridgewell/trace-mapping@npm:^0.3.17, @jridgewell/trace-mapping@npm:^0.3.9":
version: 0.3.18
resolution: "@jridgewell/trace-mapping@npm:0.3.18"
dependencies:
"@jridgewell/resolve-uri": "npm:3.1.0"
"@jridgewell/sourcemap-codec": "npm:1.4.14"
checksum: 10c0/e5045775f076022b6c7cc64a7b55742faa5442301cb3389fd0e6712fafc46a2bb13c68fa1ffaf7b8bb665a91196f050b4115885fc802094ebc06a1cf665935ac
languageName: node
linkType: hard
"@jridgewell/trace-mapping@npm:^0.3.20":
version: 0.3.25
resolution: "@jridgewell/trace-mapping@npm:0.3.25"
dependencies:
"@jridgewell/resolve-uri": "npm:^3.1.0"
"@jridgewell/sourcemap-codec": "npm:^1.4.14"
checksum: 10c0/3d1ce6ebc69df9682a5a8896b414c6537e428a1d68b02fcc8363b04284a8ca0df04d0ee3013132252ab14f2527bc13bea6526a912ecb5658f0e39fd2860b4df4
languageName: node
linkType: hard
"@jupyter/ydoc@npm:^1.0.2":
version: 1.0.2
resolution: "@jupyter/ydoc@npm:1.0.2"
dependencies:
"@jupyterlab/nbformat": "npm:^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0"
"@lumino/coreutils": "npm:^1.11.0 || ^2.0.0"
"@lumino/disposable": "npm:^1.10.0 || ^2.0.0"
"@lumino/signaling": "npm:^1.10.0 || ^2.0.0"
y-protocols: "npm:^1.0.5"
yjs: "npm:^13.5.40"
checksum: 10c0/64bb974552b3ba9bd39dad60c4df8d3d0589ba9485bad850ff75ffe6bc33247dc2e556e88dca8212825a73a0bfb0d50e913502c556e23d6909242469e34a62ce
languageName: node
linkType: hard
"@jupyterlab/application@npm:^4.0.2":
version: 4.0.2
resolution: "@jupyterlab/application@npm:4.0.2"
dependencies:
"@fortawesome/fontawesome-free": "npm:^5.12.0"
"@jupyterlab/apputils": "npm:^4.1.2"
"@jupyterlab/coreutils": "npm:^6.0.2"
"@jupyterlab/docregistry": "npm:^4.0.2"
"@jupyterlab/rendermime": "npm:^4.0.2"
"@jupyterlab/rendermime-interfaces": "npm:^3.8.2"
"@jupyterlab/services": "npm:^7.0.2"
"@jupyterlab/statedb": "npm:^4.0.2"
"@jupyterlab/translation": "npm:^4.0.2"
"@jupyterlab/ui-components": "npm:^4.0.2"
"@lumino/algorithm": "npm:^2.0.0"
"@lumino/application": "npm:^2.1.1"
"@lumino/commands": "npm:^2.1.1"
"@lumino/coreutils": "npm:^2.1.1"
"@lumino/disposable": "npm:^2.1.1"
"@lumino/messaging": "npm:^2.0.0"
"@lumino/polling": "npm:^2.1.1"
"@lumino/properties": "npm:^2.0.0"
"@lumino/signaling": "npm:^2.1.1"
"@lumino/widgets": "npm:^2.1.1"
checksum: 10c0/1e579df2c152027a9ad359230927a756af507ec761728410e2c8ff7acdf19d1c567e988d22c70177a1a1bff930f33d57dc2520739aa49877bbec518df5042c72
languageName: node
linkType: hard
"@jupyterlab/apputils@npm:^4.1.2":
version: 4.1.2
resolution: "@jupyterlab/apputils@npm:4.1.2"
dependencies:
"@jupyterlab/coreutils": "npm:^6.0.2"
"@jupyterlab/observables": "npm:^5.0.2"
"@jupyterlab/rendermime-interfaces": "npm:^3.8.2"
"@jupyterlab/services": "npm:^7.0.2"
"@jupyterlab/settingregistry": "npm:^4.0.2"
"@jupyterlab/statedb": "npm:^4.0.2"
"@jupyterlab/statusbar": "npm:^4.0.2"
"@jupyterlab/translation": "npm:^4.0.2"
"@jupyterlab/ui-components": "npm:^4.0.2"
"@lumino/algorithm": "npm:^2.0.0"
"@lumino/commands": "npm:^2.1.1"
"@lumino/coreutils": "npm:^2.1.1"
"@lumino/disposable": "npm:^2.1.1"
"@lumino/domutils": "npm:^2.0.0"
"@lumino/messaging": "npm:^2.0.0"
"@lumino/signaling": "npm:^2.1.1"
"@lumino/virtualdom": "npm:^2.0.0"
"@lumino/widgets": "npm:^2.1.1"
"@types/react": "npm:^18.0.26"
react: "npm:^18.2.0"
sanitize-html: "npm:~2.7.3"
checksum: 10c0/6b3bf159f2392171d9adf990f2d7ee368d7e012817d1c0d60ceb1bb382270466ce7f31024fb79a0739a0d5cdcf7c38646f36d8e95b7a72ead7f794758d4a1922
languageName: node
linkType: hard
"@jupyterlab/builder@npm:^4.0.0":
version: 4.0.2
resolution: "@jupyterlab/builder@npm:4.0.2"
dependencies:
"@lumino/algorithm": "npm:^2.0.0"
"@lumino/application": "npm:^2.1.1"
"@lumino/commands": "npm:^2.1.1"
"@lumino/coreutils": "npm:^2.1.1"
"@lumino/disposable": "npm:^2.1.1"
"@lumino/domutils": "npm:^2.0.0"
"@lumino/dragdrop": "npm:^2.1.1"
"@lumino/messaging": "npm:^2.0.0"
"@lumino/properties": "npm:^2.0.0"
"@lumino/signaling": "npm:^2.1.1"
"@lumino/virtualdom": "npm:^2.0.0"
"@lumino/widgets": "npm:^2.1.1"
ajv: "npm:^8.12.0"
commander: "npm:^9.4.1"
css-loader: "npm:^6.7.1"
duplicate-package-checker-webpack-plugin: "npm:^3.0.0"
fs-extra: "npm:^10.1.0"
glob: "npm:~7.1.6"
license-webpack-plugin: "npm:^2.3.14"
mini-css-extract-plugin: "npm:^2.7.0"
mini-svg-data-uri: "npm:^1.4.4"
path-browserify: "npm:^1.0.0"
process: "npm:^0.11.10"
source-map-loader: "npm:~1.0.2"
style-loader: "npm:~3.3.1"
supports-color: "npm:^7.2.0"
terser-webpack-plugin: "npm:^5.3.7"
webpack: "npm:^5.76.1"
webpack-cli: "npm:^5.0.1"
webpack-merge: "npm:^5.8.0"
worker-loader: "npm:^3.0.2"
bin:
build-labextension: lib/build-labextension.js
checksum: 10c0/04ca23a0c3f8a7766bed00eda02f5c129c6e71d0ae49a8831524b830896f9e061bfafeadf4686bc6034794d6422710a7b1ac81b54b74b91241c96565f192a33b
languageName: node
linkType: hard
"@jupyterlab/codeeditor@npm:^4.0.2":
version: 4.0.2
resolution: "@jupyterlab/codeeditor@npm:4.0.2"
dependencies:
"@codemirror/state": "npm:^6.2.0"
"@jupyter/ydoc": "npm:^1.0.2"
"@jupyterlab/coreutils": "npm:^6.0.2"
"@jupyterlab/nbformat": "npm:^4.0.2"
"@jupyterlab/observables": "npm:^5.0.2"
"@jupyterlab/statusbar": "npm:^4.0.2"
"@jupyterlab/translation": "npm:^4.0.2"
"@jupyterlab/ui-components": "npm:^4.0.2"
"@lumino/coreutils": "npm:^2.1.1"
"@lumino/disposable": "npm:^2.1.1"
"@lumino/dragdrop": "npm:^2.1.1"
"@lumino/messaging": "npm:^2.0.0"
"@lumino/signaling": "npm:^2.1.1"
"@lumino/widgets": "npm:^2.1.1"
react: "npm:^18.2.0"
checksum: 10c0/096399eae3e7e94d4bdeffc4b8b39087f9fbbb2c098488e7afcf51dc1f736f5c9c14093ceef6aa9118e2069483336ad15b4272fe4474fff9d60115744614adea
languageName: node
linkType: hard
"@jupyterlab/coreutils@npm:^6.0.2":
version: 6.0.2
resolution: "@jupyterlab/coreutils@npm:6.0.2"
dependencies:
"@lumino/coreutils": "npm:^2.1.1"
"@lumino/disposable": "npm:^2.1.1"
"@lumino/signaling": "npm:^2.1.1"
minimist: "npm:~1.2.0"
path-browserify: "npm:^1.0.0"
url-parse: "npm:~1.5.4"
checksum: 10c0/b2311b5ba738c365cb71e1aa9ea5f9de371ec873230bedc4f47d1ae9c4c10781dc84d71f1a56697c3ec8941cfdc00c373af65607cd93bde3d7cb08950366f6be
languageName: node
linkType: hard
"@jupyterlab/docmanager@npm:^4.0.2":
version: 4.0.2
resolution: "@jupyterlab/docmanager@npm:4.0.2"
dependencies:
"@jupyterlab/apputils": "npm:^4.1.2"
"@jupyterlab/coreutils": "npm:^6.0.2"
"@jupyterlab/docregistry": "npm:^4.0.2"
"@jupyterlab/services": "npm:^7.0.2"
"@jupyterlab/statusbar": "npm:^4.0.2"
"@jupyterlab/translation": "npm:^4.0.2"
"@jupyterlab/ui-components": "npm:^4.0.2"
"@lumino/algorithm": "npm:^2.0.0"
"@lumino/coreutils": "npm:^2.1.1"
"@lumino/disposable": "npm:^2.1.1"
"@lumino/messaging": "npm:^2.0.0"
"@lumino/properties": "npm:^2.0.0"
"@lumino/signaling": "npm:^2.1.1"
"@lumino/widgets": "npm:^2.1.1"
react: "npm:^18.2.0"
checksum: 10c0/7c2d80d3b7a0420c191e3dcaae106ad7e10ce6a8956805304c0c075caa331257c576e56b042710ce6d042bed33febd1d00da15e621b7fc9e5b5d5c54e7d57f2e
languageName: node
linkType: hard
"@jupyterlab/docregistry@npm:^4.0.2":
version: 4.0.2
resolution: "@jupyterlab/docregistry@npm:4.0.2"
dependencies:
"@jupyter/ydoc": "npm:^1.0.2"
"@jupyterlab/apputils": "npm:^4.1.2"
"@jupyterlab/codeeditor": "npm:^4.0.2"
"@jupyterlab/coreutils": "npm:^6.0.2"
"@jupyterlab/observables": "npm:^5.0.2"
"@jupyterlab/rendermime": "npm:^4.0.2"
"@jupyterlab/rendermime-interfaces": "npm:^3.8.2"
"@jupyterlab/services": "npm:^7.0.2"
"@jupyterlab/translation": "npm:^4.0.2"
"@jupyterlab/ui-components": "npm:^4.0.2"
"@lumino/algorithm": "npm:^2.0.0"
"@lumino/coreutils": "npm:^2.1.1"
"@lumino/disposable": "npm:^2.1.1"
"@lumino/messaging": "npm:^2.0.0"
"@lumino/properties": "npm:^2.0.0"
"@lumino/signaling": "npm:^2.1.1"
"@lumino/widgets": "npm:^2.1.1"
checksum: 10c0/44788d49e4c35057fb3577b34782fb621b51b5c8a5a58f7009de9d40f3670e8818342d763d4489ae37048ec2f31d12d9044290da98c7e3ff79df62132cfaca2a
languageName: node
linkType: hard
"@jupyterlab/filebrowser@npm:^4.0.2":
version: 4.0.2
resolution: "@jupyterlab/filebrowser@npm:4.0.2"
dependencies:
"@jupyterlab/apputils": "npm:^4.1.2"
"@jupyterlab/coreutils": "npm:^6.0.2"
"@jupyterlab/docmanager": "npm:^4.0.2"
"@jupyterlab/docregistry": "npm:^4.0.2"
"@jupyterlab/services": "npm:^7.0.2"
"@jupyterlab/statedb": "npm:^4.0.2"
"@jupyterlab/statusbar": "npm:^4.0.2"
"@jupyterlab/translation": "npm:^4.0.2"
"@jupyterlab/ui-components": "npm:^4.0.2"
"@lumino/algorithm": "npm:^2.0.0"
"@lumino/coreutils": "npm:^2.1.1"
"@lumino/disposable": "npm:^2.1.1"
"@lumino/domutils": "npm:^2.0.0"
"@lumino/dragdrop": "npm:^2.1.1"
"@lumino/messaging": "npm:^2.0.0"
"@lumino/polling": "npm:^2.1.1"
"@lumino/signaling": "npm:^2.1.1"
"@lumino/virtualdom": "npm:^2.0.0"
"@lumino/widgets": "npm:^2.1.1"
react: "npm:^18.2.0"
checksum: 10c0/2e96b068e3ff536d720c7671b3f5411eb9e041618297f542740a2d77fa0139d21fca3221623edd2f28319ab140dfda9ee7d6acd94287f3c39a7ac1f31a67479e
languageName: node
linkType: hard
"@jupyterlab/nbformat@npm:^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0, @jupyterlab/nbformat@npm:^4.0.2":
version: 4.0.2
resolution: "@jupyterlab/nbformat@npm:4.0.2"
dependencies:
"@lumino/coreutils": "npm:^2.1.1"
checksum: 10c0/55181b471930496a84372bea487cde53048fa54075a549b76513330d154758b17a85822eb54bc348d847fc6904719ac35b5dba1a734b0ed951ed1648219654a4
languageName: node
linkType: hard
"@jupyterlab/observables@npm:^5.0.2":
version: 5.0.2
resolution: "@jupyterlab/observables@npm:5.0.2"
dependencies:
"@lumino/algorithm": "npm:^2.0.0"
"@lumino/coreutils": "npm:^2.1.1"
"@lumino/disposable": "npm:^2.1.1"
"@lumino/messaging": "npm:^2.0.0"
"@lumino/signaling": "npm:^2.1.1"
checksum: 10c0/b5e9812d15e8e725325ce96abbb316c8209a4b66bca62540a47af95abb95d4b009360391f7177cd0131266b4938a696e43b7a19d0a7bab7d35c775313ba2e48f
languageName: node
linkType: hard
"@jupyterlab/rendermime-interfaces@npm:^3.8.2":
version: 3.8.2
resolution: "@jupyterlab/rendermime-interfaces@npm:3.8.2"
dependencies:
"@lumino/coreutils": "npm:^1.11.0 || ^2.1.1"
"@lumino/widgets": "npm:^1.37.2 || ^2.1.1"
checksum: 10c0/3370ab0e924a3fc7dd5b9334087e092f5411fc7bbf084d68326ef5ed287db0ae3a79440e3594fcdc73103b8e225e4220328aa7586e703ed865d5ca737de31e44
languageName: node
linkType: hard
"@jupyterlab/rendermime@npm:^4.0.2":
version: 4.0.2
resolution: "@jupyterlab/rendermime@npm:4.0.2"
dependencies:
"@jupyterlab/apputils": "npm:^4.1.2"
"@jupyterlab/coreutils": "npm:^6.0.2"
"@jupyterlab/nbformat": "npm:^4.0.2"
"@jupyterlab/observables": "npm:^5.0.2"
"@jupyterlab/rendermime-interfaces": "npm:^3.8.2"
"@jupyterlab/services": "npm:^7.0.2"
"@jupyterlab/translation": "npm:^4.0.2"
"@lumino/coreutils": "npm:^2.1.1"
"@lumino/messaging": "npm:^2.0.0"
"@lumino/signaling": "npm:^2.1.1"
"@lumino/widgets": "npm:^2.1.1"
lodash.escape: "npm:^4.0.1"
checksum: 10c0/bb6acf66d1b16a40eb3910dfd43fbeae26dadd6a7af042bf7e6188ddbd3b50b749c2b530df6637bab3237b18db5a2cd517697aca765d2f91d6d4a6730840c1dd
languageName: node
linkType: hard
"@jupyterlab/services@npm:^7.0.2":
version: 7.0.2
resolution: "@jupyterlab/services@npm:7.0.2"
dependencies:
"@jupyter/ydoc": "npm:^1.0.2"
"@jupyterlab/coreutils": "npm:^6.0.2"
"@jupyterlab/nbformat": "npm:^4.0.2"
"@jupyterlab/settingregistry": "npm:^4.0.2"
"@jupyterlab/statedb": "npm:^4.0.2"
"@lumino/coreutils": "npm:^2.1.1"
"@lumino/disposable": "npm:^2.1.1"
"@lumino/polling": "npm:^2.1.1"
"@lumino/properties": "npm:^2.0.0"
"@lumino/signaling": "npm:^2.1.1"
ws: "npm:^8.11.0"
checksum: 10c0/faefb4fcacf38f3c1a3e63aa394088ce20a6ddd1a1282c449da9bab0e23f34a2bbcf49671ec45d1e6b755278a98efcad2a4f51ca2a61ef6e7d5748174937462b
languageName: node
linkType: hard
"@jupyterlab/settingregistry@npm:^4.0.2":
version: 4.0.2
resolution: "@jupyterlab/settingregistry@npm:4.0.2"
dependencies:
"@jupyterlab/nbformat": "npm:^4.0.2"
"@jupyterlab/statedb": "npm:^4.0.2"
"@lumino/commands": "npm:^2.1.1"
"@lumino/coreutils": "npm:^2.1.1"
"@lumino/disposable": "npm:^2.1.1"
"@lumino/signaling": "npm:^2.1.1"
"@rjsf/utils": "npm:^5.1.0"
ajv: "npm:^8.12.0"
json5: "npm:^2.2.3"
peerDependencies:
react: ">=16"
checksum: 10c0/01e87d232fddc5b6d91f958ca0d5281bb768f36b4c331544e7a539a7a62a4fd42d9703926be27dce1ccf6e8b56136c895627eee89d8142e876a9a186ed6b3eea
languageName: node
linkType: hard
"@jupyterlab/statedb@npm:^4.0.2":
version: 4.0.2
resolution: "@jupyterlab/statedb@npm:4.0.2"
dependencies:
"@lumino/commands": "npm:^2.1.1"
"@lumino/coreutils": "npm:^2.1.1"
"@lumino/disposable": "npm:^2.1.1"
"@lumino/properties": "npm:^2.0.0"
"@lumino/signaling": "npm:^2.1.1"
checksum: 10c0/c9c1f5984ad97178fde64e9fc3e44ea06cc645814aaca4ca5420f070180743807760d82f838cd70c9842295ad4026251e48eb3404f081f1ee3571ae74f63eed9
languageName: node
linkType: hard
"@jupyterlab/statusbar@npm:^4.0.2":
version: 4.0.2
resolution: "@jupyterlab/statusbar@npm:4.0.2"
dependencies:
"@jupyterlab/ui-components": "npm:^4.0.2"
"@lumino/algorithm": "npm:^2.0.0"
"@lumino/coreutils": "npm:^2.1.1"
"@lumino/disposable": "npm:^2.1.1"
"@lumino/messaging": "npm:^2.0.0"
"@lumino/signaling": "npm:^2.1.1"
"@lumino/widgets": "npm:^2.1.1"
react: "npm:^18.2.0"
checksum: 10c0/7c44474e263928caba33bedc34275ea59b8eb2814a5ec4ec352f7bb34112002e6ed932fe0fa67a8005a5cf25948a407fe6a89fe75eb3ea376e30409ee092091f
languageName: node
linkType: hard
"@jupyterlab/translation@npm:^4.0.2":
version: 4.0.2
resolution: "@jupyterlab/translation@npm:4.0.2"
dependencies:
"@jupyterlab/coreutils": "npm:^6.0.2"
"@jupyterlab/rendermime-interfaces": "npm:^3.8.2"
"@jupyterlab/services": "npm:^7.0.2"
"@jupyterlab/statedb": "npm:^4.0.2"
"@lumino/coreutils": "npm:^2.1.1"
checksum: 10c0/2e7eebd8067abf6172efb6c1fe2f7dc6607dbfb95d625f26cf2fc9061ee4d598e60415fb6333dbb4002d529ea8625c6a967a504db003e5a1fcdbfe745e5c983a
languageName: node
linkType: hard
"@jupyterlab/ui-components@npm:^4.0.2":
version: 4.0.2
resolution: "@jupyterlab/ui-components@npm:4.0.2"
dependencies:
"@jupyterlab/coreutils": "npm:^6.0.2"
"@jupyterlab/observables": "npm:^5.0.2"
"@jupyterlab/rendermime-interfaces": "npm:^3.8.2"
"@jupyterlab/translation": "npm:^4.0.2"
"@lumino/algorithm": "npm:^2.0.0"
"@lumino/commands": "npm:^2.1.1"
"@lumino/coreutils": "npm:^2.1.1"
"@lumino/disposable": "npm:^2.1.1"
"@lumino/messaging": "npm:^2.0.0"
"@lumino/polling": "npm:^2.1.1"
"@lumino/properties": "npm:^2.0.0"
"@lumino/signaling": "npm:^2.1.1"
"@lumino/virtualdom": "npm:^2.0.0"
"@lumino/widgets": "npm:^2.1.1"
"@rjsf/core": "npm:^5.1.0"
"@rjsf/utils": "npm:^5.1.0"
react: "npm:^18.2.0"
react-dom: "npm:^18.2.0"
typestyle: "npm:^2.0.4"
peerDependencies:
react: ^18.2.0
checksum: 10c0/264a4d10fb87c0f4fff4720a1f0603acaf7f0050b0ee48800f783cf2842efe3d3617cc3eb6f1c1cb0839492e01e842b56da7dae743a4e6c07d542db9ec3722c4
languageName: node
linkType: hard
"@lumino/algorithm@npm:^2.0.0":
version: 2.0.0
resolution: "@lumino/algorithm@npm:2.0.0"
checksum: 10c0/b6964fb2f6edf20dcfe7421e4c8f24fc8391f10f91aa8cd213416061ed8c07a2215656161a3e226a7c7ab00993e703552293174bcd5ce46c0cf0584b0987cbfb
languageName: node
linkType: hard
"@lumino/application@npm:^2.1.1":
version: 2.1.1
resolution: "@lumino/application@npm:2.1.1"
dependencies:
"@lumino/commands": "npm:^2.1.1"
"@lumino/coreutils": "npm:^2.1.1"
"@lumino/widgets": "npm:^2.1.1"
checksum: 10c0/3206e02fdc5867e0548383299bf5d21027057dd6eaa2f8afd62dc9b575313e76e9112dbc3d1051482014275a3f07f1a9bb613d35299ffb84e06323977371a6d8
languageName: node
linkType: hard
"@lumino/collections@npm:^2.0.0":
version: 2.0.0
resolution: "@lumino/collections@npm:2.0.0"
dependencies:
"@lumino/algorithm": "npm:^2.0.0"
checksum: 10c0/0c8e68ba27f90cabb2ca24dd0e7c422c07e74a9db3c4f27cd51e5ed3d381a2a49eabdcc62b0c83bea7f6003ca3c12ada0e5ac9408a720b500f355fd8a6929820
languageName: node
linkType: hard
"@lumino/commands@npm:^2.1.1":
version: 2.1.1
resolution: "@lumino/commands@npm:2.1.1"
dependencies:
"@lumino/algorithm": "npm:^2.0.0"
"@lumino/coreutils": "npm:^2.1.1"
"@lumino/disposable": "npm:^2.1.1"
"@lumino/domutils": "npm:^2.0.0"
"@lumino/keyboard": "npm:^2.0.0"
"@lumino/signaling": "npm:^2.1.1"
"@lumino/virtualdom": "npm:^2.0.0"
checksum: 10c0/88f2fb640b104816564e479512e535fbd262c42ff066532ab58c35d656500f0582c341af175563425f4fbbcd79b62ded7a6930bd2365725015a6d192b9d07688
languageName: node
linkType: hard
"@lumino/coreutils@npm:^1.11.0 || ^2.0.0, @lumino/coreutils@npm:^1.11.0 || ^2.1.1, @lumino/coreutils@npm:^2.1.1":
version: 2.1.1
resolution: "@lumino/coreutils@npm:2.1.1"
checksum: 10c0/837ebfb619e265782cf49f8972ccd634ae47932d08dde4f192a3db7ae679e6a9ea21da671b86aca75f3e5ea89a35b7243b8d7bc853e6690fde0d58a55fc40cfb
languageName: node
linkType: hard
"@lumino/disposable@npm:^1.10.0 || ^2.0.0, @lumino/disposable@npm:^2.1.1":
version: 2.1.1
resolution: "@lumino/disposable@npm:2.1.1"
dependencies:
"@lumino/signaling": "npm:^2.1.1"
checksum: 10c0/628846218f48c9cd64b6f6f92e30ee25b254b3877b6bac707a4e5f542540d4431b11886d46dae47a568025bc33f724bd5256c04ddfb417dc4203b7496646a608
languageName: node
linkType: hard
"@lumino/domutils@npm:^2.0.0":
version: 2.0.0
resolution: "@lumino/domutils@npm:2.0.0"
checksum: 10c0/f2a8cb8bb83d007dac464c99ab7fb5f87c857863798187a98967e7c3003ea70f8bf1b51cc1dba345bdf2df57e4f3f5a4a66d323b19a08c8528039e4783b52010
languageName: node
linkType: hard
"@lumino/dragdrop@npm:^2.1.1":
version: 2.1.1
resolution: "@lumino/dragdrop@npm:2.1.1"
dependencies:
"@lumino/coreutils": "npm:^2.1.1"
"@lumino/disposable": "npm:^2.1.1"
checksum: 10c0/0e02f0cc1b14cc6fd6ae953680801dcb58ac74e04ec6a39569d87567b9d5d0684ed420c53bb9398dc84808ccddfa46a9965dd1772d1c65214ae80bd9e6ef4aaf
languageName: node
linkType: hard
"@lumino/keyboard@npm:^2.0.0":
version: 2.0.0
resolution: "@lumino/keyboard@npm:2.0.0"
checksum: 10c0/da7203d1ad43cf12b786b89391f00ffd6bdfd9063473c84653b34dc652b03d301429afa311eccd68e2bf11baba4c5926540286d2f660b4059b6ff6a864f121d2
languageName: node
linkType: hard
"@lumino/messaging@npm:^2.0.0":
version: 2.0.0
resolution: "@lumino/messaging@npm:2.0.0"
dependencies:
"@lumino/algorithm": "npm:^2.0.0"
"@lumino/collections": "npm:^2.0.0"
checksum: 10c0/c620cfbbc9f04ae001d3394ad144cd6f844eb61e2956996dbfba8e8ed942f6b621a0a39227b32cd26dab998f5c02b205437b39f754f9e7a58b540e8a4956a285
languageName: node
linkType: hard
"@lumino/polling@npm:^2.1.1":
version: 2.1.1
resolution: "@lumino/polling@npm:2.1.1"
dependencies:
"@lumino/coreutils": "npm:^2.1.1"
"@lumino/disposable": "npm:^2.1.1"
"@lumino/signaling": "npm:^2.1.1"
checksum: 10c0/bb654acf3c4562be17d83fff2d49748fbaab3a501b476ab5b8861628ac9309cde5c34b69ec3539fb3eb7ea561a16701426c5fbd688d3d56dd777df86563982c9
languageName: node
linkType: hard
"@lumino/properties@npm:^2.0.0":
version: 2.0.0
resolution: "@lumino/properties@npm:2.0.0"
checksum: 10c0/8f56e50c6148861472b6789fae49889cdf17b12c06965e16065f6f569235fd4159fb37844b8dc5a20ac5e2a0fe6bb200ac6b6a381479c5ae792938d486ebadcd
languageName: node
linkType: hard
"@lumino/signaling@npm:^1.10.0 || ^2.0.0, @lumino/signaling@npm:^2.0.0, @lumino/signaling@npm:^2.1.1":
version: 2.1.1
resolution: "@lumino/signaling@npm:2.1.1"
dependencies:
"@lumino/algorithm": "npm:^2.0.0"
"@lumino/coreutils": "npm:^2.1.1"
checksum: 10c0/123a7309d683aacc38bc5df6da86ad4019116e7a01dabd82ee0137041b29f7fafa5b24428e5d03fb55ca7a6fee8cab1823d38e07649d54e54b97da40f5a7fba8
languageName: node
linkType: hard
"@lumino/virtualdom@npm:^2.0.0":
version: 2.0.0
resolution: "@lumino/virtualdom@npm:2.0.0"
dependencies:
"@lumino/algorithm": "npm:^2.0.0"
checksum: 10c0/f1e961971520db9a4e458676416c58c73dee68001ebbf16a29e367883c5da92f6fb23eba7f3d2b6dd2294278f6458cd707f958a029bbf6894224c970257b4a83
languageName: node
linkType: hard
"@lumino/widgets@npm:^1.37.2 || ^2.1.1, @lumino/widgets@npm:^2.0.1, @lumino/widgets@npm:^2.1.1":
version: 2.1.1
resolution: "@lumino/widgets@npm:2.1.1"
dependencies:
"@lumino/algorithm": "npm:^2.0.0"
"@lumino/commands": "npm:^2.1.1"
"@lumino/coreutils": "npm:^2.1.1"
"@lumino/disposable": "npm:^2.1.1"
"@lumino/domutils": "npm:^2.0.0"
"@lumino/dragdrop": "npm:^2.1.1"
"@lumino/keyboard": "npm:^2.0.0"
"@lumino/messaging": "npm:^2.0.0"
"@lumino/properties": "npm:^2.0.0"
"@lumino/signaling": "npm:^2.1.1"
"@lumino/virtualdom": "npm:^2.0.0"
checksum: 10c0/668e86e66f884c881d49ba11306a8f79a38c483ec2518828a73941c4a89856d0c4e7872e03326502df8f37a474c3cd3368a8b36df2e49de9baa08032fe03536f
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: 10c0/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: 10c0/88dafe5e3e29a388b07264680dc996c17f4bda48d163a9d4f5c1112979f0ce8ec72aa7116122c350b4e7976bc5566dc3ddb579be1ceaacc727872eb4ed93926d
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: 10c0/db9de047c3bb9b51f9335a7bb46f4fcfb6829fb628318c12115fbaf7d369bfce71c15b103d1fc3b464812d936220ee9bc1c8f762d032c9f6be9acc99249095b1
languageName: node
linkType: hard
"@rjsf/core@npm:^5.1.0":
version: 5.8.1
resolution: "@rjsf/core@npm:5.8.1"
dependencies:
lodash: "npm:^4.17.21"
lodash-es: "npm:^4.17.21"
markdown-to-jsx: "npm:^7.2.1"
nanoid: "npm:^3.3.6"
prop-types: "npm:^15.8.1"
peerDependencies:
"@rjsf/utils": ^5.8.x
react: ^16.14.0 || >=17
checksum: 10c0/8dde180f396a076f9b838f15300e4e79de90b03448af1906b941d2048ab694f1b45295da3a6eb3dffdd3b503e2c8e8b7daae38f96b15e6c3842645e875c6eab9
languageName: node
linkType: hard
"@rjsf/utils@npm:^5.1.0":
version: 5.8.1
resolution: "@rjsf/utils@npm:5.8.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: 10c0/88f902b0beccefa99d7ff03bc707256b007de1c5d67006f956a86ed9b55c1872890959a33309e7280ea0653966d3b916331f79877e85d236f183e82063bf5b83
languageName: node
linkType: hard
"@samverschueren/stream-to-observable@npm:^0.3.0":
version: 0.3.1
resolution: "@samverschueren/stream-to-observable@npm:0.3.1"
dependencies:
any-observable: "npm:^0.3.0"
peerDependenciesMeta:
rxjs:
optional: true
zen-observable:
optional: true
checksum: 10c0/0d874453f6bc2460d71783292291f52feb36c2a75314b1072a6ffe6206562f33e9d664a554348d565a6b54da9041d75070371052545bc329caaa52f64216987f
languageName: node
linkType: hard
"@types/base64-js@npm:^1.2.5":
version: 1.3.0
resolution: "@types/base64-js@npm:1.3.0"
checksum: 10c0/6db015a7034508942413d72881df80b6c6af7186fcbf1ac39881a802daaef12dbb43bd3710ce83ff3f89b34491a5f552c0cd9012779a09bda249c5fd39590b6b
languageName: node
linkType: hard
"@types/estree@npm:^1.0.5":
version: 1.0.5
resolution: "@types/estree@npm:1.0.5"
checksum: 10c0/b3b0e334288ddb407c7b3357ca67dbee75ee22db242ca7c56fe27db4e1a31989cb8af48a84dd401deb787fe10cc6b2ab1ee82dc4783be87ededbe3d53c79c70d
languageName: node
linkType: hard
"@types/json-schema@npm:^7.0.11, @types/json-schema@npm:^7.0.9":
version: 7.0.12
resolution: "@types/json-schema@npm:7.0.12"
checksum: 10c0/2c39946ae321fe42d085c61a85872a81bbee70f9b2054ad344e8811dfc478fdbaf1ebf5f2989bb87c895ba2dfc3b1dcba85db11e467bbcdc023708814207791c
languageName: node
linkType: hard
"@types/json-schema@npm:^7.0.5, @types/json-schema@npm:^7.0.8":
version: 7.0.9
resolution: "@types/json-schema@npm:7.0.9"
checksum: 10c0/46a9e92b7922495a50f55632d802f7e7ab2dffd76b3f894baf7b28012e73983df832977bedd748aa9a2bc8400c6e8659ca39faf6ccd93d71d41d5b0293338a0e
languageName: node
linkType: hard
"@types/json5@npm:^0.0.29":
version: 0.0.29
resolution: "@types/json5@npm:0.0.29"
checksum: 10c0/6bf5337bc447b706bb5b4431d37686aa2ea6d07cfd6f79cc31de80170d6ff9b1c7384a9c0ccbc45b3f512bae9e9f75c2e12109806a15331dc94e8a8db6dbb4ac
languageName: node
linkType: hard
"@types/minimist@npm:^1.2.0":
version: 1.2.2
resolution: "@types/minimist@npm:1.2.2"
checksum: 10c0/f220f57f682bbc3793dab4518f8e2180faa79d8e2589c79614fd777d7182be203ba399020c3a056a115064f5d57a065004a32b522b2737246407621681b24137
languageName: node
linkType: hard
"@types/node@npm:*":
version: 20.3.0
resolution: "@types/node@npm:20.3.0"
checksum: 10c0/f717d92c29c4877db394b604771b3734216f013312f93252f72c2018aabe8083be905fbcf0644c859938c8183b6e0245faaeaab94c9e78268b87a449bc6ef4aa
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: 10c0/c90b163741f27a1a4c3b1869d7d5c272adbd355eb50d5f060f9ce122ce4342cf35f5b0005f55ef780596cacfeb69b7eee54cd3c2e02d37f75e664945b6e75fc6
languageName: node
linkType: hard
"@types/parse-json@npm:^4.0.0":
version: 4.0.0
resolution: "@types/parse-json@npm:4.0.0"
checksum: 10c0/1d3012ab2fcdad1ba313e1d065b737578f6506c8958e2a7a5bdbdef517c7e930796cb1599ee067d5dee942fb3a764df64b5eef7e9ae98548d776e86dcffba985
languageName: node
linkType: hard
"@types/prop-types@npm:*":
version: 15.7.5
resolution: "@types/prop-types@npm:15.7.5"
checksum: 10c0/648aae41423821c61c83823ae36116c8d0f68258f8b609bdbc257752dcd616438d6343d554262aa9a7edaee5a19aca2e028a74fa2d0f40fffaf2816bc7056857
languageName: node
linkType: hard
"@types/react@npm:^18.0.26":
version: 18.2.11
resolution: "@types/react@npm:18.2.11"
dependencies:
"@types/prop-types": "npm:*"
"@types/scheduler": "npm:*"
csstype: "npm:^3.0.2"
checksum: 10c0/9360d7be13195050eb16598796056123ee9d30470e7073a914300fed9282585d0dd0638bb5ff65843e308c3ac213d25b3388e8186f3134490c758f18f11f3bd8
languageName: node
linkType: hard
"@types/scheduler@npm:*":
version: 0.16.2
resolution: "@types/scheduler@npm:0.16.2"
checksum: 10c0/89a3a922f03609b61c270d534226791edeedcb1b06f0225d5543ac17830254624ef9d8a97ad05418e4ce549dd545bddf1ff28cb90658ff10721ad14556ca68a5
languageName: node
linkType: hard
"@types/semver@npm:^7.3.12":
version: 7.5.0
resolution: "@types/semver@npm:7.5.0"
checksum: 10c0/ca4ba4642b5972b6e88e73c5bc02bbaceb8d76bce71748d86e3e95042d4e5a44603113a1dcd2cb9b73ad6f91f6e4ab73185eb41bbfc9c73b11f0ed3db3b7443a
languageName: node
linkType: hard
"@types/source-list-map@npm:*":
version: 0.1.2
resolution: "@types/source-list-map@npm:0.1.2"
checksum: 10c0/0538ce317294febf40ed3fc3a2e483fa4aee8ba85584a66e5ed9c0af9ea48a348960bc467076643cb56aeafdd7d2252e90c75e68ef664c0477ec87ea0554ffdc
languageName: node
linkType: hard
"@types/text-encoding@npm:^0.0.35":
version: 0.0.35
resolution: "@types/text-encoding@npm:0.0.35"
checksum: 10c0/98807737d903c8e1e947299a03a947bc69fad78170307e5590cf01283b6c8343cc133c77db0a0688e5c74f3987b61d9869aa81320935b07b0304db8ca947df63
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: 10c0/77b1abc1e84bffee9edc11ac636e71c554f457dcdb3b58fe4884a2a135c2301b8c7797924339afa64c9b32f67700f17797de3b94186a5b4d9bde09ca3099b334
languageName: node
linkType: hard
"@typescript-eslint/eslint-plugin@npm:^5.55.0":
version: 5.59.9
resolution: "@typescript-eslint/eslint-plugin@npm:5.59.9"
dependencies:
"@eslint-community/regexpp": "npm:^4.4.0"
"@typescript-eslint/scope-manager": "npm:5.59.9"
"@typescript-eslint/type-utils": "npm:5.59.9"
"@typescript-eslint/utils": "npm:5.59.9"
debug: "npm:^4.3.4"
grapheme-splitter: "npm:^1.0.4"
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: 10c0/4bb9981bcc009c044ffd6b64288309480df2b6c9cdf6b345987e4b565d0973d1d98b7209f6b46b92880735d788f564e17553641087aa59f67990c84526622a27
languageName: node
linkType: hard
"@typescript-eslint/parser@npm:^5.55.0":
version: 5.59.9
resolution: "@typescript-eslint/parser@npm:5.59.9"
dependencies:
"@typescript-eslint/scope-manager": "npm:5.59.9"
"@typescript-eslint/types": "npm:5.59.9"
"@typescript-eslint/typescript-estree": "npm:5.59.9"
debug: "npm:^4.3.4"
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
peerDependenciesMeta:
typescript:
optional: true
checksum: 10c0/af0e041e8a541734ff237ec0eac47e355c2f78dd2b0db4eb4ab0c10ba1b6d5d70f84ddc16f856bc72c4cacd53ef04b5f4948baffb5c8cb2d9a0ffd83a8fbc547
languageName: node
linkType: hard
"@typescript-eslint/scope-manager@npm:5.59.9":
version: 5.59.9
resolution: "@typescript-eslint/scope-manager@npm:5.59.9"
dependencies:
"@typescript-eslint/types": "npm:5.59.9"
"@typescript-eslint/visitor-keys": "npm:5.59.9"
checksum: 10c0/41622fd270e5b8574347ed5dd020bbb9752d85e6f40df180e944c1110d9bd2227a949067feb23dd4117dd2be0623c05a47bc363abe605c96deb295753f6dd080
languageName: node
linkType: hard