UNPKG

@better-auth/expo

Version:

This plugin integrates Better Auth with Expo, allowing you to easily add authentication to your Expo (React Native) applications. It supports both Expo native and web apps.

74 lines 1.58 kB
{ "name": "@better-auth/expo", "version": "1.3.6", "description": "", "main": "dist/index.cjs", "module": "dist/index.mjs", "repository": { "type": "git", "url": "https://github.com/better-auth/better-auth", "directory": "packages/expo" }, "homepage": "https://www.better-auth.com/docs/integrations/expo", "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" ] } }, "keywords": [ "auth", "expo", "react-native", "typescript", "better-auth" ], "publishConfig": { "access": "public" }, "license": "MIT", "devDependencies": { "@better-fetch/fetch": "^1.1.18", "better-sqlite3": "^11.6.0", "expo-constants": "~17.0.8", "expo-crypto": "^13.0.2", "expo-linking": "~7.0.5", "expo-secure-store": "~14.0.1", "expo-web-browser": "~14.0.2", "unbuild": "^3.5.0", "better-auth": "1.3.6" }, "peerDependencies": { "better-auth": "1.3.6" }, "dependencies": { "@better-fetch/fetch": "^1.1.18", "better-call": "^1.0.13", "zod": "^4.0.0" }, "files": [ "dist" ], "scripts": { "test": "vitest", "build": "unbuild --clean", "dev": "unbuild --watch", "stub": "unbuild --stub" } }