frontend client for gemstone. decentralised workplace app
at main 1.4 kB view raw
1{ 2 "expo": { 3 "name": "gemstone-app", 4 "slug": "gemstone-app", 5 "version": "1.0.0", 6 "orientation": "portrait", 7 "icon": "./assets/images/icon.png", 8 "scheme": "gemstoneapp", 9 "userInterfaceStyle": "automatic", 10 "newArchEnabled": true, 11 "ios": { 12 "supportsTablet": true, 13 "bundleIdentifier": "com.anonymous.gemstoneapp" 14 }, 15 "android": { 16 "adaptiveIcon": { 17 "backgroundColor": "#E6F4FE", 18 "foregroundImage": "./assets/images/android-icon-foreground.png", 19 "backgroundImage": "./assets/images/android-icon-background.png", 20 "monochromeImage": "./assets/images/android-icon-monochrome.png" 21 }, 22 "edgeToEdgeEnabled": true, 23 "predictiveBackGestureEnabled": false, 24 "package": "com.anonymous.gemstoneapp" 25 }, 26 "web": { 27 "output": "single", 28 "favicon": "./assets/images/favicon.png" 29 }, 30 "plugins": [ 31 "expo-router", 32 [ 33 "expo-splash-screen", 34 { 35 "image": "./assets/images/splash-icon.png", 36 "imageWidth": 200, 37 "resizeMode": "contain", 38 "backgroundColor": "#ffffff", 39 "dark": { 40 "backgroundColor": "#000000" 41 } 42 } 43 ], 44 "expo-web-browser", 45 "expo-font" 46 ], 47 "experiments": { 48 "typedRoutes": true, 49 "reactCompiler": true 50 } 51 } 52}