package.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "@deepseek-ai/dsh-workspace-changes",
  3. "description": "Per-turn workspace file changes recorded from git working-tree snapshots and whole-file captures, with per-file comparisons, for the DeepSeek Harness",
  4. "version": "0.1.6-alpha.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/deliverables/workspace-changes"
  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. "./types": {
  22. "types": "./lib/types/types.d.ts",
  23. "default": "./lib/types/types.js"
  24. },
  25. "./src/*": "./src/*",
  26. "./package.json": "./package.json"
  27. },
  28. "license": "MIT",
  29. "files": [
  30. "lib/index.js",
  31. "lib/types/**/*.js",
  32. "lib/types/**/*.d.ts"
  33. ],
  34. "dependencies": {
  35. "@deepseek-ai/schemastery": "workspace:^",
  36. "diff": "^9.0.0"
  37. },
  38. "peerDependencies": {
  39. "@deepseek-ai/cordis": "workspace:^",
  40. "@deepseek-ai/dsh-agent": "workspace:^",
  41. "@deepseek-ai/dsh-session": "workspace:^",
  42. "@deepseek-ai/dsh-subprocess": "workspace:^",
  43. "@deepseek-ai/dsh-tools": "workspace:^"
  44. },
  45. "devDependencies": {
  46. "@deepseek-ai/cordis": "workspace:^",
  47. "@deepseek-ai/cordis-plugin-include": "workspace:^",
  48. "@deepseek-ai/cordis-plugin-loader": "workspace:^",
  49. "@deepseek-ai/dsh-agent": "workspace:^",
  50. "@deepseek-ai/dsh-session": "workspace:^",
  51. "@deepseek-ai/dsh-subprocess": "workspace:^",
  52. "@deepseek-ai/dsh-subprocess-local": "workspace:^",
  53. "@deepseek-ai/dsh-tools": "workspace:^",
  54. "@deepseek-ai/dsh-llm": "workspace:^"
  55. }
  56. }