package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. "@shikijs/langs": "^4.3.1",
  24. "clsx": "^2.0.0",
  25. "react": "^18.2.0",
  26. "react-dom": "^18.2.0",
  27. "react-markdown": "^10.1.0",
  28. "remark-gfm": "^4.0.1",
  29. "shiki": "^4.3.1"
  30. },
  31. "devDependencies": {
  32. "@deepseek-ai/dsh-invariants": "workspace:^",
  33. "@types/react": "~18.3.1",
  34. "@types/react-dom": "~18.3.0",
  35. "cordis": "^4.0.0-rc.7"
  36. },
  37. "files": [
  38. "lib/index.js",
  39. "lib/invariant.js",
  40. "lib/types/**/*.d.ts",
  41. "lib/types/**/*.d.ts.map",
  42. "src"
  43. ],
  44. "peerDependencies": {
  45. "@deepseek-ai/dsh-invariants": "^0.0.1",
  46. "cordis": "^4.0.0-rc.7"
  47. }
  48. }