gitextract_qiaq0x4s/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ └── bug_report.md │ └── workflows/ │ └── build.yml ├── .gitignore ├── .vscode/ │ └── extensions.json ├── LICENSE ├── README.md ├── index.html ├── licenses/ │ ├── GPL-3.0.txt │ └── cpio.NOTICE ├── package.json ├── splash.html ├── src/ │ ├── App.css │ ├── App.tsx │ ├── components/ │ │ ├── CommandButton.tsx │ │ ├── Menu/ │ │ │ ├── MenuBar.tsx │ │ │ ├── MenuBarButton.tsx │ │ │ ├── MenuBarDefinition.tsx │ │ │ └── MenuGroup.tsx │ │ ├── OperationView.css │ │ ├── OperationView.tsx │ │ ├── SDKMenu.tsx │ │ ├── SwiftMenu.tsx │ │ ├── TabLike.tsx │ │ └── Tiles/ │ │ ├── BottomBar.css │ │ ├── BottomBar.tsx │ │ ├── CommandConsole.tsx │ │ ├── Console.css │ │ ├── Console.tsx │ │ ├── Editor.css │ │ ├── Editor.tsx │ │ ├── FileExplorer.css │ │ ├── FileExplorer.tsx │ │ ├── FilteredConsole.tsx │ │ ├── Tile.css │ │ └── Tile.tsx │ ├── main.tsx │ ├── pages/ │ │ ├── About.tsx │ │ ├── IDE.css │ │ ├── IDE.tsx │ │ ├── New.css │ │ ├── New.tsx │ │ ├── NewTemplate.tsx │ │ ├── Onboarding.css │ │ └── Onboarding.tsx │ ├── preferences/ │ │ ├── PreferenceItemRenderer.tsx │ │ ├── Preferences.tsx │ │ ├── Prefs.css │ │ ├── helpers.ts │ │ ├── pages/ │ │ │ ├── appIds.tsx │ │ │ ├── appearance.tsx │ │ │ ├── appleId.ts │ │ │ ├── certificates.tsx │ │ │ ├── developer.ts │ │ │ ├── general.ts │ │ │ ├── index.ts │ │ │ ├── sourcekit.tsx │ │ │ └── swift.tsx │ │ ├── registry.ts │ │ └── types.ts │ ├── styles.css │ ├── utilities/ │ │ ├── Command.tsx │ │ ├── IDEContext.tsx │ │ ├── Shortcut.tsx │ │ ├── StoreContext.tsx │ │ ├── TauriFileSystemProvider.ts │ │ ├── UpdateContext.tsx │ │ ├── constants.ts │ │ ├── lsp-client.ts │ │ ├── operations.ts │ │ └── templates.ts │ └── vite-env.d.ts ├── src-tauri/ │ ├── .gitignore │ ├── Cargo.toml │ ├── build.rs │ ├── capabilities/ │ │ ├── desktop.json │ │ └── migrated.json │ ├── cpio │ ├── icons/ │ │ └── icon.icns │ ├── sdkmoverbin │ ├── src/ │ │ ├── builder/ │ │ │ ├── config.rs │ │ │ ├── crossplatform.rs │ │ │ ├── icon.rs │ │ │ ├── mod.rs │ │ │ ├── packer.rs │ │ │ ├── sdk.rs │ │ │ └── swift.rs │ │ ├── lsp_utils.rs │ │ ├── main.rs │ │ ├── operation.rs │ │ ├── sideloader/ │ │ │ ├── apple.rs │ │ │ ├── apple_commands.rs │ │ │ ├── device.rs │ │ │ ├── mod.rs │ │ │ ├── screenshot.rs │ │ │ ├── sideload.rs │ │ │ ├── stdout.rs │ │ │ └── syslog.rs │ │ ├── sourcekit_lsp.rs │ │ ├── templates.rs │ │ └── windows.rs │ ├── tauri.conf.json │ ├── tauri.windows.conf.json │ └── templates/ │ ├── swiftui/ │ │ ├── Info.plist │ │ ├── Package.swift │ │ ├── Sources/ │ │ │ ├── ContentView.swift │ │ │ └── {{projectName}}.swift │ │ └── crosscode.toml │ └── uikit/ │ ├── Info.plist │ ├── Package.swift │ ├── Sources/ │ │ ├── AppDelegate.swift │ │ └── RootViewController.swift │ └── crosscode.toml ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts