generated from EvarinthoSec/Discord.JS-Example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 729 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 729 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
{
"name": "discord-bot-template",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "npx tsc-watch --onSuccess \"cross-env NODE_ENV=development node dist/index.js\" --onFailure \"echo 'Build failed'\"",
"build": "npx tsc -p .",
"start": "cross-env NODE_ENV=production node dist/index.js",
"lint": "npx eslint . --ext .ts",
"lint:fix": "npx eslint . --ext .ts --fix"
},
"author": "FAYStarNext",
"license": "MIT",
"devDependencies": {
"eslint": "^9.0.0",
"typescript": "^5.4.4"
},
"dependencies": {
"cross-env": "^7.0.3",
"discord.js": "^14.14.1",
"tsc-watch": "^6.2.0"
}
}