package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {
  2. "name": "@deepseek-ai/dsh-api-remotes",
  3. "description": "Remote BFF assembly and Host Agent/Session lookup policy",
  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. "./client": {
  19. "types": "./lib/types/client/index.d.ts",
  20. "default": "./lib/client.js"
  21. },
  22. "./src/*": "./src/*",
  23. "./package.json": "./package.json"
  24. },
  25. "dsh": {
  26. "client": {
  27. "inject": [
  28. "@deepseek-ai/dsh-api-gateway"
  29. ],
  30. "platform": "web",
  31. "immediately": true
  32. }
  33. },
  34. "scripts": {
  35. "bundle": "tsdown",
  36. "watch": "tsdown --watch"
  37. },
  38. "license": "BSD-3-Clause",
  39. "files": [
  40. "lib/index.js",
  41. "lib/invariant.js",
  42. "lib/client.js",
  43. "lib/types/**/*.d.ts"
  44. ],
  45. "dependencies": {
  46. "@deepseek-ai/dsh-type-meta": "workspace:^"
  47. },
  48. "peerDependencies": {
  49. "@deepseek-ai/dsh-agent": "^0.0.1",
  50. "@deepseek-ai/dsh-goal": "^0.0.1",
  51. "@deepseek-ai/dsh-invariants": "^0.0.1",
  52. "@deepseek-ai/dsh-session": "^0.0.1",
  53. "@deepseek-ai/dsh-session-persistence": "^0.0.1",
  54. "@deepseek-ai/dsh-typert-registry": "^0.0.1",
  55. "@deepseek-ai/cordis": "^4.0.0-rc.7"
  56. },
  57. "devDependencies": {
  58. "@deepseek-ai/dsh-agent": "workspace:^",
  59. "@deepseek-ai/dsh-goal": "workspace:^",
  60. "@deepseek-ai/dsh-invariants": "workspace:^",
  61. "@deepseek-ai/dsh-session": "workspace:^",
  62. "@deepseek-ai/dsh-session-persistence": "workspace:^",
  63. "@deepseek-ai/dsh-typert-registry": "workspace:^",
  64. "@deepseek-ai/cordis": "^4.0.0-rc.7"
  65. }
  66. }