-
Notifications
You must be signed in to change notification settings - Fork 144
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.25 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@delorenj/mcp-server-trello",
"mcpName": "io.github.delorenj/mcp-server-trello",
"version": "1.8.1",
"description": "An MCP server for Trello boards, powered by Bun for maximum performance.",
"keywords": [
"mcp",
"trello",
"bun",
"automation",
"productivity",
"model-context-protocol",
"api",
"integration",
"typescript",
"board-management",
"task-management",
"kanban"
],
"author": "Jarad DeLorenzo",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/delorenj/mcp-server-trello.git"
},
"bugs": {
"url": "https://github.com/delorenj/mcp-server-trello/issues"
},
"homepage": "https://github.com/delorenj/mcp-server-trello#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.24.3",
"axios": "^1.13.2",
"https-proxy-agent": "^7.0.6",
"form-data": "^4.0.5",
"zod": "^3.25.76"
},
"devDependencies": {
"@ai-sdk/openai": "^1.3.24",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitest/coverage-v8": "4.1.10",
"bun-types": "latest",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-prettier": "^5.5.4",
"mcp-evals": "^1.0.18",
"prettier": "^3.7.4",
"terser": "^5.44.1",
"typescript": "^5.9.3",
"vitest": "4.1.10"
},
"files": [
"build/**/*"
],
"bin": {
"mcp-server-trello": "build/index.js"
},
"type": "module",
"engines": {
"bun": ">=1.0.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "bun build src/index.ts --outdir ./build --target node --format esm",
"build:types": "tsc --emitDeclarationOnly",
"build:prod": "npm run build",
"typecheck": "tsc --noEmit",
"dev": "bun --watch src/index.ts",
"versionbump": "bun ./scripts/versionbump.js",
"versionbump:patch": "bun run versionbump --patch",
"versionbump:minor": "bun run versionbump --minor",
"versionbump:major": "bun run versionbump --major",
"test": "vitest run",
"test:unit": "vitest run tests/unit",
"test:smoke": "vitest run tests/smoke",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"release": "bun run build && npm publish"
}
}