Bluesky app fork with some witchin' additions 馃挮 witchsky.app
bluesky fork client
117
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 108 lines 2.3 kB view raw
1{ 2 "cli": { 3 "version": ">= 3.8.1", 4 "promptToConfigurePushNotifications": false, 5 "appVersionSource": "remote" 6 }, 7 "build": { 8 "base": { 9 "node": "20.19.4" 10 }, 11 "development": { 12 "extends": "base", 13 "developmentClient": true, 14 "distribution": "internal", 15 "channel": "development", 16 "ios": { 17 "simulator": true, 18 "resourceClass": "large" 19 }, 20 "env": { 21 "EXPO_PUBLIC_ENV": "production" 22 } 23 }, 24 "preview": { 25 "extends": "base", 26 "distribution": "internal", 27 "channel": "production", 28 "ios": { 29 "resourceClass": "large" 30 }, 31 "env": { 32 "EXPO_PUBLIC_ENV": "production" 33 } 34 }, 35 "production": { 36 "extends": "base", 37 "ios": { 38 "resourceClass": "large", 39 "autoIncrement": true, 40 "buildArtifactPaths": ["ios/build/*"] 41 }, 42 "android": { 43 "autoIncrement": true 44 }, 45 "channel": "production", 46 "env": { 47 "EXPO_PUBLIC_ENV": "production" 48 } 49 }, 50 "production-apk": { 51 "extends": "base", 52 "distribution": "internal", 53 "ios": { 54 "autoIncrement": false, 55 "buildArtifactPaths": ["ios/build/*"] 56 }, 57 "android": { 58 "autoIncrement": false 59 }, 60 "channel": "production", 61 "env": { 62 "EXPO_PUBLIC_ENV": "production" 63 } 64 }, 65 "testflight": { 66 "extends": "base", 67 "ios": { 68 "autoIncrement": true, 69 "buildArtifactPaths": ["ios/build/*"] 70 }, 71 "android": { 72 "autoIncrement": true 73 }, 74 "channel": "testflight", 75 "env": { 76 "EXPO_PUBLIC_ENV": "testflight" 77 } 78 }, 79 "testflight-android": { 80 "extends": "base", 81 "distribution": "internal", 82 "ios": { 83 "autoIncrement": true, 84 "buildArtifactPaths": ["ios/build/*"] 85 }, 86 "android": { 87 "autoIncrement": true 88 }, 89 "channel": "testflight", 90 "env": { 91 "EXPO_PUBLIC_ENV": "testflight" 92 } 93 }, 94 "sideload-android": { 95 "extends": "production", 96 "android": { 97 "buildType": "apk" 98 } 99 } 100 }, 101 "submit": { 102 "production": { 103 "ios": { 104 "ascAppId": "6444370199" 105 } 106 } 107 } 108}