forked from juzisang/picgo-plugin-compress
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.33 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
{
"name": "picgo-plugin-compress-webp-lossless",
"version": "1.1.0",
"description": "Image compression plugin for PicGo. Encode images as webp losslessly",
"main": "dist/index.js",
"type": "module",
"publishConfig": {
"access": "public"
},
"repository": "https://github.com/mrgeneralgoo/picgo-plugin-compress-webp-lossless.git",
"author": "mrgeneralgoo <[email protected]>",
"license": "MIT",
"files": [
"/dist"
],
"scripts": {
"build": "tsc -p .",
"dev": "tsc -w -p .",
"test": "jest"
},
"keywords": [
"picgo",
"picgo-plugin",
"picgo-gui-plugin"
],
"devDependencies": {
"@types/crypto-js": "^4.2.2",
"@types/fs-extra": "^11.0.4",
"@types/imagemin": "^8.0.5",
"@types/imagemin-mozjpeg": "^8.0.4",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"@typescript-eslint/parser": "^7.8.0",
"execa": "^8.0.1",
"jest": "^29.7.0",
"picgo": "1.5.6",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"crypto-js": "^4.2.0",
"fs-extra": "^11.2.0",
"image-size": "^1.1.1",
"imagemin": "^8.0.1",
"imagemin-mozjpeg": "^10.0.0",
"imagemin-upng": "^4.0.0",
"imagemin-webp": "^8.0.0",
"mozjpeg": "github:imagemin/mozjpeg-bin#c0587fbc00b21ed8cad8bae499a0827baeaf7ffa"
}
}