package.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. "dshClient": {
  26. "inject": [
  27. "@deepseek-ai/dsh-api-gateway"
  28. ],
  29. "platform": "web",
  30. "immediately": true
  31. },
  32. "scripts": {
  33. "bundle": "tsdown",
  34. "watch": "tsdown --watch"
  35. },
  36. "license": "BSD-3-Clause",
  37. "files": [
  38. "lib/index.js",
  39. "lib/invariant.js",
  40. "lib/client.js",
  41. "lib/types/**/*.d.ts"
  42. ],
  43. "dependencies": {
  44. "@deepseek-ai/dsh-type-meta": "workspace:^"
  45. },
  46. "peerDependencies": {
  47. "@deepseek-ai/dsh-agent": "^0.0.1",
  48. "@deepseek-ai/dsh-goal": "^0.0.1",
  49. "@deepseek-ai/dsh-invariants": "^0.0.1",
  50. "@deepseek-ai/dsh-session": "^0.0.1",
  51. "@deepseek-ai/dsh-session-persistence": "^0.0.1",
  52. "@deepseek-ai/dsh-typert-registry": "^0.0.1",
  53. "cordis": "^4.0.0-rc.7"
  54. },
  55. "devDependencies": {
  56. "@deepseek-ai/dsh-agent": "workspace:^",
  57. "@deepseek-ai/dsh-goal": "workspace:^",
  58. "@deepseek-ai/dsh-invariants": "workspace:^",
  59. "@deepseek-ai/dsh-session": "workspace:^",
  60. "@deepseek-ai/dsh-session-persistence": "workspace:^",
  61. "@deepseek-ai/dsh-typert-registry": "workspace:^",
  62. "cordis": "^4.0.0-rc.7"
  63. }
  64. }