@tubalchat/openclaw-channel 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,7 @@
1
+ {
2
+ "name": "tubal",
3
+ "version": "0.1.0",
4
+ "type": "channel",
5
+ "entry": "./dist/index.js",
6
+ "description": "E2E encrypted messaging channel via Tubal protocol"
7
+ }
package/package.json ADDED
@@ -0,0 +1,32 @@
1
+ {
2
+ "name": "@tubalchat/openclaw-channel",
3
+ "version": "0.1.0",
4
+ "description": "OpenClaw channel plugin — E2E encrypted AI agent messaging via Tubal",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "module": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "import": "./dist/index.js",
12
+ "types": "./dist/index.d.ts"
13
+ }
14
+ },
15
+ "files": ["dist", "openclaw.plugin.json"],
16
+ "scripts": {
17
+ "build": "tsup",
18
+ "dev": "tsup --watch"
19
+ },
20
+ "keywords": ["tubal", "openclaw", "channel", "e2e", "encrypted", "agent"],
21
+ "license": "MIT",
22
+ "engines": {
23
+ "node": ">=20.0.0"
24
+ },
25
+ "peerDependencies": {
26
+ "@tubalchat/agent-sdk": ">=0.1.0"
27
+ },
28
+ "devDependencies": {
29
+ "tsup": "^8.0.0",
30
+ "typescript": "^5.4.0"
31
+ }
32
+ }