├── .eslintrc.js ├── .gitignore ├── .yarn ├── plugins │ └── @yarnpkg │ │ └── plugin-typescript.cjs └── releases │ └── yarn-3.0.2.cjs ├── .yarnrc.yml ├── README.md ├── _templates ├── component │ ├── assets │ │ └── styled.ts.t │ ├── index.tsx.t │ └── interface.ts.t ├── layout │ ├── asset │ │ └── styled.ts.t │ ├── index.tsx.t │ └── interface.ts.t └── state │ └── index.ts.t ├── electron-builder.yml ├── main ├── background.ts └── helpers │ ├── create-window.ts │ ├── index.ts │ ├── ipc.ts │ └── logger.ts ├── package.json ├── renderer ├── _document.tsx ├── components │ └── Titlebar │ │ ├── assets │ │ └── titlebar.ts │ │ └── index.tsx ├── layouts │ └── main │ │ ├── assets │ │ └── styled.ts │ │ └── index.tsx ├── next-env.d.ts ├── next.config.js ├── pages │ ├── _app.tsx │ └── home.tsx ├── public │ └── images │ │ └── logo.png ├── styles │ └── globals.sass └── tsconfig.json ├── resources ├── icon.icns └── icon.ico ├── tsconfig.json └── yarn.lock /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HextechDocs/lcu-explorer/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HextechDocs/lcu-explorer/HEAD/.gitignore -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-typescript.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HextechDocs/lcu-explorer/HEAD/.yarn/plugins/@yarnpkg/plugin-typescript.cjs -------------------------------------------------------------------------------- /.yarn/releases/yarn-3.0.2.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HextechDocs/lcu-explorer/HEAD/.yarn/releases/yarn-3.0.2.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HextechDocs/lcu-explorer/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HextechDocs/lcu-explorer/HEAD/README.md -------------------------------------------------------------------------------- /_templates/component/assets/styled.ts.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HextechDocs/lcu-explorer/HEAD/_templates/component/assets/styled.ts.t -------------------------------------------------------------------------------- /_templates/component/index.tsx.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HextechDocs/lcu-explorer/HEAD/_templates/component/index.tsx.t -------------------------------------------------------------------------------- /_templates/component/interface.ts.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HextechDocs/lcu-explorer/HEAD/_templates/component/interface.ts.t -------------------------------------------------------------------------------- /_templates/layout/asset/styled.ts.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HextechDocs/lcu-explorer/HEAD/_templates/layout/asset/styled.ts.t -------------------------------------------------------------------------------- /_templates/layout/index.tsx.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HextechDocs/lcu-explorer/HEAD/_templates/layout/index.tsx.t -------------------------------------------------------------------------------- /_templates/layout/interface.ts.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HextechDocs/lcu-explorer/HEAD/_templates/layout/interface.ts.t -------------------------------------------------------------------------------- /_templates/state/index.ts.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HextechDocs/lcu-explorer/HEAD/_templates/state/index.ts.t -------------------------------------------------------------------------------- /electron-builder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HextechDocs/lcu-explorer/HEAD/electron-builder.yml -------------------------------------------------------------------------------- /main/background.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HextechDocs/lcu-explorer/HEAD/main/background.ts -------------------------------------------------------------------------------- /main/helpers/create-window.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HextechDocs/lcu-explorer/HEAD/main/helpers/create-window.ts -------------------------------------------------------------------------------- /main/helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HextechDocs/lcu-explorer/HEAD/main/helpers/index.ts -------------------------------------------------------------------------------- /main/helpers/ipc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HextechDocs/lcu-explorer/HEAD/main/helpers/ipc.ts -------------------------------------------------------------------------------- /main/helpers/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HextechDocs/lcu-explorer/HEAD/main/helpers/logger.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HextechDocs/lcu-explorer/HEAD/package.json -------------------------------------------------------------------------------- /renderer/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HextechDocs/lcu-explorer/HEAD/renderer/_document.tsx -------------------------------------------------------------------------------- /renderer/components/Titlebar/assets/titlebar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HextechDocs/lcu-explorer/HEAD/renderer/components/Titlebar/assets/titlebar.ts -------------------------------------------------------------------------------- /renderer/components/Titlebar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HextechDocs/lcu-explorer/HEAD/renderer/components/Titlebar/index.tsx -------------------------------------------------------------------------------- /renderer/layouts/main/assets/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HextechDocs/lcu-explorer/HEAD/renderer/layouts/main/assets/styled.ts -------------------------------------------------------------------------------- /renderer/layouts/main/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HextechDocs/lcu-explorer/HEAD/renderer/layouts/main/index.tsx -------------------------------------------------------------------------------- /renderer/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HextechDocs/lcu-explorer/HEAD/renderer/next-env.d.ts -------------------------------------------------------------------------------- /renderer/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HextechDocs/lcu-explorer/HEAD/renderer/next.config.js -------------------------------------------------------------------------------- /renderer/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HextechDocs/lcu-explorer/HEAD/renderer/pages/_app.tsx -------------------------------------------------------------------------------- /renderer/pages/home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HextechDocs/lcu-explorer/HEAD/renderer/pages/home.tsx -------------------------------------------------------------------------------- /renderer/public/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HextechDocs/lcu-explorer/HEAD/renderer/public/images/logo.png -------------------------------------------------------------------------------- /renderer/styles/globals.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HextechDocs/lcu-explorer/HEAD/renderer/styles/globals.sass -------------------------------------------------------------------------------- /renderer/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HextechDocs/lcu-explorer/HEAD/renderer/tsconfig.json -------------------------------------------------------------------------------- /resources/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HextechDocs/lcu-explorer/HEAD/resources/icon.icns -------------------------------------------------------------------------------- /resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HextechDocs/lcu-explorer/HEAD/resources/icon.ico -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HextechDocs/lcu-explorer/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HextechDocs/lcu-explorer/HEAD/yarn.lock --------------------------------------------------------------------------------