forked from BurakYs/bot-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
34 lines (34 loc) · 902 Bytes
/
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
{
"name": "bot-template",
"version": "1.0.0",
"description": "A template for creating Discord bots with Discord.js",
"main": "dist/index",
"author": "BurakYs",
"license": "MIT",
"scripts": {
"start": "cross-env NODE_ENV=production node .",
"dev": "tsc && cross-env NODE_ENV=development node .",
"register-commands": "tsc && cross-env NODE_ENV=production node ./dist/registerCommands.js",
"build": "tsc",
"lint": "eslint"
},
"dependencies": {
"discord.js": "^14.17.3",
"dotenv": "^16.4.7",
"glob": "^11.0.1",
"module-alias": "^2.2.3",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@types/module-alias": "^2.0.4",
"@types/node": "^22.10.7",
"cross-env": "^7.0.3",
"eslint": "~9.18.0",
"typescript-eslint": "^8.20.0"
},
"_moduleAliases": {
"@": "./dist"
}
}