Skip to content

Commit

Permalink
videojs updated
Browse files Browse the repository at this point in the history
  • Loading branch information
lastpeony committed May 15, 2024
1 parent cc76476 commit 9442c1d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
13 changes: 8 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@antmedia/web_player",
"version": "2.9.0-SNAPSHOT",
"version": "2.9.0-ALPHA",
"description": "Ant Media Server Player that can play WebRTC, HLS, DASH",
"main": "dist/index.js",
"module": "dist/es/index.js",
Expand Down Expand Up @@ -31,19 +31,22 @@
"dependencies": {
"@antmedia/videojs-webrtc-plugin": "^1.2.1",
"@antmedia/webrtc_adaptor": "2.9.0",
"@types/video.js": "^7.3.58",
"@types/videojs-contrib-quality-levels": "^2.0.4",
"aframe": "1.5.0",
"dashjs": "^4.7.4",
"rimraf": "^5.0.5",
"video.js": "^7.18.0",
"videojs-contrib-quality-levels": "^2.2.1",
"videojs-hls-quality-selector": "^1.1.4"
"video.js": "^8.12.0",
"videojs-contrib-quality-levels": "^4.1.0",
"videojs-hls-quality-selector": "2.0.0"
},
"devDependencies": {
"@babel/core": "^7.21.5",
"@babel/preset-env": "^7.21.5",
"@microsoft/api-extractor": "^7.36.1",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"chai": "^4.3.7",
Expand All @@ -63,6 +66,6 @@
"rollup-plugin-import-css": "^3.4.0",
"rollup-plugin-replace": "^2.2.0",
"sinon": "^15.0.4",
"typescript": "^5.1.3"
"typescript": "^5.3.3"
}
}
2 changes: 2 additions & 0 deletions rollup.config.module.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ const commonjs = require('@rollup/plugin-commonjs').default;
const css = require("rollup-plugin-import-css");
const replace = require('rollup-plugin-replace');
const terser = require('@rollup/plugin-terser');
const json = require('@rollup/plugin-json')

const builds = {
input: [
Expand All @@ -25,6 +26,7 @@ const builds = {
nodeResolve(),
commonjs(),
css(),
json(),
replace({
ENV: JSON.stringify(process.env.NODE_ENV || 'development'),
}),
Expand Down

0 comments on commit 9442c1d

Please sign in to comment.