package.json 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. {
  2. "name": "@deepseek-ai/dsh-experimental-agent-team",
  3. "description": "Implicit-root Agent Teams roster, durable peer mailbox, and shared task DAG",
  4. "version": "0.1.5-rc.2",
  5. "publishConfig": {
  6. "access": "public"
  7. },
  8. "repository": {
  9. "type": "git",
  10. "url": "git+https://github.com/deepseek-ai/deepseek-harness.git",
  11. "directory": "packages/experimental/agent-team"
  12. },
  13. "type": "module",
  14. "main": "lib/index.js",
  15. "types": "lib/types/index.d.ts",
  16. "exports": {
  17. ".": {
  18. "types": "./lib/types/index.d.ts",
  19. "default": "./lib/index.js"
  20. },
  21. "./invariant": {
  22. "types": "./lib/types/invariant.d.ts",
  23. "default": "./lib/invariant.js"
  24. },
  25. "./client": {
  26. "types": "./lib/types/client.d.ts",
  27. "default": "./lib/types/client.js"
  28. },
  29. "./types": {
  30. "types": "./lib/types/types.d.ts",
  31. "default": "./lib/types/types.js"
  32. },
  33. "./typert": {
  34. "types": "./lib/typert.host.d.ts",
  35. "default": "./lib/typert.host.js"
  36. },
  37. "./remote": {
  38. "types": "./lib/typert.remote-client.d.ts",
  39. "default": "./lib/typert.remote-client.js"
  40. },
  41. "./src/*": "./src/*",
  42. "./package.json": "./package.json"
  43. },
  44. "files": [
  45. "lib/index.js",
  46. "lib/invariant.js",
  47. "lib/types/**/*.js",
  48. "lib/types/**/*.d.ts",
  49. "lib/typert.host.js",
  50. "lib/typert.host.d.ts",
  51. "lib/typert.remote-client.js",
  52. "lib/typert.remote-client.d.ts"
  53. ],
  54. "license": "MIT",
  55. "dependencies": {
  56. "@deepseek-ai/dsh-brand": "workspace:^",
  57. "@deepseek-ai/schemastery": "workspace:^",
  58. "zod": "^4.4.3"
  59. },
  60. "peerDependencies": {
  61. "@deepseek-ai/cordis": "workspace:^",
  62. "@deepseek-ai/dsh-agent": "workspace:^",
  63. "@deepseek-ai/dsh-invariants": "workspace:^",
  64. "@deepseek-ai/dsh-llm": "workspace:^",
  65. "@deepseek-ai/dsh-session": "workspace:^",
  66. "@deepseek-ai/dsh-session-persistence": "workspace:^",
  67. "@deepseek-ai/dsh-session-projection": "workspace:^",
  68. "@deepseek-ai/dsh-subagent": "workspace:^",
  69. "@deepseek-ai/dsh-typert-protocol": "workspace:^"
  70. },
  71. "devDependencies": {
  72. "@deepseek-ai/cordis": "workspace:^",
  73. "@deepseek-ai/dsh-agent": "workspace:^",
  74. "@deepseek-ai/dsh-agent-loop": "workspace:^",
  75. "@deepseek-ai/dsh-agent-loop-testkit": "workspace:^",
  76. "@deepseek-ai/dsh-invariants": "workspace:^",
  77. "@deepseek-ai/dsh-llm": "workspace:^",
  78. "@deepseek-ai/dsh-session": "workspace:^",
  79. "@deepseek-ai/dsh-session-persistence": "workspace:^",
  80. "@deepseek-ai/dsh-session-persistence-jsonl": "workspace:^",
  81. "@deepseek-ai/dsh-session-projection": "workspace:^",
  82. "@deepseek-ai/dsh-session-query": "workspace:^",
  83. "@deepseek-ai/dsh-subagent": "workspace:^",
  84. "@deepseek-ai/dsh-subagent-fork-in-process": "workspace:^",
  85. "@deepseek-ai/dsh-subagent-spawn-in-process": "workspace:^",
  86. "@deepseek-ai/dsh-typert-protocol": "workspace:^"
  87. }
  88. }