-
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) · 887 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 887 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
{
"name": "24hsbot",
"version": "1.0.0",
"description": "",
"main": "build/index.js",
"scripts": {
"prestart": "npm run build",
"start": "node build/index.js",
"build": "esbuild src/index.ts --platform=node --bundle --target=node18 --outfile=build/index.js",
"dist": "npm run build && pkg --target node18 --output dist/24HS-Bot build/index.js --compress GZip",
"clean": "rm -rf build && rm -rf dist",
"codecheck": "tsc"
},
"author": "Katharina Dröge",
"license": "GPL-3.0-or-later",
"dependencies": {
"discord.js": "^14.11.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"esbuild": "^0.19.8",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"pkg": "^5.8.1",
"prettier": "^3.0.0",
"typescript": "^5.1.6"
}
}