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

52 lines
1.2 KiB
JSON

{
"name": "@hono/oidc-auth",
"version": "1.0.0",
"description": "OpenID Connect Authentication middleware for Hono",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules jest --verbose --coverage",
"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/jest": "^29.5.11",
"@types/jsonwebtoken": "^9.0.5",
"hono": "^4.0.1",
"jest": "^29.7.0",
"jsonwebtoken": "^9.0.2",
"ts-jest": "^29.1.1",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"dependencies": {
"oauth4webapi": "^2.6.0"
}
}