-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 794 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 794 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
{
"name": "mcp-server_test",
"version": "1.0.0",
"main": "src/server.ts",
"type": "module",
"scripts": {
"server:build": "tsc",
"server:build:watch": "tsc --watch",
"server:dev": "tsx src/server.ts",
"server:inspect": "set DANGEROUSLY_OMIT_AUTH=true && npx @modelcontextprotocol/inspector npm run server:dev"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@modelcontextprotocol/inspector": "^0.14.3",
"@types/express": "^5.0.3",
"@types/node": "^24.0.3",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.13.0",
"axios": "^1.11.0",
"crypto": "^1.0.1",
"dotenv": "^17.2.1",
"express": "^5.1.0",
"zod": "^3.25.67"
}
}