@kaban-board/cli 0.2.5 → 0.2.8
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/dist/index.js +791 -194
- package/dist/kaban-hook +2 -1
- package/package.json +7 -6
package/dist/kaban-hook
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kaban-board/cli",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.8",
|
|
4
4
|
"description": "Terminal Kanban for AI Code Agents - CLI and MCP server",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"dist"
|
|
11
11
|
],
|
|
12
12
|
"scripts": {
|
|
13
|
-
"build": "bun build ./src/index.ts --outdir ./dist --target
|
|
13
|
+
"build": "bun build ./src/index.ts --outdir ./dist --target bun --packages external && bun build ./src/hook-entry.ts --outfile ./dist/kaban-hook --target bun && chmod +x ./dist/index.js ./dist/kaban-hook",
|
|
14
14
|
"dev": "bun run ./src/index.ts",
|
|
15
15
|
"test": "bun test",
|
|
16
16
|
"typecheck": "tsc --noEmit",
|
|
@@ -18,11 +18,12 @@
|
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@clack/prompts": "^0.11.0",
|
|
21
|
-
"@kaban-board/core": "0.
|
|
22
|
-
"@
|
|
21
|
+
"@kaban-board/core": "0.2.5",
|
|
22
|
+
"@kaban-board/tui": "0.2.5",
|
|
23
|
+
"@modelcontextprotocol/sdk": "^1.25.3",
|
|
23
24
|
"chalk": "^5.6.2",
|
|
24
|
-
"commander": "^
|
|
25
|
-
"zod": "^4.3.
|
|
25
|
+
"commander": "^14.0.2",
|
|
26
|
+
"zod": "^4.3.6"
|
|
26
27
|
},
|
|
27
28
|
"devDependencies": {
|
|
28
29
|
"@types/bun": "latest",
|