Generate srcset images for a variety of resolutions from OCaml
at main 33 lines 1.0 kB view raw
1# This file is generated by dune, edit dune-project instead 2opam-version: "2.0" 3synopsis: "Image srcset library for webp images" 4description: 5 "Srcsetter is a library that allows for handling a directory of responsive images suitable for embedding as `<img srcset` tags in a website. It uses the ImageMagick CLI tool to handle the actual processing of images, and the `srcsetter-cmd` package to generate the input to this library." 6maintainer: ["Anil Madhavapeddy <anil@recoil.org>"] 7authors: ["Anil Madhavapeddy"] 8license: "ISC" 9homepage: "https://tangled.org/anil.recoil.org/srcsetter" 10bug-reports: "https://tangled.org/anil.recoil.org/srcsetter/issues" 11depends: [ 12 "dune" {>= "3.21"} 13 "ocaml" {>= "5.1"} 14 "jsont" 15 "bytesrw" 16 "odoc" {with-doc} 17] 18build: [ 19 ["dune" "subst"] {dev} 20 [ 21 "dune" 22 "build" 23 "-p" 24 name 25 "-j" 26 jobs 27 "@install" 28 "@runtest" {with-test} 29 "@doc" {with-doc} 30 ] 31] 32dev-repo: "git+https://tangled.org/anil.recoil.org/srcsetter" 33x-maintenance-intent: ["(latest)"]