package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "@deepseek-ai/dsh-sdk-client",
  3. "description": "TypeScript client SDK for driving a DeepSeek Harness runtime subprocess over stdio JSON-RPC: the DeepSeekHarness high-level turns API and the lower-level HarnessClient",
  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. ],
  25. "license": "BSD-3-Clause",
  26. "peerDependencies": {
  27. "@deepseek-ai/dsh-invariants": "^0.0.1",
  28. "@deepseek-ai/dsh-llm": "^0.0.1",
  29. "@deepseek-ai/dsh-sdk-protocol": "^0.0.1",
  30. "@deepseek-ai/dsh-session": "^0.0.1",
  31. "cordis": "^4.0.0-rc.7"
  32. },
  33. "devDependencies": {
  34. "@deepseek-ai/dsh-invariants": "workspace:^",
  35. "@deepseek-ai/dsh-llm": "workspace:^",
  36. "@deepseek-ai/dsh-sdk-protocol": "workspace:^",
  37. "@deepseek-ai/dsh-session": "workspace:^",
  38. "cordis": "^4.0.0-rc.7"
  39. }
  40. }