generated from ppauel/typescript-discord-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.33 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
{
"name": "uptime-bot",
"version": "3.1.0",
"description": "A TypeScript Discord bot for discord server moderation",
"main": "./dist/bot.js",
"type": "module",
"scripts": {
"predev": "yarn build",
"dev": "yarn start",
"start": "node --env-file=.env ./dist/bot.js",
"prebuild": "rimraf ./dist",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Uptime-Lab/Uptime-Bot.git"
},
"author": {
"name": "John William Bowen",
"email": "[email protected]",
"url": "https://github.com/bowenjw"
},
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/Uptime-Lab/Uptime-Bot/issues"
},
"homepage": "https://github.com/Uptime-Lab/Uptime-Bot#readme",
"engines": {
"node": ">=20.18.0"
},
"dependencies": {
"@fluent/bundle": "^0.18.0",
"discord.js": "^14.18.0",
"mongoose": "^8.11.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.0",
"@eslint/js": "^9.21.0",
"@stylistic/eslint-plugin": "^4.1.0",
"@types/node": "^22.13.5",
"@types/passport-local-mongoose": "^6.1.5",
"@typescript-eslint/parser": "^8.25.0",
"eslint": "^9.21.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^50.6.3",
"globals": "^16.0.0",
"typescript": "^5.6.2",
"typescript-eslint": "^8.25.0"
}
}