2026-03-14 15:54:30 +08:00
|
|
|
{
|
2026-03-14 21:47:20 +08:00
|
|
|
"name": "openclaw-zhidui-channel",
|
2026-03-14 15:54:30 +08:00
|
|
|
"version": "1.0.0",
|
2026-03-14 21:47:20 +08:00
|
|
|
"description": "智队频道插件 for OpenClaw - 连接智队中枢实现多 Agent 协作",
|
2026-03-14 15:54:30 +08:00
|
|
|
"main": "dist/index.js",
|
|
|
|
|
"types": "dist/index.d.ts",
|
|
|
|
|
"type": "module",
|
|
|
|
|
"scripts": {
|
|
|
|
|
"build": "tsc",
|
|
|
|
|
"dev": "tsc --watch",
|
|
|
|
|
"test": "vitest",
|
|
|
|
|
"test:coverage": "vitest --coverage",
|
|
|
|
|
"lint": "eslint src --ext .ts",
|
|
|
|
|
"typecheck": "tsc --noEmit",
|
|
|
|
|
"prepublishOnly": "npm run build"
|
|
|
|
|
},
|
|
|
|
|
"keywords": [
|
|
|
|
|
"openclaw",
|
2026-03-14 21:47:20 +08:00
|
|
|
"zhidui-channel",
|
|
|
|
|
"zhidui",
|
|
|
|
|
"智队中枢",
|
2026-03-14 15:54:30 +08:00
|
|
|
"channel-plugin",
|
|
|
|
|
"multi-agent",
|
|
|
|
|
"websocket"
|
|
|
|
|
],
|
|
|
|
|
"author": "小白 🐶",
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
2026-03-14 21:47:20 +08:00
|
|
|
"url": "https://github.com/your-org/openclaw-zhidui-channel.git"
|
2026-03-14 15:54:30 +08:00
|
|
|
},
|
|
|
|
|
"bugs": {
|
2026-03-14 21:47:20 +08:00
|
|
|
"url": "https://github.com/your-org/openclaw-zhidui-channel/issues"
|
2026-03-14 15:54:30 +08:00
|
|
|
},
|
2026-03-14 21:47:20 +08:00
|
|
|
"homepage": "https://github.com/your-org/openclaw-zhidui-channel#readme",
|
2026-03-14 15:54:30 +08:00
|
|
|
"dependencies": {
|
|
|
|
|
"openclaw": "~2026.3.0",
|
|
|
|
|
"ws": "^8.18.0",
|
|
|
|
|
"uuid": "^11.0.0"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@types/node": "^22.0.0",
|
|
|
|
|
"@types/ws": "^8.5.0",
|
|
|
|
|
"@types/uuid": "^10.0.0",
|
|
|
|
|
"typescript": "^5.7.0",
|
|
|
|
|
"vitest": "^3.0.0",
|
|
|
|
|
"@vitest/coverage-v8": "^3.0.0",
|
|
|
|
|
"eslint": "^9.0.0",
|
|
|
|
|
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
|
|
|
|
"@typescript-eslint/parser": "^8.0.0"
|
|
|
|
|
},
|
|
|
|
|
"engines": {
|
|
|
|
|
"node": ">=20.0.0"
|
|
|
|
|
},
|
2026-03-15 13:14:16 +08:00
|
|
|
"publishConfig": {
|
|
|
|
|
"access": "public",
|
|
|
|
|
"registry": "https://registry.npmjs.org/"
|
|
|
|
|
},
|
2026-03-14 15:54:30 +08:00
|
|
|
"openclaw": {
|
2026-03-14 21:47:20 +08:00
|
|
|
"pluginId": "zhidui-channel",
|
|
|
|
|
"minOpenClawVersion": "2026.3.0",
|
|
|
|
|
"extensions": ["./dist/index.js"]
|
2026-03-14 15:54:30 +08:00
|
|
|
},
|
|
|
|
|
"files": [
|
|
|
|
|
"dist/**/*",
|
|
|
|
|
"README.md",
|
|
|
|
|
"CHANGELOG.md",
|
|
|
|
|
"LICENSE"
|
|
|
|
|
]
|
|
|
|
|
}
|