53 lines
1.1 KiB
JSON
53 lines
1.1 KiB
JSON
{
|
|
"name": "@hono/oidc-auth",
|
|
"version": "1.5.0",
|
|
"description": "OpenID Connect Authentication middleware for Hono",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"test": "vitest",
|
|
"build": "tsup ./src/index.ts --format esm --dts",
|
|
"prerelease": "yarn build && yarn test",
|
|
"release": "yarn prerelease && yarn npm publish"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"import": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
}
|
|
}
|
|
},
|
|
"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": {
|
|
"hono": ">=3.*"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jsonwebtoken": "^9.0.5",
|
|
"hono": "^4.0.1",
|
|
"jsonwebtoken": "^9.0.2",
|
|
"tsup": "^8.0.1",
|
|
"typescript": "^5.3.3",
|
|
"vitest": "^3.0.8"
|
|
},
|
|
"dependencies": {
|
|
"oauth4webapi": "^2.6.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
}
|
|
}
|