package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "@deepseek-ai/dsh-client-ui-primitives",
  3. "description": "Pure React atoms for the dsh web UI: controls, icons, markdown, and JSON inspectors (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. "anser": "^2.3.5",
  25. "clsx": "^2.0.0",
  26. "katex": "^0.16.47",
  27. "mdast-util-from-markdown": "^2.0.3",
  28. "mdast-util-gfm": "^3.1.0",
  29. "micromark-extension-gfm": "^3.0.0",
  30. "micromark-extension-math": "^3.1.0",
  31. "micromark-factory-space": "^2.0.1",
  32. "micromark-util-character": "^2.1.1",
  33. "micromark-util-symbol": "^2.0.1",
  34. "micromark-util-types": "^2.0.2",
  35. "react": "^18.2.0",
  36. "react-dom": "^18.2.0",
  37. "react-markdown": "^10.1.0",
  38. "rehype-katex": "^7.0.1",
  39. "remark-gfm": "^4.0.1",
  40. "remark-math": "^6.0.0",
  41. "shiki": "^4.3.1"
  42. },
  43. "devDependencies": {
  44. "@deepseek-ai/dsh-invariants": "workspace:^",
  45. "@types/react": "~18.3.1",
  46. "@types/react-dom": "~18.3.0",
  47. "cordis": "^4.0.0-rc.7"
  48. },
  49. "files": [
  50. "lib/index.js",
  51. "lib/invariant.js",
  52. "lib/types/**/*.d.ts"
  53. ],
  54. "peerDependencies": {
  55. "@deepseek-ai/dsh-invariants": "^0.0.1",
  56. "cordis": "^4.0.0-rc.7"
  57. }
  58. }