-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.52 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"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"
],
"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",
"prepublishOnly": "npm run test && npm run build"
},
"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"
},
"packageManager": "pnpm@10.8.1",
"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"
}
}