package.json 1.6 KB

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