-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.65 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 2.65 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
100
101
102
103
104
105
106
107
{
"name": "agent-tasks",
"version": "1.10.11",
"description": "Pipeline-driven task management for AI coding agents — stages, dependencies, artifacts, and multi-agent claiming",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./lib": {
"types": "./dist/lib.d.ts",
"default": "./dist/lib.js"
},
"./dist/lib.js": {
"types": "./dist/lib.d.ts",
"default": "./dist/lib.js"
}
},
"bin": {
"agent-tasks": "dist/index.js"
},
"scripts": {
"build": "tsc && node scripts/copy-ui.js",
"dev": "tsc --watch",
"start": "node dist/index.js",
"start:server": "node dist/server.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src/ tests/",
"lint:fix": "eslint src/ tests/ --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"check": "npm run typecheck && npm run lint && npm run format:check && npm run test",
"bench:metrics": "vitest run bench/metrics.test.ts",
"bench:run": "tsx bench/runner.ts",
"bench:visibility": "tsx bench/visibility/runner.ts",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,js}": [
"prettier --write",
"eslint --fix"
],
"*.{json,md,css,html}": [
"prettier --write"
]
},
"dependencies": {
"agent-common": "^1.1.0",
"better-sqlite3": "^12.8.0",
"morphdom": "^2.7.8",
"ws": "^8.20.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.59.1",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.0.0",
"@types/ws": "^8.18.1",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^10.1.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.57.2",
"vitest": "^3.0.0"
},
"engines": {
"node": ">=20.11.0"
},
"keywords": [
"mcp",
"agent",
"tasks",
"pipeline",
"multi-agent",
"model-context-protocol",
"ai-agents",
"kanban",
"workflow",
"claude-code"
],
"files": [
"dist/",
"agent-desk-plugin.json",
"README.md",
"LICENSE"
],
"mcpName": "io.github.keshrath/agent-tasks",
"license": "MIT",
"author": "keshrath",
"repository": {
"type": "git",
"url": "https://github.com/keshrath/agent-tasks.git"
},
"homepage": "https://github.com/keshrath/agent-tasks",
"bugs": {
"url": "https://github.com/keshrath/agent-tasks/issues"
}
}