UNPKG

snipify

Version:

A production-ready tool for capturing and processing web screenshots with Puppeteer and Sharp.

55 lines (54 loc) 1.25 kB
{ "name": "snipify", "description": "A production-ready tool for capturing and processing web screenshots with Puppeteer and Sharp.", "version": "0.1.0", "main": "./dist/index.js", "bin": { "snipify": "bin/cli.js" }, "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "exports": { ".": { "require": "./dist/index.js", "import": "./dist/index.mjs" } }, "scripts": { "build": "tsup", "build:watch": "tsup --watch", "format": "prettier --write \"**/*.{ts,json,md}\"" }, "dependencies": { "puppeteer": "^24.12.1", "sharp": "^0.34.3" }, "devDependencies": { "prettier": "^3.5.3", "terser": "^5.39.0", "tsup": "^8.4.0", "typescript": "^5.8.3" }, "author": "toufiqhasankiron <toufiqhasankiron@icloud.com>", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/kiron0/snipify.git" }, "bugs": { "url": "https://github.com/kiron0/snipify/issues" }, "homepage": "https://github.com/kiron0/snipify#readme", "keywords": [ "screenshot", "image-resize", "puppeteer", "automation", "web-capture", "batch-processing", "production-ready" ], "engines": { "node": ">=16" } }