forked from dossyb/BustinBot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.01 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.01 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "bustinbot",
"version": "2.1.0",
"type": "module",
"description": "**BustinBot** is a general-purpose Discord bot designed to enhance community engagement through a modular approach. The bot features submodules for specific functionalities, making it easy to expand and customize for various needs. Currently, the bot includes a **Movie Night Manager** and **Weekly Task Manager** to help organize and manage movie nights for your Discord server.",
"main": "index.js",
"dependencies": {
"cron-parser": "^5.4.0",
"csv-parse": "^6.1.0",
"discord-api-types": "^0.37.119",
"discord.js": "^14.22.1",
"dotenv": "^16.6.1",
"fast-deep-equal": "^3.1.3",
"firebase-admin": "^13.5.0",
"fuse.js": "^7.1.0",
"lodash": "^4.17.21",
"lodash.snakecase": "^4.1.1",
"luxon": "^3.7.2",
"magic-bytes.js": "^1.10.0",
"moment": "^2.30.1",
"moment-timezone": "^0.5.47",
"node-cron": "^4.2.1",
"node-fetch": "^3.3.2",
"ts-mixer": "^6.0.4",
"tslib": "^2.7.0",
"typescript": "^5.9.2",
"undici": "^6.21.1",
"undici-types": "^6.19.8",
"winston": "^3.17.0",
"ws": "^8.18.1"
},
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"dev": "tsx src/index.ts",
"build": "tsc -p tsconfig.prod.json",
"start": "node dist/index.js",
"changelog": "conventional-changelog -p conventionalcommits -i CHANGELOG.md -s"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dossyb/BustinBot.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dossyb/BustinBot/issues"
},
"homepage": "https://github.com/dossyb/BustinBot#readme",
"devDependencies": {
"@types/luxon": "^3.7.1",
"@types/node-cron": "^3.0.11",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"conventional-changelog-cli": "^5.0.0",
"ts-node": "^10.9.2",
"tsx": "^4.20.5",
"vitest": "^3.2.4"
},
"overrides": {
"discord.js": {
"undici": "6.24.1"
}
}
}