-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
116 lines (116 loc) · 3.7 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
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "ririko",
"version": "0.14.5",
"description": "Ririko - A powerful AI-powered general Discord bot that you can call your companion",
"author": "Earnest Angel",
"email": "[email protected]",
"url": "https://angel.net.my/",
"funding": "https://angel.net.my/donate",
"repository": {
"type": "git",
"url": "https://github.com/RirikoAI/RirikoBot.git"
},
"license": "MIT",
"main": "index.js",
"bin": "./bin/npx.js",
"keywords": [
"AI",
"Chatbot",
"Twitch Live",
"Discord bot",
"Discord Chat Bot",
"discord.js v14",
"discord moderation bot",
"discord Twitch Live notifier",
"gpt-neox-20b"
],
"scripts": {
"start": "npm run start:dev",
"start:prod": "export NODE_ENV=production || set NODE_ENV=production && npm run index",
"start:nowatch": "export NODE_ENV=development || set NODE_ENV=development && npm run build-and-start",
"start:dev": "export NODE_ENV=development || set NODE_ENV=development && nodemon --exec npm run build-and-start",
"build-and-start": "npm-run-all -s build index",
"build": "babel src --out-dir dist --extensions \".ts,.js\" --copy-files --delete-dir-on-start",
"index": "node index.js",
"test": "jest --coverage --verbose",
"test:silent": "jest --coverage --silent",
"upgrade": "git pull && npm i --dev && npm run build && npm run test && echo 'Upgrade success'",
"heroku-prebuild": "npm install --dev && cp -n config.example.js config.js"
},
"engines": {
"node": "18.16.0"
},
"dependencies": {
"@discordjs/builders": "^1.6.3",
"@discordjs/opus": "^0.9.0",
"@discordjs/rest": "^2.2.0",
"@discordjs/voice": "^0.16.0",
"@distube/deezer": "^1.0.0",
"@distube/soundcloud": "^1.3.0",
"@distube/spotify": "^1.5.1",
"@distube/yt-dlp": "^1.1.3",
"@distube/ytdl-core": "^4.11.7",
"@vitalets/google-translate-api": "^9.2.0",
"anime-wallpaper": "^1.1.1",
"axios": "^1.7.4",
"better-sqlite3": "^9.4.3",
"body-parser": "^1.20.2",
"canvas": "^2.11.2",
"cheerio": "^1.0.0-rc.12",
"colors": "^1.4.0",
"country-emoji-languages": "^1.0.0",
"date-fns": "^3.6.0",
"decimal.js": "^10.4.3",
"discord-api-types": "^0.37.47",
"discord-giveaways": "^6.0.1",
"discord.js": "^14.8.0",
"distube": "^4.0.6",
"dotenv": "^16.3.1",
"enhanced-ms": "^3.0.0",
"express": "^4.18.2",
"ffmpeg": "^0.0.4",
"ffmpeg-static": "^5.1.0",
"fixedsize-map": "^1.0.1",
"genius-lyrics": "^4.4.3",
"iso-639-1": "^2.1.15",
"jest": "^29.7.0",
"libsodium-wrappers": "^0.7.13",
"mathjs": "^11.8.2",
"moment": "^2.29.4",
"mongodb": "^6.0.0",
"mongoose": "^8.8.3",
"ms": "^2.1.3",
"nekos.life": "^3.0.0",
"nlpcloud": "^1.0.47",
"node-fetch": "^3.3.1",
"node-sd-webui": "^0.0.8",
"npm-run-all": "^4.1.5",
"openai": "^4.29.1",
"parsec": "^2.0.2",
"pino": "^8.14.1",
"pino-pretty": "^10.0.0",
"pretty-ms": "^8.0.0",
"quick.db": "^9.1.6",
"replicate": "^0.29.1",
"ririkohuggingchat-bot-client": "^1.0.1",
"ririkollama-bot-client": "^1.0.0",
"save-dev": "^0.0.1-security",
"semver": "^7.5.3",
"source-map-support": "^0.5.21",
"sourcebin_js": "^0.0.3-ignore"
},
"devDependencies": {
"@babel/cli": "^7.22.5",
"@babel/core": "^7.22.5",
"@babel/node": "^7.22.5",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/preset-env": "^7.22.5",
"babel-plugin-module-resolver": "^5.0.0",
"babel-plugin-source-map-support": "^2.2.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-minify": "^0.5.2",
"nodemon": "^3.0.1"
}
}