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.
45 lines
913 B
JSON
45 lines
913 B
JSON
{
|
|
"name": "dsh-open-in-smerge",
|
|
"description": "Open the active agent session's Git repository in Sublime Merge from the conversation header.",
|
|
"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"
|
|
],
|
|
"peerDependencies": {
|
|
"@deepseek-ai/dsh-tools": "0.1.1-rc.2"
|
|
},
|
|
"license": "MIT"
|
|
}
|