-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.59 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.59 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@emmahyde/thinking-patterns",
"version": "1.0.3",
"description": "MCP server combining systematic thinking, mental models, debugging approaches, and stochastic algorithms for comprehensive cognitive pattern support",
"license": "MIT",
"author": "Emma Hyde",
"homepage": "https://github.com/emmahyde/thinking-patterns",
"bugs": "https://github.com/emmahyde/thinking-patterns/issues",
"type": "module",
"bin": {
"thinking-patterns": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "npx tsc --listFiles --project tsconfig.json && chmod +x dist/*.js",
"prepare": "npm run build",
"watch": "npx tsc --watch",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"prepublishOnly": "npm run build",
"start": "node dist/index.js",
"docker": "docker build -t waldzellai/thinking-patterns .",
"dev": "npm run watch",
"test": "NODE_OPTIONS=--experimental-vm-modules npx vitest run",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules npx vitest",
"test:coverage": "NODE_OPTIONS=--experimental-vm-modules npx vitest run --coverage",
"test:ci": "NODE_OPTIONS=--experimental-vm-modules npx vitest run --coverage",
"lint": "echo \"No linting configured\" && exit 0",
"deploy": "smithery deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emmahyde/thinking-patterns.git"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"@types/chalk": "^2.2.4",
"ascii-table3": "^0.9.0",
"boxen": "^8.0.1",
"chalk": "^5.4.1",
"ioredis": "^5.6.1",
"pg": "^8.13.1",
"string-width": "^7.2.0",
"wrap-ansi": "^9.0.0",
"yargs": "^18.0.0",
"zod": "^3.25.63"
},
"devDependencies": {
"@types/ioredis-mock": "^8.2.6",
"@types/node": "^22.15.23",
"@types/pg": "^8.11.10",
"@types/yargs": "^17.0.33",
"@vitest/coverage-v8": "^2.1.9",
"@vitest/ui": "^2.1.9",
"ioredis-mock": "^8.9.0",
"source-map": "^0.7.4",
"typescript": "^5.8.3",
"vitest": "^2.1.9",
"why-is-node-running": "^3.2.2"
},
"keywords": [
"mcp",
"sequential-thinking",
"mental-models",
"debugging",
"problem-solving",
"stochastic-algorithms",
"probabilistic-decision-making",
"markov-decision-process",
"monte-carlo",
"reinforcement-learning",
"collaborative-reasoning",
"decision-frameworks",
"metacognitive-monitoring",
"scientific-method",
"structured-argumentation",
"visual-reasoning",
"ai",
"cognitive-tools"
],
"engines": {
"node": ">=20"
}
}