-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
55 lines (55 loc) · 1.33 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
{
"name": "h265web.js-wasm-decoder",
"version": "100.2.0",
"description": "H.265/Hevc Web端播放器,支持H.265编码的mp4/hls/m3u8/mpegts 的媒体播放,支持点播、直播。A Hevc Web Player , support file type: mp4/hls/m3u8/mpegts, support play type: vod/live。Github:https://github.com/numberwolf/h265web.js",
"repository": {
"type": "git",
"url": "git+https://github.com/numberwolf/h265web.js.git"
},
"keywords": [
"hevc",
"player",
"mp4",
"hls",
"m3u8",
"mpegts",
"decoder",
"wasm",
"media",
"play"
],
"main": "src/decoder.js",
"author": "numberwolf - changyanlong",
"license": "GPL-3.0",
"scripts": {
"start": "bash build.sh",
"dev": "nodemon --exec 'npm start -s' --ignore bundle*"
},
"dependencies": {
"@babel/preset-env": "^7.12.11",
"babelify": "^10.0.0",
"browserify": "^16.5.1",
"webpack": "^4.44.1"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"@babel/preset-env"
]
}
]
]
},
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"nodemon": "^2.0.4",
"terser-webpack-plugin": "^4.1.0"
},
"bugs": {
"url": "https://github.com/numberwolf/h265web.js/issues"
},
"homepage": "https://github.com/numberwolf/h265web.js"
}