package.json 645 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "@deepseek-ai/dsh-bash",
  3. "description": "Abstract bash executor seam (ctx.bash) for the DeepSeek Harness",
  4. "version": "0.0.1",
  5. "private": true,
  6. "type": "module",
  7. "main": "lib/index.js",
  8. "types": "lib/typings/index.d.ts",
  9. "exports": {
  10. ".": {
  11. "types": "./lib/typings/index.d.ts",
  12. "default": "./lib/index.js"
  13. },
  14. "./src/*": "./src/*",
  15. "./package.json": "./package.json"
  16. },
  17. "files": [
  18. "lib/index.js",
  19. "lib/typings/**/*.d.ts",
  20. "src"
  21. ],
  22. "license": "BSD-3-Clause",
  23. "peerDependencies": {
  24. "cordis": "^4.0.0-rc.6"
  25. },
  26. "devDependencies": {
  27. "cordis": "^4.0.0-rc.6"
  28. }
  29. }