UNPKG

n8n-nodes-image-sharp

Version:

n8n node for image processing and optimization with sharp

59 lines 1.39 kB
{ "name": "n8n-nodes-image-sharp", "version": "0.1.0", "description": "n8n node for image processing and optimization with sharp", "keywords": [ "n8n-community-node-package", "image", "optimization" ], "license": "MIT", "homepage": "https://zetanova.eu", "author": { "name": "Zetanova", "email": "office@zetanova.eu" }, "repository": { "type": "git", "url": "https://github.com/Zetanova/n8n-nodes-image-sharp.git" }, "engines": { "node": ">=18.10", "pnpm": ">=9.1" }, "main": "index.js", "files": [ "dist" ], "n8n": { "n8nNodesApiVersion": 1, "credentials": [], "nodes": [ "dist/nodes/ImageSharp/ImageSharp.node.js" ] }, "devDependencies": { "@types/node": "^22.1.0", "@typescript-eslint/parser": "^7.15.0", "eslint": "^8.56.0", "eslint-plugin-n8n-nodes-base": "^1.16.1", "gulp": "^4.0.2", "n8n-workflow": "*", "prettier": "^3.3.2", "typescript": "^5.5.3" }, "peerDependencies": { "n8n-workflow": "*" }, "dependencies": { "sharp": "^0.33.4" }, "scripts": { "preinstall": "npx only-allow pnpm", "build": "tsc && gulp build:icons", "dev": "tsc --watch", "format": "prettier nodes credentials --write", "lint": "eslint nodes credentials package.json", "lintfix": "eslint nodes credentials package.json --fix" } }