-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.33 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
{
"name": "enhanced-mcp-server",
"version": "1.0.0",
"description": "A comprehensive MCP server with developer tools, system operations, and data processing capabilities",
"main": "server.js",
"type": "module",
"scripts": {
"start": "node server.js",
"dev": "DEBUG=1 node server.js",
"debug": "node --inspect-brk server.js",
"debug-dev": "DEBUG=1 node --inspect-brk server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --ext .js,.json",
"lint:fix": "eslint . --ext .js,.json --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"clean": "rimraf node_modules package-lock.json && npm install",
"audit:fix": "npm audit fix",
"precommit": "npm run lint && npm run format:check"
},
"keywords": [
"mcp",
"server",
"tools",
"development",
"automation"
],
"author": "",
"license": "ISC",
"dependencies": {
"@anthropic-ai/sdk": "^0.92.0",
"@modelcontextprotocol/sdk": "^1.17.2",
"cors": "^2.8.5",
"drizzle-zod": "^0.8.3",
"express": "^5.1.0",
"p-limit": "^6.2.0",
"p-retry": "^6.2.1",
"zod": "^3.25.76",
"zod-validation-error": "^5.0.0"
},
"devDependencies": {
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5"
},
"engines": {
"node": ">=18.0.0"
}
}