forked from muxinc/media-elements
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.65 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
{
"name": "dash-video-element",
"version": "0.0.17",
"description": "Custom element for playing video using the DASH format. Uses dash.js.",
"author": "@muxinc",
"license": "MIT",
"homepage": "https://github.com/muxinc/media-elements#readme",
"bugs": {
"url": "https://github.com/muxinc/media-elements/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/muxinc/media-elements.git",
"directory": "packages/dash-video-element"
},
"files": [
"dash-video-element.d.ts",
"dist"
],
"type": "module",
"types": "./dist/dash-video-element.d.ts",
"main": "./dist/dash-video-element.js",
"exports": {
".": {
"types": "./dist/dash-video-element.d.ts",
"import": "./dist/dash-video-element.js",
"require": "./dist/cjs/dash-video-element.js",
"default": "./dist/dash-video-element.js"
},
"./react": {
"types": "./dist/react.d.ts",
"import": "./dist/react.js",
"require": "./dist/cjs/react.js",
"default": "./dist/react.js"
}
},
"typesVersions": {
"*": {
"react": [
"./dist/react.d.ts"
],
"*": [
"./dist/dash-video-element.d.ts"
]
}
},
"scripts": {
"lint": "eslint *.js",
"test": "wet run",
"serve": "wet serve",
"build:react": "build-react-wrapper",
"build": "run-s build:*"
},
"dependencies": {
"custom-media-element": "^1.4.2",
"dashjs-esm": "^4.6.0"
},
"devDependencies": {
"build-react-wrapper": "^0.1.8",
"npm-run-all": "^4.1.5",
"wet-run": "^1.2.5"
},
"keywords": [
"DASH",
"video",
"player",
"web component",
"custom element"
]
}