-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.56 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
{
"name": "@rocketchat/openclaw-plugin",
"version": "1.0.0",
"description": "A fully unified plugin for integrating Rocket.Chat with OpenClaw. This plugin eliminates the need for an external bridging server, providing a direct, single-place architecture for inbounds, outbounds, session management, and CLI configuration.",
"main": "dist/index.js",
"openclaw": {
"extensions": [
"./src/index.ts"
]
},
"type": "module",
"scripts": {
"build": "pnpm run manifest && tsc",
"manifest": "tsx scripts/gen-manifest.mts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"start": "node dist/index.js",
"setup": "openclaw rocket-chat setup"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RocketChat/OpenClaw.Plugin.git"
},
"keywords": [
"openclaw",
"openclaw-plugin",
"rocketchat",
"channel",
"chat"
],
"author": "Rocket.Chat",
"license": "MIT",
"bugs": {
"url": "https://github.com/RocketChat/OpenClaw.Plugin/issues"
},
"homepage": "https://github.com/RocketChat/OpenClaw.Plugin#readme",
"devDependencies": {
"@types/node": "^25.9.1",
"@types/ws": "^8.18.1",
"openclaw": "^2026.7.1-2",
"prettier": "^3.9.6",
"tsx": "^4.22.4",
"typescript": "^6.0.3"
},
"dependencies": {
"@clack/prompts": "^1.7.0",
"@rocket.chat/ddp-client": "^1.1.1",
"commander": "^15.0.0",
"json5": "^2.2.3",
"picocolors": "^1.1.1",
"zod": "^4.4.3"
},
"packageManager": "pnpm@10.27.0+sha1.7220f3ec270b9e3b3b56cd149ad8d88bdf1b8823"
}