-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.73 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
{
"name": "@clickmongrel/mcp-server",
"version": "1.0.0",
"description": "ClickUp MCP Server optimized for Claude Code - Requires Claude Code to function. Seamless task sync, time tracking, and project management",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"clickmongrel": "dist/cli.js",
"clickmongrel-server": "dist/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/buildappolis/clickmongrel-mcp.git"
},
"homepage": "https://buildappolis.github.io/clickmongrel-mcp/",
"bugs": {
"url": "https://github.com/buildappolis/clickmongrel-mcp/issues"
},
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"lint": "eslint src/**/*.ts",
"typecheck": "tsc --noEmit",
"test": "vitest",
"init": "tsx src/init.ts",
"setup": "tsx src/setup-workspace.ts",
"prepublishOnly": "pnpm run build"
},
"keywords": [
"mcp",
"clickup",
"task-management",
"claude",
"ai-assistant"
],
"author": "Cory",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.6.0",
"@types/form-data": "^2.5.2",
"axios": "^1.7.2",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"dotenv": "^16.4.5",
"form-data": "^4.0.4",
"inquirer": "^9.2.23",
"node-cache": "^5.1.2",
"winston": "^3.13.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/node": "^20.14.9",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"eslint": "^8.57.0",
"tsx": "^4.15.7",
"typescript": "^5.5.2",
"vitest": "^1.6.0"
},
"engines": {
"node": ">=18.0.0"
}
}