-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.22 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "dsh-agent-driver-writehere",
"version": "0.3.1",
"description": "Hierarchical long-form writing for DeepSeek Harness — WriteHERE as an agent driver, not extra ReAct tools.",
"license": "MIT",
"type": "module",
"private": false,
"keywords": [
"dsh-plugin",
"deepseek-harness",
"writehere",
"agent-driver",
"long-form-writing"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Player-YN/dsh-agent-driver-writehere.git"
},
"bugs": {
"url": "https://github.com/Player-YN/dsh-agent-driver-writehere/issues"
},
"homepage": "https://github.com/Player-YN/dsh-agent-driver-writehere#readme",
"main": "./lib/index.js",
"exports": {
".": "./lib/index.js",
"./client": "./lib/client.js",
"./agent-drivers": "./lib/agent-drivers.js",
"./article-tree": "./lib/article-tree.js",
"./writehere": "./lib/writehere.js",
"./package.json": "./package.json"
},
"files": [
"lib",
"presets",
"patches",
"cordis.patch.yml",
"NOTICE",
"LICENSE",
"CITATION.cff"
],
"scripts": {
"build": "node scripts/build.mjs"
},
"dsh": {
"plugin": true,
"kind": "server",
"bundle": {
"patch": "./cordis.patch.yml"
},
"client": {
"inject": [
"@deepseek-ai/dsh-client-locale",
"@deepseek-ai/dsh-client-ui-sidebar"
],
"platform": "web"
}
},
"dependencies": {
"zod": "^4.4.3"
},
"peerDependencies": {
"@deepseek-ai/cordis": "*",
"@deepseek-ai/dsh-agent": "*",
"@deepseek-ai/dsh-invariants": "*",
"@deepseek-ai/dsh-llm": "*",
"@deepseek-ai/dsh-scope": "*",
"@deepseek-ai/dsh-session": "*",
"@deepseek-ai/dsh-session-projection": "*",
"@deepseek-ai/dsh-system-prompt": "*"
},
"peerDependenciesMeta": {
"@deepseek-ai/cordis": { "optional": true },
"@deepseek-ai/dsh-agent": { "optional": true },
"@deepseek-ai/dsh-invariants": { "optional": true },
"@deepseek-ai/dsh-llm": { "optional": true },
"@deepseek-ai/dsh-scope": { "optional": true },
"@deepseek-ai/dsh-session": { "optional": true },
"@deepseek-ai/dsh-session-projection": { "optional": true },
"@deepseek-ai/dsh-system-prompt": { "optional": true }
}
}