Files
Hermes-ui/packages/desktop/package.json
T
ekko f7991572af fix desktop preload build and rename app (#1150)
* fix desktop preload fetch typing

* rename desktop app to Hermes Studio

* rename desktop package to Hermes Studio

* update Hermes Studio desktop icons

* configure desktop signing and app id

* force desktop api calls to local server

* isolate desktop agent bridge ports

* bundle MCP support in desktop Python

* change desktop default port to 8748

* restore webui production port copy
2026-05-30 15:59:52 +08:00

37 lines
1.3 KiB
JSON

{
"name": "hermes-studio",
"version": "0.6.5",
"description": "Hermes Studio desktop distribution with bundled Python runtime and hermes-agent",
"homepage": "https://ekkolearnai.com",
"author": {
"name": "Hermes Studio Contributors",
"email": "noreply@hermes-studio.local"
},
"license": "MIT",
"private": true,
"main": "dist/main/index.js",
"scripts": {
"build:main": "tsc -p tsconfig.json",
"build": "npm run build:main",
"fetch:python": "node scripts/fetch-python.mjs",
"install:hermes": "node scripts/install-hermes.mjs",
"patch:hermes": "node scripts/apply-hermes-patches.mjs",
"prepare:python": "npm run fetch:python && npm run install:hermes && npm run patch:hermes && npm run prune:python",
"prune:python": "node scripts/prune-python.mjs",
"dev": "npm run build:main && electron .",
"dist": "npm run build && electron-builder",
"dist:mac": "npm run build && electron-builder --mac",
"dist:win": "npm run build && electron-builder --win",
"dist:linux": "npm run build && electron-builder --linux"
},
"devDependencies": {
"@types/node": "^24.12.2",
"electron": "^42.3.0",
"electron-builder": "^25.1.8",
"typescript": "~5.6.3"
},
"dependencies": {
"electron-updater": "^6.3.9"
}
}