@norman-else/dsh-claude 0.1.6 → 0.1.7

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/package.json CHANGED
@@ -1,127 +1,129 @@
1
- {
2
- "name": "@norman-else/dsh-claude",
3
- "description": "Run the local Claude Code CLI as a first-class main conversation inside DeepSeek Harness",
4
- "version": "0.1.6",
5
- "type": "module",
6
- "main": "lib/index.mjs",
7
- "types": "lib/index.d.mts",
8
- "bin": {
9
- "dsh-claude": "lib/bin.mjs"
10
- },
11
- "scripts": {
12
- "build": "tsdown",
13
- "typecheck": "tsc -p tsconfig.json && tsc -p tsconfig.client.json",
14
- "test": "vitest run",
15
- "check": "pnpm run typecheck && pnpm run test && pnpm run build",
16
- "prepack": "pnpm run build",
17
- "release": "node scripts/publish.mjs",
18
- "release:check": "node scripts/publish.mjs --dry-run"
19
- },
20
- "exports": {
21
- ".": {
22
- "types": "./lib/index.d.mts",
23
- "default": "./lib/index.mjs"
24
- },
25
- "./preset-route": {
26
- "types": "./lib/preset-route.d.mts",
27
- "default": "./lib/preset-route.mjs"
28
- },
29
- "./client": "./lib/client.js",
30
- "./package.json": "./package.json"
31
- },
32
- "files": [
33
- "lib",
34
- "preset",
35
- "legacy-preset",
36
- "cordis.patch.yml",
37
- "README.md",
38
- "INSTALL.md",
39
- "LICENSE"
40
- ],
41
- "license": "MIT",
42
- "repository": {
43
- "type": "git",
44
- "url": "git+https://github.com/Norman-else/dsh-claude.git"
45
- },
46
- "homepage": "https://github.com/Norman-else/dsh-claude#readme",
47
- "bugs": {
48
- "url": "https://github.com/Norman-else/dsh-claude/issues"
49
- },
50
- "publishConfig": {
51
- "access": "public"
52
- },
53
- "engines": {
54
- "node": ">=20"
55
- },
56
- "dsh": {
57
- "bundle": {
58
- "patch": "./cordis.patch.yml"
59
- },
60
- "client": {
61
- "inject": [
62
- "@deepseek-ai/dsh-client-runtime",
63
- "@deepseek-ai/dsh-client-ui-conversation",
64
- "@deepseek-ai/dsh-client-ui-primitives",
65
- "@deepseek-ai/dsh-client-ui-settings",
66
- "@deepseek-ai/dsh-client-ui-slots",
67
- "@deepseek-ai/dsh-client-locale"
68
- ],
69
- "platform": "web"
70
- }
71
- },
72
- "dependencies": {
73
- "@anthropic-ai/claude-agent-sdk": "0.3.233"
74
- },
75
- "peerDependencies": {
76
- "@deepseek-ai/cordis": "^4.0.1",
77
- "@deepseek-ai/dsh-agent": "*",
78
- "@deepseek-ai/dsh-agent-presets": "*",
79
- "@deepseek-ai/dsh-brand": "*",
80
- "@deepseek-ai/dsh-client-locale": "*",
81
- "@deepseek-ai/dsh-client-runtime": "*",
82
- "@deepseek-ai/dsh-client-ui-conversation": "*",
83
- "@deepseek-ai/dsh-client-ui-primitives": "*",
84
- "@deepseek-ai/dsh-client-ui-settings": "*",
85
- "@deepseek-ai/dsh-client-ui-slots": "*",
86
- "@deepseek-ai/dsh-commands": "*",
87
- "@deepseek-ai/dsh-home-paths": "*",
88
- "@deepseek-ai/dsh-host-webserver": "*",
89
- "@deepseek-ai/dsh-llm": "*",
90
- "@deepseek-ai/dsh-session": "*",
91
- "@deepseek-ai/dsh-subprocess": "*",
92
- "@deepseek-ai/dsh-tools": "*",
93
- "@deepseek-ai/dsh-user-approval": "*",
94
- "@deepseek-ai/schemastery": "^3.18.1",
95
- "react": "^18.2.0",
96
- "react-dom": "^18.2.0"
97
- },
98
- "devDependencies": {
99
- "@deepseek-ai/cordis": "4.0.1",
100
- "@deepseek-ai/dsh-agent": "0.1.0-rc.6",
101
- "@deepseek-ai/dsh-agent-presets": "0.1.0-rc.6",
102
- "@deepseek-ai/dsh-brand": "0.1.0-rc.6",
103
- "@deepseek-ai/dsh-client-locale": "0.1.0-rc.6",
104
- "@deepseek-ai/dsh-client-runtime": "0.1.0-rc.6",
105
- "@deepseek-ai/dsh-client-ui-conversation": "0.1.0-rc.6",
106
- "@deepseek-ai/dsh-client-ui-primitives": "0.1.0-rc.6",
107
- "@deepseek-ai/dsh-client-ui-settings": "0.1.0-rc.6",
108
- "@deepseek-ai/dsh-client-ui-slots": "0.1.0-rc.6",
109
- "@deepseek-ai/dsh-commands": "0.1.0-rc.6",
110
- "@deepseek-ai/dsh-home-paths": "0.1.0-rc.6",
111
- "@deepseek-ai/dsh-host-webserver": "0.1.0-rc.6",
112
- "@deepseek-ai/dsh-llm": "0.1.0-rc.6",
113
- "@deepseek-ai/dsh-session": "0.1.0-rc.6",
114
- "@deepseek-ai/dsh-subprocess": "0.1.0-rc.6",
115
- "@deepseek-ai/dsh-tools": "0.1.0-rc.6",
116
- "@deepseek-ai/dsh-user-approval": "0.1.0-rc.6",
117
- "@deepseek-ai/schemastery": "3.18.1",
118
- "@types/node": "^22.20.0",
119
- "@types/react": "~18.3.1",
120
- "@types/react-dom": "~18.3.0",
121
- "react": "18.2.0",
122
- "react-dom": "18.2.0",
123
- "tsdown": "^0.22.2",
124
- "typescript": "^5.9.3",
125
- "vitest": "^4.1.8"
126
- }
127
- }
1
+ {
2
+ "name": "@norman-else/dsh-claude",
3
+ "description": "Run the local Claude Code CLI as a first-class main conversation inside DeepSeek Harness",
4
+ "version": "0.1.7",
5
+ "type": "module",
6
+ "main": "lib/index.mjs",
7
+ "types": "lib/index.d.mts",
8
+ "bin": {
9
+ "dsh-claude": "lib/bin.mjs"
10
+ },
11
+ "scripts": {
12
+ "build": "tsdown",
13
+ "typecheck": "tsc -p tsconfig.json && tsc -p tsconfig.client.json",
14
+ "test": "vitest run",
15
+ "check": "pnpm run typecheck && pnpm run test && pnpm run build",
16
+ "prepack": "pnpm run build",
17
+ "release": "node scripts/publish.mjs",
18
+ "release:check": "node scripts/publish.mjs --dry-run"
19
+ },
20
+ "exports": {
21
+ ".": {
22
+ "types": "./lib/index.d.mts",
23
+ "default": "./lib/index.mjs"
24
+ },
25
+ "./preset-route": {
26
+ "types": "./lib/preset-route.d.mts",
27
+ "default": "./lib/preset-route.mjs"
28
+ },
29
+ "./client": "./lib/client.js",
30
+ "./package.json": "./package.json"
31
+ },
32
+ "files": [
33
+ "lib",
34
+ "preset",
35
+ "legacy-preset",
36
+ "cordis.patch.yml",
37
+ "README.md",
38
+ "INSTALL.md",
39
+ "LICENSE"
40
+ ],
41
+ "license": "MIT",
42
+ "repository": {
43
+ "type": "git",
44
+ "url": "git+https://github.com/Norman-else/dsh-claude.git"
45
+ },
46
+ "homepage": "https://github.com/Norman-else/dsh-claude#readme",
47
+ "bugs": {
48
+ "url": "https://github.com/Norman-else/dsh-claude/issues"
49
+ },
50
+ "publishConfig": {
51
+ "access": "public"
52
+ },
53
+ "engines": {
54
+ "node": ">=20"
55
+ },
56
+ "dsh": {
57
+ "bundle": {
58
+ "patch": "./cordis.patch.yml"
59
+ },
60
+ "client": {
61
+ "inject": [
62
+ "@deepseek-ai/dsh-client-runtime",
63
+ "@deepseek-ai/dsh-client-ui-conversation",
64
+ "@deepseek-ai/dsh-client-ui-primitives",
65
+ "@deepseek-ai/dsh-client-ui-settings",
66
+ "@deepseek-ai/dsh-client-ui-slots",
67
+ "@deepseek-ai/dsh-client-locale"
68
+ ],
69
+ "platform": "web"
70
+ }
71
+ },
72
+ "dependencies": {
73
+ "@anthropic-ai/claude-agent-sdk": "0.3.233"
74
+ },
75
+ "peerDependencies": {
76
+ "@deepseek-ai/cordis": "^4.0.1",
77
+ "@deepseek-ai/dsh-agent": "*",
78
+ "@deepseek-ai/dsh-agent-presets": "*",
79
+ "@deepseek-ai/dsh-brand": "*",
80
+ "@deepseek-ai/dsh-client-locale": "*",
81
+ "@deepseek-ai/dsh-client-runtime": "*",
82
+ "@deepseek-ai/dsh-client-ui-conversation": "*",
83
+ "@deepseek-ai/dsh-client-ui-primitives": "*",
84
+ "@deepseek-ai/dsh-client-ui-settings": "*",
85
+ "@deepseek-ai/dsh-client-ui-slots": "*",
86
+ "@deepseek-ai/dsh-commands": "*",
87
+ "@deepseek-ai/dsh-home-paths": "*",
88
+ "@deepseek-ai/dsh-host-webserver": "*",
89
+ "@deepseek-ai/dsh-llm": "*",
90
+ "@deepseek-ai/dsh-session": "*",
91
+ "@deepseek-ai/dsh-subprocess": "*",
92
+ "@deepseek-ai/dsh-tools": "*",
93
+ "@deepseek-ai/dsh-user-approval": "*",
94
+ "@deepseek-ai/dsh-user-questions": "*",
95
+ "@deepseek-ai/schemastery": "^3.18.1",
96
+ "react": "^18.2.0",
97
+ "react-dom": "^18.2.0"
98
+ },
99
+ "devDependencies": {
100
+ "@deepseek-ai/cordis": "4.0.1",
101
+ "@deepseek-ai/dsh-agent": "0.1.0-rc.6",
102
+ "@deepseek-ai/dsh-agent-presets": "0.1.0-rc.6",
103
+ "@deepseek-ai/dsh-brand": "0.1.0-rc.6",
104
+ "@deepseek-ai/dsh-client-locale": "0.1.0-rc.6",
105
+ "@deepseek-ai/dsh-client-runtime": "0.1.0-rc.6",
106
+ "@deepseek-ai/dsh-client-ui-conversation": "0.1.0-rc.6",
107
+ "@deepseek-ai/dsh-client-ui-primitives": "0.1.0-rc.6",
108
+ "@deepseek-ai/dsh-client-ui-settings": "0.1.0-rc.6",
109
+ "@deepseek-ai/dsh-client-ui-slots": "0.1.0-rc.6",
110
+ "@deepseek-ai/dsh-commands": "0.1.0-rc.6",
111
+ "@deepseek-ai/dsh-home-paths": "0.1.0-rc.6",
112
+ "@deepseek-ai/dsh-host-webserver": "0.1.0-rc.6",
113
+ "@deepseek-ai/dsh-llm": "0.1.0-rc.6",
114
+ "@deepseek-ai/dsh-session": "0.1.0-rc.6",
115
+ "@deepseek-ai/dsh-subprocess": "0.1.0-rc.6",
116
+ "@deepseek-ai/dsh-tools": "0.1.0-rc.6",
117
+ "@deepseek-ai/dsh-user-approval": "0.1.0-rc.6",
118
+ "@deepseek-ai/dsh-user-questions": "0.1.0-rc.6",
119
+ "@deepseek-ai/schemastery": "3.18.1",
120
+ "@types/node": "^22.20.0",
121
+ "@types/react": "~18.3.1",
122
+ "@types/react-dom": "~18.3.0",
123
+ "react": "18.2.0",
124
+ "react-dom": "18.2.0",
125
+ "tsdown": "^0.22.2",
126
+ "typescript": "^5.9.3",
127
+ "vitest": "^4.1.8"
128
+ }
129
+ }