-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.08 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
41
42
43
44
{
"name": "auto-pruner",
"author": "net-tech-",
"description": "AutoPruner is a simple Discord bot that allows you to prune members on a customizable interval.",
"license": "MIT",
"version": "3.0.1",
"private": true,
"type": "module",
"scripts": {
"typecheck": "tsc --noEmit",
"start": "bun run ./src/index.ts",
"db:generate": "prisma generate",
"deploy": "bun run ./src/util/deploy.ts",
"format": "biome format . --write",
"lint": "biome lint . --apply",
"lint:unsafe": "biome check . --apply-unsafe",
"pretty": "biome check . --apply"
},
"dependencies": {
"@biomejs/biome": "^1.3.3",
"@discordjs/core": "^1.1.1",
"@discordjs/rest": "^2.2.0",
"@prisma/client": "^5.5.2",
"croner": "^8.0.0",
"discord.js": "^14.13.0",
"human-interval": "^2.0.1",
"ms": "^2.1.3",
"nanoid": "^5.0.1",
"pino": "^9.0.0",
"pino-pretty": "^11.0.0"
},
"devDependencies": {
"@types/ms": "^0.7.32",
"bun-types": "latest",
"prisma": "^5.7.1",
"typescript": "^5.3.3"
},
"trustedDependencies": [
"@biomejs/biome",
"@prisma/client",
"@prisma/engines",
"prisma"
]
}