-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
47 lines (47 loc) · 1.55 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
45
46
47
{
"name": "@espimarisa/hibiki",
"version": "4.0.0-alpha",
"type": "module",
"description": "A Discord app providing informational tools and utilities.",
"author": "Espi Marisa <[email protected]> (https://espi.me)",
"license": "zlib",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"check": "tsc --noEmit",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:studio": "bun run db:generate && drizzle-kit studio",
"deps:update": "bunx npm-check-updates --target latest --root --upgrade",
"dev": "NODE_ENV=development bun run db:generate && bun run db:push && bun run --hot ./src/index.ts",
"lint": "biome check .",
"lint:fix": "biome check --apply .",
"start": "NODE_ENV=production bun run db:generate && bun run ./src/index.ts",
"test": "bun run check && bun run lint",
"format": "biome format --write ."
},
"dependencies": {
"@chatsift/pino-rotate-file": "^0.5.1",
"@discordjs/rest": "^2.3.0",
"@sentry/bun": "^8.27.0",
"date-fns": "^3.6.0",
"discord-api-types": "^0.37.98",
"discord.js": "^14.15.3",
"drizzle-orm": "^0.33.0",
"i18next": "^23.14.0",
"i18next-fs-backend": "^2.3.2",
"pino": "^9.3.2",
"pino-pretty": "^11.2.2",
"postgres": "^3.4.4",
"tslib": "^2.7.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"bun-types": "^1.1.26",
"drizzle-kit": "^0.24.2",
"typescript": "^5.5.4"
},
"trustedDependencies": ["@biomejs/biome", "esbuild"]
}