-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.07 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.07 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
{
"name": "opencode-feishu-bridge",
"version": "1.0.0",
"description": "Bidirectional communication bridge between OpenCode and Feishu/Lark",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"watch": "tsc -w",
"preflight": "bash scripts/preflight.sh",
"deploy:service": "bash scripts/install-systemd-user.sh",
"lint": "eslint src --ext .ts",
"test": "vitest"
},
"keywords": [
"opencode",
"feishu",
"lark",
"bot",
"bridge"
],
"author": "",
"license": "MIT",
"dependencies": {
"@larksuiteoapi/node-sdk": "^1.58.0",
"axios": "^1.6.0",
"express": "^4.18.2",
"lru-cache": "^10.1.0",
"pino": "^8.17.0",
"pino-pretty": "^10.3.0",
"ws": "^8.19.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.10.0",
"@types/ws": "^8.5.10",
"eslint": "^8.55.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^1.1.0"
},
"engines": {
"node": ">=18.0.0"
}
}