1
0
Files
auto-git-gui/package.json
Victor Giers 134a3b7f27 Add settings dialog for Sky Mode and Skip Prompt, update main HTML and script
- Created `settings.html` with a dialog for adjusting settings related to Sky Mode and Skip Prompt.
- Updated `main.html` to include context menus for folder operations.
- Enhanced `main.js` with functionality to handle settings changes, apply Sky Mode, and add copy-to-clipboard feature for diffs.

This commit message was automatically generated by auto-git
2025-05-23 19:36:42 +02:00

42 lines
875 B
JSON

{
"productName": "Auto-Git",
"name": "Auto-Git",
"description": "Auto-Git: Git-Surveillance with automatic LLM-Commit-Message and README.md compilation",
"version": "1.0.0",
"author": "Victor Giers",
"main": "main.js",
"scripts": {
"start": "electron .",
"dist": "electron-builder"
},
"build": {
"appId": "com.deinname.auto-git",
"productName": "Auto-Git",
"files": [
"**/*"
],
"directories": {
"buildResources": "assets/icon"
},
"mac": {
"icon": "mac/icon.icns"
},
"win": {
"icon": "win/icon.ico"
},
"linux": {
"icon": "linux/icon.png"
}
},
"dependencies": {
"chokidar": "^4.0.3",
"electron-store": "^8.2.0",
"simple-git": "^3.20.0",
"suncalc": "^1.9.0"
},
"devDependencies": {
"electron": "^25.0.0",
"electron-builder": "^26.0.12"
}
}