-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.01 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.01 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
{
"name": "larkcoder",
"version": "0.1.7",
"private": false,
"description": "Control ACP-compatible Coding Agents via Lark/Feishu IM messages",
"keywords": [
"acp",
"agent-client-protocol",
"ai-assistant",
"claude-code",
"codex",
"coding-agent",
"feishu",
"gemini",
"github-copilot",
"lark",
"opencode"
],
"homepage": "https://github.com/EM-GeekLab/larkcoder#readme",
"bugs": {
"url": "https://github.com/EM-GeekLab/larkcoder/issues"
},
"license": "MIT",
"author": "EM-GeekLab",
"repository": {
"type": "git",
"url": "https://github.com/EM-GeekLab/larkcoder.git"
},
"bin": {
"larkcoder": "./dist/larkcoder.js"
},
"files": [
"dist",
"drizzle"
],
"type": "module",
"scripts": {
"dev": "NODE_ENV=development bun src/index.ts",
"start": "bun bin/larkcoder.ts",
"build": "bun build bin/larkcoder.ts --outdir dist --target bun --packages=external --sourcemap=linked --define 'process.env.NODE_ENV=\"production\"'",
"prepublishOnly": "bun run build",
"check": "tsgo --noEmit",
"lint": "oxlint --type-aware",
"lint:fix": "oxlint --type-aware --fix",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"db:generate": "drizzle-kit generate",
"db:studio": "drizzle-kit studio",
"acp-cli": "bun tools/acp-cli.ts"
},
"dependencies": {
"@agentclientprotocol/sdk": "^0.13.1",
"@clack/prompts": "^1.0.0",
"@larksuiteoapi/node-sdk": "^1.58.0",
"@loglayer/transport-simple-pretty-terminal": "^2.3.1",
"@zed-industries/claude-code-acp": "^0.13.2",
"date-fns": "^4.1.0",
"drizzle-orm": "^0.45.1",
"loglayer": "^8.4.0",
"radashi": "^12.7.1",
"serialize-error": "^13.0.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/bun": "^1.2.0",
"@types/node": "^20.11.30",
"@typescript/native-preview": "^7.0.0-dev.20260204.1",
"drizzle-kit": "^0.31.8",
"oxfmt": "^0.27.0",
"oxlint": "^1.42.0",
"oxlint-tsgolint": "^0.11.4",
"typescript": "^5.7.3"
}
}