-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.34 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
48
49
50
{
"name": "mrkonqi",
"version": "1.1.6",
"description": "MrKonqi is TuxCord's official Discord bot.",
"module": "src/index.ts",
"type": "module",
"scripts": {
"start": "bun run .",
"dev": "bun run --inspect .",
"gen": "bun run gen:schemas && bun run gen:prisma",
"gen:schemas": "./scripts/gen/schemas.sh",
"gen:prisma": "bun x prisma db push && bun x prisma generate",
"check": "bun x @biomejs/biome check",
"check:write": "bun x @biomejs/biome check --write .",
"lint": "bun x @biomejs/biome lint",
"lint:write": "bun x @biomejs/biome lint --write .",
"format": "bun x @biomejs/biome format",
"format:write": "bun x @biomejs/biome format --write ."
},
"author": "PixeL",
"license": "GPL-3.0",
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@types/bun": "latest",
"ts-json-schema-generator": "^2.3.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@prisma/client": "^5.16.1",
"@types/axios": "^0.14.0",
"axios": "^1.7.2",
"chalk": "4.1.2",
"command-line-args": "^5.2.1",
"discord.js": "14.13.0",
"node_characterai": "^1.2.7",
"openpgp": "^5.11.2",
"prisma": "^5.16.1",
"sqlite3": "^5.1.7",
"zod": "^3.23.8"
},
"imports": {
"#interfaces/*": "./src/interfaces/*",
"#lib/*": "./src/lib/*",
"#util/*": "./src/util/*",
"#modules/*": "./src/modules/*",
"#src/*": "./src/*"
}
}