package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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.1-rc.2",
  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. "./invariant": {
  22. "types": "./lib/types/invariant.d.ts",
  23. "default": "./lib/invariant.js"
  24. },
  25. "./package.json": "./package.json"
  26. },
  27. "files": [
  28. "lib/index.js",
  29. "lib/invariant.js",
  30. "lib/types/**/*.d.ts"
  31. ],
  32. "license": "MIT",
  33. "peerDependencies": {
  34. "@deepseek-ai/dsh-invariants": "workspace:^",
  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. "devDependencies": {
  41. "@deepseek-ai/dsh-invariants": "workspace:^",
  42. "@deepseek-ai/dsh-llm": "workspace:^",
  43. "@deepseek-ai/dsh-session": "workspace:^",
  44. "@deepseek-ai/dsh-subagent": "workspace:^",
  45. "@deepseek-ai/cordis": "workspace:^"
  46. }
  47. }