shogiops
Version:
Shogi rules and operations
64 lines (63 loc) • 1.43 kB
JSON
{
"name": "shogiops",
"version": "0.19.0",
"description": "Shogi rules and operations",
"author": "Niklas Fiekas (chessops), WandererXII (shogiops)",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/WandererXII/shogiops"
},
"bugs": "https://github.com/WandererXII/shogiops/issues",
"funding": "https://lishogi.org/patron",
"keywords": [
"shogi",
"lishogi",
"sfen",
"usi",
"typescript"
],
"sideEffects": false,
"type": "module",
"exports": {
"./*": {
"types": "./dist/*.d.ts",
"import": "./dist/*.js"
}
},
"typesVersions": {
"*": {
"*": [
"dist/*"
]
}
},
"dependencies": {
"@badrap/result": "^0.2"
},
"devDependencies": {
"@eslint/js": "^9",
"@trivago/prettier-plugin-sort-imports": "^5",
"@types/node": "^22",
"del-cli": "^6",
"eslint": "^9",
"prettier": "^3",
"typescript": "^5",
"typescript-eslint": "^8",
"vitest": "^3"
},
"scripts": {
"prepare": "$npm_execpath run clean && $npm_execpath run compile",
"clean": "del dist && del *.tsbuildinfo",
"compile": "tsc",
"type-check": "tsc --noEmit",
"test": "vitest --config test/vitest.config.ts",
"lint": "eslint --cache",
"format": "prettier --cache --check .",
"format:write": "prettier --cache --write ."
},
"files": [
"dist",
"src"
]
}