forked from zhw2590582/FlvPlayer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.96 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": "flvplayer",
"version": "1.1.8",
"description": "FlvPlayer is a JavaScript player for decode flv to the canvas",
"main": "dist/flvplayer.js",
"scripts": {
"dev": "npx cross-env NODE_ENV=development rollup -c -m -w",
"build": "npx cross-env NODE_ENV=production rollup -c",
"start": "npx cross-env NODE_ENV=development && npx servor docs index.html 8081 5000",
"test": "npx eslint src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zhw2590582/FlvPlayer.git"
},
"keywords": [
"flv",
"video",
"canvas",
"player",
"h264",
"aac"
],
"author": "Harvey Zack <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/zhw2590582/FlvPlayer/issues"
},
"homepage": "https://github.com/zhw2590582/FlvPlayer#readme",
"devDependencies": {
"@babel/core": "^7.10.3",
"@babel/plugin-external-helpers": "^7.10.1",
"@babel/plugin-transform-runtime": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"@babel/runtime": "^7.10.3",
"autoprefixer": "^9.8.4",
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.2",
"cssnano": "^4.1.10",
"eslint": "^7.3.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"node-sass": "^4.14.1",
"rollup": "^2.18.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-babel-minify": "^10.0.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-postcss": "^3.1.2",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-string": "^3.0.0",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-uglify": "^6.0.4",
"rollup-plugin-worker-inline": "^1.0.6",
"servor": "^4.0.2"
},
"dependencies": {
"dida.js": "^1.0.1",
"option-validator": "^2.0.5",
"screenfull": "^5.0.2",
"yuv-buffer": "^1.0.0",
"yuv-canvas": "^1.2.6"
}
}