-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.35 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
52
53
54
55
56
57
{
"name": "@zerrodevs/discord-bot-utils",
"version": "1.0.3",
"description": "A comprehensive utility package for Discord.js bots providing moderation, interaction, logging, and tax calculation features",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node examples/unified-bot.js",
"prepare": "npm run build",
"build": "echo \"No build required\""
},
"keywords": [
"discord.js",
"discord-bot",
"utilities",
"bot-tools",
"discord-utilities",
"pagination",
"embeds",
"buttons",
"cooldown",
"moderation",
"tax-calculator",
"logging"
],
"author": "ZerroDevs",
"license": "MIT",
"dependencies": {
"discord.js": "^14.11.0",
"@discordjs/rest": "^1.7.1",
"discord-api-types": "^0.37.42"
},
"devDependencies": {
"dotenv": "^16.0.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ZerroDevs/discord-bot-utils.git"
},
"bugs": {
"url": "https://github.com/ZerroDevs/discord-bot-utils/issues"
},
"homepage": "https://zerrodevs.github.io/discord-bot-utils/",
"documentation": "https://zerrodevs.github.io/discord-bot-utils/",
"engines": {
"node": ">=16.9.0"
},
"files": [
"src/",
"README.md",
"LICENSE",
"Docs/"
],
"publishConfig": {
"access": "public"
}
}