dsh-plugin-teamflow 0.1.6 → 0.1.8

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,6 +1,6 @@
1
1
  {
2
2
  "name": "dsh-plugin-teamflow",
3
- "version": "0.1.6",
3
+ "version": "0.1.8",
4
4
  "description": "TeamFlow 团队研发流水线(TypeScript):需求→PRD→设计→架构→技术方案→并行开发→QA→验收;backlog 持久化 + 断点续跑 + 完成汇报 + 防假交付;Web 团队工作台(conversation.view tab + 拖拽看板)",
5
5
  "type": "module",
6
6
  "main": "./lib/host.mjs",
@@ -13,9 +13,11 @@
13
13
  "./package.json": "./package.json"
14
14
  },
15
15
  "engines": {
16
- "node": ">=22.18"
16
+ "node": ">=22.18",
17
+ "dsh": ">=0.1.5-rc.2 <0.2.0"
17
18
  },
18
19
  "dsh": {
20
+ "manifestVersion": 1,
19
21
  "bundle": {
20
22
  "patch": "./cordis.patch.yml"
21
23
  },
@@ -24,7 +26,10 @@
24
26
  "inject": [
25
27
  "@deepseek-ai/dsh-client-locale",
26
28
  "@deepseek-ai/dsh-client-modules",
27
- "@deepseek-ai/dsh-client-ui-conversation"
29
+ "@deepseek-ai/dsh-client-ui-conversation",
30
+ "@deepseek-ai/dsh-client-ui-layout",
31
+ "@deepseek-ai/dsh-client-ui-sidebar",
32
+ "@deepseek-ai/dsh-client-ui-sidebar-right"
28
33
  ],
29
34
  "immediately": false
30
35
  }
@@ -36,8 +41,8 @@
36
41
  "watch": "tsdown --watch",
37
42
  "deploy": "node deploy.mjs",
38
43
  "typecheck": "tsc --noEmit",
39
- "test": "node test/smoke.js && node test/verdict.test.js && node test/stages.test.js && node test/journal.test.js && node test/diagnostic.test.js && node test/evidence.test.js && node test/metering.test.js && node test/prompt-contract.test.js && node test/conformance.test.js",
40
- "prepublishOnly": "npx tsdown && npx tsdown -c tsdown.host.config.ts && node test/smoke.js && node test/verdict.test.js && node test/stages.test.js && node test/journal.test.js && node test/diagnostic.test.js && node test/evidence.test.js && node test/metering.test.js && node test/prompt-contract.test.js && node test/conformance.test.js"
44
+ "test": "node test/smoke.js && node test/verdict.test.js && node test/stages.test.js && node test/journal.test.js && node test/diagnostic.test.js && node test/evidence.test.js && node test/metering.test.js && node test/gitignore.test.js && node test/product-scope.test.js && node test/prompt-contract.test.js && node test/conformance.test.js",
45
+ "prepublishOnly": "npx tsdown && npx tsdown -c tsdown.host.config.ts && node test/smoke.js && node test/verdict.test.js && node test/stages.test.js && node test/journal.test.js && node test/diagnostic.test.js && node test/evidence.test.js && node test/metering.test.js && node test/gitignore.test.js && node test/product-scope.test.js && node test/prompt-contract.test.js && node test/conformance.test.js"
41
46
  },
42
47
  "files": [
43
48
  "lib",
@@ -71,9 +76,13 @@
71
76
  "@deepseek-ai/dsh-client-locale": "*",
72
77
  "@deepseek-ai/dsh-client-modules": "*",
73
78
  "@deepseek-ai/dsh-client-ui-conversation": "*",
79
+ "@deepseek-ai/dsh-client-ui-layout": "*",
80
+ "@deepseek-ai/dsh-client-ui-sidebar": "*",
81
+ "@deepseek-ai/dsh-client-ui-sidebar-right": "*",
74
82
  "@deepseek-ai/dsh-llm": "*",
75
83
  "@deepseek-ai/dsh-tools": "*",
76
- "@deepseek-ai/dsh-typert-protocol": "*"
84
+ "@deepseek-ai/dsh-typert-protocol": "*",
85
+ "@deepseek-ai/dsh-util-workspace-path": "*"
77
86
  },
78
87
  "peerDependenciesMeta": {
79
88
  "@deepseek-ai/dsh-base": {
@@ -88,6 +97,15 @@
88
97
  "@deepseek-ai/dsh-client-ui-conversation": {
89
98
  "optional": true
90
99
  },
100
+ "@deepseek-ai/dsh-client-ui-layout": {
101
+ "optional": true
102
+ },
103
+ "@deepseek-ai/dsh-client-ui-sidebar": {
104
+ "optional": true
105
+ },
106
+ "@deepseek-ai/dsh-client-ui-sidebar-right": {
107
+ "optional": true
108
+ },
91
109
  "@deepseek-ai/dsh-llm": {
92
110
  "optional": true
93
111
  },
@@ -97,6 +115,9 @@
97
115
  "@deepseek-ai/dsh-typert-protocol": {
98
116
  "optional": true
99
117
  },
118
+ "@deepseek-ai/dsh-util-workspace-path": {
119
+ "optional": true
120
+ },
100
121
  "react": {
101
122
  "optional": true
102
123
  }