{
  "name": "@clerk/express",
  "version": "2.1.40",
  "description": "Clerk server SDK for usage with Express",
  "keywords": [
    "clerk",
    "sdk",
    "express"
  ],
  "homepage": "https://clerk.com/",
  "bugs": {
    "url": "https://github.com/clerk/javascript/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/clerk/javascript.git",
    "directory": "packages/express"
  },
  "license": "MIT",
  "author": {
    "name": "Clerk, Inc.",
    "email": "support@clerk.com",
    "url": "git+https://github.com/clerk/javascript.git"
  },
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.mts",
        "default": "./dist/index.mjs"
      },
      "require": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      }
    },
    "./webhooks": {
      "import": {
        "types": "./dist/webhooks.d.mts",
        "default": "./dist/webhooks.mjs"
      },
      "require": {
        "types": "./dist/webhooks.d.ts",
        "default": "./dist/webhooks.js"
      }
    },
    "./types": {
      "import": {
        "types": "./dist/types.d.mts"
      },
      "require": {
        "types": "./dist/types.d.ts"
      }
    },
    "./env": "./env.d.ts",
    "./package.json": "./package.json"
  },
  "main": "./dist/index.js",
  "files": [
    "dist",
    "webhooks",
    "env.d.ts"
  ],
  "dependencies": {
    "tslib": "2.8.1",
    "@clerk/backend": "^3.11.4",
    "@clerk/shared": "^4.25.2"
  },
  "devDependencies": {
    "@types/express": "^4.17.25",
    "@types/supertest": "^6.0.3",
    "express": "^4.22.2",
    "supertest": "^6.3.4"
  },
  "peerDependencies": {
    "express": "^4.17.0 || ^5.0.0"
  },
  "engines": {
    "node": ">=20.9.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "pnpm clean && tsdown",
    "clean": "rimraf ./dist",
    "dev": "tsdown --watch",
    "dev:pub": "pnpm dev -- --env.publish",
    "format": "node ../../scripts/format-package.mjs",
    "format:check": "node ../../scripts/format-package.mjs --check",
    "lint": "eslint src",
    "lint:attw": "attw --pack . --profile node16",
    "lint:publint": "publint",
    "test": "vitest run",
    "test:watch": "vitest watch"
  }
}