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.10"} 12 "atdgen" {>= "2.7"} 13 "cmdliner" {>= "1.1.0"} 14 "dune-build-info" 15 "ocaml-lsp-server" {with-dev-setup} 16 "ocamlformat" {with-dev-setup & = "0.24.1"} 17 "odoc" {with-doc} 18 "ounit2" {with-test} 19 "yojson" 20] 21build: [ 22 ["dune" "subst"] {dev} 23 [ 24 "dune" 25 "build" 26 "-p" 27 name 28 "-j" 29 jobs 30 "@install" 31 "@runtest" {with-test} 32 "@doc" {with-doc} 33 ] 34] 35dev-repo: "git+https://github.com/ahrefs/jsonschema2atd.git" 36url { 37 src: 38 "https://github.com/ahrefs/jsonschema2atd/archive/refs/tags/0.0.1.tar.gz" 39 checksum: [ 40 "md5=dcdbf453fbfab9a1fe41966b69823c3b" 41 "sha512=b6ab5b78fee8fb41a7da867bcd11b54d92228e4798572aa7714aa59fc983a79998ddb176153755b6ca772ae5b38efef2e2f8a76459d165298455688bf55c6f83" 42 ] 43}