UNPKG

n8n-nodes-rckflr-ner

Version:

N8N node for Named Entity Recognition (NER) using Transformer.js

59 lines 1.51 kB
{ "name": "n8n-nodes-rckflr-ner", "version": "0.3.1", "description": "N8N node for Named Entity Recognition (NER) using Transformer.js", "keywords": [ "n8n-community-node-package", "ner", "named entity recognition", "nlp", "transformers" ], "license": "MIT", "homepage": "https://github.com/MauricioPerera/n8n-nodes-rckflr-ner", "author": { "name": "Mauricio Perera", "email": "mauricio.perera@gmail.com" }, "repository": { "type": "git", "url": "git+https://github.com/MauricioPerera/n8n-nodes-rckflr-ner.git" }, "main": "index.js", "scripts": { "build": "npx rimraf dist && tsc", "dev": "tsc --watch", "format": "prettier nodes credentials --write", "lint": "eslint nodes credentials package.json", "lint:fix": "npm run lint -- --fix", "prepublishOnly": "npm run build" }, "files": [ "dist", "nodes", "LICENSE", "README.md", "README.es.md", "README.pt.md" ], "n8n": { "n8nNodesApiVersion": 1, "credentials": [], "nodes": [ "dist/nodes/NamedEntityRecognition/NamedEntityRecognition.node.js" ] }, "devDependencies": { "@typescript-eslint/parser": "~5.45", "eslint-plugin-n8n-nodes-base": "^1.11.0", "eslint": "^8.29.0", "prettier": "^2.8.8", "typescript": "~4.8.4" }, "peerDependencies": { "n8n-workflow": "*" }, "dependencies": { "@huggingface/transformers": "^3.5.2" } }