@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/kaban-hook CHANGED
@@ -1,7 +1,8 @@
1
1
  #!/usr/bin/env node
2
+ // @bun
2
3
 
3
4
  // src/hook-entry.ts
4
- import { spawn } from "node:child_process";
5
+ import { spawn } from "child_process";
5
6
  var kaban = spawn("kaban", ["sync"], {
6
7
  stdio: ["pipe", "inherit", "inherit"]
7
8
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kaban-board/cli",
3
- "version": "0.2.5",
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 node --packages external && bun build ./src/hook-entry.ts --outfile ./dist/kaban-hook --target node && chmod +x ./dist/index.js ./dist/kaban-hook",
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.1.3",
22
- "@modelcontextprotocol/sdk": "^1.25.2",
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": "^12.0.0",
25
- "zod": "^4.3.5"
25
+ "commander": "^14.0.2",
26
+ "zod": "^4.3.6"
26
27
  },
27
28
  "devDependencies": {
28
29
  "@types/bun": "latest",