1
0

package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "@deepseek-ai/dsh-code-runtime-python",
  3. "description": "CPython subprocess implementation of the DeepSeek Harness code-execution seam",
  4. "version": "0.1.0-rc.8",
  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/code-runtime/code-runtime-python"
  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. "./package.json": "./package.json"
  26. },
  27. "files": [
  28. "lib/index.js",
  29. "lib/invariant.js",
  30. "py/**/*.py",
  31. "lib/types/**/*.d.ts"
  32. ],
  33. "license": "MIT",
  34. "peerDependencies": {
  35. "@deepseek-ai/dsh-invariants": "workspace:^",
  36. "@deepseek-ai/cordis": "workspace:^"
  37. },
  38. "devDependencies": {
  39. "@deepseek-ai/dsh-invariants": "workspace:^",
  40. "@deepseek-ai/cordis": "workspace:^"
  41. }
  42. }