package.json 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. {
  2. "name": "@deepseek-ai/dsh-client-ui-command",
  3. "description": "Client command surface: global directory cache, '/' source, three command UI kinds, popupSelect registry",
  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. "@deepseek-ai/dsh-client-ui-slash",
  30. "@deepseek-ai/dsh-client-ui-conversation"
  31. ],
  32. "platform": "web"
  33. },
  34. "scripts": {
  35. "bundle": "tsdown",
  36. "watch": "tsdown --watch"
  37. },
  38. "license": "BSD-3-Clause",
  39. "dependencies": {
  40. "clsx": "^2.0.0"
  41. },
  42. "peerDependencies": {
  43. "@deepseek-ai/dsh-client-connection": "^0.0.1",
  44. "@deepseek-ai/dsh-client-locale": "^0.0.1",
  45. "@deepseek-ai/dsh-client-runtime": "^0.0.1",
  46. "@deepseek-ai/dsh-client-ui-conversation": "^0.0.1",
  47. "@deepseek-ai/dsh-client-ui-primitives": "^0.0.1",
  48. "@deepseek-ai/dsh-client-ui-slash": "^0.0.1",
  49. "@deepseek-ai/dsh-client-ui-slots": "^0.0.1",
  50. "@deepseek-ai/dsh-invariants": "^0.0.1",
  51. "cordis": "^4.0.0-rc.7",
  52. "react": "^18.2.0"
  53. },
  54. "devDependencies": {
  55. "@deepseek-ai/dsh-client-connection": "workspace:^",
  56. "@deepseek-ai/dsh-client-locale": "workspace:^",
  57. "@deepseek-ai/dsh-client-runtime": "workspace:^",
  58. "@deepseek-ai/dsh-client-test-runtime": "workspace:^",
  59. "@deepseek-ai/dsh-client-ui-conversation": "workspace:^",
  60. "@deepseek-ai/dsh-client-ui-primitives": "workspace:^",
  61. "@deepseek-ai/dsh-client-ui-slash": "workspace:^",
  62. "@deepseek-ai/dsh-client-ui-slots": "workspace:^",
  63. "@deepseek-ai/dsh-invariants": "workspace:^",
  64. "@types/react": "~18.3.1",
  65. "cordis": "^4.0.0-rc.7",
  66. "react": "^18.2.0"
  67. },
  68. "files": [
  69. "lib/index.js",
  70. "lib/invariant.js",
  71. "lib/client.js",
  72. "lib/types/**/*.d.ts"
  73. ]
  74. }