-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.55 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "deep-thinker",
"version": "3.0.1",
"description": "Advanced cognitive thinking MCP with DAG-based thought graph, 10 reasoning strategies, node aliases, session persistence, structured responses, auto strategy selection, and 17 tools with help & conclude",
"type": "module",
"bin": {
"deep-thinker": "./dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"homepage": "https://github.com/hubinoretros/deep-thinker#readme",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"start": "node dist/index.js",
"dev": "tsc --watch",
"test": "node --test dist/test.js dist/test_enhanced_strategies.js"
},
"keywords": [
"mcp",
"thinking",
"reasoning",
"cognitive",
"metacognition",
"dag",
"dialectic",
"abduction",
"analogical",
"first-principles",
"counterfactual",
"systems-thinking",
"mcts",
"monte-carlo",
"optimization",
"feedback-loops",
"leverage-points",
"ethics",
"emotional-intelligence",
"cross-disciplinary",
"temporal-reasoning",
"decision-explanation",
"social-impact",
"high-iq",
"artificial-intelligence",
"reasoning-engine",
"ai-strategies",
"zod",
"typescript"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hubinoretros/deep-thinker.git"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^22.15.3",
"typescript": "^5.8.3"
}
}