-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.09 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.09 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
{
"name": "soloboard",
"version": "3.0.1",
"description": "Autonomous development orchestrator for Claude Code — 94 MCP tools",
"type": "module",
"main": "dist/mcp-server/index.js",
"bin": {
"soloboard": "dist/cli.js"
},
"files": [
"dist/",
"scripts/",
"commands/",
"hooks/",
"skills/",
"install.sh",
"logo.svg",
".claude-plugin/",
".mcp.json"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/mcp-server/index.js",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build"
},
"keywords": [
"claude-code",
"mcp",
"kanban",
"task-tracker",
"claude",
"ai",
"productivity"
],
"repository": {
"type": "git",
"url": "https://github.com/egorfedorov/Soloboard.git"
},
"license": "MIT",
"author": "Egor Fedorov",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"nanoid": "^5.1.5",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^22.13.10",
"typescript": "^5.7.3",
"vitest": "^4.0.18"
}
}