7cd6048778
Introduces the Nebot plugin, providing a floating chat panel that communicates with a local or remote Ollama server and persists chat sessions. Adds dependencies for markdown rendering and code highlighting (dompurify, highlight.js, marked). Removes the sample-hello plugin. Updates site-history.json with recent browsing history.
39 lines
860 B
JSON
39 lines
860 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": "",
|
|
"dependencies": {
|
|
"dompurify": "^3.1.6",
|
|
"highlight.js": "^11.9.0",
|
|
"marked": "^12.0.2"
|
|
},
|
|
"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"
|
|
}
|
|
}
|
|
}
|