-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) Β· 2.11 KB
/
package.json
File metadata and controls
75 lines (75 loc) Β· 2.11 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
{
"name": "mcp-project-manager",
"version": "0.2.0",
"description": "MCP Project Manager - Hierarchical project management server for MCP-compatible AI assistants",
"main": "dist/index.js",
"type": "module",
"bin": {
"mcp-project-manager": "./dist/index.js"
},
"files": [
"dist/"
],
"keywords": [
"mcp",
"model-context-protocol",
"project-management",
"task-management",
"claude",
"claude-code",
"claude-desktop",
"cursor",
"vscode",
"copilot",
"continue",
"ai-assistant",
"productivity",
"workflow",
"automation",
"hierarchical",
"epic",
"scrum",
"agile"
],
"repository": {
"type": "git",
"url": "git+https://github.com/croffasia/mcp-project-manager.git"
},
"bugs": {
"url": "https://github.com/croffasia/mcp-project-manager/issues"
},
"homepage": "https://github.com/croffasia/mcp-project-manager#readme",
"scripts": {
"build": "rimraf dist && tsc",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"test": "echo \"No tests specified\"",
"format": "prettier --write .",
"inspect": "npm run build && npx @modelcontextprotocol/inspector node dist/index.js",
"dashboard": "tsx src/cli/index.ts",
"prepublishOnly": "npm run build"
},
"author": {
"name": "Andrii Poluosmak",
"email": "poluosmak.a@gmail.com",
"url": "https://github.com/croffasia"
},
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.15.1",
"@types/sqlite3": "^5.1.0",
"commander": "^14.0.0",
"sqlite3": "^5.1.7",
"terminal-kit": "^3.1.2",
"zod": "^4.0.5"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/node": "^24.0.13",
"@types/terminal-kit": "^2.5.7",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
}
}