-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1015 Bytes
/
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
{
"name": "maple-helper",
"main": "dist/main.js",
"private": true,
"scripts": {
"build": "tsup && prisma migrate deploy",
"deploy:commands": "tsx ./src/deploy/commands.ts",
"dev": "tsx watch ./src/main.ts",
"start": "node ./dist/main.js",
"prepare": "husky install && chmod ug+x .husky/* && prisma generate"
},
"lint-staged": {
"**/*.(json|js|jsx|ts|tsx)": ["biome format --write"],
"src/*.(js|jsx|ts|tsx)": ["pnpm build"]
},
"dependencies": {
"@discordjs/voice": "^0.16.0",
"@hyoretsu/utils": "^1.6.0",
"@prisma/client": "^5.6.0",
"date-fns": "^2.30.0",
"discord.js": "^14.13.0",
"dotenv": "^16.3.1",
"ffmpeg-extract-frames": "^2.0.2",
"ffmpeg-static": "^5.2.0",
"google-tts-api": "^2.0.2",
"libsodium-wrappers": "^0.7.13",
"m3u8stream": "^0.8.6",
"tsup": "^7.3.0",
"typescript": "^5.2.2"
},
"devDependencies": {
"@biomejs/biome": "^1.3.3",
"@swc/core": "^1.3.96",
"husky": "^8.0.3",
"lint-staged": "^15.0.2",
"prisma": "^5.6.0",
"tsx": "^3.14.0"
}
}