-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "@dsh-focus/focus-plugin",
"version": "0.1.0",
"description": "DSH web focus mode plugin: ?focus=conversation.composer shows only the input area, ?focus=conversation.session shows only the message flow, both hiding the DSH main sidebar; auto-resumes the most recent non-blank session when none is current.",
"keywords": [
"deepseek-harness",
"dsh",
"focus",
"client-plugin"
],
"type": "module",
"main": "lib/index.js",
"exports": {
".": "./lib/index.js",
"./client": "./lib/client.js",
"./package.json": "./package.json"
},
"files": [
"lib",
"cordis.patch.yml",
"README.md"
],
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
},
"client": {
"platform": "web",
"inject": ["sessions"]
}
},
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"build": "tsdown --config tsdown.config.ts",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@deepseek-ai/cordis": "^4.0.1",
"tsdown": "0.22.14",
"typescript": "6.0.3"
},
"license": "MIT"
}