{
  "name": "ldapts",
  "version": "7.4.0",
  "description": "LDAP client",
  "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": [
    "dist",
    "src"
  ],
  "scripts": {
    "build": "unbuild",
    "test": "npm run test:types && mocha \"tests/**/*.tests.ts\"",
    "test:types": "tsc --noEmit --skipLibCheck",
    "lint:markdown": "prettier --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 up -d --wait",
    "docker:down": "docker compose down",
    "beta": "npm publish --tag beta",
    "prepublishOnly": "pinst --disable",
    "postpublish": "pinst --enable",
    "prepare": "husky"
  },
  "lint-staged": {
    "*.md": [
      "prettier --write",
      "markdownlint --config=.github/linters/.markdown-lint.yml --fix"
    ],
    "*.{cjs,mjs,ts}": [
      "eslint --fix"
    ],
    "*.{json5,yml}": [
      "prettier --write"
    ]
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ldapts/ldapts.git"
  },
  "engines": {
    "node": ">=18"
  },
  "keywords": [
    "ldap",
    "active",
    "directory"
  ],
  "author": "jim@biacreations.com",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/ldapts/ldapts/issues"
  },
  "homepage": "https://github.com/ldapts/ldapts#readme",
  "dependencies": {
    "@types/asn1": ">=0.2.4",
    "asn1": "0.2.6",
    "debug": "4.4.0",
    "strict-event-emitter-types": "2.0.0",
    "uuid": "11.1.0",
    "whatwg-url": "14.2.0"
  },
  "devDependencies": {
    "@semantic-release/changelog": "6.0.3",
    "@semantic-release/commit-analyzer": "13.0.1",
    "@semantic-release/git": "10.0.1",
    "@semantic-release/github": "11.0.1",
    "@semantic-release/npm": "12.0.1",
    "@semantic-release/release-notes-generator": "14.0.3",
    "@types/chai": "5.2.1",
    "@types/chai-as-promised": "8.0.2",
    "@types/debug": "4.1.12",
    "@types/mocha": "10.0.10",
    "@types/node": ">=22",
    "@types/sinon": "17.0.4",
    "@types/whatwg-url": "13.0.0",
    "chai": "5.2.0",
    "chai-as-promised": "8.0.1",
    "eslint": "9.24.0",
    "eslint-config-decent": "2.6.4",
    "husky": "9.1.7",
    "lint-staged": "15.5.0",
    "markdownlint-cli": "0.44.0",
    "mocha": "11.1.0",
    "node-forge": "1.3.1",
    "npm-run-all2": "7.0.2",
    "pinst": "3.0.0",
    "prettier": "3.5.3",
    "semantic-release": "24.2.3",
    "sinon": "20.0.0",
    "ts-mockito": "2.6.1",
    "tsx": "4.19.3",
    "typescript": "5.8.3",
    "unbuild": "3.5.0"
  }
}
