-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.05 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.05 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
{
"name": "n8n-mcp-server",
"version": "1.5.0",
"type": "module",
"main": "dist/server.js",
"bin": {
"n8n-mcp": "./dist/server.js"
},
"scripts": {
"dev": "bun run --watch src/server.ts",
"build": "tsc",
"start": "node dist/server.js",
"start:stdio": "node dist/server.js --stdio",
"start:prod": "NODE_ENV=production node dist/server.js",
"test": "bun test",
"test:coverage": "bun test --coverage",
"inspector": "npx @modelcontextprotocol/inspector",
"typecheck": "tsc --noEmit",
"cloud": "node dist/cloud-client.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.0",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^4.21.0",
"express-rate-limit": "^7.5.0",
"pino": "^9.5.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/bun": "^1.3.5",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/node": "^22.0.0",
"bun-types": "^1.3.10",
"pino-pretty": "^13.0.0",
"typescript": "^5.7.0"
},
"engines": {
"node": ">=20"
}
}