@codebyplan/cli 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +114 -0
- package/dist/cli.js +23907 -0
- package/package.json +56 -0
package/package.json
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@codebyplan/cli",
|
|
3
|
+
"version": "2.0.0",
|
|
4
|
+
"description": "MCP server for CodeByPlan — AI-powered development planning and tracking",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"@codebyplan/cli": "dist/cli.js",
|
|
8
|
+
"codebyplan": "dist/cli.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"dist/cli.js",
|
|
12
|
+
"README.md"
|
|
13
|
+
],
|
|
14
|
+
"scripts": {
|
|
15
|
+
"build": "tsc",
|
|
16
|
+
"bundle": "node esbuild.config.mjs",
|
|
17
|
+
"build:npm": "node esbuild.npm.mjs",
|
|
18
|
+
"prepublishOnly": "npm run build:npm",
|
|
19
|
+
"dev": "tsx watch src/index.ts",
|
|
20
|
+
"start": "node dist/index.js",
|
|
21
|
+
"test": "vitest run",
|
|
22
|
+
"test:watch": "vitest",
|
|
23
|
+
"test:coverage": "vitest run --coverage"
|
|
24
|
+
},
|
|
25
|
+
"keywords": [
|
|
26
|
+
"mcp",
|
|
27
|
+
"claude",
|
|
28
|
+
"codebyplan",
|
|
29
|
+
"development-planning",
|
|
30
|
+
"ai-tools",
|
|
31
|
+
"model-context-protocol"
|
|
32
|
+
],
|
|
33
|
+
"homepage": "https://codebyplan.com",
|
|
34
|
+
"repository": {
|
|
35
|
+
"type": "git",
|
|
36
|
+
"url": "https://github.com/codebyplan/codebyplan.git",
|
|
37
|
+
"directory": "apps/mcp"
|
|
38
|
+
},
|
|
39
|
+
"license": "MIT",
|
|
40
|
+
"publishConfig": {
|
|
41
|
+
"access": "public",
|
|
42
|
+
"registry": "https://registry.npmjs.org/"
|
|
43
|
+
},
|
|
44
|
+
"engines": {
|
|
45
|
+
"node": ">=18"
|
|
46
|
+
},
|
|
47
|
+
"devDependencies": {
|
|
48
|
+
"@modelcontextprotocol/sdk": "^1.12.1",
|
|
49
|
+
"@types/node": "^20",
|
|
50
|
+
"esbuild": "^0.25",
|
|
51
|
+
"tsx": "^4.19.4",
|
|
52
|
+
"typescript": "^5",
|
|
53
|
+
"vitest": "^4.0.18",
|
|
54
|
+
"zod": "^3.25"
|
|
55
|
+
}
|
|
56
|
+
}
|