-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.28 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
{
"name": "dsh-prompt-manager",
"version": "0.1.0",
"description": "View, hook, replace, and switch DeepSeek Harness system prompts via presets",
"type": "module",
"main": "index.js",
"files": [
"index.js",
"client.js",
"cordis.patch.yml",
"pipeline.html",
"presets",
"docs",
"LICENSE"
],
"exports": {
".": "./index.js",
"./client": "./client.js",
"./package.json": "./package.json"
},
"keywords": [
"deepseek-harness",
"dsh",
"plugin",
"prompt",
"system-prompt",
"prompt-preset"
],
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
},
"client": {
"inject": [
"@deepseek-ai/dsh-client-connection",
"@deepseek-ai/dsh-client-runtime",
"@deepseek-ai/dsh-client-ui-settings"
],
"platform": "web"
}
},
"dependencies": {
"js-yaml": "^4.1.0"
},
"peerDependencies": {
"react": "^18.2.0",
"@deepseek-ai/cordis": "^4.0.1",
"@deepseek-ai/dsh-client-connection": "^0.1.0-rc.6",
"@deepseek-ai/dsh-client-runtime": "^0.1.0-rc.6",
"@deepseek-ai/dsh-skill": "^0.1.0-rc.6",
"@deepseek-ai/dsh-system-prompt": "^0.1.0-rc.6",
"@deepseek-ai/dsh-tools": "^0.1.0-rc.6",
"@deepseek-ai/schemastery": "^3.18.1"
},
"license": "MIT"
}