package.json 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. {
  2. "name": "@deepseek-ai/dsh-client-ui-sidebar-files",
  3. "description": "Workspace file tree tab type for the right Sidebar: lazy directory listing over the workspaceFiles Remote namespace, opening files into the Sidebar",
  4. "version": "0.1.5-rc.2",
  5. "publishConfig": {
  6. "access": "public"
  7. },
  8. "repository": {
  9. "type": "git",
  10. "url": "git+https://github.com/deepseek-ai/deepseek-harness.git",
  11. "directory": "packages/client/ui-sidebar-files"
  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. "./client": {
  22. "types": "./lib/types/client/index.d.ts",
  23. "default": "./lib/client.js"
  24. },
  25. "./src/*": "./src/*",
  26. "./package.json": "./package.json"
  27. },
  28. "dsh": {
  29. "client": {
  30. "inject": [
  31. "@deepseek-ai/dsh-api-workspace-files",
  32. "@deepseek-ai/dsh-client-ui-sidebar-right",
  33. "@deepseek-ai/dsh-client-ui-session",
  34. "@deepseek-ai/dsh-api-remotes"
  35. ],
  36. "platform": "web"
  37. }
  38. },
  39. "scripts": {
  40. "bundle": "tsdown",
  41. "watch": "tsdown --watch"
  42. },
  43. "license": "MIT",
  44. "peerDependencies": {
  45. "@deepseek-ai/cordis": "workspace:^"
  46. },
  47. "devDependencies": {
  48. "@deepseek-ai/cordis": "workspace:^",
  49. "@deepseek-ai/dsh-api-remotes": "workspace:^",
  50. "@deepseek-ai/dsh-api-workspace-files": "workspace:^",
  51. "@deepseek-ai/dsh-client-locale": "workspace:^",
  52. "@deepseek-ai/dsh-client-store": "workspace:^",
  53. "@deepseek-ai/dsh-client-test-runtime": "workspace:^",
  54. "@deepseek-ai/dsh-client-ui-dockkit": "workspace:^",
  55. "@deepseek-ai/dsh-client-ui-primitives": "workspace:^",
  56. "@deepseek-ai/dsh-client-ui-renderer": "workspace:^",
  57. "@deepseek-ai/dsh-client-ui-session": "workspace:^",
  58. "@deepseek-ai/dsh-client-ui-sidebar-right": "workspace:^",
  59. "@deepseek-ai/dsh-client-ui-slots": "workspace:^",
  60. "@deepseek-ai/dsh-session": "workspace:^",
  61. "@deepseek-ai/dsh-util-workspace-path": "workspace:^",
  62. "@testing-library/react": "^16.1.0",
  63. "@types/react": "~18.3.1",
  64. "@types/react-dom": "~18.3.0",
  65. "react": "^18.2.0",
  66. "clsx": "^2.0.0",
  67. "react-dom": "^18.2.0"
  68. },
  69. "files": [
  70. "lib/index.js",
  71. "lib/client.js",
  72. "lib/types/**/*.d.ts"
  73. ]
  74. }