this repo has no description
1opam-version: "2.0" 2maintainer: "Roma Sokolov <sokolov.r.v@gmail.com>" 3authors: [ "Roma Sokolov <sokolov.r.v@gmail.com>" ] 4license: "MIT" 5homepage: "https://github.com/little-arhat/ppx_jsobject_conv" 6bug-reports: "https://github.com/little-arhat/ppx_jsobject_conv/issues" 7dev-repo: "git+https://github.com/little-arhat/ppx_jsobject_conv.git" 8tags: [ "syntax" "jsoo" "javascript" ] 9build: [ 10 ["dune" "build" "-p" name "-j" jobs] 11] 12depends: [ 13 "ocaml" {>= "4.10.0"} 14 "dune" {>= "2.7"} 15 "js_of_ocaml" {>= "4.0.0"} 16 "ppxlib" {>= "0.26.0" & < "0.36.0"} 17 "webtest" {with-test} 18 "webtest-js" {with-test} 19] 20synopsis: 21 "Ppx plugin for Typeconv to derive conversion from ocaml types to js objects to use with js_of_ocaml" 22description: """ 23For types annotated with [@@deriving jsobject], plugin will generate pair of functions: *_of_jsobject/jsobject_of_* 24to convert from/to JavaScript objects. This allows one to use clean OCaml types to describe their logic, while having ability 25to easy go down to js types. Easy conversion from js objects to OCaml types means also, one can use fast native JSON.parse to 26convert JSON to OCaml types. 27 28Plugin supports number of customizations.""" 29 30url { 31 src: 32 "https://github.com/little-arhat/ppx_jsobject_conv/archive/v0.10.0.tar.gz" 33 checksum: [ 34 "sha256=bfdfeb470157e285ab5e70ee281f87ccd7efe9997c8b77e6c81aa498d19a670e" 35 "md5=a3c6fb4e0a8e3a1268c12bdf94f0b763" 36 ] 37}