img2webp-cli/package.json

41 lines
885 B
JSON
Raw Normal View History

2024-12-20 15:23:13 +00:00
{
"name": "img2webp-cli",
2024-12-20 16:46:25 +00:00
"version": "1.0.1",
2024-12-20 15:23:13 +00:00
"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",
2024-12-20 16:46:25 +00:00
"wasm",
"index.js"
2024-12-20 15:23:13 +00:00
],
"keywords": [
"image",
"webp",
"compression",
"wasm",
"convert",
"cli"
],
"author": "kuraa",
2024-12-20 15:41:08 +00:00
"homepage": "https://kuraa.cc/archives/img2webp-cli",
"repository": {
"type": "git",
2024-12-20 15:49:32 +00:00
"url": "https://github.com/AndySkaura/img2webp-cli"
2024-12-20 15:41:08 +00:00
},
"bugs": {
2024-12-20 15:49:32 +00:00
"url": "https://github.com/AndySkaura/img2webp-cli/issues"
2024-12-20 15:41:08 +00:00
},
2024-12-20 15:23:13 +00:00
"license": "MIT",
"dependencies": {
"commander": "^12.1.0"
}
}