favigen
Version:
A fast and easy-to-use CLI tool to generate favicons and icons for web apps from a single image.
65 lines • 1.51 kB
JSON
{
"name": "favigen",
"version": "1.2.0",
"description": "A fast and easy-to-use CLI tool to generate favicons and icons for web apps from a single image.",
"bin": {
"favigen": "./dist/generator.js"
},
"type": "module",
"exports": "./dist/generator.js",
"keywords": [
"favicon",
"favicon-generator",
"icon-generator",
"cli-tool",
"favicon-cli",
"generate-icons",
"web-icons",
"favicons",
"manifest-icons",
"favicon automation",
"sharp",
"ico",
"png to ico",
"png to favicon",
"webdev"
],
"author": {
"name": "TDanks2000",
"url": "https://github.com/tdanks2000"
},
"license": "MIT",
"homepage": "https://github.com/tdanks2000/favigen#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/tdanks2000/favigen.git"
},
"bugs": {
"url": "https://github.com/tdanks2000/favigen/issues"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"dependencies": {
"commander": "^13.1.0",
"sharp": "^0.34.1"
},
"devDependencies": {
"@biomejs/biome": "2.0.0-beta.2",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.15.3",
"tsup": "^8.4.0",
"typescript": "^5.8.3"
},
"scripts": {
"build": "tsup --config tsup.config.ts",
"generate": "pnpm run build && node dist/generator.js -i ./test/test-image.png ",
"favigen": "pnpm run generate",
"pub:release": "pnpm build && npm publish"
}
}