UNPKG

backgammon

Version:

a clean api for building a backgammon game

70 lines (69 loc) 1.48 kB
{ "name": "backgammon", "description": "a clean api for building a backgammon game", "version": "1.3.2", "author": "toly11", "license": "ISC", "homepage": "https://github.com/toly11/backgammon#readme", "repository": { "type": "git", "url": "git+https://github.com/toly11/backgammon.git" }, "bugs": { "url": "https://github.com/toly11/backgammon/issues" }, "keywords": [ "backgammon", "game" ], "main": "dist/index.js", "typings": "dist/index.d.ts", "module": "dist/backgammon.esm.js", "files": [ "dist", "src" ], "scripts": { "all": "npm run lint && npm run build && npm run test", "start": "tsdx watch", "build": "tsdx build", "test": "tsdx test", "lint": "tsdx lint", "prepare": "tsdx build", "size": "size-limit", "analyze": "size-limit --why" }, "engines": { "node": ">=10" }, "size-limit": [ { "path": "dist/backgammon.cjs.production.min.js", "limit": "10 KB" }, { "path": "dist/backgammon.esm.js", "limit": "10 KB" } ], "husky": { "hooks": { "pre-commit": "tsdx lint" } }, "prettier": { "printWidth": 80, "semi": true, "singleQuote": false, "trailingComma": "none" }, "dependencies": {}, "devDependencies": { "@size-limit/preset-small-lib": "^7.0.8", "husky": "^7.0.4", "size-limit": "^7.0.8", "tsdx": "^0.14.1", "tslib": "^2.3.1", "typescript": "^4.5.5" } }