forked from stefansl/image-shrinker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 2.87 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 2.87 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "image-shrinker",
"version": "1.4.0",
"description": "GUI for minifying images",
"main": "main.js",
"title": "Image Shrinker",
"productName": "Image Shrinker",
"icon": "build/icon.icns",
"background": "test-background.png",
"target": "mac",
"contents": [
{
"x": 448,
"y": 344,
"type": "link",
"path": "/Applications"
},
{
"x": 192,
"y": 344,
"type": "file",
"path": "ImageShrinker.app"
}
],
"scripts": {
"start": "electron .",
"pack-mac": "electron-packager . 'Image Shrinker' --extendInfo=extend.plist --platform=darwin --arch=x64 --ignore=/^release/i --icon=assets/icons/mac/icon_image-shrinker.svg.icns --overwrite --prune=true --out=release-builds",
"pack-linux": "electron-packager . 'Image Shrinker' --platform=linux --arch=x64 --ignore=/^release/i --icon=assets/icons/png/512x512 --overwrite",
"pack-win": "electron-packager . Image-Shrinker --asar=true --platform=win32 --ignore=/^release/i --overwrite --icon=assets/icons/ico/512x512@2x.ico --app-version 1.3.7.0",
"pack": "build --dir",
"publish": "build -p always",
"dist": "electron-builder --publish always"
},
"repository": "https://github.com/stefansl/image-shrinker",
"keywords": [
"SVG",
"svgo",
"SVG Shrinking",
"shrinking tool",
"image minifying",
"image",
"png",
"jpg",
"minifying"
],
"author": "Stefan Schulz-Lauterbach",
"license": "CC0-1.0",
"devDependencies": {
"electron": "^1.8.8",
"electron-builder": "^20.31.2",
"electron-installer-dmg": "^1.0.0",
"electron-packager": "^12.2.0",
"fs-extra": "^6.0.1",
"prettier": "^1.15.1",
"prettier-eslint": "^8.8.2"
},
"dependencies": {
"electron-log": "latest",
"electron-settings": "^3.2.0",
"electron-updater": "^2.23.3",
"gifsicle": "^3.0.4",
"make-dir": "^1.3.0",
"mozjpeg": "^6.0.1",
"pngquant-bin": "^5.0.1",
"spectre.css": "^0.5.4",
"svgo": "^1.1.1"
},
"build": {
"appId": "de.clickpress.image-shrinker",
"mac": {
"category": "public.app-category.developer-tools",
"target": [],
"type": "distribution",
"identity": "Jens Büttner und Stefan Schulz-Lauterbach (522K4UT79N)"
},
"asar": true,
"files": [
"**/*",
"!node-modules/*",
"!release-builds/*"
],
"fileAssociations": {
"ext": [
"png",
"jpg",
"jpeg",
"svg"
]
},
"dmg": {
"background": "build/bg_dmg.tiff",
"icon": "build/icon_dmg.icns",
"contents": [
{
"x": 168,
"y": 240
},
{
"x": 372,
"y": 240,
"type": "link",
"path": "/Applications"
}
]
},
"pkg": {},
"publish": {
"provider": "github",
"owner": "stefansl",
"repo": "image-shrinker"
}
}
}