-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 974 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
40
{
"name": "discord-bot-template",
"version": "1.0.0",
"description": "A fully functional and customizable discord bot template for your Discord bot!",
"main": "dist/index.js",
"scripts": {
"build": "rimraf dist && tsc",
"start": "node dist/index.js",
"start:ts": "ts-node src/index.ts",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts"
},
"keywords": [
"discord",
"bot",
"discord.js",
"typescript",
"template",
"discord-bot",
"discord-bot-template"
],
"author": "OwenBellowen",
"repository": {
"type": "git",
"url": "https://github.com/OwenBellowen/discord-bot-template"
},
"license": "ISC",
"dependencies": {
"chalk": "^4.1.2",
"discord.js": "^14.15.3",
"dotenv": "^16.4.5",
"mongoose": "^8.4.1",
"rimraf": "^5.0.7",
"ts-node": "^10.9.2"
},
"devDependencies": {
"@types/node": "^20.14.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.5"
}
}