-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 4.08 KB
/
Copy pathpackage.json
File metadata and controls
122 lines (122 loc) · 4.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "@dsh-external/workflow",
"version": "0.1.2",
"description": "KodaX-parity dynamic workflow harness for DeepSeek Harness",
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./capsule": {
"types": "./lib/capsule.d.ts",
"default": "./lib/capsule.js"
},
"./catalog": {
"types": "./lib/catalog.d.ts",
"default": "./lib/catalog.js"
},
"./runtime": {
"types": "./lib/runtime.d.ts",
"default": "./lib/runtime.js"
},
"./store": {
"types": "./lib/store.d.ts",
"default": "./lib/store.js"
},
"./cordis.patch.yml": "./cordis.patch.yml",
"./package.json": "./package.json"
},
"files": [
"lib/**/*.js",
"lib/**/*.d.ts",
"cordis.patch.yml",
"compatibility.json",
"reference.json",
"README.md",
"README.en.md",
"CHANGELOG.md",
"docs/**/*.md",
"examples/*.json",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"check:compatibility": "node scripts/check-compatibility.mjs && node scripts/check-dsh-workflow-projection.mjs",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc -p tsconfig.test.json --noEmit",
"lint": "tsc -p tsconfig.test.json --noEmit",
"check": "pnpm run check:compatibility && pnpm run test && pnpm run typecheck && pnpm run build",
"prepack": "pnpm run build"
},
"engines": {
"node": "^22.19.0 || >=24.0.0"
},
"packageManager": "pnpm@11.7.0",
"repository": {
"type": "git",
"url": "git+https://github.com/dsh-external/dsh_workflow.git"
},
"homepage": "https://github.com/dsh-external/dsh_workflow#readme",
"bugs": {
"url": "https://github.com/dsh-external/dsh_workflow/issues"
},
"keywords": [
"dsh",
"deepseek-harness",
"workflow",
"dshtopic",
"multi-agent",
"agent-orchestration"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
}
},
"peerDependencies": {
"@deepseek-ai/cordis": "^4.0.1-rc.1",
"@deepseek-ai/dsh-agent": "^0.0.1-rc.2",
"@deepseek-ai/dsh-commands": "^0.0.1-rc.2",
"@deepseek-ai/dsh-jobs": "^0.0.1-rc.2",
"@deepseek-ai/dsh-llm": "^0.0.1-rc.2",
"@deepseek-ai/dsh-session": "^0.0.1-rc.2",
"@deepseek-ai/dsh-subagent": "^0.0.1-rc.2",
"@deepseek-ai/dsh-system-prompt": "^0.0.1-rc.2",
"@deepseek-ai/dsh-tools": "^0.0.1-rc.2",
"@deepseek-ai/dsh-user-approval": "^0.0.1-rc.2",
"@deepseek-ai/dsh-user-questions": "^0.0.1-rc.2",
"@deepseek-ai/dsh-workflow": "^0.0.1-rc.2",
"@deepseek-ai/schemastery": "^3.18.1-rc.1"
},
"devDependencies": {
"@deepseek-ai/cordis": "link:../test-icetomoyo/vendor/cordis",
"@deepseek-ai/dsh-agent": "link:../test-icetomoyo/packages/core/agent",
"@deepseek-ai/dsh-commands": "link:../test-icetomoyo/packages/interaction/commands",
"@deepseek-ai/dsh-jobs": "link:../test-icetomoyo/packages/jobs/jobs",
"@deepseek-ai/dsh-llm": "link:../test-icetomoyo/packages/llm/llm",
"@deepseek-ai/dsh-session": "link:../test-icetomoyo/packages/core/session",
"@deepseek-ai/dsh-session-title": "link:../test-icetomoyo/packages/session/session-title",
"@deepseek-ai/dsh-subagent": "link:../test-icetomoyo/packages/subagent/subagent",
"@deepseek-ai/dsh-system-prompt": "link:../test-icetomoyo/packages/core/system-prompt",
"@deepseek-ai/dsh-tools": "link:../test-icetomoyo/packages/core/tools",
"@deepseek-ai/dsh-user-approval": "link:../test-icetomoyo/packages/interaction/user-approval",
"@deepseek-ai/dsh-user-questions": "link:../test-icetomoyo/packages/interaction/user-questions",
"@deepseek-ai/dsh-workflow": "link:../test-icetomoyo/packages/workflow/workflow",
"@deepseek-ai/schemastery": "link:../test-icetomoyo/vendor/schemastery",
"@types/node": "^24.0.0",
"@vitest/coverage-v8": "^3.2.4",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"dependencies": {
"quickjs-emscripten": "0.32.0"
}
}