-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.27 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
{
"name": "hakimi",
"version": "0.3.0",
"description": "Chat with AI assistant via Telegram/Slack/Feishu to remotely control your computer",
"type": "module",
"main": "dist/index.js",
"bin": {
"hakimi": "dist/index.js"
},
"files": [
"dist",
"prompts",
"patches"
],
"keywords": [
"ai",
"agent",
"telegram",
"slack",
"feishu",
"lark",
"chatbot",
"cli",
"tui"
],
"author": "stdrc",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/stdrc/hakimi"
},
"scripts": {
"postinstall": "patch-package",
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.tsx"
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"@koishijs/plugin-adapter-lark": "^3.12.4",
"@koishijs/plugin-adapter-slack": "^2.4.2",
"@koishijs/plugin-adapter-telegram": "^4.5.11",
"@moonshot-ai/kimi-agent-sdk": "^0.0.6",
"ink": "^6.6.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"koishi": "^4.18.10",
"meow": "^14.0.0",
"react": "^19.2.4",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/node": "^25.2.0",
"@types/react": "^19.2.11",
"patch-package": "^8.0.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}