- 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>
32 lines
563 B
JSON
32 lines
563 B
JSON
{
|
|
"name": "@zclaw/ui",
|
|
"version": "0.1.0",
|
|
"description": "UI extension RPC methods for ZCLAW Tauri desktop app",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"prepublishOnly": "npm run build"
|
|
},
|
|
"keywords": [
|
|
"openclaw",
|
|
"plugin",
|
|
"zclaw",
|
|
"ui",
|
|
"rpc",
|
|
"desktop"
|
|
],
|
|
"author": "ZCLAW Team",
|
|
"license": "MIT",
|
|
"openclaw": {
|
|
"type": "rpc",
|
|
"entry": "index.ts",
|
|
"extensions": ["./index.ts"]
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"index.ts",
|
|
"plugin.json"
|
|
]
|
|
}
|