This repository has been archived by the owner on Nov 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 83
/
package.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 <laozhaochaguan@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/zhw2590582/FlvPlayer/issues"
},
"homepage": "https://github.com/zhw2590582/FlvPlayer#readme",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-external-helpers": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.4",
"@babel/preset-env": "^7.16.4",
"@babel/runtime": "^7.16.3",
"autoprefixer": "^10.4.0",
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.3",
"cssnano": "^5.0.11",
"eslint": "^8.3.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"node-sass": "^6.0.1",
"rollup": "^2.60.0",
"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": "^4.0.1",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-string": "^3.0.0",
"rollup-plugin-terser": "^7.0.2",
"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.6",
"screenfull": "^6.0.0",
"yuv-buffer": "^1.0.0",
"yuv-canvas": "^1.2.7"
}
}