-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.05 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) · 3.05 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "moltbot-channel-feishu",
"version": "0.0.13",
"type": "module",
"description": "Legacy Feishu/Lark channel plugin for Moltbot/Clawdbot. Prefer OpenClaw official Feishu channel.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/samzong/moltbot-channel-feishu.git"
},
"keywords": [
"openclaw",
"clawdbot",
"moltbot",
"feishu",
"lark",
"plugin",
"channel"
],
"main": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": "./src/index.ts"
},
"files": [
"src",
"openclaw.plugin.json",
"moltbot.plugin.json",
"clawdbot.plugin.json"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write src/",
"format:check": "prettier --check src/",
"typecheck": "tsc --noEmit",
"test": "npm run build && vitest run",
"test:watch": "vitest",
"clean": "rm -rf dist",
"prerelease": "npm run lint && npm run build && npm run test && node --check dist/index.js && echo '✅ All checks passed'",
"dev:local": "tsx scripts/local-test.ts",
"user-auth": "tsx scripts/user-auth.ts",
"version": "node scripts/sync-version.js && git add openclaw.plugin.json moltbot.plugin.json clawdbot.plugin.json"
},
"openclaw": {
"extensions": [
"./src/index.ts"
],
"channel": {
"id": "feishu",
"label": "Feishu",
"selectionLabel": "Feishu",
"docsPath": "/channels/feishu",
"docsLabel": "feishu",
"blurb": "Feishu enterprise messaging.",
"aliases": [
"lark"
],
"order": 70
}
},
"clawdbot": {
"extensions": [
"./src/index.ts"
],
"channel": {
"id": "feishu",
"label": "Feishu",
"selectionLabel": "Feishu",
"docsPath": "/channels/feishu",
"docsLabel": "feishu",
"blurb": "Feishu enterprise messaging.",
"aliases": [
"lark"
],
"order": 70
}
},
"dependencies": {
"@larksuiteoapi/node-sdk": "^1.30.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitest/coverage-v8": "^2.1.9",
"openclaw": "^2026.2.1",
"dotenv": "^17.2.3",
"eslint": "^9.0.0",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.54.0",
"vite-tsconfig-paths": "^6.0.5",
"vitest": "^2.0.0"
},
"peerDependencies": {
"openclaw": ">=2026.2.1"
},
"engines": {
"node": ">=20.0.0"
}
}