@better-auth/expo
Version:
Better Auth integration for Expo and React Native applications.
106 lines • 2.52 kB
JSON
{
"name": "@better-auth/expo",
"version": "1.5.6",
"description": "Better Auth integration for Expo and React Native applications.",
"type": "module",
"license": "MIT",
"homepage": "https://www.better-auth.com/docs/integrations/expo",
"repository": {
"type": "git",
"url": "git+https://github.com/better-auth/better-auth.git",
"directory": "packages/expo"
},
"keywords": [
"auth",
"expo",
"react-native",
"typescript",
"better-auth"
],
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"dev-source": "./src/index.ts",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./client": {
"dev-source": "./src/client.ts",
"types": "./dist/client.d.ts",
"default": "./dist/client.js"
},
"./plugins": {
"dev-source": "./src/plugins/index.ts",
"types": "./dist/plugins/index.d.ts",
"default": "./dist/plugins/index.js"
}
},
"typesVersions": {
"*": {
"*": [
"./dist/index.d.ts"
],
"client": [
"./dist/client.d.ts"
],
"plugins": [
"./dist/plugins/index.d.ts"
]
}
},
"dependencies": {
"@better-fetch/fetch": "1.1.21",
"better-call": "1.3.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@better-fetch/fetch": "1.1.21",
"expo-constants": "~55.0.7",
"expo-linking": "~55.0.7",
"expo-network": "~55.0.8",
"expo-web-browser": "~55.0.9",
"react-native": "~0.84.1",
"tsdown": "0.21.0-beta.2",
"@better-auth/core": "1.5.6",
"better-auth": "1.5.6"
},
"peerDependencies": {
"expo-constants": ">=17.0.0",
"expo-linking": ">=7.0.0",
"expo-network": ">=8.0.7",
"expo-web-browser": ">=14.0.0",
"@better-auth/core": "1.5.6",
"better-auth": "1.5.6"
},
"peerDependenciesMeta": {
"expo-constants": {
"optional": true
},
"expo-linking": {
"optional": true
},
"expo-network": {
"optional": true
},
"expo-web-browser": {
"optional": true
}
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"lint:package": "publint run --strict",
"lint:types": "attw --profile esm-only --pack .",
"typecheck": "tsc --project tsconfig.json",
"test": "vitest",
"coverage": "vitest run --coverage --coverage.provider=istanbul"
}
}