package.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "@deepseek-ai/dsh-tool-str-replace-editor",
  3. "description": "Model-facing view, create, literal replace, and line insert tool over the Harness filesystem service",
  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. "./invariant": {
  15. "types": "./lib/types/invariant.d.ts",
  16. "default": "./lib/invariant.js"
  17. },
  18. "./package.json": "./package.json"
  19. },
  20. "files": [
  21. "lib/index.js",
  22. "lib/invariant.js",
  23. "lib/types/**/*.d.ts",
  24. "lib/types/**/*.d.ts.map",
  25. "src"
  26. ],
  27. "license": "BSD-3-Clause",
  28. "peerDependencies": {
  29. "@deepseek-ai/dsh-fs": "^0.0.1",
  30. "@deepseek-ai/dsh-invariants": "^0.0.1",
  31. "@deepseek-ai/dsh-sandbox": "^0.0.1",
  32. "@deepseek-ai/dsh-sandbox-policy": "^0.0.1",
  33. "@deepseek-ai/dsh-tools": "^0.0.1",
  34. "cordis": "^4.0.0-rc.7"
  35. },
  36. "dependencies": {
  37. "schemastery": "^3.18.0"
  38. },
  39. "devDependencies": {
  40. "@deepseek-ai/dsh-agent": "workspace:^",
  41. "@deepseek-ai/dsh-fs": "workspace:^",
  42. "@deepseek-ai/dsh-fs-local": "workspace:^",
  43. "@deepseek-ai/dsh-fs-policy": "workspace:^",
  44. "@deepseek-ai/dsh-fs-sandbox": "workspace:^",
  45. "@deepseek-ai/dsh-invariants": "workspace:^",
  46. "@deepseek-ai/dsh-llm": "workspace:^",
  47. "@deepseek-ai/dsh-sandbox": "workspace:^",
  48. "@deepseek-ai/dsh-sandbox-policy": "workspace:^",
  49. "@deepseek-ai/dsh-session": "workspace:^",
  50. "@deepseek-ai/dsh-system-prompt": "workspace:^",
  51. "@deepseek-ai/dsh-tools": "workspace:^",
  52. "cordis": "^4.0.0-rc.7"
  53. }
  54. }