mirror of
https://github.com/deepseek-ai/deepseek-harness.git
synced 2026-09-07 04:10:42 +00:00
Master moved 212 commits. Conflicts were eight `package.json` and nine `tsconfig.json` files, all dependency-and-reference unions: master dropped the `runtime-diagnostics/invariants` reference across packages while this branch added `util/http-proxy`. The lockfile, `tsconfig.base.json`, and the module graph were regenerated rather than merged by hand. Master also brought `verify-package-invariants`, which rejects an empty invariant companion. This package's companion was empty by design, so it is gone with its publication wiring — the export, the `files` entry, the project reference, the `dsh-invariants` peer, and the test. Master did the same across `util/`. The README carries the reason sentence that gate requires. Carried in the same commit, because the review arrived while the merge was open: `e2bApiUrl` moves out of the `dsh-e2b` entry into `src/api-url.ts`. Code Entropy flagged it as a public name with no consumer outside its own package; the seam keeps its URL-precedence test, which is worth having directly — getting that order wrong hands a proxy the control-plane traffic and its API key.
66 lines
2.2 KiB
JSON
66 lines
2.2 KiB
JSON
{
|
|
"name": "@deepseek-ai/dsh-workflow-worker-thread",
|
|
"description": "worker-thread workflow engine: executes model-written orchestration scripts off the host event loop, bridging agent() calls back to ctx.subagents",
|
|
"version": "0.1.2-alpha.3",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/deepseek-ai/deepseek-harness.git",
|
|
"directory": "packages/workflow/workflow-worker-thread"
|
|
},
|
|
"type": "module",
|
|
"main": "lib/index.js",
|
|
"types": "lib/types/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./lib/types/index.d.ts",
|
|
"default": "./lib/index.js"
|
|
},
|
|
"./worker": {
|
|
"types": "./lib/types/worker.d.ts",
|
|
"default": "./lib/worker.cjs"
|
|
},
|
|
"./src/*": "./src/*",
|
|
"./package.json": "./package.json"
|
|
},
|
|
"files": [
|
|
"lib/index.js",
|
|
"lib/worker.cjs",
|
|
"lib/types/**/*.d.ts"
|
|
],
|
|
"license": "MIT",
|
|
"peerDependencies": {
|
|
"@deepseek-ai/cordis": "workspace:^",
|
|
"@deepseek-ai/dsh-agent": "workspace:^",
|
|
"@deepseek-ai/dsh-llm": "workspace:^",
|
|
"@deepseek-ai/dsh-session": "workspace:^",
|
|
"@deepseek-ai/dsh-subagent": "workspace:^",
|
|
"@deepseek-ai/dsh-tools": "workspace:^",
|
|
"@deepseek-ai/dsh-workflow": "workspace:^"
|
|
},
|
|
"dependencies": {
|
|
"@deepseek-ai/dsh-brand": "workspace:^",
|
|
"@deepseek-ai/dsh-util-values": "workspace:^",
|
|
"@deepseek-ai/schemastery": "workspace:^"
|
|
},
|
|
"devDependencies": {
|
|
"@deepseek-ai/cordis": "workspace:^",
|
|
"@deepseek-ai/dsh-agent": "workspace:^",
|
|
"@deepseek-ai/dsh-agent-loop": "workspace:^",
|
|
"@deepseek-ai/dsh-agent-loop-testkit": "workspace:^",
|
|
"@deepseek-ai/dsh-invariants": "workspace:^",
|
|
"@deepseek-ai/dsh-llm": "workspace:^",
|
|
"@deepseek-ai/dsh-session": "workspace:^",
|
|
"@deepseek-ai/dsh-session-projection": "workspace:^",
|
|
"@deepseek-ai/dsh-subagent": "workspace:^",
|
|
"@deepseek-ai/dsh-subagent-spawn-in-process": "workspace:^",
|
|
"@deepseek-ai/dsh-system-prompt": "workspace:^",
|
|
"@deepseek-ai/dsh-tools": "workspace:^",
|
|
"@deepseek-ai/dsh-workflow": "workspace:^",
|
|
"tsx": "^4.19.2",
|
|
"@deepseek-ai/dsh-http-proxy": "workspace:^"
|
|
}
|
|
}
|