Files
pgn_to_tex/dune-project
T
owenrees 79155255f6 Transfer code (#1)
* copy project root files

* import previously created code and rename where needed

* fix license and lint

* main is now just a JS wrapper

* minified main.cjs rather than copying to a newly named file
2026-05-28 12:35:03 +02:00

46 lines
883 B
Plaintext

(lang dune 3.21)
(using menhir 3.0)
(name pgn_to_tex)
(generate_opam_files true)
(source
(github therealowenrees/pgn_to_tex))
(authors "Owen Rees <owenrees.dev@gmail.com>")
(maintainers "Owen Rees <owenrees.dev@gmail.com>")
(license AGPL-3.0-or-later)
(documentation https://github.com/TheRealOwenRees/pgn_to_tex/README.md)
(version 0.0.1)
(package
(name pgn_to_tex)
(synopsis "A chess PGN to TeX conversion tool")
(description
"Convert PGN files to LaTeX markdown, including rendered images of selected positions")
(depends
(ocaml
(>= 5.4))
(sedlex
(>= 3.7))
(menhir
(>= 20260209))
(yojson
(>= 3.0))
(ounit2
(and
:with-test
(>= 2.2.7)))
("ocamlformat"
(and :with-dev-setup)))
(tags
("pgn" "latex" "chess" "parser")))
; See the complete stanza docs at https://dune.readthedocs.io/en/stable/reference/dune-project/index.html