-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.38 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 3.38 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@kastalien-research/thoughtbox",
"version": "1.2.2",
"packageManager": "pnpm@9.15.4",
"description": "MCP server providing cognitive enhancement tools for LLM agents: structured reasoning, mental models, and literate programming notebooks",
"mcpName": "io.github.Kastalien-Research/thoughtbox",
"license": "MIT",
"author": "glassBead at Kastalien Research",
"homepage": "https://github.com/Kastalien-Research/thoughtbox",
"repository": {
"type": "git",
"url": "https://github.com/Kastalien-Research/thoughtbox.git"
},
"bugs": "https://github.com/Kastalien-Research/thoughtbox/issues",
"keywords": [
"mcp",
"model-context-protocol",
"mcp-server",
"reasoning",
"thoughtbox",
"mental-models",
"notebook",
"cognitive-tools",
"ai",
"llm"
],
"type": "module",
"main": "./dist/index.js",
"module": "src/index.ts",
"types": "./dist/index.d.ts",
"files": [
"dist",
"templates",
"README.md",
"LICENSE"
],
"scripts": {
"embed-templates": "tsx scripts/embed-templates.ts",
"embed": "pnpm embed-templates",
"dev": "pnpm embed && tsx src/index.ts",
"clean": "shx rm -rf dist",
"build": "pnpm check:cycles && pnpm build:local",
"build:local": "pnpm clean && pnpm embed && tsc && shx cp -r src/resources dist/ && shx cp -r templates dist/ && shx chmod +x dist/*.js",
"start": "node dist/index.js",
"prepublishOnly": "pnpm build:local",
"watch": "tsc --watch",
"check:cycles": "./scripts/check-cycles.sh",
"check:cycles:strict": "./scripts/check-cycles.sh --strict",
"changelog:update": "git log --format='%H|%s|%an|%ad' HEAD~20..HEAD > .changelog-commits.txt && tsx scripts/changelog-update.ts .changelog-commits.txt && rm .changelog-commits.txt",
"prepare": "husky",
"test": "pnpm build:local && vitest run",
"check:event-types": "tsx scripts/check-event-type-parity.ts",
"test:behavioral": "tsx scripts/agents/test-behavioral-contracts.ts",
"test:behavioral:variance": "tsx scripts/agents/test-behavioral-contracts.ts --variance-only",
"check:lint": "oxlint -c oxlint.json src/",
"check:types": "tsc --noEmit",
"eval:run": "tsx scripts/eval-run.ts"
},
"engines": {
"node": ">=22.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.29.0",
"@supabase/supabase-js": "^2.99.1",
"bcryptjs": "^3.0.3",
"better-sqlite3": "^11.0.0",
"chalk": "^5.6.0",
"cheerio": "^1.2.0",
"cors": "^2.8.5",
"effect": "^3.21.2",
"express": "^5.1.0",
"fast-xml-parser": "^4.5.3",
"gray-matter": "^4.0.3",
"jose": "6.2.1",
"jsonwebtoken": "^9.0.3",
"langsmith": "^0.5.2",
"openai": "^4.104.0",
"rss-parser": "^3.13.0",
"ws": "^8.18.3",
"yaml": "^2.8.2",
"zod": "^3.25.76",
"zod-to-json-schema": "^3.24.5"
},
"devDependencies": {
"@anthropic-ai/claude-agent-sdk": "0.3.159",
"@anthropic-ai/sdk": "^0.39.0",
"@octokit/rest": "^20.1.2",
"@types/bcryptjs": "^3.0.0",
"@types/better-sqlite3": "^7.6.13",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.5",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^22.18.12",
"@types/ws": "^8.18.1",
"@types/yargs": "^17.0.32",
"dotenv": "^17.2.3",
"husky": "^9.1.6",
"madge": "^8.0.0",
"oxlint": "^1.56.0",
"shx": "^0.3.4",
"tsx": "^4.20.6",
"typescript": "^5.3.3",
"vitest": "^4.0.18"
}
}