-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 911 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 911 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
31
32
33
34
{
"name": "architect",
"version": "1.0.0",
"description": "MCP server providing comprehensive architectural expertise through specialized agents",
"main": "dist/server.js",
"scripts": {
"build": "tsc",
"start": "PORT=${PORT:-3000} OPENAI_API_KEY=${OPENAI_API_KEY} node dist/server.js",
"dev": "PORT=${PORT:-3000} OPENAI_API_KEY=${OPENAI_API_KEY} nodemon --exec ts-node src/server.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"architecture",
"mcp",
"agent",
"design",
"patterns"
],
"author": "",
"license": "ISC",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.4.1",
"express": "^4.18.2",
"openai": "^4.83.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.0.0",
"nodemon": "^3.0.0",
"ts-node": "^10.9.0",
"typescript": "^5.0.0"
}
}