-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.1 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.1 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
{
"name": "agent-chess",
"version": "0.1.6",
"description": "CLI chess engine for AI agents.",
"main": "dist/cli.js",
"bin": {
"agent-chess": "dist/cli.js"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsx src/cli.ts",
"start": "node dist/cli.js",
"prepack": "npm run build",
"release": "npm version $1 && npm run build && npm publish --access public && git push --tags && git push && gh release create v$1 --title \"v$1\" --notes \"Release v$1\""
},
"keywords": [
"cli",
"chess",
"agents"
],
"author": "",
"license": "ISC",
"type": "module",
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shametim/agent-chess.git"
},
"bugs": {
"url": "https://github.com/shametim/agent-chess/issues"
},
"homepage": "https://github.com/shametim/agent-chess#readme",
"dependencies": {
"chess.js": "^1.4.0",
"commander": "^14.0.3"
},
"devDependencies": {
"@types/node": "^25.3.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}