package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "@deepseek-ai/dsh-bash-sandbox",
  3. "description": "Sandbox-consuming implementation of the DeepSeek Harness bash executor seam (confines every command via ctx.sandbox, reports denial/enforcement result facts)",
  4. "version": "0.0.1",
  5. "private": true,
  6. "type": "module",
  7. "main": "lib/index.js",
  8. "types": "lib/types/index.d.ts",
  9. "exports": {
  10. ".": {
  11. "types": "./lib/types/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/types/**/*.d.ts",
  20. "lib/types/**/*.d.ts.map",
  21. "src"
  22. ],
  23. "license": "BSD-3-Clause",
  24. "peerDependencies": {
  25. "@deepseek-ai/dsh-bash": "^0.0.1",
  26. "@deepseek-ai/dsh-bash-local": "^0.0.1",
  27. "@deepseek-ai/dsh-sandbox": "^0.0.1",
  28. "cordis": "^4.0.0-rc.6"
  29. },
  30. "dependencies": {
  31. "schemastery": "^3.18.0"
  32. },
  33. "devDependencies": {
  34. "@deepseek-ai/dsh-bash": "workspace:^",
  35. "@deepseek-ai/dsh-bash-local": "workspace:^",
  36. "@deepseek-ai/dsh-sandbox": "workspace:^",
  37. "@deepseek-ai/dsh-sandbox-local": "workspace:^",
  38. "node-addon-landlock-run": "0.0.0-test.0",
  39. "cordis": "^4.0.0-rc.6"
  40. }
  41. }