My agentic slop goes here. Not intended for anyone else!
1# This file is generated by dune, edit dune-project instead
2opam-version: "2.0"
3version: "0.1.0"
4synopsis: "JMAP Core Protocol (RFC 8620) implementation in OCaml"
5description: "Type-safe JMAP Core Protocol parser and types using GADTs"
6maintainer: ["your.email@example.com"]
7authors: ["Your Name"]
8license: "MIT"
9homepage: "https://github.com/yourusername/jmap"
10bug-reports: "https://github.com/yourusername/jmap/issues"
11depends: [
12 "ocaml" {>= "4.14"}
13 "dune" {>= "3.0" & >= "3.0"}
14 "ezjsonm" {>= "1.3.0"}
15 "jsonm" {>= "1.0.0"}
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://github.com/yourusername/jmap.git"