viban-cli 1.0.0
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/viban +0 -0
- package/package.json +37 -0
package/dist/viban
ADDED
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "viban-cli",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "A Kanban-style board in your CLI, powered by local SQLite",
|
|
5
|
+
"bin": {
|
|
6
|
+
"viban": "./dist/viban"
|
|
7
|
+
},
|
|
8
|
+
"scripts": {
|
|
9
|
+
"dev": "bun run src/index.ts",
|
|
10
|
+
"build": "bun build src/index.ts --compile --outfile dist/viban --target bun",
|
|
11
|
+
"prepublishOnly": "bun run build"
|
|
12
|
+
},
|
|
13
|
+
"files": [
|
|
14
|
+
"dist/"
|
|
15
|
+
],
|
|
16
|
+
"keywords": [
|
|
17
|
+
"kanban",
|
|
18
|
+
"cli",
|
|
19
|
+
"tasks",
|
|
20
|
+
"board",
|
|
21
|
+
"productivity",
|
|
22
|
+
"vibe code",
|
|
23
|
+
"vibe kanban",
|
|
24
|
+
"agent kanban"
|
|
25
|
+
],
|
|
26
|
+
"author": "Vance Lucas <vance@vancelucas.com>",
|
|
27
|
+
"license": "MIT",
|
|
28
|
+
"dependencies": {
|
|
29
|
+
"chalk": "^5.6.2",
|
|
30
|
+
"commander": "^13.1.0",
|
|
31
|
+
"typeid-js": "^0.7.0"
|
|
32
|
+
},
|
|
33
|
+
"devDependencies": {
|
|
34
|
+
"@types/bun": "^1.3.10",
|
|
35
|
+
"typescript": "^5.9.3"
|
|
36
|
+
}
|
|
37
|
+
}
|