{
  "name": "n8n-nodes-neo4j",
  "version": "0.2.2",
  "description": "n8n node for Neo4j with LangChain integration, supporting vector stores and graph operations",
  "keywords": [
    "n8n-community-node-package",
    "neo4j",
    "langchain",
    "vector-store",
    "graph-database"
  ],
  "license": "MIT",
  "homepage": "",
  "author": {
    "name": "Claire Champourlier",
    "email": "claire@interrest.fr",
    "url": "https://interrest.fr"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Kurea/n8n-nodes-neo4j.git"
  },
  "bugs": {
    "url": "https://github.com/Kurea/n8n-nodes-neo4j/issues"
  },
  "main": "index.js",
  "scripts": {
    "build": "tsc && gulp build:icons",
    "dev": "tsc --watch",
    "format": "prettier src/**.ts  --write .",
    "lint": "eslint src/**/*.ts  package.json",
    "lintfix": "eslint src/**/*.ts  package.json --fix",
    "prepublishOnly": "npm run build && npm run lint -c .eslintrc.prepublish.js"
  },
  "files": [
    "dist"
  ],
  "n8n": {
    "n8nNodesApiVersion": 1,
    "credentials": [
      "dist/credentials/Neo4jApi.credentials.js"
    ],
    "nodes": [
      "dist/nodes/Neo4j/Neo4j.node.js"
    ]
  },
  "dependencies": {
    "@langchain/community": "^0.3.24",
    "langchain": "^0.3.11",
    "n8n-workflow": "^1.82.0",
    "neo4j-driver": "^5.17.0"
  },
  "devDependencies": {
    "@types/node": "^20.11.19",
    "@typescript-eslint/eslint-plugin": "^7.0.1",
    "@typescript-eslint/parser": "^7.15.0",
    "eslint": "^8.56.0",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-n8n-nodes-base": "^1.16.1",
    "gulp": "^4.0.2",
    "prettier": "^3.3.2",
    "typescript": "^5.5.3"
  }
} 