package.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "name": "@deepseek-ai/dsh-client-ui-attachment",
  3. "description": "Dynamic attachment presentation plugin for conversation input, message-image, and trajectory image slots",
  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-attachment"
  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-client-ui-chat",
  32. "@deepseek-ai/dsh-client-ui-conversation",
  33. "@deepseek-ai/dsh-client-ui-renderer",
  34. "@deepseek-ai/dsh-client-ui-trajectory",
  35. "@deepseek-ai/dsh-client-ui-tool"
  36. ],
  37. "platform": "web"
  38. }
  39. },
  40. "scripts": {
  41. "bundle": "tsdown",
  42. "watch": "tsdown --watch"
  43. },
  44. "license": "MIT",
  45. "devDependencies": {
  46. "@deepseek-ai/cordis": "workspace:^",
  47. "@types/react": "~18.3.1",
  48. "@types/react-dom": "~18.3.0",
  49. "@deepseek-ai/dsh-client-ui-chat": "workspace:^",
  50. "@deepseek-ai/dsh-client-ui-conversation": "workspace:^",
  51. "@deepseek-ai/dsh-client-ui-trajectory": "workspace:^",
  52. "@deepseek-ai/dsh-client-ui-renderer": "workspace:^",
  53. "@deepseek-ai/dsh-client-ui-primitives": "workspace:^",
  54. "@deepseek-ai/dsh-client-ui-slots": "workspace:^",
  55. "react": "^18.2.0",
  56. "react-dom": "^18.2.0",
  57. "@deepseek-ai/dsh-attachment": "workspace:^",
  58. "@deepseek-ai/dsh-client-ui-tool": "workspace:^",
  59. "clsx": "^2.0.0"
  60. },
  61. "files": [
  62. "lib/index.js",
  63. "lib/client.js",
  64. "lib/types/**/*.d.ts"
  65. ],
  66. "peerDependencies": {
  67. "@deepseek-ai/cordis": "workspace:^"
  68. }
  69. }