-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 957 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 957 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
38
{
"name": "mcp-server-template",
"version": "0.0.1",
"private": true,
"main": "dist/index.js",
"description": "Alpic MCP Server Template",
"files": [
"dist"
],
"bin": {
"mcp-server-template": "./dist/index.js"
},
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsx watch --env-file=.env src/index.ts",
"start": "node dist/index.js",
"inspector": "mcp-inspector http://localhost:3000/mcp"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"zod": "^3.25.51"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@modelcontextprotocol/inspector": "^0.16.2",
"@types/express": "^5.0.3",
"@types/node": "^22.15.30",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.2",
"prettier": "^3.5.3",
"prettier-eslint": "^16.4.2",
"tsx": "^4.19.4",
"typescript-eslint": "^8.32.0"
}
}