package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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.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/client"
  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. "dependencies": {
  29. "@deepseek-ai/dsh": "workspace:*"
  30. },
  31. "peerDependencies": {
  32. "@deepseek-ai/dsh-llm": "workspace:^",
  33. "@deepseek-ai/dsh-sdk-protocol": "workspace:^",
  34. "@deepseek-ai/dsh-session": "workspace:^",
  35. "@deepseek-ai/cordis": "workspace:^"
  36. },
  37. "devDependencies": {
  38. "@deepseek-ai/dsh-llm": "workspace:^",
  39. "@deepseek-ai/dsh-sdk-protocol": "workspace:^",
  40. "@deepseek-ai/dsh-session": "workspace:^",
  41. "@deepseek-ai/cordis": "workspace:^"
  42. }
  43. }