├── .editorconfig ├── .github └── workflows │ └── build.yml ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── assets ├── logo │ ├── logo-dark.svg │ └── logo-light.svg └── wordmark │ ├── wordmark+slogan-dark.svg │ └── wordmark+slogan-light.svg ├── biome.json ├── bun.lock ├── bunfig.toml ├── lib ├── assets │ ├── package.json │ └── src │ │ ├── _internal.ts │ │ ├── caches.ts │ │ ├── index.ts │ │ ├── preinit.ts │ │ └── types.ts ├── components │ ├── package.json │ └── src │ │ ├── FormSwitch.tsx │ │ ├── Page.tsx │ │ ├── SearchInput.tsx │ │ ├── TableRowAssetIcon.tsx │ │ ├── _internal.ts │ │ ├── index.ts │ │ └── types.ts ├── discord │ ├── package.json │ └── src │ │ ├── actions.ts │ │ ├── common │ │ ├── flux.ts │ │ ├── index.ts │ │ └── utils.ts │ │ ├── design.ts │ │ ├── flux │ │ ├── dispatcher.ts │ │ ├── index.ts │ │ └── stores.ts │ │ ├── modules │ │ ├── main_tabs_v2.ts │ │ └── settings │ │ │ ├── _internal.ts │ │ │ ├── index.ts │ │ │ └── renderer.ts │ │ ├── native.ts │ │ ├── patches │ │ └── flux.ts │ │ ├── preinit.ts │ │ ├── start.ts │ │ └── types │ │ ├── index.ts │ │ ├── native.ts │ │ ├── polyfills.ts │ │ └── revenge.ts ├── externals │ ├── README.md │ ├── package.json │ └── src │ │ ├── browserify.ts │ │ ├── react-native-clipboard.ts │ │ ├── react-navigation.ts │ │ ├── shopify.ts │ │ └── types.ts ├── modules │ ├── package.json │ └── src │ │ ├── caches.ts │ │ ├── finders │ │ ├── _internal.ts │ │ ├── filters │ │ │ ├── composite.ts │ │ │ ├── constants.ts │ │ │ ├── dynamic.ts │ │ │ ├── index.ts │ │ │ └── utils.ts │ │ ├── get.ts │ │ ├── index.ts │ │ ├── lookup.ts │ │ └── wait.ts │ │ ├── metro │ │ ├── patches.ts │ │ ├── runtime.ts │ │ ├── subscriptions │ │ │ ├── _internal.ts │ │ │ └── index.ts │ │ └── utils.ts │ │ ├── native │ │ ├── fs.ts │ │ └── index.ts │ │ └── types.ts ├── patcher │ ├── LICENSE │ ├── README.md │ ├── package.json │ ├── src │ │ ├── _internal.ts │ │ ├── hooks │ │ │ ├── after.ts │ │ │ ├── before.ts │ │ │ └── instead.ts │ │ ├── index.test.ts │ │ ├── index.ts │ │ └── types.ts │ └── tsconfig.json ├── plugins │ ├── package.json │ └── src │ │ ├── _internal │ │ ├── decorators.ts │ │ ├── dependency-graph.ts │ │ └── index.ts │ │ ├── apis │ │ ├── index.ts │ │ ├── modules.ts │ │ ├── plugins.ts │ │ └── react.ts │ │ ├── constants.ts │ │ ├── init.ts │ │ ├── preinit.ts │ │ ├── start.ts │ │ └── types.ts ├── react │ ├── package.json │ └── src │ │ ├── index.ts │ │ ├── init.ts │ │ ├── jsx-runtime │ │ ├── _internal.ts │ │ ├── index.ts │ │ └── patches.ts │ │ ├── native │ │ ├── _internal.ts │ │ ├── index.ts │ │ └── patches.ts │ │ ├── preinit.ts │ │ └── types.ts ├── storage │ ├── package.json │ └── src │ │ ├── index.ts │ │ ├── init.ts │ │ └── types.ts └── utils │ ├── package.json │ └── src │ ├── callback.ts │ ├── discord.ts │ ├── error.ts │ ├── object.ts │ ├── patches │ └── proxy.ts │ ├── promise.ts │ ├── proxy.ts │ ├── react.ts │ ├── tree.ts │ └── types.ts ├── package.json ├── patches └── react-native-click-outside@0.1.1.patch ├── scripts ├── build.ts ├── dev.ts ├── plugins │ ├── as-require.ts │ ├── hermes-swc.ts │ ├── hermesc.ts │ ├── import-defer.ts │ └── shim-aliases.ts ├── tsconfig.json └── types.ts ├── shims ├── @react-navigation~native.ts ├── @react-navigation~stack.ts ├── @shopify~flash-list.ts ├── react-native.ts ├── react.ts ├── react~jsx-runtime.ts ├── shims.d.ts └── tsconfig.json ├── src ├── assets │ └── RevengeIcon.webp ├── constants.ts ├── index.ts ├── init.ts ├── patches │ └── log-promise-rejections.ts ├── plugins │ ├── init.ts │ ├── init │ │ ├── api.assets │ │ │ └── index.ts │ │ ├── api.components │ │ │ └── index.ts │ │ ├── api.discord │ │ │ └── index.ts │ │ └── api.externals │ │ │ └── index.ts │ ├── preinit.ts │ ├── preinit │ │ ├── api.storage │ │ │ └── index.ts │ │ ├── api.utils │ │ │ └── index.ts │ │ ├── logging │ │ │ └── index.ts │ │ └── no-track │ │ │ └── index.ts │ ├── start.ts │ └── start │ │ ├── developer-kit │ │ ├── constants.ts │ │ ├── definitions │ │ │ ├── AssetBrowserSetting.tsx │ │ │ ├── DTAutoConnectSetting.tsx │ │ │ ├── DTConnectSetting.tsx │ │ │ ├── DTDisconnectSetting.tsx │ │ │ ├── EvalJSSetting.tsx │ │ │ ├── RDTAutoConnectSetting.tsx │ │ │ ├── RDTConnectSetting.tsx │ │ │ ├── RDTDisconnectSetting.tsx │ │ │ ├── RevengeDeveloperSetting.tsx │ │ │ └── TestErrorBoundarySetting.tsx │ │ ├── devtools.ts │ │ ├── index.ts │ │ ├── react-devtools.ts │ │ ├── screens │ │ │ ├── AssetBrowserSettingScreen.tsx │ │ │ ├── RevengeDeveloperSettingScreen.tsx │ │ │ └── TestErrorBoundarySettingScreen.tsx │ │ └── utils.ts │ │ ├── error-boundary │ │ ├── components │ │ │ └── ErrorBoundaryScreen.tsx │ │ └── index.tsx │ │ ├── settings │ │ ├── components │ │ │ ├── FilterAndSortActionSheet.tsx │ │ │ ├── NavigatorHeaderWithIcon.tsx │ │ │ ├── PluginCard.tsx │ │ │ ├── PluginClearDataConfirmationAlert.tsx │ │ │ ├── PluginHasDependenciesAlert.tsx │ │ │ ├── PluginHasDependentsAlert.tsx │ │ │ ├── PluginList.tsx │ │ │ ├── PluginOptionsActionSheet.tsx │ │ │ ├── PluginStateProvider.tsx │ │ │ ├── PluginsFailedToStartAlert.tsx │ │ │ ├── PluginsRequireReloadAlert.tsx │ │ │ └── TooltipProvider.tsx │ │ ├── constants.ts │ │ ├── definitions │ │ │ ├── HermesVersionSetting.tsx │ │ │ ├── LoaderVersionSetting.tsx │ │ │ ├── ReactNativeVersionSetting.tsx │ │ │ ├── ReactVersionSetting.tsx │ │ │ ├── ReloadSetting.tsx │ │ │ ├── RevengeDiscordSetting.tsx │ │ │ ├── RevengeLicenseSetting.tsx │ │ │ ├── RevengePluginsSetting.tsx │ │ │ ├── RevengeSetting.tsx │ │ │ ├── RevengeSourceRepositorySetting.tsx │ │ │ ├── RevengeVersionSetting.tsx │ │ │ └── shared.ts │ │ ├── index.ts │ │ ├── plugins.tsx │ │ ├── register.tsx │ │ ├── screens │ │ │ ├── RevengePluginsSettingScreen.tsx │ │ │ └── RevengeSettingScreen.tsx │ │ ├── types.ts │ │ └── utils │ │ │ ├── actions.tsx │ │ │ ├── alerts.tsx │ │ │ └── sheets.tsx │ │ ├── staff-settings │ │ └── index.ts │ │ └── user-badges │ │ ├── constants.ts │ │ ├── data.json │ │ ├── index.tsx │ │ ├── styles.ts │ │ └── utils.ts ├── preinit.ts └── start.ts ├── tsconfig.json └── types ├── build.d.ts ├── globals.consumers.ts ├── globals.d.ts └── modules.d.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/README.md -------------------------------------------------------------------------------- /assets/logo/logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/assets/logo/logo-dark.svg -------------------------------------------------------------------------------- /assets/logo/logo-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/assets/logo/logo-light.svg -------------------------------------------------------------------------------- /assets/wordmark/wordmark+slogan-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/assets/wordmark/wordmark+slogan-dark.svg -------------------------------------------------------------------------------- /assets/wordmark/wordmark+slogan-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/assets/wordmark/wordmark+slogan-light.svg -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/biome.json -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/bun.lock -------------------------------------------------------------------------------- /bunfig.toml: -------------------------------------------------------------------------------- 1 | [install] 2 | linker = "isolated" -------------------------------------------------------------------------------- /lib/assets/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/assets/package.json -------------------------------------------------------------------------------- /lib/assets/src/_internal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/assets/src/_internal.ts -------------------------------------------------------------------------------- /lib/assets/src/caches.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/assets/src/caches.ts -------------------------------------------------------------------------------- /lib/assets/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/assets/src/index.ts -------------------------------------------------------------------------------- /lib/assets/src/preinit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/assets/src/preinit.ts -------------------------------------------------------------------------------- /lib/assets/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/assets/src/types.ts -------------------------------------------------------------------------------- /lib/components/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/components/package.json -------------------------------------------------------------------------------- /lib/components/src/FormSwitch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/components/src/FormSwitch.tsx -------------------------------------------------------------------------------- /lib/components/src/Page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/components/src/Page.tsx -------------------------------------------------------------------------------- /lib/components/src/SearchInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/components/src/SearchInput.tsx -------------------------------------------------------------------------------- /lib/components/src/TableRowAssetIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/components/src/TableRowAssetIcon.tsx -------------------------------------------------------------------------------- /lib/components/src/_internal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/components/src/_internal.ts -------------------------------------------------------------------------------- /lib/components/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/components/src/index.ts -------------------------------------------------------------------------------- /lib/components/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/components/src/types.ts -------------------------------------------------------------------------------- /lib/discord/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/discord/package.json -------------------------------------------------------------------------------- /lib/discord/src/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/discord/src/actions.ts -------------------------------------------------------------------------------- /lib/discord/src/common/flux.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/discord/src/common/flux.ts -------------------------------------------------------------------------------- /lib/discord/src/common/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/discord/src/common/index.ts -------------------------------------------------------------------------------- /lib/discord/src/common/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/discord/src/common/utils.ts -------------------------------------------------------------------------------- /lib/discord/src/design.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/discord/src/design.ts -------------------------------------------------------------------------------- /lib/discord/src/flux/dispatcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/discord/src/flux/dispatcher.ts -------------------------------------------------------------------------------- /lib/discord/src/flux/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/discord/src/flux/index.ts -------------------------------------------------------------------------------- /lib/discord/src/flux/stores.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/discord/src/flux/stores.ts -------------------------------------------------------------------------------- /lib/discord/src/modules/main_tabs_v2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/discord/src/modules/main_tabs_v2.ts -------------------------------------------------------------------------------- /lib/discord/src/modules/settings/_internal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/discord/src/modules/settings/_internal.ts -------------------------------------------------------------------------------- /lib/discord/src/modules/settings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/discord/src/modules/settings/index.ts -------------------------------------------------------------------------------- /lib/discord/src/modules/settings/renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/discord/src/modules/settings/renderer.ts -------------------------------------------------------------------------------- /lib/discord/src/native.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/discord/src/native.ts -------------------------------------------------------------------------------- /lib/discord/src/patches/flux.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/discord/src/patches/flux.ts -------------------------------------------------------------------------------- /lib/discord/src/preinit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/discord/src/preinit.ts -------------------------------------------------------------------------------- /lib/discord/src/start.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/discord/src/start.ts -------------------------------------------------------------------------------- /lib/discord/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/discord/src/types/index.ts -------------------------------------------------------------------------------- /lib/discord/src/types/native.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/discord/src/types/native.ts -------------------------------------------------------------------------------- /lib/discord/src/types/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/discord/src/types/polyfills.ts -------------------------------------------------------------------------------- /lib/discord/src/types/revenge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/discord/src/types/revenge.ts -------------------------------------------------------------------------------- /lib/externals/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/externals/README.md -------------------------------------------------------------------------------- /lib/externals/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/externals/package.json -------------------------------------------------------------------------------- /lib/externals/src/browserify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/externals/src/browserify.ts -------------------------------------------------------------------------------- /lib/externals/src/react-native-clipboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/externals/src/react-native-clipboard.ts -------------------------------------------------------------------------------- /lib/externals/src/react-navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/externals/src/react-navigation.ts -------------------------------------------------------------------------------- /lib/externals/src/shopify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/externals/src/shopify.ts -------------------------------------------------------------------------------- /lib/externals/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/externals/src/types.ts -------------------------------------------------------------------------------- /lib/modules/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/modules/package.json -------------------------------------------------------------------------------- /lib/modules/src/caches.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/modules/src/caches.ts -------------------------------------------------------------------------------- /lib/modules/src/finders/_internal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/modules/src/finders/_internal.ts -------------------------------------------------------------------------------- /lib/modules/src/finders/filters/composite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/modules/src/finders/filters/composite.ts -------------------------------------------------------------------------------- /lib/modules/src/finders/filters/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/modules/src/finders/filters/constants.ts -------------------------------------------------------------------------------- /lib/modules/src/finders/filters/dynamic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/modules/src/finders/filters/dynamic.ts -------------------------------------------------------------------------------- /lib/modules/src/finders/filters/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/modules/src/finders/filters/index.ts -------------------------------------------------------------------------------- /lib/modules/src/finders/filters/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/modules/src/finders/filters/utils.ts -------------------------------------------------------------------------------- /lib/modules/src/finders/get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/modules/src/finders/get.ts -------------------------------------------------------------------------------- /lib/modules/src/finders/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/modules/src/finders/index.ts -------------------------------------------------------------------------------- /lib/modules/src/finders/lookup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/modules/src/finders/lookup.ts -------------------------------------------------------------------------------- /lib/modules/src/finders/wait.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/modules/src/finders/wait.ts -------------------------------------------------------------------------------- /lib/modules/src/metro/patches.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/modules/src/metro/patches.ts -------------------------------------------------------------------------------- /lib/modules/src/metro/runtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/modules/src/metro/runtime.ts -------------------------------------------------------------------------------- /lib/modules/src/metro/subscriptions/_internal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/modules/src/metro/subscriptions/_internal.ts -------------------------------------------------------------------------------- /lib/modules/src/metro/subscriptions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/modules/src/metro/subscriptions/index.ts -------------------------------------------------------------------------------- /lib/modules/src/metro/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/modules/src/metro/utils.ts -------------------------------------------------------------------------------- /lib/modules/src/native/fs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/modules/src/native/fs.ts -------------------------------------------------------------------------------- /lib/modules/src/native/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/modules/src/native/index.ts -------------------------------------------------------------------------------- /lib/modules/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/modules/src/types.ts -------------------------------------------------------------------------------- /lib/patcher/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/patcher/LICENSE -------------------------------------------------------------------------------- /lib/patcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/patcher/README.md -------------------------------------------------------------------------------- /lib/patcher/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/patcher/package.json -------------------------------------------------------------------------------- /lib/patcher/src/_internal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/patcher/src/_internal.ts -------------------------------------------------------------------------------- /lib/patcher/src/hooks/after.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/patcher/src/hooks/after.ts -------------------------------------------------------------------------------- /lib/patcher/src/hooks/before.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/patcher/src/hooks/before.ts -------------------------------------------------------------------------------- /lib/patcher/src/hooks/instead.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/patcher/src/hooks/instead.ts -------------------------------------------------------------------------------- /lib/patcher/src/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/patcher/src/index.test.ts -------------------------------------------------------------------------------- /lib/patcher/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/patcher/src/index.ts -------------------------------------------------------------------------------- /lib/patcher/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/patcher/src/types.ts -------------------------------------------------------------------------------- /lib/patcher/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/patcher/tsconfig.json -------------------------------------------------------------------------------- /lib/plugins/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/plugins/package.json -------------------------------------------------------------------------------- /lib/plugins/src/_internal/decorators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/plugins/src/_internal/decorators.ts -------------------------------------------------------------------------------- /lib/plugins/src/_internal/dependency-graph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/plugins/src/_internal/dependency-graph.ts -------------------------------------------------------------------------------- /lib/plugins/src/_internal/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/plugins/src/_internal/index.ts -------------------------------------------------------------------------------- /lib/plugins/src/apis/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/plugins/src/apis/index.ts -------------------------------------------------------------------------------- /lib/plugins/src/apis/modules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/plugins/src/apis/modules.ts -------------------------------------------------------------------------------- /lib/plugins/src/apis/plugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/plugins/src/apis/plugins.ts -------------------------------------------------------------------------------- /lib/plugins/src/apis/react.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/plugins/src/apis/react.ts -------------------------------------------------------------------------------- /lib/plugins/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/plugins/src/constants.ts -------------------------------------------------------------------------------- /lib/plugins/src/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/plugins/src/init.ts -------------------------------------------------------------------------------- /lib/plugins/src/preinit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/plugins/src/preinit.ts -------------------------------------------------------------------------------- /lib/plugins/src/start.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/plugins/src/start.ts -------------------------------------------------------------------------------- /lib/plugins/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/plugins/src/types.ts -------------------------------------------------------------------------------- /lib/react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/react/package.json -------------------------------------------------------------------------------- /lib/react/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/react/src/index.ts -------------------------------------------------------------------------------- /lib/react/src/init.ts: -------------------------------------------------------------------------------- 1 | import './jsx-runtime/patches' 2 | -------------------------------------------------------------------------------- /lib/react/src/jsx-runtime/_internal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/react/src/jsx-runtime/_internal.ts -------------------------------------------------------------------------------- /lib/react/src/jsx-runtime/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/react/src/jsx-runtime/index.ts -------------------------------------------------------------------------------- /lib/react/src/jsx-runtime/patches.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/react/src/jsx-runtime/patches.ts -------------------------------------------------------------------------------- /lib/react/src/native/_internal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/react/src/native/_internal.ts -------------------------------------------------------------------------------- /lib/react/src/native/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/react/src/native/index.ts -------------------------------------------------------------------------------- /lib/react/src/native/patches.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/react/src/native/patches.ts -------------------------------------------------------------------------------- /lib/react/src/preinit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/react/src/preinit.ts -------------------------------------------------------------------------------- /lib/react/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/react/src/types.ts -------------------------------------------------------------------------------- /lib/storage/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/storage/package.json -------------------------------------------------------------------------------- /lib/storage/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/storage/src/index.ts -------------------------------------------------------------------------------- /lib/storage/src/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/storage/src/init.ts -------------------------------------------------------------------------------- /lib/storage/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/storage/src/types.ts -------------------------------------------------------------------------------- /lib/utils/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/utils/package.json -------------------------------------------------------------------------------- /lib/utils/src/callback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/utils/src/callback.ts -------------------------------------------------------------------------------- /lib/utils/src/discord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/utils/src/discord.ts -------------------------------------------------------------------------------- /lib/utils/src/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/utils/src/error.ts -------------------------------------------------------------------------------- /lib/utils/src/object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/utils/src/object.ts -------------------------------------------------------------------------------- /lib/utils/src/patches/proxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/utils/src/patches/proxy.ts -------------------------------------------------------------------------------- /lib/utils/src/promise.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/utils/src/promise.ts -------------------------------------------------------------------------------- /lib/utils/src/proxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/utils/src/proxy.ts -------------------------------------------------------------------------------- /lib/utils/src/react.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/utils/src/react.ts -------------------------------------------------------------------------------- /lib/utils/src/tree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/utils/src/tree.ts -------------------------------------------------------------------------------- /lib/utils/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/lib/utils/src/types.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/package.json -------------------------------------------------------------------------------- /patches/react-native-click-outside@0.1.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/patches/react-native-click-outside@0.1.1.patch -------------------------------------------------------------------------------- /scripts/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/scripts/build.ts -------------------------------------------------------------------------------- /scripts/dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/scripts/dev.ts -------------------------------------------------------------------------------- /scripts/plugins/as-require.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/scripts/plugins/as-require.ts -------------------------------------------------------------------------------- /scripts/plugins/hermes-swc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/scripts/plugins/hermes-swc.ts -------------------------------------------------------------------------------- /scripts/plugins/hermesc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/scripts/plugins/hermesc.ts -------------------------------------------------------------------------------- /scripts/plugins/import-defer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/scripts/plugins/import-defer.ts -------------------------------------------------------------------------------- /scripts/plugins/shim-aliases.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/scripts/plugins/shim-aliases.ts -------------------------------------------------------------------------------- /scripts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/scripts/tsconfig.json -------------------------------------------------------------------------------- /scripts/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/scripts/types.ts -------------------------------------------------------------------------------- /shims/@react-navigation~native.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/shims/@react-navigation~native.ts -------------------------------------------------------------------------------- /shims/@react-navigation~stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/shims/@react-navigation~stack.ts -------------------------------------------------------------------------------- /shims/@shopify~flash-list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/shims/@shopify~flash-list.ts -------------------------------------------------------------------------------- /shims/react-native.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/shims/react-native.ts -------------------------------------------------------------------------------- /shims/react.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/shims/react.ts -------------------------------------------------------------------------------- /shims/react~jsx-runtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/shims/react~jsx-runtime.ts -------------------------------------------------------------------------------- /shims/shims.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/shims/shims.d.ts -------------------------------------------------------------------------------- /shims/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/shims/tsconfig.json -------------------------------------------------------------------------------- /src/assets/RevengeIcon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/assets/RevengeIcon.webp -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/init.ts -------------------------------------------------------------------------------- /src/patches/log-promise-rejections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/patches/log-promise-rejections.ts -------------------------------------------------------------------------------- /src/plugins/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/init.ts -------------------------------------------------------------------------------- /src/plugins/init/api.assets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/init/api.assets/index.ts -------------------------------------------------------------------------------- /src/plugins/init/api.components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/init/api.components/index.ts -------------------------------------------------------------------------------- /src/plugins/init/api.discord/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/init/api.discord/index.ts -------------------------------------------------------------------------------- /src/plugins/init/api.externals/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/init/api.externals/index.ts -------------------------------------------------------------------------------- /src/plugins/preinit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/preinit.ts -------------------------------------------------------------------------------- /src/plugins/preinit/api.storage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/preinit/api.storage/index.ts -------------------------------------------------------------------------------- /src/plugins/preinit/api.utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/preinit/api.utils/index.ts -------------------------------------------------------------------------------- /src/plugins/preinit/logging/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/preinit/logging/index.ts -------------------------------------------------------------------------------- /src/plugins/preinit/no-track/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/preinit/no-track/index.ts -------------------------------------------------------------------------------- /src/plugins/start.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start.ts -------------------------------------------------------------------------------- /src/plugins/start/developer-kit/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/developer-kit/constants.ts -------------------------------------------------------------------------------- /src/plugins/start/developer-kit/definitions/AssetBrowserSetting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/developer-kit/definitions/AssetBrowserSetting.tsx -------------------------------------------------------------------------------- /src/plugins/start/developer-kit/definitions/DTAutoConnectSetting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/developer-kit/definitions/DTAutoConnectSetting.tsx -------------------------------------------------------------------------------- /src/plugins/start/developer-kit/definitions/DTConnectSetting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/developer-kit/definitions/DTConnectSetting.tsx -------------------------------------------------------------------------------- /src/plugins/start/developer-kit/definitions/DTDisconnectSetting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/developer-kit/definitions/DTDisconnectSetting.tsx -------------------------------------------------------------------------------- /src/plugins/start/developer-kit/definitions/EvalJSSetting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/developer-kit/definitions/EvalJSSetting.tsx -------------------------------------------------------------------------------- /src/plugins/start/developer-kit/definitions/RDTAutoConnectSetting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/developer-kit/definitions/RDTAutoConnectSetting.tsx -------------------------------------------------------------------------------- /src/plugins/start/developer-kit/definitions/RDTConnectSetting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/developer-kit/definitions/RDTConnectSetting.tsx -------------------------------------------------------------------------------- /src/plugins/start/developer-kit/definitions/RDTDisconnectSetting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/developer-kit/definitions/RDTDisconnectSetting.tsx -------------------------------------------------------------------------------- /src/plugins/start/developer-kit/definitions/RevengeDeveloperSetting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/developer-kit/definitions/RevengeDeveloperSetting.tsx -------------------------------------------------------------------------------- /src/plugins/start/developer-kit/definitions/TestErrorBoundarySetting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/developer-kit/definitions/TestErrorBoundarySetting.tsx -------------------------------------------------------------------------------- /src/plugins/start/developer-kit/devtools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/developer-kit/devtools.ts -------------------------------------------------------------------------------- /src/plugins/start/developer-kit/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/developer-kit/index.ts -------------------------------------------------------------------------------- /src/plugins/start/developer-kit/react-devtools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/developer-kit/react-devtools.ts -------------------------------------------------------------------------------- /src/plugins/start/developer-kit/screens/AssetBrowserSettingScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/developer-kit/screens/AssetBrowserSettingScreen.tsx -------------------------------------------------------------------------------- /src/plugins/start/developer-kit/screens/RevengeDeveloperSettingScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/developer-kit/screens/RevengeDeveloperSettingScreen.tsx -------------------------------------------------------------------------------- /src/plugins/start/developer-kit/screens/TestErrorBoundarySettingScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/developer-kit/screens/TestErrorBoundarySettingScreen.tsx -------------------------------------------------------------------------------- /src/plugins/start/developer-kit/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/developer-kit/utils.ts -------------------------------------------------------------------------------- /src/plugins/start/error-boundary/components/ErrorBoundaryScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/error-boundary/components/ErrorBoundaryScreen.tsx -------------------------------------------------------------------------------- /src/plugins/start/error-boundary/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/error-boundary/index.tsx -------------------------------------------------------------------------------- /src/plugins/start/settings/components/FilterAndSortActionSheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/settings/components/FilterAndSortActionSheet.tsx -------------------------------------------------------------------------------- /src/plugins/start/settings/components/NavigatorHeaderWithIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/settings/components/NavigatorHeaderWithIcon.tsx -------------------------------------------------------------------------------- /src/plugins/start/settings/components/PluginCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/settings/components/PluginCard.tsx -------------------------------------------------------------------------------- /src/plugins/start/settings/components/PluginClearDataConfirmationAlert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/settings/components/PluginClearDataConfirmationAlert.tsx -------------------------------------------------------------------------------- /src/plugins/start/settings/components/PluginHasDependenciesAlert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/settings/components/PluginHasDependenciesAlert.tsx -------------------------------------------------------------------------------- /src/plugins/start/settings/components/PluginHasDependentsAlert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/settings/components/PluginHasDependentsAlert.tsx -------------------------------------------------------------------------------- /src/plugins/start/settings/components/PluginList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/settings/components/PluginList.tsx -------------------------------------------------------------------------------- /src/plugins/start/settings/components/PluginOptionsActionSheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/settings/components/PluginOptionsActionSheet.tsx -------------------------------------------------------------------------------- /src/plugins/start/settings/components/PluginStateProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/settings/components/PluginStateProvider.tsx -------------------------------------------------------------------------------- /src/plugins/start/settings/components/PluginsFailedToStartAlert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/settings/components/PluginsFailedToStartAlert.tsx -------------------------------------------------------------------------------- /src/plugins/start/settings/components/PluginsRequireReloadAlert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/settings/components/PluginsRequireReloadAlert.tsx -------------------------------------------------------------------------------- /src/plugins/start/settings/components/TooltipProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/settings/components/TooltipProvider.tsx -------------------------------------------------------------------------------- /src/plugins/start/settings/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/settings/constants.ts -------------------------------------------------------------------------------- /src/plugins/start/settings/definitions/HermesVersionSetting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/settings/definitions/HermesVersionSetting.tsx -------------------------------------------------------------------------------- /src/plugins/start/settings/definitions/LoaderVersionSetting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/settings/definitions/LoaderVersionSetting.tsx -------------------------------------------------------------------------------- /src/plugins/start/settings/definitions/ReactNativeVersionSetting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/settings/definitions/ReactNativeVersionSetting.tsx -------------------------------------------------------------------------------- /src/plugins/start/settings/definitions/ReactVersionSetting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/settings/definitions/ReactVersionSetting.tsx -------------------------------------------------------------------------------- /src/plugins/start/settings/definitions/ReloadSetting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/settings/definitions/ReloadSetting.tsx -------------------------------------------------------------------------------- /src/plugins/start/settings/definitions/RevengeDiscordSetting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/settings/definitions/RevengeDiscordSetting.tsx -------------------------------------------------------------------------------- /src/plugins/start/settings/definitions/RevengeLicenseSetting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/settings/definitions/RevengeLicenseSetting.tsx -------------------------------------------------------------------------------- /src/plugins/start/settings/definitions/RevengePluginsSetting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/settings/definitions/RevengePluginsSetting.tsx -------------------------------------------------------------------------------- /src/plugins/start/settings/definitions/RevengeSetting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/settings/definitions/RevengeSetting.tsx -------------------------------------------------------------------------------- /src/plugins/start/settings/definitions/RevengeSourceRepositorySetting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/settings/definitions/RevengeSourceRepositorySetting.tsx -------------------------------------------------------------------------------- /src/plugins/start/settings/definitions/RevengeVersionSetting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/settings/definitions/RevengeVersionSetting.tsx -------------------------------------------------------------------------------- /src/plugins/start/settings/definitions/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/settings/definitions/shared.ts -------------------------------------------------------------------------------- /src/plugins/start/settings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/settings/index.ts -------------------------------------------------------------------------------- /src/plugins/start/settings/plugins.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/settings/plugins.tsx -------------------------------------------------------------------------------- /src/plugins/start/settings/register.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/settings/register.tsx -------------------------------------------------------------------------------- /src/plugins/start/settings/screens/RevengePluginsSettingScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/settings/screens/RevengePluginsSettingScreen.tsx -------------------------------------------------------------------------------- /src/plugins/start/settings/screens/RevengeSettingScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/settings/screens/RevengeSettingScreen.tsx -------------------------------------------------------------------------------- /src/plugins/start/settings/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/settings/types.ts -------------------------------------------------------------------------------- /src/plugins/start/settings/utils/actions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/settings/utils/actions.tsx -------------------------------------------------------------------------------- /src/plugins/start/settings/utils/alerts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/settings/utils/alerts.tsx -------------------------------------------------------------------------------- /src/plugins/start/settings/utils/sheets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/settings/utils/sheets.tsx -------------------------------------------------------------------------------- /src/plugins/start/staff-settings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/staff-settings/index.ts -------------------------------------------------------------------------------- /src/plugins/start/user-badges/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/user-badges/constants.ts -------------------------------------------------------------------------------- /src/plugins/start/user-badges/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/user-badges/data.json -------------------------------------------------------------------------------- /src/plugins/start/user-badges/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/user-badges/index.tsx -------------------------------------------------------------------------------- /src/plugins/start/user-badges/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/user-badges/styles.ts -------------------------------------------------------------------------------- /src/plugins/start/user-badges/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/plugins/start/user-badges/utils.ts -------------------------------------------------------------------------------- /src/preinit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/preinit.ts -------------------------------------------------------------------------------- /src/start.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/src/start.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/build.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/types/build.d.ts -------------------------------------------------------------------------------- /types/globals.consumers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/types/globals.consumers.ts -------------------------------------------------------------------------------- /types/globals.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/types/globals.d.ts -------------------------------------------------------------------------------- /types/modules.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revenge-mod/revenge-bundle-next/HEAD/types/modules.d.ts --------------------------------------------------------------------------------