package.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "@deepseek-ai/dsh-agent",
  3. "description": "Agent interface, registry, initiator scope, and event vocabulary for the DeepSeek Harness",
  4. "version": "0.0.1-rc.5",
  5. "publishConfig": {
  6. "access": "restricted"
  7. },
  8. "repository": {
  9. "type": "git",
  10. "url": "git+https://github.com/deepseek-ai/deepseek-harness.git",
  11. "directory": "packages/core/agent"
  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. "./types": {
  26. "types": "./lib/types/types.d.ts",
  27. "default": "./lib/types/types.js"
  28. },
  29. "./src/*": "./src/*",
  30. "./package.json": "./package.json"
  31. },
  32. "files": [
  33. "lib/index.js",
  34. "lib/invariant.js",
  35. "lib/types/**/*.js",
  36. "lib/types/**/*.d.ts"
  37. ],
  38. "license": "MIT",
  39. "peerDependencies": {
  40. "@deepseek-ai/dsh-invariants": "workspace:^",
  41. "@deepseek-ai/dsh-llm": "workspace:^",
  42. "@deepseek-ai/dsh-scope": "workspace:^",
  43. "@deepseek-ai/dsh-session": "workspace:^",
  44. "@deepseek-ai/dsh-system-prompt": "workspace:^",
  45. "@deepseek-ai/dsh-typert-protocol": "workspace:^",
  46. "@deepseek-ai/cordis": "workspace:^"
  47. },
  48. "devDependencies": {
  49. "@deepseek-ai/dsh-invariants": "workspace:^",
  50. "@deepseek-ai/dsh-llm": "workspace:^",
  51. "@deepseek-ai/dsh-scope": "workspace:^",
  52. "@deepseek-ai/dsh-session": "workspace:^",
  53. "@deepseek-ai/dsh-system-prompt": "workspace:^",
  54. "@deepseek-ai/dsh-typert-protocol": "workspace:^",
  55. "@deepseek-ai/dsh-typert-registry": "workspace:^",
  56. "@deepseek-ai/cordis": "workspace:^"
  57. }
  58. }