Stripe API client for OCaml
1(lang dune 3.21)
2(using mdx 0.4)
3
4(name stripe)
5
6(generate_opam_files true)
7
8(license MIT)
9(authors "Thomas Gazagnaire <thomas@gazagnaire.org>")
10(maintainers "Thomas Gazagnaire <thomas@gazagnaire.org>")
11
12(source (tangled gazagnaire.org/ocaml-stripe))
13
14(package
15 (name stripe)
16 (synopsis "Stripe API client for OCaml")
17 (tags (org:blacksun network))
18 (description
19 "Minimal Stripe API client for SaaS billing: customers, products, prices, \
20 subscriptions, checkout sessions, and webhook verification. Uses \
21 ocaml-requests for HTTP and jsont for JSON codec.")
22 (depends
23 (ocaml (>= 4.14))
24 fmt
25 (requests (>= 0.1))
26 (nox-json (>= 0.1))
27 (digestif (>= 1.0))
28 (alcotest :with-test)
29 (mdx :with-test)
30 nox-loc))