{
  "name": "@byline/auth",
  "private": false,
  "license": "MPL-2.0",
  "version": "6.6.0",
  "engines": {
    "node": ">=20.9.0"
  },
  "description": "Byline CMS auth primitives — actors, abilities, request context, session provider interface",
  "keywords": [
    "cms",
    "headless cms",
    "content management",
    "authentication",
    "authorization"
  ],
  "homepage": "https://github.com/Byline-CMS/bylinecms.dev",
  "bugs": {
    "url": "https://github.com/Byline-CMS/bylinecms.dev/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Byline-CMS/bylinecms.dev.git",
    "directory": "packages/auth"
  },
  "type": "module",
  "main": "dist/index.js",
  "index": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.js"
    },
    "./package.json": "./package.json"
  },
  "files": [
    "dist"
  ],
  "dependencies": {
    "uuid": "^14.0.2"
  },
  "devDependencies": {
    "@biomejs/biome": "2.5.14",
    "@types/node": "^26.6.2",
    "chokidar": "^5.0.0",
    "chokidar-cli": "^3.0.0",
    "npm-run-all": "^4.1.5",
    "tsc-alias": "^1.9.5",
    "typescript": "^7.0.2",
    "vitest": "^5.0.1"
  },
  "publishConfig": {
    "access": "public",
    "index": "dist/index.js",
    "registry": "https://registry.npmjs.org/"
  },
  "scripts": {
    "dev": "chokidar 'src/**/*' -c 'npm-run-all build'",
    "build": "tsc -p tsconfig.json && tsc-alias",
    "clean": "node scripts/clean.js node_modules dist build .turbo",
    "lint": "biome check --write --unsafe --diagnostic-level=error",
    "test": "vitest run --mode=node",
    "test:watch": "vitest --mode=node",
    "typecheck": "tsc --noEmit"
  }
}