-
-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.23 KB
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
{
"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,
"type": "module",
"scripts": {
"build:win": "./script/package_win.sh",
"build:linux": "./script/package_linux.sh",
"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://discord.gg/s3vCQba",
"email": "contact@lakeys.net"
},
"homepage": "http://lakeys.net/triviabot",
"dependencies": {
"@discordjs/rest": "^2.0.1",
"discord.js": "^14.26.5",
"html-entities": "2.6.0",
"js-yaml": "^5.2.0",
"semver-compare": "^1.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.7",
"@eslint/js": "^10.0.1",
"eslint": "^10.10.0",
"eslint-plugin-import-x": "^4.17.1",
"eslint-plugin-jsdoc": "^64.3.6",
"globals": "^17.12.0",
"jsdoc": "^4.0.5"
},
"engines": {
"node": ">=22"
}
}