package.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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.1.1-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/shell/bash-sandbox"
  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. "./invariant": {
  22. "types": "./lib/types/invariant.d.ts",
  23. "default": "./lib/invariant.js"
  24. },
  25. "./src/*": "./src/*",
  26. "./package.json": "./package.json"
  27. },
  28. "files": [
  29. "lib/index.js",
  30. "lib/invariant.js",
  31. "lib/types/**/*.d.ts"
  32. ],
  33. "license": "MIT",
  34. "peerDependencies": {
  35. "@deepseek-ai/dsh-shell": "workspace:^",
  36. "@deepseek-ai/dsh-bash-local": "workspace:^",
  37. "@deepseek-ai/dsh-invariants": "workspace:^",
  38. "@deepseek-ai/dsh-sandbox": "workspace:^",
  39. "@deepseek-ai/dsh-sandbox-policy": "workspace:^",
  40. "@deepseek-ai/cordis": "workspace:^"
  41. },
  42. "devDependencies": {
  43. "@deepseek-ai/dsh-shell": "workspace:^",
  44. "@deepseek-ai/dsh-bash-local": "workspace:^",
  45. "@deepseek-ai/dsh-invariants": "workspace:^",
  46. "@deepseek-ai/dsh-subprocess-local": "workspace:^",
  47. "@deepseek-ai/dsh-sandbox": "workspace:^",
  48. "@deepseek-ai/dsh-sandbox-local": "workspace:^",
  49. "@deepseek-ai/dsh-sandbox-policy": "workspace:^",
  50. "@deepseek-ai/cordis": "workspace:^",
  51. "@deepseek-ai/node-addon-landlock-run": "workspace:^"
  52. }
  53. }