Bluesky app fork with some witchin' additions 馃挮
witchsky.app
bluesky
fork
client
1{
2 "name": "witchsky-app",
3 "version": "1.118.1",
4 "private": true,
5 "engines": {
6 "node": ">=18"
7 },
8 "packageManager": "yarn@1.22.22",
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 },
20 "install": {
21 "exclude": [
22 "react-native-reanimated",
23 "@sentry/react-native",
24 "react-native-pager-view"
25 ]
26 }
27 },
28 "scripts": {
29 "prepare": "is-ci || husky install",
30 "postinstall": "patch-package && yarn intl:compile-if-needed",
31 "prebuild": "EXPO_NO_GIT_STATUS=1 expo prebuild --clean",
32 "android": "expo run:android",
33 "android:prod": "expo run:android --variant release",
34 "android:profile": "BSKY_PROFILE=1 expo run:android --variant release",
35 "ios": "expo run:ios",
36 "web": "expo start --web",
37 "use-build-number": "./scripts/useBuildNumberEnv.sh",
38 "use-build-number-with-bump": "./scripts/useBuildNumberEnvWithBump.sh",
39 "build-web": "expo export:web && node ./scripts/post-web-build.js",
40 "build-all": "yarn intl:build && yarn use-build-number-with-bump eas build --platform all",
41 "build-ios": "yarn use-build-number-with-bump eas build -p ios",
42 "build-android": "yarn use-build-number-with-bump eas build -p android",
43 "build": "yarn use-build-number-with-bump eas build",
44 "build-embed": "cd bskyembed && yarn build && yarn build-snippet && cd .. && node ./scripts/post-embed-build.js",
45 "start": "expo start --dev-client",
46 "start:prod": "expo start --dev-client --no-dev --minify",
47 "test": "NODE_ENV=test jest --forceExit --testTimeout=20000 --bail",
48 "test-watch": "NODE_ENV=test jest --watchAll",
49 "test-ci": "NODE_ENV=test jest --ci --forceExit --reporters=default --reporters=jest-junit",
50 "test-coverage": "NODE_ENV=test jest --coverage",
51 "lint": "eslint --cache --quiet src",
52 "lint-native": "swiftlint ./modules && ktlint ./modules",
53 "lint-native:fix": "swiftlint --fix ./modules && ktlint --format ./modules",
54 "typecheck": "tsc --project ./tsconfig.check.json",
55 "e2e:mock-server": "NODE_ENV=development ./jest/dev-infra/with-test-redis-and-db.sh ts-node --project tsconfig.e2e.json __e2e__/mock-server.ts",
56 "e2e:build": "EXPO_PUBLIC_ENV=e2e NODE_ENV=test RN_SRC_EXT=e2e.ts,e2e.tsx expo run:ios",
57 "e2e:build-android": "EXPO_PUBLIC_ENV=e2e NODE_ENV=test RN_SRC_EXT=e2e.ts,e2e.tsx expo run:android",
58 "e2e:start": "EXPO_PUBLIC_ENV=e2e NODE_ENV=test RN_SRC_EXT=e2e.ts,e2e.tsx expo start -c",
59 "e2e:run": "maestro test",
60 "perf:test": "NODE_ENV=test maestro test",
61 "perf:test:run": "NODE_ENV=test maestro test __e2e__/perf-test.yml",
62 "perf:test:measure": "NODE_ENV=test flashlight test --bundleId app.witchsky --testCommand \"yarn perf:test\" --duration 150000 --resultsFilePath .perf/results.json",
63 "perf:test:results": "NODE_ENV=test flashlight report .perf/results.json",
64 "perf:measure": "NODE_ENV=test flashlight measure",
65 "intl:build": "yarn intl:extract:all && yarn intl:compile",
66 "intl:extract": "lingui extract --clean --locale en",
67 "intl:extract:all": "lingui extract --clean",
68 "intl:compile": "lingui compile",
69 "intl:compile-if-needed": "is-ci || [ -f src/locale/locales/en/messages.ts ] || yarn intl:compile",
70 "intl:pull": "crowdin download translations --verbose -b main",
71 "intl:push": "crowdin push translations --verbose -b main",
72 "intl:push-sources": "crowdin push sources --verbose -b main",
73 "nuke": "rm -rf ./node_modules && rm -rf ./ios && rm -rf ./android",
74 "update-extensions": "bash scripts/updateExtensions.sh",
75 "export": "npx expo export --dump-sourcemap && yarn upload-native-sourcemaps",
76 "upload-native-sourcemaps": "npx sentry-expo-upload-sourcemaps dist",
77 "make-deploy-bundle": "bash scripts/bundleUpdate.sh",
78 "generate-webpack-stats-file": "EXPO_PUBLIC_GENERATE_STATS=1 yarn build-web",
79 "open-analyzer": "EXPO_PUBLIC_OPEN_ANALYZER=1 yarn build-web",
80 "icons:optimize": "svgo -f ./assets/icons"
81 },
82 "dependencies": {
83 "@atproto/api": "^0.19.3",
84 "@bitdrift/react-native": "^0.6.8",
85 "@braintree/sanitize-url": "^6.0.2",
86 "@bsky.app/alf": "^0.1.7",
87 "@bsky.app/expo-image-crop-tool": "^0.5.0",
88 "@bsky.app/expo-translate-text": "^0.2.7",
89 "@bsky.app/react-native-mmkv": "2.12.5",
90 "@discord/bottom-sheet": "bluesky-social/react-native-bottom-sheet",
91 "@emoji-mart/data": "^1.2.1",
92 "@emoji-mart/react": "^1.1.1",
93 "@expo/html-elements": "^0.12.5",
94 "@expo/webpack-config": "^19.0.1",
95 "@floating-ui/dom": "^1.6.3",
96 "@floating-ui/react-dom": "^2.0.8",
97 "@formatjs/intl-displaynames": "^6.8.13",
98 "@formatjs/intl-locale": "^4.2.13",
99 "@formatjs/intl-numberformat": "^8.15.6",
100 "@formatjs/intl-pluralrules": "^5.4.6",
101 "@fortawesome/fontawesome-svg-core": "^6.1.1",
102 "@fortawesome/free-regular-svg-icons": "^6.1.1",
103 "@fortawesome/free-solid-svg-icons": "^6.1.1",
104 "@fortawesome/react-native-fontawesome": "^0.3.2",
105 "@growthbook/growthbook": "^1.6.5",
106 "@growthbook/growthbook-react": "^1.6.5",
107 "@haileyok/bluesky-video": "0.3.2",
108 "@ipld/dag-cbor": "^9.2.0",
109 "@lingui/core": "^5.9.2",
110 "@lingui/react": "^5.9.2",
111 "@mattermost/react-native-paste-input": "mattermost/react-native-paste-input",
112 "@miblanchard/react-native-slider": "^2.6.0",
113 "@mozzius/expo-dynamic-app-icon": "^1.8.0",
114 "@react-native-async-storage/async-storage": "2.2.0",
115 "@react-navigation/bottom-tabs": "^7.9.0",
116 "@react-navigation/native": "^7.1.26",
117 "@react-navigation/native-stack": "^7.9.0",
118 "@sentry/react-native": "~6.20.0",
119 "@tanstack/query-async-storage-persister": "^5.25.0",
120 "@tanstack/react-query": "5.25.0",
121 "@tanstack/react-query-persist-client": "^5.25.0",
122 "@tiptap/core": "^2.9.1",
123 "@tiptap/extension-document": "^2.9.1",
124 "@tiptap/extension-hard-break": "^2.9.1",
125 "@tiptap/extension-history": "^2.9.1",
126 "@tiptap/extension-mention": "^2.9.1",
127 "@tiptap/extension-paragraph": "^2.9.1",
128 "@tiptap/extension-placeholder": "^2.9.1",
129 "@tiptap/extension-text": "^2.9.1",
130 "@tiptap/html": "^2.9.1",
131 "@tiptap/pm": "^2.9.1",
132 "@tiptap/react": "^2.9.1",
133 "@tiptap/suggestion": "^2.9.1",
134 "@types/invariant": "^2.2.37",
135 "@types/lodash.throttle": "^4.1.9",
136 "@types/node": "^20.14.3",
137 "array.prototype.findlast": "^1.2.3",
138 "babel-plugin-transform-remove-console": "^6.9.4",
139 "bcp-47": "^2.1.0",
140 "bcp-47-match": "^2.0.3",
141 "chroma-js": "^3.2.0",
142 "date-fns": "^2.30.0",
143 "email-validator": "^2.0.4",
144 "emoji-mart": "^5.6.0",
145 "emoji-regex": "^10.4.0",
146 "eventemitter3": "^5.0.1",
147 "expo": "^54.0.27",
148 "expo-application": "~7.0.8",
149 "expo-blur": "~15.0.8",
150 "expo-build-properties": "~1.0.10",
151 "expo-camera": "~17.0.10",
152 "expo-clipboard": "~8.0.8",
153 "expo-contacts": "^15.0.10",
154 "expo-dev-client": "~6.0.20",
155 "expo-device": "~8.0.10",
156 "expo-file-system": "~19.0.20",
157 "expo-font": "~14.0.10",
158 "expo-haptics": "~15.0.8",
159 "expo-image": "~3.0.11",
160 "expo-image-manipulator": "~14.0.8",
161 "expo-image-picker": "~17.0.9",
162 "expo-intent-launcher": "~13.0.8",
163 "expo-keep-awake": "~15.0.8",
164 "expo-linear-gradient": "~15.0.8",
165 "expo-linking": "~8.0.10",
166 "expo-localization": "~17.0.8",
167 "expo-location": "~19.0.8",
168 "expo-media-library": "~18.2.1",
169 "expo-notifications": "~0.32.14",
170 "expo-privacy-sensitive": "^0.1.0",
171 "expo-screen-orientation": "~9.0.8",
172 "expo-sharing": "~14.0.8",
173 "expo-sms": "^14.0.7",
174 "expo-splash-screen": "~31.0.12",
175 "expo-system-ui": "~6.0.9",
176 "expo-updates": "~29.0.14",
177 "expo-video": "~3.0.15",
178 "expo-video-thumbnails": "^10.0.8",
179 "expo-web-browser": "~15.0.10",
180 "fast-deep-equal": "^3.1.3",
181 "fast-text-encoding": "^1.0.6",
182 "hls.js": "^1.6.2",
183 "idb-keyval": "^6.2.2",
184 "js-sha256": "^0.9.0",
185 "jwt-decode": "^4.0.0",
186 "lande": "^1.0.10",
187 "libphonenumber-js": "^1.12.31",
188 "lodash.chunk": "^4.2.0",
189 "lodash.debounce": "^4.0.8",
190 "lodash.shuffle": "^4.2.0",
191 "lodash.throttle": "^4.1.1",
192 "multiformats": "9.9.0",
193 "nanoid": "^5.0.5",
194 "normalize-url": "^8.0.0",
195 "patch-package": "^8.0.1",
196 "postinstall-postinstall": "^2.1.0",
197 "psl": "^1.9.0",
198 "radix-ui": "^1.4.3",
199 "react": "19.1.0",
200 "react-compiler-runtime": "^19.1.0-rc.1",
201 "react-dom": "19.1.0",
202 "react-image-crop": "^11.0.7",
203 "react-is": "19",
204 "react-keyed-flatten-children": "^5.0.0",
205 "react-native": "0.81.5",
206 "react-native-compressor": "^1.13.0",
207 "react-native-date-picker": "^5.0.13",
208 "react-native-device-attest": "^0.1.6",
209 "react-native-drawer-layout": "^4.2.1",
210 "react-native-edge-to-edge": "^1.6.0",
211 "react-native-gesture-handler": "~2.28.0",
212 "react-native-keyboard-controller": "^1.20.7",
213 "react-native-pager-view": "6.8.0",
214 "react-native-progress": "bluesky-social/react-native-progress",
215 "react-native-qrcode-styled": "^0.3.3",
216 "react-native-reanimated": "^3.19.1",
217 "react-native-safe-area-context": "~5.6.0",
218 "react-native-screens": "^4.19.0",
219 "react-native-svg": "15.12.1",
220 "react-native-uitextview": "^1.4.0",
221 "react-native-uuid": "^2.0.3",
222 "react-native-view-shot": "^4.0.3",
223 "react-native-web": "^0.21.0",
224 "react-native-web-webview": "^1.0.2",
225 "react-native-webview": "^13.13.5",
226 "react-remove-scroll-bar": "^2.3.8",
227 "react-responsive": "^10.0.1",
228 "react-textarea-autosize": "^8.5.3",
229 "setimmediate": "^1.0.5",
230 "sonner": "^2.0.7",
231 "sonner-native": "^0.21.0",
232 "tippy.js": "^6.3.7",
233 "tlds": "^1.234.0",
234 "tldts": "^6.1.46",
235 "unicode-segmenter": "^0.14.5",
236 "zod": "^3.20.2"
237 },
238 "devDependencies": {
239 "@atproto/dev-env": "^0.3.213",
240 "@babel/core": "^7.26.0",
241 "@babel/preset-env": "^7.26.0",
242 "@babel/runtime": "^7.26.0",
243 "@eslint/js": "^9.39.2",
244 "@expo/config-plugins": "~54.0.1",
245 "@lingui/babel-plugin-lingui-macro": "^5.9.2",
246 "@lingui/cli": "^5.9.2",
247 "@pmmmwh/react-refresh-webpack-plugin": "^0.5.15",
248 "@react-native/babel-preset": "0.81.5",
249 "@react-native/eslint-config": "^0.81.5",
250 "@react-native/typescript-config": "^0.81.5",
251 "@sentry/webpack-plugin": "^3.2.2",
252 "@testing-library/react-native": "^13.2.0",
253 "@types/chroma-js": "^3.1.2",
254 "@types/culori": "^4.0.1",
255 "@types/jest": "29.5.14",
256 "@types/lodash.chunk": "^4.2.7",
257 "@types/lodash.debounce": "^4.0.7",
258 "@types/lodash.shuffle": "^4.2.7",
259 "@types/psl": "^1.1.1",
260 "@types/react": "^19.1.12",
261 "@types/react-dom": "^19.1.9",
262 "babel-jest": "^29.7.0",
263 "babel-plugin-module-resolver": "^5.0.2",
264 "babel-plugin-react-compiler": "^19.1.0-rc.3",
265 "babel-preset-expo": "~54.0.0",
266 "eslint": "^9.39.2",
267 "eslint-import-resolver-typescript": "^4.4.4",
268 "eslint-plugin-bsky-internal": "link:./eslint",
269 "eslint-plugin-import-x": "^4.16.1",
270 "eslint-plugin-lingui": "^0.11.0",
271 "eslint-plugin-react": "^7.37.5",
272 "eslint-plugin-react-compiler": "^19.1.0-rc.2",
273 "eslint-plugin-react-hooks": "^7.0.1",
274 "eslint-plugin-react-native": "^5.0.0",
275 "eslint-plugin-react-native-a11y": "^3.5.1",
276 "eslint-plugin-simple-import-sort": "^12.1.1",
277 "file-loader": "6.2.0",
278 "globals": "^17.0.0",
279 "husky": "^8.0.3",
280 "is-ci": "^3.0.1",
281 "jest": "^29.7.0",
282 "jest-expo": "~54.0.14",
283 "jest-junit": "^16.0.0",
284 "lint-staged": "^13.2.3",
285 "lockfile-lint": "^4.14.0",
286 "prettier": "^3.6.0",
287 "react-native-dotenv": "^3.4.11",
288 "react-refresh": "^0.14.0",
289 "svgo": "^3.3.2",
290 "ts-node": "^10.9.1",
291 "ts-plugin-sort-import-suggestions": "^1.0.4",
292 "typescript": "^5.9.3",
293 "typescript-eslint": "^8.56.0",
294 "webpack-bundle-analyzer": "^4.10.1"
295 },
296 "resolutions": {
297 "@react-native/babel-preset": "0.81.5",
298 "@react-native/normalize-colors": "0.81.5",
299 "**/@expo/image-utils": "0.8.7",
300 "**/@react-native-async-storage/async-storage": "2.2.0",
301 "**/expo-constants": "18.0.8",
302 "**/expo-device": "7.1.4",
303 "**/multiformats": "9.9.0",
304 "unicode-segmenter": "0.14.5",
305 "@types/estree": "1.0.6"
306 },
307 "jest": {
308 "preset": "jest-expo/ios",
309 "setupFilesAfterEnv": [
310 "./jest/jestSetup.js"
311 ],
312 "moduleFileExtensions": [
313 "ts",
314 "tsx",
315 "js",
316 "jsx",
317 "json",
318 "node"
319 ],
320 "transform": {
321 "\\.[jt]sx?$": "babel-jest"
322 },
323 "transformIgnorePatterns": [
324 "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)"
325 ],
326 "modulePathIgnorePatterns": [
327 "__tests__/.*/__mocks__",
328 "__e2e__/.*"
329 ],
330 "coveragePathIgnorePatterns": [
331 "<rootDir>/node_modules/",
332 "<rootDir>/src/platform",
333 "<rootDir>/src/third-party",
334 "<rootDir>/src/view/com/util",
335 "<rootDir>/src/state/lib",
336 "<rootDir>/__tests__/test-utils.js"
337 ],
338 "reporters": [
339 "default",
340 "jest-junit"
341 ]
342 },
343 "browserslist": {
344 "production": [
345 ">0.2%",
346 "not dead",
347 "not op_mini all"
348 ],
349 "development": [
350 "last 1 chrome version",
351 "last 1 firefox version",
352 "last 1 safari version"
353 ]
354 },
355 "lint-staged": {
356 "*{.js,.jsx,.ts,.tsx}": [
357 "eslint --cache --fix"
358 ],
359 "*{.js,.jsx,.ts,.tsx,.css}": [
360 "prettier --cache --write --ignore-unknown"
361 ],
362 "assets/icons/*.svg": [
363 "svgo"
364 ]
365 },
366 "lockfile-lint": {
367 "path": "yarn.lock",
368 "allowedHosts": [
369 "npm",
370 "yarn"
371 ],
372 "allowedSchemes": [
373 "https:"
374 ],
375 "allowedPackageNameAliases": [
376 "@babel/traverse--for-generate-function-map:@babel/traverse",
377 "string-width-cjs:string-width",
378 "strip-ansi-cjs:strip-ansi",
379 "wrap-ansi-cjs:wrap-ansi"
380 ],
381 "allowedUrls": [
382 "https://codeload.github.com/bluesky-social/react-native-bottom-sheet/tar.gz/28a87d1bb55e10fc355fa1455545a30734995908",
383 "https://codeload.github.com/bluesky-social/react-native-progress/tar.gz/5a372f4f2ce5feb26f4f47b6a4d187ab9b923ab4",
384 "https://codeload.github.com/mattermost/react-native-paste-input/tar.gz/f260447edc645a817ab1ba7b46d8341d84dba8e9"
385 ],
386 "emptyHostname": false,
387 "validatePackageNames": true,
388 "validateIntegrity": true
389 }
390}