25973cabbc
- Replace emoji icons with Lucide SVG icons (moon, sun, settings, x, upload, rotate-ccw, trash-2, save) - Add Node.js dev server on port 3010 (server.js + npm run serve) - Redesign settings modal: tabbed layout, styled form fields, Save/Cancel footer - Fix dark mode: btn-danger hover now uses rgba instead of hardcoded light pink - Fix stale pendingBranding: history item click now calls revertAndClose() - Collapse branding header when no name/logo is set - Move density row inline style to .density-info CSS class - Normalise all innerText to textContent Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
29 lines
642 B
JSON
29 lines
642 B
JSON
{
|
|
"name": "freight-calculator-pro",
|
|
"version": "1.0.0",
|
|
"description": "Professional Freight Class Calculator",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"start": "electron .",
|
|
"build": "electron-builder --win",
|
|
"serve": "node server.js"
|
|
},
|
|
"author": "",
|
|
"license": "ISC",
|
|
"devDependencies": {
|
|
"electron": "^27.0.0",
|
|
"electron-builder": "^24.6.4"
|
|
},
|
|
"build": {
|
|
"appId": "com.freightcalc.pro",
|
|
"productName": "Freight Calculator Pro",
|
|
"win": {
|
|
"target": "nsis",
|
|
"icon": "icon.ico"
|
|
},
|
|
"nsis": {
|
|
"oneClick": false,
|
|
"allowToChangeInstallationDirectory": true
|
|
}
|
|
}
|
|
} |