@brandbrigade/ott-bb-player 1.0.67 → 1.0.69
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -1
- package/dist/OTTPlayer.js +500 -0
- package/package.json +8 -1
- package/dist/index.css +0 -1
- package/dist/index.html +0 -17
- package/dist/index.js +0 -8
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@brandbrigade/ott-bb-player",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.69",
|
|
4
|
+
"type": "module",
|
|
4
5
|
"description": "ott bb player",
|
|
5
6
|
"main": "./dist/OTTPlayer.ts",
|
|
6
7
|
"files": [
|
|
@@ -10,6 +11,10 @@
|
|
|
10
11
|
"dev": "vite",
|
|
11
12
|
"build": "vite build",
|
|
12
13
|
"build-lib": "vite build --config vite.config.prod.js",
|
|
14
|
+
"build-lib-debug": "vite build --config vite.config.debug-preserve.js",
|
|
15
|
+
"build-demo": "vite build --config vite.config.demo.js",
|
|
16
|
+
"upload-lib": "aws s3 cp dist/OTTPlayer.js s3://web-virtualott-com/MK/js/OTTPlayer.js --region us-east-1",
|
|
17
|
+
"upload-dist": "aws s3 sync dist/ s3://web-virtualott-com/ --region us-east-1",
|
|
13
18
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
14
19
|
},
|
|
15
20
|
"keywords": [],
|
|
@@ -25,7 +30,9 @@
|
|
|
25
30
|
"vite-plugin-singlefile": "^2.1.0"
|
|
26
31
|
},
|
|
27
32
|
"dependencies": {
|
|
33
|
+
"@aws-sdk/client-cognito-identity-provider": "^3.913.0",
|
|
28
34
|
"@datadog/browser-logs": "^6.5.0",
|
|
35
|
+
"@mediakind/wmc": "^1.88.0",
|
|
29
36
|
"@vitejs/plugin-basic-ssl": "^1.2.0",
|
|
30
37
|
"mp4box": "^0.5.3",
|
|
31
38
|
"socket.io-client": "^4.8.1",
|
package/dist/index.css
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
body{margin:0}#player-container>*{top:0;left:0;width:100%}
|
package/dist/index.html
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
<!doctype html>
|
|
2
|
-
|
|
3
|
-
<html lang="en">
|
|
4
|
-
<head>
|
|
5
|
-
<meta charset="UTF-8" />
|
|
6
|
-
<title>MK Player & BB OTT</title>
|
|
7
|
-
<script type="module" crossorigin src="./index.js"></script>
|
|
8
|
-
<link rel="stylesheet" crossorigin href="./index.css">
|
|
9
|
-
</head>
|
|
10
|
-
<body>
|
|
11
|
-
<div id="player-container">
|
|
12
|
-
<video id="video-element" poster="" crossorigin controls></video>
|
|
13
|
-
</div>
|
|
14
|
-
<canvas id="canvas" style="display: none"></canvas>
|
|
15
|
-
<script src="https://www.virtualott.com/MK_player_lib/wmc.prod.js"></script>
|
|
16
|
-
</body>
|
|
17
|
-
</html>
|