-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 790 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 790 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
32
{
"name": "server-shannon-thinking",
"version": "0.1.1",
"description": "MCP server for applying a Claude Shannon-inspired problem-solving pattern",
"license": "MIT",
"type": "module",
"bin": {
"mcp-server-shannon-thinking": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"prepare": "npm run build",
"watch": "tsc --watch",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.18.0",
"chalk": "^5.3.0"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^25.0.3",
"cross-env": "^10.0.0",
"jest": "^30.1.3",
"shx": "^0.4.0",
"ts-jest": "^29.2.5",
"typescript": "^5.3.3"
}
}