forked from camilovelezr/server-sequential-thinking
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.12 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.12 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
{
"name": "@jacaudi/http-sequential-thinking",
"version": "0.6.2",
"description": "MCP server for sequential thinking and problem solving - Streamable HTTP Implementation",
"license": "MIT",
"author": "Anthropic, PBC (https://anthropic.com), jacaudi (https://github.com/jacaudi)",
"homepage": "https://github.com/jacaudi/http-sequential-thinking",
"bugs": "https://github.com/jacaudi/http-sequential-thinking/issues",
"type": "module",
"bin": {
"http-sequential-thinking": "dist/index.js"
},
"files": [
"dist",
"web"
],
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"prepare": "npm run build",
"watch": "tsc --watch",
"start": "node dist/index.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.22.0",
"chalk": "^5.6.2",
"express": "^5.1.0"
},
"devDependencies": {
"@types/express": "^5.0.5",
"@types/jest": "^30.0.0",
"@types/node": "^22.19.1",
"jest": "^30.2.0",
"shx": "^0.4.0",
"ts-jest": "^29.4.5",
"typescript": "^5.9.3"
}
}