{
  "name": "@zingage/postgres-multi-tenant-ids",
  "version": "3.0.1",
  "description": "PostgreSQL IDs for secure multi-tenant applications",
  "type": "module",
  "engines": {
    "node": ">=24.0.0"
  },
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    },
    "./zod.js": {
      "import": "./dist/zod-schemas.js",
      "types": "./dist/zod-schemas.d.ts"
    },
    "./fast-check.js": {
      "import": "./dist/fast-check.js",
      "types": "./dist/fast-check.d.ts"
    }
  },
  "scripts": {
    "build": "tsc",
    "build:watch": "tsc --watch",
    "start": "node dist/index.js",
    "test:unit": "node --test dist/**/*.spec.js",
    "test:unit:watch": "node --test --watch dist/**/*.spec.js",
    "test:integration": "node --test dist/**/*.integration.spec.js",
    "test:integration:watch": "node --test --watch dist/**/*.integration.spec.js",
    "test": "npm run build && run-p test:unit test:integration",
    "test:coverage": "NODE_V8_COVERAGE=.coverage node --test dist/**/*.spec.js",
    "lint": "eslint src --ext .ts",
    "format": "prettier --write src/**/*.ts",
    "type-check": "tsc --noEmit",
    "clean": "rm -rf dist",
    "prepublishOnly": "npm run clean && npm run build"
  },
  "keywords": [
    "postgresql",
    "typescript",
    "nodejs",
    "multi-tenant",
    "security"
  ],
  "author": "",
  "devDependencies": {
    "@types/pg": "^8.11.0",
    "@typescript-eslint/eslint-plugin": "^8.0.0",
    "@typescript-eslint/parser": "^8.0.0",
    "eslint": "^9.0.0",
    "fast-check": "^4.1.1",
    "npm-run-all": "^4.1.5",
    "pg": "^8.16.2",
    "prettier": "^3.0.0",
    "typescript": "^5.8.3"
  },
  "dependencies": {
    "type-party": "^0.6.2",
    "@types/node": "^22.0.0",
    "dotenv": "^16.4.0",
    "type-fest": "^5.0.1",
    "uuid": "^11.1.0"
  },
  "peerDependencies": {
    "zod": ">=3.0.0 || >=4.0.0"
  }
}
