-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
6976 lines (6280 loc) · 242 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
"@antfu/ni@npm:^0.20.0":
version: 0.20.0
resolution: "@antfu/ni@npm:0.20.0"
bin:
na: bin/na.mjs
nci: bin/nci.mjs
ni: bin/ni.mjs
nix: bin/nix.mjs
nr: bin/nr.mjs
nu: bin/nu.mjs
nun: bin/nun.mjs
checksum: 10c0/88a2c7b77fdc490ec994592e62610014674e1e634bc430351b1e3df595c6b2f63bd8bd6f6c088aaa60079d106d77b9a366b30a3d572d00f1320186979be82744
languageName: node
linkType: hard
"@babel/runtime@npm:^7.11.2, @babel/runtime@npm:^7.13.10, @babel/runtime@npm:^7.17.8":
version: 7.24.8
resolution: "@babel/runtime@npm:7.24.8"
dependencies:
regenerator-runtime: "npm:^0.14.0"
checksum: 10c0/f24b30af6b3ecae19165b3b032f9bc37b2d1769677bd63b69a6f81061967cfc847aa822518402ea6616b1d301d7eb46986b99c9f69cdb5880834fca2e6b34881
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.6.1":
version: 4.11.0
resolution: "@eslint-community/regexpp@npm:4.11.0"
checksum: 10c0/0f6328869b2741e2794da4ad80beac55cba7de2d3b44f796a60955b0586212ec75e6b0253291fd4aad2100ad471d1480d8895f2b54f1605439ba4c875e05e523
languageName: node
linkType: hard
"@eslint/eslintrc@npm:^2.1.4":
version: 2.1.4
resolution: "@eslint/eslintrc@npm:2.1.4"
dependencies:
ajv: "npm:^6.12.4"
debug: "npm:^4.3.2"
espree: "npm:^9.6.0"
globals: "npm:^13.19.0"
ignore: "npm:^5.2.0"
import-fresh: "npm:^3.2.1"
js-yaml: "npm:^4.1.0"
minimatch: "npm:^3.1.2"
strip-json-comments: "npm:^3.1.1"
checksum: 10c0/32f67052b81768ae876c84569ffd562491ec5a5091b0c1e1ca1e0f3c24fb42f804952fdd0a137873bc64303ba368a71ba079a6f691cee25beee9722d94cc8573
languageName: node
linkType: hard
"@eslint/js@npm:8.57.0":
version: 8.57.0
resolution: "@eslint/js@npm:8.57.0"
checksum: 10c0/9a518bb8625ba3350613903a6d8c622352ab0c6557a59fe6ff6178bf882bf57123f9d92aa826ee8ac3ee74b9c6203fe630e9ee00efb03d753962dcf65ee4bd94
languageName: node
linkType: hard
"@formatjs/intl-localematcher@npm:^0.5.2":
version: 0.5.4
resolution: "@formatjs/intl-localematcher@npm:0.5.4"
dependencies:
tslib: "npm:^2.4.0"
checksum: 10c0/c9ff5d34ca8b6fe59f8f303a3cc31a92d343e095a6987e273e5cc23f0fe99feb557a392a05da95931c7d24106acb6988e588d00ddd05b0934005aafd7fdbafe6
languageName: node
linkType: hard
"@hapi/hoek@npm:^9.0.0, @hapi/hoek@npm:^9.3.0":
version: 9.3.0
resolution: "@hapi/hoek@npm:9.3.0"
checksum: 10c0/a096063805051fb8bba4c947e293c664b05a32b47e13bc654c0dd43813a1cec993bdd8f29ceb838020299e1d0f89f68dc0d62a603c13c9cc8541963f0beca055
languageName: node
linkType: hard
"@hapi/topo@npm:^5.1.0":
version: 5.1.0
resolution: "@hapi/topo@npm:5.1.0"
dependencies:
"@hapi/hoek": "npm:^9.0.0"
checksum: 10c0/b16b06d9357947149e032bdf10151eb71aea8057c79c4046bf32393cb89d0d0f7ca501c40c0f7534a5ceca078de0700d2257ac855c15e59fe4e00bba2f25c86f
languageName: node
linkType: hard
"@humanwhocodes/config-array@npm:^0.11.14":
version: 0.11.14
resolution: "@humanwhocodes/config-array@npm:0.11.14"
dependencies:
"@humanwhocodes/object-schema": "npm:^2.0.2"
debug: "npm:^4.3.1"
minimatch: "npm:^3.0.5"
checksum: 10c0/66f725b4ee5fdd8322c737cb5013e19fac72d4d69c8bf4b7feb192fcb83442b035b92186f8e9497c220e58b2d51a080f28a73f7899bc1ab288c3be172c467541
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:^2.0.2":
version: 2.0.3
resolution: "@humanwhocodes/object-schema@npm:2.0.3"
checksum: 10c0/80520eabbfc2d32fe195a93557cef50dfe8c8905de447f022675aaf66abc33ae54098f5ea78548d925aa671cd4ab7c7daa5ad704fe42358c9b5e7db60f80696c
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.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.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
"@lukeed/csprng@npm:^1.1.0":
version: 1.1.0
resolution: "@lukeed/csprng@npm:1.1.0"
checksum: 10c0/5d6dcf478af732972083ab2889c294b57f1028fa13c2c240d7a4aaa079c2c75df7ef0dcbdda5419147fc6704b4adf96b2de92f1a9a72ac21c6350c4014fffe6c
languageName: node
linkType: hard
"@lukeed/uuid@npm:^2.0.0":
version: 2.0.1
resolution: "@lukeed/uuid@npm:2.0.1"
dependencies:
"@lukeed/csprng": "npm:^1.1.0"
checksum: 10c0/f9cc0385021f352f444d96dd101afd2a0efd3b2e85a61ac67deb8220409f75a6a426ed6525d297d97746f7931e3079ac6218777551a7c82686de7d292220cb1f
languageName: node
linkType: hard
"@mediapipe/tasks-vision@npm:0.10.8":
version: 0.10.8
resolution: "@mediapipe/tasks-vision@npm:0.10.8"
checksum: 10c0/17b54eac84c820a39740893ba732ad9913a90cc1911b1573893b63f48671d2651a5249e13914efbde90af71089b35a9fac765113d82c9d0765ec00ccb0e5b156
languageName: node
linkType: hard
"@monogrid/gainmap-js@npm:^3.0.5":
version: 3.0.5
resolution: "@monogrid/gainmap-js@npm:3.0.5"
dependencies:
promise-worker-transferable: "npm:^1.0.4"
peerDependencies:
three: ">= 0.159.0"
checksum: 10c0/e67662e5e82d5ff321b926c9e946c1e7ad24c3f59f126e9b2d562c16857985c80bad53a1e1c3f96d087b4745cf51ee77b6c1c21aab837d39602e087468d9f9be
languageName: node
linkType: hard
"@msgpack/msgpack@npm:^2.8.0":
version: 2.8.0
resolution: "@msgpack/msgpack@npm:2.8.0"
checksum: 10c0/5964ed3daad9ccf314238da81c91152dc693bca167b2469445c1d3ce0495443612e543d052281061a91ec48ed44a6a49dd3a334b5d0dbe2dc2db6ea6143e5787
languageName: node
linkType: hard
"@next/env@npm:14.1.4":
version: 14.1.4
resolution: "@next/env@npm:14.1.4"
checksum: 10c0/35f5e817bb47993565bc4b2b9961f9697e0f08b05bc008984de7e89c3626f4ef6db314629a52302786b2f386539005666b7ad56b441e45cc79b0a49835f8062b
languageName: node
linkType: hard
"@next/eslint-plugin-next@npm:14.1.4":
version: 14.1.4
resolution: "@next/eslint-plugin-next@npm:14.1.4"
dependencies:
glob: "npm:10.3.10"
checksum: 10c0/fb49237153bf528ef3939e1ceae0f658e44abcf0ca155d8042c7961f523e4d9aeba3de18532b633734f3b5524b644e9c3c5187089e0d400896c1c35812bbbdd3
languageName: node
linkType: hard
"@next/swc-darwin-arm64@npm:14.1.4":
version: 14.1.4
resolution: "@next/swc-darwin-arm64@npm:14.1.4"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@next/swc-darwin-x64@npm:14.1.4":
version: 14.1.4
resolution: "@next/swc-darwin-x64@npm:14.1.4"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@next/swc-linux-arm64-gnu@npm:14.1.4":
version: 14.1.4
resolution: "@next/swc-linux-arm64-gnu@npm:14.1.4"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@next/swc-linux-arm64-musl@npm:14.1.4":
version: 14.1.4
resolution: "@next/swc-linux-arm64-musl@npm:14.1.4"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
"@next/swc-linux-x64-gnu@npm:14.1.4":
version: 14.1.4
resolution: "@next/swc-linux-x64-gnu@npm:14.1.4"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@next/swc-linux-x64-musl@npm:14.1.4":
version: 14.1.4
resolution: "@next/swc-linux-x64-musl@npm:14.1.4"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@next/swc-win32-arm64-msvc@npm:14.1.4":
version: 14.1.4
resolution: "@next/swc-win32-arm64-msvc@npm:14.1.4"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@next/swc-win32-ia32-msvc@npm:14.1.4":
version: 14.1.4
resolution: "@next/swc-win32-ia32-msvc@npm:14.1.4"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@next/swc-win32-x64-msvc@npm:14.1.4":
version: 14.1.4
resolution: "@next/swc-win32-x64-msvc@npm:14.1.4"
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, @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
"@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
"@pkgjs/parseargs@npm:^0.11.0":
version: 0.11.0
resolution: "@pkgjs/parseargs@npm:0.11.0"
checksum: 10c0/5bd7576bb1b38a47a7fc7b51ac9f38748e772beebc56200450c4a817d712232b8f1d3ef70532c80840243c657d491cf6a6be1e3a214cff907645819fdc34aadd
languageName: node
linkType: hard
"@prismicio/api-renderer@npm:1.0.0":
version: 1.0.0
resolution: "@prismicio/api-renderer@npm:1.0.0"
dependencies:
"@prismicio/types-internal": "npm:^1.0.1"
tslib: "npm:^2.3.1"
uuid: "npm:^8.3.2"
peerDependencies:
fp-ts: ^2.11.8
io-ts: ^2.2.16
io-ts-types: ^0.5.16
checksum: 10c0/b77bed6053366dea8876515893da845a4af432677521641e8f673f27bb2cef2aac50adf5aa4e0ff02ac0ba62164011192ad4fc1ee0c52053d93baf6fa1fa1c65
languageName: node
linkType: hard
"@prismicio/api-renderer@npm:3.2.1":
version: 3.2.1
resolution: "@prismicio/api-renderer@npm:3.2.1"
dependencies:
"@prismicio/types-internal": "npm:2.6.0"
tslib: "npm:^2.5.0"
uuid: "npm:^9.0.0"
peerDependencies:
fp-ts: ^2.11.8
io-ts: ^2.2.16
io-ts-types: ^0.5.16
checksum: 10c0/137c4d734629dd2c8e0250e9ab3fb6af492e5c0d3c4d7f2a86a9494eaa0d6086c0cc54c24c7d042978795e3b9ce064a4fd4de37cd40d333178b3ea84a89075c8
languageName: node
linkType: hard
"@prismicio/client@npm:^7.1.0, @prismicio/client@npm:^7.4.0, @prismicio/client@npm:^7.5.0":
version: 7.6.0
resolution: "@prismicio/client@npm:7.6.0"
dependencies:
imgix-url-builder: "npm:^0.0.4"
checksum: 10c0/3cb163ff73fb7cd358ab8580663f601e9ff51e862edf3caf6fa8e6bf12e4bb643a21caff7ea855150702cc8b491192b38b2d9ba103c8fc05a5b5597e9dd004ed
languageName: node
linkType: hard
"@prismicio/custom-types-client@npm:^1.1.0, @prismicio/custom-types-client@npm:^1.2.0":
version: 1.3.1
resolution: "@prismicio/custom-types-client@npm:1.3.1"
peerDependencies:
"@prismicio/client": ">=7"
checksum: 10c0/f603148a4c52217635ef1a421d7255720698ce2e502a230e8b301cbf72fab175fcb0341330d9f82903f165a9e2ca23e6a2b20926962de82d7dba8047186969a6
languageName: node
linkType: hard
"@prismicio/mocks@npm:2.0.0":
version: 2.0.0
resolution: "@prismicio/mocks@npm:2.0.0"
dependencies:
"@prismicio/api-renderer": "npm:1.0.0"
"@prismicio/types-internal": "npm:2.0.0-alpha.8"
fp-ts: "npm:^2.11.8"
io-ts: "npm:^2.2.16"
io-ts-types: "npm:^0.5.16"
lorem-ipsum: "npm:^2.0.4"
monocle-ts: "npm:^2.3.11"
newtype-ts: "npm:^0.3.5"
tslib: "npm:^2.3.1"
uuid: "npm:^8.3.2"
checksum: 10c0/86deb0ef3e502227fa00f39f68365c7a805a9c56297234b7251b3ea814b2e7feeb2b83517540ceb2ff1afac8a3cc954a28a2270e7ae13aad6399aed74f668c78
languageName: node
linkType: hard
"@prismicio/mocks@npm:^2.0.0-alpha.2":
version: 2.3.1
resolution: "@prismicio/mocks@npm:2.3.1"
dependencies:
"@prismicio/api-renderer": "npm:3.2.1"
"@prismicio/types-internal": "npm:2.6.0"
fp-ts: "npm:^2.11.8"
io-ts: "npm:^2.2.16"
io-ts-types: "npm:^0.5.16"
lorem-ipsum: "npm:^2.0.4"
monocle-ts: "npm:^2.3.11"
newtype-ts: "npm:^0.3.5"
tslib: "npm:^2.3.1"
uuid: "npm:^9.0.1"
checksum: 10c0/1e384cb0c6029d2a4920795882cf1c9e3136d610c4ee2456e8a7cdd00b141691a33e3514860da5524b1de6fb1e432348807fa17a64f8ff832108bf478c0e70dc
languageName: node
linkType: hard
"@prismicio/next@npm:^1.5.0":
version: 1.6.0
resolution: "@prismicio/next@npm:1.6.0"
dependencies:
"@formatjs/intl-localematcher": "npm:^0.5.2"
imgix-url-builder: "npm:^0.0.4"
negotiator: "npm:^0.6.3"
peerDependencies:
"@prismicio/client": ^6 || ^7
next: ^13.4.5 || ^14 || ^15.0.0-rc.0
react: ^18 || ^19.0.0-rc.0
checksum: 10c0/c308bdee19a0e155c7ba498052f51a9264b4405ad92d00b7c314253223874b9c721d113a1cdb375005c90a15fc2fb7ea410f529e720819ea11b916c3ebc22e43
languageName: node
linkType: hard
"@prismicio/react@npm:^2.7.4":
version: 2.8.0
resolution: "@prismicio/react@npm:2.8.0"
dependencies:
"@prismicio/richtext": "npm:^2.1.5"
peerDependencies:
"@prismicio/client": ^6 || ^7
react: ^18 || ^19.0.0-rc.0
checksum: 10c0/fc95c78b47386ab853ac895395b3e2908803856640436f93722ff41169907c12368c395cb920ee2b03913436e2fcdde185024413c97c088f6836e8d0bbcd5693
languageName: node
linkType: hard
"@prismicio/richtext@npm:^2.1.5":
version: 2.1.5
resolution: "@prismicio/richtext@npm:2.1.5"
dependencies:
"@prismicio/types": "npm:^0.2.7"
checksum: 10c0/dd6559b85db5825f05267ebbae9a28a7d0354c72d4c2887336e24ed9e336c0aad9d03aedae56073398fd3c24d3c75ef5fd3a41f4b79f0b3af29363400c47e6ce
languageName: node
linkType: hard
"@prismicio/simulator@npm:^0.1.4":
version: 0.1.4
resolution: "@prismicio/simulator@npm:0.1.4"
dependencies:
"@prismicio/client": "npm:^7.1.0"
"@types/statuses": "npm:^2.0.1"
statuses: "npm:^2.0.1"
checksum: 10c0/7b2b50dd82513b5aea202458b1b2b57435e4f862e06b19317f54b8a421c713f1d4fdd3a9d779537190c43d031d2b3472155e8304174eee8d55cd1761fb939fee
languageName: node
linkType: hard
"@prismicio/types-internal@npm:2.0.0-alpha.8":
version: 2.0.0-alpha.8
resolution: "@prismicio/types-internal@npm:2.0.0-alpha.8"
dependencies:
monocle-ts: "npm:^2.3.11"
newtype-ts: "npm:^0.3.5"
tslib: "npm:^2.3.1"
peerDependencies:
fp-ts: ^2.11.8
io-ts: ^2.2.16
io-ts-types: ^0.5.16
checksum: 10c0/872f7bf7e95640957df0e322b76e917cc74c632191a537bf1de2890c2017c1c85fdf45876a2b32055ab07b4b2ece27b21f785edae9fd2e6dbcccfaabca5570a7
languageName: node
linkType: hard
"@prismicio/types-internal@npm:2.6.0, @prismicio/types-internal@npm:^2.2.0, @prismicio/types-internal@npm:^2.4.1":
version: 2.6.0
resolution: "@prismicio/types-internal@npm:2.6.0"
dependencies:
monocle-ts: "npm:^2.3.11"
newtype-ts: "npm:^0.3.5"
tslib: "npm:^2.3.1"
peerDependencies:
"@types/uuid": ^9.0.2
fp-ts: ^2.11.8
io-ts: ^2.2.16
io-ts-types: ^0.5.16
uuid: ^9.0.0
checksum: 10c0/95bec3fba5a0aef430e51afddd8bbf2ee9b90011933bec3e79b5d572afe9f56bf6101ae3e0900d4e4c4237a3d6071cb1ff926611fbd5e3b5e5ea98dcaaa0c6d2
languageName: node
linkType: hard
"@prismicio/types-internal@npm:^1.0.1":
version: 1.5.3
resolution: "@prismicio/types-internal@npm:1.5.3"
dependencies:
monocle-ts: "npm:^2.3.11"
newtype-ts: "npm:^0.3.5"
tslib: "npm:^2.3.1"
peerDependencies:
fp-ts: ^2.11.8
io-ts: ^2.2.16
io-ts-types: ^0.5.16
checksum: 10c0/51acd19426dea66493bd1793844ab164cbd045550b7bd52077b32de7a920b7777d2c20d3f7882b1d6f9197b9dfbfc95b5adf2e5f013a0bb158ba63fabc441fd5
languageName: node
linkType: hard
"@prismicio/types@npm:^0.2.7":
version: 0.2.9
resolution: "@prismicio/types@npm:0.2.9"
checksum: 10c0/5262b0e448ba07b9d2427ec4cc5e88b97b9f76fa0c6349577203de7ffc68338cd3b89cc089161f52140d2956bc16073bf1c3740e3c42b395831c62628754995e
languageName: node
linkType: hard
"@radix-ui/react-compose-refs@npm:1.0.1":
version: 1.0.1
resolution: "@radix-ui/react-compose-refs@npm:1.0.1"
dependencies:
"@babel/runtime": "npm:^7.13.10"
peerDependencies:
"@types/react": "*"
react: ^16.8 || ^17.0 || ^18.0
peerDependenciesMeta:
"@types/react":
optional: true
checksum: 10c0/be06f8dab35b5a1bffa7a5982fb26218ddade1acb751288333e3b89d7b4a7dfb5a6371be83876dac0ec2ebe0866d295e8618b778608e1965342986ea448040ec
languageName: node
linkType: hard
"@radix-ui/react-primitive@npm:1.0.3":
version: 1.0.3
resolution: "@radix-ui/react-primitive@npm:1.0.3"
dependencies:
"@babel/runtime": "npm:^7.13.10"
"@radix-ui/react-slot": "npm:1.0.2"
peerDependencies:
"@types/react": "*"
"@types/react-dom": "*"
react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
peerDependenciesMeta:
"@types/react":
optional: true
"@types/react-dom":
optional: true
checksum: 10c0/67a66ff8898a5e7739eda228ab6f5ce808858da1dce967014138d87e72b6bbfc93dc1467c706d98d1a2b93bf0b6e09233d1a24d31c78227b078444c1a69c42be
languageName: node
linkType: hard
"@radix-ui/react-slot@npm:1.0.2":
version: 1.0.2
resolution: "@radix-ui/react-slot@npm:1.0.2"
dependencies:
"@babel/runtime": "npm:^7.13.10"
"@radix-ui/react-compose-refs": "npm:1.0.1"
peerDependencies:
"@types/react": "*"
react: ^16.8 || ^17.0 || ^18.0
peerDependenciesMeta:
"@types/react":
optional: true
checksum: 10c0/3af6ea4891e6fa8091e666802adffe7718b3cd390a10fa9229a5f40f8efded9f3918ea01b046103d93923d41cc32119505ebb6bde76cad07a87b6cf4f2119347
languageName: node
linkType: hard
"@radix-ui/react-visually-hidden@npm:1.0.3":
version: 1.0.3
resolution: "@radix-ui/react-visually-hidden@npm:1.0.3"
dependencies:
"@babel/runtime": "npm:^7.13.10"
"@radix-ui/react-primitive": "npm:1.0.3"
peerDependencies:
"@types/react": "*"
"@types/react-dom": "*"
react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
peerDependenciesMeta:
"@types/react":
optional: true
"@types/react-dom":
optional: true
checksum: 10c0/0cbc12c2156b3fa0e40090cafd8525ce84c16a6b5a038a8e8fc7cbb16ed6da9ab369593962c57a18c41a16ec8713e0195c68ea34072ef1ca254ed4d4c0770bb4
languageName: node
linkType: hard
"@react-spring/animated@npm:~9.6.1":
version: 9.6.1
resolution: "@react-spring/animated@npm:9.6.1"
dependencies:
"@react-spring/shared": "npm:~9.6.1"
"@react-spring/types": "npm:~9.6.1"
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
checksum: 10c0/c7a6eea30d82f9266a1e01bc9a8fcae49fa5edd474cf28a85edaf77bc638f8622f81db81c4da32881a238aeadf4b135d414d78334c23ac7588ba4dd266472ff6
languageName: node
linkType: hard
"@react-spring/core@npm:~9.6.1":
version: 9.6.1
resolution: "@react-spring/core@npm:9.6.1"
dependencies:
"@react-spring/animated": "npm:~9.6.1"
"@react-spring/rafz": "npm:~9.6.1"
"@react-spring/shared": "npm:~9.6.1"
"@react-spring/types": "npm:~9.6.1"
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
checksum: 10c0/8deb3c623604f37439b127cff45246228054ccf2fab9504cc3289a422d82a58b8670d978e9f5d09a619cddbc5670628c2db81e0c984b9143c1688226b7bfdcc2
languageName: node
linkType: hard
"@react-spring/rafz@npm:~9.6.1":
version: 9.6.1
resolution: "@react-spring/rafz@npm:9.6.1"
checksum: 10c0/56ec6f7540f782e45160a8270bb2f305320ab1bfafc1ce4fe69f35126bbf3e68ea69f42f23f2cfb571e9952e50850d09fa54b520fb1df5975a511a1bd6d4767d
languageName: node
linkType: hard
"@react-spring/shared@npm:~9.6.1":
version: 9.6.1
resolution: "@react-spring/shared@npm:9.6.1"
dependencies:
"@react-spring/rafz": "npm:~9.6.1"
"@react-spring/types": "npm:~9.6.1"
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
checksum: 10c0/6173111653da1c622b65ccc52486de245541dc52697ecfee8257d79903e27914936c3e941f85015140a2e0647d8cddb98deccf60530f3d4d1ed865a833c96302
languageName: node
linkType: hard
"@react-spring/three@npm:~9.6.1":
version: 9.6.1
resolution: "@react-spring/three@npm:9.6.1"
dependencies:
"@react-spring/animated": "npm:~9.6.1"
"@react-spring/core": "npm:~9.6.1"
"@react-spring/shared": "npm:~9.6.1"
"@react-spring/types": "npm:~9.6.1"
peerDependencies:
"@react-three/fiber": ">=6.0"
react: ^16.8.0 || ^17.0.0 || ^18.0.0
three: ">=0.126"
checksum: 10c0/e313fd804afa80aa62e49cbc802a088bad53138acbf22b7fdc32fa768828c299e2a9aa3a228bdfce19386f4adfdb117a06a106ffe16ccaf33f2214937e596017
languageName: node
linkType: hard
"@react-spring/types@npm:~9.6.1":
version: 9.6.1
resolution: "@react-spring/types@npm:9.6.1"
checksum: 10c0/99cca0141c6e8a377407e66c6deb7a370a07d2b60a103666aab858576ec9d8cbfe2254eab6bf8a6cba1e3aa6420bcd6d5c8633b04a24ccaf06e96f28cfc2d517
languageName: node
linkType: hard
"@react-three/drei@npm:^9.105.3":
version: 9.108.4
resolution: "@react-three/drei@npm:9.108.4"
dependencies:
"@babel/runtime": "npm:^7.11.2"
"@mediapipe/tasks-vision": "npm:0.10.8"
"@monogrid/gainmap-js": "npm:^3.0.5"
"@react-spring/three": "npm:~9.6.1"
"@use-gesture/react": "npm:^10.2.24"
camera-controls: "npm:^2.4.2"
cross-env: "npm:^7.0.3"
detect-gpu: "npm:^5.0.28"
glsl-noise: "npm:^0.0.0"
hls.js: "npm:1.3.5"
maath: "npm:^0.10.7"
meshline: "npm:^3.1.6"
react-composer: "npm:^5.0.3"
stats-gl: "npm:^2.0.0"
stats.js: "npm:^0.17.0"
suspend-react: "npm:^0.1.3"
three-mesh-bvh: "npm:^0.7.0"
three-stdlib: "npm:^2.29.9"
troika-three-text: "npm:^0.49.0"
tunnel-rat: "npm:^0.1.2"
utility-types: "npm:^3.10.0"
uuid: "npm:^9.0.1"
zustand: "npm:^3.7.1"
peerDependencies:
"@react-three/fiber": ">=8.0"
react: ">=18.0"
react-dom: ">=18.0"
three: ">=0.137"
peerDependenciesMeta:
react-dom:
optional: true
checksum: 10c0/d049b73f6849c1a7506986d7e14fc3ce333b07f2efef660356949a634f47fd93e4203c27435d7694666ca11ee1822f7a3117ab5d5fdf0d406c071248f8a46bf6
languageName: node
linkType: hard
"@react-three/fiber@npm:^8.16.1":
version: 8.16.8
resolution: "@react-three/fiber@npm:8.16.8"
dependencies:
"@babel/runtime": "npm:^7.17.8"
"@types/react-reconciler": "npm:^0.26.7"
"@types/webxr": "npm:*"
base64-js: "npm:^1.5.1"
buffer: "npm:^6.0.3"
its-fine: "npm:^1.0.6"
react-reconciler: "npm:^0.27.0"
react-use-measure: "npm:^2.1.1"
scheduler: "npm:^0.21.0"
suspend-react: "npm:^0.1.3"
zustand: "npm:^3.7.1"
peerDependencies:
expo: ">=43.0"
expo-asset: ">=8.4"
expo-file-system: ">=11.0"
expo-gl: ">=11.0"
react: ">=18.0"
react-dom: ">=18.0"
react-native: ">=0.64"
three: ">=0.133"
peerDependenciesMeta:
expo:
optional: true
expo-asset:
optional: true
expo-file-system:
optional: true
expo-gl:
optional: true
react-dom:
optional: true
react-native:
optional: true
checksum: 10c0/bf3061bcc5096857a2e659f7859570bd3acb9af067573791e47a97ecaa1fc37efb12a41c081bc7c4ebe4440ebf44016fd04a69d83c553ca61e4ded595b7fd93b
languageName: node
linkType: hard
"@rushstack/eslint-patch@npm:^1.3.3":
version: 1.10.3
resolution: "@rushstack/eslint-patch@npm:1.10.3"
checksum: 10c0/ec75d23fba30fc5f3303109181ce81a686f7b5660b6e06d454cd7b74a635bd68d5b28300ddd6e2a53b6cb10a876246e952e12fa058af32b2fa29b73744f00521
languageName: node
linkType: hard
"@scarf/scarf@npm:^1.1.1":
version: 1.3.0
resolution: "@scarf/scarf@npm:1.3.0"
checksum: 10c0/b616ea968b9e04124b9fa43bc170d2b002e18936eb3450e71ccaa88faf0a90a28eead36efdfe9c5bc69bf4cf6b9e079e364e67e276701e950fbbd463bc735356
languageName: node
linkType: hard
"@segment/analytics-core@npm:1.3.2":
version: 1.3.2
resolution: "@segment/analytics-core@npm:1.3.2"
dependencies:
"@lukeed/uuid": "npm:^2.0.0"
dset: "npm:^3.1.2"
tslib: "npm:^2.4.1"
checksum: 10c0/c367722f6861c16e55f924a3681b273e56643d2f986b0e12a7a7af532b3dc687ca4c0d67c07234ca507d55325dbcdf084f890b030cf53452a3f1212d9d0dbd31
languageName: node
linkType: hard
"@segment/analytics-generic-utils@npm:1.0.0":
version: 1.0.0
resolution: "@segment/analytics-generic-utils@npm:1.0.0"
checksum: 10c0/03a4baef674c934352506882e57b4d362996afeaee87ee2edbf8d74e1c18d6e0d0b9a387787b6f01faf2837c82045df641cd95eb6d13de19568291e249b7d542
languageName: node
linkType: hard
"@segment/analytics-node@npm:1.1.3":
version: 1.1.3
resolution: "@segment/analytics-node@npm:1.1.3"
dependencies:
"@lukeed/uuid": "npm:^2.0.0"
"@segment/analytics-core": "npm:1.3.2"
"@segment/analytics-generic-utils": "npm:1.0.0"
buffer: "npm:^6.0.3"
node-fetch: "npm:^2.6.7"
tslib: "npm:^2.4.1"
checksum: 10c0/b74abaed0284dd8af0de015be0d793ba090ec2a29116170850293f1bb38002e783745a126729b83094f95dfc505bc7c8dd47fdc7e696c2650b3ac080c2cc9991
languageName: node
linkType: hard
"@sideway/address@npm:^4.1.5":
version: 4.1.5
resolution: "@sideway/address@npm:4.1.5"
dependencies:
"@hapi/hoek": "npm:^9.0.0"
checksum: 10c0/638eb6f7e7dba209053dd6c8da74d7cc995e2b791b97644d0303a7dd3119263bcb7225a4f6804d4db2bc4f96e5a9d262975a014f58eae4d1753c27cbc96ef959
languageName: node
linkType: hard
"@sideway/formula@npm:^3.0.1":
version: 3.0.1
resolution: "@sideway/formula@npm:3.0.1"
checksum: 10c0/3fe81fa9662efc076bf41612b060eb9b02e846ea4bea5bd114f1662b7f1541e9dedcf98aff0d24400bcb92f113964a50e0290b86e284edbdf6346fa9b7e2bf2c
languageName: node
linkType: hard
"@sideway/pinpoint@npm:^2.0.0":
version: 2.0.0
resolution: "@sideway/pinpoint@npm:2.0.0"
checksum: 10c0/d2ca75dacaf69b8fc0bb8916a204e01def3105ee44d8be16c355e5f58189eb94039e15ce831f3d544f229889ccfa35562a0ce2516179f3a7ee1bbe0b71e55b36
languageName: node
linkType: hard
"@slicemachine/adapter-next@npm:^0.3.38":
version: 0.3.42
resolution: "@slicemachine/adapter-next@npm:0.3.42"
dependencies:
"@prismicio/simulator": "npm:^0.1.4"
"@prismicio/types-internal": "npm:^2.4.1"
"@slicemachine/plugin-kit": "npm:0.4.42"
common-tags: "npm:^1.8.2"
fp-ts: "npm:^2.13.1"
io-ts: "npm:^2.2.20"
io-ts-types: "npm:^0.5.19"
lz-string: "npm:1.5.0"
monocle-ts: "npm:^2.3.13"
newtype-ts: "npm:^0.3.5"
pascal-case: "npm:^3.1.2"
peerDependencies:
next: ^11 || ^12 || ^13 || ^14 || ^15.0.0-rc.0
react: ^17 || ^18 || ^19.0.0-rc.0
checksum: 10c0/e3032c6f974a019965823855c874cb0000d0cee982bdad5fcb471146adaf294607608275a471588505096e3940eeb965ff8ac5d5ed8a8c62c4b92abc546ed747
languageName: node
linkType: hard
"@slicemachine/manager@npm:0.18.3":
version: 0.18.3
resolution: "@slicemachine/manager@npm:0.18.3"
dependencies:
"@antfu/ni": "npm:^0.20.0"
"@prismicio/custom-types-client": "npm:^1.2.0"
"@prismicio/mocks": "npm:2.0.0"
"@prismicio/types-internal": "npm:^2.2.0"
"@segment/analytics-node": "npm:1.1.3"
"@slicemachine/plugin-kit": "npm:0.4.38"
cookie: "npm:^0.5.0"
cors: "npm:^2.8.5"
execa: "npm:^7.1.1"
file-type: "npm:^18.2.1"
fp-ts: "npm:^2.13.1"
get-port: "npm:^6.1.2"
h3: "npm:^1.6.0"
io-ts: "npm:^2.2.20"
io-ts-reporters: "npm:^2.0.1"
io-ts-types: "npm:^0.5.19"
monocle-ts: "npm:^2.3.13"
newtype-ts: "npm:^0.3.5"
node-fetch: "npm:^3.3.1"
p-limit: "npm:^4.0.0"
prettier: "npm:^3.0.3"
r19: "npm:0.1.8"
rc9: "npm:^2.0.1"
semver: "npm:^7.3.8"
peerDependencies:
msw: ^1.1.0
peerDependenciesMeta:
msw:
optional: true
checksum: 10c0/04bdf6149d8ce8acb3ad14c9525675ecbd9ededdf66b77e84376d3c154e1d3f135287002edb800289600be54795dc9fbe039bd4aa615795b6eb567037bb33758
languageName: node
linkType: hard
"@slicemachine/plugin-kit@npm:0.4.38":
version: 0.4.38
resolution: "@slicemachine/plugin-kit@npm:0.4.38"
dependencies:
common-tags: "npm:^1.8.2"
defu: "npm:^6.1.2"
dotenv: "npm:16.3.1"
fp-ts: "npm:^2.13.1"
fs-extra: "npm:11.1.1"
io-ts: "npm:^2.2.20"
io-ts-reporters: "npm:^2.0.1"
p-limit: "npm:^4.0.0"
prettier: "npm:^3.0.3"
prismic-ts-codegen: "npm:^0.1.19"
checksum: 10c0/d8e0262058b53afba3126300fd08c8b9c0f5d9d02e3418b83dfa6fdd740bc372e2cdc5ca4448631a5cda27896efc41a29630340ce0a11a0567ff2fc781661680
languageName: node
linkType: hard
"@slicemachine/plugin-kit@npm:0.4.42":
version: 0.4.42
resolution: "@slicemachine/plugin-kit@npm:0.4.42"
dependencies:
"@prismicio/client": "npm:^7.5.0"
common-tags: "npm:^1.8.2"
defu: "npm:^6.1.2"
dotenv: "npm:16.3.1"
fp-ts: "npm:^2.13.1"
fs-extra: "npm:11.1.1"
io-ts: "npm:^2.2.20"
io-ts-reporters: "npm:^2.0.1"
p-limit: "npm:^4.0.0"
prettier: "npm:^3.0.3"
prismic-ts-codegen: "npm:^0.1.20"
checksum: 10c0/95537df8f08fcce6bd2df157064077516327356cbfac5b8573c85dd9b81137e4ee6a4df1a22db3f8370cd5f2a60206fa211f9fca588d5afbd92b1588cc4dfbe2
languageName: node
linkType: hard
"@swc/helpers@npm:0.5.2":
version: 0.5.2
resolution: "@swc/helpers@npm:0.5.2"
dependencies:
tslib: "npm:^2.4.0"
checksum: 10c0/b6fa49bcf6c00571d0eb7837b163f8609960d4d77538160585e27ed167361e9776bd6e5eb9646ffac2fb4d43c58df9ca50dab9d96ab097e6591bc82a75fd1164
languageName: node
linkType: hard
"@tailwindcss/typography@npm:^0.5.12":
version: 0.5.13
resolution: "@tailwindcss/typography@npm:0.5.13"
dependencies:
lodash.castarray: "npm:^4.4.0"
lodash.isplainobject: "npm:^4.0.6"
lodash.merge: "npm:^4.6.2"
postcss-selector-parser: "npm:6.0.10"
peerDependencies:
tailwindcss: "*"
checksum: 10c0/6c01287e7492c001595cd5a39765f313e48e1d2997ea78823919edabd692300d144c42b6e16dee6e077a683e635b9164ff985d5a0f8eeff7824b2d119151899e
languageName: node
linkType: hard
"@tokenizer/token@npm:^0.3.0":
version: 0.3.0
resolution: "@tokenizer/token@npm:0.3.0"
checksum: 10c0/7ab9a822d4b5ff3f5bca7f7d14d46bdd8432528e028db4a52be7fbf90c7f495cc1af1324691dda2813c6af8dc4b8eb29de3107d4508165f9aa5b53e7d501f155
languageName: node
linkType: hard
"@tweenjs/tween.js@npm:~23.1.1":
version: 23.1.2
resolution: "@tweenjs/tween.js@npm:23.1.2"
checksum: 10c0/8fa754b5fd548750e8cc26a4094b46578ee376bf15e1942e042fb532f469dca31f41c48b4d582f1fabceafa705be31b83d11dd79401a518fbabd97d1472c87df
languageName: node
linkType: hard
"@types/draco3d@npm:^1.4.0":
version: 1.4.10
resolution: "@types/draco3d@npm:1.4.10"
checksum: 10c0/431e333b2fd67e2b081e8697e71dfb82a125fc04b2cbfa0205e4d521719d3749c964b2bf82bb7944ba0a12e5bc3d9afe387a58e68b195d838fcdbc65c8572a35
languageName: node
linkType: hard
"@types/http-proxy@npm:^1.17.8":
version: 1.17.14
resolution: "@types/http-proxy@npm:1.17.14"
dependencies:
"@types/node": "npm:*"
checksum: 10c0/c4bffd87be9aff7e879c05bd2c28716220e0eb39788e3f8d314eee665324ad8f5f0919041cbd710254d553cd9cea023f8b776d4b1ec31d2188eac60af18c3022
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/node@npm:*, @types/node@npm:^20":
version: 20.14.10
resolution: "@types/node@npm:20.14.10"
dependencies:
undici-types: "npm:~5.26.4"
checksum: 10c0/0b06cff14365c2d0085dc16cc8cbea5c40ec09cfc1fea966be9eeecf35562760bfde8f88e86de6edfaf394501236e229d9c1084fad04fb4dec472ae245d8ae69
languageName: node
linkType: hard