-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 916 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 916 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
35
36
37
{
"name": "local-mcp-server",
"version": "2.0.0",
"description": "Full-featured local MCP server — filesystem, git, network, shell, search",
"type": "module",
"main": "dist/server.js",
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "tsx watch src/server.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.10.2",
"archiver": "^7.0.1",
"chokidar": "^3.6.0",
"dotenv": "^17.3.1",
"express": "^4.19.2",
"glob": "^11.0.0",
"mime-types": "^2.1.35",
"pg": "^8.20.0",
"simple-git": "^3.25.0",
"winston": "^3.19.0",
"winston-daily-rotate-file": "^5.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/mime-types": "^2.1.4",
"@types/node": "^22.0.0",
"@types/pg": "^8.20.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
},
"engines": {
"node": ">=20"
}
}