@sparkelf/dsh-plugin-subagent-settings 0.1.0-rc.10 → 0.1.0-rc.9
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 +54 -54
package/package.json
CHANGED
|
@@ -1,27 +1,36 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"@deepseek-ai/schemastery": ">=3.18.1"
|
|
4
|
-
},
|
|
2
|
+
"name": "@sparkelf/dsh-plugin-subagent-settings",
|
|
5
3
|
"description": "Settings-backed continuous and one-shot subagent delegation with one Web Settings section",
|
|
6
|
-
"
|
|
7
|
-
|
|
8
|
-
"
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
"
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
"
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
"
|
|
24
|
-
|
|
4
|
+
"version": "0.1.0-rc.9",
|
|
5
|
+
"publishConfig": {
|
|
6
|
+
"access": "public"
|
|
7
|
+
},
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/SparkElf/deepseek-harness-plus.git",
|
|
11
|
+
"directory": "packages/plus/subagent-settings"
|
|
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
|
+
"./startup": {
|
|
22
|
+
"types": "./lib/types/startup.d.ts",
|
|
23
|
+
"default": "./lib/startup.js"
|
|
24
|
+
},
|
|
25
|
+
"./invariant": {
|
|
26
|
+
"types": "./lib/types/invariant.d.ts",
|
|
27
|
+
"default": "./lib/invariant.js"
|
|
28
|
+
},
|
|
29
|
+
"./client": {
|
|
30
|
+
"types": "./lib/types/client/index.d.ts",
|
|
31
|
+
"default": "./lib/client.js"
|
|
32
|
+
},
|
|
33
|
+
"./package.json": "./package.json"
|
|
25
34
|
},
|
|
26
35
|
"dsh": {
|
|
27
36
|
"client": {
|
|
@@ -33,25 +42,6 @@
|
|
|
33
42
|
"platform": "web"
|
|
34
43
|
}
|
|
35
44
|
},
|
|
36
|
-
"exports": {
|
|
37
|
-
".": {
|
|
38
|
-
"default": "./lib/index.js",
|
|
39
|
-
"types": "./lib/types/index.d.ts"
|
|
40
|
-
},
|
|
41
|
-
"./client": {
|
|
42
|
-
"default": "./lib/client.js",
|
|
43
|
-
"types": "./lib/types/client/index.d.ts"
|
|
44
|
-
},
|
|
45
|
-
"./invariant": {
|
|
46
|
-
"default": "./lib/invariant.js",
|
|
47
|
-
"types": "./lib/types/invariant.d.ts"
|
|
48
|
-
},
|
|
49
|
-
"./package.json": "./package.json",
|
|
50
|
-
"./startup": {
|
|
51
|
-
"default": "./lib/startup.js",
|
|
52
|
-
"types": "./lib/types/startup.d.ts"
|
|
53
|
-
}
|
|
54
|
-
},
|
|
55
45
|
"files": [
|
|
56
46
|
"lib/index.js",
|
|
57
47
|
"lib/invariant.js",
|
|
@@ -60,8 +50,6 @@
|
|
|
60
50
|
"lib/types/**/*.d.ts"
|
|
61
51
|
],
|
|
62
52
|
"license": "MIT",
|
|
63
|
-
"main": "lib/index.js",
|
|
64
|
-
"name": "@sparkelf/dsh-plugin-subagent-settings",
|
|
65
53
|
"peerDependencies": {
|
|
66
54
|
"@deepseek-ai/cordis": ">=4.0.1",
|
|
67
55
|
"@deepseek-ai/dsh-agent": ">=0.1.2-alpha.1",
|
|
@@ -76,19 +64,31 @@
|
|
|
76
64
|
"@deepseek-ai/dsh-system-prompt": ">=0.1.2-alpha.1",
|
|
77
65
|
"@deepseek-ai/dsh-tools": ">=0.1.2-alpha.1"
|
|
78
66
|
},
|
|
79
|
-
"
|
|
80
|
-
"
|
|
67
|
+
"dependencies": {
|
|
68
|
+
"@deepseek-ai/schemastery": ">=3.18.1"
|
|
81
69
|
},
|
|
82
|
-
"
|
|
83
|
-
"
|
|
84
|
-
"
|
|
85
|
-
"
|
|
70
|
+
"devDependencies": {
|
|
71
|
+
"@types/react": "~18.3.1",
|
|
72
|
+
"react": "^18.2.0",
|
|
73
|
+
"@deepseek-ai/cordis": "^4.0.1",
|
|
74
|
+
"@deepseek-ai/dsh-agent": "^0.1.2-alpha.1",
|
|
75
|
+
"@deepseek-ai/dsh-client-locale": "^0.1.2-alpha.1",
|
|
76
|
+
"@deepseek-ai/dsh-client-store": "^0.1.2-alpha.1",
|
|
77
|
+
"@deepseek-ai/dsh-client-ui-renderer": "^0.1.2-alpha.1",
|
|
78
|
+
"@deepseek-ai/dsh-client-ui-settings": "^0.1.2-alpha.1",
|
|
79
|
+
"@deepseek-ai/dsh-client-ui-slots": "^0.1.2-alpha.1",
|
|
80
|
+
"@deepseek-ai/dsh-invariants": "^0.1.2-alpha.1",
|
|
81
|
+
"@deepseek-ai/dsh-jobs": "^0.1.2-alpha.1",
|
|
82
|
+
"@deepseek-ai/dsh-llm": "^0.1.2-alpha.1",
|
|
83
|
+
"@deepseek-ai/dsh-session": "^0.1.2-alpha.1",
|
|
84
|
+
"@deepseek-ai/dsh-settings": "^0.1.2-alpha.1",
|
|
85
|
+
"@deepseek-ai/dsh-client-ui-primitives": "^0.1.2-alpha.1",
|
|
86
|
+
"@deepseek-ai/dsh-subagent": "^0.1.2-alpha.1",
|
|
87
|
+
"@deepseek-ai/dsh-system-prompt": "^0.1.2-alpha.1",
|
|
88
|
+
"@deepseek-ai/dsh-tools": "^0.1.2-alpha.1"
|
|
86
89
|
},
|
|
87
90
|
"scripts": {
|
|
88
91
|
"bundle": "tsdown",
|
|
89
92
|
"watch": "tsdown --watch"
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
"types": "lib/types/index.d.ts",
|
|
93
|
-
"version": "0.1.0-rc.10"
|
|
94
|
-
}
|
|
93
|
+
}
|
|
94
|
+
}
|