{
  "name": "n8n-nodes-xml-plus",
  "version": "1.0.0",
  "description": "An alternative XML node based on fast-xml-parser as opposed to xml2js that's used in the built-in XML node. Designed for performance with larger datasets as well as adding additional customizability.",
  "main": "index.js",
  "keywords": [
    "n8n-community-node-package",
    "n8n",
    "xml",
    "json",
    "fast-xml-parser",
    "xml2js",
    "transformer",
    "parser",
    "xmlplus",
    "utility"
  ],
  "homepage": "https://github.com/jkoch22/n8n-nodes-xml-plus#readme",
  "author": {
    "name": "jkoch22"
  },
  "bugs": {
    "url": "https://github.com/jkoch22/n8n-nodes-xml-plus/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/jkoch22/n8n-nodes-xml-plus.git"
  },
  "license": "MIT",
  "files": [
    "dist"
  ],
  "dependencies": {
    "fast-xml-parser": "^5.0.8"
  },
  "devDependencies": {
    "@typescript-eslint/parser": "^8.25.0",
    "eslint": "^8.57.1",
    "eslint-plugin-n8n-nodes-base": "^1.16.3",
    "gulp": "^5.0.0",
    "n8n-core": "^1.14.1",
    "n8n-workflow": "^1.70.0",
    "pnpm": "^10.5.2",
    "prettier": "^3.5.2",
    "typescript": "^5.7.3"
  },
  "peerDependencies": {
    "n8n-workflow": "*"
  },
  "engines": {
    "node": ">=18.10",
    "pnpm": ">=9.1"
  },
  "n8n": {
    "n8nNodesApiVersion": 1,
    "nodes": [
      "dist/nodes/XmlPlus/XmlPlus.node.js"
    ]
  },
  "scripts": {
    "preinstall": "npx only-allow pnpm",
    "build": "tsc && gulp build:icons",
    "dev": "tsc --watch",
    "format": "prettier nodes --write",
    "lint": "eslint nodes package.json",
    "lintfix": "eslint nodes package.json --fix"
  }
}