package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "@deepseek-ai/dsh-client-ui-trajectory",
  3. "description": "Trajectory/Waterfall placeholder views: pure-consumer plugin registering into the conversation ViewMap (no service)",
  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. "./client": {
  19. "types": "./lib/types/client/index.d.ts",
  20. "default": "./lib/client.js"
  21. },
  22. "./src/*": "./src/*",
  23. "./package.json": "./package.json"
  24. },
  25. "dshClient": {
  26. "inject": [
  27. "@deepseek-ai/dsh-client-ui-conversation"
  28. ],
  29. "platform": "web"
  30. },
  31. "scripts": {
  32. "bundle": "tsdown",
  33. "watch": "tsdown --watch"
  34. },
  35. "license": "BSD-3-Clause",
  36. "peerDependencies": {
  37. "@deepseek-ai/dsh-invariants": "^0.0.1",
  38. "cordis": "^4.0.0-rc.7",
  39. "react": "^18.2.0"
  40. },
  41. "devDependencies": {
  42. "@deepseek-ai/dsh-client-runtime": "workspace:^",
  43. "@deepseek-ai/dsh-client-ui-conversation": "workspace:^",
  44. "@deepseek-ai/dsh-client-ui-slots": "workspace:^",
  45. "@deepseek-ai/dsh-invariants": "workspace:^",
  46. "@types/react": "~18.3.1",
  47. "cordis": "^4.0.0-rc.7",
  48. "react": "^18.2.0"
  49. },
  50. "files": [
  51. "lib/index.js",
  52. "lib/invariant.js",
  53. "lib/client.js",
  54. "lib/types/**/*.d.ts",
  55. "lib/types/**/*.d.ts.map",
  56. "src"
  57. ]
  58. }