Tailwind classes in OCaml
1# This file is generated by dune, edit dune-project instead
2opam-version: "2.0"
3synopsis: "Type-safe Tailwind CSS generation for OCaml"
4description:
5 "A comprehensive OCaml library for generating Tailwind CSS classes with full type safety"
6maintainer: ["Your Name"]
7authors: ["Your Name"]
8license: "MIT"
9homepage: "https://github.com/yourusername/tailwind-ocaml"
10doc: "https://yourusername.github.io/tailwind-ocaml/"
11bug-reports: "https://github.com/yourusername/tailwind-ocaml/issues"
12depends: [
13 "ocaml"
14 "dune" {>= "3.0" & >= "3.0"}
15 "alcotest" {with-test}
16 "qcheck" {with-test}
17 "odoc" {with-doc}
18]
19build: [
20 ["dune" "subst"] {dev}
21 [
22 "dune"
23 "build"
24 "-p"
25 name
26 "-j"
27 jobs
28 "@install"
29 "@runtest" {with-test}
30 "@doc" {with-doc}
31 ]
32]
33dev-repo: "git+https://github.com/yourusername/tailwind-ocaml.git"