Files
better-auth/packages/sso/package.json

80 lines
1.7 KiB
JSON

{
"name": "@better-auth/sso",
"author": "Bereket Engida",
"version": "1.4.0-beta.18",
"type": "module",
"main": "dist/index.mjs",
"homepage": "https://www.better-auth.com/docs/plugins/sso",
"repository": {
"type": "git",
"url": "https://github.com/better-auth/better-auth",
"directory": "packages/sso"
},
"license": "MIT",
"keywords": [
"sso",
"auth",
"sso",
"saml",
"oauth",
"oidc",
"openid",
"openid connect",
"openid connect",
"single sign on"
],
"publishConfig": {
"access": "public"
},
"module": "dist/index.mjs",
"description": "SSO plugin for Better Auth",
"scripts": {
"test": "vitest",
"build": "tsdown",
"dev": "tsdown --watch",
"typecheck": "tsc --project tsconfig.json"
},
"exports": {
".": {
"dev-source": "./src/index.ts",
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"./client": {
"dev-source": "./src/client.ts",
"types": "./dist/client.d.mts",
"default": "./dist/client.mjs"
}
},
"typesVersions": {
"*": {
"*": [
"./dist/index.d.mts"
],
"client": [
"./dist/client.d.mts"
]
}
},
"dependencies": {
"@better-fetch/fetch": "catalog:",
"fast-xml-parser": "^5.2.5",
"jose": "^6.1.0",
"samlify": "^2.10.1",
"zod": "^4.1.12"
},
"devDependencies": {
"@types/body-parser": "^1.19.6",
"@types/express": "^5.0.5",
"better-auth": "workspace:*",
"better-call": "catalog:",
"body-parser": "^2.2.0",
"express": "^5.1.0",
"oauth2-mock-server": "^7.2.1",
"tsdown": "catalog:"
},
"peerDependencies": {
"better-auth": "workspace:*"
}
}