mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-15 08:01:09 +02:00
Move inactive projects out of active workspace: - bauntown (community website) - maerchenzauber (AI story generation) - memoro (voice memo app) - news (news aggregation) - nutriphi (nutrition tracking) - reader (reading app) - uload (URL shortener) - wisekeep (AI wisdom extraction) Update CLAUDE.md documentation: - Add presi to active projects - Document archived projects section - Update workspace configuration Archived apps can be re-activated by moving back to apps/ 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
48 lines
1.1 KiB
JSON
48 lines
1.1 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"
|
|
}
|
|
}
|