package.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "@deepseek-ai/dsh-subprocess-local",
  3. "description": "Local-subprocess implementation of the DeepSeek Harness subprocess seam",
  4. "version": "0.1.5-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/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-win32-process": "workspace:^",
  51. "koffi": "^3.1.0",
  52. "node-pty": "1.2.0-beta.15"
  53. },
  54. "devDependencies": {
  55. "@deepseek-ai/dsh-loader-smoke": "workspace:^",
  56. "@deepseek-ai/dsh-subprocess": "workspace:^",
  57. "@deepseek-ai/dsh-timeout": "workspace:^",
  58. "@deepseek-ai/cordis": "workspace:^"
  59. }
  60. }