dsh-claude-style 0.2.2
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/CHANGELOG.md +59 -0
- package/LICENSE +30 -0
- package/README.en.md +93 -0
- package/README.md +103 -0
- package/cordis.patch.yml +4 -0
- package/docs/STYLE.md +87 -0
- package/docs/dark.png +0 -0
- package/docs/light.png +0 -0
- package/lib/client.js +3559 -0
- package/lib/index.js +3 -0
- package/package.json +59 -0
- package/skin.json +11 -0
package/lib/index.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "dsh-claude-style",
|
|
3
|
+
"description": "Claude Code Desktop theme for DeepSeek Harness (dsh) web GUI — visual & interaction overhaul",
|
|
4
|
+
"version": "0.2.2",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "lib/index.js",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"build": "node scripts/build.mjs",
|
|
9
|
+
"probe": "node scripts/probe.cjs",
|
|
10
|
+
"prepublishOnly": "npm run build"
|
|
11
|
+
},
|
|
12
|
+
"exports": {
|
|
13
|
+
".": "./lib/index.js",
|
|
14
|
+
"./client": "./lib/client.js",
|
|
15
|
+
"./package.json": "./package.json"
|
|
16
|
+
},
|
|
17
|
+
"dsh": {
|
|
18
|
+
"bundle": {
|
|
19
|
+
"patch": "./cordis.patch.yml"
|
|
20
|
+
},
|
|
21
|
+
"client": {
|
|
22
|
+
"inject": [],
|
|
23
|
+
"platform": "web"
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
"files": [
|
|
27
|
+
"lib",
|
|
28
|
+
"skin.json",
|
|
29
|
+
"cordis.patch.yml",
|
|
30
|
+
"docs",
|
|
31
|
+
"CHANGELOG.md",
|
|
32
|
+
"README.md",
|
|
33
|
+
"README.en.md",
|
|
34
|
+
"LICENSE"
|
|
35
|
+
],
|
|
36
|
+
"keywords": [
|
|
37
|
+
"dsh",
|
|
38
|
+
"deepseek-harness",
|
|
39
|
+
"dsh-plugin",
|
|
40
|
+
"cordis",
|
|
41
|
+
"web-ui",
|
|
42
|
+
"theme",
|
|
43
|
+
"claude",
|
|
44
|
+
"claude-code",
|
|
45
|
+
"desktop-theme",
|
|
46
|
+
"anthropic",
|
|
47
|
+
"editorial"
|
|
48
|
+
],
|
|
49
|
+
"license": "MIT",
|
|
50
|
+
"author": "Nwflower",
|
|
51
|
+
"repository": {
|
|
52
|
+
"type": "git",
|
|
53
|
+
"url": "git+https://github.com/Nwflower/dsh-claude-style.git"
|
|
54
|
+
},
|
|
55
|
+
"homepage": "https://github.com/Nwflower/dsh-claude-style#readme",
|
|
56
|
+
"bugs": {
|
|
57
|
+
"url": "https://github.com/Nwflower/dsh-claude-style/issues"
|
|
58
|
+
}
|
|
59
|
+
}
|
package/skin.json
ADDED