-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 835 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 835 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
{
"name": "typescript-bot-template",
"version": "1.0.0",
"description": "Discord Bot template made in TypeScript.",
"main": "src/index.ts",
"scripts": {
"build": "npx rimraf dist && npx tsc",
"start:dev": "npx ts-node --files src/index.ts",
"start:watch": "npx nodemon --files src/index.ts",
"start:build": "node --no-warnings dist/src/index.js",
"prettier": "prettier . --write"
},
"keywords": [
"discord",
"bot"
],
"author": "justcarlux",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.11.24",
"nodemon": "^3.0.3",
"prettier": "^3.3.3",
"ts-node": "^10.9.1",
"typescript": "^5.3.3"
},
"dependencies": {
"discord.js": "^14.14.1",
"dotenv": "^16.0.3"
}
}