-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 818 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 818 Bytes
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
{
"name": "@turn-based-mcp/mcp-server",
"version": "1.0.0",
"description": "MCP server for turn-based games AI opponent",
"main": "dist/server.js",
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/server.js",
"clean": "rm -rf dist",
"type-check": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"@turn-based-mcp/shared": "file:../shared"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@vitest/ui": "^4.0.18",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0",
"vitest": "^4.0.18"
}
}