-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.57 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.57 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
{
"name": "bot",
"module": "src/index.ts",
"type": "module",
"private": true,
"scripts": {
"start": "bun sapphire gl >/dev/null 2>&1 && bun run src/index.ts",
"compile": "bun build --compile --outfile bot src/index.ts",
"dev": "bun run tools/dev.ts",
"lint": "xo --fix",
"fmt": "prettier --write .",
"gen": "sapphire g",
"prepare": "husky",
"prisma": "prisma",
"sapphire": "sapphire"
},
"dependencies": {
"@catppuccin/palette": "^1.7.1",
"@fontsource-variable/nunito": "^5.2.6",
"@logtape/file": "^1.0.4",
"@logtape/logtape": "^1.0.4",
"@logtape/pretty": "^1.0.4",
"@msgpack/msgpack": "^3.1.2",
"@prisma/client": "^6.11.1",
"@sapphire/decorators": "^6.2.0",
"@sapphire/discord.js-utilities": "^7.3.3",
"@sapphire/framework": "^5.3.6",
"@sapphire/utilities": "^3.18.2",
"discord.js": "^14.21.0",
"node_modules-path": "^2.1.0",
"skia-canvas": "^2.0.2",
"ts-deepmerge": "^7.0.3",
"unique-names-generator": "^4.7.1",
"zod": "^4.0.10"
},
"devDependencies": {
"@sapphire/cli": "^1.9.3",
"@types/bun": "^1.2.14",
"@types/yargs": "^17.0.33",
"bottleneck": "^2.19.5",
"chokidar": "^4.0.3",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sort-keys": "^2.3.5",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "^9.1.7",
"prettier": "^3.6.2",
"prettier-plugin-prisma": "^5.0.0",
"prisma": "^6.11.1",
"signal-exit": "^4.1.0",
"xo": "^1.2.1",
"yargs": "^18.0.0"
},
"peerDependencies": {
"typescript": "^5"
},
"trustedDependencies": [
"@prisma/client",
"@prisma/engines",
"prisma",
"skia-canvas"
]
}