@chess-fu/chess-game
Version:
Chess game logic
50 lines (49 loc) • 1.36 kB
JSON
{
"name": "@chess-fu/chess-game",
"access": "public",
"version": "1.1.4",
"description": "Chess game logic",
"author": "chess-fu.com",
"license": "MIT",
"homepage": "https://chess-fu.com",
"bugs": {
"url": "https://github.com/chess-fu/chess-modules"
},
"repository": {
"type": "git",
"url": "git@github.com:chess-fu/chess-modules.git"
},
"keywords": [
"chess-fu",
"chess"
],
"main": "dist/src/index.js",
"types": "dist/types/index.d.ts",
"files": [
"readme.md",
"dist/src/chessGame.js",
"dist/src/chessMoves.js",
"dist/src/chessTypes.js",
"dist/src/chessUtils.js",
"dist/src/constants.js",
"dist/src/index.js",
"dist/types/chessGame.d.ts",
"dist/types/chessMoves.d.ts",
"dist/types/chessTypes.d.ts",
"dist/types/chessUtils.d.ts",
"dist/types/constants.d.ts",
"dist/types/index.d.ts"
],
"scripts": {
"clean": "../../node_modules/.bin/rimraf ./dist",
"build": "../../node_modules/.bin/tsc",
"test": "cd ../../ && ./node_modules/.bin/mocha ./modules/chess-game/src/*.test.ts",
"prepack": "npm run test && npm run clean && npm run build",
"prepublish": "npm version patch",
"release": "npm publish -tag latest --access public"
},
"dependencies": {
"@chess-fu/fen-parser": "^1.1.4",
"@chess-fu/pgn-parser": "^1.1.3"
}
}