package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "name": "@deepseek-ai/dsh-subprocess-local",
  3. "description": "Local-subprocess implementation of the DeepSeek Harness subprocess seam",
  4. "version": "0.1.6-alpha.1",
  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/subprocess/subprocess-local"
  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. "./runner": {
  22. "types": "./lib/types/bin.d.ts",
  23. "default": "./lib/runner.js"
  24. },
  25. "./src/*": "./src/*",
  26. "./package.json": "./package.json",
  27. "./output": {
  28. "types": "./lib/types/output.d.ts",
  29. "default": "./lib/output.js"
  30. }
  31. },
  32. "files": [
  33. "lib/index.js",
  34. "lib/runner.js",
  35. "lib/runner-*.js",
  36. "lib/output.js",
  37. "scripts/ensure-spawn-helper.mjs",
  38. "lib/types/**/*.d.ts"
  39. ],
  40. "scripts": {
  41. "postinstall": "node scripts/ensure-spawn-helper.mjs"
  42. },
  43. "license": "MIT",
  44. "peerDependencies": {
  45. "@deepseek-ai/dsh-subprocess": "workspace:^",
  46. "@deepseek-ai/dsh-timeout": "workspace:^",
  47. "@deepseek-ai/cordis": "workspace:^"
  48. },
  49. "dependencies": {
  50. "@deepseek-ai/dsh-lazy-require": "workspace:^",
  51. "@deepseek-ai/dsh-win32-process": "workspace:^",
  52. "koffi": "^3.1.0",
  53. "node-pty": "1.2.0-beta.15"
  54. },
  55. "devDependencies": {
  56. "@deepseek-ai/dsh-loader-smoke": "workspace:^",
  57. "@deepseek-ai/dsh-subprocess": "workspace:^",
  58. "@deepseek-ai/dsh-timeout": "workspace:^",
  59. "@deepseek-ai/cordis": "workspace:^"
  60. }
  61. }