this repo has no description
1opam-version: "2.0" 2synopsis: "Generate ATD types out of JSON Schema and OpenAPI document" 3description: "Generate ATD types out of JSON Schema and OpenAPI document" 4maintainer: "Egor Chemokhonenko <egor.chemohonenko@ahrefs.com>" 5authors: "Ahrefs" 6license: "MIT" 7homepage: "https://github.com/ahrefs/jsonschema2atd" 8bug-reports: "https://github.com/ahrefs/jsonschema2atd/issues" 9depends: [ 10 "dune" {>= "3.0"} 11 "ocaml" {>= "4.14"} 12 "atdgen" {>= "2.7"} 13 "atdgen-runtime" {>= "2.0"} 14 "cmdliner" {>= "1.1.0"} 15 "dune-build-info" 16 "ocaml-lsp-server" {with-dev-setup} 17 "ocamlformat" {with-dev-setup & = "0.24.1"} 18 "odoc" {with-doc} 19 "ounit2" {with-test} 20 "yojson" 21] 22build: [ 23 ["dune" "subst"] {dev} 24 [ 25 "dune" 26 "build" 27 "-p" 28 name 29 "-j" 30 jobs 31 "@install" 32 "@runtest" {with-test} 33 "@doc" {with-doc} 34 ] 35] 36dev-repo: "git+https://github.com/ahrefs/jsonschema2atd.git" 37url { 38 src: 39 "https://github.com/ahrefs/jsonschema2atd/archive/refs/tags/0.0.2.tar.gz" 40 checksum: [ 41 "md5=74831bc11604208e02d552482389a1ae" 42 "sha512=a9ef6ef9a8b0414b25a764c2f51cf6ad61730016d0822aa8303e9a519ee67d27cd28d89575cb28dfdb13dd4c98c5373182f82835030d6822bec021834dbb3675" 43 ] 44}