UNPKG

n8n-nodes-exif-data

Version:

A n8n Node to Read and Write EXIF-Data from and to Image Files utilizing a vendoered version of Exiftool

64 lines (63 loc) 1.42 kB
{ "name": "n8n-nodes-exif-data", "version": "0.1.2", "description": "A n8n Node to Read and Write EXIF-Data from and to Image Files utilizing a vendoered version of Exiftool", "keywords": [ "n8n-community-node-package", "exif", "exiftool", "iptc", "image", "metadata", "photography", "image-data", "image-modification" ], "license": "MIT", "homepage": "", "author": { "name": "geckse", "website": "https://geckse.de" }, "repository": { "type": "git", "url": "https://github.com/geckse/n8n-nodes-exif-data.git" }, "engines": { "node": ">=18.10", "pnpm": ">=9.1" }, "packageManager": "pnpm@9.1.4", "main": "index.js", "scripts": { "build": "tsc && gulp build:icons", "dev": "tsc --watch", "format": "prettier nodes --write", "lint": "eslint nodes package.json", "lintfix": "eslint nodes package.json --fix" }, "files": [ "dist" ], "n8n": { "n8nNodesApiVersion": 1, "credentials": [], "nodes": [ "dist/nodes/ExifData/ExifData.node.js" ] }, "devDependencies": { "@typescript-eslint/parser": "^7.15.0", "eslint": "^8.56.0", "eslint-plugin-n8n-nodes-base": "^1.16.1", "gulp": "^4.0.2", "prettier": "^3.3.2", "typescript": "^5.5.3" }, "peerDependencies": { "n8n-workflow": "*" }, "dependencies": { "exiftool-vendored": "^29.1.0" } }