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