-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 993 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 993 Bytes
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
{
"name": "typescript-discord-bot",
"version": "1.0.0",
"description": "Typescript Discord Bot template using discord.js v14",
"main": "dist/app/index.js",
"engines": {
"node": ">=22.19.0"
},
"scripts": {
"build": "rimraf dist && tsc && babel dist --out-dir dist",
"dev": "rimraf dist && tsc && babel dist --out-dir dist && node --enable-source-maps .",
"start": "node --enable-source-maps .",
"cleanup": "rimraf dist",
"prettier": "prettier . --write"
},
"keywords": [],
"author": "Sans3108",
"license": "MIT",
"type": "module",
"dependencies": {
"chalk": "^5.6.2",
"discord.js": "^14.25.1",
"dotenv": "^17.2.3",
"i18next": "^25.7.3",
"i18next-fs-backend": "^2.6.1",
"typescript": "^5.9.3"
},
"devDependencies": {
"@babel/cli": "^7.28.3",
"@types/node": "25.0.3",
"babel-plugin-i18next-extract": "^1.1.0",
"babel-plugin-root-import": "^6.6.0",
"prettier": "3.7.4",
"rimraf": "^6.1.2"
}
}