-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.53 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.53 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@agentmail/agentmail",
"version": "0.2.1",
"description": "AgentMail for OpenClaw: Official email plugin and email channel for OpenClaw. Your agent gets its own inbox.",
"type": "module",
"private": false,
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/agentmail-to/openclaw-plugin.git"
},
"homepage": "https://github.com/agentmail-to/openclaw-plugin#readme",
"keywords": [
"agentmail",
"openclaw",
"email",
"ai-agent",
"channel"
],
"engines": {
"node": ">=22.22.3 <23 || >=24.15.0 <25 || >=25.9.0"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"cli:prepare": "node scripts/prepare-agentmail-cli.mjs",
"plugin:build": "npm run build && npm run cli:prepare && node scripts/build-manifest.mjs",
"plugin:check": "npm run build && node scripts/build-manifest.mjs --check",
"plugin:validate": "npm run build && npm run cli:prepare -- --all && node scripts/build-manifest.mjs --check && node scripts/validate-plugin.mjs",
"prepack": "npm run plugin:validate",
"test": "vitest run --config ./vitest.config.ts"
},
"files": [
"dist",
"skills",
"vendor",
"openclaw.plugin.json",
"README.md",
"THIRD_PARTY_NOTICES.md"
],
"peerDependencies": {
"openclaw": ">=2026.8.1-beta.2"
},
"dependencies": {
"agentmail": "^0.5.16",
"svix": "^1.96.1",
"zod": "4.4.3"
},
"devDependencies": {
"fflate": "^0.8.3",
"openclaw": "2026.8.1-beta.2",
"typescript": "^5.9.0",
"vitest": "^3.2.0"
},
"openclaw": {
"extensions": [
"./dist/index.js"
],
"channel": {
"id": "agentmail",
"label": "AgentMail",
"selectionLabel": "AgentMail (Email)",
"detailLabel": "AgentMail Email",
"docsPath": "/channels/agentmail",
"docsLabel": "agentmail",
"blurb": "Durable, allowlisted, reply-only email conversations through AgentMail.",
"order": 89,
"quickstartAllowFrom": true,
"configuredState": {
"env": {
"anyOf": [
"AGENTMAIL_API_KEY",
"AGENTMAIL_WEBHOOK_SECRET"
]
}
}
},
"compat": {
"pluginApi": ">=2026.8.1-beta.2",
"minGatewayVersion": "2026.8.1-beta.2"
},
"build": {
"openclawVersion": "2026.8.1-beta.2",
"pluginSdkVersion": "2026.8.1-beta.2"
},
"install": {
"npmSpec": "@agentmail/agentmail",
"defaultChoice": "npm",
"minHostVersion": ">=2026.8.1-beta.2",
"allowInvalidConfigRecovery": true
}
}
}