Files

43 lines
1.6 KiB
JSON
Raw Permalink Normal View History

{
"name": "hermes-studio",
"version": "0.6.8",
"description": "Hermes Studio desktop distribution with bundled Python runtime and hermes-agent",
"homepage": "https://www.xinmi.cloud",
"author": {
"name": "Hermes Studio Contributors",
"email": "noreply@hermes-studio.local"
},
2026-06-02 08:55:17 +08:00
"license": "BSL-1.1",
"private": true,
"main": "dist/main/index.js",
"scripts": {
"build:main": "tsc -p tsconfig.json",
"build": "npm run build:main",
2026-06-02 08:55:17 +08:00
"fetch:node": "node scripts/fetch-node.mjs",
"fetch:git": "node scripts/fetch-git.mjs",
"fetch:python": "node scripts/fetch-python.mjs",
"install:hermes": "node scripts/install-hermes.mjs",
"patch:hermes": "node scripts/apply-hermes-patches.mjs",
2026-06-02 08:55:17 +08:00
"write:runtime-release": "node scripts/write-runtime-release.mjs",
"prepare:runtime": "npm run fetch:node && npm run fetch:git && npm run fetch:python && npm run install:hermes && npm run patch:hermes && npm run prune:python",
"prepare:python": "npm run prepare:runtime",
"package:runtime": "node scripts/package-runtime.mjs",
"runtime:asset-name": "node scripts/runtime-asset-name.mjs",
"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"
}
2026-06-02 08:55:17 +08:00
}