-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 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
{
"name": "role-assign-bot",
"version": "1.0.0",
"description": "I wanted practice with node and with making discord bots and so when I wanted a simple bot I could use on a server to let people assign their own roles I made this. There are tons of other bots that can do as much, but often they are real swiss army knife tools with too many features and too much complexity. This bot has a simple interface—there are two pairs of commands. One for users and one for admins.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/charliemirabile/role-assign-bot.git"
},
"author": "",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/charliemirabile/role-assign-bot/issues"
},
"homepage": "https://github.com/charliemirabile/role-assign-bot#readme",
"dependencies": {
"@replit/database": "^2.0.1",
"discord.js": "^13.9.0",
"dotenv": "^16.0.3"
},
"devDependencies": {
"node": "^16.17.1"
},
"keywords": []
}