-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.26 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
49
{
"name": "tsukasa",
"version": "1.0.0",
"description": "Basic discord bot using discord.js with typescript",
"main": "dist/index.js",
"types": "environment.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:prod": "node --require dotenv/config dist/index.js",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "tsc --pretty",
"watch": "tsc -w",
"start": "npm run build && npm run start:prod",
"deploy": "npm run build && node --require dotenv/config dist/deploy-commands.js"
},
"repository": {
"type": "git",
"url": "https://github.com/joeyk710/sample-discordjs-bot.git"
},
"bugs": {
"url": "https://github.com/joeyk710/sample-discordjs-bot/issues"
},
"homepage": "https://github.com/joeyk710/sample-discordjs-bot#readme",
"keywords": [
"discordjs",
"discord-bot",
"discord-api",
"typescript-discord-bot"
],
"directories": {
"lib": "src"
},
"type": "module",
"author": "",
"license": "GNU GENERAL PUBLIC LICENSE V3",
"dependencies": {
"chalk": "^5.3.0",
"discord.js": "^14.11.0",
"dotenv": "^16.3.1"
},
"devDependencies": {
"rimraf": "^5.0.1",
"typescript": "^5.1.6"
},
"engines": {
"node": ">=16.9.0"
}
}