@delorenj/mcp-server-trello 1.7.1 → 1.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +185 -138
- package/build/index.js +8594 -1011
- package/package.json +19 -6
- package/src/index.ts +1878 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@delorenj/mcp-server-trello",
|
|
3
3
|
"mcpName": "io.github.delorenj/mcp-server-trello",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.8.0",
|
|
5
5
|
"description": "An MCP server for Trello boards, powered by Bun for maximum performance.",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"mcp",
|
|
@@ -19,6 +19,10 @@
|
|
|
19
19
|
],
|
|
20
20
|
"author": "Jarad DeLorenzo",
|
|
21
21
|
"license": "MIT",
|
|
22
|
+
"repository": {
|
|
23
|
+
"type": "git",
|
|
24
|
+
"url": "git+https://github.com/delorenj/mcp-server-trello.git"
|
|
25
|
+
},
|
|
22
26
|
"bugs": {
|
|
23
27
|
"url": "https://github.com/delorenj/mcp-server-trello/issues"
|
|
24
28
|
},
|
|
@@ -26,27 +30,30 @@
|
|
|
26
30
|
"dependencies": {
|
|
27
31
|
"@modelcontextprotocol/sdk": "^1.24.3",
|
|
28
32
|
"axios": "^1.13.2",
|
|
33
|
+
"https-proxy-agent": "^7.0.6",
|
|
29
34
|
"form-data": "^4.0.5",
|
|
30
|
-
"mcp-evals": "^1.0.18",
|
|
31
35
|
"zod": "^3.25.76"
|
|
32
36
|
},
|
|
33
37
|
"devDependencies": {
|
|
34
38
|
"@ai-sdk/openai": "^1.3.24",
|
|
35
|
-
"bun-types": "latest",
|
|
36
39
|
"@typescript-eslint/eslint-plugin": "^6.21.0",
|
|
37
40
|
"@typescript-eslint/parser": "^6.21.0",
|
|
41
|
+
"@vitest/coverage-v8": "^4.1.10",
|
|
42
|
+
"bun-types": "latest",
|
|
38
43
|
"eslint": "^8.57.1",
|
|
39
44
|
"eslint-config-prettier": "^9.1.2",
|
|
40
45
|
"eslint-plugin-prettier": "^5.5.4",
|
|
46
|
+
"mcp-evals": "^1.0.18",
|
|
41
47
|
"prettier": "^3.7.4",
|
|
42
48
|
"terser": "^5.44.1",
|
|
43
|
-
"typescript": "^5.9.3"
|
|
49
|
+
"typescript": "^5.9.3",
|
|
50
|
+
"vitest": "^4.0.18"
|
|
44
51
|
},
|
|
45
52
|
"files": [
|
|
46
53
|
"build/**/*"
|
|
47
54
|
],
|
|
48
55
|
"bin": {
|
|
49
|
-
"mcp-server-trello": "
|
|
56
|
+
"mcp-server-trello": "src/index.ts"
|
|
50
57
|
},
|
|
51
58
|
"type": "module",
|
|
52
59
|
"engines": {
|
|
@@ -57,13 +64,19 @@
|
|
|
57
64
|
},
|
|
58
65
|
"scripts": {
|
|
59
66
|
"build": "bun build src/index.ts --outdir ./build --target node --format esm",
|
|
60
|
-
"build:types": "tsc --emitDeclarationOnly
|
|
67
|
+
"build:types": "tsc --emitDeclarationOnly",
|
|
61
68
|
"build:prod": "npm run build",
|
|
69
|
+
"typecheck": "tsc --noEmit",
|
|
62
70
|
"dev": "bun --watch src/index.ts",
|
|
63
71
|
"versionbump": "bun ./scripts/versionbump.js",
|
|
64
72
|
"versionbump:patch": "bun run versionbump --patch",
|
|
65
73
|
"versionbump:minor": "bun run versionbump --minor",
|
|
66
74
|
"versionbump:major": "bun run versionbump --major",
|
|
75
|
+
"test": "vitest run",
|
|
76
|
+
"test:unit": "vitest run tests/unit",
|
|
77
|
+
"test:smoke": "vitest run tests/smoke",
|
|
78
|
+
"test:coverage": "vitest run --coverage",
|
|
79
|
+
"test:watch": "vitest",
|
|
67
80
|
"publish": "bun run build && npm publish"
|
|
68
81
|
}
|
|
69
82
|
}
|