package.json 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "@deepseek-ai/dsh-workflow-workerthread",
  3. "description": "worker-thread workflow engine: executes model-written orchestration scripts off the host event loop, bridging agent() calls back to ctx.subagents",
  4. "version": "0.0.1",
  5. "private": true,
  6. "type": "module",
  7. "main": "lib/index.js",
  8. "types": "lib/types/index.d.ts",
  9. "exports": {
  10. ".": {
  11. "types": "./lib/types/index.d.ts",
  12. "default": "./lib/index.js"
  13. },
  14. "./invariant": {
  15. "types": "./lib/types/invariant.d.ts",
  16. "default": "./lib/invariant.js"
  17. },
  18. "./worker": {
  19. "types": "./lib/types/worker.d.ts",
  20. "default": "./lib/worker.cjs"
  21. },
  22. "./src/*": "./src/*",
  23. "./package.json": "./package.json"
  24. },
  25. "files": [
  26. "lib/index.js",
  27. "lib/invariant.js",
  28. "lib/worker.cjs",
  29. "lib/types/**/*.d.ts"
  30. ],
  31. "license": "BSD-3-Clause",
  32. "peerDependencies": {
  33. "@deepseek-ai/dsh-agent": "^0.0.1",
  34. "@deepseek-ai/dsh-brand": "^0.0.1",
  35. "@deepseek-ai/dsh-invariants": "^0.0.1",
  36. "@deepseek-ai/dsh-llm": "^0.0.1",
  37. "@deepseek-ai/dsh-session": "^0.0.1",
  38. "@deepseek-ai/dsh-subagent": "^0.0.1",
  39. "@deepseek-ai/dsh-tools": "^0.0.1",
  40. "@deepseek-ai/dsh-workflow": "^0.0.1",
  41. "cordis": "^4.0.0-rc.7"
  42. },
  43. "dependencies": {
  44. "schemastery": "^3.18.0"
  45. },
  46. "devDependencies": {
  47. "@deepseek-ai/dsh-agent": "workspace:^",
  48. "@deepseek-ai/dsh-agent-loop": "workspace:^",
  49. "@deepseek-ai/dsh-agent-loop-testkit": "workspace:^",
  50. "@deepseek-ai/dsh-brand": "workspace:^",
  51. "@deepseek-ai/dsh-invariants": "workspace:^",
  52. "@deepseek-ai/dsh-llm": "workspace:^",
  53. "@deepseek-ai/dsh-session": "workspace:^",
  54. "@deepseek-ai/dsh-subagent": "workspace:^",
  55. "@deepseek-ai/dsh-subagent-spawn": "workspace:^",
  56. "@deepseek-ai/dsh-system-prompt": "workspace:^",
  57. "@deepseek-ai/dsh-tools": "workspace:^",
  58. "@deepseek-ai/dsh-workflow": "workspace:^",
  59. "cordis": "^4.0.0-rc.7",
  60. "tsx": "^4.19.2"
  61. }
  62. }