@awiki/dsh-plugin 0.3.0 → 0.3.1-rc.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/README.md +1 -1
- package/README.zh.md +1 -1
- package/package.json +55 -57
package/README.md
CHANGED
|
@@ -74,7 +74,7 @@ dsh plugin --profile web add @awiki/dsh-model-proxy@latest
|
|
|
74
74
|
The profile installer both adds the package and activates its bundle layer. A
|
|
75
75
|
plain `npm i @awiki/dsh-plugin` in a DSH project only installs the package; it
|
|
76
76
|
does not activate the bundle, so the profile command remains the recommended
|
|
77
|
-
installation path. This release line targets the `0.1.
|
|
77
|
+
installation path. This release line targets the `0.1.1-rc.2` package family
|
|
78
78
|
and pins every direct Host peer exactly, preventing npm from mixing prerelease
|
|
79
79
|
families in a DSH root dependency tree.
|
|
80
80
|
|
package/README.zh.md
CHANGED
|
@@ -63,7 +63,7 @@ dsh plugin --profile web add @awiki/dsh-model-proxy@latest
|
|
|
63
63
|
|
|
64
64
|
Profile 安装器会同时添加包并激活 bundle layer。在 DSH 项目根目录执行普通的
|
|
65
65
|
`npm i @awiki/dsh-plugin` 只会安装依赖,不会激活 bundle,因此仍推荐使用上述
|
|
66
|
-
Profile 命令。本发布线面向 `0.1.
|
|
66
|
+
Profile 命令。本发布线面向 `0.1.1-rc.2` 包族,并精确锁定所有直接 Host peer,
|
|
67
67
|
防止 npm 在 DSH 根依赖树中混用不同的预发布版本族。
|
|
68
68
|
|
|
69
69
|
从 `0.2.0-rc.4` 起,`@awiki/dsh-plugin` 是唯一规范包名。原
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@awiki/dsh-plugin",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1-rc.1",
|
|
4
4
|
"description": "AWiki identity and messaging plugin for DeepSeek Harness",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "lib/index.js",
|
|
@@ -65,19 +65,6 @@
|
|
|
65
65
|
"THIRD_PARTY_NOTICES.md",
|
|
66
66
|
"LICENSE"
|
|
67
67
|
],
|
|
68
|
-
"scripts": {
|
|
69
|
-
"build:types": "tsc -p tsconfig.host.json && tsc -p tsconfig.client.json",
|
|
70
|
-
"build:typert": "node scripts/generate-typert.mjs",
|
|
71
|
-
"build:bundle": "pnpm run build:typert && tsdown && node scripts/normalize-built.mjs",
|
|
72
|
-
"build": "pnpm run build:types && pnpm run build:bundle",
|
|
73
|
-
"typecheck": "tsc -p tsconfig.host.json --noEmit && tsc -p tsconfig.client.json --noEmit",
|
|
74
|
-
"test": "vitest run",
|
|
75
|
-
"check:generated": "node scripts/check-generated.mjs",
|
|
76
|
-
"check:public": "node scripts/check-public.mjs",
|
|
77
|
-
"verify": "pnpm run check:public && pnpm run build && pnpm run typecheck && pnpm run check:generated && pnpm run test",
|
|
78
|
-
"verify:workspace": "pnpm run verify && pnpm --filter @awiki/dsh-model-proxy run verify",
|
|
79
|
-
"prepack": "pnpm run verify"
|
|
80
|
-
},
|
|
81
68
|
"keywords": [
|
|
82
69
|
"awiki",
|
|
83
70
|
"deepseek",
|
|
@@ -122,24 +109,24 @@
|
|
|
122
109
|
},
|
|
123
110
|
"peerDependencies": {
|
|
124
111
|
"@deepseek-ai/cordis": "^4.0.1",
|
|
125
|
-
"@deepseek-ai/dsh-agent": "0.1.
|
|
126
|
-
"@deepseek-ai/dsh-agent-default-model": "0.1.
|
|
127
|
-
"@deepseek-ai/dsh-api-remotes": "0.1.
|
|
128
|
-
"@deepseek-ai/dsh-brand": "0.1.
|
|
129
|
-
"@deepseek-ai/dsh-client-connection": "0.1.
|
|
130
|
-
"@deepseek-ai/dsh-client-locale": "0.1.
|
|
131
|
-
"@deepseek-ai/dsh-client-runtime": "0.1.
|
|
132
|
-
"@deepseek-ai/dsh-client-ui-layout": "0.1.
|
|
133
|
-
"@deepseek-ai/dsh-client-ui-primitives": "0.1.
|
|
134
|
-
"@deepseek-ai/dsh-client-ui-settings": "0.1.
|
|
135
|
-
"@deepseek-ai/dsh-client-ui-slots": "0.1.
|
|
136
|
-
"@deepseek-ai/dsh-invariants": "0.1.
|
|
137
|
-
"@deepseek-ai/dsh-llm": "0.1.
|
|
138
|
-
"@deepseek-ai/dsh-session": "0.1.
|
|
139
|
-
"@deepseek-ai/dsh-settings": "0.1.
|
|
140
|
-
"@deepseek-ai/dsh-tools": "0.1.
|
|
141
|
-
"@deepseek-ai/dsh-typert-protocol": "0.1.
|
|
142
|
-
"@deepseek-ai/dsh-workspace": "0.1.
|
|
112
|
+
"@deepseek-ai/dsh-agent": "0.1.1-rc.2",
|
|
113
|
+
"@deepseek-ai/dsh-agent-default-model": "0.1.1-rc.2",
|
|
114
|
+
"@deepseek-ai/dsh-api-remotes": "0.1.1-rc.2",
|
|
115
|
+
"@deepseek-ai/dsh-brand": "0.1.1-rc.2",
|
|
116
|
+
"@deepseek-ai/dsh-client-connection": "0.1.1-rc.2",
|
|
117
|
+
"@deepseek-ai/dsh-client-locale": "0.1.1-rc.2",
|
|
118
|
+
"@deepseek-ai/dsh-client-runtime": "0.1.1-rc.2",
|
|
119
|
+
"@deepseek-ai/dsh-client-ui-layout": "0.1.1-rc.2",
|
|
120
|
+
"@deepseek-ai/dsh-client-ui-primitives": "0.1.1-rc.2",
|
|
121
|
+
"@deepseek-ai/dsh-client-ui-settings": "0.1.1-rc.2",
|
|
122
|
+
"@deepseek-ai/dsh-client-ui-slots": "0.1.1-rc.2",
|
|
123
|
+
"@deepseek-ai/dsh-invariants": "0.1.1-rc.2",
|
|
124
|
+
"@deepseek-ai/dsh-llm": "0.1.1-rc.2",
|
|
125
|
+
"@deepseek-ai/dsh-session": "0.1.1-rc.2",
|
|
126
|
+
"@deepseek-ai/dsh-settings": "0.1.1-rc.2",
|
|
127
|
+
"@deepseek-ai/dsh-tools": "0.1.1-rc.2",
|
|
128
|
+
"@deepseek-ai/dsh-typert-protocol": "0.1.1-rc.2",
|
|
129
|
+
"@deepseek-ai/dsh-workspace": "0.1.1-rc.2",
|
|
143
130
|
"react": "^18.2.0"
|
|
144
131
|
},
|
|
145
132
|
"peerDependenciesMeta": {
|
|
@@ -151,29 +138,29 @@
|
|
|
151
138
|
"@deepseek-ai/cordis": "^4.0.1",
|
|
152
139
|
"@deepseek-ai/cordis-plugin-include": "^1.0.6",
|
|
153
140
|
"@deepseek-ai/cordis-plugin-loader": "^1.0.2",
|
|
154
|
-
"@deepseek-ai/dsh": "0.1.
|
|
155
|
-
"@deepseek-ai/dsh-agent": "0.1.
|
|
156
|
-
"@deepseek-ai/dsh-agent-default-model": "0.1.
|
|
157
|
-
"@deepseek-ai/dsh-api-remotes": "0.1.
|
|
158
|
-
"@deepseek-ai/dsh-brand": "0.1.
|
|
159
|
-
"@deepseek-ai/dsh-client-connection": "0.1.
|
|
160
|
-
"@deepseek-ai/dsh-client-locale": "0.1.
|
|
161
|
-
"@deepseek-ai/dsh-client-runtime": "0.1.
|
|
162
|
-
"@deepseek-ai/dsh-client-test-runtime": "0.1.
|
|
163
|
-
"@deepseek-ai/dsh-client-ui-layout": "0.1.
|
|
164
|
-
"@deepseek-ai/dsh-client-ui-primitives": "0.1.
|
|
165
|
-
"@deepseek-ai/dsh-client-ui-settings": "0.1.
|
|
166
|
-
"@deepseek-ai/dsh-client-ui-slots": "0.1.
|
|
167
|
-
"@deepseek-ai/dsh-invariants": "0.1.
|
|
168
|
-
"@deepseek-ai/dsh-llm": "0.1.
|
|
169
|
-
"@deepseek-ai/dsh-session": "0.1.
|
|
170
|
-
"@deepseek-ai/dsh-settings": "0.1.
|
|
171
|
-
"@deepseek-ai/dsh-system-prompt": "0.1.
|
|
172
|
-
"@deepseek-ai/dsh-tools": "0.1.
|
|
173
|
-
"@deepseek-ai/dsh-typert-generator": "0.1.
|
|
174
|
-
"@deepseek-ai/dsh-typert-protocol": "0.1.
|
|
175
|
-
"@deepseek-ai/dsh-user-approval": "0.1.
|
|
176
|
-
"@deepseek-ai/dsh-workspace": "0.1.
|
|
141
|
+
"@deepseek-ai/dsh": "0.1.1-rc.2",
|
|
142
|
+
"@deepseek-ai/dsh-agent": "0.1.1-rc.2",
|
|
143
|
+
"@deepseek-ai/dsh-agent-default-model": "0.1.1-rc.2",
|
|
144
|
+
"@deepseek-ai/dsh-api-remotes": "0.1.1-rc.2",
|
|
145
|
+
"@deepseek-ai/dsh-brand": "0.1.1-rc.2",
|
|
146
|
+
"@deepseek-ai/dsh-client-connection": "0.1.1-rc.2",
|
|
147
|
+
"@deepseek-ai/dsh-client-locale": "0.1.1-rc.2",
|
|
148
|
+
"@deepseek-ai/dsh-client-runtime": "0.1.1-rc.2",
|
|
149
|
+
"@deepseek-ai/dsh-client-test-runtime": "0.1.1-rc.2",
|
|
150
|
+
"@deepseek-ai/dsh-client-ui-layout": "0.1.1-rc.2",
|
|
151
|
+
"@deepseek-ai/dsh-client-ui-primitives": "0.1.1-rc.2",
|
|
152
|
+
"@deepseek-ai/dsh-client-ui-settings": "0.1.1-rc.2",
|
|
153
|
+
"@deepseek-ai/dsh-client-ui-slots": "0.1.1-rc.2",
|
|
154
|
+
"@deepseek-ai/dsh-invariants": "0.1.1-rc.2",
|
|
155
|
+
"@deepseek-ai/dsh-llm": "0.1.1-rc.2",
|
|
156
|
+
"@deepseek-ai/dsh-session": "0.1.1-rc.2",
|
|
157
|
+
"@deepseek-ai/dsh-settings": "0.1.1-rc.2",
|
|
158
|
+
"@deepseek-ai/dsh-system-prompt": "0.1.1-rc.2",
|
|
159
|
+
"@deepseek-ai/dsh-tools": "0.1.1-rc.2",
|
|
160
|
+
"@deepseek-ai/dsh-typert-generator": "0.1.1-rc.2",
|
|
161
|
+
"@deepseek-ai/dsh-typert-protocol": "0.1.1-rc.2",
|
|
162
|
+
"@deepseek-ai/dsh-user-approval": "0.1.1-rc.2",
|
|
163
|
+
"@deepseek-ai/dsh-workspace": "0.1.1-rc.2",
|
|
177
164
|
"@testing-library/react": "^16.3.2",
|
|
178
165
|
"@types/node": "^24.3.0",
|
|
179
166
|
"@types/react": "^18.3.23",
|
|
@@ -191,5 +178,16 @@
|
|
|
191
178
|
"engines": {
|
|
192
179
|
"node": "^22.19.0 || >=24.0.0"
|
|
193
180
|
},
|
|
194
|
-
"
|
|
195
|
-
|
|
181
|
+
"scripts": {
|
|
182
|
+
"build:types": "tsc -p tsconfig.host.json && tsc -p tsconfig.client.json",
|
|
183
|
+
"build:typert": "node scripts/generate-typert.mjs",
|
|
184
|
+
"build:bundle": "pnpm run build:typert && tsdown && node scripts/normalize-built.mjs",
|
|
185
|
+
"build": "pnpm run build:types && pnpm run build:bundle",
|
|
186
|
+
"typecheck": "tsc -p tsconfig.host.json --noEmit && tsc -p tsconfig.client.json --noEmit",
|
|
187
|
+
"test": "vitest run",
|
|
188
|
+
"check:generated": "node scripts/check-generated.mjs",
|
|
189
|
+
"check:public": "node scripts/check-public.mjs",
|
|
190
|
+
"verify": "pnpm run check:public && pnpm run build && pnpm run typecheck && pnpm run check:generated && pnpm run test",
|
|
191
|
+
"verify:workspace": "pnpm run verify && pnpm --filter @awiki/dsh-model-proxy run verify"
|
|
192
|
+
}
|
|
193
|
+
}
|