package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "@deepseek-ai/dsh-client-ui-slash",
  3. "description": "Input trigger pipeline: '/' and '@' detection, candidate menu, pick routing to registered sources",
  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-runtime"
  28. ],
  29. "platform": "web"
  30. },
  31. "scripts": {
  32. "bundle": "tsdown",
  33. "watch": "tsdown --watch"
  34. },
  35. "license": "BSD-3-Clause",
  36. "dependencies": {
  37. "clsx": "^2.0.0"
  38. },
  39. "peerDependencies": {
  40. "@deepseek-ai/dsh-client-runtime": "^0.0.1",
  41. "@deepseek-ai/dsh-client-ui-slots": "^0.0.1",
  42. "@deepseek-ai/dsh-invariants": "^0.0.1",
  43. "cordis": "^4.0.0-rc.7",
  44. "react": "^18.2.0"
  45. },
  46. "devDependencies": {
  47. "@deepseek-ai/dsh-client-runtime": "workspace:^",
  48. "@deepseek-ai/dsh-client-ui-slots": "workspace:^",
  49. "@deepseek-ai/dsh-invariants": "workspace:^",
  50. "@types/react": "~18.3.1",
  51. "cordis": "^4.0.0-rc.7",
  52. "react": "^18.2.0"
  53. },
  54. "files": [
  55. "lib/index.js",
  56. "lib/invariant.js",
  57. "lib/client.js",
  58. "lib/types/**/*.d.ts",
  59. "lib/types/**/*.d.ts.map",
  60. "src"
  61. ]
  62. }