@algorithm.ts/gomoku
Version:
A algorithm based on minimax search and alpha-beta prune to solve gomoku game.
45 lines (44 loc) • 1.18 kB
JSON
{
"name": "@algorithm.ts/gomoku",
"version": "4.0.4",
"description": "A algorithm based on minimax search and alpha-beta prune to solve gomoku game.",
"author": {
"name": "guanghechen",
"url": "https://github.com/guanghechen/"
},
"repository": {
"type": "git",
"url": "https://github.com/guanghechen/algorithm.ts/tree/@algorithm.ts/gomoku@4.0.3",
"directory": "packages/gomoku"
},
"homepage": "https://github.com/guanghechen/algorithm.ts/tree/@algorithm.ts/gomoku@4.0.3/packages/gomoku#readme",
"keywords": [
"algorithm",
"gomoku",
"minimax search",
"alpha-beta prune"
],
"type": "module",
"exports": {
"types": "./lib/types/index.d.ts",
"import": "./lib/esm/index.mjs",
"require": "./lib/cjs/index.cjs"
},
"source": "./src/index.ts",
"types": "./lib/types/index.d.ts",
"main": "./lib/cjs/index.cjs",
"module": "./lib/esm/index.mjs",
"license": "MIT",
"files": [
"lib/",
"!lib/**/*.map",
"package.json",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"dependencies": {
"@algorithm.ts/queue": "^4.0.4"
},
"gitHead": "f2094261a9b538d3f285957ce7edb42eff75073c"
}