package.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. "@deepseek-ai/dsh-client-locale"
  29. ],
  30. "platform": "web"
  31. },
  32. "scripts": {
  33. "bundle": "tsdown",
  34. "watch": "tsdown --watch"
  35. },
  36. "license": "BSD-3-Clause",
  37. "dependencies": {
  38. "clsx": "^2.0.0"
  39. },
  40. "peerDependencies": {
  41. "@deepseek-ai/dsh-client-locale": "^0.0.1",
  42. "@deepseek-ai/dsh-client-runtime": "^0.0.1",
  43. "@deepseek-ai/dsh-client-ui-primitives": "^0.0.1",
  44. "@deepseek-ai/dsh-client-ui-slots": "^0.0.1",
  45. "@deepseek-ai/dsh-invariants": "^0.0.1",
  46. "cordis": "^4.0.0-rc.7",
  47. "react": "^18.2.0"
  48. },
  49. "devDependencies": {
  50. "@deepseek-ai/dsh-client-locale": "workspace:^",
  51. "@deepseek-ai/dsh-client-runtime": "workspace:^",
  52. "@deepseek-ai/dsh-client-test-runtime": "workspace:^",
  53. "@deepseek-ai/dsh-client-ui-primitives": "workspace:^",
  54. "@deepseek-ai/dsh-client-ui-slots": "workspace:^",
  55. "@deepseek-ai/dsh-invariants": "workspace:^",
  56. "@types/react": "~18.3.1",
  57. "cordis": "^4.0.0-rc.7",
  58. "react": "^18.2.0"
  59. },
  60. "files": [
  61. "lib/index.js",
  62. "lib/invariant.js",
  63. "lib/client.js",
  64. "lib/types/**/*.d.ts"
  65. ]
  66. }