Update app.json config and add new dependencies in package.json. Update .gitignore for new patterns. Add timed-exercise editor/list components, warmup/stretch video migration, and Supabase helpers in admin-web. Relocate agent skills from .agents/skills/ to .opencode/skills/.
92 lines
2.7 KiB
JSON
92 lines
2.7 KiB
JSON
{
|
|
"expo": {
|
|
"name": "TabataFit",
|
|
"slug": "tabatafit",
|
|
"version": "1.0.0",
|
|
"orientation": "portrait",
|
|
"icon": "./assets/images/icon.png",
|
|
"scheme": "tabatafit",
|
|
"userInterfaceStyle": "automatic",
|
|
"newArchEnabled": true,
|
|
"ios": {
|
|
"supportsTablet": true,
|
|
"bundleIdentifier": "com.millianlmx.tabatafit",
|
|
"buildNumber": "1",
|
|
"infoPlist": {
|
|
"NSHealthShareUsageDescription": "TabataFit uses HealthKit to read and write workout data including heart rate, calories burned, and exercise minutes.",
|
|
"NSHealthUpdateUsageDescription": "TabataFit saves your workout sessions to Apple Health so you can track your fitness progress.",
|
|
"NSCameraUsageDescription": "TabataFit uses the camera for profile photos and workout form checks.",
|
|
"NSUserTrackingUsageDescription": "TabataFit uses this to provide personalized workout recommendations.",
|
|
"ITSAppUsesNonExemptEncryption": false
|
|
},
|
|
"config": {
|
|
"usesNonExemptEncryption": false
|
|
},
|
|
"associatedDomains": [
|
|
"applinks:tabatafit.app"
|
|
]
|
|
},
|
|
"android": {
|
|
"adaptiveIcon": {
|
|
"backgroundColor": "#E6F4FE",
|
|
"foregroundImage": "./assets/images/android-icon-foreground.png",
|
|
"backgroundImage": "./assets/images/android-icon-background.png",
|
|
"monochromeImage": "./assets/images/android-icon-monochrome.png"
|
|
},
|
|
"edgeToEdgeEnabled": true,
|
|
"predictiveBackGestureEnabled": false,
|
|
"package": "com.millianlmx.tabatafit",
|
|
"intentFilters": [
|
|
{
|
|
"action": "VIEW",
|
|
"autoVerify": true,
|
|
"data": [
|
|
{
|
|
"scheme": "https",
|
|
"host": "tabatafit.app",
|
|
"pathPrefix": "/workout"
|
|
},
|
|
{
|
|
"scheme": "https",
|
|
"host": "tabatafit.app",
|
|
"pathPrefix": "/player"
|
|
},
|
|
{
|
|
"scheme": "https",
|
|
"host": "tabatafit.app",
|
|
"pathPrefix": "/program"
|
|
}
|
|
],
|
|
"category": ["BROWSABLE", "DEFAULT"]
|
|
}
|
|
]
|
|
},
|
|
"web": {
|
|
"output": "static",
|
|
"favicon": "./assets/images/favicon.png"
|
|
},
|
|
"plugins": [
|
|
"expo-router",
|
|
[
|
|
"expo-splash-screen",
|
|
{
|
|
"image": "./assets/images/splash-icon.png",
|
|
"imageWidth": 200,
|
|
"resizeMode": "contain",
|
|
"backgroundColor": "#ffffff",
|
|
"dark": {
|
|
"backgroundColor": "#000000"
|
|
}
|
|
}
|
|
],
|
|
"expo-video",
|
|
"expo-localization",
|
|
"./plugins/withStoreKitConfig"
|
|
],
|
|
"experiments": {
|
|
"typedRoutes": true,
|
|
"reactCompiler": true
|
|
}
|
|
}
|
|
}
|