Files
better-auth/packages/expo/package.json
2025-09-08 12:20:45 -07:00

73 lines
1.5 KiB
JSON

{
"name": "@better-auth/expo",
"version": "1.3.9",
"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",
"scripts": {
"test": "vitest",
"build": "unbuild --clean",
"dev": "unbuild --watch",
"stub": "unbuild --stub"
},
"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": "catalog:",
"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",
"unbuild": "^3.6.1"
},
"peerDependencies": {
"better-auth": "workspace:*"
},
"dependencies": {
"@better-fetch/fetch": "catalog:"
},
"files": [
"dist"
]
}