-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 895 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 895 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
{
"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": "3.0.0-dev.1773101020-f3942a631",
"@discordjs/rest": "3.0.0-dev.1773101020-f3942a631",
"@discordjs/ws": "3.0.0-dev.1773101020-f3942a631",
"pretty-ms": "^9.3.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.6",
"@tsconfig/node24": "^24.0.4",
"@tsconfig/strictest": "^2.0.8",
"@types/node": "^24.12.0",
"typescript": "~5.9.3"
},
"packageManager": "pnpm@10.32.1",
"engines": {
"node": ">=24.14.0"
}
}