package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "@deepseek-ai/dsh-tool-workflow",
  3. "description": "Model-facing workflow tool: run a JavaScript orchestration script over ctx.workflows",
  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. "./src/*": "./src/*",
  19. "./package.json": "./package.json"
  20. },
  21. "files": [
  22. "lib/index.js",
  23. "lib/invariant.js",
  24. "lib/types/**/*.d.ts",
  25. "lib/types/**/*.d.ts.map",
  26. "src"
  27. ],
  28. "license": "BSD-3-Clause",
  29. "peerDependencies": {
  30. "@deepseek-ai/dsh-agent": "^0.0.1",
  31. "@deepseek-ai/dsh-invariants": "^0.0.1",
  32. "@deepseek-ai/dsh-llm": "^0.0.1",
  33. "@deepseek-ai/dsh-system-prompt": "^0.0.1",
  34. "@deepseek-ai/dsh-tools": "^0.0.1",
  35. "@deepseek-ai/dsh-workflow": "^0.0.1",
  36. "cordis": "^4.0.0-rc.7"
  37. },
  38. "dependencies": {
  39. "schemastery": "^3.18.0"
  40. },
  41. "devDependencies": {
  42. "@deepseek-ai/dsh-agent": "workspace:^",
  43. "@deepseek-ai/dsh-invariants": "workspace:^",
  44. "@deepseek-ai/dsh-llm": "workspace:^",
  45. "@deepseek-ai/dsh-session": "workspace:^",
  46. "@deepseek-ai/dsh-subagent": "workspace:^",
  47. "@deepseek-ai/dsh-system-prompt": "workspace:^",
  48. "@deepseek-ai/dsh-tools": "workspace:^",
  49. "@deepseek-ai/dsh-workflow": "workspace:^",
  50. "@deepseek-ai/dsh-workflow-workerthread": "workspace:^",
  51. "cordis": "^4.0.0-rc.7"
  52. }
  53. }