@stackstackstack/dsh-plan-mode 0.1.5

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 ADDED
@@ -0,0 +1,77 @@
1
+ {
2
+ "name": "@stackstackstack/dsh-plan-mode",
3
+ "description": "Logged per-agent plan mode with deployment guidance, a direct slash command, and a user-reviewed exit",
4
+ "version": "0.1.5",
5
+ "publishConfig": {
6
+ "access": "public"
7
+ },
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/deepseek-ai/deepseek-harness.git",
11
+ "directory": "packages/plan/plan-mode"
12
+ },
13
+ "type": "module",
14
+ "main": "lib/index.js",
15
+ "types": "lib/types/index.d.ts",
16
+ "exports": {
17
+ ".": {
18
+ "types": "./lib/types/index.d.ts",
19
+ "default": "./lib/index.js"
20
+ },
21
+ "./invariant": {
22
+ "types": "./lib/types/invariant.d.ts",
23
+ "default": "./lib/invariant.js"
24
+ },
25
+ "./types": {
26
+ "types": "./lib/types/types.d.ts",
27
+ "default": "./lib/types/types.js"
28
+ },
29
+ "./client": {
30
+ "types": "./lib/types/client.d.ts",
31
+ "default": "./lib/types/client.js"
32
+ },
33
+ "./src/*": "./src/*",
34
+ "./package.json": "./package.json"
35
+ },
36
+ "files": [
37
+ "lib/index.js",
38
+ "lib/invariant.js",
39
+ "lib/types/**/*.js",
40
+ "lib/types/**/*.d.ts"
41
+ ],
42
+ "license": "MIT",
43
+ "peerDependencies": {
44
+ "@stackstackstack/dsh-commands": "^0.1.5",
45
+ "@stackstackstack/dsh-agent": "^0.1.5",
46
+ "@stackstackstack/dsh-invariants": "^0.1.5",
47
+ "@stackstackstack/dsh-llm": "^0.1.5",
48
+ "@stackstackstack/dsh-session": "^0.1.5",
49
+ "@stackstackstack/dsh-system-prompt": "^0.1.5",
50
+ "@stackstackstack/dsh-session-projection": "^0.1.5",
51
+ "@deepseek-ai/cordis": "^4.0.1",
52
+ "@stackstackstack/dsh-user-questions": "^0.1.5",
53
+ "@stackstackstack/dsh-tools": "^0.1.5"
54
+ },
55
+ "peerDependenciesMeta": {
56
+ "@stackstackstack/dsh-commands": {
57
+ "optional": true
58
+ }
59
+ },
60
+ "dependencies": {
61
+ "zod": "^4.4.3"
62
+ },
63
+ "devDependencies": {
64
+ "@stackstackstack/dsh-agent-loop": "^0.1.5",
65
+ "@stackstackstack/dsh-code-runtime": "^0.1.5",
66
+ "@stackstackstack/dsh-invariants": "^0.1.5",
67
+ "@stackstackstack/dsh-agent": "^0.1.5",
68
+ "@stackstackstack/dsh-llm": "^0.1.5",
69
+ "@stackstackstack/dsh-commands": "^0.1.5",
70
+ "@stackstackstack/dsh-session": "^0.1.5",
71
+ "@stackstackstack/dsh-system-prompt": "^0.1.5",
72
+ "@stackstackstack/dsh-tools": "^0.1.5",
73
+ "@stackstackstack/dsh-user-questions": "^0.1.5",
74
+ "@stackstackstack/dsh-session-projection": "^0.1.5",
75
+ "@deepseek-ai/cordis": "^4.0.1"
76
+ }
77
+ }