-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.38 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
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
{
"name": "@drovp/optimize",
"version": "6.1.3",
"description": "Perceptually lossless png, jpg, svg, webp, and gif size optimization.",
"homepage": "https://github.com/drovp/optimize",
"bugs": "https://github.com/drovp/optimize/issues",
"repository": "github:drovp/optimize",
"main": "dist/index.js",
"keywords": [
"drovpplugin",
"optimize",
"compress",
"image",
"jpg",
"png",
"gif",
"webp",
"svg",
"mozjpeg",
"libwebp",
"pngquant",
"optipng",
"gifsicle",
"gif2webp",
"svgo"
],
"author": "tomasklaen",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"*.md"
],
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"clean": "rimraf dist",
"start": "npm-run-all clean watch",
"test": "tsc -p . --noEmit",
"preversion": "npm-run-all clean build",
"git-push": "git push",
"npm-publish": "npm publish",
"postversion": "npm-run-all git-push npm-publish"
},
"devDependencies": {
"@types/imagemin": "^8.0.5",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.5",
"tslib": "^2.6.2",
"typescript": "^5.3.2"
},
"dependencies": {
"@drovp/save-as-path": "^3.1.0",
"@drovp/types": "^5.2.1",
"imagemin-gif2webp": "^3.0.0",
"imagemin-gifsicle": "^7.0.0",
"imagemin-mozjpeg": "^10.0.0",
"imagemin-optipng": "^8.0.0",
"imagemin-pngquant": "^9.0.2",
"imagemin-svgo": "^10.0.1",
"imagemin-webp": "^8.0.0"
}
}