-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.52 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.52 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
{
"name": "dalmatian",
"module": "src/index.ts",
"type": "module",
"private": true,
"devDependencies": {
"@biomejs/biome": "^2.3.9",
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"@tsconfig/node24": "^24.0.3",
"@types/bun": "latest",
"bun2nix": "^2.0.6",
"drizzle-kit": "beta",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"oxlint": "^1.33.0",
"oxlint-tsgolint": "^0.9.0",
"typescript": "^5.9.3"
},
"license": "(MIT OR Apache-2.0)",
"scripts": {
"start": "bun run src/index.ts",
"lint": "oxlint --type-aware --deny-warnings",
"format": "biome format --write",
"db:generate": "drizzle-kit generate",
"db:migrate": "bun run src/db/migrate.ts",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"postinstall": "bun2nix -o bun.nix"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"**/*.{ts}": [
"bun lint",
"bun format"
]
},
"dependencies": {
"@types/ms": "^2.1.0",
"@types/node": "^24.10.4",
"csv-parse": "^6.1.0",
"discord.js": "14.24.0",
"dotenv": "^17.2.3",
"drizzle-orm": "beta",
"drizzle-zod": "^0.7.1",
"fast-fuzzy": "^1.12.0",
"ms": "^2.1.3",
"zod": "^3.25.76"
},
"packageManager": "bun@1.3.4"
}