-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
70 lines (70 loc) · 2.1 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": "@antmedia/web_player",
"version": "2.11.10",
"description": "Ant Media Server Player that can play WebRTC, HLS, DASH",
"main": "dist/index.js",
"module": "dist/es/index.js",
"type": "module",
"scripts": {
"compile": "npm run cleanup:tsbuild && npm run compile:js && npm run compile:ts && copy-files-from-to && npm run cleanup:tsbuild",
"compile:js": "rollup -c rollup.config.module.cjs && rollup -c rollup.config.browser.cjs ",
"compile:ts": "tsc -p ./tsconfig.json && api-extractor run",
"cleanup:tsbuild": "rimraf ./tsbuild",
"test": "karma start karma.conf.cjs",
"codecov": "codecov"
},
"copyFiles": [
{
"from": "./dist/es/index.d.ts",
"to": "./dist/index.d.ts"
}
],
"author": "Ant Media",
"repository": {
"type": "git",
"url": "git+https://github.com/ant-media/Web-Player.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"license": "ISC",
"dependencies": {
"@antmedia/videojs-webrtc-plugin": "^1.3.1",
"@antmedia/webrtc_adaptor": "^2.11.3",
"@rollup/plugin-json": "6.1.0",
"aframe": "1.5.0",
"dashjs": "^4.7.4",
"rimraf": "^5.0.5",
"video.js": "^8.17.3",
"videojs-quality-selector-hls": "^1.1.1"
},
"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-image": "^3.0.3",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@types/video.js": "^7.3.58",
"chai": "^4.3.7",
"codecov": "^3.8.3",
"copy-files-from-to": "^3.9.0",
"eslint": "^8.9.0",
"jsdoc": "^3.6.10",
"karma": "^6.4.2",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.0",
"karma-mocha": "^2.0.1",
"karma-sinon": "^1.0.5",
"mocha": "^10.2.0",
"rimraf": "^3.0.2",
"rollup": "^3.21.2",
"rollup-plugin-import-css": "^3.4.0",
"rollup-plugin-replace": "^2.2.0",
"sinon": "^15.0.4",
"typescript": "^5.1.3"
}
}