-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.41 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.41 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
{
"name": "discordbot",
"version": "4.2.1",
"description": "A simple discord bot of mine developed with discord.js (Node.js).",
"type": "module",
"main": "index.js",
"keywords": [
"discord",
"discordjs",
"discordbot",
"bot",
"economy",
"gambling",
"moderation",
"administration",
"utility",
"sql",
"mariadb"
],
"author": {
"name": "vb2007",
"email": "admin@vb2007.hu",
"url": "https://vb2007.hu"
},
"repository": {
"type": "git",
"url": "https://github.com/vb2007/discordbot.git"
},
"bugs": {
"url": "https://github.com/vb2007/discordbot/issues"
},
"license": "AGPL-3.0-only",
"dependencies": {
"ajv": "^8.17.1",
"cheerio": "^1.1.2",
"discord.js": "^14.21.0",
"dotenv": "^16.4.5",
"fluent-ffmpeg": "^2.1.3",
"google-translate-api-x": "^10.7.1",
"jest": "^29.7.0",
"mariadb": "^3.3.0"
},
"devDependencies": {
"@babel/parser": "^7.28.4",
"@babel/traverse": "^7.28.4",
"jest": "^29.7.0",
"prettier": "^3.6.2"
},
"scripts": {
"app": "node ./src/index.js",
"dev": "node --trace-warnings ./src/index.js",
"deploy": "node ./src/deploy-commands.js",
"create-tables": "node ./src/create-tables.js",
"verify-config": "node ./src/scripts/verify-config-syntax.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"format": "prettier --write ."
}
}