blob: 5eceaf14de7c52c449320f28787bd83b573cd3be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
(lang dune 3.19)
(using melange 0.1)
(using directory-targets 0.1)
; (using mdx 0.4)
; (cram enable)
;
(name bs5)
(generate_opam_files true)
(source
(github username/reponame))
(authors "Spandrell <s@spandrell.ch>")
(maintainers "Spandrell <s@spandrell.ch>")
(license LICENSE)
(documentation https://spandrell.ch)
(package
(name bs5)
(synopsis "The best blog in the universe")
(description "Nomo nos salvabit")
(depends
server-reason-react
ocaml
reason
sqlite3
uri
uucp
yojson
ppx_yojson_conv
lwt
lwt_ppx
melange
melange-json
melange-json-native
melange-native
ocamlformat
(melange-webapi :with-dev-setup)
(melange-fetch :with-dev-setup)
(dream :with-dev-setup)
(melange-webapi :with-dev-setup)
(melange-fetch :with-dev-setup))
(tags
("add topics" "to describe" your project)))
; See the complete stanza docs at https://dune.readthedocs.io/en/stable/reference/dune-project/index.html
|