forked from muxinc/media-elements
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 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
{
"name": "cloudflare-video-element",
"version": "1.3.0",
"description": "A custom element for the Cloudflare player with an API that matches the `<video>` API",
"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/cloudflare-video-element"
},
"files": [
"cloudflare-video-element.d.ts",
"dist"
],
"type": "module",
"types": "./dist/cloudflare-video-element.d.ts",
"main": "./dist/cloudflare-video-element.js",
"exports": {
".": {
"types": "./dist/cloudflare-video-element.d.ts",
"import": "./dist/cloudflare-video-element.js",
"require": "./dist/cjs/cloudflare-video-element.js",
"default": "./dist/cloudflare-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/cloudflare-video-element.d.ts"
]
}
},
"scripts": {
"lint": "eslint *.js",
"test": "wet run",
"serve": "wet serve",
"build:react": "build-react-wrapper",
"build": "run-s build:*"
},
"devDependencies": {
"build-react-wrapper": "^0.1.8",
"npm-run-all": "^4.1.5",
"wet-run": "^1.2.5"
},
"keywords": [
"cloudflare",
"video",
"player",
"web component",
"custom element"
]
}