28 lines
637 B
JSON
28 lines
637 B
JSON
{
|
|
"name": "discordbot",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "index.ts",
|
|
"scripts": {
|
|
"dev": "tsx watch src/index.ts",
|
|
"start": "node dist/index.js",
|
|
"build": "tsup src/index.ts --minify",
|
|
"lint": "eslint \"**/*.{ts, tsx}\"",
|
|
"eslint-fix": "eslint . --fix"
|
|
},
|
|
"author": "",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"discord.js": "^14.11.0",
|
|
"dotenv": "^16.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@typescript-eslint/eslint-plugin": "^5.60.1",
|
|
"@typescript-eslint/parser": "^5.60.1",
|
|
"eslint": "^8.43.0",
|
|
"tsup": "^7.1.0",
|
|
"tsx": "^3.12.7",
|
|
"typescript": "^5.1.3"
|
|
}
|
|
}
|