package.json 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. {
  2. "name": "@deepseek-ai/dsh-client-runtime",
  3. "description": "Client core services: SlotRegistry, SessionRuntime (scope tree + object layer)",
  4. "version": "0.0.1-rc.5",
  5. "publishConfig": {
  6. "access": "restricted"
  7. },
  8. "repository": {
  9. "type": "git",
  10. "url": "git+https://github.com/deepseek-ai/deepseek-harness.git",
  11. "directory": "packages/client/runtime"
  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. "./client": {
  26. "types": "./lib/types/client/index.d.ts",
  27. "default": "./lib/client.js"
  28. },
  29. "./src/*": "./src/*",
  30. "./package.json": "./package.json"
  31. },
  32. "dsh": {
  33. "client": {
  34. "inject": [
  35. "@deepseek-ai/dsh-client-connection",
  36. "@deepseek-ai/dsh-typert-registry",
  37. "@deepseek-ai/dsh-api-remotes"
  38. ],
  39. "platform": "web",
  40. "immediately": true
  41. }
  42. },
  43. "license": "MIT",
  44. "dependencies": {
  45. "@deepseek-ai/dsh-agent": "workspace:^",
  46. "@deepseek-ai/dsh-attachment": "workspace:^",
  47. "@deepseek-ai/dsh-client-connection": "workspace:^",
  48. "@deepseek-ai/dsh-commands": "workspace:^",
  49. "@deepseek-ai/dsh-client-ui-slots": "workspace:^",
  50. "@deepseek-ai/dsh-host-apiproxy": "workspace:^",
  51. "@deepseek-ai/dsh-llm": "workspace:^",
  52. "@deepseek-ai/dsh-llm-retry": "workspace:^",
  53. "@deepseek-ai/dsh-session": "workspace:^",
  54. "@deepseek-ai/dsh-session-projection": "workspace:^",
  55. "@deepseek-ai/dsh-session-title": "workspace:^",
  56. "@deepseek-ai/dsh-tools": "workspace:^",
  57. "immer": "^10.1.1",
  58. "react": "^18.2.0",
  59. "zustand": "~4.4.7"
  60. },
  61. "peerDependencies": {
  62. "@deepseek-ai/cordis": "workspace:^",
  63. "@deepseek-ai/dsh-api-remotes": "workspace:^",
  64. "@deepseek-ai/dsh-invariants": "workspace:^",
  65. "@deepseek-ai/dsh-typert-protocol": "workspace:^",
  66. "@deepseek-ai/dsh-typert-registry": "workspace:^"
  67. },
  68. "devDependencies": {
  69. "@deepseek-ai/cordis": "workspace:^",
  70. "@deepseek-ai/dsh-api-remotes": "workspace:^",
  71. "@deepseek-ai/dsh-invariants": "workspace:^",
  72. "@deepseek-ai/dsh-timeout": "workspace:^",
  73. "@deepseek-ai/dsh-typert-protocol": "workspace:^",
  74. "@deepseek-ai/dsh-typert-registry": "workspace:^",
  75. "@types/react": "~18.3.1"
  76. },
  77. "files": [
  78. "lib/index.js",
  79. "lib/invariant.js",
  80. "lib/client.js",
  81. "lib/types/**/*.d.ts"
  82. ]
  83. }