[change] README.md [change] animeCat.js [change] index.html [change] main.js [change] package.json [change] preload.js [change] settings.html
55 lines
1.2 KiB
JSON
55 lines
1.2 KiB
JSON
{
|
|
"productName": "Auto-Git",
|
|
"name": "Auto-Git",
|
|
"version": "1.0.0",
|
|
"description": "Auto-Git: Git-Überwachung mit automatischer LLM-Commit-Message und README-Erstellung",
|
|
"author": "Victor Giers",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"start": "electron .",
|
|
"dist": "electron-builder --publish never"
|
|
},
|
|
"dependencies": {
|
|
"chokidar": "^4.0.3",
|
|
"electron-store": "^8.2.0",
|
|
"ignore": "^7.0.4",
|
|
"micromatch": "^4.0.8",
|
|
"node-fetch": "^3.3.2",
|
|
"simple-git": "^3.20.0",
|
|
"suncalc": "^1.9.0"
|
|
},
|
|
"devDependencies": {
|
|
"autoprefixer": "^10.4.21",
|
|
"electron": "^25.0.0",
|
|
"electron-builder": "^26.0.12",
|
|
"postcss": "^8.5.3",
|
|
"tailwindcss": "^4.1.7"
|
|
},
|
|
"build": {
|
|
"appId": "com.victorgiers.auto-git",
|
|
"productName": "Auto-Git",
|
|
"files": [
|
|
"main.js",
|
|
"preload.js",
|
|
"renderer.js",
|
|
"index.html",
|
|
"settings.html",
|
|
"animeCat.js",
|
|
"rewrite-commit-msg.js.template",
|
|
"assets/**/*",
|
|
"node_modules/**/*"
|
|
],
|
|
"directories": {
|
|
"buildResources": "assets/icon"
|
|
},
|
|
"mac": {
|
|
"icon": "mac/icon.icns"
|
|
},
|
|
"win": {
|
|
"icon": "win/icon.ico"
|
|
},
|
|
"linux": {
|
|
"icon": "linux/icon.png"
|
|
}
|
|
}
|
|
} |