package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "@deepseek-ai/dsh-code-runtime-worker",
  3. "description": "Worker-thread implementation of the DeepSeek Harness code-execution seam",
  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. "./worker": {
  19. "types": "./lib/types/worker.d.ts",
  20. "default": "./lib/worker.cjs"
  21. },
  22. "./package.json": "./package.json"
  23. },
  24. "files": [
  25. "lib/index.js",
  26. "lib/invariant.js",
  27. "lib/worker.cjs",
  28. "lib/types/**/*.d.ts"
  29. ],
  30. "license": "BSD-3-Clause",
  31. "peerDependencies": {
  32. "@deepseek-ai/dsh-code-runtime": "^0.0.1",
  33. "@deepseek-ai/dsh-invariants": "^0.0.1",
  34. "@deepseek-ai/dsh-session": "^0.0.1",
  35. "@deepseek-ai/dsh-timeout": "^0.0.1",
  36. "cordis": "^4.0.0-rc.7"
  37. },
  38. "dependencies": {
  39. "schemastery": "^3.18.0"
  40. },
  41. "devDependencies": {
  42. "@deepseek-ai/dsh-code-runtime": "workspace:^",
  43. "@deepseek-ai/dsh-invariants": "workspace:^",
  44. "@deepseek-ai/dsh-session": "workspace:^",
  45. "@deepseek-ai/dsh-timeout": "workspace:^",
  46. "cordis": "^4.0.0-rc.7"
  47. }
  48. }