{ "name": "@hono/clerk-auth", "version": "2.0.0", "description": "A third-party Clerk auth middleware for Hono", "type": "module", "main": "dist/index.cjs", "module": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist" ], "scripts": { "build": "tsup ./src/index.ts", "prepack": "yarn build", "publint": "attw --pack && publint", "typecheck": "tsc -b tsconfig.json", "test": "vitest" }, "exports": { ".": { "import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "require": { "types": "./dist/index.d.cts", "default": "./dist/index.cjs" } } }, "license": "MIT", "publishConfig": { "registry": "https://registry.npmjs.org", "access": "public" }, "repository": { "type": "git", "url": "git+https://github.com/honojs/middleware.git", "directory": "packages/clerk-auth" }, "homepage": "https://github.com/honojs/middleware", "peerDependencies": { "@clerk/backend": "^1.0.0", "hono": ">=3.*" }, "devDependencies": { "@arethetypeswrong/cli": "^0.17.4", "@clerk/backend": "^1.0.0", "@types/react": "^18", "publint": "^0.3.9", "react": "^18.2.0", "tsup": "^8.4.0", "typescript": "^5.8.2", "vitest": "^3.0.8" }, "engines": { "node": ">=16.x.x" } }