managarten/maerchenzauber/@mana-auth-mobile/package.json
Till-JS e7f5f942f3 chore: initial commit - consolidate 4 projects into monorepo
Projects included:
- maerchenzauber (NestJS backend + Expo mobile + SvelteKit web + Astro landing)
- manacore (Expo mobile + SvelteKit web + Astro landing)
- manadeck (NestJS backend + Expo mobile + SvelteKit web)
- memoro (Expo mobile + SvelteKit web + Astro landing)

This commit preserves the current state before monorepo restructuring.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-22 23:38:24 +01:00

48 lines
1.2 KiB
JSON

{
"name": "@mana/auth-mobile",
"version": "1.0.0",
"description": "Reusable Mana Core authentication package for React Native mobile apps",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "jest",
"lint": "eslint src/**/*.{ts,tsx}"
},
"keywords": [
"mana",
"authentication",
"react-native",
"jwt",
"oauth",
"mobile"
],
"author": "Mana Team",
"license": "MIT",
"peerDependencies": {
"react": ">=18.0.0",
"react-native": ">=0.70.0",
"expo": ">=49.0.0",
"expo-router": ">=3.0.0",
"@react-native-async-storage/async-storage": ">=1.18.0",
"@react-native-google-signin/google-signin": ">=10.0.0",
"expo-apple-authentication": ">=6.0.0",
"@expo/vector-icons": ">=13.0.0"
},
"dependencies": {
"base64-js": "^1.5.1"
},
"devDependencies": {
"@types/react": "^18.2.0",
"@types/react-native": "^0.72.0",
"typescript": "^5.0.0",
"eslint": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/mana/auth-mobile.git"
}
}