-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.02 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.02 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
{
"name": "frail",
"version": "0.2.0",
"description": "Daemon-first AI chat tool with Feishu bot integration, built on pi-mono",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/DataMini/frail.git"
},
"homepage": "https://github.com/DataMini/frail",
"keywords": ["ai", "chat", "cli", "daemon", "feishu", "lark", "tui", "bun", "pi-mono"],
"module": "src/cli.ts",
"type": "module",
"bin": {
"frail": "src/cli.ts"
},
"scripts": {
"dev": "bun --watch run src/cli.ts daemon",
"start": "bun run src/cli.ts"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@larksuiteoapi/node-sdk": "^1.60.0",
"@linear/sdk": "^83.0.0",
"@mariozechner/pi-agent-core": "^0.73.0",
"@mariozechner/pi-ai": "^0.73.0",
"@mariozechner/pi-coding-agent": "^0.73.0",
"@mariozechner/pi-tui": "^0.73.0",
"chalk": "^5.6.2",
"cosmiconfig": "^9.0.1",
"yaml": "^2.8.3",
"zod": "^4.3.6"
}
}