generated from ppauel/typescript-discord-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.46 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
52
53
{
"name": "uptime-bot",
"version": "3.0.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.16.3",
"mongoose": "^8.8.3",
"source-map-support": "^0.5.21"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@stylistic/eslint-plugin": "^2.9.0",
"@types/node": "^22.7.4",
"@types/node-schedule": "^2.1.7",
"@types/passport-local-mongoose": "^6.1.5",
"@types/source-map-support": "^0.5.10",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^7.12.0",
"eslint": "^9.12.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^50.3.1",
"ts-node": "^10.9.2",
"tsx": "^4.19.1",
"typescript": "^5.6.2"
}
}