{
  "name": "@ackplus/nest-auth",
  "version": "2.11.1",
  "description": "Authentication & authorization for NestJS — JWT/cookie sessions, refresh-token rotation, RBAC, multi-tenancy, MFA, OAuth/social login, passwordless, API keys, and a built-in admin console.",
  "type": "commonjs",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.js",
      "default": "./dist/index.js"
    },
    "./package.json": "./package.json"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "keywords": [
    "nestjs",
    "auth",
    "authentication",
    "authorization",
    "jwt",
    "rbac",
    "multi-tenancy",
    "mfa",
    "oauth",
    "passwordless",
    "session",
    "typeorm"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/ack-solutions/nest-auth"
  },
  "license": "MIT",
  "author": "Ackplus",
  "dependencies": {
    "@node-rs/argon2": "^2.0.2",
    "deepmerge": "^4.3.1",
    "jsonwebtoken": "^9.0.0",
    "lodash": "^4.17.21",
    "ms": "^2.1.3",
    "pluralize": "^8.0.0",
    "qrcode": "^1.5.0",
    "qs": "^6.11.2",
    "speakeasy": "^2.0.0",
    "@ackplus/nest-auth-contracts": "2.11.1"
  },
  "peerDependencies": {
    "@nestjs/common": "^10 || ^11",
    "@nestjs/core": "^10 || ^11",
    "@nestjs/event-emitter": "^2 || ^3",
    "@nestjs/platform-express": "^10 || ^11",
    "@nestjs/swagger": "^10 || ^11",
    "@nestjs/typeorm": "^10 || ^11",
    "class-transformer": "^0.5.1",
    "class-validator": "^0.14.1",
    "express": "^4 || ^5",
    "reflect-metadata": "^0.1.13 || ^0.2.0",
    "rxjs": "^7.8.0",
    "typeorm": "^0.3.21"
  },
  "peerDependenciesMeta": {
    "apple-auth": {
      "optional": true
    },
    "fb": {
      "optional": true
    },
    "google-auth-library": {
      "optional": true
    }
  },
  "devDependencies": {
    "@nestjs/common": "^11.0.0",
    "@nestjs/core": "^11.0.0",
    "@nestjs/event-emitter": "^2.0.0",
    "@nestjs/platform-express": "^11.0.0",
    "@nestjs/swagger": "^8.0.0",
    "@nestjs/testing": "^11.0.0",
    "@nestjs/typeorm": "^10.0.0",
    "@types/deepmerge": "^2.2.0",
    "@types/express": "^4.17.21",
    "@types/jsonwebtoken": "^9.0.5",
    "@types/lodash": "^4.17.0",
    "@types/node": "^22.0.0",
    "@types/qrcode": "^1.5.5",
    "@types/qs": "^6.9.12",
    "@types/speakeasy": "^2.0.9",
    "@types/uuid": "^9.0.7",
    "apple-auth": "^1.0.9",
    "class-transformer": "^0.5.1",
    "class-validator": "^0.14.1",
    "express": "^4.21.2",
    "fb": "^2.0.0",
    "google-auth-library": "^9.0.0",
    "reflect-metadata": "^0.2.0",
    "rxjs": "^7.8.0",
    "sql.js": "^1.13.0",
    "sqlite3": "^5.1.7",
    "typeorm": "^0.3.21",
    "typescript": "^5.7.3",
    "uuid": "^9.0.0",
    "vitest": "^3.0.0",
    "supertest": "^7.0.0",
    "@types/supertest": "^6.0.2",
    "unplugin-swc": "^1.5.0",
    "@swc/core": "^1.7.0",
    "@ackplus/vitest-preset": "2.11.1"
  },
  "scripts": {
    "clean": "rm -rf dist tsconfig.build.tsbuildinfo",
    "generate:swagger": "node script/generate-nest-auth-swagger.mjs",
    "build": "pnpm clean && pnpm -C ../.. exec tsc -p packages/nest-auth/tsconfig.build.json && pnpm generate:swagger",
    "test": "vitest run",
    "test:watch": "vitest",
    "typecheck": "tsc --noEmit",
    "format": "prettier --write \"src/**/*.ts\"",
    "lint": "eslint \"src/**/*.ts\" --fix",
    "watch": "pnpm -C ../.. exec tsc -p packages/nest-auth/tsconfig.build.json -w"
  }
}