{ "name": "@hono/oidc-auth", "version": "1.2.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": { "@jest/globals": "^29.7.0", "@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" }, "engines": { "node": ">=18.0.0" } }