-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.94 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.94 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
{
"name": "taskdriver-mcp",
"version": "1.0.3",
"description": "MCP server for managing and orchestrating LLM agents as task runners",
"main": "dist/cli.js",
"module": "dist/cli.js",
"type": "module",
"scripts": {
"build": "tsc && chmod +x dist/cli.js",
"dev": "bun run src/cli.ts",
"start": "node dist/cli.js",
"mcp": "node dist/cli.js mcp",
"http": "node dist/cli.js server",
"cli": "node dist/cli.js",
"clean": "rm -rf dist",
"test": "NODE_ENV=test bun test",
"test:watch": "NODE_ENV=test bun test --watch",
"test:coverage": "NODE_ENV=test bun test --coverage",
"test:all": "./test-all.sh",
"test:all:fast": "./test-all.sh --fast",
"test:all:coverage": "./test-all.sh --coverage",
"test:working": "NODE_ENV=test bun test test/config/ test/storage/ test/services/LeaseService.test.ts test/services/SessionService.test.ts test/services/ProjectService.test.ts test/services/TaskTypeService.test.ts test/mcp/ && ./test/e2e/cli-workflow.sh",
"test:unit": "NODE_ENV=test bun test test/utils/ test/config/ test/services/ test/storage/",
"test:integration": "NODE_ENV=test bun test test/integration/",
"test:mcp": "NODE_ENV=test bun test test/mcp/ test/integration/mcp-comprehensive.test.ts",
"test:http": "./test/http/run-http-tests.sh",
"test:cli": "./test/e2e/cli-workflow.sh",
"test:e2e": "./test/e2e/run-all-tests.sh",
"prepublishOnly": "npm run build"
},
"bin": {
"taskdriver-mcp": "dist/cli.js"
},
"keywords": [
"mcp",
"claude",
"task-runner",
"orchestration",
"llm",
"agent",
"task-management",
"workflow"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/HamStudy/taskdriver-mcp.git"
},
"bugs": {
"url": "https://github.com/HamStudy/taskdriver-mcp/issues"
},
"homepage": "https://github.com/HamStudy/taskdriver-mcp#readme",
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"devDependencies": {
"@types/bun": "latest",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/node": "^20.0.0",
"@types/proper-lockfile": "^4.1.4",
"@types/supertest": "^6.0.3",
"@types/uuid": "^10.0.0",
"mongodb-memory-server": "^10.1.4",
"redis-memory-server": "^0.12.1",
"strip-ansi": "^7.1.0",
"supertest": "^7.1.3",
"typescript": "^5.0.0",
"typescript-language-server": "^4.3.4"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.6.0",
"@types/yargs": "^17.0.33",
"chalk": "^5.4.1",
"cors": "^2.8.5",
"es-main": "^1.3.0",
"express": "^5.1.0",
"express-rate-limit": "^7.5.1",
"helmet": "^8.1.0",
"joi": "^17.13.3",
"mongodb": "^6.17.0",
"pino": "^9.7.0",
"pino-pretty": "^13.0.0",
"proper-lockfile": "^4.1.2",
"redis": "^5.6.0",
"uuid": "^11.1.0",
"yargs": "^18.0.0"
},
"peerDependencies": {
"typescript": "^5"
}
}