Files
deepseek-harness/apps/desktop/package.json
T
Pine e87a3084ea feat(desktop): manual-download update check and OSS release manifest
Adds an unsigned, manual-download update flow. The main process fetches the OSS
updates/releases.json manifest (DSH_UPDATE_URL overrides), compares the latest
version, and on startup and hourly prompts to open the per-platform installer
URL; a preload bridge exposes the same check to the SPA's About "check for
updates" button, which renders the version, notes, and a download link.
scripts/generate-release-json.mjs builds the manifest from the packaged
.dmg/.exe. Windows nsis packaging is configured.

Co-Authored-By: Claude <noreply@anthropic.com>
2026-08-14 20:45:21 +08:00

33 lines
866 B
JSON

{
"name": "@deepseek-ai/dsh-desktop",
"description": "DeepSeek Harness Desktop ,由 PineSound 基于 deepseek-harness 项目构建",
"version": "0.1.0-rc.5",
"private": true,
"type": "module",
"author": "PineSound",
"main": "lib/types/main.js",
"files": [
"lib/types/*.js",
"lib/types/*.d.ts",
"electron-builder.yml"
],
"scripts": {
"build": "tsc -b tsconfig.json",
"build:harness": "node scripts/build-harness.mjs",
"generate-release-json": "node scripts/generate-release-json.mjs",
"typecheck": "tsc -b tsconfig.json",
"test": "vitest run",
"pack": "electron-builder"
},
"dependencies": {
"@deepseek-ai/dsh": "workspace:^"
},
"devDependencies": {
"@types/node": "^22.0.0",
"electron": "^42.4.1",
"electron-builder": "^25.1.8",
"typescript": "^6.0.3",
"vitest": "^4.1.8"
}
}