package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "@deepseek-ai/dsh-fs-e2b",
  3. "description": "E2B filesystem implementation for DeepSeek Harness",
  4. "version": "0.0.1-rc.5",
  5. "publishConfig": {
  6. "access": "restricted"
  7. },
  8. "repository": {
  9. "type": "git",
  10. "url": "git+https://github.com/deepseek-ai/deepseek-harness.git",
  11. "directory": "packages/e2b/fs-e2b"
  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-e2b": "workspace:^",
  36. "@deepseek-ai/dsh-fs": "workspace:^",
  37. "@deepseek-ai/dsh-invariants": "workspace:^",
  38. "@deepseek-ai/cordis": "workspace:^"
  39. },
  40. "devDependencies": {
  41. "@deepseek-ai/dsh-e2b": "workspace:^",
  42. "@deepseek-ai/dsh-fs": "workspace:^",
  43. "@deepseek-ai/dsh-invariants": "workspace:^",
  44. "@deepseek-ai/cordis": "workspace:^"
  45. }
  46. }