package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "@deepseek-ai/dsh-tool-bash",
  3. "description": "Model-facing bash tools (bash, bash_output, bash_kill) over the DeepSeek Harness bash executor seam",
  4. "version": "0.0.1",
  5. "private": true,
  6. "type": "module",
  7. "main": "lib/index.js",
  8. "types": "lib/index.d.ts",
  9. "exports": {
  10. ".": {
  11. "types": "./lib/index.d.ts",
  12. "default": "./lib/index.js"
  13. },
  14. "./src/*": "./src/*",
  15. "./package.json": "./package.json"
  16. },
  17. "files": [
  18. "lib",
  19. "src"
  20. ],
  21. "license": "BSD-3-Clause",
  22. "peerDependencies": {
  23. "@deepseek-ai/dsh-agent": "^0.0.1",
  24. "@deepseek-ai/dsh-bash": "^0.0.1",
  25. "@deepseek-ai/dsh-llm": "^0.0.1",
  26. "@deepseek-ai/dsh-tools": "^0.0.1",
  27. "cordis": "^4.0.0-rc.6"
  28. },
  29. "devDependencies": {
  30. "@deepseek-ai/dsh-agent": "workspace:^",
  31. "@deepseek-ai/dsh-agent-loop": "workspace:^",
  32. "@deepseek-ai/dsh-bash": "workspace:^",
  33. "@deepseek-ai/dsh-bash-local": "workspace:^",
  34. "@deepseek-ai/dsh-llm": "workspace:^",
  35. "@deepseek-ai/dsh-session": "workspace:^",
  36. "@deepseek-ai/dsh-system-prompt": "workspace:^",
  37. "@deepseek-ai/dsh-tools": "workspace:^",
  38. "cordis": "^4.0.0-rc.6"
  39. }
  40. }