package.json 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. {
  2. "name": "@deepseek-ai/dsh-client-ui-input-trigger",
  3. "description": "Input trigger pipeline: '/' and '@' detection, candidate menu, pick routing to registered sources",
  4. "version": "0.1.1-rc.2",
  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-input-trigger"
  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. "./client": {
  26. "types": "./lib/types/client/index.d.ts",
  27. "default": "./lib/client.js"
  28. },
  29. "./src/*": "./src/*",
  30. "./package.json": "./package.json"
  31. },
  32. "dsh": {
  33. "client": {
  34. "inject": [
  35. "@deepseek-ai/dsh-api-session-controller",
  36. "@deepseek-ai/dsh-client-locale",
  37. "@deepseek-ai/dsh-client-ui-conversation",
  38. "@deepseek-ai/dsh-client-ui-renderer"
  39. ],
  40. "platform": "web"
  41. }
  42. },
  43. "scripts": {
  44. "bundle": "tsdown",
  45. "watch": "tsdown --watch"
  46. },
  47. "license": "MIT",
  48. "dependencies": {
  49. "clsx": "^2.0.0"
  50. },
  51. "peerDependencies": {
  52. "@deepseek-ai/dsh-client-locale": "workspace:^",
  53. "@deepseek-ai/dsh-client-ui-conversation": "workspace:^",
  54. "@deepseek-ai/dsh-client-ui-renderer": "workspace:^",
  55. "@deepseek-ai/dsh-invariants": "workspace:^",
  56. "@deepseek-ai/cordis": "workspace:^",
  57. "@deepseek-ai/dsh-file-reference": "workspace:^",
  58. "@deepseek-ai/dsh-api-session-controller": "workspace:^",
  59. "@deepseek-ai/dsh-session": "workspace:^",
  60. "@deepseek-ai/dsh-client-ui-session": "workspace:^"
  61. },
  62. "devDependencies": {
  63. "@deepseek-ai/dsh-client-locale": "workspace:^",
  64. "@deepseek-ai/dsh-client-ui-conversation": "workspace:^",
  65. "@deepseek-ai/dsh-client-ui-renderer": "workspace:^",
  66. "@deepseek-ai/dsh-client-test-runtime": "workspace:^",
  67. "@deepseek-ai/dsh-client-ui-primitives": "workspace:^",
  68. "@deepseek-ai/dsh-client-ui-slots": "workspace:^",
  69. "@deepseek-ai/dsh-invariants": "workspace:^",
  70. "@types/react": "~18.3.1",
  71. "@deepseek-ai/cordis": "workspace:^",
  72. "react": "^18.2.0",
  73. "@deepseek-ai/dsh-file-reference": "workspace:^",
  74. "@deepseek-ai/dsh-api-session-controller": "workspace:^",
  75. "@deepseek-ai/dsh-client-store": "workspace:^",
  76. "@deepseek-ai/dsh-session": "workspace:^",
  77. "@deepseek-ai/dsh-client-ui-session": "workspace:^"
  78. },
  79. "files": [
  80. "lib/index.js",
  81. "lib/invariant.js",
  82. "lib/client.js",
  83. "lib/types/**/*.d.ts"
  84. ]
  85. }