├── .eslintrc.cjs ├── .gitignore ├── .prettierignore ├── .prettierrc ├── CREDITS.md ├── README.md ├── electron-builder.json5 ├── electron ├── electron-env.d.ts ├── main.ts └── preload.ts ├── index.html ├── licenses ├── LICENSE └── sharp-LICENSE ├── package.json ├── postcss.config.js ├── public ├── icon.icns ├── icon.ico ├── icon.png ├── icon.svg └── icon_128.png ├── scripts ├── afterPack.js └── rebuild.js ├── src ├── App.css ├── App.tsx ├── components │ ├── AboutModal.tsx │ ├── ConversionOptions.tsx │ ├── ConvertButton.tsx │ ├── DropZone.tsx │ ├── FileList.tsx │ ├── FooterLinks.tsx │ └── StatusMessage.tsx ├── index.css ├── main.tsx └── vite-env.d.ts ├── tailwind.config.js ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katbella/pixel-converter/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katbella/pixel-converter/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | # Ignore artifacts: 2 | build 3 | coverage 4 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /CREDITS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katbella/pixel-converter/HEAD/CREDITS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katbella/pixel-converter/HEAD/README.md -------------------------------------------------------------------------------- /electron-builder.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katbella/pixel-converter/HEAD/electron-builder.json5 -------------------------------------------------------------------------------- /electron/electron-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katbella/pixel-converter/HEAD/electron/electron-env.d.ts -------------------------------------------------------------------------------- /electron/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katbella/pixel-converter/HEAD/electron/main.ts -------------------------------------------------------------------------------- /electron/preload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katbella/pixel-converter/HEAD/electron/preload.ts -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katbella/pixel-converter/HEAD/index.html -------------------------------------------------------------------------------- /licenses/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katbella/pixel-converter/HEAD/licenses/LICENSE -------------------------------------------------------------------------------- /licenses/sharp-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katbella/pixel-converter/HEAD/licenses/sharp-LICENSE -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katbella/pixel-converter/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katbella/pixel-converter/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katbella/pixel-converter/HEAD/public/icon.icns -------------------------------------------------------------------------------- /public/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katbella/pixel-converter/HEAD/public/icon.ico -------------------------------------------------------------------------------- /public/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katbella/pixel-converter/HEAD/public/icon.png -------------------------------------------------------------------------------- /public/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katbella/pixel-converter/HEAD/public/icon.svg -------------------------------------------------------------------------------- /public/icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katbella/pixel-converter/HEAD/public/icon_128.png -------------------------------------------------------------------------------- /scripts/afterPack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katbella/pixel-converter/HEAD/scripts/afterPack.js -------------------------------------------------------------------------------- /scripts/rebuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katbella/pixel-converter/HEAD/scripts/rebuild.js -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katbella/pixel-converter/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/components/AboutModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katbella/pixel-converter/HEAD/src/components/AboutModal.tsx -------------------------------------------------------------------------------- /src/components/ConversionOptions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katbella/pixel-converter/HEAD/src/components/ConversionOptions.tsx -------------------------------------------------------------------------------- /src/components/ConvertButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katbella/pixel-converter/HEAD/src/components/ConvertButton.tsx -------------------------------------------------------------------------------- /src/components/DropZone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katbella/pixel-converter/HEAD/src/components/DropZone.tsx -------------------------------------------------------------------------------- /src/components/FileList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katbella/pixel-converter/HEAD/src/components/FileList.tsx -------------------------------------------------------------------------------- /src/components/FooterLinks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katbella/pixel-converter/HEAD/src/components/FooterLinks.tsx -------------------------------------------------------------------------------- /src/components/StatusMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katbella/pixel-converter/HEAD/src/components/StatusMessage.tsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katbella/pixel-converter/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katbella/pixel-converter/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katbella/pixel-converter/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katbella/pixel-converter/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katbella/pixel-converter/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katbella/pixel-converter/HEAD/vite.config.ts --------------------------------------------------------------------------------