-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.31 KB
/
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
41
42
43
44
45
46
47
48
{
"name": "typescript-discord-bot",
"version": "2.0.0",
"author": "DevJoseH & NestStore",
"license": "GPL-3.0",
"description": "A simple Discord bot using TypeScript",
"main": "dist/index.js",
"scripts": {
"start:prod": "node dist/index.js",
"start:clean": "npm run clean && npm run build && npm run start:prod",
"start": "npm run build && npm run start:prod",
"build": "tsc --pretty",
"clean": "rimraf dist",
"watch": "tsc -w"
},
"directories": {
"lib": "src"
},
"repository": {
"type": "git",
"url": "https://github.com/devjoseh/Typescript-discord-bot.git",
"social": {
"discord": "@devjoseh",
"instagram": "https://instagram.com/dev_joseh",
"links": "https://linktr.ee/devjoseh"
}
},
"bugs": {
"url": "https://github.com/devjoseh/Typescript-discord-bot/issues"
},
"homepage": "https://github.com/devjoseh/Typescript-discord-bot#readme",
"engines": {
"node": ">=16.0.0"
},
"keywords": [ "discord", "bot", "discordbot", "discord.js", "typescript", "javascript" ],
"dependencies": {
"chalk": "^2.4.1",
"cli-table3": "^0.6.5",
"discord.js": "^14.15.3",
"dotenv": "^16.4.5",
"moment": "^2.30.1",
"moment-timezone": "^0.5.45"
},
"devDependencies": {
"@types/node": "^22.5.0",
"rimraf": "^6.0.1"
}
}