-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.27 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.27 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
{
"name": "modbot",
"version": "3.6.2",
"description": "Discord Bot for the Aternos Discord server",
"main": "src/index.js",
"type": "module",
"scripts": {
"lint": "eslint",
"start": "node src/index.js",
"dev": "nodemon src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aternosorg/modbot.git"
},
"author": "Julian Vennen <julian@aternos.org>",
"license": "MIT",
"bugs": {
"url": "https://github.com/aternosorg/modbot/issues"
},
"homepage": "https://github.com/aternosorg/modbot#readme",
"engines": {
"node": ">=22.0.0"
},
"dependencies": {
"@google-cloud/logging": "^11.2.1",
"@google-cloud/vision": "^5.3.3",
"@googleapis/youtube": "^29.0.0",
"diff": "^8.0.2",
"discord-api-types": "^0.38.30",
"discord.js": "^14.23.2",
"fuse.js": "^7.0.0",
"got": "^14.4.2",
"mysql2": "^3.9.8",
"string-similarity": "^4.0.4",
"turndown": "^7.1.2"
},
"devDependencies": {
"@types/node": "^22.5.2",
"@types/turndown": "^5.0.6",
"eslint": "^9.9.1",
"eslint-plugin-jsdoc": "^61.1.4",
"eslint-plugin-json": "^4.0.1",
"nodemon": "^3.1.10"
},
"lint-staged": {
"*.js": [
"eslint --fix"
],
"*.json": [
"eslint --fix"
]
}
}