package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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.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-invariants": "^0.0.1",
  30. "@deepseek-ai/dsh-llm": "^0.0.1",
  31. "@deepseek-ai/dsh-session": "^0.0.1",
  32. "@deepseek-ai/dsh-subagent": "^0.0.1",
  33. "cordis": "^4.0.0-rc.7"
  34. },
  35. "devDependencies": {
  36. "@deepseek-ai/dsh-invariants": "workspace:^",
  37. "@deepseek-ai/dsh-llm": "workspace:^",
  38. "@deepseek-ai/dsh-session": "workspace:^",
  39. "@deepseek-ai/dsh-subagent": "workspace:^",
  40. "cordis": "^4.0.0-rc.7"
  41. }
  42. }