-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.79 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
{
"name": "mediastreamer",
"version": "1.1.0",
"description": "a module to stream your video to platforms or RTMP Servers",
"main": "dist/index.js",
"files": [
"dist"
],
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EhsanFox/mediastreamer.git"
},
"bugs": {
"url": "https://github.com/EhsanFox/mediastreamer/issues"
},
"homepage": "https://github.com/EhsanFox/mediastreamer#readme",
"engines": {
"node": ">=14.9.1",
"npm": ">=7.0.0"
},
"scripts": {
"lint:fix": "eslint src --ext .ts --fix",
"lint": "eslint src --ext .ts",
"format": "prettier --write src/**/*.{ts,js,json,yaml,yml}",
"build:docs": "jsdoc -c jsdoc.json",
"build:esm": "gen-esm-wrapper ./dist/index.js ./dist/index.mjs",
"build:check": "tsc --project ./tsconfig.json --noEmit --incremental false",
"build": "tsc --project ./tsconfig.json && npm run build:esm"
},
"keywords": [
"stream",
"twitch",
"youtube",
"ffmpeg",
"twitch.tv",
"live stream",
"file stream",
"boycode",
"ehsan",
"exxon",
"ehsan.js.org"
],
"author": {
"email": "[email protected]",
"name": "Ehsan Golmakani",
"url": "https://ehsan.js.org"
},
"license": "MIT",
"dependencies": {
"@discordjs/opus": "^0.7.0",
"node-opus": "^0.3.3",
"opusscript": "0.0.8"
},
"devDependencies": {
"@types/node": "^17.0.29",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"better-docs": "^2.7.2",
"clean-jsdoc-theme": "^3.3.4",
"eslint": "^8.14.0",
"gen-esm-wrapper": "^1.1.3",
"jsdoc": "^3.6.7",
"prettier": "^2.6.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
}
}