Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions packages/chess_com_api/chess_com_api.1.0.1/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Chess.com API client for chess games"
description:
"A client library for the Chess.com API that provides easy access to chess games, player data, tournament information, and daily puzzles. Supports fetching games in PGN format and extracting metadata."
maintainer: ["ckaf [email protected]"]
authors: ["ckaf [email protected]"]
license: "MIT"
tags: ["chess" "chess.com" "api" "http" "client" "games" "pgn"]
homepage: "https://github.com/ckaf/pgn_parser"
doc: "https://github.com/ckaf/pgn_parser"
bug-reports: "https://github.com/ckaf/pgn_parser/issues"
depends: [
"ocaml" {>= "4.14"}
"dune" {>= "3.19" & >= "3.0"}
"cohttp-lwt-unix" {>= "5.0"}
"yojson" {>= "1.7"}
"lwt" {>= "5.6"}
"lwt_ppx" {>= "2.0"}
"qcheck" {>= "0.21"}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/ckaf/pgn_parser.git"
x-maintenance-intent: ["(latest)"]
available: arch != "arm32" & arch != "x86_32"

url {
src: "https://github.com/Ckaf/pgn_parser/archive/v1.0.1.tar.gz"
checksum: "sha256=0e03803aea9793f32869130ef34f51f8b158a0a43bcd4cec6adb0072dcd39fd0"
}
44 changes: 44 additions & 0 deletions packages/lichess_api/lichess_api.1.0.1/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Lichess API client for chess games"
description:
"A client library for the Lichess API that provides easy access to chess games, player data, and tournament information. Supports fetching games in PGN format and extracting metadata."
maintainer: ["ckaf [email protected]"]
authors: ["ckaf [email protected]"]
license: "MIT"
tags: ["chess" "lichess" "api" "http" "client" "games" "pgn"]
homepage: "https://github.com/ckaf/pgn_parser"
doc: "https://github.com/ckaf/pgn_parser"
bug-reports: "https://github.com/ckaf/pgn_parser/issues"
depends: [
"ocaml" {>= "4.14"}
"dune" {>= "3.19" & >= "3.0"}
"cohttp-lwt-unix" {>= "5.0"}
"yojson" {>= "1.7"}
"lwt" {>= "5.6"}
"lwt_ppx" {>= "2.0"}
"qcheck" {>= "0.21"}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/ckaf/pgn_parser.git"
x-maintenance-intent: ["(latest)"]
available: arch != "arm32" & arch != "x86_32"

url {
src: "https://github.com/Ckaf/pgn_parser/archive/v1.0.1.tar.gz"
checksum: "sha256=0e03803aea9793f32869130ef34f51f8b158a0a43bcd4cec6adb0072dcd39fd0"
}
56 changes: 56 additions & 0 deletions packages/pgn_parser/pgn_parser.1.0.1/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "PGN (Portable Game Notation) parser for chess games"
description:
"A comprehensive PGN parser written in OCaml that supports parsing chess games from various sources including Lichess and Chess.com APIs. Features include board tracking, Zobrist hashing, property-based testing, and unfinished games support."
maintainer: ["ckaf [email protected]"]
authors: ["ckaf [email protected]"]
license: "MIT"
tags: [
"chess"
"pgn"
"parser"
"lichess"
"chess.com"
"api"
"testing"
"zobrist"
"board-tracking"
"unfinished-games"
]
homepage: "https://github.com/ckaf/pgn_parser"
doc: "https://github.com/ckaf/pgn_parser"
bug-reports: "https://github.com/ckaf/pgn_parser/issues"
depends: [
"ocaml" {>= "4.14"}
"dune" {>= "3.19" & >= "3.0"}
"qcheck" {>= "0.21"}
"cohttp-lwt-unix" {>= "5.0"}
"yojson" {>= "1.7"}
"lwt" {>= "5.6"}
"lwt_ppx" {>= "2.0"}
"qcheck" {>= "0.21"}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/ckaf/pgn_parser.git"
x-maintenance-intent: ["(latest)"]
available: arch != "arm32" & arch != "x86_32"

url {
src: "https://github.com/Ckaf/pgn_parser/archive/v1.0.1.tar.gz"
checksum: "sha256=0e03803aea9793f32869130ef34f51f8b158a0a43bcd4cec6adb0072dcd39fd0"
}
Loading