piskvorky
Version:
Helper functions for tic-tac-toe game.
55 lines (54 loc) • 1.28 kB
JSON
{
"name": "piskvorky",
"version": "0.1.4",
"description": "Helper functions for tic-tac-toe game.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"start": "rollup --configPlugin typescript -c -w",
"dev": "npm start",
"build": "rollup --configPlugin typescript -c",
"prepare": "npm run build",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/FilipChalupa/piskvorky.git"
},
"keywords": [
"tictactoe",
"piskvorky",
"ai",
"game"
],
"author": {
"name": "Filip Chalupa",
"email": "chalupa.filip@gmail.com",
"url": "https://www.npmjs.com/~onset"
},
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.20.2",
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^9.0.2",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"babel-loader": "^9.1.0",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.2.5",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.34.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"files": [
"/dist/"
]
}