UNPKG

n8n-nodes-gemini-ai

Version:

n8n community node for Google Gemini AI integration with text generation, file upload & analysis, and TTS (Text-to-Speech) support

64 lines (63 loc) 1.79 kB
{ "name": "n8n-nodes-gemini-ai", "version": "0.6.8", "description": "n8n community node for Google Gemini AI integration with text generation, file upload & analysis, and TTS (Text-to-Speech) support", "keywords": [ "n8n-community-node-package", "gemini", "google", "ai", "llm", "artificial intelligence", "tts", "text-to-speech", "multimodal" ], "license": "MIT", "homepage": "https://github.com/your-username/n8n-nodes-gemini", "author": { "name": "Your Name", "email": "your.email@example.com" }, "repository": { "type": "git", "url": "https://github.com/your-username/n8n-nodes-gemini.git" }, "engines": { "node": ">=20.15" }, "main": "index.js", "scripts": { "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", "prepublishOnly": "npm run build && npm run lint" }, "files": [ "dist" ], "n8n": { "n8nNodesApiVersion": 1, "credentials": [ "dist/credentials/GeminiApi.credentials.js" ], "nodes": [ "dist/nodes/Gemini/Gemini.node.js" ] }, "devDependencies": { "@types/node": "^22.15.21", "@typescript-eslint/parser": "~8.32.0", "eslint": "^8.57.0", "eslint-plugin-n8n-nodes-base": "^1.16.3", "gulp": "^5.0.0", "n8n-workflow": "^1.82.0", "prettier": "^3.5.3", "typescript": "^5.8.2" }, "peerDependencies": { "n8n-workflow": "*" } }