-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
47 lines (47 loc) · 1.13 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
{
"name": "tavernbot",
"version": "1.1.5",
"description": "A Dungeons and Dragons GM bot for discord, written in Node. This bot supports common tabletop RPG functionality as well as common Discord operations",
"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": {
"@discordjs/uws": "^10.149.0",
"discord.js": "^11.6.4",
"dungeonary": "latest",
"opusscript": "0.0.7"
},
"engines": {
"node": ">=10.0.0"
},
"devDependencies": {
"nodemon": "^2.0.5"
}
}