UNPKG

@lichess-org/chessground

Version:
63 lines 1.61 kB
{ "name": "@lichess-org/chessground", "version": "9.5.0", "//": "version is managed by the build system", "description": "lichess.org chess ui", "type": "module", "main": "dist/chessground.js", "types": "chessground.d.ts", "exports": { ".": "./dist/chessground.js", "./assets/*": "./assets/*", "./*": "./dist/*.js" }, "typesVersions": { "*": { "*": [ "dist/*" ] } }, "devDependencies": { "@typescript-eslint/eslint-plugin": "^7.7.0", "@typescript-eslint/parser": "^7.7.0", "esbuild": "^0.25.0", "eslint": "^8.57.0", "jsdom": "^26.1.0", "prettier": "^3.2.5", "typescript": "^5.6.3", "vitest": "^3.2.4" }, "files": [ "/dist/*.js", "/dist/*.d.ts", "/dist/*.js.map", "/assets/*.css", "/src/*.ts" ], "repository": "https://github.com/lichess-org/chessground", "keywords": [ "chess", "lichess", "lichess.org", "chessboard", "ui", "typescript" ], "author": "Lichess Team <contact@lichess.org>", "license": "GPL-3.0-or-later", "bugs": { "url": "https://github.com/lichess-org/chessground/issues" }, "funding": "https://lichess.org/patron", "scripts": { "compile": "tsc --sourceMap --declaration", "lint": "eslint src/*.ts", "format": "prettier --write .", "check-format": "prettier --check .", "bundle": "esbuild src/chessground.ts --bundle --format=esm --outfile=dist/chessground.min.js --minify", "dist": "$npm_execpath run compile && $npm_execpath run bundle", "test": "vitest run", "test:watch": "vitest" } }