-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathyarn.lock
More file actions
9780 lines (8811 loc) · 329 KB
/
yarn.lock
File metadata and controls
9780 lines (8811 loc) · 329 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 6
cacheKey: 8
"@babel/code-frame@npm:^7.0.0":
version: 7.27.1
resolution: "@babel/code-frame@npm:7.27.1"
dependencies:
"@babel/helper-validator-identifier": ^7.27.1
js-tokens: ^4.0.0
picocolors: ^1.1.1
checksum: 5874edc5d37406c4a0bb14cf79c8e51ad412fb0423d176775ac14fc0259831be1bf95bdda9c2aa651126990505e09a9f0ed85deaa99893bc316d2682c5115bdc
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.27.1":
version: 7.28.5
resolution: "@babel/helper-validator-identifier@npm:7.28.5"
checksum: 5a251a6848e9712aea0338f659a1a3bd334d26219d5511164544ca8ec20774f098c3a6661e9da65a0d085c745c00bb62c8fada38a62f08fa1f8053bc0aeb57e4
languageName: node
linkType: hard
"@codemirror/state@npm:^6.5.2":
version: 6.5.2
resolution: "@codemirror/state@npm:6.5.2"
dependencies:
"@marijn/find-cluster-break": ^1.0.0
checksum: 4473a79475070d73f2e72f2eaaee5b69d2833b5020faa9714609d95dd03f0e5ad02cad8031a541dcd748436842a300332a2925317b39ffa09e3b4831145d98bc
languageName: node
linkType: hard
"@conda-org/rattler@npm:^0.3.5":
version: 0.3.5
resolution: "@conda-org/rattler@npm:0.3.5"
checksum: 3f18697c380cf13f91a27bcd2c64eb7ccd3113f7ab104d8f5bc2d5be0ab217e7cf161217de601fd477014629e96c445eadd354d6f5473c117e6d68f8a41440cb
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
"@emnapi/core@npm:^1.1.0":
version: 1.7.1
resolution: "@emnapi/core@npm:1.7.1"
dependencies:
"@emnapi/wasi-threads": 1.1.0
tslib: ^2.4.0
checksum: 45274d4916c29ca39bb1833269524b8ccccc4295902193e640843df37ae4c35cf65a9d557d34d2eff770745116542af75feeb60d73088086fee791192cbee292
languageName: node
linkType: hard
"@emnapi/runtime@npm:^1.1.0":
version: 1.7.1
resolution: "@emnapi/runtime@npm:1.7.1"
dependencies:
tslib: ^2.4.0
checksum: a7429af887703bae05c360bc089d1ffbb99a8b5fd2645d8e1034737523f0323e9d29510c3569c3b8f5a516e86975aa9fcdb3601d1907c216f972e1b8d3ce82e1
languageName: node
linkType: hard
"@emnapi/wasi-threads@npm:1.1.0":
version: 1.1.0
resolution: "@emnapi/wasi-threads@npm:1.1.0"
dependencies:
tslib: ^2.4.0
checksum: 6cffe35f3e407ae26236092991786db5968b4265e6e55f4664bf6f2ce0508e2a02a44ce6ebb16f2acd2f6589efb293f4f9d09cc9fbf80c00fc1a203accc94196
languageName: node
linkType: hard
"@emscripten-forge/mambajs-core@npm:^0.21.1":
version: 0.21.1
resolution: "@emscripten-forge/mambajs-core@npm:0.21.1"
dependencies:
"@emscripten-forge/untarjs": ^5.3.2
yaml: ^2.7.0
checksum: 94d88e62edb0074817c0cb5bff61c4c8dd888f8e71a4fe7746c096af930c4aa41151eb6ce64aeefa3b46b0227e23b66dd6cc1ed411166bc17a956882990cf1ce
languageName: node
linkType: hard
"@emscripten-forge/mambajs@npm:^0.21.1":
version: 0.21.1
resolution: "@emscripten-forge/mambajs@npm:0.21.1"
dependencies:
"@conda-org/rattler": ^0.3.5
"@emscripten-forge/mambajs-core": ^0.21.1
yaml: ^2.7.0
checksum: d2d283bdbe0ac030d78b6b1b889a1bd95138a840d7489d520cf881efc367c6f480ba7ce569a14a87285a47d77c6b426ded6ea2a076b0ce6911e9cee370d27deb
languageName: node
linkType: hard
"@emscripten-forge/untarjs@npm:^5.3.2":
version: 5.3.3
resolution: "@emscripten-forge/untarjs@npm:5.3.3"
dependencies:
assert: ^2.1.0
process: ^0.11.10
url: ^0.11.4
checksum: e6c1f1567f6d57fcfdca990cc07a8175a78b8841fb7ebf42732f9abcea3c28bd9f84d93bb5bb8dbf7561e468713db96c8588f9c84d53fd54b1d235eacdedbc04
languageName: node
linkType: hard
"@eslint-community/eslint-utils@npm:^4.2.0, @eslint-community/eslint-utils@npm:^4.4.0":
version: 4.9.0
resolution: "@eslint-community/eslint-utils@npm:4.9.0"
dependencies:
eslint-visitor-keys: ^3.4.3
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
checksum: ae9b98eea006d1354368804b0116b8b45017a4e47b486d1b9cfa048a8ed3dc69b9b074eb2b2acb14034e6897c24048fd42b6a6816d9dc8bb9daad79db7d478d2
languageName: node
linkType: hard
"@eslint-community/regexpp@npm:^4.5.1, @eslint-community/regexpp@npm:^4.6.1":
version: 4.12.2
resolution: "@eslint-community/regexpp@npm:4.12.2"
checksum: 1770bc81f676a72f65c7200b5675ff7a349786521f30e66125faaf767fde1ba1c19c3790e16ba8508a62a3933afcfc806a893858b3b5906faf693d862b9e4120
languageName: node
linkType: hard
"@eslint/eslintrc@npm:^2.1.4":
version: 2.1.4
resolution: "@eslint/eslintrc@npm:2.1.4"
dependencies:
ajv: ^6.12.4
debug: ^4.3.2
espree: ^9.6.0
globals: ^13.19.0
ignore: ^5.2.0
import-fresh: ^3.2.1
js-yaml: ^4.1.0
minimatch: ^3.1.2
strip-json-comments: ^3.1.1
checksum: 10957c7592b20ca0089262d8c2a8accbad14b4f6507e35416c32ee6b4dbf9cad67dfb77096bbd405405e9ada2b107f3797fe94362e1c55e0b09d6e90dd149127
languageName: node
linkType: hard
"@eslint/js@npm:8.57.1":
version: 8.57.1
resolution: "@eslint/js@npm:8.57.1"
checksum: 2afb77454c06e8316793d2e8e79a0154854d35e6782a1217da274ca60b5044d2c69d6091155234ed0551a1e408f86f09dd4ece02752c59568fa403e60611e880
languageName: node
linkType: hard
"@fortawesome/fontawesome-free@npm:^5.12.0":
version: 5.15.4
resolution: "@fortawesome/fontawesome-free@npm:5.15.4"
checksum: 32281c3df4075290d9a96dfc22f72fadb3da7055d4117e48d34046b8c98032a55fa260ae351b0af5d6f6fb57a2f5d79a4abe52af456da35195f7cb7dda27b4a2
languageName: node
linkType: hard
"@humanwhocodes/config-array@npm:^0.13.0":
version: 0.13.0
resolution: "@humanwhocodes/config-array@npm:0.13.0"
dependencies:
"@humanwhocodes/object-schema": ^2.0.3
debug: ^4.3.1
minimatch: ^3.0.5
checksum: eae69ff9134025dd2924f0b430eb324981494be26f0fddd267a33c28711c4db643242cf9fddf7dadb9d16c96b54b2d2c073e60a56477df86e0173149313bd5d6
languageName: node
linkType: hard
"@humanwhocodes/module-importer@npm:^1.0.1":
version: 1.0.1
resolution: "@humanwhocodes/module-importer@npm:1.0.1"
checksum: 0fd22007db8034a2cdf2c764b140d37d9020bbfce8a49d3ec5c05290e77d4b0263b1b972b752df8c89e5eaa94073408f2b7d977aed131faf6cf396ebb5d7fb61
languageName: node
linkType: hard
"@humanwhocodes/object-schema@npm:^2.0.3":
version: 2.0.3
resolution: "@humanwhocodes/object-schema@npm:2.0.3"
checksum: d3b78f6c5831888c6ecc899df0d03bcc25d46f3ad26a11d7ea52944dc36a35ef543fad965322174238d677a43d5c694434f6607532cff7077062513ad7022631
languageName: node
linkType: hard
"@hutson/parse-repository-url@npm:^3.0.0":
version: 3.0.2
resolution: "@hutson/parse-repository-url@npm:3.0.2"
checksum: 39992c5f183c5ca3d761d6ed9dfabcb79b5f3750bf1b7f3532e1dc439ca370138bbd426ee250fdaba460bc948e6761fbefd484b8f4f36885d71ded96138340d1
languageName: node
linkType: hard
"@inquirer/external-editor@npm:^1.0.0":
version: 1.0.3
resolution: "@inquirer/external-editor@npm:1.0.3"
dependencies:
chardet: ^2.1.1
iconv-lite: ^0.7.0
peerDependencies:
"@types/node": ">=18"
peerDependenciesMeta:
"@types/node":
optional: true
checksum: 9bd7a05247a00408c194648c74046d8a212df1e6b9fe0879b945ebfc35c2524e995e43f7ecd83f14d0bd4e31f985d18819efc31c27810e2c2b838ded7261431f
languageName: node
linkType: hard
"@isaacs/cliui@npm:^8.0.2":
version: 8.0.2
resolution: "@isaacs/cliui@npm:8.0.2"
dependencies:
string-width: ^5.1.2
string-width-cjs: "npm:string-width@^4.2.0"
strip-ansi: ^7.0.1
strip-ansi-cjs: "npm:strip-ansi@^6.0.1"
wrap-ansi: ^8.1.0
wrap-ansi-cjs: "npm:wrap-ansi@^7.0.0"
checksum: 4a473b9b32a7d4d3cfb7a614226e555091ff0c5a29a1734c28c72a182c2f6699b26fc6b5c2131dfd841e86b185aea714c72201d7c98c2fba5f17709333a67aeb
languageName: node
linkType: hard
"@isaacs/string-locale-compare@npm:^1.1.0":
version: 1.1.0
resolution: "@isaacs/string-locale-compare@npm:1.1.0"
checksum: 7287da5d11497b82c542d3c2abe534808015be4f4883e71c26853277b5456f6bbe4108535db847a29f385ad6dc9318ffb0f55ee79bb5f39993233d7dccf8751d
languageName: node
linkType: hard
"@jest/schemas@npm:^29.6.3":
version: 29.6.3
resolution: "@jest/schemas@npm:29.6.3"
dependencies:
"@sinclair/typebox": ^0.27.8
checksum: 910040425f0fc93cd13e68c750b7885590b8839066dfa0cd78e7def07bbb708ad869381f725945d66f2284de5663bbecf63e8fdd856e2ae6e261ba30b1687e93
languageName: node
linkType: hard
"@jridgewell/gen-mapping@npm:^0.3.5":
version: 0.3.13
resolution: "@jridgewell/gen-mapping@npm:0.3.13"
dependencies:
"@jridgewell/sourcemap-codec": ^1.5.0
"@jridgewell/trace-mapping": ^0.3.24
checksum: f2105acefc433337145caa3c84bba286de954f61c0bc46279bbd85a9e6a02871089717fa060413cfb6a9d44189fe8313b2d1cabf3a2eb3284d208fd5f75c54ff
languageName: node
linkType: hard
"@jridgewell/resolve-uri@npm:^3.1.0":
version: 3.1.2
resolution: "@jridgewell/resolve-uri@npm:3.1.2"
checksum: 83b85f72c59d1c080b4cbec0fef84528963a1b5db34e4370fa4bd1e3ff64a0d80e0cee7369d11d73c704e0286fb2865b530acac7a871088fbe92b5edf1000870
languageName: node
linkType: hard
"@jridgewell/source-map@npm:^0.3.3":
version: 0.3.11
resolution: "@jridgewell/source-map@npm:0.3.11"
dependencies:
"@jridgewell/gen-mapping": ^0.3.5
"@jridgewell/trace-mapping": ^0.3.25
checksum: c8a0011cc67e701f270fa042e32b312f382c413bcc70ca9c03684687cbf5b64d5eed87d4afa36dddaabe60ab3da6db4935f878febd9cfc7f82724ea1a114d344
languageName: node
linkType: hard
"@jridgewell/sourcemap-codec@npm:^1.4.14, @jridgewell/sourcemap-codec@npm:^1.5.0":
version: 1.5.5
resolution: "@jridgewell/sourcemap-codec@npm:1.5.5"
checksum: c2e36e67971f719a8a3a85ef5a5f580622437cc723c35d03ebd0c9c0b06418700ef006f58af742791f71f6a4fc68fcfaf1f6a74ec2f9a3332860e9373459dae7
languageName: node
linkType: hard
"@jridgewell/trace-mapping@npm:^0.3.24, @jridgewell/trace-mapping@npm:^0.3.25":
version: 0.3.31
resolution: "@jridgewell/trace-mapping@npm:0.3.31"
dependencies:
"@jridgewell/resolve-uri": ^3.1.0
"@jridgewell/sourcemap-codec": ^1.4.14
checksum: af8fda2431348ad507fbddf8e25f5d08c79ecc94594061ce402cf41bc5aba1a7b3e59bf0fd70a619b35f33983a3f488ceeba8faf56bff784f98bb5394a8b7d47
languageName: node
linkType: hard
"@jupyter/react-components@npm:^0.16.6":
version: 0.16.7
resolution: "@jupyter/react-components@npm:0.16.7"
dependencies:
"@jupyter/web-components": ^0.16.7
react: ">=17.0.0 <19.0.0"
checksum: 37894347e63ebb528725e8b8b4038d138019823f5c9e28e3f6abb93b46d771b2ee3cc004d5ff7d9a06a93f2d90e41000bd2abae14364be34ba99c5e05864810e
languageName: node
linkType: hard
"@jupyter/web-components@npm:^0.16.6, @jupyter/web-components@npm:^0.16.7":
version: 0.16.7
resolution: "@jupyter/web-components@npm:0.16.7"
dependencies:
"@microsoft/fast-colors": ^5.3.1
"@microsoft/fast-element": ^1.12.0
"@microsoft/fast-foundation": ^2.49.4
"@microsoft/fast-web-utilities": ^5.4.1
checksum: ec3336247bbabb2e2587c2cf8b9d0e80786b454916dd600b3d6791bf08c3d1e45a7ec1becf366a5491ab56b0be020baa8c50a5b6067961faf5ec904de31243aa
languageName: node
linkType: hard
"@jupyter/ydoc@npm:^3.1.0":
version: 3.3.1
resolution: "@jupyter/ydoc@npm:3.3.1"
dependencies:
"@jupyterlab/nbformat": ^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0
"@lumino/coreutils": ^1.11.0 || ^2.0.0
"@lumino/disposable": ^1.10.0 || ^2.0.0
"@lumino/signaling": ^1.10.0 || ^2.0.0
y-protocols: ^1.0.5
yjs: ^13.5.40
checksum: 05f4235104a682663b71929a0dd481a6bb16e745b9ea7357282caf562d617a8b4117e6d076b9e12f7c7fbfcbd82a8cdbba9b2157055cc0539c3fd015a9e1bbda
languageName: node
linkType: hard
"@jupyterlab/application@npm:^4.5.0, @jupyterlab/application@npm:~4.5.0":
version: 4.5.0
resolution: "@jupyterlab/application@npm:4.5.0"
dependencies:
"@fortawesome/fontawesome-free": ^5.12.0
"@jupyterlab/apputils": ^4.6.0
"@jupyterlab/coreutils": ^6.5.0
"@jupyterlab/docregistry": ^4.5.0
"@jupyterlab/rendermime": ^4.5.0
"@jupyterlab/rendermime-interfaces": ^3.13.0
"@jupyterlab/services": ^7.5.0
"@jupyterlab/statedb": ^4.5.0
"@jupyterlab/translation": ^4.5.0
"@jupyterlab/ui-components": ^4.5.0
"@lumino/algorithm": ^2.0.4
"@lumino/application": ^2.4.5
"@lumino/commands": ^2.3.3
"@lumino/coreutils": ^2.2.2
"@lumino/disposable": ^2.1.5
"@lumino/messaging": ^2.0.4
"@lumino/polling": ^2.1.5
"@lumino/properties": ^2.0.4
"@lumino/signaling": ^2.1.5
"@lumino/widgets": ^2.7.2
checksum: f457adc646cadb120b6eb0608a244a89b3fa2d2cde7c6906bcb79c109a278648e07d595e7276b24a353a818cc4ddd9542b4f0eb3dd0774bb39d8385f978156e4
languageName: node
linkType: hard
"@jupyterlab/apputils@npm:^4.6.0, @jupyterlab/apputils@npm:~4.6.0":
version: 4.6.0
resolution: "@jupyterlab/apputils@npm:4.6.0"
dependencies:
"@jupyterlab/coreutils": ^6.5.0
"@jupyterlab/observables": ^5.5.0
"@jupyterlab/rendermime-interfaces": ^3.13.0
"@jupyterlab/services": ^7.5.0
"@jupyterlab/settingregistry": ^4.5.0
"@jupyterlab/statedb": ^4.5.0
"@jupyterlab/statusbar": ^4.5.0
"@jupyterlab/translation": ^4.5.0
"@jupyterlab/ui-components": ^4.5.0
"@lumino/algorithm": ^2.0.4
"@lumino/commands": ^2.3.3
"@lumino/coreutils": ^2.2.2
"@lumino/disposable": ^2.1.5
"@lumino/domutils": ^2.0.4
"@lumino/messaging": ^2.0.4
"@lumino/signaling": ^2.1.5
"@lumino/virtualdom": ^2.0.4
"@lumino/widgets": ^2.7.2
"@types/react": ^18.0.26
react: ^18.2.0
sanitize-html: ~2.12.1
checksum: f264b4e27d76b86415bac70e280828dd68be564bee1d66c2cd1cfe70f5a182f68eab2d94415a5578d292059c4dff61d4d0be6ee1a1b6e2b2305a5c1fcce1408f
languageName: node
linkType: hard
"@jupyterlab/builder@npm:^4.5.0":
version: 4.5.0
resolution: "@jupyterlab/builder@npm:4.5.0"
dependencies:
"@lumino/algorithm": ^2.0.4
"@lumino/application": ^2.4.5
"@lumino/commands": ^2.3.3
"@lumino/coreutils": ^2.2.2
"@lumino/disposable": ^2.1.5
"@lumino/domutils": ^2.0.4
"@lumino/dragdrop": ^2.1.7
"@lumino/messaging": ^2.0.4
"@lumino/properties": ^2.0.4
"@lumino/signaling": ^2.1.5
"@lumino/virtualdom": ^2.0.4
"@lumino/widgets": ^2.7.2
ajv: ^8.12.0
commander: ^9.4.1
css-loader: ^6.7.1
duplicate-package-checker-webpack-plugin: ^3.0.0
fs-extra: ^10.1.0
glob: ~7.1.6
license-webpack-plugin: ^2.3.14
mini-css-extract-plugin: ^2.7.0
mini-svg-data-uri: ^1.4.4
path-browserify: ^1.0.0
process: ^0.11.10
source-map-loader: ~1.0.2
style-loader: ~3.3.1
supports-color: ^7.2.0
terser-webpack-plugin: ^5.3.7
webpack: ^5.76.1
webpack-cli: ^5.0.1
webpack-merge: ^5.8.0
worker-loader: ^3.0.2
bin:
build-labextension: lib/build-labextension.js
checksum: 2efc4b3efd31a263e49c5908a15ee05509005cf13659ff3d00abeff25d0d3b46f05813b711ddd90d322d5fec98c9159d4fa5b0abc810f7927c08ebf477c5a7a7
languageName: node
linkType: hard
"@jupyterlab/codeeditor@npm:^4.5.0":
version: 4.5.0
resolution: "@jupyterlab/codeeditor@npm:4.5.0"
dependencies:
"@codemirror/state": ^6.5.2
"@jupyter/ydoc": ^3.1.0
"@jupyterlab/apputils": ^4.6.0
"@jupyterlab/coreutils": ^6.5.0
"@jupyterlab/nbformat": ^4.5.0
"@jupyterlab/observables": ^5.5.0
"@jupyterlab/statusbar": ^4.5.0
"@jupyterlab/translation": ^4.5.0
"@jupyterlab/ui-components": ^4.5.0
"@lumino/coreutils": ^2.2.2
"@lumino/disposable": ^2.1.5
"@lumino/dragdrop": ^2.1.7
"@lumino/messaging": ^2.0.4
"@lumino/signaling": ^2.1.5
"@lumino/widgets": ^2.7.2
react: ^18.2.0
checksum: fab1411639c293f8d73d2fca8964dec0f73f06c7c7ae1c012885949cec707a3d516f065b55b4fc2ac8b75832c095cec94437aa955029f3f37bf4d70596970de9
languageName: node
linkType: hard
"@jupyterlab/coreutils@npm:^6.5.0, @jupyterlab/coreutils@npm:~6.5.0":
version: 6.5.0
resolution: "@jupyterlab/coreutils@npm:6.5.0"
dependencies:
"@lumino/coreutils": ^2.2.2
"@lumino/disposable": ^2.1.5
"@lumino/signaling": ^2.1.5
minimist: ~1.2.0
path-browserify: ^1.0.0
url-parse: ~1.5.4
checksum: 5c198d899c36cfe25077ef1d1ae764a42e37564b72cd769572b710e64018e62a420367364483fa3e10407b8debe7c5eb4824cd372db733788c36296ff35fe002
languageName: node
linkType: hard
"@jupyterlab/docregistry@npm:^4.5.0, @jupyterlab/docregistry@npm:~4.5.0":
version: 4.5.0
resolution: "@jupyterlab/docregistry@npm:4.5.0"
dependencies:
"@jupyter/ydoc": ^3.1.0
"@jupyterlab/apputils": ^4.6.0
"@jupyterlab/codeeditor": ^4.5.0
"@jupyterlab/coreutils": ^6.5.0
"@jupyterlab/observables": ^5.5.0
"@jupyterlab/rendermime": ^4.5.0
"@jupyterlab/rendermime-interfaces": ^3.13.0
"@jupyterlab/services": ^7.5.0
"@jupyterlab/translation": ^4.5.0
"@jupyterlab/ui-components": ^4.5.0
"@lumino/algorithm": ^2.0.4
"@lumino/coreutils": ^2.2.2
"@lumino/disposable": ^2.1.5
"@lumino/messaging": ^2.0.4
"@lumino/properties": ^2.0.4
"@lumino/signaling": ^2.1.5
"@lumino/widgets": ^2.7.2
react: ^18.2.0
checksum: 946b4390916fe37ee8b63940b0ec53c11c2be8e56b2c0015176653b580c6e6333635a76f09706abfcbb083469a831992fa722dbeed2f804d8e9fc5d6f8325b7b
languageName: node
linkType: hard
"@jupyterlab/logconsole@npm:^4.5.0":
version: 4.5.0
resolution: "@jupyterlab/logconsole@npm:4.5.0"
dependencies:
"@jupyterlab/coreutils": ^6.5.0
"@jupyterlab/nbformat": ^4.5.0
"@jupyterlab/outputarea": ^4.5.0
"@jupyterlab/rendermime": ^4.5.0
"@jupyterlab/services": ^7.5.0
"@jupyterlab/translation": ^4.5.0
"@lumino/coreutils": ^2.2.2
"@lumino/disposable": ^2.1.5
"@lumino/messaging": ^2.0.4
"@lumino/signaling": ^2.1.5
"@lumino/widgets": ^2.7.2
checksum: cc09443efc261f2e9c00826791d5cabe4be91af7b18bcd4d213f3678cf8bf4863138a91e8571f4ea3651dca6a3b89ea0cc3420db7c16052ec4993dac2727c756
languageName: node
linkType: hard
"@jupyterlab/nbformat@npm:^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0, @jupyterlab/nbformat@npm:^4.5.0, @jupyterlab/nbformat@npm:~4.5.0":
version: 4.5.0
resolution: "@jupyterlab/nbformat@npm:4.5.0"
dependencies:
"@lumino/coreutils": ^2.2.2
checksum: 64dca8d7d59ac081f2d1a99b335217c12f2ea8d2f89e24e595b2774f45416c19480b471305def6af5bcf67a31f59fc1c6889c3226eafa8c61a9ee174fb1ab12b
languageName: node
linkType: hard
"@jupyterlab/observables@npm:^5.5.0, @jupyterlab/observables@npm:~5.5.0":
version: 5.5.0
resolution: "@jupyterlab/observables@npm:5.5.0"
dependencies:
"@lumino/algorithm": ^2.0.4
"@lumino/coreutils": ^2.2.2
"@lumino/disposable": ^2.1.5
"@lumino/messaging": ^2.0.4
"@lumino/signaling": ^2.1.5
checksum: 2c686227ac68b70bbaa6367c8e02bb66c79b3956b1b5660e1ff8ca200c2790add029a5c428de4f422b2174dd07597f9f9b2f70b67532f6fd064138760681f360
languageName: node
linkType: hard
"@jupyterlab/outputarea@npm:^4.5.0":
version: 4.5.0
resolution: "@jupyterlab/outputarea@npm:4.5.0"
dependencies:
"@jupyterlab/apputils": ^4.6.0
"@jupyterlab/nbformat": ^4.5.0
"@jupyterlab/observables": ^5.5.0
"@jupyterlab/rendermime": ^4.5.0
"@jupyterlab/rendermime-interfaces": ^3.13.0
"@jupyterlab/services": ^7.5.0
"@jupyterlab/translation": ^4.5.0
"@lumino/algorithm": ^2.0.4
"@lumino/coreutils": ^2.2.2
"@lumino/disposable": ^2.1.5
"@lumino/messaging": ^2.0.4
"@lumino/properties": ^2.0.4
"@lumino/signaling": ^2.1.5
"@lumino/widgets": ^2.7.2
checksum: f8536bd36368ec99760e50a827151dde0a9fdc5ef5581da5af07bd661643b48445ddcd1f77df258ca83af7a4ed2ab196c8dd814427016e37b510daaa0f410894
languageName: node
linkType: hard
"@jupyterlab/pluginmanager@npm:~4.5.0":
version: 4.5.0
resolution: "@jupyterlab/pluginmanager@npm:4.5.0"
dependencies:
"@jupyterlab/application": ^4.5.0
"@jupyterlab/apputils": ^4.6.0
"@jupyterlab/coreutils": ^6.5.0
"@jupyterlab/services": ^7.5.0
"@jupyterlab/translation": ^4.5.0
"@jupyterlab/ui-components": ^4.5.0
"@lumino/coreutils": ^2.2.2
"@lumino/signaling": ^2.1.5
"@lumino/widgets": ^2.7.2
react: ^18.2.0
checksum: 377b7eb0cc6e02a8ae4f235b9c63bb17bf93d0a4aeb28c4c60b70387955e4b49ffae73c274403d499cbf388f56b8db1fa9b2c21a8dd0b24113a59168809b639f
languageName: node
linkType: hard
"@jupyterlab/rendermime-interfaces@npm:^3.13.0, @jupyterlab/rendermime-interfaces@npm:~3.13.0":
version: 3.13.0
resolution: "@jupyterlab/rendermime-interfaces@npm:3.13.0"
dependencies:
"@lumino/coreutils": ^1.11.0 || ^2.2.2
"@lumino/widgets": ^1.37.2 || ^2.7.2
checksum: 0c4dc92b991e0b8cce1d5f274784709e8efbf13ed6165210d09ccdac1b6a2846542f04f57af11e5caec90208c22440c723e54a94368beec3f2a1c91c745c9abc
languageName: node
linkType: hard
"@jupyterlab/rendermime@npm:^4.5.0":
version: 4.5.0
resolution: "@jupyterlab/rendermime@npm:4.5.0"
dependencies:
"@jupyterlab/apputils": ^4.6.0
"@jupyterlab/coreutils": ^6.5.0
"@jupyterlab/nbformat": ^4.5.0
"@jupyterlab/observables": ^5.5.0
"@jupyterlab/rendermime-interfaces": ^3.13.0
"@jupyterlab/services": ^7.5.0
"@jupyterlab/translation": ^4.5.0
"@lumino/coreutils": ^2.2.2
"@lumino/messaging": ^2.0.4
"@lumino/signaling": ^2.1.5
"@lumino/widgets": ^2.7.2
lodash.escape: ^4.0.1
checksum: ea4ddbafce87a7612732eb3d9231d66717d578d4943d7f21f4e0ed4af17a81efba24006f86595bc6251d7f037da70b9e3b33120f407f69ac6b2982161c89ae8e
languageName: node
linkType: hard
"@jupyterlab/services@npm:^7.5.0, @jupyterlab/services@npm:~7.5.0":
version: 7.5.0
resolution: "@jupyterlab/services@npm:7.5.0"
dependencies:
"@jupyter/ydoc": ^3.1.0
"@jupyterlab/coreutils": ^6.5.0
"@jupyterlab/nbformat": ^4.5.0
"@jupyterlab/settingregistry": ^4.5.0
"@jupyterlab/statedb": ^4.5.0
"@lumino/coreutils": ^2.2.2
"@lumino/disposable": ^2.1.5
"@lumino/polling": ^2.1.5
"@lumino/properties": ^2.0.4
"@lumino/signaling": ^2.1.5
ws: ^8.11.0
checksum: fa579b22fc6d6b15b5c37377c984322499eb76d3b67684c0d335a0a81a5ce23d712e941c9ef1d8f81c7fa0b93614b355a55ba1a0ec176f218b7c7a2eb5220eeb
languageName: node
linkType: hard
"@jupyterlab/settingregistry@npm:^4.5.0, @jupyterlab/settingregistry@npm:~4.5.0":
version: 4.5.0
resolution: "@jupyterlab/settingregistry@npm:4.5.0"
dependencies:
"@jupyterlab/nbformat": ^4.5.0
"@jupyterlab/statedb": ^4.5.0
"@lumino/commands": ^2.3.3
"@lumino/coreutils": ^2.2.2
"@lumino/disposable": ^2.1.5
"@lumino/signaling": ^2.1.5
"@rjsf/utils": ^5.13.4
ajv: ^8.12.0
json5: ^2.2.3
peerDependencies:
react: ">=16"
checksum: acae2d98e368b0537ffb08d20ecaf3326b1c31e196887ff63c82459dc7ec01d1dc20deec0a48990670ccf2bf4c6760908169665c1e38cd99f2b1da2b050d0d76
languageName: node
linkType: hard
"@jupyterlab/statedb@npm:^4.5.0, @jupyterlab/statedb@npm:~4.5.0":
version: 4.5.0
resolution: "@jupyterlab/statedb@npm:4.5.0"
dependencies:
"@lumino/commands": ^2.3.3
"@lumino/coreutils": ^2.2.2
"@lumino/disposable": ^2.1.5
"@lumino/properties": ^2.0.4
"@lumino/signaling": ^2.1.5
checksum: 4e6a0f18d288a4f73c68284dce6ce1c0bac134a38b357a8f0fec7bdbb51d0801d7e96ae106960bab7c48637dc07e8239a45e5466d8c8e7372a026de11dc83a03
languageName: node
linkType: hard
"@jupyterlab/statusbar@npm:^4.5.0":
version: 4.5.0
resolution: "@jupyterlab/statusbar@npm:4.5.0"
dependencies:
"@jupyterlab/ui-components": ^4.5.0
"@lumino/algorithm": ^2.0.4
"@lumino/coreutils": ^2.2.2
"@lumino/disposable": ^2.1.5
"@lumino/messaging": ^2.0.4
"@lumino/signaling": ^2.1.5
"@lumino/widgets": ^2.7.2
react: ^18.2.0
checksum: ab9464bf892d51796317e9b06e2b47220a79c106ab36c4f795d1a14320a9ca8211c265f486c068819cc898b707db514420a8fcfc9313b6b32d91245aeac688f8
languageName: node
linkType: hard
"@jupyterlab/translation@npm:^4.5.0, @jupyterlab/translation@npm:~4.5.0":
version: 4.5.0
resolution: "@jupyterlab/translation@npm:4.5.0"
dependencies:
"@jupyterlab/coreutils": ^6.5.0
"@jupyterlab/rendermime-interfaces": ^3.13.0
"@jupyterlab/services": ^7.5.0
"@jupyterlab/statedb": ^4.5.0
"@lumino/coreutils": ^2.2.2
checksum: 12d4e7b1360ee858bcb874bcbb198b58770cc9f2bb865bc8172a62b1c44359ddf8cf4dc1cfdea966689eb216095d9e32c8ea5eabbe251c58a5fcc65b28e3200f
languageName: node
linkType: hard
"@jupyterlab/ui-components@npm:^4.5.0":
version: 4.5.0
resolution: "@jupyterlab/ui-components@npm:4.5.0"
dependencies:
"@jupyter/react-components": ^0.16.6
"@jupyter/web-components": ^0.16.6
"@jupyterlab/coreutils": ^6.5.0
"@jupyterlab/observables": ^5.5.0
"@jupyterlab/rendermime-interfaces": ^3.13.0
"@jupyterlab/translation": ^4.5.0
"@lumino/algorithm": ^2.0.4
"@lumino/commands": ^2.3.3
"@lumino/coreutils": ^2.2.2
"@lumino/disposable": ^2.1.5
"@lumino/messaging": ^2.0.4
"@lumino/polling": ^2.1.5
"@lumino/properties": ^2.0.4
"@lumino/signaling": ^2.1.5
"@lumino/virtualdom": ^2.0.4
"@lumino/widgets": ^2.7.2
"@rjsf/core": ^5.13.4
"@rjsf/utils": ^5.13.4
react: ^18.2.0
react-dom: ^18.2.0
typestyle: ^2.0.4
peerDependencies:
react: ^18.2.0
checksum: 59eedfbbfcbe224e0670bdaf09ac564bf3fe254a24f3465b4cfb7c8b1739ada8fc0e91ed51cf4fbee023c8df95985b3d0b4feffb1eef4902e17b2d12e2cfa381
languageName: node
linkType: hard
"@jupyterlite/application@npm:^0.7.0":
version: 0.7.0
resolution: "@jupyterlite/application@npm:0.7.0"
dependencies:
"@jupyterlab/application": ~4.5.0
"@jupyterlab/coreutils": ~6.5.0
"@jupyterlab/docregistry": ~4.5.0
"@jupyterlab/rendermime-interfaces": ~3.13.0
"@lumino/coreutils": ^2.2.2
"@lumino/signaling": ^2.1.5
"@lumino/widgets": ^2.7.2
checksum: ea743bf6a81ff0b92a61aca0f88cbf31a192a14daf7544cceb936c6e811e4aaac9db65e9a69f017cdaf0c879f5c927fd3aef280c99339b4b68da74c49607938e
languageName: node
linkType: hard
"@jupyterlite/apputils@npm:^0.7.0":
version: 0.7.0
resolution: "@jupyterlite/apputils@npm:0.7.0"
dependencies:
"@jupyterlab/application": ~4.5.0
"@jupyterlab/apputils": ~4.6.0
"@jupyterlab/coreutils": ~6.5.0
"@jupyterlab/nbformat": ~4.5.0
"@jupyterlab/observables": ~5.5.0
"@jupyterlab/pluginmanager": ~4.5.0
"@jupyterlab/services": ~7.5.0
"@jupyterlab/settingregistry": ~4.5.0
"@jupyterlab/statedb": ~4.5.0
"@jupyterlab/translation": ~4.5.0
"@jupyterlite/application": ^0.7.0
"@jupyterlite/services": ^0.7.0
"@jupyterlite/types": ^0.7.0
"@lumino/application": ^2.4.5
"@lumino/coreutils": ^2.2.2
"@lumino/signaling": ^2.1.5
"@types/emscripten": ^1.39.6
mock-socket: ^9.3.1
checksum: 87c249d55b73456645d86d909f974a7a11fd091312f174b32fba3aa065c53649195fb0242167d02e45b7c3d51412fa3a16bf3b8b760649b1139edcc3ee6c95b8
languageName: node
linkType: hard
"@jupyterlite/localforage@npm:^0.7.0":
version: 0.7.0
resolution: "@jupyterlite/localforage@npm:0.7.0"
dependencies:
"@jupyterlab/coreutils": ~6.5.0
"@lumino/coreutils": ^2.2.2
localforage: ^1.9.0
localforage-memoryStorageDriver: ^0.9.2
checksum: bf206fb2d043a35f56f5400473080e04896f30c193dcb0688b9c5277dad933f352746bbb3197e6f760a56d5f674d03000ddd4fb6e64679269621d6e1a77a8ac2
languageName: node
linkType: hard
"@jupyterlite/services@npm:^0.7.0":
version: 0.7.0
resolution: "@jupyterlite/services@npm:0.7.0"
dependencies:
"@jupyterlab/coreutils": ~6.5.0
"@jupyterlab/nbformat": ~4.5.0
"@jupyterlab/observables": ~5.5.0
"@jupyterlab/services": ~7.5.0
"@jupyterlab/settingregistry": ~4.5.0
"@jupyterlite/localforage": ^0.7.0
"@lumino/algorithm": ^2.0.4
"@lumino/coreutils": ^2.2.2
"@lumino/disposable": ^2.1.5
"@lumino/signaling": ^2.1.5
"@types/emscripten": ^1.39.6
async-mutex: ^0.3.1
comlink: ^4.3.1
json5: ^2.2.0
localforage: ^1.9.0
mime: ^3.0.0
mock-socket: ^9.3.1
checksum: d677e95e0941e9161bbfe55674795d8e6ad25df7f711a846d31242a629b6d7d845711a47f65864dcc738d119c345cd60cf83f803021c181fd622bdf376d27100
languageName: node
linkType: hard
"@jupyterlite/types@npm:^0.7.0":
version: 0.7.0
resolution: "@jupyterlite/types@npm:0.7.0"
dependencies:
"@lumino/coreutils": ^2.2.2
checksum: 9375d47829206e39fd78c0fba9f63fa55c42cc12d6aa9632fe65afcc56ac19bee0f7b0512db29e107e0f52ac18d6dc79275d9eee3843737ed6d1c9f753fed10d
languageName: node
linkType: hard
"@jupyterlite/xeus-core@^4.5.2, @jupyterlite/xeus-core@workspace:packages/xeus-core":
version: 0.0.0-use.local
resolution: "@jupyterlite/xeus-core@workspace:packages/xeus-core"
dependencies:
"@emscripten-forge/mambajs-core": ^0.21.1
"@jupyterlab/coreutils": ^6.5.0
"@jupyterlab/services": ^7.5.0
"@jupyterlite/services": ^0.7.0
"@lumino/coreutils": ^2
"@lumino/signaling": ^2
"@types/json-schema": ^7.0.11
"@types/react": ^18.0.26
"@types/react-addons-linked-state-mixin": ^0.14.22
npm-run-all: ^4.1.5
rimraf: ^5.0.1
source-map-loader: ^1.0.2
ts-loader: ^9.2.6
typescript: ^5.5
webpack: ^5.87.0
yjs: ^13.5.0
languageName: unknown
linkType: soft
"@jupyterlite/xeus-extension@workspace:packages/xeus-extension":
version: 0.0.0-use.local
resolution: "@jupyterlite/xeus-extension@workspace:packages/xeus-extension"
dependencies:
"@jupyterlab/application": ^4.5.0
"@jupyterlab/builder": ^4.5.0
"@jupyterlab/coreutils": ^6.5.0
"@jupyterlab/logconsole": ^4.5.0
"@jupyterlite/apputils": ^0.7.0
"@jupyterlite/services": ^0.7.0
"@jupyterlite/xeus": ^4.5.2
"@lumino/coreutils": ^2
"@types/json-schema": ^7.0.11
"@types/react": ^18.0.26
"@types/react-addons-linked-state-mixin": ^0.14.22
copy-webpack-plugin: ^12.0.2
css-loader: ^6.7.1
npm-run-all: ^4.1.5
rimraf: ^5.0.1
source-map-loader: ^1.0.2
ts-loader: ^9.2.6
typescript: ^5.5
webpack: ^5.87.0
yjs: ^13.5.0
languageName: unknown
linkType: soft
"@jupyterlite/xeus-root@workspace:.":
version: 0.0.0-use.local
resolution: "@jupyterlite/xeus-root@workspace:."
dependencies:
"@typescript-eslint/eslint-plugin": ^6.1.0
"@typescript-eslint/parser": ^6.1.0
eslint: ^8.36.0
eslint-config-prettier: ^8.8.0
eslint-plugin-prettier: ^5.0.0
lerna: ^8.1.9
npm-run-all: ^4.1.5
prettier: ^3.0.0
rimraf: ^5.0.1
languageName: unknown
linkType: soft
"@jupyterlite/xeus@^4.5.2, @jupyterlite/xeus@workspace:packages/xeus":
version: 0.0.0-use.local
resolution: "@jupyterlite/xeus@workspace:packages/xeus"
dependencies:
"@emscripten-forge/mambajs": ^0.21.1
"@jupyterlab/coreutils": ^6.5.0
"@jupyterlab/services": ^7.5.0
"@jupyterlite/services": ^0.7.0
"@jupyterlite/xeus-core": ^4.5.2
"@lumino/coreutils": ^2
"@lumino/signaling": ^2
"@types/json-schema": ^7.0.11
"@types/react": ^18.0.26
"@types/react-addons-linked-state-mixin": ^0.14.22
coincident: ^1.2.3
comlink: ^4.4.1
npm-run-all: ^4.1.5
rimraf: ^5.0.1
source-map-loader: ^1.0.2
ts-loader: ^9.2.6
typescript: ^5.5
webpack: ^5.87.0
yjs: ^13.5.0
languageName: unknown
linkType: soft
"@lerna/create@npm:8.2.4":
version: 8.2.4
resolution: "@lerna/create@npm:8.2.4"
dependencies:
"@npmcli/arborist": 7.5.4
"@npmcli/package-json": 5.2.0
"@npmcli/run-script": 8.1.0
"@nx/devkit": ">=17.1.2 < 21"
"@octokit/plugin-enterprise-rest": 6.0.1
"@octokit/rest": 20.1.2
aproba: 2.0.0
byte-size: 8.1.1
chalk: 4.1.0
clone-deep: 4.0.1
cmd-shim: 6.0.3
color-support: 1.1.3
columnify: 1.6.0
console-control-strings: ^1.1.0
conventional-changelog-core: 5.0.1
conventional-recommended-bump: 7.0.1
cosmiconfig: 9.0.0
dedent: 1.5.3
execa: 5.0.0
fs-extra: ^11.2.0
get-stream: 6.0.0
git-url-parse: 14.0.0
glob-parent: 6.0.2
graceful-fs: 4.2.11
has-unicode: 2.0.1
ini: ^1.3.8
init-package-json: 6.0.3
inquirer: ^8.2.4
is-ci: 3.0.1
is-stream: 2.0.0
js-yaml: 4.1.0
libnpmpublish: 9.0.9
load-json-file: 6.2.0
make-dir: 4.0.0
minimatch: 3.0.5
multimatch: 5.0.0
node-fetch: 2.6.7
npm-package-arg: 11.0.2
npm-packlist: 8.0.2
npm-registry-fetch: ^17.1.0
nx: ">=17.1.2 < 21"
p-map: 4.0.0
p-map-series: 2.1.0
p-queue: 6.6.2
p-reduce: ^2.1.0
pacote: ^18.0.6
pify: 5.0.0
read-cmd-shim: 4.0.0
resolve-from: 5.0.0
rimraf: ^4.4.1
semver: ^7.3.4
set-blocking: ^2.0.0
signal-exit: 3.0.7
slash: ^3.0.0
ssri: ^10.0.6
string-width: ^4.2.3
tar: 6.2.1
temp-dir: 1.0.0
through: 2.3.8
tinyglobby: 0.2.12
upath: 2.0.1
uuid: ^10.0.0
validate-npm-package-license: ^3.0.4
validate-npm-package-name: 5.0.1
wide-align: 1.1.5
write-file-atomic: 5.0.1
write-pkg: 4.0.0
yargs: 17.7.2
yargs-parser: 21.1.1
checksum: 79ccd20fac694813728b6582f806f12b3549a3bc87a91d6df6260e0c623b669fa1f84815d985b1c5c9f6d717a57e7407b8e8c5e5e770d7ff39b3bdba9e91883f
languageName: node
linkType: hard
"@lumino/algorithm@npm:^2.0.4":
version: 2.0.4
resolution: "@lumino/algorithm@npm:2.0.4"
checksum: ec1532fc294666fb483dd35082ec50ad979d0e9e1daf7a951ca045fd36a1ae88c7c73bf09c1aafed1ea826319f038ec2ed7058f58d214d5ed9f6a4cf61f232e8
languageName: node
linkType: hard
"@lumino/application@npm:^2.4.5":
version: 2.4.5
resolution: "@lumino/application@npm:2.4.5"
dependencies:
"@lumino/commands": ^2.3.3
"@lumino/coreutils": ^2.2.2
"@lumino/widgets": ^2.7.2
checksum: 7a034b49cfde045a81d3ed0cb51bfff79a595f9e299c601cc71c19c0709dfe49db5a0a21fdc36fb9d77e441f144ebbeabf9f5ff132a265d530ad3551e9ecc11b
languageName: node
linkType: hard
"@lumino/collections@npm:^2.0.4":
version: 2.0.4
resolution: "@lumino/collections@npm:2.0.4"
dependencies:
"@lumino/algorithm": ^2.0.4
checksum: ee8dfdcde3815ddb72d977705e8295ee9500a44697717a86fed644dd810bce8d8ad448659eec02dafeee1b1b3a74fc851224481933c385a812055793d34224f1
languageName: node
linkType: hard
"@lumino/commands@npm:^2.3.3":
version: 2.3.3
resolution: "@lumino/commands@npm:2.3.3"
dependencies:
"@lumino/algorithm": ^2.0.4
"@lumino/coreutils": ^2.2.2
"@lumino/disposable": ^2.1.5
"@lumino/domutils": ^2.0.4
"@lumino/keyboard": ^2.0.4
"@lumino/signaling": ^2.1.5
"@lumino/virtualdom": ^2.0.4
checksum: 4f44b180b7ce4580647fb86a61c00b8638ce9d538a7222feb85073f691f29b2f942b79a71f11e25d503c6d4ad3e8becec67cb8829710b34e04676f41d3505937
languageName: node
linkType: hard
"@lumino/coreutils@npm:^1.11.0 || ^2.0.0, @lumino/coreutils@npm:^1.11.0 || ^2.2.2, @lumino/coreutils@npm:^2, @lumino/coreutils@npm:^2.2.2":
version: 2.2.2
resolution: "@lumino/coreutils@npm:2.2.2"
dependencies: