-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.01 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.01 KB
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
{
"name": "donut-bot",
"version": "1.0.0",
"description": "A TypeScript Discord bot template",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx --watch src/index.ts",
"register": "tsx src/scripts/register-commands.ts",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --check \"src/**/*.ts\"",
"format:fix": "prettier --write \"src/**/*.ts\""
},
"keywords": [
"discord",
"bot",
"typescript",
"discord.js"
],
"author": "",
"license": "MIT",
"dependencies": {
"discord.js": "^14.16.3",
"dotenv": "^16.4.5"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"eslint": "^9.17.0",
"prettier": "^3.4.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "pnpm@9.0.0"
}