-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
54 lines (54 loc) · 1.66 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
{
"name": "paella-core",
"version": "1.50.2",
"description": "Multistream HTML video player",
"main": "src/index.js",
"module": "dist/paella-core.js",
"scripts": {
"build": "webpack --mode production",
"dev": "webpack serve --mode development --config webpack.debug.js --host 0.0.0.0",
"captions": "webpack serve --mode development --config webpack.captions.js",
"eslint": "eslint .",
"nomanifest": "webpack serve --mode development --config webpack.nomanifest.js",
"testenv": "webpack serve --mode development --config webpack.test.js --host 0.0.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/polimediaupv/paella-core.git"
},
"keywords": [
"html",
"player",
"video",
"hls"
],
"author": "Fernando Serrano Carpena <[email protected]>",
"license": "ECL-2.0",
"bugs": {
"url": "https://github.com/polimediaupv/paella-core/issues"
},
"homepage": "https://github.com/polimediaupv/paella-core#readme",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-transform-modules-commonjs": "^7.19.6",
"@babel/preset-env": "^7.12.11",
"@playwright/test": "^1.29.2",
"babel-loader": "^9.0.0",
"babel-plugin-transform-require-context": "^0.1.1",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.6.0",
"eslint": "^8.29.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"source-map-loader": "^4.0.0",
"style-loader": "^3.3.1",
"svg-inline-loader": "^0.8.2",
"webpack": "^5.66.0",
"webpack-cli": "^5.0.0",
"webpack-dev-server": "^4.7.3"
},
"dependencies": {
"core-js": "^3.8.2",
"hls.js": "^1.0.4"
}
}