-
-
Notifications
You must be signed in to change notification settings - Fork 62
/
package.json
52 lines (52 loc) · 1.52 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
{
"name": "mpv.js",
"version": "0.3.0",
"description": "mpv pepper plugin",
"main": "index.js",
"_from": "",
"scripts": {
"install": "prebuild-install -t 1.0.0 || node-gyp rebuild",
"test": "eslint .",
"example": "electron example",
"use-system-ffmpeg": "gcc -Wl,--no-as-needed -shared -lavformat -o node_modules/electron/dist/libffmpeg.so",
"prebuild-win": "rd /s /q prebuilds & prebuild -t 1.0.0 -a ia32 && prebuild -t 1.0.0 -a x64",
"prebuild-posix": "rm -rf prebuilds && prebuild -t 1.0.0 -a x64 --strip",
"collect-prebuilds": "npm run prebuild-posix && cd prebuilds && cp ${MPVJS_WIN_PREBUILDS}/* . && cp ${MPVJS_MAC_PREBUILDS}/* . && perl-rename \"s/v\\d+\\.\\d+\\.\\d+/v${npm_package_version}/\" *"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kagami/mpv.js.git"
},
"keywords": [
"mpv",
"pepper",
"ppapi",
"electron",
"nw.js",
"video",
"player"
],
"author": "Kagami Hiiragi",
"license": "CC0-1.0",
"homepage": "https://github.com/Kagami/mpv.js#readme",
"bugs": {
"url": "https://github.com/Kagami/mpv.js/issues"
},
"dependencies": {
"prebuild-install": "^5.0.0",
"prop-types": "^15.6.2"
},
"peerDependencies": {
"react": "^15.3.0 || ^16.0.0"
},
"devDependencies": {
"babel-standalone": "^6.26.0",
"electron": "^1.8.8",
"electron-debug": "^2.0.0",
"eslint": "^5.2.0",
"eslint-plugin-react": "^7.10.0",
"prebuild": "^10.0.0",
"react": "^16.4.1",
"react-dom": "^16.4.1"
}
}