This repository was archived by the owner on Apr 17, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.13 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.13 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
67
68
69
70
71
72
73
74
75
{
"name": "welcome-bot",
"version": "2.0.4-dev",
"changelog": [
"**Bug fixes**",
"fix(execute): Array#includes not Array#has",
"refactor(play): support YT again"
],
"description": "A multi-purpose discord bot that helps you monitor (welcome and goodbye logs), moderate (kick or ban users who spam your server), etc...",
"main": "src/shard.js",
"scripts": {
"start": "node src/shard.js",
"dev": "npx nodemon src/bot.js --watch src",
"lint": "eslint src",
"format:check": "prettier --check .",
"format": "prettier --write .",
"mkcmd": "cp -r src/commandTemplate.js src/commands/$npm_config_cat/$npm_config_command.js",
"test": "npx mocha src/test --recursive --exit --timeout 10000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Welcome-bot/welcome-bot.git"
},
"keywords": [
"discord",
"js",
"node",
"discord-js"
],
"author": "Welcome-bot",
"license": "LGPL-2.1-only",
"bugs": {
"url": "https://github.com/Welcome-bot/welcome-bot/issues"
},
"homepage": "https://welcome-bot.github.io/",
"dependencies": {
"@discordjs/builders": "^0.8.1",
"@top-gg/sdk": "^3.1.2",
"ascii-table": "^0.0.9",
"axios": "^0.23.0",
"btoa": "^1.2.1",
"bufferutil": "^4.0.3",
"canvas": "^2.8.0",
"colors-logger": "^0.4.0",
"cron": "^1.8.2",
"csurf": "^1.11.0",
"discord-backup": "^3.0.1",
"discord-player": "^5.0.0",
"discord.js": "^13.2.0-dev.1630281876.29d5fd1",
"djs-pagination-buttons": "^0.2.0",
"dotenv": "^10.0.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"express-session": "^1.17.2",
"ffmpeg": "^0.0.4",
"ffmpeg-static": "^4.4.0",
"figlet": "^1.5.0",
"i18next": "^20.0.0",
"i18next-node-fs-backend": "^2.1.3",
"moment": "^2.29.1",
"moment-duration-format": "^2.3.2",
"mongoose": "^6.0.2",
"ms": "^2.1.2",
"node-fetch": "^2.6.1",
"opusscript": "^0.0.8"
},
"devDependencies": {
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^9.0.2",
"nodemon": "^2.0.12",
"prettier": "^2.3.2"
}
}