-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.3 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
{
"name": "koala",
"version": "0.1.0",
"private": true,
"license": "MIT",
"type": "module",
"main": "build/main.js",
"scripts": {
"build": "tsc --project tsconfig.json && tscpaths -p tsconfig.json -s ./src -o ./build && tsc-esm-fix --target='build'",
"build:changelog": "npx @discordx/changelog --src src",
"db:gen": "prisma generate",
"db:push": "prisma db push",
"db:studio": "prisma studio",
"dev": "tsx watch src/main.ts",
"postinstall": "npm run db:gen",
"start": "node ."
},
"dependencies": {
"@discordjs/opus": "^0.9.0",
"@discordjs/voice": "^0.16.1",
"@discordx/importer": "^1.2.3",
"@discordx/pagination": "^3.4.1",
"@google-cloud/text-to-speech": "^5.4.0",
"@prisma/client": "5.7.1",
"@t3-oss/env-core": "^0.7.1",
"bullmq": "^4.15.4",
"discord.js": "^14.13.0",
"discordx": "^11.7.6",
"ioredis": "^5.3.2",
"prisma": "^5.7.1",
"sodium-native": "^4.0.4",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.5.9",
"prettier": "^3.0.3",
"ts-node": "^10.9.2",
"tsc-esm-fix": "^2.20.18",
"tscpaths": "^0.0.9",
"tsx": "^4.19.1",
"typescript": "5.2.2",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^2.0.3"
},
"engines": {
"node": ">=16.0.0",
"bun": ">=1.0.0"
}
}