FONTY:
- Dodane assets/fonts/: GeneralSans Regular/Medium/Semibold (Fontshare, free
commercial) + GeistMono Regular (Vercel OFL). Pobrane jako .ttf.
- expo-font ~13.0.4 (matchuje SDK 52). Native module jest w APK bo `expo`
ciagnie expo-font jako bezposrednia zaleznosc -> useFonts dziala przez OTA
bez rebuildu.
- App.tsx: useFonts() gate (blokuje render do zaladowania, .ttf z bundla <100ms)
+ globalny Text.defaultProps fontFamily=GeneralSans-Regular dla body.
- theme.ts: fonts = { body, medium, display, mono }. RN nie syntezuje weightow
dla custom fontow, wiec 4 osobne rodziny per-weight (gotcha udokumentowany).
- Jawne fonty na high-traffic: SceneTile (title=display, meta+dur=mono),
MoviePosterCard (j.w.), navigation (taby display/medium, header display).
LOGO:
- GoonWordmark przepisany: zamiast krzywych recznych SVG path (o-ka jako
nachodzace elipsy, zniekształcone n) renderuje PRAWDZIWY tekst w General Sans
Semibold. Dwutonowy twist: "g[oo]n" ze srodkowym "oo" w oxblood.
- GoonMark (monogram): czysty SVG koncentryczny ring + dot (oxblood) — motyw
soczewki/oka. Dla app-icon/splash gdzie font niedostepny.
- Wpiety na AgeGate (wordmark 40), Login (mark 44 + wordmark 44), nav header.
OTA: c986c911-0868-44f7-9f4a-fc2a74e53095 live (23 assets, 4 fonty serwuja 200).
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
49 lines
1.4 KiB
JSON
49 lines
1.4 KiB
JSON
{
|
|
"name": "goon-mobile",
|
|
"version": "0.1.0",
|
|
"main": "App.tsx",
|
|
"scripts": {
|
|
"start": "expo start",
|
|
"android": "expo run:android",
|
|
"ios": "expo run:ios",
|
|
"web": "expo start --web",
|
|
"tsc": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@react-navigation/native": "^7.0.0",
|
|
"@react-navigation/native-stack": "^7.0.0",
|
|
"@sentry/react-native": "~6.10.0",
|
|
"@tanstack/react-query": "^5.59.0",
|
|
"expo": "~52.0.0",
|
|
"expo-asset": "~11.0.5",
|
|
"expo-build-properties": "~0.13.3",
|
|
"expo-clipboard": "~7.0.1",
|
|
"expo-font": "~13.0.4",
|
|
"expo-haptics": "~14.0.1",
|
|
"expo-image": "~2.0.7",
|
|
"expo-intent-launcher": "~12.0.2",
|
|
"expo-linear-gradient": "~14.0.2",
|
|
"expo-local-authentication": "~15.0.2",
|
|
"expo-screen-capture": "~7.0.1",
|
|
"expo-screen-orientation": "~8.0.4",
|
|
"expo-secure-store": "~14.0.0",
|
|
"expo-status-bar": "~2.0.0",
|
|
"expo-updates": "~0.27.5",
|
|
"expo-video": "~2.0.6",
|
|
"react": "18.3.1",
|
|
"react-native": "0.76.9",
|
|
"react-native-gesture-handler": "~2.20.0",
|
|
"react-native-qrcode-svg": "^6.3.21",
|
|
"react-native-safe-area-context": "4.12.0",
|
|
"react-native-screens": "~4.4.0",
|
|
"react-native-svg": "15.8.0",
|
|
"react-native-view-shot": "^5.1.0",
|
|
"react-native-webview": "13.12.5"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.25.0",
|
|
"@types/react": "~18.3.12",
|
|
"typescript": "~5.3.3"
|
|
},
|
|
"private": true
|
|
}
|