package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "@deepseek-ai/dsh-sdk-protocol",
  3. "description": "Shared wire protocol for the DeepSeek Harness SDK runtime: the newline-delimited JSON-RPC stdio transport and the named request, result, and notification types spoken between the runtime server and SDK clients",
  4. "version": "0.1.5-alpha.1",
  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/sdk/protocol"
  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. "./package.json": "./package.json"
  22. },
  23. "files": [
  24. "lib/index.js",
  25. "lib/types/**/*.d.ts"
  26. ],
  27. "license": "MIT",
  28. "peerDependencies": {
  29. "@deepseek-ai/dsh-llm": "workspace:^",
  30. "@deepseek-ai/dsh-session": "workspace:^",
  31. "@deepseek-ai/dsh-subagent": "workspace:^",
  32. "@deepseek-ai/cordis": "workspace:^"
  33. },
  34. "devDependencies": {
  35. "@deepseek-ai/dsh-llm": "workspace:^",
  36. "@deepseek-ai/dsh-session": "workspace:^",
  37. "@deepseek-ai/dsh-subagent": "workspace:^",
  38. "@deepseek-ai/cordis": "workspace:^"
  39. }
  40. }