package.json 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. {
  2. "name": "@deepseek-ai/dsh-client-ui-sidebar",
  3. "description": "Sidebar plugin: session multi-level tree, search, grouping, state dots",
  4. "version": "0.0.1-rc.5",
  5. "publishConfig": {
  6. "access": "restricted"
  7. },
  8. "repository": {
  9. "type": "git",
  10. "url": "git+https://github.com/deepseek-ai/deepseek-harness.git",
  11. "directory": "packages/client/ui-sidebar"
  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-client-runtime",
  36. "@deepseek-ai/dsh-client-ui-layout",
  37. "@deepseek-ai/dsh-client-locale"
  38. ],
  39. "platform": "web"
  40. }
  41. },
  42. "scripts": {
  43. "bundle": "tsdown",
  44. "watch": "tsdown --watch"
  45. },
  46. "license": "MIT",
  47. "dependencies": {
  48. "clsx": "^2.0.0"
  49. },
  50. "peerDependencies": {
  51. "@deepseek-ai/dsh-client-locale": "workspace:^",
  52. "@deepseek-ai/dsh-client-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. "@deepseek-ai/cordis": "workspace:^",
  57. "react": "^18.2.0"
  58. },
  59. "devDependencies": {
  60. "@deepseek-ai/dsh-client-locale": "workspace:^",
  61. "@deepseek-ai/dsh-client-runtime": "workspace:^",
  62. "@deepseek-ai/dsh-client-test-runtime": "workspace:^",
  63. "@deepseek-ai/dsh-client-ui-layout": "workspace:^",
  64. "@deepseek-ai/dsh-client-ui-primitives": "workspace:^",
  65. "@deepseek-ai/dsh-client-ui-slots": "workspace:^",
  66. "@deepseek-ai/dsh-invariants": "workspace:^",
  67. "@types/react": "~18.3.1",
  68. "@deepseek-ai/cordis": "workspace:^",
  69. "react": "^18.2.0"
  70. },
  71. "files": [
  72. "lib/index.js",
  73. "lib/invariant.js",
  74. "lib/client.js",
  75. "lib/types/**/*.d.ts"
  76. ]
  77. }