@kaban-board/cli 0.2.9 → 0.2.11

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.
Files changed (2) hide show
  1. package/dist/index.js +64 -1
  2. package/package.json +2 -3
package/dist/index.js CHANGED
@@ -2294,6 +2294,68 @@ import { createRequire } from "module";
2294
2294
  import { dirname as dirname3, join as join5 } from "path";
2295
2295
  import { fileURLToPath } from "url";
2296
2296
  import { Command as Command14 } from "commander";
2297
+ // package.json
2298
+ var package_default = {
2299
+ name: "@kaban-board/cli",
2300
+ version: "0.2.11",
2301
+ description: "Terminal Kanban for AI Code Agents - CLI and MCP server",
2302
+ type: "module",
2303
+ bin: {
2304
+ kaban: "./dist/index.js"
2305
+ },
2306
+ files: [
2307
+ "dist"
2308
+ ],
2309
+ scripts: {
2310
+ 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",
2311
+ dev: "bun run ./src/index.ts",
2312
+ test: "bun test",
2313
+ typecheck: "tsc --noEmit",
2314
+ prepublishOnly: "npm run build"
2315
+ },
2316
+ dependencies: {
2317
+ "@clack/prompts": "^0.11.0",
2318
+ "@kaban-board/core": "workspace:*",
2319
+ "@modelcontextprotocol/sdk": "^1.25.3",
2320
+ chalk: "^5.6.2",
2321
+ commander: "^14.0.2",
2322
+ zod: "^4.3.6"
2323
+ },
2324
+ devDependencies: {
2325
+ "@types/bun": "latest",
2326
+ typescript: "^5.0.0"
2327
+ },
2328
+ engines: {
2329
+ node: ">=18.0.0"
2330
+ },
2331
+ repository: {
2332
+ type: "git",
2333
+ url: "https://github.com/beshkenadze/kaban.git",
2334
+ directory: "packages/cli"
2335
+ },
2336
+ homepage: "https://beshkenadze.github.io/kaban",
2337
+ bugs: {
2338
+ url: "https://github.com/beshkenadze/kaban/issues"
2339
+ },
2340
+ license: "MIT",
2341
+ author: "Aleksandr Beshkenadze <beshkenadze@gmail.com>",
2342
+ keywords: [
2343
+ "kanban",
2344
+ "ai",
2345
+ "agents",
2346
+ "mcp",
2347
+ "claude",
2348
+ "terminal",
2349
+ "cli",
2350
+ "tui",
2351
+ "task-management"
2352
+ ],
2353
+ publishConfig: {
2354
+ access: "public"
2355
+ }
2356
+ };
2357
+
2358
+ // src/commands/tui.ts
2297
2359
  var __dirname2 = dirname3(fileURLToPath(import.meta.url));
2298
2360
  var require2 = createRequire(import.meta.url);
2299
2361
  function hasBun() {
@@ -2345,7 +2407,8 @@ var tuiCommand = new Command14("tui").description("Start interactive Terminal UI
2345
2407
  child2.on("exit", (code) => process.exit(code ?? 0));
2346
2408
  return;
2347
2409
  }
2348
- const child = spawn3("bun", ["x", "@kaban-board/tui", ...args], { stdio: "inherit", cwd });
2410
+ const version = package_default.version;
2411
+ const child = spawn3("bun", ["x", `@kaban-board/tui@${version}`, ...args], { stdio: "inherit", cwd });
2349
2412
  child.on("exit", (code) => process.exit(code ?? 0));
2350
2413
  });
2351
2414
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kaban-board/cli",
3
- "version": "0.2.9",
3
+ "version": "0.2.11",
4
4
  "description": "Terminal Kanban for AI Code Agents - CLI and MCP server",
5
5
  "type": "module",
6
6
  "bin": {
@@ -18,8 +18,7 @@
18
18
  },
19
19
  "dependencies": {
20
20
  "@clack/prompts": "^0.11.0",
21
- "@kaban-board/core": "0.2.5",
22
- "@kaban-board/tui": "0.2.5",
21
+ "@kaban-board/core": "0.2.11",
23
22
  "@modelcontextprotocol/sdk": "^1.25.3",
24
23
  "chalk": "^5.6.2",
25
24
  "commander": "^14.0.2",