diff --git a/.eslintrc.js b/.eslintrc.js index 585ab5f4..7575f6c8 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -19,8 +19,13 @@ module.exports = { plugins: ['prettier'], rules: { // Place to specify ESLint rules. Can be used to overwrite rules specified from the extended configs + '@typescript-eslint/no-unused-expressions': [ + 'error', + { allowShortCircuit: true, allowTernary: true }, + ], + // RN does require to load local src + '@typescript-eslint/no-require-imports': 'off', // HACK: i'm too lazy to build bilibili data types so off it goes - '@typescript-eslint/no-explicit-any': 'off', '@typescript-eslint/consistent-type-definitions': 'error', 'react/react-in-jsx-scope': 'off', diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index 132449f9..fade4920 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -14,15 +14,13 @@ android:maxSdkVersion="28" /> + android:usesCleartextTraffic="false"> diff --git a/package.json b/package.json index d61728c3..9709eab3 100644 --- a/package.json +++ b/package.json @@ -61,7 +61,7 @@ "deepmerge": "^4.3.1", "dropbox": "git+https://lovegaoshi@github.com/lovegaoshi/dropbox-sdk-js.git", "event-target-polyfill": "^0.0.4", - "expo": "^52.0.14", + "expo": "^52.0.15", "expo-auth-session": "~6.0.1", "expo-clipboard": "~7.0.0", "expo-crypto": "~14.0.1", @@ -73,7 +73,8 @@ "fflate": "^0.8.2", "ffmpeg-kit-react-native": "^6.0.2", "he": "^1.2.0", - "i18next": "^24.0.5", + "i18next": "23.16.8", + "intl-pluralrules": "^2.0.1", "js-base64": "^3.7.7", "libmuse": "https://github.com/lovegaoshi/muse.git#commit=0bffe2319baf825037bece6869d360d6d307eb72", "lodash": "^4.17.21", @@ -100,14 +101,14 @@ "react-native-lyric": "https://lovegaoshi@github.com/lovegaoshi/react-native-lyric.git#commit=6f20e83948c29b0d46833ab9173cd81f99d0ab48", "react-native-pager-view": "6.6.1", "react-native-paper": "^5.12.5", - "react-native-purchases": "^8.3.0", + "react-native-purchases": "^8.4.0", "react-native-qrcode-svg": "^6.3.12", "react-native-reanimated": "3.16.3", "react-native-safe-area-context": "^4.14.0", "react-native-screens": "4.3.0", "react-native-shadow-2": "^7.1.1", "react-native-share-menu": "git+https://github.com/Expensify/react-native-share-menu.git", - "react-native-svg": "15.10.0", + "react-native-svg": "15.10.1", "react-native-svga-player": "https://lovegaoshi@github.com/lovegaoshi/react-native-svga-player.git#commit=f8c6303fddb528a1a94d2ab4696c9318c0002cfd", "react-native-text-ticker": "https://lovegaoshi@github.com/lovegaoshi/react-native-text-ticker.git#commit=b9eb454b18bb621a769ce4b57b4603a81501b477", "react-native-track-player": "https://github.com/lovegaoshi/react-native-track-player.git#commit=71b08733e6f680db10613036c450509c855917ea", @@ -149,8 +150,8 @@ "@types/react-native-share-menu": "^5.0.5", "@types/react-test-renderer": "^18.3.0", "@types/uuid": "^10.0.0", - "@typescript-eslint/eslint-plugin": "^7.18.0", - "@typescript-eslint/parser": "^7.18.0", + "@typescript-eslint/eslint-plugin": "^8.17.0", + "@typescript-eslint/parser": "^8.17.0", "@welldone-software/why-did-you-render": "^8.0.3", "argparse": "^2.0.1", "babel-jest": "^29.7.0", diff --git a/src/localization/i18n.ts b/src/localization/i18n.ts index d677e1e1..06191714 100644 --- a/src/localization/i18n.ts +++ b/src/localization/i18n.ts @@ -1,4 +1,5 @@ // src/localization/i18n.ts +import 'intl-pluralrules'; import i18n from 'i18next'; import { initReactI18next } from 'react-i18next'; import translationEN from './en/translation.json'; diff --git a/src/utils/BiliFetch.ts b/src/utils/BiliFetch.ts index 87c3219b..a44f257d 100644 --- a/src/utils/BiliFetch.ts +++ b/src/utils/BiliFetch.ts @@ -2,7 +2,7 @@ import Bottleneck from 'bottleneck'; export const DEFAULT_UA = - 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0'; + 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:132.0) Gecko/20100101 Firefox/132.0'; export const parseBodyParams = (body: any) => { const formBody = []; diff --git a/src/utils/mediafetch/biliuser.ts b/src/utils/mediafetch/biliuser.ts index 27a57eab..18ffab56 100644 --- a/src/utils/mediafetch/biliuser.ts +++ b/src/utils/mediafetch/biliuser.ts @@ -7,6 +7,7 @@ const API = 'https://api.bilibili.com/x/space/wbi/acc/info?mid={mid}'; export const getBiliUser = async (mid: string) => { const res = await wbiQuery( API.replace('{mid}', mid) + `${getDm()}${await getWebid(mid)}`, + { headers: { Referer: 'https://space.bilibili.com/' } }, ); const json = await res.json(); return json.data; diff --git a/yarn.lock b/yarn.lock index 976eb3a8..2594623b 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1783,9 +1783,9 @@ __metadata: languageName: node linkType: hard -"@expo/cli@npm:0.22.0": - version: 0.22.0 - resolution: "@expo/cli@npm:0.22.0" +"@expo/cli@npm:0.22.1": + version: 0.22.1 + resolution: "@expo/cli@npm:0.22.1" dependencies: "@0no-co/graphql.web": "npm:^1.0.8" "@babel/runtime": "npm:^7.20.0" @@ -1860,7 +1860,7 @@ __metadata: ws: "npm:^8.12.1" bin: expo-internal: build/bin/cli - checksum: 10c0/f3d5b9c4e0c1e4597fc43f46cb206a3115d6215b25a0e155443773ff402d2261de6390b6cd131cfc9f50c26cff8fff18d2b97304021dd62788474364b3d87391 + checksum: 10c0/a5ccae06e064c2ac64d3797b551d705164e0663d5197af746e7152ab26af3eba969bc1ec5532c189a57e18f8007d80790d9cf51f57a2935f5d4a2771c9fc62f9 languageName: node linkType: hard @@ -1996,9 +1996,9 @@ __metadata: languageName: node linkType: hard -"@expo/config@npm:~10.0.5": - version: 10.0.5 - resolution: "@expo/config@npm:10.0.5" +"@expo/config@npm:~10.0.6": + version: 10.0.6 + resolution: "@expo/config@npm:10.0.6" dependencies: "@babel/code-frame": "npm:~7.10.4" "@expo/config-plugins": "npm:~9.0.10" @@ -2013,7 +2013,7 @@ __metadata: semver: "npm:^7.6.0" slugify: "npm:^1.3.4" sucrase: "npm:3.35.0" - checksum: 10c0/3a4932d2cc3d9d4f806185946dcdcc8b1386d4efd6cd2a07056b938379997e771628e02a3cba862c117f591436b56e4289545ca7dde73a71536577e85cd6f552 + checksum: 10c0/1fdf47ea0e268b475e30e02ebdc1f6739c0b426a4c6c695a7b4ee680109258b4ccfbd3010d3bd031a6efcd7a861670be84d10cd0019d0f5d14dc669a5039b860 languageName: node linkType: hard @@ -4649,26 +4649,26 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/eslint-plugin@npm:^7.18.0": - version: 7.18.0 - resolution: "@typescript-eslint/eslint-plugin@npm:7.18.0" +"@typescript-eslint/eslint-plugin@npm:^8.17.0": + version: 8.17.0 + resolution: "@typescript-eslint/eslint-plugin@npm:8.17.0" dependencies: "@eslint-community/regexpp": "npm:^4.10.0" - "@typescript-eslint/scope-manager": "npm:7.18.0" - "@typescript-eslint/type-utils": "npm:7.18.0" - "@typescript-eslint/utils": "npm:7.18.0" - "@typescript-eslint/visitor-keys": "npm:7.18.0" + "@typescript-eslint/scope-manager": "npm:8.17.0" + "@typescript-eslint/type-utils": "npm:8.17.0" + "@typescript-eslint/utils": "npm:8.17.0" + "@typescript-eslint/visitor-keys": "npm:8.17.0" graphemer: "npm:^1.4.0" ignore: "npm:^5.3.1" natural-compare: "npm:^1.4.0" ts-api-utils: "npm:^1.3.0" peerDependencies: - "@typescript-eslint/parser": ^7.0.0 - eslint: ^8.56.0 + "@typescript-eslint/parser": ^8.0.0 || ^8.0.0-alpha.0 + eslint: ^8.57.0 || ^9.0.0 peerDependenciesMeta: typescript: optional: true - checksum: 10c0/2b37948fa1b0dab77138909dabef242a4d49ab93e4019d4ef930626f0a7d96b03e696cd027fa0087881c20e73be7be77c942606b4a76fa599e6b37f6985304c3 + checksum: 10c0/d78778173571a9a1370345bc2aa3e850235a489d16b8a8b5ba3086b988bbef7549bdae38e509d7a679ba3179c688cc5a408376b158be402770836e94ffc9602d languageName: node linkType: hard @@ -4712,21 +4712,21 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/parser@npm:^7.18.0": - version: 7.18.0 - resolution: "@typescript-eslint/parser@npm:7.18.0" +"@typescript-eslint/parser@npm:^8.17.0": + version: 8.17.0 + resolution: "@typescript-eslint/parser@npm:8.17.0" dependencies: - "@typescript-eslint/scope-manager": "npm:7.18.0" - "@typescript-eslint/types": "npm:7.18.0" - "@typescript-eslint/typescript-estree": "npm:7.18.0" - "@typescript-eslint/visitor-keys": "npm:7.18.0" + "@typescript-eslint/scope-manager": "npm:8.17.0" + "@typescript-eslint/types": "npm:8.17.0" + "@typescript-eslint/typescript-estree": "npm:8.17.0" + "@typescript-eslint/visitor-keys": "npm:8.17.0" debug: "npm:^4.3.4" peerDependencies: - eslint: ^8.56.0 + eslint: ^8.57.0 || ^9.0.0 peerDependenciesMeta: typescript: optional: true - checksum: 10c0/370e73fca4278091bc1b657f85e7d74cd52b24257ea20c927a8e17546107ce04fbf313fec99aed0cc2a145ddbae1d3b12e9cc2c1320117636dc1281bcfd08059 + checksum: 10c0/2543deadf01302a92d3b6f58a4c14f98d8936c4d976e7da05e3bb65608f19d8de93b25282e343c304eca3e3f37f2ac23e97fa9c11c6edff36dd2d4f6b601a630 languageName: node linkType: hard @@ -4758,16 +4758,6 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/scope-manager@npm:7.18.0": - version: 7.18.0 - resolution: "@typescript-eslint/scope-manager@npm:7.18.0" - dependencies: - "@typescript-eslint/types": "npm:7.18.0" - "@typescript-eslint/visitor-keys": "npm:7.18.0" - checksum: 10c0/038cd58c2271de146b3a594afe2c99290034033326d57ff1f902976022c8b0138ffd3cb893ae439ae41003b5e4bcc00cabf6b244ce40e8668f9412cc96d97b8e - languageName: node - linkType: hard - "@typescript-eslint/scope-manager@npm:8.14.0": version: 8.14.0 resolution: "@typescript-eslint/scope-manager@npm:8.14.0" @@ -4778,6 +4768,16 @@ __metadata: languageName: node linkType: hard +"@typescript-eslint/scope-manager@npm:8.17.0": + version: 8.17.0 + resolution: "@typescript-eslint/scope-manager@npm:8.17.0" + dependencies: + "@typescript-eslint/types": "npm:8.17.0" + "@typescript-eslint/visitor-keys": "npm:8.17.0" + checksum: 10c0/0c08d14240bad4b3f6874f08ba80b29db1a6657437089a6f109db458c544d835bcdc06ba9140bb4f835233ba4326d9a86e6cf6bdb5209960d2f7025aa3191f4f + languageName: node + linkType: hard + "@typescript-eslint/type-utils@npm:5.62.0": version: 5.62.0 resolution: "@typescript-eslint/type-utils@npm:5.62.0" @@ -4795,35 +4795,35 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/type-utils@npm:7.18.0": - version: 7.18.0 - resolution: "@typescript-eslint/type-utils@npm:7.18.0" +"@typescript-eslint/type-utils@npm:8.14.0": + version: 8.14.0 + resolution: "@typescript-eslint/type-utils@npm:8.14.0" dependencies: - "@typescript-eslint/typescript-estree": "npm:7.18.0" - "@typescript-eslint/utils": "npm:7.18.0" + "@typescript-eslint/typescript-estree": "npm:8.14.0" + "@typescript-eslint/utils": "npm:8.14.0" debug: "npm:^4.3.4" ts-api-utils: "npm:^1.3.0" - peerDependencies: - eslint: ^8.56.0 peerDependenciesMeta: typescript: optional: true - checksum: 10c0/ad92a38007be620f3f7036f10e234abdc2fdc518787b5a7227e55fd12896dacf56e8b34578723fbf9bea8128df2510ba8eb6739439a3879eda9519476d5783fd + checksum: 10c0/42616a664b38ca418e13504247e5e1bad6ae85c045b48e5735ffab977d4bd58cc86fb9d2292bbb314fa408d78d4b0454c3a27dbf9f881f9921917a942825c806 languageName: node linkType: hard -"@typescript-eslint/type-utils@npm:8.14.0": - version: 8.14.0 - resolution: "@typescript-eslint/type-utils@npm:8.14.0" +"@typescript-eslint/type-utils@npm:8.17.0": + version: 8.17.0 + resolution: "@typescript-eslint/type-utils@npm:8.17.0" dependencies: - "@typescript-eslint/typescript-estree": "npm:8.14.0" - "@typescript-eslint/utils": "npm:8.14.0" + "@typescript-eslint/typescript-estree": "npm:8.17.0" + "@typescript-eslint/utils": "npm:8.17.0" debug: "npm:^4.3.4" ts-api-utils: "npm:^1.3.0" + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 peerDependenciesMeta: typescript: optional: true - checksum: 10c0/42616a664b38ca418e13504247e5e1bad6ae85c045b48e5735ffab977d4bd58cc86fb9d2292bbb314fa408d78d4b0454c3a27dbf9f881f9921917a942825c806 + checksum: 10c0/6138ec71b5692d4b5e0bf3d7f66a6fa4e91ddea7031907b0ac45a7693df0a2f4cc5bca7218311e0639620d636ceb7efec83a137dfcd5938304d873b774fcc8bd languageName: node linkType: hard @@ -4834,13 +4834,6 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/types@npm:7.18.0": - version: 7.18.0 - resolution: "@typescript-eslint/types@npm:7.18.0" - checksum: 10c0/eb7371ac55ca77db8e59ba0310b41a74523f17e06f485a0ef819491bc3dd8909bb930120ff7d30aaf54e888167e0005aa1337011f3663dc90fb19203ce478054 - languageName: node - linkType: hard - "@typescript-eslint/types@npm:8.14.0, @typescript-eslint/types@npm:^8.9.0": version: 8.14.0 resolution: "@typescript-eslint/types@npm:8.14.0" @@ -4848,6 +4841,13 @@ __metadata: languageName: node linkType: hard +"@typescript-eslint/types@npm:8.17.0": + version: 8.17.0 + resolution: "@typescript-eslint/types@npm:8.17.0" + checksum: 10c0/26b1bf9dfc3ee783c85c6f354b84c28706d5689d777f3ff2de2cb496e45f9d0189c0d561c03ccbc8b24712438be17cf63dd0871ff3ca2083e7f48749770d1893 + languageName: node + linkType: hard + "@typescript-eslint/typescript-estree@npm:5.62.0": version: 5.62.0 resolution: "@typescript-eslint/typescript-estree@npm:5.62.0" @@ -4866,14 +4866,14 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/typescript-estree@npm:7.18.0": - version: 7.18.0 - resolution: "@typescript-eslint/typescript-estree@npm:7.18.0" +"@typescript-eslint/typescript-estree@npm:8.14.0": + version: 8.14.0 + resolution: "@typescript-eslint/typescript-estree@npm:8.14.0" dependencies: - "@typescript-eslint/types": "npm:7.18.0" - "@typescript-eslint/visitor-keys": "npm:7.18.0" + "@typescript-eslint/types": "npm:8.14.0" + "@typescript-eslint/visitor-keys": "npm:8.14.0" debug: "npm:^4.3.4" - globby: "npm:^11.1.0" + fast-glob: "npm:^3.3.2" is-glob: "npm:^4.0.3" minimatch: "npm:^9.0.4" semver: "npm:^7.6.0" @@ -4881,16 +4881,16 @@ __metadata: peerDependenciesMeta: typescript: optional: true - checksum: 10c0/0c7f109a2e460ec8a1524339479cf78ff17814d23c83aa5112c77fb345e87b3642616291908dcddea1e671da63686403dfb712e4a4435104f92abdfddf9aba81 + checksum: 10c0/5e890d22bd067095f871cf144907a8c302db5b5f014c58906ad58d7f23569951cba805042eac6844744e5abb0d3648c9cc221a91b0703da0a8d6345dc1f83e74 languageName: node linkType: hard -"@typescript-eslint/typescript-estree@npm:8.14.0": - version: 8.14.0 - resolution: "@typescript-eslint/typescript-estree@npm:8.14.0" +"@typescript-eslint/typescript-estree@npm:8.17.0": + version: 8.17.0 + resolution: "@typescript-eslint/typescript-estree@npm:8.17.0" dependencies: - "@typescript-eslint/types": "npm:8.14.0" - "@typescript-eslint/visitor-keys": "npm:8.14.0" + "@typescript-eslint/types": "npm:8.17.0" + "@typescript-eslint/visitor-keys": "npm:8.17.0" debug: "npm:^4.3.4" fast-glob: "npm:^3.3.2" is-glob: "npm:^4.0.3" @@ -4900,7 +4900,7 @@ __metadata: peerDependenciesMeta: typescript: optional: true - checksum: 10c0/5e890d22bd067095f871cf144907a8c302db5b5f014c58906ad58d7f23569951cba805042eac6844744e5abb0d3648c9cc221a91b0703da0a8d6345dc1f83e74 + checksum: 10c0/523013f9b5cf2c58c566868e4c3b0b9ac1b4807223a6d64e2a7c58e01e53b6587ba61f1a8241eade361f3f426d6057657515473176141ef8aebb352bc0d223ce languageName: node linkType: hard @@ -4922,20 +4922,6 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/utils@npm:7.18.0": - version: 7.18.0 - resolution: "@typescript-eslint/utils@npm:7.18.0" - dependencies: - "@eslint-community/eslint-utils": "npm:^4.4.0" - "@typescript-eslint/scope-manager": "npm:7.18.0" - "@typescript-eslint/types": "npm:7.18.0" - "@typescript-eslint/typescript-estree": "npm:7.18.0" - peerDependencies: - eslint: ^8.56.0 - checksum: 10c0/a25a6d50eb45c514469a01ff01f215115a4725fb18401055a847ddf20d1b681409c4027f349033a95c4ff7138d28c3b0a70253dfe8262eb732df4b87c547bd1e - languageName: node - linkType: hard - "@typescript-eslint/utils@npm:8.14.0, @typescript-eslint/utils@npm:^8.9.0": version: 8.14.0 resolution: "@typescript-eslint/utils@npm:8.14.0" @@ -4950,6 +4936,23 @@ __metadata: languageName: node linkType: hard +"@typescript-eslint/utils@npm:8.17.0": + version: 8.17.0 + resolution: "@typescript-eslint/utils@npm:8.17.0" + dependencies: + "@eslint-community/eslint-utils": "npm:^4.4.0" + "@typescript-eslint/scope-manager": "npm:8.17.0" + "@typescript-eslint/types": "npm:8.17.0" + "@typescript-eslint/typescript-estree": "npm:8.17.0" + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + peerDependenciesMeta: + typescript: + optional: true + checksum: 10c0/a9785ae5f7e7b51d521dc3f48b15093948e4fcd03352c0b60f39bae366cbc935947d215f91e2ae3182d52fa6affb5ccbb50feff487bd1209011f3e0da02cdf07 + languageName: node + linkType: hard + "@typescript-eslint/visitor-keys@npm:5.62.0": version: 5.62.0 resolution: "@typescript-eslint/visitor-keys@npm:5.62.0" @@ -4960,16 +4963,6 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/visitor-keys@npm:7.18.0": - version: 7.18.0 - resolution: "@typescript-eslint/visitor-keys@npm:7.18.0" - dependencies: - "@typescript-eslint/types": "npm:7.18.0" - eslint-visitor-keys: "npm:^3.4.3" - checksum: 10c0/538b645f8ff1d9debf264865c69a317074eaff0255e63d7407046176b0f6a6beba34a6c51d511f12444bae12a98c69891eb6f403c9f54c6c2e2849d1c1cb73c0 - languageName: node - linkType: hard - "@typescript-eslint/visitor-keys@npm:8.14.0": version: 8.14.0 resolution: "@typescript-eslint/visitor-keys@npm:8.14.0" @@ -4980,6 +4973,16 @@ __metadata: languageName: node linkType: hard +"@typescript-eslint/visitor-keys@npm:8.17.0": + version: 8.17.0 + resolution: "@typescript-eslint/visitor-keys@npm:8.17.0" + dependencies: + "@typescript-eslint/types": "npm:8.17.0" + eslint-visitor-keys: "npm:^4.2.0" + checksum: 10c0/9144c4e4a63034fb2031a0ee1fc77e80594f30cab3faafa9a1f7f83782695774dd32fac8986f260698b4e150b4dd52444f2611c07e4c101501f08353eb47c82c + languageName: node + linkType: hard + "@ungap/structured-clone@npm:^1.2.0": version: 1.2.0 resolution: "@ungap/structured-clone@npm:1.2.0" @@ -5597,8 +5600,8 @@ __metadata: "@types/react-native-share-menu": "npm:^5.0.5" "@types/react-test-renderer": "npm:^18.3.0" "@types/uuid": "npm:^10.0.0" - "@typescript-eslint/eslint-plugin": "npm:^7.18.0" - "@typescript-eslint/parser": "npm:^7.18.0" + "@typescript-eslint/eslint-plugin": "npm:^8.17.0" + "@typescript-eslint/parser": "npm:^8.17.0" "@welldone-software/why-did-you-render": "npm:^8.0.3" argparse: "npm:^2.0.1" axios: "npm:^1.7.9" @@ -5628,7 +5631,7 @@ __metadata: eslint-plugin-react: "npm:^7.37.2" eslint-plugin-react-hooks: "npm:^5.0.0" event-target-polyfill: "npm:^0.0.4" - expo: "npm:^52.0.14" + expo: "npm:^52.0.15" expo-auth-session: "npm:~6.0.1" expo-clipboard: "npm:~7.0.0" expo-crypto: "npm:~14.0.1" @@ -5641,7 +5644,8 @@ __metadata: ffmpeg-kit-react-native: "npm:^6.0.2" gts: "npm:^6.0.2" he: "npm:^1.2.0" - i18next: "npm:^24.0.5" + i18next: "npm:23.16.8" + intl-pluralrules: "npm:^2.0.1" jest: "npm:^29.7.0" js-base64: "npm:^3.7.7" libmuse: "https://github.com/lovegaoshi/muse.git#commit=0bffe2319baf825037bece6869d360d6d307eb72" @@ -5673,14 +5677,14 @@ __metadata: react-native-lyric: "https://lovegaoshi@github.com/lovegaoshi/react-native-lyric.git#commit=6f20e83948c29b0d46833ab9173cd81f99d0ab48" react-native-pager-view: "npm:6.6.1" react-native-paper: "npm:^5.12.5" - react-native-purchases: "npm:^8.3.0" + react-native-purchases: "npm:^8.4.0" react-native-qrcode-svg: "npm:^6.3.12" react-native-reanimated: "npm:3.16.3" react-native-safe-area-context: "npm:^4.14.0" react-native-screens: "npm:4.3.0" react-native-shadow-2: "npm:^7.1.1" react-native-share-menu: "git+https://github.com/Expensify/react-native-share-menu.git" - react-native-svg: "npm:15.10.0" + react-native-svg: "npm:15.10.1" react-native-svga-player: "https://lovegaoshi@github.com/lovegaoshi/react-native-svga-player.git#commit=f8c6303fddb528a1a94d2ab4696c9318c0002cfd" react-native-text-ticker: "https://lovegaoshi@github.com/lovegaoshi/react-native-text-ticker.git#commit=b9eb454b18bb621a769ce4b57b4603a81501b477" react-native-track-player: "https://github.com/lovegaoshi/react-native-track-player.git#commit=71b08733e6f680db10613036c450509c855917ea" @@ -8466,6 +8470,13 @@ __metadata: languageName: node linkType: hard +"eslint-visitor-keys@npm:^4.2.0": + version: 4.2.0 + resolution: "eslint-visitor-keys@npm:4.2.0" + checksum: 10c0/2ed81c663b147ca6f578312919483eb040295bbab759e5a371953456c636c5b49a559883e2677112453728d66293c0a4c90ab11cab3428cf02a0236d2e738269 + languageName: node + linkType: hard + "eslint@npm:8.57.1": version: 8.57.1 resolution: "eslint@npm:8.57.1" @@ -8921,13 +8932,13 @@ __metadata: languageName: node linkType: hard -"expo@npm:^52.0.14": - version: 52.0.14 - resolution: "expo@npm:52.0.14" +"expo@npm:^52.0.15": + version: 52.0.15 + resolution: "expo@npm:52.0.15" dependencies: "@babel/runtime": "npm:^7.20.0" - "@expo/cli": "npm:0.22.0" - "@expo/config": "npm:~10.0.5" + "@expo/cli": "npm:0.22.1" + "@expo/config": "npm:~10.0.6" "@expo/config-plugins": "npm:~9.0.11" "@expo/fingerprint": "npm:0.11.3" "@expo/metro-config": "npm:0.19.5" @@ -8958,7 +8969,7 @@ __metadata: optional: true bin: expo: bin/cli - checksum: 10c0/97acc249159d2a346f7682ff9c8f9c0a07206367631f69120ab609a119c6c1fdbab3cc55061c10ced82cbc37a5e8b395ea879d90562c298ce3c3edc84b087050 + checksum: 10c0/60db2a39dc09ced31cc8b1526f40b8ba55f661cb994a907eb16b796d1d3550e02a8ce4c7b0299381c511e7d586f79a8cd6b4599d64aedd008779682fbc74601b languageName: node linkType: hard @@ -10178,17 +10189,12 @@ __metadata: languageName: node linkType: hard -"i18next@npm:^24.0.5": - version: 24.0.5 - resolution: "i18next@npm:24.0.5" +"i18next@npm:23.16.8": + version: 23.16.8 + resolution: "i18next@npm:23.16.8" dependencies: "@babel/runtime": "npm:^7.23.2" - peerDependencies: - typescript: ^5 - peerDependenciesMeta: - typescript: - optional: true - checksum: 10c0/3bcaf95c2f9a9025bbbc0efaea24f29197c6cc9465ad9fc565974d06d34e38bb7646bf79eab0a2906815cbb91b2cbf73bbf4f20aecf4fec7591def464b92796b + checksum: 10c0/57d249191e8a39bbbbe190cfa2e2bb651d0198e14444fe80453d3df8d02927de3c147c77724e9ae6c72fa241898cd761e3fdcd55d053db373471f1ac084bf345 languageName: node linkType: hard @@ -10373,6 +10379,13 @@ __metadata: languageName: node linkType: hard +"intl-pluralrules@npm:^2.0.1": + version: 2.0.1 + resolution: "intl-pluralrules@npm:2.0.1" + checksum: 10c0/ba9786694f7e748c4639bffaa465a8609f61b92da174c92b16b385cf91704af9bad12dd9cb8907e14f4b2b419663891c217b5466d08f58a93ef2970b29b30554 + languageName: node + linkType: hard + "invariant@npm:2.2.4, invariant@npm:^2.2.4": version: 2.2.4 resolution: "invariant@npm:2.2.4" @@ -14557,15 +14570,15 @@ __metadata: languageName: node linkType: hard -"react-native-purchases@npm:^8.3.0": - version: 8.3.0 - resolution: "react-native-purchases@npm:8.3.0" +"react-native-purchases@npm:^8.4.0": + version: 8.4.0 + resolution: "react-native-purchases@npm:8.4.0" dependencies: "@revenuecat/purchases-typescript-internal": "npm:13.12.0" peerDependencies: react: ">= 16.6.3" react-native: "*" - checksum: 10c0/7e07d63f3d46b591afe41c9da8fb14e70b10c5058c3e87c28021359035801e47c950ea9084169b655a4833326dd92bef40e30f5cb2a7dcbc5a1f72503c22fc8e + checksum: 10c0/30a8acde89321cc896cc1f35f39bca02d02dcf22a55506085610a8337e5a39d3580e5d9454c97c3a3a9545f997fd7d0279606cdd6d9be3b39d8d771192270763 languageName: node linkType: hard @@ -14659,9 +14672,9 @@ __metadata: languageName: node linkType: hard -"react-native-svg@npm:15.10.0": - version: 15.10.0 - resolution: "react-native-svg@npm:15.10.0" +"react-native-svg@npm:15.10.1": + version: 15.10.1 + resolution: "react-native-svg@npm:15.10.1" dependencies: css-select: "npm:^5.1.0" css-tree: "npm:^1.1.3" @@ -14669,7 +14682,7 @@ __metadata: peerDependencies: react: "*" react-native: "*" - checksum: 10c0/06e8d522678c22d4e7aa11c8fe8ab5b6115800294c8c77027a7dccb76de3953376a2a7b98ace70fdc529c8fd5aa8a59d65a3764c9a40de16ee6a419f0b7ed690 + checksum: 10c0/f6b9491f321e80b56b50a0d0a4872fbc7adbe04892a7fca953eb1d1e984597f02a95a08560443bab7c074e6767631245d6f737c571d6a6977987311d44d3a717 languageName: node linkType: hard