forked from delorenj/mcp-server-trello
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.31 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.31 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
83
84
85
{
"name": "@unboxed-software/mcp-server-trello",
"version": "1.4.0",
"description": "Enhanced MCP server for Trello with advanced pagination support for large boards",
"type": "module",
"main": "build/index.js",
"types": "build/index.d.ts",
"bin": {
"mcp-server-trello": "./build/index.js"
},
"scripts": {
"build:dev": "tsc && chmod +x build/index.js",
"build": "tsc && terser build/index.js --compress drop_console=true --mangle --output build/index.js && chmod +x build/index.js",
"start": "node build/index.js",
"dev": "ts-node --esm src/index.ts",
"lint": "eslint . --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"prepare": "if [ \"$SKIP_PREPARE\" != \"true\" ]; then npm run build; fi",
"inspector": "npx @modelcontextprotocol/inspector build/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unboxed-software/mcp-server-trello.git"
},
"keywords": [
"mcp",
"model-context-protocol",
"trello",
"api",
"integration",
"automation",
"typescript",
"board-management",
"task-management",
"kanban",
"pagination",
"large-boards",
"cursor-pagination"
],
"author": "Unboxed Software (forked from Jarad DeLorenzo)",
"contributors": [
{
"name": "Jarad DeLorenzo",
"url": "https://github.com/delorenj"
},
{
"name": "Unboxed Software",
"url": "https://github.com/unboxed-software"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/unboxed-software/mcp-server-trello/issues"
},
"homepage": "https://github.com/unboxed-software/mcp-server-trello#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"axios": "^1.6.2",
"dotenv": "^17.2.1",
"mcp-evals": "^1.0.18",
"zod": "^3.22.4"
},
"devDependencies": {
"@ai-sdk/openai": "^1.3.23",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "^3.1.0",
"terser": "^5.24.0",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"files": [
"build/**/*"
],
"engines": {
"node": ">=16.0.0"
},
"publishConfig": {
"access": "public"
}
}