├── .eslintrc.json ├── .gitignore ├── .vscode ├── extensions.json └── launch.json ├── .vscodeignore ├── .vsixmanifest ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── dist └── placeholder ├── icon.png ├── img ├── obfuscator_button.png ├── obfuscator_obfuscate.png ├── obfuscator_settings.png ├── profiler_button.png ├── profiler_result.png └── vscode_obfuscator_button.png ├── package.json ├── prettier.config.js ├── src ├── cmd │ ├── helper.ts │ ├── hightlight.ts │ └── obfuscate.ts ├── extension.ts ├── obfuscate │ ├── callObfuscator.ts │ └── deobfuscateErrorReport.ts └── utils │ ├── constants.json │ ├── getConfigs.ts │ ├── getFileContents.ts │ ├── webView.html │ └── webView.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferib/lua-obfuscator-plugin/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferib/lua-obfuscator-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferib/lua-obfuscator-plugin/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferib/lua-obfuscator-plugin/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- 1 | src/ 2 | -------------------------------------------------------------------------------- /.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferib/lua-obfuscator-plugin/HEAD/.vsixmanifest -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferib/lua-obfuscator-plugin/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferib/lua-obfuscator-plugin/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferib/lua-obfuscator-plugin/HEAD/README.md -------------------------------------------------------------------------------- /dist/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferib/lua-obfuscator-plugin/HEAD/icon.png -------------------------------------------------------------------------------- /img/obfuscator_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferib/lua-obfuscator-plugin/HEAD/img/obfuscator_button.png -------------------------------------------------------------------------------- /img/obfuscator_obfuscate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferib/lua-obfuscator-plugin/HEAD/img/obfuscator_obfuscate.png -------------------------------------------------------------------------------- /img/obfuscator_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferib/lua-obfuscator-plugin/HEAD/img/obfuscator_settings.png -------------------------------------------------------------------------------- /img/profiler_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferib/lua-obfuscator-plugin/HEAD/img/profiler_button.png -------------------------------------------------------------------------------- /img/profiler_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferib/lua-obfuscator-plugin/HEAD/img/profiler_result.png -------------------------------------------------------------------------------- /img/vscode_obfuscator_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferib/lua-obfuscator-plugin/HEAD/img/vscode_obfuscator_button.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferib/lua-obfuscator-plugin/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferib/lua-obfuscator-plugin/HEAD/prettier.config.js -------------------------------------------------------------------------------- /src/cmd/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferib/lua-obfuscator-plugin/HEAD/src/cmd/helper.ts -------------------------------------------------------------------------------- /src/cmd/hightlight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferib/lua-obfuscator-plugin/HEAD/src/cmd/hightlight.ts -------------------------------------------------------------------------------- /src/cmd/obfuscate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferib/lua-obfuscator-plugin/HEAD/src/cmd/obfuscate.ts -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferib/lua-obfuscator-plugin/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/obfuscate/callObfuscator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferib/lua-obfuscator-plugin/HEAD/src/obfuscate/callObfuscator.ts -------------------------------------------------------------------------------- /src/obfuscate/deobfuscateErrorReport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferib/lua-obfuscator-plugin/HEAD/src/obfuscate/deobfuscateErrorReport.ts -------------------------------------------------------------------------------- /src/utils/constants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferib/lua-obfuscator-plugin/HEAD/src/utils/constants.json -------------------------------------------------------------------------------- /src/utils/getConfigs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferib/lua-obfuscator-plugin/HEAD/src/utils/getConfigs.ts -------------------------------------------------------------------------------- /src/utils/getFileContents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferib/lua-obfuscator-plugin/HEAD/src/utils/getFileContents.ts -------------------------------------------------------------------------------- /src/utils/webView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferib/lua-obfuscator-plugin/HEAD/src/utils/webView.html -------------------------------------------------------------------------------- /src/utils/webView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferib/lua-obfuscator-plugin/HEAD/src/utils/webView.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferib/lua-obfuscator-plugin/HEAD/tsconfig.json --------------------------------------------------------------------------------