-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.37 KB
/
package.json
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
{
"name": "chess-mcp",
"type": "module",
"version": "0.0.7",
"description": "Chess MCP server with position evaluation, move validation, and masters database",
"main": "build/index.js",
"bin": {
"chess-mcp": "build/index.js"
},
"scripts": {
"build": "tsc",
"postbuild": "chmod +x build/index.js",
"start": "node build/index.js",
"dev": "tsc -w",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
"prepublishOnly": "npm run build"
},
"files": [
"build",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"keywords": [
"chess",
"mcp",
"stockfish",
"claude",
"anthropic",
"chess-analysis"
],
"author": "turlockmike",
"license": "ISC",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"@types/chess.js": "^0.13.7",
"chess-fen2img": "^1.0.2",
"chess.js": "^0.13.4",
"node-fetch": "^3.3.2",
"node-uci": "^1.3.4",
"typescript": "^5.3.3",
"winston": "^3.17.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"@types/node-fetch": "^2.6.12",
"@types/node-uci": "^1.3.6",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5"
}
}