{ "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": { "test": "vitest", "build": "tsup ./src/index.ts --format esm,cjs --dts", "prerelease": "yarn build && yarn test", "release": "yarn publish" }, "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": "https://github.com/honojs/middleware.git" }, "homepage": "https://github.com/honojs/middleware", "peerDependencies": { "@clerk/backend": "^1.0.0", "hono": ">=3.*" }, "devDependencies": { "@clerk/backend": "^1.0.0", "@types/react": "^18", "hono": "^3.11.7", "node-fetch-native": "^1.4.0", "react": "^18.2.0", "tsup": "^8.0.1", "vitest": "^3.0.8" }, "engines": { "node": ">=16.x.x" } }