-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 928 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 928 Bytes
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
{
"name": "kanbatte",
"version": "0.0.9",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yuusoft-org/kanbatte.git"
},
"type": "module",
"bin": {
"kanbatte": "./src/cli.js"
},
"devDependencies": {
"@types/bun": "latest",
"puty": "^0.0.5-rc1"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.1.11",
"@libsql/client": "^0.15.15",
"@msgpack/msgpack": "^3.1.2",
"@rettangoli/fe": "^0.0.14",
"@rettangoli/sites": "^0.2.2",
"cli-table3": "^0.6.5",
"commander": "^14.0.1",
"crypto": "^1.0.1",
"discord.js": "^14.24.2",
"insieme": "0.0.6",
"js-yaml": "^4.1.0",
"umzug-libsql": "^0.0.1"
},
"scripts": {
"kanbatte": "bun run src/cli.js",
"setup": "bun run src/cli.js",
"test:agent": "bun run src/agent/agent.js",
"lint": "bunx prettier src -c",
"lint:fix": "bunx prettier src -w"
}
}