├── .editorconfig ├── .eslintrc.build.json ├── .eslintrc.json ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── packaging.yml │ └── testing.yml ├── .gitignore ├── .husky ├── post-commit └── pre-commit ├── .lintstagedrc ├── .vscode ├── launch.json └── tasks.json ├── CHANGELOG.md ├── ISSUE_TEMPLATE.md ├── LICENSE ├── README.md ├── REDLauncher.png ├── REDdeploy.png ├── SaveEditor.jpg ├── gameart.png ├── gameicon.jpg ├── jest.config.ts ├── package.json ├── script ├── dump-schemas.ts ├── package.ps1 └── package.sh ├── src ├── actions.ts ├── features.ts ├── filetree.ts ├── index.metadata.ts ├── index.ts ├── installer.amm.ts ├── installer.archive.ts ├── installer.asi.ts ├── installer.audioware.ts ├── installer.cet.ts ├── installer.config.ini-reshade.ts ├── installer.config.json.ts ├── installer.config.xml.ts ├── installer.core-archive-xl.ts ├── installer.core-audioware.ts ├── installer.core-tweak-xl.ts ├── installer.core.amm.ts ├── installer.core.cybercat.ts ├── installer.core.cyberscript.ts ├── installer.core.inputloader.ts ├── installer.core.modsettings.ts ├── installer.core.red4ext.ts ├── installer.core.redscript.ts ├── installer.core.ts ├── installer.fallback.ts ├── installer.multitype.ts ├── installer.preset.ts ├── installer.red4ext.ts ├── installer.redmod.ts ├── installer.redscript.ts ├── installer.special.deprecated.ts ├── installer.special.extrafiles.ts ├── installer.tweak-xl.ts ├── installers.layouts.ts ├── installers.shared.ts ├── installers.ts ├── installers.types.ts ├── load_order.functions.ts ├── load_order.ts ├── load_order.types.ts ├── redmodding.metadata.ts ├── redmodding.ts ├── redmodding.types.ts ├── reducers.ts ├── state.functions.ts ├── tools.external.ts ├── tools.redmodding.ts ├── tools.types.ts ├── ui.dialogs.ts ├── ui.notifications.ts ├── util.functions.ts ├── util.types.ts ├── views │ └── settings.tsx └── vortex-wrapper.ts ├── templates └── changelog.md ├── test ├── shimmed │ └── vortex-api-test-shimmed.ts ├── tsconfig.jest.json └── unit │ ├── filetree.test.ts │ ├── heredoc.test.ts │ ├── installer-pipeline.test.ts │ ├── loadorder.example.ts │ ├── loadorder.test.ts │ ├── modinfoparser.test.ts │ ├── mods.example.amm.ts │ ├── mods.example.archive.ts │ ├── mods.example.asi.ts │ ├── mods.example.audioware.ts │ ├── mods.example.cet.ts │ ├── mods.example.config.json.ts │ ├── mods.example.config.xml.ts │ ├── mods.example.core.amm.ts │ ├── mods.example.core.archivexl.ts │ ├── mods.example.core.audioware.ts │ ├── mods.example.core.cet.ts │ ├── mods.example.core.cybercat.ts │ ├── mods.example.core.cyberscript.ts │ ├── mods.example.core.inputloader.ts │ ├── mods.example.core.modsettings.ts │ ├── mods.example.core.red4ext.ts │ ├── mods.example.core.redscript.ts │ ├── mods.example.core.tweakxl.ts │ ├── mods.example.ini.ts │ ├── mods.example.multitype.ts │ ├── mods.example.preset.ts │ ├── mods.example.red4ext.ts │ ├── mods.example.redmod.autoconversion.ts │ ├── mods.example.redmod.ts │ ├── mods.example.redscript.ts │ ├── mods.example.special.deprecated.ts │ ├── mods.example.special.extrafiles.ts │ ├── mods.example.special.fallback.ts │ ├── mods.example.special.giftwrapped.ts │ ├── mods.example.ts │ ├── mods.example.tweakxl.ts │ ├── util.functions.test.ts │ └── utils.helper.ts ├── tsconfig.eslint.json ├── tsconfig.json └── webpack.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/.eslintrc.build.json -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/packaging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/.github/workflows/packaging.yml -------------------------------------------------------------------------------- /.github/workflows/testing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/.github/workflows/testing.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/post-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/.husky/post-commit -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npm run pre-commit 5 | -------------------------------------------------------------------------------- /.lintstagedrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/.lintstagedrc -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/README.md -------------------------------------------------------------------------------- /REDLauncher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/REDLauncher.png -------------------------------------------------------------------------------- /REDdeploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/REDdeploy.png -------------------------------------------------------------------------------- /SaveEditor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/SaveEditor.jpg -------------------------------------------------------------------------------- /gameart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/gameart.png -------------------------------------------------------------------------------- /gameicon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/gameicon.jpg -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/jest.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/package.json -------------------------------------------------------------------------------- /script/dump-schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/script/dump-schemas.ts -------------------------------------------------------------------------------- /script/package.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/script/package.ps1 -------------------------------------------------------------------------------- /script/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/script/package.sh -------------------------------------------------------------------------------- /src/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/src/actions.ts -------------------------------------------------------------------------------- /src/features.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/src/features.ts -------------------------------------------------------------------------------- /src/filetree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/src/filetree.ts -------------------------------------------------------------------------------- /src/index.metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/src/index.metadata.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/installer.amm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/src/installer.amm.ts -------------------------------------------------------------------------------- /src/installer.archive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/src/installer.archive.ts -------------------------------------------------------------------------------- /src/installer.asi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/src/installer.asi.ts -------------------------------------------------------------------------------- /src/installer.audioware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/src/installer.audioware.ts -------------------------------------------------------------------------------- /src/installer.cet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/src/installer.cet.ts -------------------------------------------------------------------------------- /src/installer.config.ini-reshade.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/src/installer.config.ini-reshade.ts -------------------------------------------------------------------------------- /src/installer.config.json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/src/installer.config.json.ts -------------------------------------------------------------------------------- /src/installer.config.xml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/src/installer.config.xml.ts -------------------------------------------------------------------------------- /src/installer.core-archive-xl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/src/installer.core-archive-xl.ts -------------------------------------------------------------------------------- /src/installer.core-audioware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/src/installer.core-audioware.ts -------------------------------------------------------------------------------- /src/installer.core-tweak-xl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/src/installer.core-tweak-xl.ts -------------------------------------------------------------------------------- /src/installer.core.amm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/src/installer.core.amm.ts -------------------------------------------------------------------------------- /src/installer.core.cybercat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/src/installer.core.cybercat.ts -------------------------------------------------------------------------------- /src/installer.core.cyberscript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/src/installer.core.cyberscript.ts -------------------------------------------------------------------------------- /src/installer.core.inputloader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/src/installer.core.inputloader.ts -------------------------------------------------------------------------------- /src/installer.core.modsettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/src/installer.core.modsettings.ts -------------------------------------------------------------------------------- /src/installer.core.red4ext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/src/installer.core.red4ext.ts -------------------------------------------------------------------------------- /src/installer.core.redscript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/src/installer.core.redscript.ts -------------------------------------------------------------------------------- /src/installer.core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/src/installer.core.ts -------------------------------------------------------------------------------- /src/installer.fallback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/src/installer.fallback.ts -------------------------------------------------------------------------------- /src/installer.multitype.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/src/installer.multitype.ts -------------------------------------------------------------------------------- /src/installer.preset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/src/installer.preset.ts -------------------------------------------------------------------------------- /src/installer.red4ext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/src/installer.red4ext.ts -------------------------------------------------------------------------------- /src/installer.redmod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/src/installer.redmod.ts -------------------------------------------------------------------------------- /src/installer.redscript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/src/installer.redscript.ts -------------------------------------------------------------------------------- /src/installer.special.deprecated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/src/installer.special.deprecated.ts -------------------------------------------------------------------------------- /src/installer.special.extrafiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/src/installer.special.extrafiles.ts -------------------------------------------------------------------------------- /src/installer.tweak-xl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/src/installer.tweak-xl.ts -------------------------------------------------------------------------------- /src/installers.layouts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/src/installers.layouts.ts -------------------------------------------------------------------------------- /src/installers.shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/src/installers.shared.ts -------------------------------------------------------------------------------- /src/installers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/src/installers.ts -------------------------------------------------------------------------------- /src/installers.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/src/installers.types.ts -------------------------------------------------------------------------------- /src/load_order.functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/src/load_order.functions.ts -------------------------------------------------------------------------------- /src/load_order.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/src/load_order.ts -------------------------------------------------------------------------------- /src/load_order.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/src/load_order.types.ts -------------------------------------------------------------------------------- /src/redmodding.metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/src/redmodding.metadata.ts -------------------------------------------------------------------------------- /src/redmodding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/src/redmodding.ts -------------------------------------------------------------------------------- /src/redmodding.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/src/redmodding.types.ts -------------------------------------------------------------------------------- /src/reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/src/reducers.ts -------------------------------------------------------------------------------- /src/state.functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/src/state.functions.ts -------------------------------------------------------------------------------- /src/tools.external.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/src/tools.external.ts -------------------------------------------------------------------------------- /src/tools.redmodding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/src/tools.redmodding.ts -------------------------------------------------------------------------------- /src/tools.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/src/tools.types.ts -------------------------------------------------------------------------------- /src/ui.dialogs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/src/ui.dialogs.ts -------------------------------------------------------------------------------- /src/ui.notifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/src/ui.notifications.ts -------------------------------------------------------------------------------- /src/util.functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/src/util.functions.ts -------------------------------------------------------------------------------- /src/util.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/src/util.types.ts -------------------------------------------------------------------------------- /src/views/settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/src/views/settings.tsx -------------------------------------------------------------------------------- /src/vortex-wrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/src/vortex-wrapper.ts -------------------------------------------------------------------------------- /templates/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/templates/changelog.md -------------------------------------------------------------------------------- /test/shimmed/vortex-api-test-shimmed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/test/shimmed/vortex-api-test-shimmed.ts -------------------------------------------------------------------------------- /test/tsconfig.jest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/test/tsconfig.jest.json -------------------------------------------------------------------------------- /test/unit/filetree.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/test/unit/filetree.test.ts -------------------------------------------------------------------------------- /test/unit/heredoc.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/test/unit/heredoc.test.ts -------------------------------------------------------------------------------- /test/unit/installer-pipeline.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/test/unit/installer-pipeline.test.ts -------------------------------------------------------------------------------- /test/unit/loadorder.example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/test/unit/loadorder.example.ts -------------------------------------------------------------------------------- /test/unit/loadorder.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/test/unit/loadorder.test.ts -------------------------------------------------------------------------------- /test/unit/modinfoparser.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/test/unit/modinfoparser.test.ts -------------------------------------------------------------------------------- /test/unit/mods.example.amm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/test/unit/mods.example.amm.ts -------------------------------------------------------------------------------- /test/unit/mods.example.archive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/test/unit/mods.example.archive.ts -------------------------------------------------------------------------------- /test/unit/mods.example.asi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/test/unit/mods.example.asi.ts -------------------------------------------------------------------------------- /test/unit/mods.example.audioware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/test/unit/mods.example.audioware.ts -------------------------------------------------------------------------------- /test/unit/mods.example.cet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/test/unit/mods.example.cet.ts -------------------------------------------------------------------------------- /test/unit/mods.example.config.json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/test/unit/mods.example.config.json.ts -------------------------------------------------------------------------------- /test/unit/mods.example.config.xml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/test/unit/mods.example.config.xml.ts -------------------------------------------------------------------------------- /test/unit/mods.example.core.amm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/test/unit/mods.example.core.amm.ts -------------------------------------------------------------------------------- /test/unit/mods.example.core.archivexl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/test/unit/mods.example.core.archivexl.ts -------------------------------------------------------------------------------- /test/unit/mods.example.core.audioware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/test/unit/mods.example.core.audioware.ts -------------------------------------------------------------------------------- /test/unit/mods.example.core.cet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/test/unit/mods.example.core.cet.ts -------------------------------------------------------------------------------- /test/unit/mods.example.core.cybercat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/test/unit/mods.example.core.cybercat.ts -------------------------------------------------------------------------------- /test/unit/mods.example.core.cyberscript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/test/unit/mods.example.core.cyberscript.ts -------------------------------------------------------------------------------- /test/unit/mods.example.core.inputloader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/test/unit/mods.example.core.inputloader.ts -------------------------------------------------------------------------------- /test/unit/mods.example.core.modsettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/test/unit/mods.example.core.modsettings.ts -------------------------------------------------------------------------------- /test/unit/mods.example.core.red4ext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/test/unit/mods.example.core.red4ext.ts -------------------------------------------------------------------------------- /test/unit/mods.example.core.redscript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/test/unit/mods.example.core.redscript.ts -------------------------------------------------------------------------------- /test/unit/mods.example.core.tweakxl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/test/unit/mods.example.core.tweakxl.ts -------------------------------------------------------------------------------- /test/unit/mods.example.ini.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/test/unit/mods.example.ini.ts -------------------------------------------------------------------------------- /test/unit/mods.example.multitype.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/test/unit/mods.example.multitype.ts -------------------------------------------------------------------------------- /test/unit/mods.example.preset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/test/unit/mods.example.preset.ts -------------------------------------------------------------------------------- /test/unit/mods.example.red4ext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/test/unit/mods.example.red4ext.ts -------------------------------------------------------------------------------- /test/unit/mods.example.redmod.autoconversion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/test/unit/mods.example.redmod.autoconversion.ts -------------------------------------------------------------------------------- /test/unit/mods.example.redmod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/test/unit/mods.example.redmod.ts -------------------------------------------------------------------------------- /test/unit/mods.example.redscript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/test/unit/mods.example.redscript.ts -------------------------------------------------------------------------------- /test/unit/mods.example.special.deprecated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/test/unit/mods.example.special.deprecated.ts -------------------------------------------------------------------------------- /test/unit/mods.example.special.extrafiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/test/unit/mods.example.special.extrafiles.ts -------------------------------------------------------------------------------- /test/unit/mods.example.special.fallback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/test/unit/mods.example.special.fallback.ts -------------------------------------------------------------------------------- /test/unit/mods.example.special.giftwrapped.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/test/unit/mods.example.special.giftwrapped.ts -------------------------------------------------------------------------------- /test/unit/mods.example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/test/unit/mods.example.ts -------------------------------------------------------------------------------- /test/unit/mods.example.tweakxl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/test/unit/mods.example.tweakxl.ts -------------------------------------------------------------------------------- /test/unit/util.functions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/test/unit/util.functions.test.ts -------------------------------------------------------------------------------- /test/unit/utils.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/test/unit/utils.helper.ts -------------------------------------------------------------------------------- /tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/tsconfig.eslint.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E1337Kat/cyberpunk2077_ext_redux/HEAD/webpack.config.js --------------------------------------------------------------------------------