-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.6 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
{
"name": "@modelzen/feishu-codex-bridge",
"version": "0.6.10",
"description": "Bridge Feishu/Lark messenger with local Codex via app-server (project=group, thread=session)",
"type": "module",
"bin": {
"feishu-codex-bridge": "bin/feishu-codex-bridge.mjs"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"bin",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"start": "node bin/feishu-codex-bridge.mjs run",
"prepare": "npm run build",
"release": "bash scripts/release.sh"
},
"dependencies": {
"@larksuiteoapi/node-sdk": "^1.65.0",
"commander": "^12.1.0",
"cross-spawn": "^7.0.6",
"qrcode-terminal": "^0.12.0"
},
"devDependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.3.178",
"@types/cross-spawn": "^6.0.6",
"@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"
},
"keywords": [
"feishu",
"lark",
"codex",
"app-server",
"cli",
"bridge",
"bot"
],
"author": "modelzen",
"license": "MIT",
"homepage": "https://github.com/modelzen/feishu-codex-bridge#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/modelzen/feishu-codex-bridge.git"
},
"bugs": {
"url": "https://github.com/modelzen/feishu-codex-bridge/issues"
},
"publishConfig": {
"access": "public"
}
}