-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.33 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 3.33 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
93
{
"name": "neomail",
"version": "1.0.3-beta.8",
"description": "Self-hosted AI email client with Flutter frontend, CommonJS Node backend, secure API access, and MCP hosting",
"license": "AGPL-3.0-only",
"main": "server/index.js",
"engines": {
"node": ">=20.0.0"
},
"bin": {
"neomail": "bin/neomail.js"
},
"files": [
"bin",
"lib",
"runtime",
"server",
"flutter_app",
"docs",
"landing",
"LICENSE",
"README.md",
".env.example"
],
"scripts": {
"postinstall": "node scripts/postinstall.js",
"start": "node server/index.js",
"dev": "node --watch server/index.js",
"docs:dev": "docusaurus start",
"docs:build": "docusaurus build",
"docs:preview": "docusaurus serve --dir build",
"flutter:run:web": "cd flutter_app && flutter run -d chrome --dart-define=NEOMAIL_WEB_BUILD_ID=$(node ../scripts/web_build_id.js)",
"flutter:build:web": "cd flutter_app && flutter build web --output ../server/public --dart-define=NEOMAIL_BACKEND_URL=${NEOMAIL_BACKEND_URL:-} --dart-define=NEOMAIL_WEB_BUILD_ID=$(node ../scripts/web_build_id.js)",
"manage": "node bin/neomail.js",
"test": "npm run test:backend",
"test:unit": "node --test --test-force-exit --test-reporter=spec test/backend/unit/*.test.js",
"test:integration": "node --test --test-force-exit --test-reporter=spec test/integration/*.test.js",
"test:security": "node --test --test-force-exit --test-reporter=spec test/security/*.test.js",
"test:contract": "node --test --test-force-exit --test-reporter=spec test/contract/*.test.js",
"test:ws": "node --test --test-force-exit --test-reporter=spec test/websocket/*.test.js",
"test:backend": "npm run test:unit && npm run test:integration && npm run test:security && npm run test:contract && npm run test:ws",
"flutter:test": "cd flutter_app && flutter test ../test/flutter/unit ../test/flutter/widget",
"flutter:test:unit": "cd flutter_app && flutter test ../test/flutter/unit",
"flutter:test:widget": "cd flutter_app && flutter test ../test/flutter/widget",
"audit:ci": "npm audit --omit=dev --audit-level=high"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NeoLabs-Systems/NeoMail.git"
},
"bugs": {
"url": "https://github.com/NeoLabs-Systems/NeoMail/issues"
},
"homepage": "https://github.com/NeoLabs-Systems/NeoMail#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"bcrypt": "^6.0.0",
"better-sqlite3": "^11.8.1",
"better-sqlite3-session-store": "^0.1.0",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-rate-limit": "^7.5.0",
"express-session": "^1.18.1",
"helmet": "^8.0.0",
"imapflow": "^1.0.181",
"mailparser": "^3.7.2",
"nodemailer": "^8.0.5",
"openai": "^4.85.4",
"otplib": "^13.4.0",
"qrcode": "^1.5.4",
"socket.io": "^4.8.1",
"uuid": "^11.1.0",
"web-push": "^3.6.7",
"zod": "^3.25.76"
},
"overrides": {
"axios": "^1.15.2",
"follow-redirects": "^1.16.0",
"protobufjs": "^7.5.5",
"serialize-javascript": "^7.0.5",
"undici": "^6.24.0",
"ws": "^8.21.0"
},
"devDependencies": {
"@docusaurus/core": "3.10.1",
"@docusaurus/preset-classic": "3.10.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"socket.io-client": "^4.8.3",
"supertest": "^7.2.2"
}
}