-
-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@espimarisa/hibiki",
"version": "4.0.0-develop",
"private": true,
"description": "A Discord bot with polished community and developer tools.",
"homepage": "https://github.com/espimarisa/hibiki",
"bugs": {
"url": "https://github.com/espimarisa/hibiki/issues"
},
"repository": {
"type": "git",
"url": "git@github.com:espimarisa/hibiki.git"
},
"license": "zlib",
"author": {
"name": "Espi Marisa",
"email": "contact@espi.me",
"url": "https://espi.me"
},
"type": "module",
"main": "./src/index.ts",
"scripts": {
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"deploy": "bun run db:migrate && bun run register && bun run start",
"dev": "NODE_ENV=DEVELOPMENT bun run db:push && bun run --bun ./src/index.ts",
"dev:register": "NODE_ENV=DEVELOPMENT bun run --bun ./src/register.ts",
"dev:register:clear": "NODE_ENV=DEVELOPMENT bun run --bun ./src/register.ts --clear",
"format": "biome format --fix .",
"lint": "biome lint .",
"lint:fix": "biome lint --fix .",
"register": "NODE_ENV=PRODUCTION bun run --bun ./src/register.ts",
"register:clear": "NODE_ENV=PRODUCTION bun run --bun ./src/register.ts --clear",
"start": "NODE_ENV=PRODUCTION bun run --bun ./src/index.ts",
"test": "tsc --noEmit && bun run lint"
},
"dependencies": {
"@sentry/bun": "^9.24.0",
"date-fns": "^4.1.0",
"discord.js": "^14.19.3",
"drizzle-kit": "^0.31.1",
"drizzle-orm": "^0.44.1",
"i18next": "^25.2.1",
"i18next-fs-backend": "^2.6.0",
"pino": "^9.7.0",
"pino-pretty": "^13.0.0",
"pino-roll": "^3.1.0",
"postgres": "^3.4.7",
"zod": "^3.25.42"
},
"devDependencies": {
"@biomejs/biome": "2.0.0-beta.5",
"@types/bun": "^1.2.15",
"typescript": "^5.8.3"
},
"packageManager": "bun@1.2.15",
"engines": {
"bun": ">=1.2.14"
},
"trustedDependencies": [
"@biomejs/biome",
"esbuild"
]
}