UNPKG

n8n-nodes-groq

Version:

N8N community node for Groq API - Speech-to-Text transcription using Whisper AI. Convert audio to text with high accuracy. Perfect for WhatsApp voice messages, audio files, and voice automation workflows.

74 lines 2.04 kB
{ "name": "n8n-nodes-groq", "version": "0.2.0", "description": "N8N community node for Groq API - Speech-to-Text transcription using Whisper AI. Convert audio to text with high accuracy. Perfect for WhatsApp voice messages, audio files, and voice automation workflows.", "keywords": [ "n8n-community-node-package", "n8n", "n8n-nodes", "groq", "groq-api", "speech-to-text", "speech", "text", "audio", "transcription", "whisper", "whisper-ai", "ai", "artificial-intelligence", "voice", "audio-processing", "stt", "voice-to-text", "audio-transcription", "whatsapp", "automation", "workflow" ], "license": "MIT", "homepage": "https://github.com/[seu-usuario]/n8n-nodes-groq#readme", "author": { "name": "[Seu Nome]", "email": "[seu-email@exemplo.com]" }, "repository": { "type": "git", "url": "https://github.com/[seu-usuario]/n8n-nodes-groq.git" }, "main": "index.js", "scripts": { "build": "tsc && gulp build:icons", "dev": "tsc --watch", "format": "prettier nodes credentials --write", "lint": "eslint \"nodes/**/*.ts\" \"credentials/**/*.ts\"", "lintfix": "eslint \"nodes/**/*.ts\" \"credentials/**/*.ts\" --fix", "prepare-publish": "node scripts/prepare-publish.js", "prepublishOnly": "npm run build && npm run lint -s && npm run prepare-publish" }, "files": [ "dist" ], "n8n": { "n8nNodesApiVersion": 1, "credentials": [ "dist/credentials/GroqApi.credentials.js" ], "nodes": [ "dist/nodes/Groq/Groq.node.js" ] }, "devDependencies": { "@typescript-eslint/eslint-plugin": "~5.45.0", "@typescript-eslint/parser": "~5.45.0", "eslint": "^8.29.0", "eslint-plugin-n8n-nodes-base": "~1.11.0", "gulp": "^4.0.2", "n8n-workflow": "*", "prettier": "^2.7.1", "typescript": "~4.8.4" }, "dependencies": { "groq-sdk": "^0.29.0" } }