package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "@deepseek-ai/dsh-client-ui-primitives",
  3. "description": "Pure React atoms for the dsh web UI: StateDot, ic_ds_* icon set, Button/Pill/Menu/Modal/Input, markdown family (zero cordis)",
  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. "./src/*": "./src/*",
  19. "./package.json": "./package.json"
  20. },
  21. "license": "BSD-3-Clause",
  22. "dependencies": {
  23. "clsx": "^2.0.0",
  24. "react": "^18.2.0",
  25. "react-dom": "^18.2.0",
  26. "react-markdown": "^10.1.0",
  27. "remark-gfm": "^4.0.1"
  28. },
  29. "devDependencies": {
  30. "@deepseek-ai/dsh-invariants": "workspace:^",
  31. "@types/react": "~18.3.1",
  32. "@types/react-dom": "~18.3.0",
  33. "cordis": "^4.0.0-rc.7"
  34. },
  35. "files": [
  36. "lib/index.js",
  37. "lib/invariant.js",
  38. "lib/types/**/*.d.ts",
  39. "lib/types/**/*.d.ts.map",
  40. "src"
  41. ],
  42. "peerDependencies": {
  43. "@deepseek-ai/dsh-invariants": "^0.0.1",
  44. "cordis": "^4.0.0-rc.7"
  45. }
  46. }