@ai-growth/n8n-nodes-wordpress
Version:
n8n node for WordPress integration with AI GROWTH - SEO WP plugin
80 lines (79 loc) • 2.4 kB
JSON
{
"name": "@ai-growth/n8n-nodes-wordpress",
"version": "0.3.6",
"description": "n8n node for WordPress integration with AI GROWTH - SEO WP plugin",
"keywords": [
"n8n",
"n8n-community-node-package",
"n8n-node-package",
"wordpress",
"seo",
"ai-growth"
],
"license": "MIT",
"homepage": "https://github.com/aigrowthagent/ai-growth-wordpress",
"author": {
"name": "AI Growth",
"email": "info@aigrowthagent.co"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aigrowthagent/ai-growth-wordpress.git"
},
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [
"dist/credentials/WordPressCredentials.js"
],
"nodes": [
"dist/nodes/WordPress.js",
"dist/nodes/AIGrowthWordPress.js"
]
},
"scripts": {
"build": "tsc && npm run copy-files",
"copy-files": "copyfiles -u 1 \"src/**/*.{json,svg,png}\" dist/ && npm run copy-icons",
"copy-icons": "mkdir -p dist/nodes && cp src/utils/wordpress.svg dist/nodes/ && cp src/utils/aigrowth-wordpress.svg dist/nodes/",
"dev": "tsc --watch",
"format": "prettier src --write",
"lint": "eslint src --ext .ts",
"lintfix": "eslint src --ext .ts --fix",
"manual-build": "node scripts/manual-build.js",
"test:meta-validation": "node scripts/test-meta-validation.js",
"test:meta-tags": "node scripts/test-meta-tags.js",
"diagnose:meta": "npm run build && npm run test:meta-validation",
"diagnose:meta-issue": "node diagnose-meta-issue.js",
"verify:plugin": "node verify-plugin-installation.js",
"test:auth": "node test-authentication.js",
"test:meta-direct": "node test-meta-tags-direct.js",
"test:n8n": "node test-n8n-integration.js",
"fix:meta-tags": "node fix-meta-tags-issues.js"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"copyfiles": "^2.4.1",
"eslint": "^8.54.0",
"eslint-plugin-n8n-nodes-base": "^1.16.1",
"prettier": "^3.1.0",
"typescript": "^5.3.2"
},
"peerDependencies": {
"n8n-workflow": "*"
},
"dependencies": {
"n8n-core": "~1.14.1",
"n8n-workflow": "*"
},
"engines": {
"node": ">=18.10",
"npm": ">=9.1"
}
}