@couleetech/n8n-nodes-pandoc
Version:
n8n node for document conversion using Pandoc
79 lines (78 loc) • 1.84 kB
JSON
{
"name": "@couleetech/n8n-nodes-pandoc",
"version": "2.0.2",
"description": "n8n node for document conversion using Pandoc",
"keywords": [
"n8n-community-node-package",
"n8n-node-ai-tool",
"pandoc",
"document-conversion",
"markdown",
"docx",
"pdf",
"n8n"
],
"license": "MIT",
"homepage": "",
"author": {
"name": "Tim Holum",
"email": "tholum@coulee.tech"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CouleeTechlinkInc/n8n-nodes-pandoc.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc && gulp build:icons",
"dev": "tsc --watch",
"format": "prettier nodes credentials --write",
"lint": "eslint nodes credentials",
"lintfix": "eslint nodes credentials --fix",
"prepublishOnly": "npm run build && npm run lint"
},
"files": [
"dist"
],
"n8n": {
"n8nNodesApiVersion": 1,
"nodes": [
"dist/nodes/PandocConvert/PandocConvert.node.js"
],
"aiTool": {
"enabled": true,
"categories": [
"AI"
],
"subcategories": {
"AI": [
"Tools"
]
}
}
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/mime-types": "^2.1.4",
"@types/request-promise-native": "~1.0.18",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "5.45",
"@typescript-eslint/parser": "~5.45",
"eslint": "^8.57.1",
"eslint-plugin-n8n-nodes-base": "^1.16.3",
"gulp": "^4.0.2",
"n8n-core": "^1.14.1",
"n8n-workflow": "^1.48.0",
"prettier": "^2.7.1",
"typescript": "~4.8.4"
},
"dependencies": {
"@langchain/core": "^0.1.63",
"axios": "^1.7.8",
"mime-types": "^2.1.35",
"node-pandoc": "^0.3.0",
"uuid": "^11.0.3",
"zod": "^3.22.4"
}
}