-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
39 lines (39 loc) · 1002 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
35
36
37
38
39
{
"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",
"lint": "biome lint ./src",
"build": "tsc",
"check": "tsc --noEmit && pnpm run lint"
},
"dependencies": {
"discord.js": "^14.18.0",
"dotenv": "^16.4.7",
"glob": "^11.0.1",
"i18next": "^24.2.2",
"module-alias": "^2.2.3",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/module-alias": "^2.0.4",
"@types/node": "^22.13.5",
"cross-env": "^7.0.3"
},
"_moduleAliases": {
"@": "./dist"
},
"pnpm": {
"onlyBuiltDependencies": [
"@biomejs/biome"
]
}
}