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.
57 lines
1.4 KiB
JSON
57 lines
1.4 KiB
JSON
{
|
|
"name": "dsh-touched-git",
|
|
"description": "Track session Git directories and open VS Code web workspaces only on explicit user action.",
|
|
"scripts": {
|
|
"test": "node --test test/*.test.js",
|
|
"install:editor": "node scripts/install-editor.mjs",
|
|
"install:preferences": "node scripts/install-editor-preferences.mjs",
|
|
"install:extensions": "node scripts/install-editor-extensions.mjs"
|
|
},
|
|
"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"
|
|
},
|
|
"dsh": {
|
|
"engines": {
|
|
"dsh": ">=0.1.2-alpha.1"
|
|
},
|
|
"bundle": {
|
|
"patch": "./cordis.patch.yml"
|
|
},
|
|
"client": {
|
|
"inject": [
|
|
"@deepseek-ai/dsh-client-ui-conversation",
|
|
"@deepseek-ai/dsh-api-session-controller",
|
|
"@deepseek-ai/dsh-client-ui-tool",
|
|
"@dsh-external/dsh-diff-viewer"
|
|
],
|
|
"platform": "web"
|
|
}
|
|
},
|
|
"files": [
|
|
"lib/**/*",
|
|
"scripts/*.mjs",
|
|
"scripts/*.py",
|
|
"editor-preferences/*",
|
|
"editor-file-bridge/*",
|
|
"editor-release.json",
|
|
"README.md",
|
|
"cordis.patch.yml"
|
|
],
|
|
"dependencies": {
|
|
"@deepseek-ai/dsh-tools": "0.1.1-rc.2"
|
|
},
|
|
"license": "MIT"
|
|
}
|