Bluesky app fork with some witchin' additions 馃挮
0
fork

Configure Feed

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

at main 414 lines 16 kB view raw
1{ 2 "name": "witchsky-app", 3 "version": "1.122.0", 4 "private": true, 5 "engines": { 6 "node": ">=18" 7 }, 8 "packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319", 9 "expo": { 10 "autolinking": { 11 "android": { 12 "buildFromSource": [ 13 "expo-notifications", 14 "expo-haptics", 15 "expo-media-library", 16 "expo-image-picker" 17 ] 18 }, 19 "ios": { 20 "exclude": [ 21 "@assembless/react-native-material-you" 22 ] 23 } 24 }, 25 "install": { 26 "exclude": [ 27 "react-native-reanimated", 28 "@sentry/react-native", 29 "react-native-pager-view" 30 ] 31 } 32 }, 33 "scripts": { 34 "prepare": "is-ci || husky install", 35 "postinstall": "patch-package && pnpm intl:compile-if-needed", 36 "prebuild": "EXPO_NO_GIT_STATUS=1 expo prebuild --clean", 37 "windows-prebuild": "set EXPO_NO_GIT_STATUS=1&& expo prebuild --clean", 38 "android": "expo run:android", 39 "android:prod": "expo run:android --variant release", 40 "android:profile": "BSKY_PROFILE=1 expo run:android --variant release", 41 "ios": "expo run:ios", 42 "web": "rspack serve", 43 "use-build-number": "./scripts/useBuildNumberEnv.sh", 44 "use-build-number-with-bump": "./scripts/useBuildNumberEnvWithBump.sh", 45 "build-web": "NODE_ENV=production rspack build && node ./scripts/post-web-build.js", 46 "build-all": "pnpm intl:build && pnpm use-build-number-with-bump eas build --platform all", 47 "build-ios": "pnpm use-build-number-with-bump eas build -p ios", 48 "build-android": "pnpm use-build-number-with-bump eas build -p android", 49 "build": "pnpm use-build-number-with-bump eas build", 50 "build-embed": "cd bskyembed && pnpm build && pnpm build-snippet && cd .. && node ./scripts/post-embed-build.js", 51 "start": "expo start --dev-client", 52 "start:prod": "expo start --dev-client --no-dev --minify", 53 "test": "NODE_ENV=test jest --forceExit --testTimeout=20000 --bail", 54 "test-watch": "NODE_ENV=test jest --watchAll", 55 "test-ci": "NODE_ENV=test jest --ci --forceExit --reporters=default --reporters=jest-junit", 56 "test-coverage": "NODE_ENV=test jest --coverage", 57 "lint": "eslint --cache --quiet src", 58 "lint-native": "swiftlint ./modules && ktlint ./modules", 59 "lint-native:fix": "swiftlint --fix ./modules && ktlint --format ./modules", 60 "typecheck": "tsc --project ./tsconfig.check.json", 61 "e2e:mock-server": "cd dev-env && pnpm start", 62 "e2e:build": "EXPO_PUBLIC_ENV=e2e NODE_ENV=test RN_SRC_EXT=e2e.ts,e2e.tsx expo run:ios", 63 "e2e:build-android": "EXPO_PUBLIC_ENV=e2e NODE_ENV=test RN_SRC_EXT=e2e.ts,e2e.tsx expo run:android", 64 "e2e:start": "EXPO_PUBLIC_ENV=e2e NODE_ENV=test RN_SRC_EXT=e2e.ts,e2e.tsx expo start -c", 65 "e2e:run": "maestro test", 66 "perf:test": "NODE_ENV=test maestro test", 67 "perf:test:run": "NODE_ENV=test maestro test __e2e__/perf-test.yml", 68 "perf:test:measure": "NODE_ENV=test flashlight test --bundleId app.witchsky --testCommand \"pnpm perf:test\" --duration 150000 --resultsFilePath .perf/results.json", 69 "perf:test:results": "NODE_ENV=test flashlight report .perf/results.json", 70 "perf:measure": "NODE_ENV=test flashlight measure", 71 "intl:build": "pnpm intl:extract:all && pnpm intl:compile", 72 "intl:extract": "lingui extract --clean --locale en", 73 "intl:extract:all": "lingui extract --clean", 74 "intl:compile": "lingui compile", 75 "intl:compile-if-needed": "is-ci || [ -f src/locale/locales/en/messages.ts ] || pnpm intl:compile", 76 "intl:pull": "crowdin download translations --verbose -b main", 77 "intl:push": "crowdin push translations --verbose -b main", 78 "intl:push-sources": "crowdin push sources --verbose -b main", 79 "intl:release": "pnpm intl:pull && pnpm intl:extract:all", 80 "nuke": "rm -rf ./node_modules && rm -rf ./ios && rm -rf ./android", 81 "update-extensions": "bash scripts/updateExtensions.sh", 82 "export": "npx expo export --dump-sourcemap && pnpm upload-native-sourcemaps", 83 "upload-native-sourcemaps": "npx sentry-expo-upload-sourcemaps dist", 84 "make-deploy-bundle": "bash scripts/bundleUpdate.sh", 85 "generate-stats-file": "GENERATE_STATS=1 pnpm build-web", 86 "icons:optimize": "svgo -f ./assets/icons" 87 }, 88 "dependencies": { 89 "@assembless/react-native-material-you": "1.0.0-beta.4", 90 "@atproto/api": "^0.19.11", 91 "@atproto/oauth-client-browser": "^0.3.41", 92 "@atproto/oauth-client-expo": "^0.0.10", 93 "@atproto/syntax": "0.5.2", 94 "@bitdrift/react-native": "^0.6.14", 95 "@braintree/sanitize-url": "^6.0.4", 96 "@bsky.app/alf": "^0.1.8", 97 "@bsky.app/expo-guess-language": "^0.2.8", 98 "@bsky.app/expo-image-crop-tool": "^0.5.0", 99 "@bsky.app/expo-scroll-edge-effect": "^0.1.4", 100 "@bsky.app/expo-translate-text": "^0.2.9", 101 "@bsky.app/sift": "^0.3.3", 102 "@bsky.app/tapper": "^0.5.1", 103 "@bsky.app/video": "0.3.4", 104 "@discord/bottom-sheet": "github:bluesky-social/react-native-bottom-sheet", 105 "@easrng/tr58": "0.0.5", 106 "@emoji-mart/data": "^1.2.1", 107 "@emoji-mart/react": "^1.1.1", 108 "@expo/html-elements": "^0.12.5", 109 "@expo/webpack-config": "^19.0.1", 110 "@floating-ui/dom": "^1.7.6", 111 "@floating-ui/react-dom": "^2.1.8", 112 "@formatjs/intl-displaynames": "^6.8.13", 113 "@formatjs/intl-locale": "^4.2.13", 114 "@formatjs/intl-numberformat": "^8.15.6", 115 "@formatjs/intl-pluralrules": "^5.4.6", 116 "@fortawesome/fontawesome-svg-core": "^6.7.2", 117 "@fortawesome/free-regular-svg-icons": "^6.7.2", 118 "@fortawesome/free-solid-svg-icons": "^6.7.2", 119 "@fortawesome/react-native-fontawesome": "^0.3.2", 120 "@growthbook/growthbook": "^1.6.5", 121 "@growthbook/growthbook-react": "^1.6.5", 122 "@ipld/dag-cbor": "^9.2.6", 123 "@lingui/core": "^5.9.5", 124 "@lingui/react": "^5.9.5", 125 "@miblanchard/react-native-slider": "^2.6.0", 126 "@mozzius/expo-dynamic-app-icon": "^1.8.1", 127 "@react-native-async-storage/async-storage": "2.2.0", 128 "@react-navigation/bottom-tabs": "^7.15.9", 129 "@react-navigation/native": "^7.2.2", 130 "@react-navigation/native-stack": "^7.14.11", 131 "@sentry/react-native": "~6.20.0", 132 "@tanstack/query-async-storage-persister": "^5.100.1", 133 "@tanstack/react-query": "^5.100.1", 134 "@tanstack/react-query-persist-client": "^5.100.1", 135 "@tiptap/core": "^2.27.2", 136 "@tiptap/extension-document": "^2.27.2", 137 "@tiptap/extension-hard-break": "^2.27.2", 138 "@tiptap/extension-history": "^2.27.2", 139 "@tiptap/extension-mention": "^2.27.2", 140 "@tiptap/extension-paragraph": "^2.27.2", 141 "@tiptap/extension-placeholder": "^2.27.2", 142 "@tiptap/extension-text": "^2.27.2", 143 "@tiptap/html": "^2.27.2", 144 "@tiptap/pm": "^2.27.2", 145 "@tiptap/react": "^2.27.2", 146 "@tiptap/suggestion": "^2.27.2", 147 "@types/invariant": "^2.2.37", 148 "@types/lodash.throttle": "^4.1.9", 149 "@types/node": "^20.19.39", 150 "@uwx/exif-be-gone-web": "1.6.7", 151 "array.prototype.findlast": "^1.2.5", 152 "babel-plugin-transform-remove-console": "^6.9.4", 153 "base64-js": "^1.5.1", 154 "bcp-47": "^2.1.0", 155 "bcp-47-match": "^2.0.3", 156 "chroma-js": "^3.2.0", 157 "date-fns": "^2.30.0", 158 "dotenv": "^17.4.2", 159 "email-validator": "^2.0.4", 160 "emoji-mart": "^5.6.0", 161 "emoji-regex": "^10.6.0", 162 "eventemitter3": "^5.0.4", 163 "expo": "^54.0.33", 164 "expo-application": "~7.0.8", 165 "expo-blur": "~15.0.8", 166 "expo-build-properties": "~1.0.10", 167 "expo-camera": "~17.0.10", 168 "expo-clipboard": "~8.0.8", 169 "expo-contacts": "^15.0.11", 170 "expo-dev-client": "~6.0.20", 171 "expo-device": "~8.0.10", 172 "expo-file-system": "~19.0.21", 173 "expo-font": "~14.0.11", 174 "expo-glass-effect": "55.0.8", 175 "expo-haptics": "~15.0.8", 176 "expo-image": "~3.0.11", 177 "expo-image-manipulator": "~14.0.8", 178 "expo-image-picker": "~17.0.10", 179 "expo-intent-launcher": "~13.0.8", 180 "expo-keep-awake": "~15.0.8", 181 "expo-linear-gradient": "~15.0.8", 182 "expo-linking": "~8.0.11", 183 "expo-localization": "~17.0.8", 184 "expo-location": "~19.0.8", 185 "expo-media-library": "~18.2.1", 186 "expo-notifications": "~0.32.16", 187 "expo-paste-input": "^0.1.15", 188 "expo-privacy-sensitive": "^0.1.0", 189 "expo-screen-orientation": "~9.0.8", 190 "expo-sharing": "~14.0.8", 191 "expo-sms": "^14.0.8", 192 "expo-splash-screen": "~31.0.13", 193 "expo-system-ui": "~6.0.9", 194 "expo-updates": "~29.0.16", 195 "expo-video": "~3.0.16", 196 "expo-video-thumbnails": "^10.0.8", 197 "expo-web-browser": "~15.0.10", 198 "fast-deep-equal": "^3.1.3", 199 "fast-text-encoding": "^1.0.6", 200 "fuse.js": "^7.3.0", 201 "hls.js": "^1.6.16", 202 "idb-keyval": "^6.2.2", 203 "js-sha256": "^0.9.0", 204 "jwt-decode": "^4.0.0", 205 "lande": "^1.0.10", 206 "libphonenumber-js": "^1.12.42", 207 "lodash.chunk": "^4.2.0", 208 "lodash.debounce": "^4.0.8", 209 "lodash.shuffle": "^4.2.0", 210 "lodash.throttle": "^4.1.1", 211 "multiformats": "9.9.0", 212 "nanoid": "^5.1.9", 213 "normalize-url": "^8.1.1", 214 "patch-package": "^8.0.1", 215 "postinstall-postinstall": "^2.1.0", 216 "psl": "^1.15.0", 217 "radix-ui": "^1.4.3", 218 "react": "19.1.0", 219 "react-compiler-runtime": "19.1.0-rc.3", 220 "react-dom": "19.1.0", 221 "react-hotkeys-hook": "5.2.4", 222 "react-image-crop": "^11.0.10", 223 "react-is": "^19.2.5", 224 "react-keyed-flatten-children": "^5.1.2", 225 "react-native": "0.81.5", 226 "react-native-compressor": "1.13.0", 227 "react-native-date-picker": "^5.0.13", 228 "react-native-device-attest": "^0.1.6", 229 "react-native-drawer-layout": "^4.2.2", 230 "react-native-edge-to-edge": "^1.8.1", 231 "react-native-gesture-handler": "~2.28.0", 232 "react-native-keyboard-controller": "^1.21.6", 233 "react-native-mmkv": "npm:@bsky.app/react-native-mmkv@2.12.5", 234 "react-native-pager-view": "6.8.0", 235 "react-native-progress": "github:bluesky-social/react-native-progress", 236 "react-native-qrcode-styled": "^0.3.3", 237 "react-native-reanimated": "^3.19.5", 238 "react-native-safe-area-context": "~5.6.2", 239 "react-native-screens": "^4.24.0", 240 "react-native-svg": "15.12.1", 241 "react-native-uitextview": "^1.4.0", 242 "react-native-uuid": "^2.0.4", 243 "react-native-view-shot": "^4.0.3", 244 "react-native-web": "^0.21.2", 245 "react-native-web-webview": "^1.0.2", 246 "react-native-webview": "^13.16.1", 247 "react-remove-scroll-bar": "^2.3.8", 248 "react-responsive": "^10.0.1", 249 "react-textarea-autosize": "^8.5.9", 250 "setimmediate": "^1.0.5", 251 "sonner": "^2.0.7", 252 "sonner-native": "0.21.0", 253 "tippy.js": "^6.3.7", 254 "tlds": "^1.261.0", 255 "tldts": "^6.1.86", 256 "unicode-segmenter": "0.14.5", 257 "uri-js": "^4.4.1", 258 "zod": "^3.25.76" 259 }, 260 "devDependencies": { 261 "@babel/core": "7.25.2", 262 "@babel/plugin-transform-flow-strip-types": "^7.27.1", 263 "@babel/preset-env": "^7.29.2", 264 "@babel/runtime": "7.25.9", 265 "@babel/traverse": "7.25.2", 266 "@crowdin/cli": "^4.14.2", 267 "@eslint/js": "^9.39.4", 268 "@lingui/babel-plugin-lingui-macro": "^5.9.5", 269 "@lingui/cli": "^5.9.5", 270 "@lingui/vite-plugin": "^5.9.5", 271 "@pmmmwh/react-refresh-webpack-plugin": "^0.5.17", 272 "@react-native/babel-preset": "0.81.5", 273 "@react-native/typescript-config": "^0.81.6", 274 "@rspack/cli": "^2.0.0", 275 "@rspack/core": "^2.0.0", 276 "@rspack/dev-server": "^2.0.0", 277 "@sentry/vite-plugin": "^5.2.0", 278 "@sentry/webpack-plugin": "^3.6.1", 279 "@swc/core": "^1.15.30", 280 "@testing-library/react-native": "^13.3.3", 281 "@types/chroma-js": "^3.1.2", 282 "@types/culori": "^4.0.1", 283 "@types/jest": "29.5.14", 284 "@types/lodash.chunk": "^4.2.9", 285 "@types/lodash.debounce": "^4.0.9", 286 "@types/lodash.shuffle": "^4.2.9", 287 "@types/psl": "^1.11.0", 288 "@types/react": "^19.2.14", 289 "@types/react-dom": "^19.2.3", 290 "@vitejs/plugin-react": "^6.0.1", 291 "babel-jest": "^29.7.0", 292 "babel-loader": "^10.1.1", 293 "babel-plugin-module-resolver": "^5.0.3", 294 "babel-plugin-react-compiler": "19.1.0-rc.3", 295 "babel-plugin-syntax-hermes-parser": "^0.35.0", 296 "babel-preset-expo": "~54.0.10", 297 "eslint": "^9.39.4", 298 "eslint-import-resolver-typescript": "^4.4.4", 299 "eslint-plugin-bsky-internal": "link:eslint", 300 "eslint-plugin-import-x": "^4.16.2", 301 "eslint-plugin-lingui": "^0.12.0", 302 "eslint-plugin-react": "^7.37.5", 303 "eslint-plugin-react-compiler": "19.1.0-rc.2", 304 "eslint-plugin-react-hooks": "^7.1.1", 305 "eslint-plugin-react-native": "^5.0.0", 306 "eslint-plugin-react-native-a11y": "^3.5.1", 307 "eslint-plugin-simple-import-sort": "^13.0.0", 308 "file-loader": "6.2.0", 309 "globals": "^17.5.0", 310 "husky": "^8.0.3", 311 "is-ci": "^3.0.1", 312 "jest": "^29.7.0", 313 "jest-expo": "~54.0.17", 314 "jest-junit": "^16.0.0", 315 "lint-staged": "^13.3.0", 316 "lockfile-lint": "^4.14.1", 317 "prettier": "^3.8.3", 318 "react-native-dotenv": "^3.4.11", 319 "react-refresh": "^0.14.2", 320 "rspack-manifest-plugin": "^5.2.1", 321 "svgo": "^3.3.3", 322 "swc-loader": "^0.2.7", 323 "ts-plugin-sort-import-suggestions": "^1.0.4", 324 "typescript": "^6.0.3", 325 "typescript-eslint": "8.59.1-alpha.4", 326 "vite": "^8.0.10", 327 "vite-plugin-commonjs": "^0.10.4", 328 "webpack-bundle-analyzer": "^4.10.2" 329 }, 330 "jest": { 331 "preset": "jest-expo/ios", 332 "setupFilesAfterEnv": [ 333 "./jest/jestSetup.js" 334 ], 335 "moduleFileExtensions": [ 336 "ts", 337 "tsx", 338 "js", 339 "jsx", 340 "json", 341 "node" 342 ], 343 "transform": { 344 "\\.[jt]sx?$": "babel-jest" 345 }, 346 "transformIgnorePatterns": [ 347 "node_modules/(?!((jest-)?react-native|@react-native(-community)?)|@discord|expo(nent)?|@expo(nent)?/.*|@expo-google-fonts/.*|react-navigation|nanoid|@react-navigation/.*|@unimodules/.*|unimodules|sentry-expo|native-base|normalize-url|react-native-svg|@sentry/.*|sentry-expo|bcp-47-match)" 348 ], 349 "modulePathIgnorePatterns": [ 350 "__tests__/.*/__mocks__", 351 "__e2e__/.*", 352 "bskylink/.*" 353 ], 354 "coveragePathIgnorePatterns": [ 355 "<rootDir>/node_modules/", 356 "<rootDir>/src/platform", 357 "<rootDir>/src/third-party", 358 "<rootDir>/src/view/com/util", 359 "<rootDir>/src/state/lib", 360 "<rootDir>/__tests__/test-utils.js" 361 ], 362 "reporters": [ 363 "default", 364 "jest-junit" 365 ] 366 }, 367 "browserslist": { 368 "production": [ 369 ">0.2%", 370 "not dead", 371 "not op_mini all" 372 ], 373 "development": [ 374 "last 1 chrome version", 375 "last 1 firefox version", 376 "last 1 safari version" 377 ] 378 }, 379 "lint-staged": { 380 "*{.js,.jsx,.ts,.tsx}": [ 381 "eslint --cache --fix" 382 ], 383 "*{.js,.jsx,.ts,.tsx,.css}": [ 384 "prettier --cache --write --ignore-unknown" 385 ], 386 "assets/icons/*.svg": [ 387 "svgo" 388 ] 389 }, 390 "lockfile-lint": { 391 "path": "pnpm-lock.yaml", 392 "allowedHosts": [ 393 "npm", 394 "yarn" 395 ], 396 "allowedSchemes": [ 397 "https:" 398 ], 399 "allowedPackageNameAliases": [ 400 "@babel/traverse--for-generate-function-map:@babel/traverse", 401 "string-width-cjs:string-width", 402 "strip-ansi-cjs:strip-ansi", 403 "wrap-ansi-cjs:wrap-ansi" 404 ], 405 "allowedUrls": [ 406 "https://codeload.github.com/bluesky-social/react-native-bottom-sheet/tar.gz/28a87d1bb55e10fc355fa1455545a30734995908", 407 "https://codeload.github.com/bluesky-social/react-native-progress/tar.gz/5a372f4f2ce5feb26f4f47b6a4d187ab9b923ab4", 408 "https://codeload.github.com/mattermost/react-native-paste-input/tar.gz/f260447edc645a817ab1ba7b46d8341d84dba8e9" 409 ], 410 "emptyHostname": false, 411 "validatePackageNames": true, 412 "validateIntegrity": true 413 } 414}