{
    "name": "@theorchard/dataloader-cypher",
    "version": "2.2.1",
    "description": "DataLoader for working with Neo4j.",
    "main": "dist/cjs/src/index.js",
    "module": "dist/esm/src/index.js",
    "types": "dist/esm/src/index.d.ts",
    "author": "Sony Music PDE",
    "publishConfig": {
        "registry": "https://npm.pkg.github.com"
    },
    "repository": {
        "type": "git",
        "url": "git+https://github.com/theorchard/orchard-suite.git"
    },
    "prettier": "@theorchard/prettier-config",
    "eslintConfig": {
        "extends": "@theorchard/ts-prettier"
    },
    "scripts": {
        "build:cjs": "tsc --build ./tsconfig.cjs.json",
        "build:esm": "tsc --build ./tsconfig.esm.json",
        "build": "pnpm run build:esm && pnpm run build:cjs",
        "clean": "rm -rf dist & rm -rf .cache",
        "format": "prettier --write .",
        "format:check": "prettier --check .",
        "test:unit": "jest",
        "lint": "eslint --ext .js,.ts,.tsx,.jsx --cache --cache-location .cache/.eslintcache src",
        "test": "pnpm lint && pnpm test:unit"
    },
    "dependencies": {
        "dataloader": "^2.0.0"
    },
    "files": [
        "dist"
    ],
    "devDependencies": {
        "neo4j-driver": "^5.20.0"
    },
    "peerDependencies": {
        "neo4j-driver": ">=4.4.11"
    }
}
