-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.82 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
{
"name": "devcoach",
"version": "0.7.4",
"mcpName": "io.github.UltimaPhoenix/devcoach",
"description": "Stay sharp while your AI does the work — learn from every task with in-context coaching, all local, all free",
"license": "AGPL-3.0-only",
"keywords": [
"mcp",
"model-context-protocol",
"claude",
"claude-code",
"coaching",
"developer-tools",
"cli"
],
"homepage": "https://ultimaphoenix.github.io/dev-coach/",
"repository": {
"type": "git",
"url": "git+https://github.com/UltimaPhoenix/dev-coach.git"
},
"bugs": {
"url": "https://github.com/UltimaPhoenix/dev-coach/issues"
},
"author": "UltimaPhoenix",
"publishConfig": {
"access": "public"
},
"type": "module",
"bin": {
"devcoach": "dist/bin.js"
},
"engines": {
"node": ">=24"
},
"files": [
"dist",
"assets",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"dev": "tsx src/bin.ts",
"typecheck": "tsc --noEmit",
"lint": "biome check .",
"format": "biome format --write .",
"test": "vitest run",
"test:cov": "vitest run --coverage",
"mcpb": "npm run build && node scripts/build-mcpb.mjs",
"mcpb:sign": "npm run build && node scripts/build-mcpb.mjs --sign",
"plugin:sync": "node scripts/sync-plugin.mjs",
"plugin:zip": "node scripts/sync-plugin.mjs && node scripts/build-plugin-zip.mjs",
"prepack": "npm run build"
},
"dependencies": {
"@hono/node-server": "^2.0.5",
"@modelcontextprotocol/sdk": "^1.29.0",
"commander": "^15.0.0",
"fflate": "^0.8.3",
"hono": "^4.12.25",
"zod": "^4.4.3"
},
"devDependencies": {
"@biomejs/biome": "^2.5.0",
"@types/node": "^26.0.1",
"@vitest/coverage-v8": "^4.1.9",
"tsup": "^8.5.1",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"vitest": "^4.1.9"
}
}