othello.js
Version:
An simple easy-to-use othello game implementation with TypeScript.
37 lines (36 loc) • 914 B
JSON
{
"name": "othello.js",
"version": "0.0.0-rc3",
"description": "An simple easy-to-use othello game implementation with TypeScript.",
"main": "dist/index.js",
"types": "typings/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc && webpack",
"build:node": "tsc",
"build:lib": "webpack",
"docs": "typedoc ./src/index.ts --excludePrivate",
"clean": "rimraf ./dist ./typings"
},
"keywords": [
"othello",
"othello.js",
"webpack"
],
"repository": {
"type": "git",
"url": "https://github.com/mtripg6666tdr/othello.js"
},
"author": "mtripg6666tdr",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@types/node": "^16.11.6",
"rimraf": "^3.0.2",
"ts-loader": "^9.2.6",
"typedoc": "^0.22.11",
"typescript": "^4.4.4",
"webpack": "^5.61.0",
"webpack-cli": "^4.9.1"
}
}