-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.31 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.31 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
{
"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": "^31.0.0",
"diff": "^8.0.2",
"discord-api-types": "^0.38.45",
"discord.js": "^14.26.2",
"fuse.js": "^7.0.0",
"got": "^15.0.1",
"mysql2": "^3.9.8",
"string-similarity": "^4.0.4",
"turndown": "^7.1.2"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@eslint/json": "^1.2.0",
"@types/node": "^22.5.2",
"@types/turndown": "^5.0.6",
"eslint": "^10.2.0",
"eslint-plugin-jsdoc": "^62.9.0",
"globals": "^17.4.0",
"nodemon": "^3.1.10"
},
"lint-staged": {
"*.js": [
"eslint --fix"
],
"*.json": [
"eslint --fix"
]
}
}