forked from snehalsaurabh/Trello-MCP-Server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.14 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.14 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
43
44
45
46
47
48
49
50
{
"name": "TrelloMCP",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"build": "tsc -p tsconfig.json",
"mcp:stdio": "tsx src/bin/stdio.ts",
"lint": "eslint . --ext .ts",
"format": "prettier -w ."
},
"engines": {
"node": ">=18.17"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.14.0",
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/node": "^24.2.1",
"eslint": "^9.33.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-unused-imports": "^4.1.4",
"prettier": "^3.6.2",
"tsx": "^4.20.3",
"typescript": "^5.9.2"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.2",
"axios": "^1.11.0",
"bottleneck": "^2.19.5",
"cors": "^2.8.5",
"dotenv": "^17.2.1",
"express": "^5.1.0",
"pino": "^9.8.0",
"pino-pretty": "^13.1.1",
"zod": "3.22.4",
"zod-to-json-schema": "^3.24.6"
},
"pnpm": {
"overrides": {
"zod": "3.22.4"
}
}
}