package.json 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "name": "@deepseek-ai/dsh-headless",
  3. "description": "The dsh one-shot bundle: a direct core Agent/Session runner over dsh-base with no Host, HTTP, or browser layer",
  4. "version": "0.1.1-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/bundle/headless"
  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. "./startup": {
  22. "types": "./lib/types/startup.d.ts",
  23. "default": "./lib/startup.js"
  24. },
  25. "./invariant": {
  26. "types": "./lib/types/invariant.d.ts",
  27. "default": "./lib/invariant.js"
  28. },
  29. "./cordis.patch.yml": "./cordis.patch.yml",
  30. "./src/*": "./src/*",
  31. "./package.json": "./package.json"
  32. },
  33. "files": [
  34. "lib/index.js",
  35. "lib/invariant.js",
  36. "lib/startup.js",
  37. "cordis.patch.yml",
  38. "lib/types/**/*.d.ts"
  39. ],
  40. "license": "MIT",
  41. "dsh": {
  42. "bundle": {
  43. "patch": "./cordis.patch.yml"
  44. }
  45. },
  46. "dependencies": {
  47. "@deepseek-ai/dsh-cmdline": "workspace:^",
  48. "@deepseek-ai/dsh-code-runtime-worker-thread": "workspace:^",
  49. "@deepseek-ai/schemastery": "workspace:^",
  50. "commander": "^15.0.0"
  51. },
  52. "peerDependencies": {
  53. "@deepseek-ai/cordis-plugin-loader": "workspace:^",
  54. "@deepseek-ai/dsh-agent": "workspace:^",
  55. "@deepseek-ai/dsh-agent-default-model": "workspace:^",
  56. "@deepseek-ai/dsh-invariants": "workspace:^",
  57. "@deepseek-ai/dsh-llm": "workspace:^",
  58. "@deepseek-ai/dsh-session": "workspace:^",
  59. "@deepseek-ai/cordis": "workspace:^"
  60. },
  61. "devDependencies": {
  62. "@deepseek-ai/cordis-plugin-loader": "workspace:^",
  63. "@deepseek-ai/dsh-agent": "workspace:^",
  64. "@deepseek-ai/dsh-agent-default-model": "workspace:^",
  65. "@deepseek-ai/dsh-invariants": "workspace:^",
  66. "@deepseek-ai/dsh-llm": "workspace:^",
  67. "@deepseek-ai/dsh-session": "workspace:^",
  68. "@deepseek-ai/cordis": "workspace:^"
  69. }
  70. }