41 lines
885 B
JSON
41 lines
885 B
JSON
{
|
|
"name": "img2webp-cli",
|
|
"version": "1.0.1",
|
|
"description": "Convert images to WebP format using WASM in cli",
|
|
"type": "module",
|
|
"bin": {
|
|
"cp2webp": "./bin/cli.js"
|
|
},
|
|
"scripts": {
|
|
"test": "node bin/cli.js -i ./test -o ./output",
|
|
"goGlobal": "npm link",
|
|
"testGlobal": "cp2webp -i /Users/kura/Downloads/PC端图标 -o /Users/kura/Downloads/PC端图标/output -r 2"
|
|
},
|
|
"files": [
|
|
"bin",
|
|
"wasm",
|
|
"index.js"
|
|
],
|
|
"keywords": [
|
|
"image",
|
|
"webp",
|
|
"compression",
|
|
"wasm",
|
|
"convert",
|
|
"cli"
|
|
],
|
|
"author": "kuraa",
|
|
"homepage": "https://kuraa.cc/archives/img2webp-cli",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/AndySkaura/img2webp-cli"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/AndySkaura/img2webp-cli/issues"
|
|
},
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"commander": "^12.1.0"
|
|
}
|
|
}
|