-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.01 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
{
"name": "echo",
"version": "5.0.0",
"repository": {
"type": "git",
"url": "https://github.com/simonlary/Echo"
},
"main": "index.js",
"license": "MIT",
"type": "module",
"scripts": {
"build": "tsc",
"deploy": "node ./out/index.js",
"start": "npm run build && npm run deploy",
"lint": "eslint . && prettier --check .",
"lint:fix": "eslint --fix . && prettier --write ."
},
"dependencies": {
"@discordjs/opus": "^0.9.0",
"@discordjs/voice": "^0.17.0",
"discord.js": "^14.15.3",
"dotenv": "^16.4.5",
"ffmpeg-static": "^5.2.0",
"libsodium-wrappers": "^0.7.14",
"prism-media": "^1.3.5"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.0"
}
}