-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 906 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 906 Bytes
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
{
"name": "tempvoice",
"version": "2.0.0",
"description": "A dynamic voice channel solution for Discord — temporary, controllable, and multilingual with database persistence and advanced features.",
"type": "module",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"lint": "eslint ."
},
"author": "Jevenchy",
"license": "MIT",
"keywords": [
"discord",
"discordjs",
"discord-bot",
"discord-voice",
"temp-voice",
"voice-temporary",
"temporary-voice"
],
"repository": {
"type": "git",
"url": "https://github.com/jevenchy/tempvoice"
},
"bugs": {
"url": "https://github.com/jevenchy/tempvoice/issues"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"discord.js": "^14.16.3",
"dotenv": "^16.4.5",
"better-sqlite3": "^11.7.0"
},
"devDependencies": {
"eslint": "^9.31.0"
}
}