-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
dune-project
44 lines (35 loc) · 1.14 KB
/
dune-project
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
(lang dune 3.8)
(cram enable)
(using menhir 2.0)
(using melange 0.1)
(name styled-ppx)
(generate_opam_files true)
(implicit_transitive_deps false)
(source (github davesnx/styled-ppx))
(homepage "https://styled-ppx.vercel.app")
(bug_reports "https://github.com/davesnx/styled-ppx/issues")
(license "BSD-2-Clause")
(authors "David Sancho <[email protected]>")
(maintainers "David Sancho <[email protected]>")
(package
(name styled-ppx)
(synopsis "Type-safe styled components for ReScript and Melange")
(description
"styled-ppx is the ppx that brings styled components to ReScript and Melange, allowing you to create React Components with type-safe style definitions using CSS.")
(depends
(ocaml (>= 5.2.0))
(reason (>= 3.11.0))
(menhir (>= 20220210))
(ppx_deriving (>= 5.0))
(ppx_deriving_yojson (>= 3.7.0))
(ppxlib (>= 0.27.0))
(sedlex (>= 3.2))
(melange (>= 3.0.0))
(server-reason-react (>= 0.3.1))
(reason-react (>= 0.14.0))
(alcotest :with-test)
(conf-npm :with-test)
(reason-react-ppx :with-dev-setup)
(ocaml-lsp-server :with-dev-setup)
(ocamlformat :with-dev-setup)
(utop :with-dev-setup)))