dsh-theme-customizer 1.0.1 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/PATCH-CORDIS-BUTTON.md +2 -3
- package/README.en.md +195 -106
- package/README.md +94 -5
- package/apply-patch.cjs +1 -1
- package/lib/client.js +3362 -3108
- package/package.json +50 -50
package/package.json
CHANGED
|
@@ -1,50 +1,50 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "dsh-theme-customizer",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "DeepSeek Harness (DSH) Web 界面自定义主题插件:七区域背景(主界面/侧边栏/输入区/设置界面/浮窗/Cordis,纯色/图片/选区裁剪/透明度)、文字颜色 5 类、框线颜色、标志调色、对话区细节定制、输入区统计条接管、浮动主题面板、预设导入导出(.tczp 含图)、localStorage 持久化。",
|
|
5
|
-
"license": "MIT",
|
|
6
|
-
"type": "module",
|
|
7
|
-
"main": "lib/index.js",
|
|
8
|
-
"exports": {
|
|
9
|
-
".": "./lib/index.js",
|
|
10
|
-
"./client": "./lib/client.js",
|
|
11
|
-
"./package.json": "./package.json"
|
|
12
|
-
},
|
|
13
|
-
"files": [
|
|
14
|
-
"lib/",
|
|
15
|
-
"cordis.patch.yml",
|
|
16
|
-
"apply-patch.cjs",
|
|
17
|
-
"PATCH-CORDIS-BUTTON.md",
|
|
18
|
-
"对话区测试指令.md",
|
|
19
|
-
"LICENSE",
|
|
20
|
-
"README.md",
|
|
21
|
-
"README.en.md"
|
|
22
|
-
],
|
|
23
|
-
"repository": {
|
|
24
|
-
"type": "git",
|
|
25
|
-
"url": "git+https://github.com/lxxz1918/dsh-theme-customizer.git"
|
|
26
|
-
},
|
|
27
|
-
"author": "lxxz1918",
|
|
28
|
-
"keywords": [
|
|
29
|
-
"dsh",
|
|
30
|
-
"deepseek-harness",
|
|
31
|
-
"theme",
|
|
32
|
-
"customizer",
|
|
33
|
-
"web-ui"
|
|
34
|
-
],
|
|
35
|
-
"dsh": {
|
|
36
|
-
"client": {
|
|
37
|
-
"platform": "web",
|
|
38
|
-
"inject": [
|
|
39
|
-
"@deepseek-ai/dsh-client-runtime",
|
|
40
|
-
"@deepseek-ai/dsh-client-ui-slots",
|
|
41
|
-
"@deepseek-ai/dsh-client-ui-settings",
|
|
42
|
-
"@deepseek-ai/dsh-client-ui-layout",
|
|
43
|
-
"@deepseek-ai/dsh-client-ui-theme"
|
|
44
|
-
]
|
|
45
|
-
},
|
|
46
|
-
"bundle": {
|
|
47
|
-
"patch": "./cordis.patch.yml"
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "dsh-theme-customizer",
|
|
3
|
+
"version": "1.0.4",
|
|
4
|
+
"description": "DeepSeek Harness (DSH) Web 界面自定义主题插件:七区域背景(主界面/侧边栏/输入区/设置界面/浮窗/Cordis,纯色/图片/选区裁剪/透明度)、文字颜色 5 类、框线颜色、标志调色、对话区细节定制、输入区统计条接管、浮动主题面板、预设导入导出(.tczp 含图)、localStorage 持久化。",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"main": "lib/index.js",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": "./lib/index.js",
|
|
10
|
+
"./client": "./lib/client.js",
|
|
11
|
+
"./package.json": "./package.json"
|
|
12
|
+
},
|
|
13
|
+
"files": [
|
|
14
|
+
"lib/",
|
|
15
|
+
"cordis.patch.yml",
|
|
16
|
+
"apply-patch.cjs",
|
|
17
|
+
"PATCH-CORDIS-BUTTON.md",
|
|
18
|
+
"对话区测试指令.md",
|
|
19
|
+
"LICENSE",
|
|
20
|
+
"README.md",
|
|
21
|
+
"README.en.md"
|
|
22
|
+
],
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "git+https://github.com/lxxz1918/dsh-theme-customizer.git"
|
|
26
|
+
},
|
|
27
|
+
"author": "lxxz1918",
|
|
28
|
+
"keywords": [
|
|
29
|
+
"dsh",
|
|
30
|
+
"deepseek-harness",
|
|
31
|
+
"theme",
|
|
32
|
+
"customizer",
|
|
33
|
+
"web-ui"
|
|
34
|
+
],
|
|
35
|
+
"dsh": {
|
|
36
|
+
"client": {
|
|
37
|
+
"platform": "web",
|
|
38
|
+
"inject": [
|
|
39
|
+
"@deepseek-ai/dsh-client-runtime",
|
|
40
|
+
"@deepseek-ai/dsh-client-ui-slots",
|
|
41
|
+
"@deepseek-ai/dsh-client-ui-settings",
|
|
42
|
+
"@deepseek-ai/dsh-client-ui-layout",
|
|
43
|
+
"@deepseek-ai/dsh-client-ui-theme"
|
|
44
|
+
]
|
|
45
|
+
},
|
|
46
|
+
"bundle": {
|
|
47
|
+
"patch": "./cordis.patch.yml"
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
}
|