-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 845 Bytes
/
package.json
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
{
"$schema": "https://json.schemastore.org/package",
"name": "d4_discordbot",
"private": true,
"type": "module",
"scripts": {
"postinstall": "patch-package",
"lint": "prettier --ignore-path .gitignore -c .",
"format": "prettier --ignore-path .gitignore -w .",
"typecheck": "tsc -p server",
"build": "npm run typecheck && rimraf dist && node build.js"
},
"dependencies": {
"@discordjs/collection": "1.5.2",
"@discordjs/core": "1.0.0",
"@discordjs/formatters": "0.3.1",
"@discordjs/rest": "2.0.0",
"@discordjs/util": "1.0.0",
"@discordjs/ws": "1.0.0"
},
"devDependencies": {
"@citizenfx/server": "^2.0.9780-1",
"@types/node": "^22.5.4",
"esbuild": "^0.23.1",
"patch-package": "^8.0.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"typescript": "^5.5.4"
}
}