package.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "@deepseek-ai/dsh-client-ui-plan",
  3. "description": "Plan-mode composer control: the conversation.input.plan seat over the plan projection and the /plan command channel",
  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-connection",
  28. "@deepseek-ai/dsh-client-ui-conversation"
  29. ],
  30. "platform": "web"
  31. },
  32. "scripts": {
  33. "bundle": "tsdown",
  34. "watch": "tsdown --watch"
  35. },
  36. "license": "BSD-3-Clause",
  37. "peerDependencies": {
  38. "@deepseek-ai/dsh-client-connection": "^0.0.1",
  39. "@deepseek-ai/dsh-client-runtime": "^0.0.1",
  40. "@deepseek-ai/dsh-client-ui-conversation": "^0.0.1",
  41. "@deepseek-ai/dsh-client-ui-slots": "^0.0.1",
  42. "@deepseek-ai/dsh-invariants": "^0.0.1",
  43. "@deepseek-ai/dsh-plan-mode": "^0.0.1",
  44. "cordis": "^4.0.0-rc.7",
  45. "react": "^18.2.0"
  46. },
  47. "devDependencies": {
  48. "@deepseek-ai/dsh-client-connection": "workspace:^",
  49. "@deepseek-ai/dsh-client-runtime": "workspace:^",
  50. "@deepseek-ai/dsh-client-ui-conversation": "workspace:^",
  51. "@deepseek-ai/dsh-client-ui-slots": "workspace:^",
  52. "@deepseek-ai/dsh-client-web-react": "workspace:^",
  53. "@deepseek-ai/dsh-invariants": "workspace:^",
  54. "@deepseek-ai/dsh-plan-mode": "workspace:^",
  55. "@types/react": "~18.3.1",
  56. "cordis": "^4.0.0-rc.7",
  57. "react": "^18.2.0"
  58. },
  59. "files": [
  60. "lib/index.js",
  61. "lib/invariant.js",
  62. "lib/client.js",
  63. "lib/types/**/*.d.ts",
  64. "lib/types/**/*.d.ts.map",
  65. "src"
  66. ]
  67. }