-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.2 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.2 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
{
"name": "streambot",
"version": "2.0.2",
"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/index.ts",
"server:node": "node dist/server/index.js",
"build": "tsc",
"watch": "tsc -w",
"gen-hash": "bun src/utils/gen-hash.ts",
"gen-hash:node": "node dist/utils/gen-hash.js"
},
"author": "ysdragon",
"license": "MIT",
"dependencies": {
"@dank074/discord-video-stream": "6.0.0",
"@types/bcrypt": "^6.0.0",
"@types/bun": "^1.3.10",
"argon2": "^0.44.0",
"axios": "^1.13.6",
"bcrypt": "^6.0.0",
"discord.js-selfbot-v13": "^3.7.1",
"dotenv": "^17.3.1",
"ejs": "^5.0.1",
"express": "^5.2.1",
"express-ejs-layouts": "^2.5.1",
"express-session": "^1.19.0",
"fluent-ffmpeg": "^2.1.3",
"got": "^14.6.6",
"multer": "^2.1.1",
"play-dl": "^1.9.7",
"twitch-m3u8": "^1.1.5",
"winston": "^3.19.0"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/express-session": "^1.18.2",
"@types/multer": "^2.1.0",
"typescript": "^5.9.3"
}
}