- Add package.json with openclaw.extensions field for all three plugins - Add openclaw.plugin.json manifest files - Plugins: zclaw-chinese-models, zclaw-feishu, zclaw-ui Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
36 lines
619 B
JSON
36 lines
619 B
JSON
{
|
|
"name": "@zclaw/feishu",
|
|
"version": "0.1.0",
|
|
"description": "Feishu (Lark) channel plugin for ZCLAW",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"prepublishOnly": "npm run build"
|
|
},
|
|
"keywords": [
|
|
"openclaw",
|
|
"plugin",
|
|
"zclaw",
|
|
"feishu",
|
|
"lark",
|
|
"channel",
|
|
"im"
|
|
],
|
|
"author": "ZCLAW Team",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"axios": "^1.6.0"
|
|
},
|
|
"openclaw": {
|
|
"type": "channel",
|
|
"entry": "index.ts",
|
|
"extensions": ["./index.ts"]
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"index.ts",
|
|
"plugin.json"
|
|
]
|
|
}
|