@kaban-board/cli 0.1.2 → 0.1.3
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 +4 -1
- package/package.json +3 -2
package/dist/index.js
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
// src/index.ts
|
|
4
4
|
import { Command as Command10 } from "commander";
|
|
5
|
+
import { createRequire } from "node:module";
|
|
5
6
|
|
|
6
7
|
// src/commands/add.ts
|
|
7
8
|
import { KabanError } from "@kaban-board/core";
|
|
@@ -773,8 +774,10 @@ var tuiCommand = new Command9("tui").description("Start interactive Terminal UI"
|
|
|
773
774
|
});
|
|
774
775
|
|
|
775
776
|
// src/index.ts
|
|
777
|
+
var require2 = createRequire(import.meta.url);
|
|
778
|
+
var pkg = require2("../package.json");
|
|
776
779
|
var program = new Command10;
|
|
777
|
-
program.name("kaban").description("Terminal Kanban for AI Code Agents").version(
|
|
780
|
+
program.name("kaban").description("Terminal Kanban for AI Code Agents").version(pkg.version);
|
|
778
781
|
program.addCommand(initCommand);
|
|
779
782
|
program.addCommand(addCommand);
|
|
780
783
|
program.addCommand(listCommand);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kaban-board/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Terminal Kanban for AI Code Agents - CLI and MCP server",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"prepublishOnly": "npm run build"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@kaban-board/core": "0.1.
|
|
20
|
+
"@kaban-board/core": "0.1.3",
|
|
21
21
|
"@modelcontextprotocol/sdk": "^1.25.2",
|
|
22
22
|
"commander": "^12.0.0"
|
|
23
23
|
},
|
|
@@ -38,6 +38,7 @@
|
|
|
38
38
|
"url": "https://github.com/beshkenadze/kaban/issues"
|
|
39
39
|
},
|
|
40
40
|
"license": "MIT",
|
|
41
|
+
"author": "Aleksandr Beshkenadze <beshkenadze@gmail.com>",
|
|
41
42
|
"keywords": [
|
|
42
43
|
"kanban",
|
|
43
44
|
"ai",
|