-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.25 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
{
"name": "prd-taskmaster",
"version": "5.2.0",
"description": "Zero-config goal-to-tasks engine for Claude Code (the Atlas engine)",
"keywords": [
"claude-code",
"taskmaster",
"prd",
"ai-agents",
"mcp",
"code-generation",
"token-economy",
"cost-ledger",
"model-routing",
"atlas"
],
"peerDependencies": {
"task-master-ai": ">=0.43.0"
},
"peerDependenciesMeta": {
"task-master-ai": {
"optional": true
}
},
"scripts": {
"postinstall": "pip install -r mcp-server/requirements.txt 2>/dev/null || echo 'WARN: Python MCP deps not installed. MCP tools will not start. Run: pip install -r node_modules/prd-taskmaster/mcp-server/requirements.txt'",
"test": "pytest tests/",
"test:fast": "pytest tests/ -k 'not integration'",
"test:integration": "pytest tests/mcp/test_integration.py"
},
"files": [
".claude-plugin/",
".mcp.json",
"skills/",
"hooks/",
"agents/",
"mcp-server/",
"prd_taskmaster/",
"script.py",
"SKILL.md",
"phases/",
"templates/",
"reference/",
"skel/",
"CHANGELOG.md",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/anombyte93/prd-taskmaster.git"
},
"license": "MIT"
}