package.json 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "name": "@deepseek-ai/dsh-client-ui-workspace",
  3. "description": "Workspace picker plugin: one WorkspacePicker registered into the sidebar and empty-state workspace slots",
  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-locale",
  28. "@deepseek-ai/dsh-client-runtime",
  29. "@deepseek-ai/dsh-client-ui-conversation",
  30. "@deepseek-ai/dsh-client-ui-sidebar"
  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-locale": "^0.0.1",
  44. "@deepseek-ai/dsh-client-runtime": "^0.0.1",
  45. "@deepseek-ai/dsh-client-ui-primitives": "^0.0.1",
  46. "@deepseek-ai/dsh-client-ui-slots": "^0.0.1",
  47. "@deepseek-ai/dsh-invariants": "^0.0.1",
  48. "cordis": "^4.0.0-rc.7",
  49. "react": "^18.2.0"
  50. },
  51. "devDependencies": {
  52. "@deepseek-ai/dsh-client-locale": "workspace:^",
  53. "@deepseek-ai/dsh-client-runtime": "workspace:^",
  54. "@deepseek-ai/dsh-client-test-runtime": "workspace:^",
  55. "@deepseek-ai/dsh-client-ui-conversation": "workspace:^",
  56. "@deepseek-ai/dsh-client-ui-primitives": "workspace:^",
  57. "@deepseek-ai/dsh-client-ui-sidebar": "workspace:^",
  58. "@deepseek-ai/dsh-client-ui-slots": "workspace:^",
  59. "@deepseek-ai/dsh-invariants": "workspace:^",
  60. "@types/react": "~18.3.1",
  61. "cordis": "^4.0.0-rc.7",
  62. "react": "^18.2.0"
  63. },
  64. "files": [
  65. "lib/index.js",
  66. "lib/invariant.js",
  67. "lib/client.js",
  68. "lib/types/**/*.d.ts"
  69. ]
  70. }