-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1010 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1010 Bytes
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
{
"name": "@massalabs/openclaw-gossip-plugin",
"version": "0.0.1",
"description": "OpenClaw Gossip channel plugin for post-quantum encrypted decentralized messaging",
"type": "module",
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "vitest run"
},
"dependencies": {
"@massalabs/gossip-sdk": "0.0.2-dev.20260226131013",
"zod": "^4.3.6"
},
"devDependencies": {
"openclaw": ">=2026.3.1",
"@types/node": "^22.10.5",
"typescript": "^5.7.3",
"vitest": "^4.0.18"
},
"openclaw": {
"extensions": [
"./index.ts"
],
"channel": {
"id": "gossip",
"label": "Gossip",
"selectionLabel": "Gossip Chat",
"docsPath": "/channels/gossip",
"docsLabel": "gossip",
"blurb": "Privacy-focused decentralized messenger with post-quantum encryption.",
"order": 56,
"quickstartAllowFrom": true
},
"install": {
"npmSpec": "@massalabs/openclaw-gossip-plugin",
"defaultChoice": "npm"
}
}
}