mirror of
https://github.com/better-auth/better-auth.git
synced 2026-05-23 23:52:05 -05:00
108 lines
2.5 KiB
JSON
108 lines
2.5 KiB
JSON
{
|
|
"name": "@better-auth/expo",
|
|
"version": "1.6.0",
|
|
"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"
|
|
},
|
|
"sideEffects": false,
|
|
"scripts": {
|
|
"build": "tsdown",
|
|
"dev": "tsdown --watch",
|
|
"lint:package": "publint run --strict --pack false",
|
|
"lint:types": "attw --profile esm-only --pack .",
|
|
"typecheck": "tsc --project tsconfig.json",
|
|
"test": "vitest",
|
|
"coverage": "vitest run --coverage --coverage.provider=istanbul"
|
|
},
|
|
"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": "catalog:",
|
|
"better-call": "catalog:",
|
|
"zod": "^4.3.6"
|
|
},
|
|
"devDependencies": {
|
|
"@better-auth/core": "workspace:*",
|
|
"@better-fetch/fetch": "catalog:",
|
|
"better-auth": "workspace:*",
|
|
"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": "catalog:"
|
|
},
|
|
"peerDependencies": {
|
|
"@better-auth/core": "workspace:^",
|
|
"better-auth": "workspace:^",
|
|
"expo-constants": ">=17.0.0",
|
|
"expo-linking": ">=7.0.0",
|
|
"expo-network": ">=8.0.7",
|
|
"expo-web-browser": ">=14.0.0"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"expo-constants": {
|
|
"optional": true
|
|
},
|
|
"expo-linking": {
|
|
"optional": true
|
|
},
|
|
"expo-network": {
|
|
"optional": true
|
|
},
|
|
"expo-web-browser": {
|
|
"optional": true
|
|
}
|
|
}
|
|
}
|