-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 904 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 904 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
32
33
34
35
36
37
38
39
40
41
{
"name": "discord-ban-sync",
"private": true,
"author": "Almeida <contact@almeidx.dev> (almeidx.dev)",
"type": "module",
"imports": {
"#commands/*": "./src/commands/*",
"#listeners/*": "./src/listeners/*",
"#structures/*": "./src/structures/*",
"#utils/*": "./src/utils/*"
},
"scripts": {
"build": "tsc",
"fmt": "biome check --write",
"lint": "biome check",
"start": "node --env-file=.env src/index.ts"
},
"dependencies": {
"@discordjs/core": "^2.2.0",
"@discordjs/rest": "^2.5.1",
"@discordjs/ws": "^2.0.3",
"pretty-ms": "^9.2.0"
},
"devDependencies": {
"@biomejs/biome": "^2.1.3",
"@tsconfig/node24": "^24.0.1",
"@tsconfig/strictest": "^2.0.5",
"@types/node": "^22.17.0",
"typescript": "~5.8.3"
},
"packageManager": "pnpm@10.13.1",
"engines": {
"node": ">=24.4.1"
},
"pnpm": {
"onlyBuiltDependencies": [
"@biomejs/biome",
"esbuild"
]
}
}