UNPKG

shogiground

Version:
70 lines (69 loc) 1.7 kB
{ "name": "shogiground", "version": "0.10.3", "description": "lishogi.org shogi ui", "author": "Thibault Duplessis (https://github.com/ornicar); WandererXII - modified for shogi", "license": "GPL-3.0-or-later", "repository": { "type": "git", "url": "git+https://github.com/WandererXII/shogiground.git" }, "bugs": "https://github.com/WandererXII/shogiground/issues", "funding": "https://lishogi.org/patron", "keywords": [ "shogi", "将棋", "将棋板", "shogiboard", "lishogi", "lishogi.org", "typescript" ], "type": "module", "module": "esm/shogiground.js", "types": "esm/shogiground.d.ts", "exports": { ".": { "types": "./esm/shogiground.d.ts", "import": "./esm/shogiground.js" }, "./*": { "types": "./esm/*.d.ts", "import": "./esm/*.js" } }, "typesVersions": { "*": { "*": [ "esm/*" ] } }, "devDependencies": { "@eslint/js": "^9", "del-cli": "^6", "esbuild": "^0.25.0", "eslint": "^9", "nodemon": "^3.1.10", "globals": "^15", "prettier": "^3", "typescript": "^5", "typescript-eslint": "^8" }, "scripts": { "prepare": "$npm_execpath run clean && $npm_execpath run compile && $npm_execpath run dist", "clean": "del esm && del dist && del tsconfig.tsbuildinfo", "compile": "tsc", "compile:watch": "tsc --watch", "dist": "node esbuild.mjs", "dist:watch": "nodemon --watch src --ext ts --exec \"$npm_execpath run dist\"", "lint": "eslint --cache", "format": "prettier --cache --write .", "check-format": "prettier --check ." }, "files": [ "dist", "esm", "src" ] }