-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
yarn.lock
9496 lines (8534 loc) · 331 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
"@alloc/quick-lru@npm:^5.2.0":
version: 5.2.0
resolution: "@alloc/quick-lru@npm:5.2.0"
checksum: 10c0/7b878c48b9d25277d0e1a9b8b2f2312a314af806b4129dc902f2bc29ab09b58236e53964689feec187b28c80d2203aff03829754773a707a8a5987f1b7682d92
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.23.5":
version: 7.24.7
resolution: "@babel/code-frame@npm:7.24.7"
dependencies:
"@babel/highlight": "npm:^7.24.7"
picocolors: "npm:^1.0.0"
checksum: 10c0/ab0af539473a9f5aeaac7047e377cb4f4edd255a81d84a76058595f8540784cc3fbe8acf73f1e073981104562490aabfb23008cd66dc677a456a4ed5390fdde6
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.24.7":
version: 7.24.7
resolution: "@babel/helper-validator-identifier@npm:7.24.7"
checksum: 10c0/87ad608694c9477814093ed5b5c080c2e06d44cb1924ae8320474a74415241223cc2a725eea2640dd783ff1e3390e5f95eede978bc540e870053152e58f1d651
languageName: node
linkType: hard
"@babel/highlight@npm:^7.24.7":
version: 7.24.7
resolution: "@babel/highlight@npm:7.24.7"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.24.7"
chalk: "npm:^2.4.2"
js-tokens: "npm:^4.0.0"
picocolors: "npm:^1.0.0"
checksum: 10c0/674334c571d2bb9d1c89bdd87566383f59231e16bcdcf5bb7835babdf03c9ae585ca0887a7b25bdf78f303984af028df52831c7989fecebb5101cc132da9393a
languageName: node
linkType: hard
"@babel/runtime@npm:^7.23.8":
version: 7.25.6
resolution: "@babel/runtime@npm:7.25.6"
dependencies:
regenerator-runtime: "npm:^0.14.0"
checksum: 10c0/d6143adf5aa1ce79ed374e33fdfd74fa975055a80bc6e479672ab1eadc4e4bfd7484444e17dd063a1d180e051f3ec62b357c7a2b817e7657687b47313158c3d2
languageName: node
linkType: hard
"@braintree/sanitize-url@npm:^6.0.1":
version: 6.0.4
resolution: "@braintree/sanitize-url@npm:6.0.4"
checksum: 10c0/5d7bac57f3e49931db83f65aaa4fd22f96caa323bf0c7fcf6851fdbed179a8cf29eaa5dd372d340fc51ca5f44345ea5bc0196b36c8b16179888a7c9044313420
languageName: node
linkType: hard
"@cspotcode/source-map-support@npm:^0.8.0":
version: 0.8.1
resolution: "@cspotcode/source-map-support@npm:0.8.1"
dependencies:
"@jridgewell/trace-mapping": "npm:0.3.9"
checksum: 10c0/05c5368c13b662ee4c122c7bfbe5dc0b613416672a829f3e78bc49a357a197e0218d6e74e7c66cfcd04e15a179acab080bd3c69658c9fbefd0e1ccd950a07fc6
languageName: node
linkType: hard
"@edge-runtime/format@npm:2.2.1":
version: 2.2.1
resolution: "@edge-runtime/format@npm:2.2.1"
checksum: 10c0/854654d7e494710e748e7e7e6ef5e366a5a06552d7543510a0be8baf146b8a18a6930820013171351473490971654479023207d0ab785c2c2dfd967defb9d320
languageName: node
linkType: hard
"@edge-runtime/node-utils@npm:2.3.0":
version: 2.3.0
resolution: "@edge-runtime/node-utils@npm:2.3.0"
checksum: 10c0/e360ebf9263cd3774e582c78be956301fa92dfe0ad66f05ac14c988c4a67732d46fd322a12a310992bb0b79f5be122c8e068175036fb666031b30415460b30ce
languageName: node
linkType: hard
"@edge-runtime/ponyfill@npm:2.4.2":
version: 2.4.2
resolution: "@edge-runtime/ponyfill@npm:2.4.2"
checksum: 10c0/f2e1a2397dcc3d854be396fe17f54d8db167f8ee64bbc0e8e5843c8fa58f0b0442518a31d41ac186317ec9441155afa071af45f74902c3b41d6f1d395bfe6aa5
languageName: node
linkType: hard
"@edge-runtime/primitives@npm:4.1.0":
version: 4.1.0
resolution: "@edge-runtime/primitives@npm:4.1.0"
checksum: 10c0/39a0d00c21ceef24216ce496e51e5cfec66c736f2b6ae7ede9cb2257d14bd1c187ade55ae388e76f46a09e4d5059d8f059d317037e2c20a7702a7b5f14cf778e
languageName: node
linkType: hard
"@edge-runtime/vm@npm:3.2.0":
version: 3.2.0
resolution: "@edge-runtime/vm@npm:3.2.0"
dependencies:
"@edge-runtime/primitives": "npm:4.1.0"
checksum: 10c0/ee9f23abfe3f661f9bf5bcc3b1b779157d8e2c42ff160827ca345ec5b4043e98939cec5a917a3c3a3169908bc095d1d180d9261353886d83a4a083aa6e9feae0
languageName: node
linkType: hard
"@emnapi/runtime@npm:^1.2.0":
version: 1.2.0
resolution: "@emnapi/runtime@npm:1.2.0"
dependencies:
tslib: "npm:^2.4.0"
checksum: 10c0/7005ff8b67724c9e61b6cd79a3decbdb2ce25d24abd4d3d187472f200ee6e573329c30264335125fb136bd813aa9cf9f4f7c9391d04b07dd1e63ce0a3427be57
languageName: node
linkType: hard
"@eyhn/msgpack-stream@npm:^2.8.4":
version: 2.8.4
resolution: "@eyhn/msgpack-stream@npm:2.8.4"
checksum: 10c0/47b3a28c9dcc1ef8feb4ac974afba6b80aae55a863a197b8b45146881f8157435eef231c4a25c814cc47147f3e027514f5e861bb423063b1a97e210c58e2066a
languageName: node
linkType: hard
"@fastify/busboy@npm:^2.0.0":
version: 2.1.1
resolution: "@fastify/busboy@npm:2.1.1"
checksum: 10c0/6f8027a8cba7f8f7b736718b013f5a38c0476eea67034c94a0d3c375e2b114366ad4419e6a6fa7ffc2ef9c6d3e0435d76dd584a7a1cbac23962fda7650b579e3
languageName: node
linkType: hard
"@headlessui/react@npm:^1.7.17":
version: 1.7.19
resolution: "@headlessui/react@npm:1.7.19"
dependencies:
"@tanstack/react-virtual": "npm:^3.0.0-beta.60"
client-only: "npm:^0.0.1"
peerDependencies:
react: ^16 || ^17 || ^18
react-dom: ^16 || ^17 || ^18
checksum: 10c0/c0ece0db6ca15092439177a5322de50b60fa5fd90354ae0f999b3e56abab0065ed54fa7b4b69994ec1bdc23adc6ae9919d7dd57f97922d0b9bb6515d27e3a7e5
languageName: node
linkType: hard
"@img/sharp-darwin-arm64@npm:0.33.5":
version: 0.33.5
resolution: "@img/sharp-darwin-arm64@npm:0.33.5"
dependencies:
"@img/sharp-libvips-darwin-arm64": "npm:1.0.4"
dependenciesMeta:
"@img/sharp-libvips-darwin-arm64":
optional: true
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@img/sharp-darwin-x64@npm:0.33.5":
version: 0.33.5
resolution: "@img/sharp-darwin-x64@npm:0.33.5"
dependencies:
"@img/sharp-libvips-darwin-x64": "npm:1.0.4"
dependenciesMeta:
"@img/sharp-libvips-darwin-x64":
optional: true
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@img/sharp-libvips-darwin-arm64@npm:1.0.4":
version: 1.0.4
resolution: "@img/sharp-libvips-darwin-arm64@npm:1.0.4"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@img/sharp-libvips-darwin-x64@npm:1.0.4":
version: 1.0.4
resolution: "@img/sharp-libvips-darwin-x64@npm:1.0.4"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@img/sharp-libvips-linux-arm64@npm:1.0.4":
version: 1.0.4
resolution: "@img/sharp-libvips-linux-arm64@npm:1.0.4"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@img/sharp-libvips-linux-arm@npm:1.0.5":
version: 1.0.5
resolution: "@img/sharp-libvips-linux-arm@npm:1.0.5"
conditions: os=linux & cpu=arm & libc=glibc
languageName: node
linkType: hard
"@img/sharp-libvips-linux-s390x@npm:1.0.4":
version: 1.0.4
resolution: "@img/sharp-libvips-linux-s390x@npm:1.0.4"
conditions: os=linux & cpu=s390x & libc=glibc
languageName: node
linkType: hard
"@img/sharp-libvips-linux-x64@npm:1.0.4":
version: 1.0.4
resolution: "@img/sharp-libvips-linux-x64@npm:1.0.4"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@img/sharp-libvips-linuxmusl-arm64@npm:1.0.4":
version: 1.0.4
resolution: "@img/sharp-libvips-linuxmusl-arm64@npm:1.0.4"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
"@img/sharp-libvips-linuxmusl-x64@npm:1.0.4":
version: 1.0.4
resolution: "@img/sharp-libvips-linuxmusl-x64@npm:1.0.4"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@img/sharp-linux-arm64@npm:0.33.5":
version: 0.33.5
resolution: "@img/sharp-linux-arm64@npm:0.33.5"
dependencies:
"@img/sharp-libvips-linux-arm64": "npm:1.0.4"
dependenciesMeta:
"@img/sharp-libvips-linux-arm64":
optional: true
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@img/sharp-linux-arm@npm:0.33.5":
version: 0.33.5
resolution: "@img/sharp-linux-arm@npm:0.33.5"
dependencies:
"@img/sharp-libvips-linux-arm": "npm:1.0.5"
dependenciesMeta:
"@img/sharp-libvips-linux-arm":
optional: true
conditions: os=linux & cpu=arm & libc=glibc
languageName: node
linkType: hard
"@img/sharp-linux-s390x@npm:0.33.5":
version: 0.33.5
resolution: "@img/sharp-linux-s390x@npm:0.33.5"
dependencies:
"@img/sharp-libvips-linux-s390x": "npm:1.0.4"
dependenciesMeta:
"@img/sharp-libvips-linux-s390x":
optional: true
conditions: os=linux & cpu=s390x & libc=glibc
languageName: node
linkType: hard
"@img/sharp-linux-x64@npm:0.33.5":
version: 0.33.5
resolution: "@img/sharp-linux-x64@npm:0.33.5"
dependencies:
"@img/sharp-libvips-linux-x64": "npm:1.0.4"
dependenciesMeta:
"@img/sharp-libvips-linux-x64":
optional: true
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@img/sharp-linuxmusl-arm64@npm:0.33.5":
version: 0.33.5
resolution: "@img/sharp-linuxmusl-arm64@npm:0.33.5"
dependencies:
"@img/sharp-libvips-linuxmusl-arm64": "npm:1.0.4"
dependenciesMeta:
"@img/sharp-libvips-linuxmusl-arm64":
optional: true
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
"@img/sharp-linuxmusl-x64@npm:0.33.5":
version: 0.33.5
resolution: "@img/sharp-linuxmusl-x64@npm:0.33.5"
dependencies:
"@img/sharp-libvips-linuxmusl-x64": "npm:1.0.4"
dependenciesMeta:
"@img/sharp-libvips-linuxmusl-x64":
optional: true
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@img/sharp-wasm32@npm:0.33.5":
version: 0.33.5
resolution: "@img/sharp-wasm32@npm:0.33.5"
dependencies:
"@emnapi/runtime": "npm:^1.2.0"
conditions: cpu=wasm32
languageName: node
linkType: hard
"@img/sharp-win32-ia32@npm:0.33.5":
version: 0.33.5
resolution: "@img/sharp-win32-ia32@npm:0.33.5"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@img/sharp-win32-x64@npm:0.33.5":
version: 0.33.5
resolution: "@img/sharp-win32-x64@npm:0.33.5"
conditions: os=win32 & cpu=x64
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: 10c0/b1bf42535d49f11dc137f18d5e4e63a28c5569de438a221c369483731e9dac9fb797af554e8bf02b6192d1e5eba6e6402cf93900c3d0ac86391d00d04876789e
languageName: node
linkType: hard
"@jridgewell/gen-mapping@npm:^0.3.2":
version: 0.3.5
resolution: "@jridgewell/gen-mapping@npm:0.3.5"
dependencies:
"@jridgewell/set-array": "npm:^1.2.1"
"@jridgewell/sourcemap-codec": "npm:^1.4.10"
"@jridgewell/trace-mapping": "npm:^0.3.24"
checksum: 10c0/1be4fd4a6b0f41337c4f5fdf4afc3bd19e39c3691924817108b82ffcb9c9e609c273f936932b9fba4b3a298ce2eb06d9bff4eb1cc3bd81c4f4ee1b4917e25feb
languageName: node
linkType: hard
"@jridgewell/resolve-uri@npm:^3.0.3, @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.2.1":
version: 1.2.1
resolution: "@jridgewell/set-array@npm:1.2.1"
checksum: 10c0/2a5aa7b4b5c3464c895c802d8ae3f3d2b92fcbe84ad12f8d0bfbb1f5ad006717e7577ee1fd2eac00c088abe486c7adb27976f45d2941ff6b0b92b2c3302c60f4
languageName: node
linkType: hard
"@jridgewell/sourcemap-codec@npm:^1.4.10, @jridgewell/sourcemap-codec@npm:^1.4.14":
version: 1.5.0
resolution: "@jridgewell/sourcemap-codec@npm:1.5.0"
checksum: 10c0/2eb864f276eb1096c3c11da3e9bb518f6d9fc0023c78344cdc037abadc725172c70314bdb360f2d4b7bffec7f5d657ce006816bc5d4ecb35e61b66132db00c18
languageName: node
linkType: hard
"@jridgewell/trace-mapping@npm:0.3.9":
version: 0.3.9
resolution: "@jridgewell/trace-mapping@npm:0.3.9"
dependencies:
"@jridgewell/resolve-uri": "npm:^3.0.3"
"@jridgewell/sourcemap-codec": "npm:^1.4.10"
checksum: 10c0/fa425b606d7c7ee5bfa6a31a7b050dd5814b4082f318e0e4190f991902181b4330f43f4805db1dd4f2433fd0ed9cc7a7b9c2683f1deeab1df1b0a98b1e24055b
languageName: node
linkType: hard
"@jridgewell/trace-mapping@npm:^0.3.24":
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
"@kwsites/file-exists@npm:^1.1.1":
version: 1.1.1
resolution: "@kwsites/file-exists@npm:1.1.1"
dependencies:
debug: "npm:^4.1.1"
checksum: 10c0/39e693239a72ccd8408bb618a0200e4a8d61682057ca7ae2c87668d7e69196e8d7e2c9cde73db6b23b3b0230169a15e5f1bfe086539f4be43e767b2db68e8ee4
languageName: node
linkType: hard
"@kwsites/promise-deferred@npm:^1.1.1":
version: 1.1.1
resolution: "@kwsites/promise-deferred@npm:1.1.1"
checksum: 10c0/ef1ad3f1f50991e3bed352b175986d8b4bc684521698514a2ed63c1d1fc9848843da4f2bc2df961c9b148c94e1c34bf33f0da8a90ba2234e452481f2cc9937b1
languageName: node
linkType: hard
"@mapbox/node-pre-gyp@npm:^1.0.5":
version: 1.0.11
resolution: "@mapbox/node-pre-gyp@npm:1.0.11"
dependencies:
detect-libc: "npm:^2.0.0"
https-proxy-agent: "npm:^5.0.0"
make-dir: "npm:^3.1.0"
node-fetch: "npm:^2.6.7"
nopt: "npm:^5.0.0"
npmlog: "npm:^5.0.1"
rimraf: "npm:^3.0.2"
semver: "npm:^7.3.5"
tar: "npm:^6.1.11"
bin:
node-pre-gyp: bin/node-pre-gyp
checksum: 10c0/2b24b93c31beca1c91336fa3b3769fda98e202fb7f9771f0f4062588d36dcc30fcf8118c36aa747fa7f7610d8cf601872bdaaf62ce7822bb08b545d1bbe086cc
languageName: node
linkType: hard
"@mdx-js/mdx@npm:^2.2.1, @mdx-js/mdx@npm:^2.3.0":
version: 2.3.0
resolution: "@mdx-js/mdx@npm:2.3.0"
dependencies:
"@types/estree-jsx": "npm:^1.0.0"
"@types/mdx": "npm:^2.0.0"
estree-util-build-jsx: "npm:^2.0.0"
estree-util-is-identifier-name: "npm:^2.0.0"
estree-util-to-js: "npm:^1.1.0"
estree-walker: "npm:^3.0.0"
hast-util-to-estree: "npm:^2.0.0"
markdown-extensions: "npm:^1.0.0"
periscopic: "npm:^3.0.0"
remark-mdx: "npm:^2.0.0"
remark-parse: "npm:^10.0.0"
remark-rehype: "npm:^10.0.0"
unified: "npm:^10.0.0"
unist-util-position-from-estree: "npm:^1.0.0"
unist-util-stringify-position: "npm:^3.0.0"
unist-util-visit: "npm:^4.0.0"
vfile: "npm:^5.0.0"
checksum: 10c0/719384d8e72abd3e83aa2fd3010394636e32cc0e5e286b6414427ef03121397586ce97ec816afcc4d2b22ba65939c3801a8198e04cf921dd597c0aa9fd75dbb4
languageName: node
linkType: hard
"@mdx-js/mdx@npm:^3.0.1":
version: 3.0.1
resolution: "@mdx-js/mdx@npm:3.0.1"
dependencies:
"@types/estree": "npm:^1.0.0"
"@types/estree-jsx": "npm:^1.0.0"
"@types/hast": "npm:^3.0.0"
"@types/mdx": "npm:^2.0.0"
collapse-white-space: "npm:^2.0.0"
devlop: "npm:^1.0.0"
estree-util-build-jsx: "npm:^3.0.0"
estree-util-is-identifier-name: "npm:^3.0.0"
estree-util-to-js: "npm:^2.0.0"
estree-walker: "npm:^3.0.0"
hast-util-to-estree: "npm:^3.0.0"
hast-util-to-jsx-runtime: "npm:^2.0.0"
markdown-extensions: "npm:^2.0.0"
periscopic: "npm:^3.0.0"
remark-mdx: "npm:^3.0.0"
remark-parse: "npm:^11.0.0"
remark-rehype: "npm:^11.0.0"
source-map: "npm:^0.7.0"
unified: "npm:^11.0.0"
unist-util-position-from-estree: "npm:^2.0.0"
unist-util-stringify-position: "npm:^4.0.0"
unist-util-visit: "npm:^5.0.0"
vfile: "npm:^6.0.0"
checksum: 10c0/8cd7084f1242209bbeef81f69ea670ffffa0656dda2893bbd46b1b2b26078a57f9d993f8f82ad8ba16bc969189235140007185276d7673471827331521eae2e0
languageName: node
linkType: hard
"@mdx-js/react@npm:^2.2.1, @mdx-js/react@npm:^2.3.0":
version: 2.3.0
resolution: "@mdx-js/react@npm:2.3.0"
dependencies:
"@types/mdx": "npm:^2.0.0"
"@types/react": "npm:>=16"
peerDependencies:
react: ">=16"
checksum: 10c0/6d647115703dbe258f7fe372499fa8c6fe17a053ff0f2a208111c9973a71ae738a0ed376770445d39194d217e00e1a015644b24f32c2f7cb4f57988de0649b15
languageName: node
linkType: hard
"@mdx-js/react@npm:^3.0.0, @mdx-js/react@npm:^3.0.1":
version: 3.0.1
resolution: "@mdx-js/react@npm:3.0.1"
dependencies:
"@types/mdx": "npm:^2.0.0"
peerDependencies:
"@types/react": ">=16"
react: ">=16"
checksum: 10c0/d210d926ef488d39ad65f04d821936b668eadcdde3b6421e94ec4200ca7ad17f17d24c5cbc543882586af9f08b10e2eea715c728ce6277487945e05c5199f532
languageName: node
linkType: hard
"@napi-rs/simple-git-android-arm-eabi@npm:0.1.19":
version: 0.1.19
resolution: "@napi-rs/simple-git-android-arm-eabi@npm:0.1.19"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@napi-rs/simple-git-android-arm64@npm:0.1.19":
version: 0.1.19
resolution: "@napi-rs/simple-git-android-arm64@npm:0.1.19"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@napi-rs/simple-git-darwin-arm64@npm:0.1.19":
version: 0.1.19
resolution: "@napi-rs/simple-git-darwin-arm64@npm:0.1.19"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@napi-rs/simple-git-darwin-x64@npm:0.1.19":
version: 0.1.19
resolution: "@napi-rs/simple-git-darwin-x64@npm:0.1.19"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@napi-rs/simple-git-freebsd-x64@npm:0.1.19":
version: 0.1.19
resolution: "@napi-rs/simple-git-freebsd-x64@npm:0.1.19"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@napi-rs/simple-git-linux-arm-gnueabihf@npm:0.1.19":
version: 0.1.19
resolution: "@napi-rs/simple-git-linux-arm-gnueabihf@npm:0.1.19"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@napi-rs/simple-git-linux-arm64-gnu@npm:0.1.19":
version: 0.1.19
resolution: "@napi-rs/simple-git-linux-arm64-gnu@npm:0.1.19"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@napi-rs/simple-git-linux-arm64-musl@npm:0.1.19":
version: 0.1.19
resolution: "@napi-rs/simple-git-linux-arm64-musl@npm:0.1.19"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
"@napi-rs/simple-git-linux-powerpc64le-gnu@npm:0.1.19":
version: 0.1.19
resolution: "@napi-rs/simple-git-linux-powerpc64le-gnu@npm:0.1.19"
conditions: os=linux & cpu=powerpc64le & libc=glibc
languageName: node
linkType: hard
"@napi-rs/simple-git-linux-s390x-gnu@npm:0.1.19":
version: 0.1.19
resolution: "@napi-rs/simple-git-linux-s390x-gnu@npm:0.1.19"
conditions: os=linux & cpu=s390x & libc=glibc
languageName: node
linkType: hard
"@napi-rs/simple-git-linux-x64-gnu@npm:0.1.19":
version: 0.1.19
resolution: "@napi-rs/simple-git-linux-x64-gnu@npm:0.1.19"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@napi-rs/simple-git-linux-x64-musl@npm:0.1.19":
version: 0.1.19
resolution: "@napi-rs/simple-git-linux-x64-musl@npm:0.1.19"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@napi-rs/simple-git-win32-arm64-msvc@npm:0.1.19":
version: 0.1.19
resolution: "@napi-rs/simple-git-win32-arm64-msvc@npm:0.1.19"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@napi-rs/simple-git-win32-x64-msvc@npm:0.1.19":
version: 0.1.19
resolution: "@napi-rs/simple-git-win32-x64-msvc@npm:0.1.19"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@napi-rs/simple-git@npm:^0.1.9":
version: 0.1.19
resolution: "@napi-rs/simple-git@npm:0.1.19"
dependencies:
"@napi-rs/simple-git-android-arm-eabi": "npm:0.1.19"
"@napi-rs/simple-git-android-arm64": "npm:0.1.19"
"@napi-rs/simple-git-darwin-arm64": "npm:0.1.19"
"@napi-rs/simple-git-darwin-x64": "npm:0.1.19"
"@napi-rs/simple-git-freebsd-x64": "npm:0.1.19"
"@napi-rs/simple-git-linux-arm-gnueabihf": "npm:0.1.19"
"@napi-rs/simple-git-linux-arm64-gnu": "npm:0.1.19"
"@napi-rs/simple-git-linux-arm64-musl": "npm:0.1.19"
"@napi-rs/simple-git-linux-powerpc64le-gnu": "npm:0.1.19"
"@napi-rs/simple-git-linux-s390x-gnu": "npm:0.1.19"
"@napi-rs/simple-git-linux-x64-gnu": "npm:0.1.19"
"@napi-rs/simple-git-linux-x64-musl": "npm:0.1.19"
"@napi-rs/simple-git-win32-arm64-msvc": "npm:0.1.19"
"@napi-rs/simple-git-win32-x64-msvc": "npm:0.1.19"
dependenciesMeta:
"@napi-rs/simple-git-android-arm-eabi":
optional: true
"@napi-rs/simple-git-android-arm64":
optional: true
"@napi-rs/simple-git-darwin-arm64":
optional: true
"@napi-rs/simple-git-darwin-x64":
optional: true
"@napi-rs/simple-git-freebsd-x64":
optional: true
"@napi-rs/simple-git-linux-arm-gnueabihf":
optional: true
"@napi-rs/simple-git-linux-arm64-gnu":
optional: true
"@napi-rs/simple-git-linux-arm64-musl":
optional: true
"@napi-rs/simple-git-linux-powerpc64le-gnu":
optional: true
"@napi-rs/simple-git-linux-s390x-gnu":
optional: true
"@napi-rs/simple-git-linux-x64-gnu":
optional: true
"@napi-rs/simple-git-linux-x64-musl":
optional: true
"@napi-rs/simple-git-win32-arm64-msvc":
optional: true
"@napi-rs/simple-git-win32-x64-msvc":
optional: true
checksum: 10c0/b8088c2a21c4f8ce5bee69933c23efba16738eb07b58a44e6c1eac042770f1b6f6687bfc3cb98e8ef5f2dbd29754e37678743fdf5a0e0c3ffcfaef165a86a895
languageName: node
linkType: hard
"@next/env@npm:15.0.3":
version: 15.0.3
resolution: "@next/env@npm:15.0.3"
checksum: 10c0/63582fed80d6a28fff102c935095da71fd57ddf6b5f5d564e85ebdefdeb93298f7f7cf7d813c75b460c6627106717ea959b4c232939e7abb97d73d8b8467d4cd
languageName: node
linkType: hard
"@next/swc-darwin-arm64@npm:15.0.3":
version: 15.0.3
resolution: "@next/swc-darwin-arm64@npm:15.0.3"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@next/swc-darwin-x64@npm:15.0.3":
version: 15.0.3
resolution: "@next/swc-darwin-x64@npm:15.0.3"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@next/swc-linux-arm64-gnu@npm:15.0.3":
version: 15.0.3
resolution: "@next/swc-linux-arm64-gnu@npm:15.0.3"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@next/swc-linux-arm64-musl@npm:15.0.3":
version: 15.0.3
resolution: "@next/swc-linux-arm64-musl@npm:15.0.3"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
"@next/swc-linux-x64-gnu@npm:15.0.3":
version: 15.0.3
resolution: "@next/swc-linux-x64-gnu@npm:15.0.3"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@next/swc-linux-x64-musl@npm:15.0.3":
version: 15.0.3
resolution: "@next/swc-linux-x64-musl@npm:15.0.3"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@next/swc-win32-arm64-msvc@npm:15.0.3":
version: 15.0.3
resolution: "@next/swc-win32-arm64-msvc@npm:15.0.3"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@next/swc-win32-x64-msvc@npm:15.0.3":
version: 15.0.3
resolution: "@next/swc-win32-x64-msvc@npm:15.0.3"
conditions: os=win32 & cpu=x64
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":
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
"@npmcli/agent@npm:^2.0.0":
version: 2.2.2
resolution: "@npmcli/agent@npm:2.2.2"
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.3"
checksum: 10c0/325e0db7b287d4154ecd164c0815c08007abfb07653cc57bceded17bb7fd240998a3cbdbe87d700e30bef494885eccc725ab73b668020811d56623d145b524ae
languageName: node
linkType: hard
"@npmcli/fs@npm:^3.1.0":
version: 3.1.1
resolution: "@npmcli/fs@npm:3.1.1"
dependencies:
semver: "npm:^7.3.5"
checksum: 10c0/c37a5b4842bfdece3d14dfdb054f73fe15ed2d3da61b34ff76629fb5b1731647c49166fd2a8bf8b56fcfa51200382385ea8909a3cbecdad612310c114d3f6c99
languageName: node
linkType: hard
"@perfsee/bundle-analyzer@npm:1.13.0":
version: 1.13.0
resolution: "@perfsee/bundle-analyzer@npm:1.13.0"
dependencies:
"@eyhn/msgpack-stream": "npm:^2.8.4"
"@perfsee/jsonr": "npm:1.13.0"
"@perfsee/utils": "npm:1.10.0"
acorn: "npm:^8.7.1"
acorn-walk: "npm:^8.2.0"
htmlparser2: "npm:^8.0.1"
isolated-vm: "npm:^4.7.2"
lodash: "npm:^4.17.21"
query-string: "npm:^7.1.1"
tar: "npm:^6.1.11"
tslib: "npm:^2.4.0"
dependenciesMeta:
isolated-vm:
optional: true
checksum: 10c0/562935a921968c025a4546d9e5f0368d9334ff598ff9b474606cc4049abb5ae565d4a1854b25242a42073eb5a7baba328d8d6d30d6a906a879568fa4c5873dd0
languageName: node
linkType: hard
"@perfsee/jsonr@npm:1.13.0":
version: 1.13.0
resolution: "@perfsee/jsonr@npm:1.13.0"
dependencies:
tslib: "npm:^2.4.0"
checksum: 10c0/36646b8244f3fee1a25e1ca6651a74b730746c4eb062201b64527176e489aca5265e8f267a468e3204e1217f04d0bb05ad555b5fa95693c7631cbd0f12599ee4
languageName: node
linkType: hard
"@perfsee/plugin-utils@npm:1.13.0":
version: 1.13.0
resolution: "@perfsee/plugin-utils@npm:1.13.0"
dependencies:
"@perfsee/bundle-analyzer": "npm:1.13.0"
"@perfsee/jsonr": "npm:1.13.0"
"@perfsee/utils": "npm:1.10.0"
chalk: "npm:^4.1.2"
debug: "npm:4.3.4"
env-ci: "npm:^7.2.1"
find-cache-dir: "npm:^3.3.2"
lodash: "npm:^4.17.21"
node-fetch: "npm:^2.6.2"
open: "npm:^8.4.2"
query-string: "npm:^7.1.1"
simple-git: "npm:^3.15.0"
table: "npm:^6.8.0"
tar: "npm:^6.1.11"
tslib: "npm:^2.4.0"
uuid: "npm:^9.0.0"
checksum: 10c0/23f3ec442c3d8229a7f611f76a970d75d29ee58b2591820e174a53f6b11780de016afe7c365816a7093831d411afcf78fefec4ebc58c72c84b431c45d6b265b5
languageName: node
linkType: hard
"@perfsee/utils@npm:1.10.0":
version: 1.10.0
resolution: "@perfsee/utils@npm:1.10.0"
dependencies:
tslib: "npm:^2.4.0"
checksum: 10c0/6a57a08948a0720d92d9cecd5539ea0f05eb2e251527be623c68a8e06462169e9cf053fdba1589d0824ea82e465015e97acdcb02d0cceaef322993e9ebc758f0
languageName: node
linkType: hard
"@perfsee/webpack@npm:^1.10.0":
version: 1.13.0
resolution: "@perfsee/webpack@npm:1.13.0"
dependencies:
"@perfsee/bundle-analyzer": "npm:1.13.0"
"@perfsee/plugin-utils": "npm:1.13.0"
chalk: "npm:^4.1.2"
tslib: "npm:^2.4.0"
peerDependencies:
webpack: ">= 4"
checksum: 10c0/5cf5f1c93264cfc55d6705f233ab859cc5a9faabea45e9e5cc4d1890346b267676b524c626307f260ae40b7543a54fdf9f057b372dcb23085843b0775b15b03a
languageName: node
linkType: hard
"@pkgjs/parseargs@npm:^0.11.0":
version: 0.11.0
resolution: "@pkgjs/parseargs@npm:0.11.0"
checksum: 10c0/5bd7576bb1b38a47a7fc7b51ac9f38748e772beebc56200450c4a817d712232b8f1d3ef70532c80840243c657d491cf6a6be1e3a214cff907645819fdc34aadd
languageName: node
linkType: hard
"@popperjs/core@npm:^2.11.8":
version: 2.11.8
resolution: "@popperjs/core@npm:2.11.8"
checksum: 10c0/4681e682abc006d25eb380d0cf3efc7557043f53b6aea7a5057d0d1e7df849a00e281cd8ea79c902a35a414d7919621fc2ba293ecec05f413598e0b23d5a1e63
languageName: node
linkType: hard
"@rollup/pluginutils@npm:^4.0.0":
version: 4.2.1
resolution: "@rollup/pluginutils@npm:4.2.1"
dependencies:
estree-walker: "npm:^2.0.1"
picomatch: "npm:^2.2.2"
checksum: 10c0/3ee56b2c8f1ed8dfd0a92631da1af3a2dfdd0321948f089b3752b4de1b54dc5076701eadd0e5fc18bd191b77af594ac1db6279e83951238ba16bf8a414c64c48
languageName: node
linkType: hard
"@sinclair/typebox@npm:0.25.24":
version: 0.25.24
resolution: "@sinclair/typebox@npm:0.25.24"
checksum: 10c0/2faf9878f3a65a1f2855add80b0fe8c6fe83f084ea1ab432fa7506e7c85c55ae121c4af516d089b5737f5fad23b3628fcc83a6a5df29030c3f611185ce0388ac
languageName: node
linkType: hard
"@swc/counter@npm:0.1.3":
version: 0.1.3
resolution: "@swc/counter@npm:0.1.3"
checksum: 10c0/8424f60f6bf8694cfd2a9bca45845bce29f26105cda8cf19cdb9fd3e78dc6338699e4db77a89ae449260bafa1cc6bec307e81e7fb96dbf7dcfce0eea55151356
languageName: node
linkType: hard
"@swc/helpers@npm:0.5.13":
version: 0.5.13
resolution: "@swc/helpers@npm:0.5.13"
dependencies:
tslib: "npm:^2.4.0"
checksum: 10c0/b9df578401fc62405da9a6c31e79e447a2fd90f68b25b1daee12f2caf2821991bb89106f0397bc1acb4c4d84a8ce079d04b60b65f534496952e3bf8c9a52f40f
languageName: node
linkType: hard
"@tanstack/react-virtual@npm:^3.0.0-beta.60":
version: 3.10.7
resolution: "@tanstack/react-virtual@npm:3.10.7"
dependencies:
"@tanstack/virtual-core": "npm:3.10.7"
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
checksum: 10c0/620a4a4aa779468652858b22af38f862771e582ad2f7426d0ecf2f81c2ff4da8243f819a6ad7f80f964697df7bcddf577013da6232b756181426903252daeec4
languageName: node
linkType: hard
"@tanstack/virtual-core@npm:3.10.7":
version: 3.10.7
resolution: "@tanstack/virtual-core@npm:3.10.7"
checksum: 10c0/dd00c8444b53963c4f9962024a08256867b0b03f1e2fc1b2318ca514dd7c2eb70469992f8f0f49ed260f2284fac8f7b320dcbccf32dc1cf92d67fc072c072653
languageName: node
linkType: hard
"@theguild/remark-mermaid@npm:^0.0.5":
version: 0.0.5
resolution: "@theguild/remark-mermaid@npm:0.0.5"
dependencies:
mermaid: "npm:^10.2.2"
unist-util-visit: "npm:^5.0.0"
peerDependencies:
react: ^18.2.0
checksum: 10c0/3471a32a87d50f7eb699f15ff181f9a3698209951ef0fab1e928ea391275105286b0391e46cca4dd22d30dcab934e5c7eb6573c341f5d8543ca5bcb2f60cc916
languageName: node
linkType: hard
"@theguild/remark-npm2yarn@npm:^0.2.0":
version: 0.2.1
resolution: "@theguild/remark-npm2yarn@npm:0.2.1"
dependencies:
npm-to-yarn: "npm:^2.1.0"
unist-util-visit: "npm:^5.0.0"
checksum: 10c0/69380ac3814bcf2f9c00c8e375d97e55220adea04d9c887df1b6ac888b726a8a7aaf391ed80ceca1756cfa39d572221d12f681bc1a5f3fdf49a0ed59f7c3addc
languageName: node
linkType: hard
"@tootallnate/once@npm:2.0.0":
version: 2.0.0
resolution: "@tootallnate/once@npm:2.0.0"
checksum: 10c0/073bfa548026b1ebaf1659eb8961e526be22fa77139b10d60e712f46d2f0f05f4e6c8bec62a087d41088ee9e29faa7f54838568e475ab2f776171003c3920858
languageName: node
linkType: hard
"@ts-morph/common@npm:~0.11.0":
version: 0.11.1
resolution: "@ts-morph/common@npm:0.11.1"
dependencies:
fast-glob: "npm:^3.2.7"
minimatch: "npm:^3.0.4"
mkdirp: "npm:^1.0.4"
path-browserify: "npm:^1.0.1"
checksum: 10c0/436c4eb553a8e9fef6c632a8ca31e9bc21a0855b67b284ffeb6697fa9778a70a0c20fe92f379e289ccb1490799accf1cc5e99ff401be49ebcfcaa8b0cbdef554
languageName: node
linkType: hard
"@tsconfig/node10@npm:^1.0.7":
version: 1.0.11
resolution: "@tsconfig/node10@npm:1.0.11"
checksum: 10c0/28a0710e5d039e0de484bdf85fee883bfd3f6a8980601f4d44066b0a6bcd821d31c4e231d1117731c4e24268bd4cf2a788a6787c12fc7f8d11014c07d582783c
languageName: node
linkType: hard
"@tsconfig/node12@npm:^1.0.7":
version: 1.0.11
resolution: "@tsconfig/node12@npm:1.0.11"
checksum: 10c0/dddca2b553e2bee1308a056705103fc8304e42bb2d2cbd797b84403a223b25c78f2c683ec3e24a095e82cd435387c877239bffcb15a590ba817cd3f6b9a99fd9
languageName: node
linkType: hard
"@tsconfig/node14@npm:^1.0.0":
version: 1.0.3
resolution: "@tsconfig/node14@npm:1.0.3"
checksum: 10c0/67c1316d065fdaa32525bc9449ff82c197c4c19092b9663b23213c8cbbf8d88b6ed6a17898e0cbc2711950fbfaf40388938c1c748a2ee89f7234fc9e7fe2bf44
languageName: node
linkType: hard
"@tsconfig/node16@npm:^1.0.2":
version: 1.0.4
resolution: "@tsconfig/node16@npm:1.0.4"
checksum: 10c0/05f8f2734e266fb1839eb1d57290df1664fe2aa3b0fdd685a9035806daa635f7519bf6d5d9b33f6e69dd545b8c46bd6e2b5c79acb2b1f146e885f7f11a42a5bb
languageName: node
linkType: hard
"@types/acorn@npm:^4.0.0":
version: 4.0.6
resolution: "@types/acorn@npm:4.0.6"
dependencies:
"@types/estree": "npm:*"
checksum: 10c0/5a65a1d7e91fc95703f0a717897be60fa7ccd34b17f5462056274a246e6690259fe0a1baabc86fd3260354f87245cb3dc483346d7faad2b78fc199763978ede9
languageName: node
linkType: hard
"@types/d3-scale-chromatic@npm:^3.0.0":
version: 3.0.3
resolution: "@types/d3-scale-chromatic@npm:3.0.3"
checksum: 10c0/2f48c6f370edba485b57b73573884ded71914222a4580140ff87ee96e1d55ccd05b1d457f726e234a31269b803270ac95d5554229ab6c43c7e4a9894e20dd490
languageName: node
linkType: hard
"@types/d3-scale@npm:^4.0.3":
version: 4.0.8
resolution: "@types/d3-scale@npm:4.0.8"
dependencies:
"@types/d3-time": "npm:*"
checksum: 10c0/57de90e4016f640b83cb960b7e3a0ab3ed02e720898840ddc5105264ffcfea73336161442fdc91895377c2d2f91904d637282f16852b8535b77e15a761c8e99e
languageName: node
linkType: hard
"@types/d3-time@npm:*":
version: 3.0.3
resolution: "@types/d3-time@npm:3.0.3"
checksum: 10c0/245a8aadca504df27edf730de502e47a68f16ae795c86b5ca35e7afa91c133aa9ef4d08778f8cf1ed2be732f89a4105ba4b437ce2afbdfd17d3d937b6ba5f568