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

40 lines
918 B
JSON
Raw Normal View History

{
"name": "@hono/clerk-auth",
2024-02-10 07:47:06 +08:00
"version": "1.0.1",
"description": "A third-party Clerk auth middleware for Hono",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"build": "rimraf dist && tsc",
"prerelease": "yarn build && yarn test",
"release": "yarn publish"
},
"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": "0.30.*",
"hono": ">=3.*"
},
"devDependencies": {
"@clerk/backend": "^0.30.1",
"@types/react": "^18",
2023-12-14 17:33:01 +08:00
"hono": "^3.11.7",
"jest": "^29.7.0",
"node-fetch-native": "^1.4.0",
"react": "^18.2.0",
"rimraf": "^5.0.5"
}
}