forked from reasonml/reason-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dune-project
72 lines (59 loc) · 1.44 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
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
(lang dune 3.9)
(using melange 0.1)
(generate_opam_files true)
(cram enable)
(name reason-react)
(maintainers
"David Sancho <[email protected]>"
"Antonio Monteiro <[email protected]>")
(authors
"Cheng Lou <[email protected]>"
"Ricky Vetter <[email protected]>")
(source
(github reasonml/reason-react))
(homepage "https://reasonml.github.io/reason-react")
(documentation "https://reasonml.github.io/reason-react")
(bug_reports "https://github.com/reasonml/reason-react/issues")
(license "MIT")
(package
(name reason-react)
(synopsis "Reason bindings for React.js")
(description
"ReasonReact helps you use Reason to build React components with deeply integrated, strong, static type safety.\n\nIt is designed and built by people using Reason and React in large, mission critical production React codebases.")
(depends
(ocaml
(and (>= 5.1.0) (< 5.2.0)))
(melange
(>= 2.0.0))
(reason-react-ppx
(= :version))
(reason
(>= 3.10.0))
(ocaml-lsp-server :with-test)
(opam-check-npm-deps
(and
(= 1.0.0)
:with-dev-setup))
(ocamlformat
(and
(= 0.24.0)
:with-dev-setup))))
(package
(name reason-react-ppx)
(synopsis "React.js JSX PPX")
(description "ReasonReact JSX PPX")
(depends
(ocaml
(and (>= 5.1.0) (< 5.2.0)))
(reason
(>= 3.10.0))
(ppxlib
(>= 0.28.0))
(merlin
(and
(= 4.9-501preview)
:with-test))
(ocamlformat
(and
(= 0.24.0)
:with-dev-setup))))