-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 766 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 766 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
{
"name": "contentstack-mcp-streamable",
"version": "1.0.0",
"description": "Streamable HTTP MCP server that proxies @contentstack/mcp functionality over HTTP",
"private": true,
"type": "module",
"scripts": {
"build": "tsc",
"start": "node build/index.js",
"dev": "nodemon --watch src --ext ts --exec \"npm run build && node build/index.js\"",
"auth": "npx @contentstack/mcp --auth"
},
"dependencies": {
"@contentstack/mcp": "^0.5.4",
"@modelcontextprotocol/sdk": "^1.11.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^5.1.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.1",
"@types/node": "^20.11.24",
"nodemon": "^3.1.9",
"typescript": "^5.3.3"
}
}