-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.46 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.46 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
55
56
57
58
59
60
61
{
"name": "deltachat",
"version": "1.1.0",
"description": "OpenClaw Delta Chat channel plugin",
"main": "./dist/openclaw/channel.js",
"exports": {
".": "./dist/lib/index.js",
"./plugin": "./dist/openclaw/plugin.js",
"./cli": "./dist/cli/index.js"
},
"files": [
"dist",
"openclaw.plugin.json",
"README.md",
"deltachat-config.json"
],
"bin": {
"deltachat-cli": "./dist/cli/index.js"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "rm -rf dist",
"prepare": "npm run build",
"test": "printf '%s\n' 'No automated tests configured in this workspace.'"
},
"keywords": ["openclaw", "delta-chat", "messaging"],
"author": "r2claw",
"type": "module",
"license": "MIT",
"dependencies": {
"@deltachat/jsonrpc-client": "^1.0.0"
},
"devDependencies": {
"@types/node": "^25.5.0",
"typescript": "^4.9.5"
},
"openclaw": {
"extensions": [
"./dist/openclaw/channel.js"
],
"channel": {
"id": "deltachat",
"label": "Delta Chat",
"selectionLabel": "Delta Chat (Email)",
"detailLabel": "Delta Chat",
"docsPath": "/channels/deltachat",
"docsLabel": "deltachat",
"blurb": "Email-based E2E encrypted messaging.",
"aliases": ["dc"],
"order": 95
},
"install": {
"npmSpec": "@openclaw/deltachat",
"localPath": "extensions/deltachat",
"defaultChoice": "local"
}
},
"engines": {
"node": ">=18.0.0"
}
}