package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "@deepseek-ai/dsh-client-ui-attachment",
  3. "description": "Pure React attachment atoms for the dsh web UI: draft-image rail, message image gallery, and original-image lightbox (zero cordis)",
  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/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. "./invariant": {
  22. "types": "./lib/types/invariant.d.ts",
  23. "default": "./lib/invariant.js"
  24. },
  25. "./src/*": "./src/*",
  26. "./package.json": "./package.json"
  27. },
  28. "license": "MIT",
  29. "dependencies": {
  30. "@deepseek-ai/dsh-attachment": "workspace:^",
  31. "@deepseek-ai/dsh-client-ui-primitives": "workspace:^",
  32. "clsx": "^2.0.0",
  33. "react": "^18.2.0",
  34. "react-dom": "^18.2.0"
  35. },
  36. "devDependencies": {
  37. "@deepseek-ai/cordis": "workspace:^",
  38. "@deepseek-ai/dsh-invariants": "workspace:^",
  39. "@types/react": "~18.3.1",
  40. "@types/react-dom": "~18.3.0"
  41. },
  42. "files": [
  43. "lib/index.js",
  44. "lib/invariant.js",
  45. "lib/types/**/*.d.ts"
  46. ],
  47. "peerDependencies": {
  48. "@deepseek-ai/cordis": "workspace:^",
  49. "@deepseek-ai/dsh-invariants": "workspace:^"
  50. }
  51. }