-
-
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) · 633 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 633 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": "sourcexchange-bot",
"version": "1.0.0",
"type": "module",
"scripts": {
"start": "tsx bot.ts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"dependencies": {
"axios": "^1.13.5",
"discord.js": "^14.14.1",
"dotenv": "^17.2.3",
"tsx": "^4.21.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.1.0",
"eslint": "^10.0.3",
"prettier": "^3.8.1",
"typescript": "^5.9.3"
},
"overrides": {
"undici": ">=6.23.0"
},
"engine": {
"node": ">=22"
}
}