2026-07-05 13:29:35 +08:00
{
2026-07-09 19:06:55 +08:00
"name" : "@deepseek-ai/dsh-workflow-workerthread" ,
2026-07-09 18:39:31 +08:00
"description" : "worker-thread workflow engine: executes model-written orchestration scripts off the host event loop, bridging agent() calls back to ctx.subagents" ,
2026-07-05 13:29:35 +08:00
"version" : "0.0.1" ,
"private" : true ,
"type" : "module" ,
"main" : "lib/index.js" ,
"types" : "lib/types/index.d.ts" ,
"exports" : {
"." : {
"types" : "./lib/types/index.d.ts" ,
"default" : "./lib/index.js"
} ,
2026-07-19 22:13:50 +08:00
"./invariant" : {
"types" : "./lib/types/invariant.d.ts" ,
"default" : "./lib/invariant.js"
} ,
2026-07-09 18:39:31 +08:00
"./worker" : {
"types" : "./lib/types/worker.d.ts" ,
2026-07-13 20:55:47 +08:00
"default" : "./lib/worker.cjs"
2026-07-09 18:39:31 +08:00
} ,
2026-07-05 13:29:35 +08:00
"./src/*" : "./src/*" ,
"./package.json" : "./package.json"
} ,
"files" : [
"lib/index.js" ,
2026-07-19 22:13:50 +08:00
"lib/invariant.js" ,
2026-07-13 20:55:47 +08:00
"lib/worker.cjs" ,
2026-08-04 22:06:32 +08:00
"lib/types/**/*.d.ts"
2026-07-05 13:29:35 +08:00
] ,
"license" : "BSD-3-Clause" ,
"peerDependencies" : {
"@deepseek-ai/dsh-agent" : "^0.0.1" ,
"@deepseek-ai/dsh-brand" : "^0.0.1" ,
2026-07-19 22:13:50 +08:00
"@deepseek-ai/dsh-invariants" : "^0.0.1" ,
2026-07-05 13:29:35 +08:00
"@deepseek-ai/dsh-llm" : "^0.0.1" ,
2026-07-12 03:51:55 +08:00
"@deepseek-ai/dsh-session" : "^0.0.1" ,
2026-07-05 13:29:35 +08:00
"@deepseek-ai/dsh-subagent" : "^0.0.1" ,
"@deepseek-ai/dsh-tools" : "^0.0.1" ,
"@deepseek-ai/dsh-workflow" : "^0.0.1" ,
2026-07-15 11:28:45 +08:00
"cordis" : "^4.0.0-rc.7"
2026-07-05 13:29:35 +08:00
} ,
"dependencies" : {
"schemastery" : "^3.18.0"
} ,
"devDependencies" : {
"@deepseek-ai/dsh-agent" : "workspace:^" ,
"@deepseek-ai/dsh-agent-loop" : "workspace:^" ,
2026-07-16 17:39:53 +08:00
"@deepseek-ai/dsh-agent-loop-testkit" : "workspace:^" ,
2026-07-05 13:29:35 +08:00
"@deepseek-ai/dsh-brand" : "workspace:^" ,
"@deepseek-ai/dsh-invariants" : "workspace:^" ,
"@deepseek-ai/dsh-llm" : "workspace:^" ,
"@deepseek-ai/dsh-session" : "workspace:^" ,
"@deepseek-ai/dsh-subagent" : "workspace:^" ,
"@deepseek-ai/dsh-subagent-spawn" : "workspace:^" ,
"@deepseek-ai/dsh-system-prompt" : "workspace:^" ,
"@deepseek-ai/dsh-tools" : "workspace:^" ,
"@deepseek-ai/dsh-workflow" : "workspace:^" ,
2026-07-15 11:28:45 +08:00
"cordis" : "^4.0.0-rc.7" ,
2026-07-09 18:39:31 +08:00
"tsx" : "^4.19.2"
2026-07-05 13:29:35 +08:00
}
}