package.json 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "@deepseek-ai/dsh-client-ui-question",
  3. "description": "Web ask_user_question feature: host tool mount plus composer-takeover question UI",
  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. "@deepseek-ai/dsh-client-locale",
  28. "@deepseek-ai/dsh-client-ui-conversation"
  29. ],
  30. "platform": "web"
  31. },
  32. "scripts": {
  33. "bundle": "tsdown",
  34. "watch": "tsdown --watch"
  35. },
  36. "license": "BSD-3-Clause",
  37. "dependencies": {
  38. "@deepseek-ai/dsh-client-connection": "workspace:^",
  39. "@deepseek-ai/dsh-client-runtime": "workspace:^",
  40. "@deepseek-ai/dsh-client-ui-conversation": "workspace:^",
  41. "@deepseek-ai/dsh-client-ui-primitives": "workspace:^",
  42. "@deepseek-ai/dsh-client-ui-slots": "workspace:^",
  43. "@deepseek-ai/dsh-tool-ask-user": "workspace:^",
  44. "clsx": "^2.0.0",
  45. "react": "^18.2.0"
  46. },
  47. "peerDependencies": {
  48. "@deepseek-ai/dsh-client-locale": "^0.0.1",
  49. "@deepseek-ai/dsh-invariants": "^0.0.1",
  50. "cordis": "^4.0.0-rc.7"
  51. },
  52. "devDependencies": {
  53. "@deepseek-ai/dsh-agent": "workspace:^",
  54. "@deepseek-ai/dsh-client-locale": "workspace:^",
  55. "@deepseek-ai/dsh-invariants": "workspace:^",
  56. "@deepseek-ai/dsh-system-prompt": "workspace:^",
  57. "@deepseek-ai/dsh-tools": "workspace:^",
  58. "@deepseek-ai/dsh-user-interaction": "workspace:^",
  59. "@types/react": "~18.3.1",
  60. "cordis": "^4.0.0-rc.7"
  61. },
  62. "files": [
  63. "lib/index.js",
  64. "lib/invariant.js",
  65. "lib/client.js",
  66. "lib/types/**/*.d.ts"
  67. ]
  68. }