-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
43 lines (43 loc) · 1.43 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
{
"name": "reactionrolebot",
"version": "3.1.0",
"private": true,
"description": "I'm a basic, no BS Discord bot that can assign and unassign roles using message reactions. I am completely free and open source, and always will be.",
"main": "src/main.ts",
"engines": {
"node": ">=16.11.0"
},
"dependencies": {
"@mimickal/discord-logging": "github:Mimickal/discord-logging#v1.3.0",
"@types/lodash": "^4.14.199",
"@types/minimist": "^1.2.3",
"@types/multimap": "^1.1.2",
"async-mutex": "^0.3.2",
"discord-command-registry": "^3.1.1",
"discord.js": "^14.9.0",
"knex": "^2.5.1",
"lodash": "^4.17.20",
"minimist": "^1.2.6",
"multimap": "^1.1.0",
"node-cache": "^5.1.2",
"sqlite3": "^4.2.0",
"ts-node": "^10.9.1"
},
"scripts": {
"start": "NODE_ENV=prod npx ts-node src/main.ts",
"dev": "npx ts-node --logError src/main.ts dev-config.json",
"knex": "npx knex --knexfile src/knexfile.js",
"register": "npx ts-node node_modules/discord-command-registry/src/register.ts src/commands.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Mimickal/ReactionRoleBot.git"
},
"author": "Mia Moretti <[email protected]>",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/Mimickal/ReactionRoleBot/issues"
},
"homepage": "https://github.com/Mimickal/ReactionRoleBot"
}