package.json 665 B

123456789101112131415161718192021222324
  1. {
  2. "name": "@deepseek-ai/dsh",
  3. "description": "dsh CLI: interactive TUI, headless task, and browser UI surfaces",
  4. "version": "0.0.1",
  5. "private": true,
  6. "type": "module",
  7. "bin": {
  8. "dsh": "lib/bin.js"
  9. },
  10. "files": [
  11. "lib/bin.js",
  12. "src"
  13. ],
  14. "license": "BSD-3-Clause",
  15. "dependencies": {
  16. "@deepseek-ai/dsh-app-boot": "workspace:^",
  17. "@deepseek-ai/dsh-frontend": "workspace:^",
  18. "@deepseek-ai/dsh-host-apiproxy": "workspace:^",
  19. "@deepseek-ai/dsh-host-runtime": "workspace:^",
  20. "@deepseek-ai/dsh-host-webserver": "workspace:^",
  21. "@deepseek-ai/dsh-paths": "workspace:^",
  22. "@deepseek-ai/dsh-session": "workspace:^"
  23. }
  24. }