-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json.github
More file actions
70 lines (70 loc) · 2.38 KB
/
Copy pathpackage.json.github
File metadata and controls
70 lines (70 loc) · 2.38 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@gicelldev/create-gicellbot",
"version": "1.0.1",
"description": "Scaffold a self-hosted AI voice bot for Free4Talk voice rooms",
"main": "manager.js",
"bin": {
"create-gicellbot": "bin/create.js"
},
"scripts": {
"start": "node manager.js",
"setup": "node setup-profile.js"
},
"files": [
"bin/",
"ai.js",
"commands.js",
"economy.js",
"fun_api.js",
"manager.js",
"server.js",
"setup-profile.js",
"stt.js",
"tts.js",
"voice.js",
"plugins/",
"public/",
".env.example",
".gitignore",
"account.json",
"roles.json",
"gitignore"
],
"keywords": [
"free4talk",
"bot",
"ai",
"voice",
"music",
"whisper",
"stt",
"tts",
"playwright"
],
"author": "Gilang Raja (https://github.com/Gicelldev)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Gicelldev/free4talkbot.git"
},
"homepage": "https://github.com/Gicelldev/free4talkbot#readme",
"engines": {
"node": "\u003e=18.0.0"
},
"dependencies": {
"bcryptjs": "^3.0.3",
"dotenv": "^16.4.5",
"express": "^5.2.1",
"express-rate-limit": "^8.4.1",
"express-session": "^1.19.0",
"genius-lyrics": "^4.4.7",
"msedge-tts": "^2.0.5",
"playwright": "^1.57.0",
"socket.io": "^4.8.3",
"youtube-dl-exec": "^3.0.28",
"yt-search": "^2.13.1"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
}
}