img2webp-cli/package.json
2024-12-20 23:41:08 +08:00

40 lines
861 B
JSON

{
"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",
"homepage": "https://kuraa.cc/archives/img2webp-cli",
"repository": {
"type": "git",
"url": "https://git.kuraa.cc/kura/img2webp-cli"
},
"bugs": {
"url": "https://git.kuraa.cc/kura/img2webp-cli/issues"
},
"license": "MIT",
"dependencies": {
"commander": "^12.1.0"
}
}