{
  "name": "grafeo-ogm",
  "version": "2.3.0",
  "description": "Type-safe Neo4j ORM / OGM for TypeScript. Define your graph in GraphQL SDL, get fully typed Prisma-like CRUD, optimized Cypher, and zero-config code generation. Community successor to @neo4j/graphql-ogm.",
  "license": "MIT",
  "author": "Alejandro Guzman",
  "keywords": [
    "neo4j",
    "neo4j-driver",
    "neo4j-ogm",
    "neo4j-orm",
    "neo4j-graphql",
    "neo4j-typescript",
    "neo4j-client",
    "neo4j-database",
    "ogm",
    "orm",
    "graph-orm",
    "graph-ogm",
    "graph-database",
    "graph",
    "graphdb",
    "cypher",
    "cypher-query",
    "cypher-builder",
    "cypher-generator",
    "graphql",
    "graphql-sdl",
    "graphql-schema",
    "schema-first",
    "prisma",
    "prisma-like",
    "typescript",
    "type-safe",
    "object-graph-mapper",
    "code-generation",
    "codegen",
    "apoc",
    "bolt",
    "fulltext",
    "fulltext-search",
    "query-builder",
    "knowledge-graph",
    "social-graph",
    "recommendation-engine",
    "neo4j-graphql-ogm-alternative"
  ],
  "main": "dist/cjs/index.js",
  "module": "dist/esm/index.js",
  "types": "dist/cjs/index.d.ts",
  "bin": {
    "grafeo": "dist/cjs/cli/index.js"
  },
  "files": [
    "dist",
    "assets",
    "README.md",
    "LICENSE",
    "CHANGELOG.md"
  ],
  "exports": {
    ".": {
      "import": {
        "types": "./dist/esm/index.d.ts",
        "default": "./dist/esm/index.js"
      },
      "require": {
        "types": "./dist/cjs/index.d.ts",
        "default": "./dist/cjs/index.js"
      }
    },
    "./testing": {
      "import": {
        "types": "./dist/esm/testing/index.d.ts",
        "default": "./dist/esm/testing/index.js"
      },
      "require": {
        "types": "./dist/cjs/testing/index.d.ts",
        "default": "./dist/cjs/testing/index.js"
      }
    }
  },
  "scripts": {
    "clean": "rm -rf dist",
    "build": "pnpm run clean && tsc -p tsconfig.cjs.json && tsc -p tsconfig.esm.json && node -e \"const fs=require('fs');fs.writeFileSync('dist/cjs/package.json','{\\\"type\\\":\\\"commonjs\\\"}\\n');fs.writeFileSync('dist/esm/package.json','{\\\"type\\\":\\\"module\\\"}\\n');\"",
    "test": "jest",
    "lint": "eslint src/",
    "lint:fix": "eslint src/ --fix",
    "format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
    "format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
    "verify:examples": "node dist/cjs/cli/index.js generate --verify --schema examples/schema.graphql --out examples/grafeo.generated.ts",
    "bench": "ts-node --project bench/tsconfig.json bench/index.ts",
    "prepublishOnly": "pnpm run build"
  },
  "dependencies": {
    "graphql": "^16.0.0",
    "jiti": "^2.7.0",
    "pluralize": "^8.0.0"
  },
  "peerDependencies": {
    "neo4j-driver": "^5.0.0 || ^6.0.0",
    "prettier": "^3.0.0"
  },
  "peerDependenciesMeta": {
    "prettier": {
      "optional": true
    }
  },
  "devDependencies": {
    "@eslint/eslintrc": "^3.3.3",
    "@eslint/js": "^9.39.2",
    "@types/jest": "^29.0.0",
    "@types/node": "^24.10.13",
    "@types/pluralize": "^0.0.33",
    "@typescript-eslint/eslint-plugin": "^8.56.0",
    "@typescript-eslint/parser": "^8.56.0",
    "eslint": "^9.39.2",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin-prettier": "^5.5.5",
    "globals": "^16.5.0",
    "jest": "^29.0.0",
    "mitata": "^1.0.34",
    "prettier": "^3.8.1",
    "ts-jest": "^29.0.0",
    "ts-node": "^10.9.2",
    "typescript": "^5.0.0"
  },
  "engines": {
    "node": ">=18"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/neomodular/grafeo-ogm.git"
  },
  "homepage": "https://github.com/neomodular/grafeo-ogm#readme",
  "bugs": {
    "url": "https://github.com/neomodular/grafeo-ogm/issues"
  },
  "publishConfig": {
    "access": "public"
  }
}
