-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
40 lines (40 loc) · 1.2 KB
/
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
31
32
33
34
35
36
37
38
39
40
{
"name": "discord-ban-sync",
"private": true,
"author": "Almeida <[email protected]> (almeidx.dev)",
"type": "module",
"imports": {
"#commands/*": "./dist/commands/*",
"#listeners/*": "./dist/listeners/*",
"#structures/*": "./dist/structures/*",
"#utils/*": "./dist/utils/*"
},
"scripts": {
"build": "pnpm build:check && pnpm build:write",
"build:check": "tsc --noEmit",
"build:clean": "node -e \"require('fs').rmSync('dist', { force: true, recursive: true })\"",
"build:write": "pnpm build:clean && esbuild \"src/**/*.ts\" --outdir=dist --platform=node --target=node20.17 --format=esm --sourcemap",
"fmt": "biome check --write",
"lint": "biome check",
"start": "node --enable-source-maps dist/index.js",
"start:env": "node --enable-source-maps --env-file=.env dist/index.js"
},
"dependencies": {
"@discordjs/core": "^2.0.0",
"@discordjs/rest": "^2.4.0",
"@discordjs/ws": "^2.0.0",
"pretty-ms": "^9.2.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@tsconfig/node22": "^22.0.0",
"@tsconfig/strictest": "^2.0.5",
"@types/node": "^22.10.2",
"esbuild": "^0.24.0",
"typescript": "~5.7.2"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20.17.0"
}
}