Files
better-auth/packages/sso/package.json
2025-12-12 08:40:12 -08:00

84 lines
1.9 KiB
JSON

{
"name": "@better-auth/sso",
"author": "Bereket Engida",
"version": "1.4.7-beta.4",
"type": "module",
"main": "dist/index.mjs",
"types": "dist/index.d.mts",
"homepage": "https://www.better-auth.com/docs/plugins/sso",
"repository": {
"type": "git",
"url": "git+https://github.com/better-auth/better-auth.git",
"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",
"coverage": "vitest run --coverage",
"lint:package": "publint run --strict",
"lint:types": "attw --profile esm-only --pack .",
"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-call": "catalog:",
"better-auth": "workspace:*",
"body-parser": "^2.2.1",
"express": "^5.1.0",
"oauth2-mock-server": "^8.2.0",
"tsdown": "catalog:"
},
"peerDependencies": {
"better-auth": "workspace:*"
}
}