gitextract_5rcbumob/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── help_wanted.md │ ├── PULL_REQUEST_TEMPLATE.md │ ├── dependabot.yml │ └── workflows/ │ ├── build.yml │ └── ci.yml ├── .gitignore ├── .npmrc ├── .playwright.config.txt ├── .vite.config.flat.txt ├── .vscode/ │ ├── .debug.script.mjs │ ├── extensions.json │ ├── launch.json │ ├── settings.json │ └── tasks.json ├── LICENSE ├── README.md ├── README.zh-CN.md ├── build/ │ └── icon.icns ├── electron/ │ ├── electron-env.d.ts │ ├── main/ │ │ ├── index.ts │ │ └── update.ts │ └── preload/ │ └── index.ts ├── electron-builder.json ├── index.html ├── package.json ├── postcss.config.cjs ├── src/ │ ├── App.css │ ├── App.tsx │ ├── components/ │ │ └── update/ │ │ ├── Modal/ │ │ │ ├── index.tsx │ │ │ └── modal.css │ │ ├── Progress/ │ │ │ ├── index.tsx │ │ │ └── progress.css │ │ ├── README.md │ │ ├── README.zh-CN.md │ │ ├── index.tsx │ │ └── update.css │ ├── demos/ │ │ ├── ipc.ts │ │ └── node.ts │ ├── index.css │ ├── main.tsx │ ├── type/ │ │ └── electron-updater.d.ts │ └── vite-env.d.ts ├── tailwind.config.js ├── test/ │ └── e2e.spec.ts ├── tsconfig.json ├── tsconfig.node.json ├── vite.config.ts └── vitest.config.ts