-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
33 lines (33 loc) · 850 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
{
"name": "typescript-discord-bot",
"version": "1.0.0",
"description": "Typescript Discord Bot template using discord.js v14",
"main": "dist/app/index.js",
"engines": {
"node": ">=16.11.0"
},
"scripts": {
"build": "tsc && babel dist --out-dir dist",
"dev": "pnpm cleanup && pnpm build && 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.3.0",
"discord.js": "^14.16.3",
"dotenv": "^16.4.5",
"typescript": "^5.6.3"
},
"devDependencies": {
"@babel/cli": "^7.25.9",
"@types/node": "20.10.0",
"babel-plugin-root-import": "^6.6.0",
"prettier": "3.3.0",
"rimraf": "^6.0.1"
}
}