forked from cline/kanban
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.89 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.89 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "kanban",
"version": "0.1.56",
"description": "A kanban foundation for coding agents",
"publishConfig": {
"access": "public",
"provenance": true
},
"keywords": [
"kanban",
"agents",
"cli",
"task-management",
"typescript"
],
"homepage": "https://github.com/cline/kanban",
"bugs": {
"url": "https://github.com/cline/kanban/issues"
},
"author": "Cline",
"repository": {
"type": "git",
"url": "https://github.com/cline/kanban"
},
"type": "module",
"bin": {
"kanban": "dist/cli.js"
},
"man": "./man/kanban.1",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"man",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"clean": "shx rm -rf dist coverage",
"install:all": "npm install && npm --prefix web-ui install",
"build": "npm run clean && npm run web:build && node scripts/build.mjs && shx mkdir -p dist/web-ui && shx cp -r web-ui/dist/* dist/web-ui && node scripts/upload-sentry-sourcemaps.mjs && shx chmod +x dist/cli.js",
"dogfood": "node scripts/dogfood.mjs",
"link": "npm run build && npm link",
"unlink": "npm unlink -g kanban",
"dev": "tsx watch src/cli.ts",
"web:dev": "npm --prefix web-ui run dev",
"web:build": "npm --prefix web-ui run build",
"web:typecheck": "npm --prefix web-ui run typecheck",
"web:test": "npm --prefix web-ui run test",
"typecheck": "tsc -p tsconfig.json --noEmit",
"lint": "biome lint src test web-ui/src web-ui/tests vitest.config.ts web-ui/vite.config.ts web-ui/vitest.config.ts web-ui/playwright.config.ts",
"format": "biome check --write .",
"check": "biome check . && npm run typecheck && npm run test",
"test": "vitest run",
"test:watch": "vitest",
"prepare": "husky",
"prepublishOnly": "npm run build && npm run check"
},
"license": "Apache-2.0",
"devDependencies": {
"@biomejs/biome": "^2.3.5",
"@sentry/cli": "^3.3.3",
"@types/node": "^22.10.5",
"@types/proper-lockfile": "^4.1.4",
"@types/ws": "^8.18.1",
"esbuild": "^0.27.4",
"husky": "^9.1.7",
"shx": "^0.4.0",
"tsx": "^4.20.3",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
},
"dependencies": {
"@clinebot/agents": "^0.0.22",
"@clinebot/core": "^0.0.22",
"@clinebot/llms": "^0.0.22",
"@clinebot/shared": "^0.0.22",
"@modelcontextprotocol/sdk": "^1.27.1",
"@sentry/node": "^10.45.0",
"@trpc/client": "^11.11.0",
"@trpc/server": "^11.11.0",
"@xterm/addon-serialize": "^0.14.0",
"@xterm/headless": "^6.0.0",
"commander": "^14.0.3",
"node-pty": "^1.2.0-beta.11",
"open": "^11.0.0",
"ora": "^9.3.0",
"proper-lockfile": "^4.1.2",
"tree-kill": "^1.2.2",
"ws": "^8.18.0",
"zod": "^4.3.6"
}
}