-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.43 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": "image-shrink",
"productName": "ImageShrink",
"version": "1.0.0",
"description": "Image size optimization app. Created using Electron en JS",
"main": "main.js",
"scripts": {
"start": "electron --no-sandbox .",
"dev": "nodemon --exec electron --no-sandbox .",
"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 --platform=win32 --arch=ia32 --icon=assets/icons/win/icon.ico --prune=false --out=release-builds --version-string.CompanyName=CE --version-string.FileDescription=CE --version-string.ProductName=\"ImageShrink\"",
"package-linux": "electron-packager . --overwrite --platform=linux --arch=x64 --icon=assets/icons/png/1024x1024.png --prune=false --out=release-builds"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kevklash/image-shrink.git"
},
"author": "Kevin Romero -- (Skript)",
"license": "MIT",
"bugs": {
"url": "https://github.com/kevklash/image-shrink/issues"
},
"homepage": "https://github.com/kevklash/image-shrink#readme",
"devDependencies": {
"electron": "^11.1.0",
"electron-packager": "^15.2.0",
"nodemon": "^2.0.6"
},
"dependencies": {
"electron-log": "^4.3.1",
"imagemin": "^7.0.1",
"imagemin-mozjpeg": "^9.0.0",
"imagemin-pngquant": "^9.0.1",
"slash": "^3.0.0"
}
}