@chessle/chess.js-extended
Version:
A powerful browser-only chess engine package that bundles Stockfish for position evaluation and analysis on top of chess.js
45 lines • 1.17 kB
JSON
{
"name": "@chessle/chess.js-extended",
"version": "0.0.3",
"description": "A powerful browser-only chess engine package that bundles Stockfish for position evaluation and analysis on top of chess.js",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"browser": "dist/index.js",
"files": [
"dist/",
"LICENSE",
"README.md"
],
"keywords": [
"chess",
"stockfish",
"browser",
"chess-engine",
"webassembly",
"position-evaluation",
"chess-analysis"
],
"author": "Chessle",
"license": "GPL-3.0",
"homepage": "https://github.com/Chessle-Apps/chess.js-extended#readme",
"bugs": {
"url": "https://github.com/Chessle-Apps/chess.js-extended/issues"
},
"dependencies": {
"chess.js": "^1.4.0"
},
"devDependencies": {
"@types/node": "^20",
"tsx": "^4.19.3",
"typescript": "5.7.3"
},
"scripts": {
"prebuild": "node generate-bundle.js",
"build": "pnpm run clean && pnpm run build:cjs && pnpm run build:esm",
"build:cjs": "tsc",
"build:esm": "tsc --project tsconfig.esm.json",
"dev": "tsc --watch",
"clean": "rm -rf dist"
}
}