dsh-code 0.5.0 → 0.6.1

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,117 +1,117 @@
1
- {
2
- "name": "dsh-code",
3
- "description": "Claude-Code-style interactive TUI bundle for DeepSeek Harness (dsh): DeepSeek-blue whale banner, live session transcript, and a blended status line",
4
- "version": "0.5.0",
5
- "type": "module",
6
- "bin": {
7
- "deepseek": "./bin/deepseek.mjs",
8
- "dsh-code": "./bin/deepseek.mjs"
9
- },
10
- "main": "lib/index.mjs",
11
- "types": "lib/types/index.d.ts",
12
- "exports": {
13
- ".": {
14
- "types": "./lib/types/index.d.ts",
15
- "default": "./lib/index.mjs"
16
- },
17
- "./startup": {
18
- "types": "./lib/types/startup.d.ts",
19
- "default": "./lib/startup.mjs"
20
- },
21
- "./invariant": {
22
- "types": "./lib/types/invariant.d.ts",
23
- "default": "./lib/invariant.mjs"
24
- },
25
- "./cordis.patch.yml": "./cordis.patch.yml",
26
- "./src/*": "./src/*",
27
- "./package.json": "./package.json"
28
- },
29
- "files": [
30
- "lib",
31
- "cordis.patch.yml",
32
- "src"
33
- ],
34
- "license": "MIT",
35
- "keywords": [
36
- "deepseek",
37
- "dsh",
38
- "deepseek-harness",
39
- "tui",
40
- "terminal",
41
- "claude-code",
42
- "agent",
43
- "ink"
44
- ],
45
- "repository": {
46
- "type": "git",
47
- "url": "git+https://github.com/unlinearity/dsh-code.git"
48
- },
49
- "dsh": {
50
- "bundle": {
51
- "patch": "./cordis.patch.yml"
52
- }
53
- },
54
- "scripts": {
55
- "build": "tsdown && tsc -p tsconfig.json",
56
- "test": "vitest run",
57
- "typecheck": "tsc -p tsconfig.json --noEmit",
58
- "gen:whale": "tsx scripts/gen-whale-glyph.ts",
59
- "prepare": "pnpm build",
60
- "prepublishOnly": "pnpm typecheck && pnpm test && pnpm build"
61
- },
62
- "engines": {
63
- "node": "^22.19 || >=24"
64
- },
65
- "dependencies": {
66
- "@deepseek-ai/schemastery": "^3.18.1",
67
- "chalk": "^5.6.2",
68
- "commander": "^14.0.2",
69
- "ink": "^5.2.1",
70
- "react": "^18.3.1"
71
- },
72
- "peerDependencies": {
73
- "@deepseek-ai/cordis": "^4.0.1",
74
- "@deepseek-ai/cordis-plugin-loader": "^1.0.0-rc.5",
75
- "@deepseek-ai/dsh-agent": "^0.1.0-rc.6",
76
- "@deepseek-ai/dsh-agent-default-model": "^0.1.0-rc.6",
77
- "@deepseek-ai/dsh-cmdline": "^0.1.0-rc.6",
78
- "@deepseek-ai/dsh-code-runtime-worker-thread": "^0.1.0-rc.6",
79
- "@deepseek-ai/dsh-commands": "^0.1.0-rc.6",
80
- "@deepseek-ai/dsh-compaction": "^0.1.0-rc.6",
81
- "@deepseek-ai/dsh-goal": "^0.1.0-rc.6",
82
- "@deepseek-ai/dsh-invariants": "^0.1.0-rc.6",
83
- "@deepseek-ai/dsh-llm": "^0.1.0-rc.6",
84
- "@deepseek-ai/dsh-llm-retry": "^0.1.0-rc.6",
85
- "@deepseek-ai/dsh-permission-presets": "^0.1.0-rc.6",
86
- "@deepseek-ai/dsh-plan-mode": "^0.1.0-rc.6",
87
- "@deepseek-ai/dsh-sandbox-policy": "^0.1.0-rc.6",
88
- "@deepseek-ai/dsh-session": "^0.1.0-rc.6",
89
- "@deepseek-ai/dsh-session-persistence": "^0.1.0-rc.6",
90
- "@deepseek-ai/dsh-session-reference": "^0.1.0-rc.6",
91
- "@deepseek-ai/dsh-session-title": "^0.1.0-rc.6",
92
- "@deepseek-ai/dsh-skill": "^0.1.0-rc.6",
93
- "@deepseek-ai/dsh-user-approval": "^0.1.0-rc.6",
94
- "@deepseek-ai/dsh-user-questions": "^0.1.0-rc.6"
95
- },
96
- "devDependencies": {
97
- "@deepseek-ai/dsh-compaction": "^0.1.0-rc.6",
98
- "@deepseek-ai/dsh-commands": "^0.1.0-rc.6",
99
- "@deepseek-ai/dsh-goal": "^0.1.0-rc.6",
100
- "@deepseek-ai/dsh-llm-retry": "^0.1.0-rc.6",
101
- "@deepseek-ai/dsh-permission-presets": "^0.1.0-rc.6",
102
- "@deepseek-ai/dsh-plan-mode": "^0.1.0-rc.6",
103
- "@deepseek-ai/dsh-sandbox-policy": "^0.1.0-rc.6",
104
- "@deepseek-ai/dsh-session-persistence": "^0.1.0-rc.6",
105
- "@deepseek-ai/dsh-session-reference": "^0.1.0-rc.6",
106
- "@deepseek-ai/dsh-session-title": "^0.1.0-rc.6",
107
- "@deepseek-ai/dsh-skill": "^0.1.0-rc.6",
108
- "@deepseek-ai/dsh-user-approval": "^0.1.0-rc.6",
109
- "@deepseek-ai/dsh-user-questions": "^0.1.0-rc.6",
110
- "@types/node": "^24.0.0",
111
- "@types/react": "~18.3.1",
112
- "tsdown": "^0.22.2",
113
- "tsx": "^4.22.4",
114
- "typescript": "^5.9.0",
115
- "vitest": "^3.0.0"
116
- }
117
- }
1
+ {
2
+ "name": "dsh-code",
3
+ "description": "Claude-Code-style interactive TUI bundle for DeepSeek Harness (dsh): DeepSeek-blue whale banner, live session transcript, and a blended status line",
4
+ "version": "0.6.1",
5
+ "type": "module",
6
+ "bin": {
7
+ "deepseek": "./bin/deepseek.mjs",
8
+ "dsh-code": "./bin/deepseek.mjs"
9
+ },
10
+ "main": "lib/index.mjs",
11
+ "types": "lib/types/index.d.ts",
12
+ "exports": {
13
+ ".": {
14
+ "types": "./lib/types/index.d.ts",
15
+ "default": "./lib/index.mjs"
16
+ },
17
+ "./startup": {
18
+ "types": "./lib/types/startup.d.ts",
19
+ "default": "./lib/startup.mjs"
20
+ },
21
+ "./invariant": {
22
+ "types": "./lib/types/invariant.d.ts",
23
+ "default": "./lib/invariant.mjs"
24
+ },
25
+ "./cordis.patch.yml": "./cordis.patch.yml",
26
+ "./src/*": "./src/*",
27
+ "./package.json": "./package.json"
28
+ },
29
+ "files": [
30
+ "lib",
31
+ "cordis.patch.yml",
32
+ "src"
33
+ ],
34
+ "license": "MIT",
35
+ "keywords": [
36
+ "deepseek",
37
+ "dsh",
38
+ "deepseek-harness",
39
+ "tui",
40
+ "terminal",
41
+ "claude-code",
42
+ "agent",
43
+ "ink"
44
+ ],
45
+ "repository": {
46
+ "type": "git",
47
+ "url": "git+https://github.com/unlinearity/dsh-code.git"
48
+ },
49
+ "dsh": {
50
+ "bundle": {
51
+ "patch": "./cordis.patch.yml"
52
+ }
53
+ },
54
+ "scripts": {
55
+ "build": "tsdown && tsc -p tsconfig.json",
56
+ "test": "vitest run",
57
+ "typecheck": "tsc -p tsconfig.json --noEmit",
58
+ "gen:whale": "tsx scripts/gen-whale-glyph.ts",
59
+ "prepare": "pnpm build",
60
+ "prepublishOnly": "pnpm typecheck && pnpm test && pnpm build"
61
+ },
62
+ "engines": {
63
+ "node": "^22.19 || >=24"
64
+ },
65
+ "dependencies": {
66
+ "@deepseek-ai/schemastery": "^3.18.1",
67
+ "chalk": "^5.6.2",
68
+ "commander": "^14.0.2",
69
+ "ink": "^5.2.1",
70
+ "react": "^18.3.1"
71
+ },
72
+ "peerDependencies": {
73
+ "@deepseek-ai/cordis": "^4.0.1",
74
+ "@deepseek-ai/cordis-plugin-loader": "^1.0.0-rc.5",
75
+ "@deepseek-ai/dsh-agent": "^0.1.0-rc.6",
76
+ "@deepseek-ai/dsh-agent-default-model": "^0.1.0-rc.6",
77
+ "@deepseek-ai/dsh-cmdline": "^0.1.0-rc.6",
78
+ "@deepseek-ai/dsh-code-runtime-worker-thread": "^0.1.0-rc.6",
79
+ "@deepseek-ai/dsh-commands": "^0.1.0-rc.6",
80
+ "@deepseek-ai/dsh-compaction": "^0.1.0-rc.6",
81
+ "@deepseek-ai/dsh-goal": "^0.1.0-rc.6",
82
+ "@deepseek-ai/dsh-invariants": "^0.1.0-rc.6",
83
+ "@deepseek-ai/dsh-llm": "^0.1.0-rc.6",
84
+ "@deepseek-ai/dsh-llm-retry": "^0.1.0-rc.6",
85
+ "@deepseek-ai/dsh-permission-presets": "^0.1.0-rc.6",
86
+ "@deepseek-ai/dsh-plan-mode": "^0.1.0-rc.6",
87
+ "@deepseek-ai/dsh-sandbox-policy": "^0.1.0-rc.6",
88
+ "@deepseek-ai/dsh-session": "^0.1.0-rc.6",
89
+ "@deepseek-ai/dsh-session-persistence": "^0.1.0-rc.6",
90
+ "@deepseek-ai/dsh-session-reference": "^0.1.0-rc.6",
91
+ "@deepseek-ai/dsh-session-title": "^0.1.0-rc.6",
92
+ "@deepseek-ai/dsh-skill": "^0.1.0-rc.6",
93
+ "@deepseek-ai/dsh-user-approval": "^0.1.0-rc.6",
94
+ "@deepseek-ai/dsh-user-questions": "^0.1.0-rc.6"
95
+ },
96
+ "devDependencies": {
97
+ "@deepseek-ai/dsh-compaction": "^0.1.0-rc.6",
98
+ "@deepseek-ai/dsh-commands": "^0.1.0-rc.6",
99
+ "@deepseek-ai/dsh-goal": "^0.1.0-rc.6",
100
+ "@deepseek-ai/dsh-llm-retry": "^0.1.0-rc.6",
101
+ "@deepseek-ai/dsh-permission-presets": "^0.1.0-rc.6",
102
+ "@deepseek-ai/dsh-plan-mode": "^0.1.0-rc.6",
103
+ "@deepseek-ai/dsh-sandbox-policy": "^0.1.0-rc.6",
104
+ "@deepseek-ai/dsh-session-persistence": "^0.1.0-rc.6",
105
+ "@deepseek-ai/dsh-session-reference": "^0.1.0-rc.6",
106
+ "@deepseek-ai/dsh-session-title": "^0.1.0-rc.6",
107
+ "@deepseek-ai/dsh-skill": "^0.1.0-rc.6",
108
+ "@deepseek-ai/dsh-user-approval": "^0.1.0-rc.6",
109
+ "@deepseek-ai/dsh-user-questions": "^0.1.0-rc.6",
110
+ "@types/node": "^24.0.0",
111
+ "@types/react": "~18.3.1",
112
+ "tsdown": "^0.22.2",
113
+ "tsx": "^4.22.4",
114
+ "typescript": "^5.9.0",
115
+ "vitest": "^3.0.0"
116
+ }
117
+ }