package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "@deepseek-ai/dsh-client-connection",
  3. "description": "Wire consumer layer: HTTP-up/WebSocket-down client, ConnectionController dual streams with reconnect, and fixture api",
  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-commands": "workspace:^",
  34. "@deepseek-ai/dsh-llm": "workspace:^",
  35. "@deepseek-ai/dsh-session": "workspace:^",
  36. "@deepseek-ai/dsh-tools": "workspace:^",
  37. "schemastery": "^3.18.0",
  38. "ws": "^8.21.0"
  39. },
  40. "files": [
  41. "lib/index.js",
  42. "lib/invariant.js",
  43. "lib/client.js",
  44. "lib/types/**/*.d.ts"
  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. "@types/ws": "^8.18.1",
  55. "cordis": "^4.0.0-rc.7"
  56. }
  57. }