UNPKG

tic-tac-toe-optimal-turn

Version:

Tic-tac-toe optimal turn package based on alpha-beta algorithm.

47 lines (46 loc) 1.3 kB
{ "name": "tic-tac-toe-optimal-turn", "description": "Tic-tac-toe optimal turn package based on alpha-beta algorithm.", "version": "0.0.8", "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "homepage": "https://gitlab.com/edu-dmitry-shamko/task-6", "repository": { "url": "https://gitlab.com/edu-dmitry-shamko/task-6" }, "scripts": { "build": "tsup", "test": "jest", "lint": "eslint src --no-error-on-unmatched-pattern --fix", "format": "prettier --write src", "prepare": "husky", "husky": "node ./node_modules/husky/bin.js" }, "keywords": [ "tic-tac-toe", "alpha-beta" ], "author": "Dmitry Shamko", "license": "MIT", "devDependencies": { "@babel/core": "^7.26.0", "@babel/preset-env": "^7.26.0", "@babel/preset-typescript": "^7.26.0", "@eslint/compat": "^1.2.4", "@eslint/eslintrc": "^3.2.0", "@eslint/js": "^9.17.0", "@types/jest": "^29.5.14", "babel-jest": "^29.7.0", "eslint": "^9.17.0", "eslint-plugin-import": "^2.31.0", "eslint-plugin-jest": "^28.10.0", "globals": "^15.14.0", "husky": "^9.1.7", "jest": "^29.7.0", "prettier": "3.4.2", "tsup": "^8.3.5", "typescript": "^5.7.2", "typescript-eslint": "^8.18.2" } }