DSH-Arch-Setup/plugins/dsh-fleet-control/package.json
Шурупов Илья Викторович cf9443753e Add one-command Arch DSH setup
Package the portable DSH profiles, local plugins, desktop integration, Firefox wrapper, and ownership-aware installer lifecycle. Bundle checksum-pinned OpenVSCode, editor extensions, translation assets, and cloudflared so unreliable upstream artifact downloads cannot break a clean installation.
2026-09-12 19:13:36 +03:00

42 lines
971 B
JSON

{
"name": "dsh-fleet-control",
"description": "Stop All / Resume All from the conversation header: gracefully cancel every running agent turn, remember exactly which sessions were running, and later re-prompt only those with a 'continue' message. Survives an app restart.",
"version": "0.1.0",
"private": true,
"type": "module",
"engines": {
"node": "^22.19.0 || >=24.0.0"
},
"main": "lib/index.js",
"exports": {
".": {
"default": "./lib/index.js"
},
"./client": {
"default": "./lib/client.js"
},
"./package.json": "./package.json"
},
"scripts": {
"test": "node --test"
},
"dsh": {
"engines": {
"dsh": ">=0.1.2-alpha.1"
},
"bundle": {
"patch": "./cordis.patch.yml"
},
"client": {
"inject": [
"@deepseek-ai/dsh-client-ui-conversation"
],
"platform": "web"
}
},
"files": [
"lib/**/*.js",
"cordis.patch.yml"
],
"license": "MIT"
}