-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.2 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.2 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
{
"name": "agent-teams-task-mcp",
"version": "2.4.2",
"description": "Persistent task management plugin for Claude Code and agent teams",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc --watch",
"lint": "eslint src/ tests/",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"keywords": [
"mcp",
"claude-code"
],
"author": "",
"license": "MIT",
"type": "module",
"dependencies": {
"@backloghq/agentdb": "^2.2.1",
"@cfworker/json-schema": "^4.1.1",
"@modelcontextprotocol/server": "^2.0.0-alpha.2",
"zod": "^4.3.6"
},
"peerDependencies": {
"@backloghq/opslog-s3": "^0.4.1",
"@backloghq/termlog-s3": "^0.1.0"
},
"peerDependenciesMeta": {
"@backloghq/opslog-s3": {
"optional": true
},
"@backloghq/termlog-s3": {
"optional": true
}
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@modelcontextprotocol/sdk": "^1.29.0",
"@types/node": "^25.5.2",
"@vitest/coverage-v8": "^4.1.2",
"eslint": "^10.2.0",
"typescript": "~6.0.2",
"typescript-eslint": "^8.58.0",
"vitest": "^4.1.2"
}
}