forked from svecosystem/formsnap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pnpm-lock.yaml
8270 lines (7265 loc) · 281 KB
/
pnpm-lock.yaml
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
863
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
lockfileVersion: '6.0'
settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
importers:
.:
devDependencies:
'@changesets/cli':
specifier: ^2.26.2
version: 2.27.1
'@svitejs/changesets-changelog-github-compact':
specifier: ^1.1.0
version: 1.1.0
packages/formsnap:
dependencies:
nanoid:
specifier: ^5.0.5
version: 5.0.5
devDependencies:
'@playwright/test':
specifier: ^1.28.1
version: 1.41.2
'@sveltejs/adapter-auto':
specifier: ^3.0.0
version: 3.1.1(@sveltejs/[email protected])
'@sveltejs/kit':
specifier: ^2.0.0
'@sveltejs/package':
specifier: ^2.0.0
version: 2.2.6([email protected])([email protected])
'@sveltejs/vite-plugin-svelte':
specifier: ^3.0.0
version: 3.0.2([email protected])([email protected])
'@types/eslint':
specifier: 8.56.0
version: 8.56.0
'@typescript-eslint/eslint-plugin':
specifier: ^6.0.0
'@typescript-eslint/parser':
specifier: ^6.0.0
version: 6.21.0([email protected])([email protected])
'@vitest/ui':
specifier: ^1.3.1
version: 1.3.1([email protected])
autoprefixer:
specifier: ^10.4.16
version: 10.4.17([email protected])
eslint:
specifier: ^8.56.0
version: 8.56.0
eslint-config-prettier:
specifier: ^9.1.0
version: 9.1.0([email protected])
eslint-plugin-svelte:
specifier: ^2.35.1
version: 2.35.1([email protected])([email protected])
postcss:
specifier: ^8.4.32
version: 8.4.35
postcss-load-config:
specifier: ^5.0.2
version: 5.0.3([email protected])
prettier:
specifier: ^3.1.1
version: 3.2.5
prettier-plugin-svelte:
specifier: ^3.1.2
version: 3.2.1([email protected])([email protected])
prettier-plugin-tailwindcss:
specifier: ^0.5.9
version: 0.5.11([email protected])([email protected])
publint:
specifier: ^0.1.9
version: 0.1.16
svelte:
specifier: ^4.2.7
version: 4.2.11
svelte-check:
specifier: ^3.6.0
sveltekit-superforms:
specifier: ^2.2.1
version: 2.3.0(@sveltejs/[email protected])(@types/[email protected])([email protected])([email protected])([email protected])
tailwindcss:
specifier: ^3.3.6
version: 3.4.1
tslib:
specifier: ^2.4.1
version: 2.6.2
typedoc:
specifier: ^0.25.8
version: 0.25.8([email protected])
typescript:
specifier: ^5.0.0
version: 5.3.3
vite:
specifier: ^5.0.11
version: 5.1.3
vitest:
specifier: ^1.2.0
version: 1.3.0(@vitest/[email protected])
sites/docs:
dependencies:
'@melt-ui/svelte':
specifier: ^0.74.0
version: 0.74.0([email protected])
bits-ui:
specifier: ^0.18.1
version: 0.18.1([email protected])
formsnap:
specifier: workspace:*
version: link:../../packages/formsnap
mode-watcher:
specifier: ^0.2.1
version: 0.2.1([email protected])
rehype-slug:
specifier: ^6.0.0
version: 6.0.0
svelte-sonner:
specifier: ^0.3.17
version: 0.3.17([email protected])
vaul-svelte:
specifier: ^0.2.3
version: 0.2.3([email protected])
devDependencies:
'@sveltejs/adapter-cloudflare':
specifier: ^4.1.0
version: 4.1.0(@sveltejs/[email protected])
'@sveltejs/kit':
specifier: ^2.5.0
'@sveltejs/vite-plugin-svelte':
specifier: ^3.0.2
version: 3.0.2([email protected])([email protected])
'@tailwindcss/typography':
specifier: ^0.5.10
version: 0.5.10([email protected])
'@types/eslint':
specifier: 8.56.2
version: 8.56.2
'@types/hast':
specifier: ^3.0.4
version: 3.0.4
'@types/mdast':
specifier: ^4.0.3
version: 4.0.3
'@typescript-eslint/eslint-plugin':
specifier: ^7.0.1
'@typescript-eslint/parser':
specifier: ^7.0.1
version: 7.0.1([email protected])([email protected])
autoprefixer:
specifier: ^10.4.17
version: 10.4.17([email protected])
clsx:
specifier: ^2.1.0
version: 2.1.0
concurrently:
specifier: ^8.2.2
version: 8.2.2
contentlayer:
specifier: ^0.3.4
version: 0.3.4([email protected])
eslint:
specifier: ^8.56.0
version: 8.56.0
eslint-config-prettier:
specifier: ^9.1.0
version: 9.1.0([email protected])
eslint-plugin-svelte:
specifier: ^2.35.1
version: 2.35.1([email protected])([email protected])
hast-util-to-html:
specifier: ^9.0.0
version: 9.0.0
mdsx:
specifier: ^0.0.5
version: 0.0.5([email protected])
phosphor-svelte:
specifier: ^1.4.2
version: 1.4.2([email protected])
postcss:
specifier: ^8.4.35
version: 8.4.35
postcss-load-config:
specifier: ^5.0.3
version: 5.0.3([email protected])
prettier:
specifier: ^3.2.5
version: 3.2.5
prettier-plugin-svelte:
specifier: ^3.2.1
version: 3.2.1([email protected])([email protected])
prettier-plugin-tailwindcss:
specifier: ^0.5.11
version: 0.5.11([email protected])([email protected])
rehype-pretty-code:
specifier: ^0.13.0
version: 0.13.0([email protected])
remark-gfm:
specifier: ^4.0.0
version: 4.0.0
shiki:
specifier: ^1.1.3
version: 1.1.3
svelte:
specifier: ^4.2.11
version: 4.2.11
svelte-check:
specifier: ^3.6.4
sveltekit-superforms:
specifier: ^2.3.0
version: 2.3.0(@sveltejs/[email protected])(@types/[email protected])([email protected])([email protected])([email protected])
tailwind-merge:
specifier: ^2.2.1
version: 2.2.1
tailwind-variants:
specifier: ^0.2.0
version: 0.2.0([email protected])
tailwindcss:
specifier: ^3.4.1
version: 3.4.1
tslib:
specifier: ^2.6.2
version: 2.6.2
typescript:
specifier: ^5.3.3
version: 5.3.3
unified:
specifier: ^11.0.4
version: 11.0.4
unist-builder:
specifier: ^4.0.0
version: 4.0.0
unist-util-visit:
specifier: ^5.0.0
version: 5.0.0
vite:
specifier: ^5.1.3
version: 5.1.3
vitest:
specifier: ^1.3.0
version: 1.3.0(@vitest/[email protected])
zod:
specifier: ^3.22.4
version: 3.22.4
packages:
/@aashutoshrathi/[email protected]:
resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl XFhQG2bjy4Pu1I EAlCNUzRDYDdFwFYUKvXcIA==}
engines: {node: '>=0.10.0'}
dev: true
/@alloc/[email protected]:
resolution: {integrity: sha512-UrcABB 4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3 z5TsKLw==}
engines: {node: '>=10'}
dev: true
/@ampproject/[email protected]:
resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==}
engines: {node: '>=6.0.0'}
dependencies:
'@jridgewell/gen-mapping': 0.3.3
'@jridgewell/trace-mapping': 0.3.22
/@babel/[email protected]:
resolution: {integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/highlight': 7.23.4
chalk: 2.4.2
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-Y4OZ ytlatR8AI 8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D KkdJCGPq/ 8TukHBlY10FX9A==}
engines: {node: '>=6.9.0'}
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq A==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-validator-identifier': 7.22.20
chalk: 2.4.2
js-tokens: 4.0.0
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-0CX6F BI2s9dkUqr08KFrAIZgNFj75rdBU/DjCyYLIaV/quFjkk6T EJ2LkZHyZTbEV4L5p97mNkUsHl2wLFAw==}
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: 0.14.1
dev: true
/@changesets/[email protected]:
resolution: {integrity: sha512-vfi69JR416qC9hWmFGSxj7N6wA5J222XNBmezSVATPWDVPIF7gkd4d8CpbEbXmRWbVrkoli3oerGS6dcL/BGsQ==}
dependencies:
'@babel/runtime': 7.23.9
'@changesets/config': 3.0.0
'@changesets/get-version-range-type': 0.4.0
'@changesets/git': 3.0.0
'@changesets/types': 6.0.0
'@manypkg/get-packages': 1.1.3
detect-indent: 6.1.0
fs-extra: 7.0.1
lodash.startcase: 4.4.0
outdent: 0.5.0
prettier: 2.8.8
resolve-from: 5.0.0
semver: 7.6.0
dev: true
/@changesets/[email protected]:
resolution: {integrity: sha512-4QG7NuisAjisbW4hkLCmGW2lRYdPrKzro fCtZaILX 3zdUELSvYjpL4GTv0E4aM9Mef3PuIQp89VmHJ4y2bfw==}
dependencies:
'@babel/runtime': 7.23.9
'@changesets/errors': 0.2.0
'@changesets/get-dependents-graph': 2.0.0
'@changesets/types': 6.0.0
'@manypkg/get-packages': 1.1.3
semver: 7.6.0
dev: true
/@changesets/[email protected]:
resolution: {integrity: sha512-bHOx97iFI4OClIT35Lok3sJAwM31VbUM gnMBV16fdbtBhgYu4dxsphBF/0AZZsyAHMrnM0yFcj5gZM1py6uQ==}
dependencies:
'@changesets/types': 6.0.0
dev: true
/@changesets/[email protected]:
resolution: {integrity: sha512-iJ91xlvRnnrJnELTp4eJJEOPjgpF3NOh4qeQehM6Ugiz9gJPRZ2t TsXun6E3AMN4hScZKjqVXl0TX C7AB3ZQ==}
hasBin: true
dependencies:
'@babel/runtime': 7.23.9
'@changesets/apply-release-plan': 7.0.0
'@changesets/assemble-release-plan': 6.0.0
'@changesets/changelog-git': 0.2.0
'@changesets/config': 3.0.0
'@changesets/errors': 0.2.0
'@changesets/get-dependents-graph': 2.0.0
'@changesets/get-release-plan': 4.0.0
'@changesets/git': 3.0.0
'@changesets/logger': 0.1.0
'@changesets/pre': 2.0.0
'@changesets/read': 0.6.0
'@changesets/types': 6.0.0
'@changesets/write': 0.3.0
'@manypkg/get-packages': 1.1.3
'@types/semver': 7.5.7
ansi-colors: 4.1.3
chalk: 2.4.2
ci-info: 3.9.0
enquirer: 2.4.1
external-editor: 3.1.0
fs-extra: 7.0.1
human-id: 1.0.2
meow: 6.1.1
outdent: 0.5.0
p-limit: 2.3.0
preferred-pm: 3.1.2
resolve-from: 5.0.0
semver: 7.6.0
spawndamnit: 2.0.0
term-size: 2.2.1
tty-table: 4.2.3
dev: true
/@changesets/[email protected]:
resolution: {integrity: sha512-o/rwLNnAo/ j9Yvw9mkBQOZySDYyOr/q wptRLcAVGlU6djOeP9v1nlalbL9MFsobuBVQbZCTp dIzdq CLQUA==}
dependencies:
'@changesets/errors': 0.2.0
'@changesets/get-dependents-graph': 2.0.0
'@changesets/logger': 0.1.0
'@changesets/types': 6.0.0
'@manypkg/get-packages': 1.1.3
fs-extra: 7.0.1
micromatch: 4.0.5
dev: true
/@changesets/[email protected]:
resolution: {integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG qrrL9DTjpdn8eYuCQSRpow==}
dependencies:
extendable-error: 0.1.7
dev: true
/@changesets/[email protected]:
resolution: {integrity: sha512-cafUXponivK4vBgZ3yLu944mTvam06XEn2IZGjjKc0antpenkYANXiiE6GExV/yKdsCnE8dXVZ25yGqLYZmScA==}
dependencies:
'@changesets/types': 6.0.0
'@manypkg/get-packages': 1.1.3
chalk: 2.4.2
fs-extra: 7.0.1
semver: 7.6.0
dev: true
/@changesets/[email protected]:
resolution: {integrity: sha512-JppheLu7S114aEs157fOZDjFqUDpm7eHdq5E8SSR0gUBTEK0cNSHsrSR5a66xs0z3RWuo46QvA3vawp8BxDHvg==}
dependencies:
dataloader: 1.4.0
node-fetch: 2.7.0
transitivePeerDependencies:
- encoding
dev: true
/@changesets/[email protected]:
resolution: {integrity: sha512-9L9xCUeD/Tb6L/oKmpm8nyzsOzhdNBBbt/ZNcjynbHC07WW4E1eX8NMGC5g5SbM5z/V MOrYsJ4lRW41GCbg3w==}
dependencies:
'@babel/runtime': 7.23.9
'@changesets/assemble-release-plan': 6.0.0
'@changesets/config': 3.0.0
'@changesets/pre': 2.0.0
'@changesets/read': 0.6.0
'@changesets/types': 6.0.0
'@manypkg/get-packages': 1.1.3
dev: true
/@changesets/[email protected]:
resolution: {integrity: sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==}
dev: true
/@changesets/[email protected]:
resolution: {integrity: sha512-vvhnZDHe2eiBNRFHEgMiGd2CT 164dfYyrJDhwwxTVD/OW0FUD6G7 4DIx1dNwkwjHyzisxGAU96q0sVNBns0w==}
dependencies:
'@babel/runtime': 7.23.9
'@changesets/errors': 0.2.0
'@changesets/types': 6.0.0
'@manypkg/get-packages': 1.1.3
is-subdir: 1.2.0
micromatch: 4.0.5
spawndamnit: 2.0.0
dev: true
/@changesets/[email protected]:
resolution: {integrity: sha512-pBrJm4CQm9VqFVwWnSqKEfsS2ESnwqwH xR7jETxIErZcfd1u2zBSqrHbRHR7xjhSgep9x2PSKFKY//FAshA3g==}
dependencies:
chalk: 2.4.2
dev: true
/@changesets/[email protected]:
resolution: {integrity: sha512-TS/9KG2CdGXS27S QxbZXgr8uPsP4yNJYb4BC2/NeFUj80Rni3TeD2qwWmabymxmrLo7JEsytXH1FbpKTbvivw==}
dependencies:
'@changesets/types': 6.0.0
js-yaml: 3.14.1
dev: true
/@changesets/[email protected]:
resolution: {integrity: sha512-HLTNYX/A4jZxc Sq8D1AMBsv 1qD6rmmJtjsCJa/9MSRybdxh0mjbTvE6JYZQ/ZiQ0mMlDOlGPXTm9KLTU3jyw==}
dependencies:
'@babel/runtime': 7.23.9
'@changesets/errors': 0.2.0
'@changesets/types': 6.0.0
'@manypkg/get-packages': 1.1.3
fs-extra: 7.0.1
dev: true
/@changesets/[email protected]:
resolution: {integrity: sha512-ZypqX8 /im1Fm98K4YcZtmLKgjs1kDQ5zHpc2U1qdtNBmZZfo/IBiG162RoP0CUF05tvp2y4IspH11PLnPxuuw==}
dependencies:
'@babel/runtime': 7.23.9
'@changesets/git': 3.0.0
'@changesets/logger': 0.1.0
'@changesets/parse': 0.4.0
'@changesets/types': 6.0.0
chalk: 2.4.2
fs-extra: 7.0.1
p-filter: 2.1.0
dev: true
/@changesets/[email protected]:
resolution: {integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb VIEUCECw==}
dev: true
/@changesets/[email protected]:
resolution: {integrity: sha512-b1UkfNulgKoWfqyHtzKS5fOZYSJO 77adgL7DLRDr /7jhChN QcHnbjiQVOz/U Ts3PGNySq7diAItzDgugfQ==}
dev: true
/@changesets/[email protected]:
resolution: {integrity: sha512-slGLb21fxZVUYbyea 94uFiD6ntQW0M2hIKNznFizDhZPDgn2c/fv1UzzlW43RVzh1BEDuIqW6hzlJ1OflNmcw==}
dependencies:
'@babel/runtime': 7.23.9
'@changesets/types': 6.0.0
fs-extra: 7.0.1
human-id: 1.0.2
prettier: 2.8.8
dev: true
/@cloudflare/[email protected]:
resolution: {integrity: sha512-MVGTTjZpJu4kJONvai5SdJzWIhOJbuweVZ3goI7FNyG JdoQH41OoB nMhLsX626vPLZVWGPIWsiSo/WZHzgQw==}
dev: true
/@contentlayer/[email protected]([email protected]):
resolution: {integrity: sha512-vNDwgLuhYNu m70NZ3XK9kexKNguuxPXg7Yvzj3B34cEilQjjzSrcTY/i AIQm9V7uT5GGshx9ukzPf SmoszQ==}
dependencies:
'@contentlayer/core': 0.3.4([email protected])
'@contentlayer/utils': 0.3.4
clipanion: 3.2.1([email protected])
typanion: 3.14.0
transitivePeerDependencies:
- '@effect-ts/otel-node'
- esbuild
- markdown-wasm
- supports-color
dev: true
/@contentlayer/[email protected]([email protected]):
resolution: {integrity: sha512-QSlLyc3y4PtdC5lFw0L4wTZUH8BQnv2nk37hNCsPAqGf dRO7TLAzdc 2/mVIRgK vSH pSOzjLsQpFxxXRTZA==}
dependencies:
'@contentlayer/core': 0.3.4([email protected])
transitivePeerDependencies:
- '@effect-ts/otel-node'
- esbuild
- markdown-wasm
- supports-color
dev: true
/@contentlayer/[email protected]([email protected]):
resolution: {integrity: sha512-o68oBLwfYZ 2vtgfk1lgHxOl3LoxvRNiUfeQ8IWFWy/L4wnIkKIqLZX01zlRE5IzYM ZMMN5V0cKQlO7DsyR9g==}
peerDependencies:
esbuild: 0.17.x || 0.18.x
markdown-wasm: 1.x
peerDependenciesMeta:
esbuild:
optional: true
markdown-wasm:
optional: true
dependencies:
'@contentlayer/utils': 0.3.4
camel-case: 4.1.2
comment-json: 4.2.3
esbuild: 0.20.0
gray-matter: 4.0.3
mdx-bundler: 9.2.1([email protected])
rehype-stringify: 9.0.4
remark-frontmatter: 4.0.1
remark-parse: 10.0.2
remark-rehype: 10.1.0
source-map-support: 0.5.21
type-fest: 3.13.1
unified: 10.1.2
transitivePeerDependencies:
- '@effect-ts/otel-node'
- supports-color
dev: true
/@contentlayer/[email protected]([email protected]):
resolution: {integrity: sha512-4njyn0OFPu7WY4tAjMxiJgWOKeiHuBOGdQ36EYE03iij/pPPRbiWbL cmLccYXUFEW58mDwpqROZZm6pnxjRDQ==}
dependencies:
'@contentlayer/core': 0.3.4([email protected])
'@contentlayer/utils': 0.3.4
chokidar: 3.6.0
fast-glob: 3.3.2
gray-matter: 4.0.3
imagescript: 1.2.18
micromatch: 4.0.5
ts-pattern: 4.3.0
unified: 10.1.2
yaml: 2.3.4
zod: 3.22.4
transitivePeerDependencies:
- '@effect-ts/otel-node'
- esbuild
- markdown-wasm
- supports-color
dev: true
/@contentlayer/[email protected]([email protected]):
resolution: {integrity: sha512-cyiv4sNUySZvR0uAKlM kSAELzNd2h2QT1R2e41dRKbwOUVxeLfmGiLugr0aVac6Q3xYcD99dbHyR1xWPV w9w==}
dependencies:
'@contentlayer/core': 0.3.4([email protected])
'@contentlayer/source-files': 0.3.4([email protected])
'@contentlayer/utils': 0.3.4
transitivePeerDependencies:
- '@effect-ts/otel-node'
- esbuild
- markdown-wasm
- supports-color
dev: true
/@contentlayer/[email protected]:
resolution: {integrity: sha512-ZWWOhbUWYQ2QHoLIlcUnEo7X4ZbwcyFPuzVQWWMkK43BxCveyQtZwBIzfyx54sqVzi0GUmKP8bHzsLQT0QxaLQ==}
peerDependencies:
'@effect-ts/otel-node': '*'
peerDependenciesMeta:
'@effect-ts/core':
optional: true
'@effect-ts/otel':
optional: true
'@effect-ts/otel-node':
optional: true
dependencies:
'@effect-ts/core': 0.60.5
'@effect-ts/otel': 0.15.1(@effect-ts/[email protected])(@opentelemetry/[email protected])(@opentelemetry/[email protected])(@opentelemetry/[email protected])
'@effect-ts/otel-exporter-trace-otlp-grpc': 0.15.1(@effect-ts/[email protected])(@opentelemetry/[email protected])(@opentelemetry/[email protected])(@opentelemetry/[email protected])(@opentelemetry/[email protected])
'@effect-ts/otel-sdk-trace-node': 0.15.1(@effect-ts/[email protected])(@opentelemetry/[email protected])(@opentelemetry/[email protected])(@opentelemetry/[email protected])(@opentelemetry/[email protected])
'@js-temporal/polyfill': 0.4.4
'@opentelemetry/api': 1.7.0
'@opentelemetry/core': 1.21.0(@opentelemetry/[email protected])
'@opentelemetry/exporter-trace-otlp-grpc': 0.39.1(@opentelemetry/[email protected])
'@opentelemetry/resources': 1.21.0(@opentelemetry/[email protected])
'@opentelemetry/sdk-trace-base': 1.21.0(@opentelemetry/[email protected])
'@opentelemetry/sdk-trace-node': 1.21.0(@opentelemetry/[email protected])
'@opentelemetry/semantic-conventions': 1.21.0
chokidar: 3.6.0
hash-wasm: 4.11.0
inflection: 2.0.1
memfs: 3.5.3
oo-ascii-tree: 1.94.0
ts-pattern: 4.3.0
type-fest: 3.13.1
dev: true
/@effect-ts/[email protected]:
resolution: {integrity: sha512-qi1WrtJA90XLMnj2hnUszW9Sx4dXP03ZJtCc5DiUBIOhF4Vw7plfb65/bdBySPoC9s7zy995TdUX1XBSxUkl5w==}
dependencies:
'@effect-ts/system': 0.57.5
dev: true
/@effect-ts/[email protected](@effect-ts/[email protected])(@opentelemetry/[email protected])(@opentelemetry/[email protected])(@opentelemetry/[email protected])(@opentelemetry/[email protected]):
resolution: {integrity: sha512-47gAg0O2pW5Jlo86jfzjdkwL5a7Bzb Kj5WTmdu4CxYRfWn9ytKjuuYIfsNDW8neuhdKzn P5wCddgEh0glYyQ==}
peerDependencies:
'@effect-ts/core': ^0.60.2
'@opentelemetry/api': ^1.4.0
'@opentelemetry/core': ^1.13.0
'@opentelemetry/exporter-trace-otlp-grpc': ^0.39.0
'@opentelemetry/sdk-trace-base': ^1.13.0
dependencies:
'@effect-ts/core': 0.60.5
'@effect-ts/otel': 0.15.1(@effect-ts/[email protected])(@opentelemetry/[email protected])(@opentelemetry/[email protected])(@opentelemetry/[email protected])
'@opentelemetry/api': 1.7.0
'@opentelemetry/core': 1.21.0(@opentelemetry/[email protected])
'@opentelemetry/exporter-trace-otlp-grpc': 0.39.1(@opentelemetry/[email protected])
'@opentelemetry/sdk-trace-base': 1.21.0(@opentelemetry/[email protected])
dev: true
/@effect-ts/[email protected](@effect-ts/[email protected])(@opentelemetry/[email protected])(@opentelemetry/[email protected])(@opentelemetry/[email protected])(@opentelemetry/[email protected]):
resolution: {integrity: sha512-a2sF0ylmn8xOJs8fNeT/spJ1gUcsksAJCALxo9WOfuTCMtTwMVtVhCKEPEeQoL7wFqU JgPkVdP91 FJ/Rkeow==}
peerDependencies:
'@effect-ts/core': ^0.60.2
'@opentelemetry/api': ^1.4.0
'@opentelemetry/core': ^1.13.0
'@opentelemetry/sdk-trace-base': ^1.13.0
'@opentelemetry/sdk-trace-node': ^1.13.0
dependencies:
'@effect-ts/core': 0.60.5
'@effect-ts/otel': 0.15.1(@effect-ts/[email protected])(@opentelemetry/[email protected])(@opentelemetry/[email protected])(@opentelemetry/[email protected])
'@opentelemetry/api': 1.7.0
'@opentelemetry/core': 1.21.0(@opentelemetry/[email protected])
'@opentelemetry/sdk-trace-base': 1.21.0(@opentelemetry/[email protected])
'@opentelemetry/sdk-trace-node': 1.21.0(@opentelemetry/[email protected])
dev: true
/@effect-ts/[email protected](@effect-ts/[email protected])(@opentelemetry/[email protected])(@opentelemetry/[email protected])(@opentelemetry/[email protected]):
resolution: {integrity: sha512-AmZJHl7t0 Peh7Yb2 hqn6r9 rd9/UfeA4AMV9h0YGTdOyouyFfD3wzWlxnAUzAQ4Lrod4kC7Noruret4EpqpA==}
peerDependencies:
'@effect-ts/core': ^0.60.2
'@opentelemetry/api': ^1.4.0
'@opentelemetry/core': ^1.13.0
'@opentelemetry/sdk-trace-base': ^1.13.0
dependencies:
'@effect-ts/core': 0.60.5
'@opentelemetry/api': 1.7.0
'@opentelemetry/core': 1.21.0(@opentelemetry/[email protected])
'@opentelemetry/sdk-trace-base': 1.21.0(@opentelemetry/[email protected])
dev: true
/@effect-ts/[email protected]:
resolution: {integrity: sha512-/crHGujo0xnuHIYNc1VgP0HGJGFSoSqq88JFXe6FmFyXPpWt8Xu39LyLg7rchsxfXFeEdA9CrIZvLV5eswXV5g==}
dev: true
/@esbuild-plugins/[email protected]([email protected]):
resolution: {integrity: sha512-haFQ0qhxEpqtWWY0kx1Y5oE3sMyO1PcoSiWEPrAw6tm/ZOOLXjSs6Q v1v9eyuVF0nNt50YEvrcrvENmyoMv5g==}
peerDependencies:
esbuild: '*'
dependencies:
'@types/resolve': 1.20.6
debug: 4.3.4
esbuild: 0.20.0
escape-string-regexp: 4.0.0
resolve: 1.22.8
transitivePeerDependencies:
- supports-color
dev: true
/@esbuild/[email protected]:
resolution: {integrity: sha512-bmoCYyWdEL3wDQIVbcyzRyeKLgk2WtWLTWz1ZIAZF/EGbNOwSA6ew3PftJ1PqMiOOGu0OyFMzG53L0zqIpPeNA==}
engines: {node: '>=12'}
cpu: [ppc64]
os: [aix]
requiresBuild: true
dev: true
optional: true
/@esbuild/[email protected]:
resolution: {integrity: sha512-fGFDEctNh0CcSwsiRPxiaqX0P5rq AqE0SRhYGZ4PX46Lg1FNR6oCxJghf8YgY0WQEgQuh3lErUFE4KxLeRmmw==}
engines: {node: '>=12'}
cpu: [ppc64]
os: [aix]
requiresBuild: true
dev: true
optional: true
/@esbuild/[email protected]:
resolution: {integrity: sha512-P0UVNGIienjZv3f5zq0DP3Nt2IE/3plFzuaS96vihvD0Hd6H/q4WXUGpCxD/E8YrSXfNyRPbpTq T8ZQioSuPA==}
engines: {node: '>=12'}
cpu: [arm64]
os: [android]
requiresBuild: true
dev: true
optional: true
/@esbuild/[email protected]:
resolution: {integrity: sha512-aVpnM4lURNkp0D3qPoAzSG92VXStYmoVPOgXveAUoQBWRSuQzt51yvSju29J6AHPmwY1BjH49uR29oyfH1ra8Q==}
engines: {node: '>=12'}
cpu: [arm64]
os: [android]
requiresBuild: true
dev: true
optional: true
/@esbuild/[email protected]:
resolution: {integrity: sha512-qg/Lj1mu3CdQlDEEiWrlC4eaPZ1KztwGJ9B6J /6G /4ewxJg7gqj8eVYWvao1bXrqGiW2rsBZFSX3q2lcW05w==}
engines: {node: '>=12'}
cpu: [arm]
os: [android]
requiresBuild: true
dev: true
optional: true
/@esbuild/[email protected]:
resolution: {integrity: sha512-3bMAfInvByLHfJwYPJRlpTeaQA75n8C/QKpEaiS4HrFWFiJlNI0vzq/zCjBrhAYcPyVPG7Eo9dMrcQXuqmNk5g==}
engines: {node: '>=12'}
cpu: [arm]
os: [android]
requiresBuild: true
dev: true
optional: true
/@esbuild/[email protected]:
resolution: {integrity: sha512-3k7ZoUW6Q6YqhdhIaq/WZ7HwBpnFBlW905Fa4s4qWJyiNOgT1dOqDiVAQFwBH7gBRZr17gLrlFCRzF6jFh7Kew==}
engines: {node: '>=12'}
cpu: [x64]
os: [android]
requiresBuild: true
dev: true
optional: true
/@esbuild/[email protected]:
resolution: {integrity: sha512-uK7wAnlRvjkCPzh8jJ QejFyrP8ObKuR5cBIsQZ qbMunwR8sbd8krmMbxTLSrDhiPZaJYKQAU5Y3iMDcZPhyQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [android]
requiresBuild: true
dev: true
optional: true
/@esbuild/[email protected]:
resolution: {integrity: sha512-B6IeSgZgtEzGC42jsI YYu9Z3HKRxp8ZT3cqhvliEHovq8HSX2YX8lNocDn79gCKJXOSaEot9MVYky7AKjCs8g==}
engines: {node: '>=12'}
cpu: [arm64]
os: [darwin]
requiresBuild: true
dev: true
optional: true
/@esbuild/[email protected]:
resolution: {integrity: sha512-AjEcivGAlPs3UAcJedMa9qYg9eSfU6FnGHJjT8s346HSKkrcWlYezGE8VaO2xKfvvlZkgAhyvl06OJOxiMgOYQ==}
engines: {node: '>=12'}
cpu: [arm64]
os: [darwin]
requiresBuild: true
dev: true
optional: true
/@esbuild/[email protected]:
resolution: {integrity: sha512-hKoVkKzFiToTgn 41qGhsUJXFlIjxI/jSYeZf3ugemDYZldIXIxhvwN6erJGlX4t5h417iFuheZ7l YVn05N3A==}
engines: {node: '>=12'}
cpu: [x64]
os: [darwin]
requiresBuild: true
dev: true
optional: true
/@esbuild/[email protected]:
resolution: {integrity: sha512-bsgTPoyYDnPv8ER0HqnJggXK6RyFy4PH4rtsId0V7Efa90u2 EifxytE9pZnsDgExgkARy24WUQGv9irVbTvIw==}
engines: {node: '>=12'}
cpu: [x64]
os: [darwin]
requiresBuild: true
dev: true
optional: true
/@esbuild/[email protected]:
resolution: {integrity: sha512-4aRvFIXmwAcDBw9AueDQ2YnGmz5L6obe5kmPT8Vd / x/JMVKCgdcRwH6APrbpNXsPz K653Qg8HB/oXvXVukA==}
engines: {node: '>=12'}
cpu: [arm64]
os: [freebsd]
requiresBuild: true
dev: true
optional: true
/@esbuild/[email protected]:
resolution: {integrity: sha512-kQ7jYdlKS335mpGbMW5tEe3IrQFIok9r84EM3PXB8qBFJPSc6dpWfrtsC/y1pyrz82xfUIn5ZrnSHQQsd6jebQ==}
engines: {node: '>=12'}
cpu: [arm64]
os: [freebsd]
requiresBuild: true
dev: true
optional: true
/@esbuild/[email protected]:
resolution: {integrity: sha512-EYoXZ4d8xtBoVN7CEwWY2IN4ho76xjYXqSXMNccFSx2lgqOG/1TBPW0yPx1bJZk94qu3tX0fycJeeQsKovA8gg==}
engines: {node: '>=12'}
cpu: [x64]
os: [freebsd]
requiresBuild: true
dev: true
optional: true
/@esbuild/[email protected]:
resolution: {integrity: sha512-uG8B0WSepMRsBNVXAQcHf9 Ko/Tr XqmK7Ptel9HVmnykupXdS4J7ovSQUIi0tQGIndhbqWLaIL/qO/cWhXKyQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [freebsd]
requiresBuild: true
dev: true
optional: true
/@esbuild/[email protected]:
resolution: {integrity: sha512-EoTjyYyLuVPfdPLsGVVVC8a0p1BFFvtpQDB/YLEhaXyf/5bczaGeN15QkR O4S5LeJ92Tqotve7i1jn35qwvdA==}
engines: {node: '>=12'}
cpu: [arm64]
os: [linux]
requiresBuild: true
dev: true
optional: true
/@esbuild/[email protected]:
resolution: {integrity: sha512-uTtyYAP5veqi2z9b6Gr0NUoNv9F/rOzI8tOD5jKcCvRUn7T60Bb 42NDBCWNhMjkQzI0qqwXkQGo1SY41G52nw==}
engines: {node: '>=12'}
cpu: [arm64]
os: [linux]
requiresBuild: true
dev: true
optional: true
/@esbuild/[email protected]:
resolution: {integrity: sha512-J5jPms//KhSNv LO1S1TX1UWp1ucM6N6XuL6ITdKWElCu8wXP72l9MM0zDTzzeikVyqFE6U8YAV9/tFyj0ti w==}
engines: {node: '>=12'}
cpu: [arm]
os: [linux]
requiresBuild: true
dev: true
optional: true
/@esbuild/[email protected]:
resolution: {integrity: sha512-2ezuhdiZw8vuHf1HKSf4TIk80naTbP9At7sOqZmdVwvvMyuoDiZB49YZKLsLOfKIr77 I40dWpHVeY5JHpIEIg==}
engines: {node: '>=12'}
cpu: [arm]
os: [linux]
requiresBuild: true
dev: true
optional: true
/@esbuild/[email protected]:
resolution: {integrity: sha512-Thsa42rrP1 UIGaWz47uydHSBOgTUnwBwNq59khgIwktK6x60Hivfbux9iNR0eHCHzOLjLMLfUMLCypBkZXMHA==}
engines: {node: '>=12'}
cpu: [ia32]
os: [linux]
requiresBuild: true
dev: true
optional: true
/@esbuild/[email protected]:
resolution: {integrity: sha512-c88wwtfs8tTffPaoJ SQn3y lKtgTzyjkD8NgsyCtCmtoIC8RDL7PrJU05an/e9VuAke6eJqGkoMhJK1RY6z4w==}
engines: {node: '>=12'}
cpu: [ia32]
os: [linux]
requiresBuild: true
dev: true
optional: true
/@esbuild/[email protected]:
resolution: {integrity: sha512-LiXdXA0s3IqRRjm6rV6XaWATScKAXjI4R4LoDlvO7 yQqFdlr1Bax62sRwkVvRIrwXxvtYEHHI4dm50jAXkuAA==}
engines: {node: '>=12'}
cpu: [loong64]
os: [linux]
requiresBuild: true
dev: true
optional: true
/@esbuild/[email protected]:
resolution: {integrity: sha512-lR2rr/128/6svngnVta6JN4gxSXle/yZEZL3o4XZ6esOqhyR4wsKyfu6qXAL04S4S5CgGfG GYZnjFd4YiG3Aw==}
engines: {node: '>=12'}
cpu: [loong64]
os: [linux]
requiresBuild: true
dev: true
optional: true
/@esbuild/[email protected]:
resolution: {integrity: sha512-fEnAuj5VGTanfJ07ff0gOA6IPsvrVHLVb6Lyd1g2/ed67oU1eFzL0r9WL7ZzscD /N6i3dWumGE1Un4f7Amf w==}
engines: {node: '>=12'}
cpu: [mips64el]
os: [linux]
requiresBuild: true
dev: true
optional: true
/@esbuild/[email protected]:
resolution: {integrity: sha512-9Sycc 1uUsDnJCelDf6ZNqgZQoK1mJvFtqf2MUz4ujTxGhvCWw 4chYfDLPepMEvVL9PDwn6HrXad5yOrNzIsQ==}
engines: {node: '>=12'}
cpu: [mips64el]
os: [linux]
requiresBuild: true
dev: true
optional: true
/@esbuild/[email protected]:
resolution: {integrity: sha512-nYJA2/QPimDQOh1rKWedNOe3Gfc8PabU7HT3iXWtNUbRzXS9 vgB0Fjaqr//XNbd82mCxHzik2qotuI89cfixg==}
engines: {node: '>=12'}
cpu: [ppc64]
os: [linux]
requiresBuild: true
dev: true
optional: true
/@esbuild/[email protected]:
resolution: {integrity: sha512-CoWSaaAXOZd CjbUTdXIJE/t7Oz 4g90A3VBCHLbfuc5yUQU/nFDLOzQsN0cdxgXd97lYW/psIIBdjzQIwTBGw==}
engines: {node: '>=12'}
cpu: [ppc64]
os: [linux]
requiresBuild: true
dev: true
optional: true
/@esbuild/[email protected]:
resolution: {integrity: sha512-2MueBrlPQCw5dVJJpQdUYgeqIzDQgw3QtiAHUC4RBz9FXPrskyyU3VI1hw7C0BSKB9OduwSJ79FTCqtGMWqJHg==}
engines: {node: '>=12'}
cpu: [riscv64]
os: [linux]
requiresBuild: true
dev: true
optional: true
/@esbuild/[email protected]:
resolution: {integrity: sha512-mlb1hg/eYRJUpv8h/x 4ShgoNLL8wgZ64SUr26KwglTYnwAWjkhR2GpoKftDbPOCnodA9t4Y/b68H4J9XmmPzA==}
engines: {node: '>=12'}
cpu: [riscv64]
os: [linux]
requiresBuild: true
dev: true
optional: true
/@esbuild/[email protected]:
resolution: {integrity: sha512- Pil1Nv3Umes4m3AZKqA2anfhJiVmNCYkPchwFJNEJN5QxmTs1uzyy4TvmDrCRNT2ApwSari7ZIgrPeUx4UZDg==}
engines: {node: '>=12'}
cpu: [s390x]
os: [linux]
requiresBuild: true
dev: true
optional: true
/@esbuild/[email protected]:
resolution: {integrity: sha512-fgf9ubb53xSnOBqyvWEY6ukBNRl1mVX1srPNu06B6mNsNK20JfH6xV6jECzrQ69/VMiTLvHMicQR/PgTOgqJUQ==}
engines: {node: '>=12'}
cpu: [s390x]
os: [linux]
requiresBuild: true
dev: true
optional: true
/@esbuild/[email protected]:
resolution: {integrity: sha512-B71g1QpxfwBvNrfyJdVDexenDIt1CiDN1TIXLbhOw0KhJzE78KIFGX6OJ9MrtC0oOqMWf 0xop4qEU8JrJTwCg==}
engines: {node: '>=12'}
cpu: [x64]
os: [linux]
requiresBuild: true
dev: true
optional: true
/@esbuild/[email protected]:
resolution: {integrity: sha512-H9Eu6MGse 204XZcYsse1yFHmRXEWgadk2N58O/xd50P9EvFMLJTQLg lB4E1cF2xhLZU5luSWtGTb0l9UeSg==}
engines: {node: '>=12'}
cpu: [x64]
os: [linux]
requiresBuild: true
dev: true
optional: true
/@esbuild/[email protected]: