package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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/typings/index.d.ts",
  9. "exports": {
  10. ".": {
  11. "types": "./lib/typings/index.d.ts",
  12. "default": "./lib/index.js"
  13. },
  14. "./src/*": "./src/*",
  15. "./package.json": "./package.json"
  16. },
  17. "files": [
  18. "lib/index.js",
  19. "lib/typings/**/*.d.ts",
  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-session": "^0.0.1",
  27. "@deepseek-ai/dsh-session-persistence": "^0.0.1",
  28. "@deepseek-ai/dsh-system-prompt": "^0.0.1",
  29. "@deepseek-ai/dsh-tools": "^0.0.1",
  30. "cordis": "^4.0.0-rc.6"
  31. },
  32. "dependencies": {
  33. "schemastery": "^3.18.0"
  34. },
  35. "devDependencies": {
  36. "@deepseek-ai/dsh-agent": "workspace:^",
  37. "@deepseek-ai/dsh-invariants": "workspace:^",
  38. "@deepseek-ai/dsh-llm": "workspace:^",
  39. "@deepseek-ai/dsh-session": "workspace:^",
  40. "@deepseek-ai/dsh-session-persistence": "workspace:^",
  41. "@deepseek-ai/dsh-session-persistence-jsonl": "workspace:^",
  42. "@deepseek-ai/dsh-system-prompt": "workspace:^",
  43. "@deepseek-ai/dsh-tools": "workspace:^",
  44. "cordis": "^4.0.0-rc.6"
  45. }
  46. }