UNPKG

@chess-labs/core

Version:

A lightweight, framework-agnostic chess engine written entirely in TypeScript

62 lines 1.46 kB
{ "name": "@chess-labs/core", "version": "1.0.23", "description": "A lightweight, framework-agnostic chess engine written entirely in TypeScript", "type": "module", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js", "require": "./dist/index.cjs" } }, "main": "./dist/index.cjs", "module": "./dist/index.js", "types": "./dist/index.d.ts", "files": [ "dist" ], "keywords": [ "chess", "typescript", "engine", "board-game", "chess-engine", "game", "logic", "framework-agnostic", "esm", "commonjs" ], "author": "chess-labs", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/chess-labs/core.git" }, "bugs": { "url": "https://github.com/chess-labs/core/issues" }, "homepage": "https://github.com/chess-labs/core#readme", "engines": { "node": ">=16.0.0" }, "devDependencies": { "@types/node": "^22.15.19", "@vitest/ui": "3.1.3", "auto-changelog": "^2.4.0", "tsup": "^8.5.0", "typescript": "^5.4.5", "vitest": "^3.1.3" }, "scripts": { "build": "tsup", "build:watch": "tsup --watch", "type-check": "tsc --noEmit", "test": "vitest run", "test:watch": "vitest", "test:coverage": "vitest run --coverage", "test:ui": "vitest --ui", "changelog": "auto-changelog --template keepachangelog --commit-limit false --unreleased" } }