{
  "name": "@verdaccio/active-directory",
  "version": "10.3.1",
  "description": "Active Directory authentication plugin for Verdaccio",
  "keywords": [
    "verdaccio",
    "active-directory",
    "auth",
    "plugin"
  ],
  "author": "Sergio Herrera <sergio@sergiohgz.eu>",
  "license": "MIT",
  "homepage": "https://verdaccio.org",
  "repository": {
    "type": "git",
    "url": "https://github.com/verdaccio/monorepo",
    "directory": "plugins/active-directory"
  },
  "bugs": {
    "url": "https://github.com/verdaccio/monorepo/issues"
  },
  "publishConfig": {
    "access": "public"
  },
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "files": [
    "lib"
  ],
  "engines": {
    "node": ">=18"
  },
  "dependencies": {
    "@verdaccio/core": "8.0.0-next-8.21",
    "activedirectory2": "2.2.0"
  },
  "devDependencies": {
    "@types/activedirectory2": "^1.2.1",
    "@verdaccio/legacy-types": "1.0.2"
  },
  "funding": {
    "type": "opencollective",
    "url": "https://opencollective.com/verdaccio"
  },
  "scripts": {
    "clean": "rimraf ./build",
    "test": "cross-env NODE_ENV=test BABEL_ENV=test jest",
    "type-check": "tsc --noEmit -p tsconfig.build.json",
    "build:types": "tsc --emitDeclarationOnly -p tsconfig.build.json",
    "build:js": "babel src/ --out-dir lib/ --copy-files --extensions \".ts,.tsx\" --source-maps",
    "watch": "pnpm build:js -- --watch",
    "build": "pnpm run build:js && pnpm run build:types"
  }
}