package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "@deepseek-ai/dsh-agent-loop",
  3. "description": "The concrete agent loop plugin for the DeepSeek Harness",
  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. "./package.json": "./package.json"
  15. },
  16. "files": [
  17. "lib/index.js",
  18. "lib/types/**/*.d.ts",
  19. "lib/types/**/*.d.ts.map",
  20. "src"
  21. ],
  22. "license": "BSD-3-Clause",
  23. "peerDependencies": {
  24. "@deepseek-ai/dsh-agent": "^0.0.1",
  25. "@deepseek-ai/dsh-llm": "^0.0.1",
  26. "@deepseek-ai/dsh-scope": "^0.0.1",
  27. "@deepseek-ai/dsh-session": "^0.0.1",
  28. "@deepseek-ai/dsh-session-persistence": "^0.0.1",
  29. "@deepseek-ai/dsh-system-prompt": "^0.0.1",
  30. "@deepseek-ai/dsh-tools": "^0.0.1",
  31. "cordis": "^4.0.0-rc.7"
  32. },
  33. "dependencies": {
  34. "schemastery": "^3.18.0"
  35. },
  36. "devDependencies": {
  37. "@deepseek-ai/dsh-agent": "workspace:^",
  38. "@deepseek-ai/dsh-invariants": "workspace:^",
  39. "@deepseek-ai/dsh-llm": "workspace:^",
  40. "@deepseek-ai/dsh-scope": "workspace:^",
  41. "@deepseek-ai/dsh-session": "workspace:^",
  42. "@deepseek-ai/dsh-session-persistence": "workspace:^",
  43. "@deepseek-ai/dsh-session-persistence-jsonl": "workspace:^",
  44. "@deepseek-ai/dsh-system-prompt": "workspace:^",
  45. "@deepseek-ai/dsh-tools": "workspace:^",
  46. "cordis": "^4.0.0-rc.7"
  47. }
  48. }