chlss
Version:
Open-Source Chess Engine in TypeScript.
45 lines (44 loc) • 1.81 kB
JSON
{
"name": "chlss",
"version": "1.0.0-beta.6",
"description": "Open-Source Chess Engine in TypeScript.",
"scripts": {
"test": "jest --verbose test/",
"integration-test": "jest --verbose integration_tests/",
"generate-legal-moves": "test_data_generator\\legal_moves_generator.py --output integration_tests\\data\\legal_moves.json --repeat 500 --random-position-moves 75",
"generate-random-games": "test_data_generator\\random_games_generator.py --output integration_tests\\data\\random_games.json --repeat 100 --move-in-case 50",
"generate-empty-legal-moves": "test_data_generator\\legal_moves_generator.py --output integration_tests\\data\\legal_moves.json --repeat 0 --random-position-moves 0",
"generate-empty-random-games": "test_data_generator\\random_games_generator.py --output integration_tests\\data\\random_games.json --repeat 0 --move-in-case 0",
"generate-legal-moves-linux": "python test_data_generator/legal_moves_generator.py --output integration_tests\\data\\legal_moves.json --repeat 500 --random-position-moves 75",
"generate-random-games-linux": "python test_data_generator/random_games_generator.py --output integration_tests\\data\\random_games.json --repeat 100 --move-in-case 50"
},
"keywords": [
"chess",
"chlss",
"chlss-ts",
"chlss.ts",
"chessgame",
"chess-game",
"chess-ts",
"game",
"chessground",
"board",
"chess-engine",
"engine",
"chess-computer",
"chess-move",
"uci",
"chess-uci"
],
"author": "Kacper Faber",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.1",
"typescript": "^5.0.3"
},
"files": ["dist/", "LICENSE", "README.md"],
"types": "./dist/index.d.ts",
"main": "./dist/index.js"
}