-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
42 lines (42 loc) · 1.09 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
{
"name": "streambot",
"version": "1.1.8",
"description": "A self bot to stream movies/videos to Discord.",
"main": "dist/index.js",
"type": "module",
"scripts": {
"start": "bun src/index.ts",
"start:node": "node dist/index.js",
"server": "bun src/server.ts",
"server:node": "node dist/server.js",
"build": "tsc",
"watch": "tsc -w"
},
"author": "ysdragon",
"license": "MIT",
"dependencies": {
"@dank074/discord-video-stream": "^4.2.0",
"@distube/ytdl-core": "^4.16.0",
"axios": "^1.7.9",
"bcrypt": "^5.1.1",
"discord.js-selfbot-v13": "^3.5.1",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-session": "^1.18.1",
"fluent-ffmpeg": "^2.1.3",
"multer": "^1.4.5-lts.1",
"p-cancelable": "^4.0.1",
"play-dl": "^1.9.7",
"tslib": "^2.8.1",
"twitch-m3u8": "^1.1.5",
"winston": "^3.17.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/express-session": "^1.18.1",
"@types/fluent-ffmpeg": "^2.1.27",
"@types/multer": "^1.4.12",
"@types/node": "^22.13.0",
"typescript": "^5.7.3"
}
}