-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.58 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
{
"name": "@openclaw/email",
"version": "1.0.0",
"description": "OpenClaw email plugin with IMAP/SMTP and RAG knowledge base using FAISS vector search",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/openclaw/openclaw-plugin-email"
},
"homepage": "https://github.com/openclaw/openclaw-plugin-email#readme",
"bugs": {
"url": "https://github.com/openclaw/openclaw-plugin-email/issues"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"download-model": "bash scripts/download-model.sh"
},
"keywords": [
"openclaw",
"plugin",
"email",
"imap",
"smtp",
"rag",
"faiss",
"embedding",
"semantic-search"
],
"author": "OpenClaw Team",
"license": "MIT",
"peerDependencies": {
"openclaw": ">=2026.3.1"
},
"dependencies": {
"faiss-node": "^0.5.1",
"imap": "^0.8.19",
"imapflow": "^1.0.152",
"mailparser": "^3.9.3",
"nodemailer": "^6.9.10",
"tokenizers": "^0.13.3",
"tokenizers-linux-x64-gnu": "^0.13.4-rc1",
"zod": "^3.22.4"
},
"optionalDependencies": {
"onnxruntime-node": "^1.24.3"
},
"devDependencies": {
"@types/node": "^20.19.37",
"@types/nodemailer": "^6.4.14",
"typescript": "^5.3.3"
},
"openclaw": {
"extensions": [
"./dist/index.js"
],
"plugin": {
"id": "email",
"label": "Email",
"description": "Email plugin with IMAP/SMTP and RAG knowledge base",
"docsPath": "/plugins/email",
"systemImage": "envelope"
}
}
}