1
0

package.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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-rc.5",
  5. "publishConfig": {
  6. "access": "restricted"
  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. "./invariant": {
  22. "types": "./lib/types/invariant.d.ts",
  23. "default": "./lib/invariant.js"
  24. },
  25. "./src/*": "./src/*",
  26. "./package.json": "./package.json"
  27. },
  28. "license": "MIT",
  29. "dependencies": {
  30. "@shikijs/langs": "^4.3.1",
  31. "@types/mdast": "^4.0.4",
  32. "anser": "^2.3.5",
  33. "clsx": "^2.0.0",
  34. "katex": "^0.16.47",
  35. "mdast-util-from-markdown": "^2.0.3",
  36. "mdast-util-gfm": "^3.1.0",
  37. "mdast-util-math": "^3.0.0",
  38. "micromark-core-commonmark": "^2.0.3",
  39. "micromark-extension-gfm": "^3.0.0",
  40. "micromark-extension-math": "^3.1.0",
  41. "micromark-factory-space": "^2.0.1",
  42. "micromark-util-character": "^2.1.1",
  43. "micromark-util-classify-character": "^2.0.1",
  44. "micromark-util-sanitize-uri": "^2.0.1",
  45. "micromark-util-symbol": "^2.0.1",
  46. "micromark-util-types": "^2.0.2",
  47. "react": "^18.2.0",
  48. "react-dom": "^18.2.0",
  49. "shiki": "^4.3.1"
  50. },
  51. "devDependencies": {
  52. "@deepseek-ai/dsh-invariants": "workspace:^",
  53. "@types/react": "~18.3.1",
  54. "@types/react-dom": "~18.3.0",
  55. "@deepseek-ai/cordis": "workspace:^"
  56. },
  57. "files": [
  58. "lib/index.js",
  59. "lib/invariant.js",
  60. "lib/types/**/*.d.ts"
  61. ],
  62. "peerDependencies": {
  63. "@deepseek-ai/dsh-invariants": "workspace:^",
  64. "@deepseek-ai/cordis": "workspace:^"
  65. }
  66. }