-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
51 lines (51 loc) · 1.26 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": "@100mslive/hls-player",
"version": "0.3.26",
"description": "HLS client library which uses HTML5 Video element and Media Source Extension for playback",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"typings": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/100mslive/web-sdks.git",
"directory": "packages/hls-player"
},
"files": [
"src",
"dist"
],
"exports": {
".": {
"require": "./dist/index.cjs.js",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"scripts": {
"prestart": "rm -rf dist && yarn types:build",
"start": "concurrently \"yarn dev\" \"yarn types\"",
"dev": "node ../../scripts/dev",
"build:only": "node ../../scripts/build",
"prebuild": "rm -rf dist",
"build": "yarn build:only && yarn types:build",
"types": "tsc -w",
"types:build": "tsc -p tsconfig.json",
"lint": "eslint -c ../../.eslintrc .",
"lint:fix": "yarn lint --fix"
},
"author": "100ms",
"license": "MIT",
"dependencies": {
"@100mslive/hls-stats": "0.4.26",
"eventemitter2": "^6.4.9",
"hls.js": "1.4.12"
},
"keywords": [
"hls",
"video",
"player",
"webrtc",
"conferencing",
"100ms"
]
}