-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
37 lines (37 loc) · 911 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
{
"name": "gmail-push-to-discord",
"version": "1.0.0",
"description": "Get real-time Gmail push notifications to your Discord channel!",
"keywords": [
"gmail",
"discord",
"bot",
"api",
"webhook"
],
"homepage": "https://github.com/jzvi12/gmail-push-to-discord",
"repository": {
"type": "git",
"url": "https://github.com/jzvi12/gmail-push-to-discord.git"
},
"main": "index.js",
"scripts": {
"start": "node ./index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"bugs": "https://github.com/jzvi12/gmail-push-to-discord/issues",
"author": "jzvi12",
"license": "MIT",
"dependencies": {
"@google-cloud/pubsub": "^3.2.1",
"discord.js": "^14.6.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"gmailpush": "^1.0.5",
"googleapis": "^61.0.0",
"node-schedule": "^2.1.0"
},
"engines": {
"node": ">=10"
}
}