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

86 lines
2.0 KiB
JSON

{
"name": "@better-auth/expo",
"version": "1.4.0-beta.13",
"type": "module",
"description": "Better Auth integration for Expo and React Native applications.",
"main": "dist/index.js",
"module": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/better-auth/better-auth",
"directory": "packages/expo"
},
"homepage": "https://www.better-auth.com/docs/integrations/expo",
"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"
]
}
},
"keywords": [
"auth",
"expo",
"react-native",
"typescript",
"better-auth"
],
"publishConfig": {
"access": "public"
},
"license": "MIT",
"devDependencies": {
"@better-auth/core": "workspace:*",
"@better-fetch/fetch": "catalog:",
"@types/better-sqlite3": "^7.6.13",
"better-auth": "workspace:*",
"better-sqlite3": "^12.2.0",
"expo-constants": "~17.1.7",
"expo-crypto": "^13.0.2",
"expo-linking": "~7.1.7",
"expo-secure-store": "~14.2.3",
"expo-web-browser": "~14.2.0",
"react-native": "~0.80.2",
"tsdown": "catalog:"
},
"peerDependencies": {
"@better-auth/core": "workspace:*",
"expo-constants": ">=17.0.0",
"expo-crypto": ">=13.0.0",
"expo-linking": ">=7.0.0",
"expo-secure-store": ">=14.0.0",
"expo-web-browser": ">=14.0.0"
},
"dependencies": {
"@better-fetch/fetch": "catalog:",
"better-call": "catalog:",
"zod": "^4.1.5"
},
"files": [
"dist"
]
}