Files
better-auth/packages/sso/package.json
2025-09-09 17:22:55 -07:00

73 lines
1.5 KiB
JSON

{
"name": "@better-auth/sso",
"author": "Bereket Engida",
"version": "1.3.9",
"main": "dist/index.cjs",
"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": "unbuild",
"typecheck": "tsc --noEmit",
"dev": "unbuild --watch"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./client": {
"types": "./dist/client.d.ts",
"import": "./dist/client.mjs",
"require": "./dist/client.cjs"
}
},
"typesVersions": {
"*": {
"*": [
"./dist/index.d.ts"
],
"client": [
"./dist/client.d.ts"
]
}
},
"dependencies": {
"@better-fetch/fetch": "catalog:",
"fast-xml-parser": "^5.2.5",
"jose": "^6.1.0",
"oauth2-mock-server": "^7.2.1",
"samlify": "^2.10.1",
"zod": "^4.1.5"
},
"devDependencies": {
"@types/body-parser": "^1.19.6",
"@types/express": "^5.0.3",
"better-auth": "workspace:^",
"better-call": "catalog:",
"body-parser": "^2.2.0",
"express": "^5.1.0",
"unbuild": "catalog:"
},
"peerDependencies": {
"better-auth": "workspace:*"
}
}