-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 1.09 KB
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
{
"name": "chess-rtk",
"version": "1.0.0",
"private": true,
"description": "ChessRTK is a Java 17 chess research toolkit for people who want reliable chess primitives from the command line: FEN and SAN handling, legal move generation, perft validation, engine analysis, puzzle mining, dataset export, board rendering, and native PDF book publishing.",
"directories": {
"doc": "docs"
},
"scripts": {
"build": "./scripts/run_regression_suite.sh build",
"lint": "./scripts/run_regression_suite.sh lint",
"test": "./scripts/run_regression_suite.sh recommended",
"test:ci": "./scripts/run_regression_suite.sh ci",
"docs": "python3 scripts/build_docs_site.py && python3 scripts/build_manual_pdf.py --html-only",
"jar": "./scripts/run_regression_suite.sh jar"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LenniAConrad/chess-rtk.git"
},
"keywords": [],
"author": "",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/LenniAConrad/chess-rtk/issues"
},
"homepage": "https://github.com/LenniAConrad/chess-rtk#readme"
}