@kaban-board/cli 0.3.2 → 0.3.4

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 +61 -66
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -2,8 +2,67 @@
2
2
  // @bun
3
3
 
4
4
  // src/index.ts
5
- import { createRequire as createRequire2 } from "module";
6
5
  import { Command as Command23 } from "commander";
6
+ // package.json
7
+ var package_default = {
8
+ name: "@kaban-board/cli",
9
+ version: "0.3.4",
10
+ description: "Terminal Kanban for AI Code Agents - CLI and MCP server",
11
+ type: "module",
12
+ bin: {
13
+ kaban: "./dist/index.js"
14
+ },
15
+ files: [
16
+ "dist"
17
+ ],
18
+ scripts: {
19
+ 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",
20
+ dev: "bun run ./src/index.ts",
21
+ test: "bun test",
22
+ typecheck: "tsc --noEmit",
23
+ prepublishOnly: "npm run build"
24
+ },
25
+ dependencies: {
26
+ "@clack/prompts": "^0.11.0",
27
+ "@kaban-board/core": "workspace:*",
28
+ "@modelcontextprotocol/sdk": "^1.25.3",
29
+ chalk: "^5.6.2",
30
+ commander: "^14.0.2",
31
+ zod: "^4.3.6"
32
+ },
33
+ devDependencies: {
34
+ "@types/bun": "latest",
35
+ typescript: "^5.0.0"
36
+ },
37
+ engines: {
38
+ node: ">=18.0.0"
39
+ },
40
+ repository: {
41
+ type: "git",
42
+ url: "https://github.com/kaban-board/kaban.git",
43
+ directory: "packages/cli"
44
+ },
45
+ homepage: "https://beshkenadze.github.io/kaban",
46
+ bugs: {
47
+ url: "https://github.com/beshkenadze/kaban/issues"
48
+ },
49
+ license: "MIT",
50
+ author: "Aleksandr Beshkenadze <beshkenadze@gmail.com>",
51
+ keywords: [
52
+ "kanban",
53
+ "ai",
54
+ "agents",
55
+ "mcp",
56
+ "claude",
57
+ "terminal",
58
+ "cli",
59
+ "tui",
60
+ "task-management"
61
+ ],
62
+ publishConfig: {
63
+ access: "public"
64
+ }
65
+ };
7
66
 
8
67
  // src/commands/add.ts
9
68
  import { KabanError } from "@kaban-board/core";
@@ -3143,68 +3202,6 @@ import { createRequire } from "module";
3143
3202
  import { dirname as dirname3, join as join5 } from "path";
3144
3203
  import { fileURLToPath } from "url";
3145
3204
  import { Command as Command22 } from "commander";
3146
- // package.json
3147
- var package_default = {
3148
- name: "@kaban-board/cli",
3149
- version: "0.3.2",
3150
- description: "Terminal Kanban for AI Code Agents - CLI and MCP server",
3151
- type: "module",
3152
- bin: {
3153
- kaban: "./dist/index.js"
3154
- },
3155
- files: [
3156
- "dist"
3157
- ],
3158
- scripts: {
3159
- 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",
3160
- dev: "bun run ./src/index.ts",
3161
- test: "bun test",
3162
- typecheck: "tsc --noEmit",
3163
- prepublishOnly: "npm run build"
3164
- },
3165
- dependencies: {
3166
- "@clack/prompts": "^0.11.0",
3167
- "@kaban-board/core": "workspace:*",
3168
- "@modelcontextprotocol/sdk": "^1.25.3",
3169
- chalk: "^5.6.2",
3170
- commander: "^14.0.2",
3171
- zod: "^4.3.6"
3172
- },
3173
- devDependencies: {
3174
- "@types/bun": "latest",
3175
- typescript: "^5.0.0"
3176
- },
3177
- engines: {
3178
- node: ">=18.0.0"
3179
- },
3180
- repository: {
3181
- type: "git",
3182
- url: "https://github.com/kaban-board/kaban.git",
3183
- directory: "packages/cli"
3184
- },
3185
- homepage: "https://beshkenadze.github.io/kaban",
3186
- bugs: {
3187
- url: "https://github.com/beshkenadze/kaban/issues"
3188
- },
3189
- license: "MIT",
3190
- author: "Aleksandr Beshkenadze <beshkenadze@gmail.com>",
3191
- keywords: [
3192
- "kanban",
3193
- "ai",
3194
- "agents",
3195
- "mcp",
3196
- "claude",
3197
- "terminal",
3198
- "cli",
3199
- "tui",
3200
- "task-management"
3201
- ],
3202
- publishConfig: {
3203
- access: "public"
3204
- }
3205
- };
3206
-
3207
- // src/commands/tui.ts
3208
3205
  var __dirname2 = dirname3(fileURLToPath(import.meta.url));
3209
3206
  var require2 = createRequire(import.meta.url);
3210
3207
  function hasBun() {
@@ -3262,10 +3259,8 @@ var tuiCommand = new Command22("tui").description("Start interactive Terminal UI
3262
3259
  });
3263
3260
 
3264
3261
  // src/index.ts
3265
- var require3 = createRequire2(import.meta.url);
3266
- var pkg = require3("../package.json");
3267
3262
  var program = new Command23;
3268
- program.name("kaban").description("Terminal Kanban for AI Code Agents").version(pkg.version);
3263
+ program.name("kaban").description("Terminal Kanban for AI Code Agents").version(package_default.version);
3269
3264
  program.addCommand(initCommand);
3270
3265
  program.addCommand(addCommand);
3271
3266
  program.addCommand(auditCommand);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kaban-board/cli",
3
- "version": "0.3.2",
3
+ "version": "0.3.4",
4
4
  "description": "Terminal Kanban for AI Code Agents - CLI and MCP server",
5
5
  "type": "module",
6
6
  "bin": {