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/lib/index.js ADDED
@@ -0,0 +1,3 @@
1
+ /** Host half is intentionally empty; the skin effect is browser-only. */
2
+ export const name = 'dsh-claude-style'
3
+ export function apply() {}
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
@@ -0,0 +1,11 @@
1
+ {
2
+ "id": "claude-style",
3
+ "name": "Claude Code Style",
4
+ "tagline": "Claude Code Desktop 深度定制化主题",
5
+ "accent": "#d97757",
6
+ "bodyAttr": "data-dsh-claude-style",
7
+ "package": "dsh-claude-style",
8
+ "wiring": {
9
+ "id": "ui-skin-claude-style"
10
+ }
11
+ }