-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 812 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 812 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
26
27
28
29
30
31
{
"name": "discordbalancerapi",
"version": "1.0.0",
"description": "Discord bot that connects to the BalanceAPI",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"deploy-commands": "tsx scripts/deploy-commands.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "ebicep",
"license": "ISC",
"dependencies": {
"discord.js": "^14.19.3",
"dotenv": "^16.5.0"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^5.10.0",
"@types/node": "^22.15.3",
"eslint": "^9.26.0",
"globals": "^16.0.0",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"typescript-eslint": "^8.31.1"
}
}