forked from dank074/Discord-video-stream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.17 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
{
"name": "@dank074/discord-video-stream",
"version": "2.0.0",
"description": "Experiment for making video streaming work for discord selfbots",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@dank074/fluent-ffmpeg-multistream-ts": "^1.0.2",
"@discordjs/opus": "^0.8.0",
"fluent-ffmpeg": "^2.1.2",
"libsodium-wrappers": "^0.7.10",
"prism-media": "^1.3.4",
"ws": "^8.12.0"
},
"devDependencies": {
"@types/fluent-ffmpeg": "^2.1.20",
"@types/libsodium-wrappers": "^0.7.10",
"@types/node": "^18.14.1",
"typescript": "^4.9.5"
},
"peerDependencies": {
"discord.js-selfbot-v13": "2.x"
},
"scripts": {
"build": "tsc"
},
"keywords": [
"discord",
"video",
"voice",
"stream",
"go-live"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dank074/Discord-video-stream.git"
},
"author": "dank074",
"license": "ISC",
"bugs": {
"url": "https://github.com/dank074/Discord-video-stream/issues"
},
"homepage": "https://github.com/dank074/Discord-video-stream#readme"
}