package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "@deepseek-ai/dsh-headless",
  3. "description": "The dsh one-shot bundle: a patch layer over dsh-base + dsh-web-app plus the runner plugin driving one task turn through the in-process API carrier",
  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. "./cordis.patch.yml": "./cordis.patch.yml",
  19. "./src/*": "./src/*",
  20. "./package.json": "./package.json"
  21. },
  22. "files": [
  23. "lib/index.js",
  24. "lib/invariant.js",
  25. "cordis.patch.yml",
  26. "lib/types/**/*.d.ts"
  27. ],
  28. "license": "BSD-3-Clause",
  29. "dsh": {
  30. "bundle": {
  31. "patch": "./cordis.patch.yml"
  32. }
  33. },
  34. "dependencies": {
  35. "schemastery": "^3.18.0"
  36. },
  37. "peerDependencies": {
  38. "@deepseek-ai/dsh-agent": "^0.0.1",
  39. "@deepseek-ai/dsh-host-apiproxy": "^0.0.1",
  40. "@deepseek-ai/dsh-host-webserver": "^0.0.1",
  41. "@deepseek-ai/dsh-invariants": "^0.0.1",
  42. "@deepseek-ai/dsh-session": "^0.0.1",
  43. "cordis": "^4.0.0-rc.7"
  44. },
  45. "devDependencies": {
  46. "@cordisjs/plugin-loader": "workspace:^",
  47. "@deepseek-ai/dsh-agent": "workspace:^",
  48. "@deepseek-ai/dsh-host-apiproxy": "workspace:^",
  49. "@deepseek-ai/dsh-host-webserver": "workspace:^",
  50. "@deepseek-ai/dsh-invariants": "workspace:^",
  51. "@deepseek-ai/dsh-session": "workspace:^",
  52. "cordis": "^4.0.0-rc.7"
  53. }
  54. }