{ "name": "@hono/oauth-providers", "version": "0.8.1", "repository": { "type": "git", "url": "git+https://github.com/honojs/middleware.git", "directory": "packages/oauth-providers" }, "description": "Social login for Hono JS, integrate authentication with facebook, github, google and linkedin to your projects.", "type": "module", "main": "dist/index.js", "module": "dist/index.js", "types": "dist/index.d.ts", "files": [ "./dist" ], "scripts": { "build": "tsup ./src/index.ts ./src/providers/**/index.ts ./src/providers/**/types.ts --no-splitting", "prepack": "yarn build", "publint": "attw --pack && publint", "typecheck": "tsc -b tsconfig.json", "test": "vitest" }, "exports": { ".": { "import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "require": { "types": "./dist/index.d.cts", "default": "./dist/index.cjs" } }, "./*": { "import": { "types": "./dist/providers/*/index.d.ts", "default": "./dist/providers/*/index.js" }, "require": { "types": "./dist/providers/*/index.d.cts", "default": "./dist/providers/*/index.cjs" } } }, "license": "MIT", "publishConfig": { "registry": "https://registry.npmjs.org", "access": "public" }, "typesVersions": { "*": { "facebook": [ "./dist/providers/facebook/index.d.ts" ], "github": [ "./dist/providers/github/index.d.ts" ], "google": [ "./dist/providers/google/index.d.ts" ], "linkedin": [ "./dist/providers/linkedin/index.d.ts" ], "x": [ "./dist/providers/x/index.d.ts" ], "discord": [ "./dist/providers/discord/index.d.ts" ], "twitch": [ "./dist/providers/twitch/index.d.ts" ], "msentra": [ "./dist/providers/msentra/index.d.ts" ] } }, "peerDependencies": { "hono": ">=3.*" }, "devDependencies": { "@arethetypeswrong/cli": "^0.17.4", "msw": "^2.0.11", "publint": "^0.3.9", "tsup": "^8.4.0", "typescript": "^5.8.2", "vitest": "^3.2.4" }, "engines": { "node": ">=18.4.0" } }