forked from bvibber/ogv.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.51 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
{
"name": "ogv",
"version": "1.8.7",
"description": "WebAssembly media player using Ogg/Vorbis/Theora/Opus/WebM libs compiled with Emscripten",
"main": "index.js",
"files": [
"index.js",
"README.md",
"COPYING",
"dist/"
],
"scripts": {
"prepublish": "make -j4 dist",
"build": "webpack",
"lint": "eslint src/js",
"test": "make tests && npx static build/tests",
"demo": "webpack serve --open-page=build/demo",
"start": "webpack serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brion/ogv.js.git"
},
"keywords": [
"multimedia",
"audio",
"video",
"decoder",
"codec",
"player",
"ogg",
"oga",
"ogv",
"ogvjs",
"ogv.js",
"Vorbis",
"Theora",
"VP8",
"VP9",
"Opus",
"WebM",
"Web Audio",
"emscripten"
],
"author": "Brion Vibber <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/brion/ogv.js/issues"
},
"homepage": "https://github.com/brion/ogv.js#readme",
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.16.8",
"@babel/preset-env": "^7.16.8",
"audio-feeder": "^0.5.0",
"babel-loader": "^8.2.3",
"eslint": "^7.32.0",
"file-loader": "^6.2.0",
"stream-file": "^0.3.0",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^3.11.3",
"yuv-canvas": "^1.2.9"
},
"dependencies": {
"@babel/runtime": "^7.16.7"
},
"browserslist": "> 5%"
}