- 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>
35 lines
635 B
JSON
35 lines
635 B
JSON
{
|
|
"name": "@zclaw/chinese-models",
|
|
"version": "0.1.0",
|
|
"description": "Chinese AI model providers for ZCLAW: Zhipu GLM, Qwen, Kimi, MiniMax",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"prepublishOnly": "npm run build"
|
|
},
|
|
"keywords": [
|
|
"openclaw",
|
|
"plugin",
|
|
"zclaw",
|
|
"chinese",
|
|
"ai",
|
|
"glm",
|
|
"qwen",
|
|
"kimi",
|
|
"minimax"
|
|
],
|
|
"author": "ZCLAW Team",
|
|
"license": "MIT",
|
|
"openclaw": {
|
|
"type": "provider",
|
|
"entry": "index.ts",
|
|
"extensions": ["./index.ts"]
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"index.ts",
|
|
"plugin.json"
|
|
]
|
|
}
|