-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.1 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
{
"name": "discord-is-sponsor",
"version": "1.0.0",
"description": "🙌 Check if a Discord user is sponsoring you on GitHub and give them a role!",
"main": "dist/index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development ts-node-dev ./src/index",
"build": "cross-env NODE_ENV=production tsup ./src/**"
},
"keywords": [
"discord",
"bot",
"typescript",
"fastify",
"github",
"sponsors"
],
"author": {
"name": "Abdulbaki 'EGGSY' Dursun",
"email": "[email protected]",
"url": "https://eggsy.xyz"
},
"repository": {
"type": "git",
"url": "https://github.com/eggsy/discord-is-sponsor"
},
"readme": "https://github.com/eggsy/discord-is-sponsor#readme",
"license": "MIT",
"dependencies": {
"@discordjs/rest": "^0.3.0",
"axios": "^0.25.0",
"consola": "^2.15.3",
"discord.js": "^13.6.0",
"fastify": "^3.27.0"
},
"devDependencies": {
"@types/node": "^17.0.14",
"cross-env": "^7.0.3",
"dotenv": "^15.0.0",
"nodemon": "^2.0.15",
"ts-node-dev": "^1.1.8",
"tsup": "^5.11.13",
"typescript": "^4.5.5"
}
}