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.
37 lines
789 B
JSON
37 lines
789 B
JSON
{
|
|
"name": "dsh-compact-sidebar",
|
|
"description": "dsh web plugin: remove the dead vertical space between the logo row and the New Session button by tightening the sidebar logo row. Client-only.",
|
|
"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": [],
|
|
"platform": "web"
|
|
}
|
|
},
|
|
"files": [
|
|
"lib/**/*.js",
|
|
"cordis.patch.yml"
|
|
],
|
|
"license": "MIT"
|
|
}
|