mirror of
https://gitcode.com/JianFeeeee/HomeAgent.git
synced 2026-09-21 09:28:14 +00:00
- Add core.agent.embedding_model_path to seedDBValues and seedCoreDefs - Wire cfgReg.GetString in main.go to AgentConfig.EmbeddingModelPath - Follow existing core.agent.* ConfigRegistry pattern
36 lines
755 B
JSON
36 lines
755 B
JSON
{
|
|
"name": "homeagent-gui",
|
|
"version": "1.0.0",
|
|
"description": "HomeAgent Desktop GUI - Multi-connection management dashboard",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"start": "electron . --no-sandbox",
|
|
"dev": "electron . --no-sandbox --dev"
|
|
},
|
|
"dependencies": {
|
|
"electron": "^33.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"asar": "^3.2.0",
|
|
"electron-builder": "^26.15.3",
|
|
"electron-packager": "^17.1.2"
|
|
},
|
|
"build": {
|
|
"appId": "com.homeagent.gui",
|
|
"productName": "HomeAgent",
|
|
"linux": {
|
|
"target": [
|
|
"deb"
|
|
],
|
|
"category": "Utility"
|
|
},
|
|
"files": [
|
|
"main.js",
|
|
"preload.js",
|
|
"renderer/**/*",
|
|
"node_modules/**/*",
|
|
"!node_modules/electron-builder/**"
|
|
]
|
|
}
|
|
}
|