package.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. "@types/mdast": "^4.0.4",
  25. "anser": "^2.3.5",
  26. "clsx": "^2.0.0",
  27. "katex": "^0.16.47",
  28. "mdast-util-from-markdown": "^2.0.3",
  29. "mdast-util-gfm": "^3.1.0",
  30. "mdast-util-math": "^3.0.0",
  31. "micromark-core-commonmark": "^2.0.3",
  32. "micromark-extension-gfm": "^3.0.0",
  33. "micromark-extension-math": "^3.1.0",
  34. "micromark-factory-space": "^2.0.1",
  35. "micromark-util-character": "^2.1.1",
  36. "micromark-util-classify-character": "^2.0.1",
  37. "micromark-util-sanitize-uri": "^2.0.1",
  38. "micromark-util-symbol": "^2.0.1",
  39. "micromark-util-types": "^2.0.2",
  40. "react": "^18.2.0",
  41. "react-dom": "^18.2.0",
  42. "shiki": "^4.3.1"
  43. },
  44. "devDependencies": {
  45. "@deepseek-ai/dsh-invariants": "workspace:^",
  46. "@types/react": "~18.3.1",
  47. "@types/react-dom": "~18.3.0",
  48. "cordis": "^4.0.0-rc.7"
  49. },
  50. "files": [
  51. "lib/index.js",
  52. "lib/invariant.js",
  53. "lib/types/**/*.d.ts"
  54. ],
  55. "peerDependencies": {
  56. "@deepseek-ai/dsh-invariants": "^0.0.1",
  57. "cordis": "^4.0.0-rc.7"
  58. }
  59. }