{
  "name": "maskify-ts",
  "version": "5.0.0",
  "description": "Production-grade data masking for Node.js — GDPR/HIPAA compliant, type-safe, high-performance",
  "type": "commonjs",
  "main": "./dist/cjs/index.js",
  "module": "./dist/esm/index.js",
  "types": "./dist/types/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/types/index.d.ts",
      "import": "./dist/esm/index.js",
      "require": "./dist/cjs/index.js",
      "default": "./dist/cjs/index.js"
    },
    "./stream": {
      "types": "./dist/types/stream/index.d.ts",
      "import": "./dist/esm/stream/index.js",
      "require": "./dist/cjs/stream/index.js"
    },
    "./middlewares/express": {
      "types": "./dist/types/middlewares/express.d.ts",
      "import": "./dist/esm/middlewares/express.js",
      "require": "./dist/cjs/middlewares/express.js"
    },
    "./middlewares/fastify": {
      "types": "./dist/types/middlewares/fastify.d.ts",
      "import": "./dist/esm/middlewares/fastify.js",
      "require": "./dist/cjs/middlewares/fastify.js"
    },
    "./middlewares/mongoose": {
      "types": "./dist/types/middlewares/mongoose.d.ts",
      "import": "./dist/esm/middlewares/mongoose.js",
      "require": "./dist/cjs/middlewares/mongoose.js"
    },
    "./middlewares/prisma": {
      "types": "./dist/types/middlewares/prisma.d.ts",
      "import": "./dist/esm/middlewares/prisma.js",
      "require": "./dist/cjs/middlewares/prisma.js"
    },
    "./middlewares/typeorm": {
      "types": "./dist/types/middlewares/typeorm.d.ts",
      "import": "./dist/esm/middlewares/typeorm.js",
      "require": "./dist/cjs/middlewares/typeorm.js"
    },
    "./zod": {
      "types": "./dist/types/zod/index.d.ts",
      "import": "./dist/esm/zod/index.js",
      "require": "./dist/cjs/zod/index.js"
    },
    "./graphql": {
      "types": "./dist/types/graphql/index.d.ts",
      "import": "./dist/esm/graphql/index.js",
      "require": "./dist/cjs/graphql/index.js"
    },
    "./decorators/mask": {
      "types": "./dist/types/decorators/mask.d.ts",
      "import": "./dist/esm/decorators/mask.js",
      "require": "./dist/cjs/decorators/mask.js"
    },
    "./utils/paths": {
      "types": "./dist/types/utils/paths.d.ts",
      "import": "./dist/esm/utils/paths.js",
      "require": "./dist/cjs/utils/paths.js"
    },
    "./package.json": "./package.json"
  },
  "files": [
    "dist",
    "LICENSE",
    "README.md",
    "CHANGELOG.md",
    "MIGRATION.md"
  ],
  "scripts": {
    "prebuild": "rimraf dist",
    "build": "npm run build:esm && npm run build:cjs && npm run build:types && npm run build:cli && npm run build:esm-pkg",
    "build:esm": "tsc -p tsconfig.build.json --module esnext --outDir dist/esm",
    "build:cjs": "tsc -p tsconfig.build.json --module commonjs --outDir dist/cjs",
    "build:types": "tsc -p tsconfig.build.json --emitDeclarationOnly --outDir dist/types",
    "build:cli": "chmod +x dist/cjs/cli/index.js 2>/dev/null || true",
    "build:esm-pkg": "echo '{\"type\":\"module\"}' > dist/esm/package.json",
    "test": "jest",
    "test:coverage": "jest --coverage",
    "test:watch": "jest --watch",
    "bench": "ts-node tests/benchmarks/run.ts",
    "lint": "eslint src tests",
    "lint:fix": "eslint src tests --fix",
    "typecheck": "tsc --noEmit",
    "prepare": "npm run build",
    "prepublishOnly": "npm run test:coverage && npm run lint"
  },
  "repository": {
    "type": "git",
    "url": "git+ssh://git@github.com/OTopman/maskify.git"
  },
  "funding": {
    "type": "individual",
    "url": "https://buymeacoffee.com/maskify"
  },
  "keywords": [
    "mask",
    "masking",
    "privacy",
    "data-protection",
    "sanitize",
    "obfuscate",
    "express",
    "sensitive-data",
    "middleware",
    "security",
    "email-mask",
    "card-mask",
    "phone-mask",
    "pii",
    "gdpr",
    "hipaa",
    "pci-dss",
    "nodejs",
    "typescript",
    "utility",
    "maskify"
  ],
  "author": "Temitope Okunlola <okunlolatopman14@gmail.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/OTopman/maskify/issues"
  },
  "homepage": "https://github.com/OTopman/maskify#readme",
  "bin": {
    "maskify": "./dist/cjs/cli/index.js"
  },
  "peerDependencies": {
    "@types/express": "^5.0.0",
    "express": "^4.18.0 || ^5.0.0",
    "fastify": "^4.0.0 || ^5.0.0",
    "fastify-plugin": "^4.0.0 || ^5.0.0",
    "graphql": "^16.0.0",
    "@graphql-tools/utils": "^10.0.0"
  },
  "peerDependenciesMeta": {
    "@types/express": {
      "optional": true
    },
    "express": {
      "optional": true
    },
    "fastify": {
      "optional": true
    },
    "fastify-plugin": {
      "optional": true
    },
    "graphql": {
      "optional": true
    },
    "@graphql-tools/utils": {
      "optional": true
    }
  },
  "devDependencies": {
    "@graphql-tools/utils": "^11.1.0",
    "@types/express": "^5.0.3",
    "@types/jest": "^29.5.14",
    "@types/node": "^22.10.0",
    "@types/supertest": "^6.0.2",
    "@typescript-eslint/eslint-plugin": "^8.18.0",
    "@typescript-eslint/parser": "^8.18.0",
    "eslint": "^9.17.0",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-prettier": "^5.2.1",
    "fast-check": "^3.23.2",
    "fastify": "^5.2.0",
    "fastify-plugin": "^5.0.1",
    "graphql": "^16.14.0",
    "jest": "^29.7.0",
    "mitata": "^1.0.0",
    "prettier": "^3.4.2",
    "rimraf": "^6.0.1",
    "supertest": "^7.0.0",
    "ts-jest": "^29.2.5",
    "ts-node": "^10.9.2",
    "typescript": "^5.7.2",
    "zod": "^3.24.1"
  },
  "optionalDependencies": {
    "zod": "^3.24.1"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "sideEffects": [
    "./dist/esm/index.js",
    "./dist/cjs/index.js"
  ]
}
