honojs-middleware/packages/clerk-auth/package.json

58 lines
1.3 KiB
JSON
Raw Normal View History

{
"name": "@hono/clerk-auth",
2024-04-25 21:46:58 +08:00
"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",
2023-12-14 17:33:01 +08:00
"hono": "^3.11.7",
"node-fetch-native": "^1.4.0",
"react": "^18.2.0",
"tsup": "^8.0.1",
"typescript": "^5.8.2",
"vitest": "^3.0.8"
},
"engines": {
"node": ">=16.x.x"
}
}