package.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {
  2. "name": "@deepseek-ai/dsh-host-apiproxy",
  3. "description": "API gateway: the ApiProxy contract (api/), the fetch carrier pair (fetch/), and the host-side gateway plugin providing ctx.apiProxy",
  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. "./src/*": "./src/*",
  19. "./package.json": "./package.json",
  20. "./api": {
  21. "types": "./lib/types/api/index.d.ts",
  22. "default": "./lib/types/api/index.js"
  23. },
  24. "./api/*": {
  25. "types": "./lib/types/api/*.d.ts",
  26. "default": "./lib/types/api/*.js"
  27. },
  28. "./client": {
  29. "types": "./lib/types/fetch/client.d.ts",
  30. "default": "./lib/types/fetch/client.js"
  31. }
  32. },
  33. "files": [
  34. "lib/index.js",
  35. "lib/invariant.js",
  36. "lib/types/**/*.js",
  37. "lib/types/**/*.d.ts",
  38. "lib/types/**/*.d.ts.map",
  39. "src"
  40. ],
  41. "license": "BSD-3-Clause",
  42. "dependencies": {
  43. "@deepseek-ai/dsh-agent": "workspace:^",
  44. "@deepseek-ai/dsh-brand": "workspace:^",
  45. "@deepseek-ai/dsh-llm": "workspace:^",
  46. "@deepseek-ai/dsh-session": "workspace:^",
  47. "@deepseek-ai/dsh-session-persistence": "workspace:^",
  48. "@deepseek-ai/dsh-session-title": "workspace:^",
  49. "@deepseek-ai/dsh-tools": "workspace:^",
  50. "@deepseek-ai/dsh-user-approval": "workspace:^",
  51. "@deepseek-ai/dsh-user-interaction": "workspace:^",
  52. "@deepseek-ai/dsh-workspace": "workspace:^",
  53. "schemastery": "^3.18.0",
  54. "zod": "^4.4.3"
  55. },
  56. "peerDependencies": {
  57. "cordis": "^4.0.0-rc.7",
  58. "@deepseek-ai/dsh-invariants": "^0.0.1"
  59. },
  60. "devDependencies": {
  61. "@deepseek-ai/dsh-storage": "workspace:^",
  62. "@deepseek-ai/dsh-storage-domain": "workspace:^",
  63. "cordis": "^4.0.0-rc.7",
  64. "@deepseek-ai/dsh-invariants": "workspace:^"
  65. }
  66. }