-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 978 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
{
"name": "discord-captcha-bot",
"version": "1.2.0",
"description": "A simple Discord bot made in discord.js typescript",
"main": "dist/bot.js",
"type": "module",
"scripts": {
"start": "node dist/bot.js",
"build": "npx tsc",
"dev": "npx tsc && node dist/bot.js",
"watch": "npx tsc -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SapphireDevs/discord-captcha-bot.git"
},
"keywords": [
"discord",
"discordjs",
"typescript",
"captcha",
"verification"
],
"author": "Ducko#7068",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/SapphireDevs/discord-captcha-bot/issues"
},
"homepage": "https://github.com/SapphireDevs/discord-captcha-bot#readme",
"devDependencies": {
"prisma": "^4.14.1",
"typescript": "^5.0.4"
},
"dependencies": {
"@prisma/client": "^4.14.1",
"captcha-canvas": "^3.2.1",
"discord.js": "^14.11.0",
"dotenv": "^16.0.3"
}
}