-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.08 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
{
"name": "signalbox",
"version": "1.0.0",
"description": "A basic utility discord bot",
"homepage": "https://github.com/09wizardguy/SignalBox#readme",
"bugs": {
"url": "https://github.com/09wizardguy/SignalBox/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/09wizardguy/SignalBox.git"
},
"license": "ISC",
"author": "09wizardguy",
"type": "commonjs",
"scripts": {
"dev": "cross-env NODE_ENV=development tsx watch src/index.ts",
"start": "tsx src/index.ts",
"lint": "tsc && eslint . && prettier --check .",
"lint:fix": "prettier --write ."
},
"dependencies": {
"discord.js": "^14.22.1",
"dotenv": "^17.2.2",
"moment-timezone": "^0.6.0",
"prettier": "^3.6.2",
"rcon-client": "^4.2.5"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@types/node": "^20.0.0",
"cross-env": "^10.1.0",
"eslint": "^9.36.0",
"tsup": "^8.5.0",
"tsx": "^4.20.5",
"typescript": "^5.9.2"
}
}