-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 930 Bytes
/
package.json
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
{
"name": "smtp-graph-relay",
"author": "Bitcircuit",
"license": "ISC",
"version": "1.0.0",
"description": "SMTP to Graph API relay server",
"main": "dist/server.js",
"bin": "dist/server.js",
"scripts": {
"start": "ts-node src/server.ts",
"build": "tsc",
"package": "npm run build && pkg . --output SMTP-Relay.exe"
},
"pkg": {
"assets": [
"node_modules/**/*"
],
"targets": [
"latest-win-x64"
]
},
"keywords": [
"smtp",
"relay",
"graph-api"
],
"dependencies": {
"@azure/identity": "^3.1.3",
"@microsoft/microsoft-graph-client": "^3.0.5",
"dotenv": "^16.0.3",
"ip-range-check": "^0.2.0",
"mailparser": "^3.6.4",
"smtp-server": "^3.11.0"
},
"devDependencies": {
"@types/mailparser": "^3.4.0",
"@types/node": "^18.15.11",
"@types/smtp-server": "^3.5.10",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}