-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.16 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "kanban-cli",
"version": "0.3.1",
"description": "A tiny Bun-powered markdown kanban board CLI.",
"type": "module",
"preferGlobal": true,
"bin": {
"kb": "dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "bun build ./src/cli.ts --target=bun --outfile=dist/cli.js",
"dev": "sh -c 'bun --watch ./src/cli.ts \"${1:-./examples/basic.md}\" --no-open' --",
"kanban": "npx kanban-cli@latest docs/features.md",
"test": "bun test",
"typecheck": "tsc --noEmit",
"prepack": "bun run build"
},
"keywords": [
"bun",
"kanban",
"markdown",
"trello",
"cli"
],
"author": "",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/Vochsel/kanban-cli.git"
},
"bugs": {
"url": "https://github.com/Vochsel/kanban-cli/issues"
},
"homepage": "https://github.com/Vochsel/kanban-cli#readme",
"publishConfig": {
"access": "public"
},
"engines": {
"bun": ">=1.3.0"
},
"packageManager": "bun@1.3.5",
"devDependencies": {
"@types/bun": "^1.3.0",
"lucide": "^1.14.0",
"typescript": "^5.9.3"
}
}