-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.17 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.17 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
{
"name": "zeewbot",
"version": "1.0.0",
"description": "Bot de Discord para Zeew Space",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"clear-commands": "tsx src/clearCommands.ts",
"clear-commands:global": "tsx src/clearCommands.ts --global",
"manage-commands": "tsx src/manageCommands.ts"
},
"keywords": [
"discord",
"bot",
"zeew"
],
"author": "Zeew Space",
"license": "MIT",
"dependencies": {
"@discordjs/opus": "^0.10.0",
"@discordjs/voice": "^0.19.0",
"@snazzah/davey": "^0.1.10",
"discord.js": "^14.25.1",
"dotenv": "^16.4.1",
"ffmpeg-static": "^5.3.0",
"ioredis": "^5.3.2",
"libsodium-wrappers": "^0.8.2",
"msedge-tts": "^2.0.4",
"prism-media": "^1.3.5",
"winston": "^3.11.0",
"ws": "^8.17.1"
},
"devDependencies": {
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}