-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 1.16 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
{
"name": "1finger-punch",
"productName": "1 Finger Punch Text Editor",
"version": "1.0.0",
"description": "Minimal Text Editor desktop app with a motivational push.",
"main": "index.js",
"scripts": {
"start": "electron .",
"test": "echo \"Error: no test specified\" && exit 1",
"package-mac": "electron-packager . --overwrite --platform=darwin --arch=x64 --icon=assets/icons/mac/icon.icns --prune=true --out=release-builds",
"package-win": "electron-packager . --overwrite --asar=true --platform=win32 --arch=ia32 --icon=assets/icons/win/icon.ico --prune=true --out=release-builds --version-string.CompanyName=CE --version-string.FileDescription=CE --version-string.ProductName='1 Finger Punch Text Editor'",
"package-linux": "electron-packager . --overwrite --platform=linux --arch=x64 --icon=assets/icons/png/1024x1024.png --prune=true --out=release-builds"
},
"author": "Rob-Rychs",
"license": "MIT",
"devDependencies": {
"electron": "^1.7.5",
"electron-packager": "^9.0.1",
"monaco-loader": "^0.8.2"
},
"files": [
"*.js",
"build",
"node_modules"
],
"dependencies": {
"electron-notifications": "^1.0.0"
}
}