Tailwind classes in OCaml
1(lang dune 3.0)
2
3(name tailwind)
4
5(generate_opam_files true)
6
7(source
8 (github yourusername/tailwind-ocaml))
9
10(authors "Your Name")
11
12(maintainers "Your Name")
13
14(license MIT)
15
16(documentation https://yourusername.github.io/tailwind-ocaml/)
17
18(package
19 (name tailwind)
20 (synopsis "Type-safe Tailwind CSS generation for OCaml")
21 (description "A comprehensive OCaml library for generating Tailwind CSS classes with full type safety")
22 (depends
23 ocaml
24 (dune (>= 3.0))
25 (alcotest :with-test)
26 (qcheck :with-test)
27 (odoc :with-doc)))
28
29(package
30 (name tailwind-html)
31 (synopsis "Tailwind CSS integration with Htmlit")
32 (description "High-level component library using Tailwind CSS with Htmlit")
33 (allow_empty)
34 (depends
35 ocaml
36 (dune (>= 3.0))
37 tailwind
38 (htmlit (>= 0.1.0))
39 (alcotest :with-test)
40 (qcheck :with-test)
41 (odoc :with-doc)))