package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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.1.3-alpha.1",
  5. "publishConfig": {
  6. "access": "public"
  7. },
  8. "repository": {
  9. "type": "git",
  10. "url": "git+https://github.com/deepseek-ai/deepseek-harness.git",
  11. "directory": "packages/client/ui-primitives"
  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. "./src/*": "./src/*",
  22. "./package.json": "./package.json"
  23. },
  24. "license": "MIT",
  25. "dependencies": {
  26. "@shikijs/langs": "^4.3.1",
  27. "@types/mdast": "^4.0.4",
  28. "anser": "^2.3.5",
  29. "clsx": "^2.0.0",
  30. "katex": "^0.16.47",
  31. "mdast-util-from-markdown": "^2.0.3",
  32. "mdast-util-gfm": "^3.1.0",
  33. "mdast-util-math": "^3.0.0",
  34. "micromark-core-commonmark": "^2.0.3",
  35. "micromark-extension-gfm": "^3.0.0",
  36. "micromark-extension-math": "^3.1.0",
  37. "micromark-factory-space": "^2.0.1",
  38. "micromark-util-character": "^2.1.1",
  39. "micromark-util-classify-character": "^2.0.1",
  40. "micromark-util-sanitize-uri": "^2.0.1",
  41. "micromark-util-symbol": "^2.0.1",
  42. "micromark-util-types": "^2.0.2",
  43. "react": "^18.2.0",
  44. "react-dom": "^18.2.0",
  45. "shiki": "^4.3.1"
  46. },
  47. "devDependencies": {
  48. "@types/react": "~18.3.1",
  49. "@types/react-dom": "~18.3.0",
  50. "@deepseek-ai/cordis": "workspace:^"
  51. },
  52. "files": [
  53. "lib/index.js",
  54. "lib/**/*.css",
  55. "lib/types/**/*.d.ts"
  56. ],
  57. "peerDependencies": {
  58. "@deepseek-ai/cordis": "workspace:^"
  59. }
  60. }