285fc44124
Introduces a dynamic greeting, live clock, and weather widget to the home page. Adds a 'Reset' button for bookmarks, refines the bookmarks card UI, and updates CSS for new widgets and improved layout. Settings page now includes a weather unit preference (auto, Celsius, Fahrenheit) that syncs with the home page weather display.
34 lines
753 B
JSON
34 lines
753 B
JSON
{
|
|
"name": "nebula",
|
|
"productName": "Nebula",
|
|
"version": "1.0.0",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"start": "electron .",
|
|
"dist": "electron-builder",
|
|
"run": "electron ."
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"description": "",
|
|
"devDependencies": {
|
|
"electron": "^37.3.1",
|
|
"electron-builder": "^23.0.0",
|
|
"electron-nightly": "^39.0.0-nightly.20250811"
|
|
},
|
|
"build": {
|
|
"appId": "com.andrewzambazos.nebula",
|
|
"mac": {
|
|
"category": "public.app-category.productivity",
|
|
"icon": "assets/images/Logos/Nebula-Favicon.icns"
|
|
},
|
|
"win": {
|
|
"icon": "assets/images/Logos/Nebula-Favicon.ico"
|
|
},
|
|
"linux": {
|
|
"icon": "assets/images/Logos/Nebula-Favicon.png"
|
|
}
|
|
}
|
|
}
|