-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.26 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
{
"name": "rectron",
"description": "Screen Recorder built with javascript and electron",
"version": "0.1.1",
"author": "Béranger Campardou (BaobabCoder)",
"license": "MIT",
"keywords": [
"Electron",
"DesktopCapture",
"Screen Recorder",
"WebRTC"
],
"scripts": {
"build:osx": "electron-packager . --overwrite --platform=darwin --arch=x64 --icon=src/assets/icons/mac/icon.icns --prune=true --out=release-builds",
"build:win": "electron-packager . rectron --overwrite --asar --platform=win32 --arch=ia32 --icon=src/assets/icons/win/icon.ico --prune=true --out=release-builds --version-string.CompanyName=Rectron --version-string.FileDescription=Rectron --version-string.ProductName=\"Rectron\"",
"build:linux": "electron-packager . rectron --overwrite --asar --platform=linux --arch=x64 --icon=src/assets/icons/png/1024x1024.png --prune=true --out=release-builds",
"build:all": "npm run build:osx & npm run build:win & npm run build:linux",
"start": "electron ."
},
"main": "src/main.js",
"bin": {
"rectron": "./launch.js"
},
"devDependencies": {
"electron-packager": "^12.1.0",
"electron-prebuilt": "^1.4.13"
},
"dependencies": {
"domify": "^1.4.0",
"electron": "^2.0.2",
"menubar": "^5.2.3"
}
}