package.json 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. {
  2. "name": "@deepseek-ai/dsh-client-ui-chat",
  3. "description": "Chat Conversation target, node definitions, renderers, and details surface",
  4. "version": "0.1.5-rc.2",
  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/client/ui-chat"
  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. "./client": {
  22. "types": "./lib/types/client/index.d.ts",
  23. "default": "./lib/client.js"
  24. },
  25. "./src/*": "./src/*",
  26. "./package.json": "./package.json"
  27. },
  28. "dsh": {
  29. "client": {
  30. "inject": [
  31. "@deepseek-ai/dsh-api-session-controller",
  32. "@deepseek-ai/dsh-api-workspace-controller",
  33. "@deepseek-ai/dsh-client-locale",
  34. "@deepseek-ai/dsh-client-ui-conversation",
  35. "@deepseek-ai/dsh-client-ui-input-trigger",
  36. "@deepseek-ai/dsh-client-ui-layout",
  37. "@deepseek-ai/dsh-client-ui-renderer",
  38. "@deepseek-ai/dsh-client-ui-session",
  39. "@deepseek-ai/dsh-client-ui-settings",
  40. "@deepseek-ai/dsh-client-ui-sidebar-right",
  41. "@deepseek-ai/dsh-client-ui-workspace"
  42. ],
  43. "platform": "web"
  44. }
  45. },
  46. "scripts": {
  47. "bundle": "tsdown",
  48. "watch": "tsdown --watch"
  49. },
  50. "license": "MIT",
  51. "peerDependencies": {
  52. "@deepseek-ai/cordis": "workspace:^"
  53. },
  54. "devDependencies": {
  55. "@deepseek-ai/cordis": "workspace:^",
  56. "@deepseek-ai/dsh-agent": "workspace:^",
  57. "@deepseek-ai/dsh-api-remotes": "workspace:^",
  58. "@deepseek-ai/dsh-api-session-controller": "workspace:^",
  59. "@deepseek-ai/dsh-api-workspace-controller": "workspace:^",
  60. "@deepseek-ai/dsh-api-workspace-files": "workspace:^",
  61. "@deepseek-ai/dsh-attachment": "workspace:^",
  62. "@deepseek-ai/dsh-client-locale": "workspace:^",
  63. "@deepseek-ai/dsh-client-store": "workspace:^",
  64. "@deepseek-ai/dsh-client-ui-approval": "workspace:^",
  65. "@deepseek-ai/dsh-client-ui-conversation": "workspace:^",
  66. "@deepseek-ai/dsh-client-ui-input-trigger": "workspace:^",
  67. "@deepseek-ai/dsh-client-ui-layout": "workspace:^",
  68. "@deepseek-ai/dsh-client-ui-primitives": "workspace:^",
  69. "@deepseek-ai/dsh-client-ui-renderer": "workspace:^",
  70. "@deepseek-ai/dsh-client-ui-session": "workspace:^",
  71. "@deepseek-ai/dsh-client-ui-settings": "workspace:^",
  72. "@deepseek-ai/dsh-client-ui-sidebar-documentpreview": "workspace:^",
  73. "@deepseek-ai/dsh-client-ui-sidebar-right": "workspace:^",
  74. "@deepseek-ai/dsh-client-ui-slots": "workspace:^",
  75. "@deepseek-ai/dsh-client-ui-workspace": "workspace:^",
  76. "@deepseek-ai/dsh-commands": "workspace:^",
  77. "@deepseek-ai/dsh-compaction": "workspace:^",
  78. "@deepseek-ai/dsh-llm": "workspace:^",
  79. "@deepseek-ai/dsh-llm-retry": "workspace:^",
  80. "@deepseek-ai/dsh-session": "workspace:^",
  81. "@deepseek-ai/dsh-session-stats": "workspace:^",
  82. "@deepseek-ai/dsh-session-turn-outline": "workspace:^",
  83. "@deepseek-ai/dsh-settings": "workspace:^",
  84. "@deepseek-ai/dsh-token-meter": "workspace:^",
  85. "@deepseek-ai/dsh-tools": "workspace:^",
  86. "@deepseek-ai/dsh-util-workspace-path": "workspace:^",
  87. "@types/react": "~18.3.1",
  88. "@types/react-dom": "~18.3.0",
  89. "react": "^18.2.0",
  90. "react-dom": "^18.2.0"
  91. },
  92. "dependencies": {
  93. "@deepseek-ai/schemastery": "workspace:^"
  94. },
  95. "files": [
  96. "lib/index.js",
  97. "lib/client.js",
  98. "lib/types/**/*.d.ts"
  99. ]
  100. }