-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.31 KB
/
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
43
44
45
46
47
48
49
50
51
{
"name": "imap-to-discord",
"version": "1.0.0",
"description": "Receives e-mails and forwards them to a discord webhook",
"main": "src/index.ts",
"scripts": {
"start": "cross-env NODE_ENV=development ts-node ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/PatrickSachs/imap-to-discord.git"
},
"keywords": [
"imap",
"discord",
"mail",
"webhook",
"forward"
],
"author": "Sahnee.dev",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/PatrickSachs/imap-to-discord/issues"
},
"homepage": "https://github.com/PatrickSachs/imap-to-discord#readme",
"dependencies": {
"@azure/identity": "^2.0.4",
"@microsoft/microsoft-graph-client": "^3.0.2",
"chalk": "^4.1.2",
"comment-json": "^4.2.2",
"deepmerge": "^4.2.2",
"discord-webhook-node": "^1.1.8",
"fs-extra": "^10.1.0",
"glob": "^7.2.0",
"imap": "^0.8.19",
"imapflow": "^1.0.88",
"isomorphic-fetch": "^3.0.0",
"ts-node": "^10.7.0",
"turndown": "^7.1.1"
},
"devDependencies": {
"@microsoft/microsoft-graph-types": "^2.19.0",
"@types/fs-extra": "^9.0.13",
"@types/glob": "^7.2.0",
"@types/imapflow": "^1.0.9",
"@types/node": "^17.0.25",
"@types/turndown": "^5.0.1",
"cross-env": "^7.0.3",
"typescript": "^4.6.3"
}
}