forked from sketch-hq/sketch-image-compressor
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
31 lines (31 loc) · 1.07 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
{
"name": "sketch-tinypng-compressor",
"version": "2.0.1",
"description": "A Plugin that compresses bitmap assets using TinyPNG API. This Plugin *requires* Sketch 3.8.",
"skpm": {
"name": "Sketch TinyPng compressor",
"main": "Sketch TinyPng compressor.sketchplugin",
"manifest": "src/manifest.json"
},
"main": "src/plugin.js",
"scripts": {
"build": "mkdir -p \"Sketch TinyPng compressor.sketchplugin/Contents/Resources\" && skpm-build && cp -r assets/* \"Sketch TinyPng compressor.sketchplugin/Contents/Resources\"",
"watch": "skpm-build --watch",
"start": "skpm-build --watch --run",
"postinstall": "npm run build && skpm-link",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Alex D <rupta3@gmail.com>",
"license": "MIT",
"repository": "https://github.com/alxrm/sketch-tinypng-compressor",
"devDependencies": {
"@skpm/builder": "^0.7.0"
},
"dependencies": {
"@skpm/child_process": "^0.2.4",
"@skpm/fs": "^0.2.0",
"pretty-bytes": "^5.1.0",
"pretty-ms": "^4.0.0",
"sketch": "^0.2.0"
}
}