this repo has no description
1opam-version: "2.0" 2synopsis: "JSX syntax to write TyXML documents" 3description: """ 4```reason 5open Tyxml; 6let to_reason = <a href="reasonml.github.io/"> "Reason!" </a> 7``` 8 9The TyXML JSX allow to write TyXML documents with reason's JSX syntax. 10It works with textual trees, virtual DOM trees, or any TyXML module. 11""" 12maintainer: ["dev@ocsigen.org"] 13authors: ["The ocsigen team"] 14license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" 15homepage: "https://github.com/ocsigen/tyxml" 16doc: "https://ocsigen.org/tyxml/latest/manual/intro" 17bug-reports: "https://github.com/ocsigen/tyxml/issues" 18depends: [ 19 "dune" {>= "2.0"} 20 "ocaml" {>= "4.04"} 21 "tyxml" {= version} 22 "tyxml-syntax" {= version} 23 "alcotest" {with-test} 24 "reason" {with-test} 25 "ppxlib" {>= "0.18"} 26] 27build: [ 28 ["dune" "subst"] {dev} 29 [ 30 "dune" 31 "build" 32 "-p" 33 name 34 "-j" 35 jobs 36 "@install" 37 "@runtest" {with-test} 38 "@doc" {with-doc} 39 ] 40] 41dev-repo: "git+https://github.com/ocsigen/tyxml.git" 42x-commit-hash: "ef431a4bceaefb2d9248e79092e6c1a1a9420095" 43url { 44 src: 45 "https://github.com/ocsigen/tyxml/releases/download/4.5.0/tyxml-4.5.0.tbz" 46 checksum: [ 47 "sha256=c69accef5df4dd89d38f6aa0baad01e8fda4e9e98bb7dad61bec1452c5716068" 48 "sha512=772535441b09c393d53c27152e65f404a0a541aa0cea1bda899a8d751ab64d1729237e583618c3ff33d75e3865d53503d1ea413c6bbc8c68c413347efd1709b3" 49 ] 50}