-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathpackage.json
51 lines (51 loc) · 1.14 KB
/
package.json
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
{
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aternosorg/modbot.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/aternosorg/modbot/issues"
},
"homepage": "https://github.com/aternosorg/modbot#readme",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@google-cloud/logging": "^11.0.0",
"@google-cloud/vision": "^4.2.1",
"@googleapis/youtube": "^20.0.0",
"diff": "^6.0.0",
"discord-api-types": "^0.37.37",
"discord.js": "^14.16.1",
"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",
"eslint": "^9.9.1",
"eslint-plugin-jsdoc": "^50.2.2",
"eslint-plugin-json": "^4.0.1"
},
"lint-staged": {
"*.js": [
"eslint --fix"
],
"*.json": [
"eslint --fix"
]
}
}