-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 858 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 858 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
{
"name": "architect-mcp-server",
"version": "1.0.0",
"description": "Powerful, self-extending MCP server for dynamic AI tool orchestration with sandboxed execution, capability-based security, and a built-in dashboard.",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc && node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"@hono/node-server": "^1.19.11",
"@modelcontextprotocol/sdk": "^1.26.0",
"better-sqlite3": "^12.6.2",
"cron-parser": "^5.5.0",
"hono": "^4.12.7",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.2.3",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}