An application to use Bluesky lexicons in a slightly different way
at main 1.2 kB view raw
1{ 2 "expo": { 3 "name": "rabbit", 4 "slug": "rabbit", 5 "version": "1.0.0", 6 "orientation": "portrait", 7 "icon": ".src/assets/images/icon.png", 8 "scheme": "rabbit", 9 "userInterfaceStyle": "automatic", 10 "newArchEnabled": true, 11 "ios": { 12 "supportsTablet": true 13 }, 14 "android": { 15 "adaptiveIcon": { 16 "backgroundColor": "#E6F4FE", 17 "foregroundImage": ".src/assets/images/android-icon-foreground.png", 18 "backgroundImage": ".src/assets/images/android-icon-background.png", 19 "monochromeImage": ".src/assets/images/android-icon-monochrome.png" 20 }, 21 "edgeToEdgeEnabled": true, 22 "predictiveBackGestureEnabled": false 23 }, 24 "web": { 25 "output": "static", 26 "favicon": ".src/assets/images/favicon.png" 27 }, 28 "plugins": [ 29 "expo-router", 30 [ 31 "expo-splash-screen", 32 { 33 "image": ".src/assets/images/splash-icon.png", 34 "imageWidth": 200, 35 "resizeMode": "contain", 36 "backgroundColor": "#ffffff", 37 "dark": { 38 "backgroundColor": "#000000" 39 } 40 } 41 ] 42 ], 43 "experiments": { 44 "typedRoutes": true, 45 "reactCompiler": true 46 } 47 } 48}