img2webp-cli/package.json

32 lines
635 B
JSON
Raw Normal View History

2024-12-20 15:23:13 +00:00
{
"name": "img2webp-cli",
"version": "1.0.0",
"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"
],
"keywords": [
"image",
"webp",
"compression",
"wasm",
"convert",
"cli"
],
"author": "kuraa",
"license": "MIT",
"dependencies": {
"commander": "^12.1.0"
}
}