-
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.34 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.34 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-plugin-toolkit",
"version": "1.0.0",
"description": "DeepSeek Harness personal toolkit: small runtime-toggleable quality-of-life optimizations, each shipped as one card in the Toolkit settings page. Optimizations: workspaceless chat, edit-and-resend last message, activity grouping in the sidebar, Chinese slash-menu descriptions, a per-turn change report, the OpenCode Go per-conversation session header, and model-capability sync for an llm-pi-ai route (moved here from dsh-plugin-quota-badges).",
"type": "module",
"main": "index.js",
"types": "index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"default": "./index.js"
},
"./client": "./client.js",
"./model-sync.js": "./model-sync.js",
"./package.json": "./package.json",
"./locale/*.json": "./locale/*.json"
},
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
},
"client": {
"inject": [
"@deepseek-ai/dsh-client-ui-settings-plugins",
"@deepseek-ai/dsh-client-locale",
"@deepseek-ai/dsh-client-runtime",
"@deepseek-ai/dsh-client-ui-primitives"
],
"platform": "web"
}
},
"keywords": [
"dsh-plugin",
"deepseek-harness",
"cordis",
"toolkit",
"quality-of-life",
"workspaceless",
"settings"
],
"author": "kola",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/kolawong/dsh-plugin-toolkit.git"
},
"homepage": "https://github.com/kolawong/dsh-plugin-toolkit#readme",
"bugs": {
"url": "https://github.com/kolawong/dsh-plugin-toolkit/issues"
},
"engines": {
"node": ">=18"
},
"files": [
"index.js",
"model-sync.js",
"models-core.js",
"client.js",
"slash-i18n-api.js",
"index.d.ts",
"cordis.patch.yml",
"README.md",
"README_CN.md",
"docs/assets/",
"LICENSE",
"locale/*.json"
],
"scripts": {
"test": "node --test tests/*.test.js",
"smoke": "node scripts/smoke.mjs",
"smoke:client": "node scripts/client-smoke.mjs",
"host:apply": "node scripts/apply-host-patch.mjs",
"host:verify": "node scripts/e2e-verify-rewrite.mjs",
"build": "node -c index.js && node -c client.js"
},
"peerDependencies": {
"@deepseek-ai/cordis": ">=4.0.0",
"@deepseek-ai/schemastery": ">=3.0.0",
"@deepseek-ai/dsh-settings": "*"
}
}