-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
40 lines (40 loc) · 1.07 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
{
"name": "triviabot",
"version": "2.0.0-pre.4",
"description": "A Discord bot that runs trivia games. Features three modes of play and 24 categories through OpenTDB, as well as support for custom question sets.",
"main": "index.js",
"isGitBuild": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js",
"lint": "eslint ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LakeYS/Discord-Trivia-Bot.git"
},
"author": "Lake Y",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/LakeYS/Discord-Trivia-Bot/issues",
"email": "[email protected]"
},
"homepage": "http://lakeys.net/triviabot",
"dependencies": {
"@discordjs/rest": "^2.0.1",
"discord.js": "^14.15.3",
"html-entities": "^1.4.0",
"https": "^1.0.0",
"js-yaml": "^3.14.1",
"node-fetch": "^2.6.1",
"semver-compare": "^1.0.0"
},
"devDependencies": {
"eslint": "^8.18.0",
"eslint-plugin-jsdoc": "^39.3.3",
"jsdoc": "^4.0.0"
},
"engines": {
"node": ">=16.9.0"
}
}