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

76 lines
1.6 KiB
JSON

{
"name": "@better-auth/sso",
"author": "Bereket Engida",
"version": "1.4.0-beta.13",
"type": "module",
"main": "dist/index.js",
"license": "MIT",
"keywords": [
"sso",
"auth",
"sso",
"saml",
"oauth",
"oidc",
"openid",
"openid connect",
"openid connect",
"single sign on"
],
"publishConfig": {
"access": "public"
},
"module": "dist/index.js",
"description": "SSO plugin for Better Auth",
"scripts": {
"test": "vitest",
"build": "tsdown",
"dev": "tsdown --watch",
"typecheck": "tsc --project tsconfig.json"
},
"exports": {
".": {
"better-auth-dev-source": "./src/index.ts",
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./client": {
"better-auth-dev-source": "./src/client.ts",
"types": "./dist/client.d.ts",
"import": "./dist/client.js",
"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",
"tsdown": "catalog:"
},
"peerDependencies": {
"better-auth": "workspace:*"
}
}