-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
25 lines (25 loc) · 979 Bytes
/
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
{
"name": "BeaverText",
"version": "1.0.0",
"description": "Supercharged Plain Text Notes",
"main": "main.js",
"scripts": {
"start": "electron .",
"package-win32": "electron-packager . BeaverText --icon=resources/icon256.ico --platform=win32 --arch=x64 --asar --overwrite --out=./out",
"package-linux": "electron-packager . BeaverText --icon=resources/icon256.png --platform=linux --arch=x64 --asar --overwrite --out=./out && cp linux_specific/* out/BeaverText-linux-x64",
"package-macos": "electron-packager . BeaverText --icon=resources/icon256.icns --platform=darwin --arch=x64 --asar --overwrite --out=./out"
},
"repository": "https://github.com/julius/beavertext",
"keywords": [
"beavertext",
"plain",
"text",
"notes",
"electron"
],
"author": "Julius Eckert",
"devDependencies": {
"electron": "^4.0.1",
"electron-packager": "^14.0.0"
}
}