-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.66 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.66 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@gitscrum-studio/mcp-server",
"version": "1.0.7",
"mcpName": "com.gitscrum/mcp",
"description": "Model Context Protocol server for GitScrum - Enable AI assistants to manage tasks, track time, run sprints, and handle client relationships through natural language",
"type": "module",
"main": "dist/index.js",
"exports": {
".": {
"import": "./dist/exports.js",
"types": "./dist/exports.d.ts"
},
"./cli": {
"import": "./dist/index.js"
}
},
"bin": {
"gitscrum-mcp": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"prepare": "npm run build",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"inspector": "npx @modelcontextprotocol/inspector node dist/index.js",
"prepublishOnly": "npm run build && npm test"
},
"keywords": [
"mcp",
"model-context-protocol",
"gitscrum",
"project-management",
"task-management",
"time-tracking",
"sprint",
"sprints",
"kanban",
"scrum",
"agile",
"ai",
"ai-assistant",
"claude",
"anthropic",
"copilot",
"cursor",
"llm",
"automation",
"productivity",
"crm",
"invoicing",
"proposals"
],
"author": {
"name": "GitScrum",
"email": "support@gitscrum.com",
"url": "https://gitscrum.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/gitscrum-core/mcp-server.git"
},
"homepage": "https://github.com/gitscrum-core/mcp-server#readme",
"bugs": {
"url": "https://github.com/gitscrum-core/mcp-server/issues"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/gitscrum-core"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"eslint": "^8.56.0",
"typescript": "^5.3.0",
"vitest": "^4.0.18"
}
}