package.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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-commands": "workspace:^",
  46. "@deepseek-ai/dsh-llm": "workspace:^",
  47. "@deepseek-ai/dsh-session": "workspace:^",
  48. "@deepseek-ai/dsh-session-persistence": "workspace:^",
  49. "@deepseek-ai/dsh-session-title": "workspace:^",
  50. "@deepseek-ai/dsh-skill": "workspace:^",
  51. "@deepseek-ai/dsh-tools": "workspace:^",
  52. "@deepseek-ai/dsh-user-approval": "workspace:^",
  53. "@deepseek-ai/dsh-user-interaction": "workspace:^",
  54. "@deepseek-ai/dsh-workspace": "workspace:^",
  55. "schemastery": "^3.18.0",
  56. "zod": "^4.4.3"
  57. },
  58. "peerDependencies": {
  59. "cordis": "^4.0.0-rc.7",
  60. "@deepseek-ai/dsh-invariants": "^0.0.1"
  61. },
  62. "devDependencies": {
  63. "@deepseek-ai/dsh-storage": "workspace:^",
  64. "@deepseek-ai/dsh-storage-domain": "workspace:^",
  65. "cordis": "^4.0.0-rc.7",
  66. "@deepseek-ai/dsh-invariants": "workspace:^"
  67. }
  68. }