-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1.03 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
{
"name": "live",
"version": "0.1.0",
"description": "Broadcast live video content",
"main": "index.js",
"scripts": {
"start": "electron index.js",
"pack": "electron-packager ./ live --platform=all --arch=all --icon ./app/icon.ico --out ../live-dist --overwrite && cd ../live-dist && for file in ./*; do if test -d $file; then zip --symlinks -r $file-v0.1.0.zip $file; fi; done",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/psychokinesis-dev/live.git"
},
"keywords": [
"p2p",
"live",
"MediaRecorder"
],
"author": "covertness",
"license": "MIT",
"bugs": {
"url": "https://github.com/psychokinesis-dev/live/issues"
},
"homepage": "https://github.com/psychokinesis-dev/live#readme",
"devDependencies": {
"electron-packager": "^7.3.0",
"electron-prebuilt": "^1.2.6"
},
"dependencies": {
"blob-to-buffer": "^1.2.6",
"psychokinesis": "^1.0.6",
"request": "^2.73.0",
"uuid": "^2.0.2"
}
}