feat: align dependencies across all projects

Dependency updates:
- Manacore mobile: Expo SDK 52 → 54, expo-router 4.x → 6.x
- Supabase: Aligned to ^2.81.1 across all projects
- TypeScript: Aligned to ~5.9.3 across all projects
- React/React Native: Updated to 19.1.0/0.81.5 in Manacore

Fixes:
- Added @types/node to shared-utils for timer types
- Updated shared package tsconfig for DOM/Node types

All shared packages now pass type-check.

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

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Till-JS 2025-11-22 23:53:07 +01:00
parent 6613f457c6
commit f3b428e5e7
17 changed files with 28669 additions and 44 deletions

View file

@ -16,7 +16,7 @@
"@supabase/supabase-js": "^2.81.1"
},
"devDependencies": {
"typescript": "^5.9.2"
"typescript": "^5.9.3"
},
"peerDependencies": {
"@manacore/shared-types": "workspace:*"

View file

@ -13,6 +13,6 @@
"clean": "rm -rf dist"
},
"devDependencies": {
"typescript": "^5.9.2"
"typescript": "^5.9.3"
}
}

View file

@ -18,6 +18,6 @@
},
"devDependencies": {
"@types/react": "^18.3.0",
"typescript": "^5.9.2"
"typescript": "^5.9.3"
}
}

View file

@ -16,6 +16,7 @@
"date-fns": "^4.1.0"
},
"devDependencies": {
"typescript": "^5.9.2"
"@types/node": "^24.10.1",
"typescript": "^5.9.3"
}
}

View file

@ -3,7 +3,8 @@
"target": "ES2020",
"module": "ESNext",
"moduleResolution": "bundler",
"lib": ["ES2020"],
"lib": ["ES2020", "DOM"],
"types": ["node"],
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,