forked from jakethedev/tavernbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.33 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
{
"name": "tavernbot",
"version": "0.2.3",
"releasenotes": "!serverstats is new, !help is much more readable, and every command with input has a help output (Help system complete)",
"description": "A Dungeons and Dragons GM bot for discord, written in Node. This bot supports common tabletop RPG functionality, common Discord operations, and more",
"main": "bot.js",
"scripts": {
"start": "node bot.js",
"devbot": "nodemon bot.js",
"test": "node test.js > /dev/null",
"verbosetest": "node test.js",
"build": "echo Placeholder text for smushing libs into an rpgapp.js for web page usage"
},
"repository": {
"type": "git",
"url": "https://github.com/jakethedev/tavernbot"
},
"keywords": [
"tabletop",
"dnd",
"rpg",
"dice",
"roller",
"character",
"npc",
"generator",
"discord",
"bot"
],
"author": "jakethedev",
"license": "MIT",
"bugs": {
"url": "https://github.com/jakethedev/tavernbot/issues"
},
"homepage": "https://github.com/jakethedev/tavernbot#readme",
"dependencies": {
"discord.js": "^11.3.2",
"dungeonary": "latest",
"erlpack": "discordapp/erlpack",
"node-opus": "^0.2.7",
"libsodium-wrappers": "^0.7.3",
"uws": "^9.14.0"
},
"engines": {
"node": ">=8.0.0"
},
"devDependencies": {
"nodemon": "^1.17.2"
}
}