package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "@deepseek-ai/dsh-client-connection",
  3. "description": "Wire consumer layer: IApiClient subclasses, ConnectionController (SSE dual-stream + reconnect), fixture api (no cordis)",
  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. "./client": {
  19. "types": "./lib/types/client/index.d.ts",
  20. "default": "./lib/client.js"
  21. },
  22. "./src/*": "./src/*",
  23. "./package.json": "./package.json"
  24. },
  25. "dshClient": {
  26. "inject": [],
  27. "platform": "web",
  28. "immediately": true
  29. },
  30. "license": "BSD-3-Clause",
  31. "dependencies": {
  32. "@deepseek-ai/dsh-host-apiproxy": "workspace:^",
  33. "@deepseek-ai/dsh-llm": "workspace:^",
  34. "@deepseek-ai/dsh-session": "workspace:^",
  35. "@deepseek-ai/dsh-tools": "workspace:^",
  36. "schemastery": "^3.18.0"
  37. },
  38. "files": [
  39. "lib/index.js",
  40. "lib/invariant.js",
  41. "lib/client.js",
  42. "lib/types/**/*.d.ts",
  43. "lib/types/**/*.d.ts.map",
  44. "src"
  45. ],
  46. "peerDependencies": {
  47. "@deepseek-ai/dsh-host-webserver": "^0.0.1",
  48. "@deepseek-ai/dsh-invariants": "^0.0.1",
  49. "cordis": "^4.0.0-rc.7"
  50. },
  51. "devDependencies": {
  52. "@deepseek-ai/dsh-host-webserver": "workspace:^",
  53. "@deepseek-ai/dsh-invariants": "workspace:^",
  54. "cordis": "^4.0.0-rc.7"
  55. }
  56. }