-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
37 lines (37 loc) · 1.01 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
{
"name": "mojira-discord-bot",
"description": "A Discord bot used to link to Mojira bug reports and do various server moderation tasks.",
"license": "GPL-3.0",
"repository": "https://github.com/mojira/mojira-discord-bot",
"type": "module",
"scripts": {
"bot": "tsc && node bin",
"build": "tsc",
"validate": "tsc --noEmit",
"lint": "eslint . --max-warnings 0",
"lintfix": "eslint . --fix"
},
"dependencies": {
"@discordjs/rest": "^2.4.0",
"better-sqlite3": "^11.3.0",
"config": "^3.3.12",
"discord.js": "^14.16.3",
"emoji-regex": "^10.4.0",
"escape-string-regexp": "^5.0.0",
"jira.js": "^2.20.1",
"js-yaml": "^4.1.0",
"log4js": "^6.4.0"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^2.8.0",
"@types/config": "^3.3.5",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"eslint": "^9.11.1",
"typescript": "^5.6.2"
},
"engines": {
"node": ">=18.0"
}
}