this repo has no description
1opam-version: "2.0"
2synopsis: "Reason bindings for React.js"
3description: """
4ReasonReact helps you use Reason to build React components with deeply integrated, strong, static type safety.
5
6It is designed and built by people using Reason and React in large, mission critical production React codebases."""
7maintainer: [
8 "David Sancho <dsnxmoreno@gmail.com>"
9 "Antonio Monteiro <anmonteiro@gmail.com>"
10]
11authors: [
12 "Cheng Lou <chenglou92@gmail.com>" "Ricky Vetter <rickywvetter@gmail.com>"
13]
14license: "MIT"
15homepage: "https://reasonml.github.io/reason-react"
16doc: "https://reasonml.github.io/reason-react"
17bug-reports: "https://github.com/reasonml/reason-react/issues"
18depends: [
19 "dune" {>= "3.8"}
20 "ocaml" {>= "4.13.0"}
21 "melange" {>= "1.0.0" & < "2.0.0"}
22 "reactjs-jsx-ppx"
23 "reason" {>= "3.6.0" & < "3.10.0"}
24 "ocaml-lsp-server" {with-test}
25 "opam-check-npm-deps" {= "1.0.0" & with-dev-setup}
26 "odoc" {with-doc}
27]
28build: [
29 ["dune" "subst"] {dev}
30 [
31 "dune"
32 "build"
33 "-p"
34 name
35 "-j"
36 jobs
37 "@install"
38 "@doc" {with-doc}
39 ]
40]
41dev-repo: "git+https://github.com/reasonml/reason-react.git"
42url {
43 src:
44 "https://github.com/reasonml/reason-react/releases/download/0.11.0/reason-react-0.11.0.tbz"
45 checksum: [
46 "sha256=6df6cc4c0f18890ceada8ce3d6693ce6bcaebdc660fa7278134140267694f6bf"
47 "sha512=e3bd72fecec885cfaafc9240721156dfd6393f1444bc05980b4a9341bdaf16409f72f38c4a43c47031de3d37bcc755d0ea5c7e2df61f8b9b75b7de2e47c10f6d"
48 ]
49}
50x-commit-hash: "dbc2f61f6626de47dd607609f13a678ecd59e462"
51depexts: [
52 ["react"] {npm-version = "^16.0.0 || ^17.0.0"}
53 ["react-dom"] {npm-version = "^16.0.0 || ^17.0.0"}
54]