-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 866 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
{
"name": "recordy",
"version": "0.0.1",
"description": "Voice record bot for Discord",
"main": "src/index.ts",
"scripts": {
"start": "nodemon --config nodemon.json",
"typecheck": "tsc --noEmit",
"build": "tsc",
"lint:check": "eslint ./",
"lint:fix": "eslint --fix ./"
},
"dependencies": {
"@discordjs/opus": "^0.9.0",
"@discordjs/voice": "0.16.0",
"@kirdock/discordjs-voice-recorder": "1.0.6",
"discord.js": "^14.8.0",
"dotenv": "^16.0.3",
"sodium": "^3.0.2"
},
"devDependencies": {
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"nodemon": "^2.0.22",
"ts-node": "^10.9.1",
"typescript": "^5.0.3"
},
"author": "Kirdock",
"license": "ISC"
}