My agentic slop goes here. Not intended for anyone else!
at jsont 887 B view raw
1# This file is generated by dune, edit dune-project instead 2opam-version: "2.0" 3version: "0.1.0" 4synopsis: "Unified JMAP library combining core, mail, and client" 5description: 6 "Ergonomic, unified interface to the complete JMAP library (RFC 8620, RFC 8621). This is the recommended entry point for most users." 7maintainer: ["your.email@example.com"] 8authors: ["Your Name"] 9license: "MIT" 10homepage: "https://github.com/yourusername/jmap" 11bug-reports: "https://github.com/yourusername/jmap/issues" 12depends: [ 13 "ocaml" {>= "4.14"} 14 "dune" {>= "3.0" & >= "3.0"} 15 "jmap-core" {= version} 16 "jmap-mail" {= version} 17 "jmap-client" {= version} 18 "odoc" {with-doc} 19] 20build: [ 21 ["dune" "subst"] {dev} 22 [ 23 "dune" 24 "build" 25 "-p" 26 name 27 "-j" 28 jobs 29 "@install" 30 "@runtest" {with-test} 31 "@doc" {with-doc} 32 ] 33] 34dev-repo: "git+https://github.com/yourusername/jmap.git"