forked from zarazhangrui/lark-coding-agent-bridge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.24 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
{
"name": "lark-channel-bridge",
"version": "0.1.32",
"description": "Bridge Feishu/Lark messenger with local CLI coding agents (Claude Code, ...)",
"type": "module",
"bin": {
"lark-channel-bridge": "./bin/lark-channel-bridge.mjs"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"bin",
"README.md",
"README.zh.md",
"LICENSE"
],
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"prepublishOnly": "pnpm typecheck && pnpm build"
},
"dependencies": {
"@clack/prompts": "^1.4.0",
"@larksuiteoapi/node-sdk": "^1.65.0",
"commander": "^12.1.0",
"https-proxy-agent": "^9.0.0",
"qrcode-terminal": "^0.12.0"
},
"devDependencies": {
"@types/node": "^22.10.0",
"@types/qrcode-terminal": "^0.12.2",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=20.0.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"protobufjs"
]
},
"keywords": [
"feishu",
"lark",
"claude",
"claude-code",
"cli",
"channel",
"bridge"
],
"license": "MIT"
}