-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 917 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 917 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
{
"scripts": {
"lint": "npx eslint --config src/eslint.config.mts src",
"dev": "tsx watch src/index.ts",
"deploy-commands": "tsx src/deploy-commands.ts",
"build": "tsup src/index.ts --minify && tsup src/deploy-commands.ts --minify",
"start": "node dist/index.js",
"deploy-commands:production": "node dist/deploy-commands.js",
"deploy-and-start": "npm run deploy-commands && npm run start"
},
"dependencies": {
"discord.js": "^14.22.1",
"dotenv": "^17.2.2",
"is-online": "^11.0.0",
"node": "^20.2.0"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@types/node": "^24.5.2",
"@typescript-eslint/eslint-plugin": "^8.44.0",
"@typescript-eslint/parser": "^8.44.0",
"eslint": "^9.36.0",
"globals": "^16.4.0",
"jiti": "^2.5.1",
"tsup": "^8.5.0",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"typescript-eslint": "^8.44.0"
}
}