{
  "name": "postgres-pool",
  "version": "11.0.5",
  "description": "Node postgres connection pool implementation for node-pg",
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "type": "module",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.mjs"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    }
  },
  "files": [
    "certs",
    "dist",
    "src",
    "!**/*.test.ts"
  ],
  "scripts": {
    "build": "unbuild && cp -R certs dist",
    "test": "npm run test:types && vitest run",
    "test:types": "tsgo --noEmit --skipLibCheck",
    "lint:markdown": "prettier --cache --write '*.md' '!(node_modules|dist)/**/*.md' && markdownlint '*.md' '!(node_modules|dist)/**/*.md' --config=.github/linters/.markdown-lint.yml --fix",
    "lint:code": "eslint --fix",
    "lint": "run-p lint:*",
    "lint-staged": "lint-staged",
    "docker:up": "docker-compose -f .devcontainer/docker-compose.yml up -d",
    "docker:down": "docker-compose -f .devcontainer/docker-compose.yml down",
    "beta": "npm publish --tag beta",
    "prepublishOnly": "pinst --disable",
    "postpublish": "pinst --enable",
    "prepare": "husky"
  },
  "lint-staged": {
    "*.md": [
      "prettier --write --cache",
      "markdownlint --config=.github/linters/.markdown-lint.yml --fix"
    ],
    "*.{js,cjs,mjs,ts}": [
      "eslint --fix"
    ],
    "*.{json5,yml}": [
      "prettier --write"
    ]
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/postgres-pool/postgres-pool.git"
  },
  "keywords": [
    "node",
    "postgres",
    "pg",
    "pool",
    "connection",
    "pooling"
  ],
  "author": "Jim Geurts <jim@biacreations.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/postgres-pool/postgres-pool/issues"
  },
  "homepage": "https://github.com/postgres-pool/postgres-pool#readme",
  "engines": {
    "node": ">=20.11.0"
  },
  "peerDependencies": {
    "pg": "^8.0.0"
  },
  "devDependencies": {
    "@faker-js/faker": "10.4.0",
    "@semantic-release/changelog": "6.0.3",
    "@semantic-release/commit-analyzer": "13.0.1",
    "@semantic-release/git": "10.0.1",
    "@semantic-release/github": "12.0.8",
    "@semantic-release/npm": "13.1.5",
    "@semantic-release/release-notes-generator": "14.1.1",
    "@types/node": ">=22",
    "@types/pg": "8.20.0",
    "@typescript/native-preview": "7.0.0-dev.20260516.1",
    "eslint": "10.4.0",
    "eslint-config-decent": "4.2.37",
    "husky": "9.1.7",
    "lint-staged": "17.0.5",
    "markdownlint-cli": "0.48.0",
    "npm-run-all2": "8.0.4",
    "pg": "8.20.0",
    "pinst": "3.0.0",
    "prettier": "3.8.3",
    "rimraf": "6.1.3",
    "semantic-release": "25.0.3",
    "strict-event-emitter-types": "2.0.0",
    "typescript": "6.0.3",
    "unbuild": "3.6.1",
    "vitest": "4.1.6"
  },
  "overrides": {
    "unbuild": {
      "typescript": "$typescript"
    }
  }
}
