package.json 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. {
  2. "name": "@deepseek-ai/dsh-api-gateway",
  3. "description": "Typert Remote Host dispatcher and Client API endpoint",
  4. "version": "0.1.1-rc.2",
  5. "publishConfig": {
  6. "access": "public"
  7. },
  8. "repository": {
  9. "type": "git",
  10. "url": "git+https://github.com/deepseek-ai/deepseek-harness.git",
  11. "directory": "packages/api/gateway"
  12. },
  13. "type": "module",
  14. "main": "lib/index.js",
  15. "types": "lib/types/index.d.ts",
  16. "exports": {
  17. ".": {
  18. "types": "./lib/types/index.d.ts",
  19. "default": "./lib/index.js"
  20. },
  21. "./invariant": {
  22. "types": "./lib/types/invariant.d.ts",
  23. "default": "./lib/invariant.js"
  24. },
  25. "./client": {
  26. "types": "./lib/types/client/index.d.ts",
  27. "default": "./lib/client.js"
  28. },
  29. "./types": {
  30. "types": "./lib/types/types.d.ts",
  31. "default": "./lib/types/types.js"
  32. },
  33. "./src/*": "./src/*",
  34. "./package.json": "./package.json"
  35. },
  36. "dsh": {
  37. "client": {
  38. "inject": [
  39. "@deepseek-ai/dsh-typert-registry",
  40. "@deepseek-ai/dsh-client-connection"
  41. ],
  42. "platform": "web",
  43. "immediately": true
  44. }
  45. },
  46. "scripts": {
  47. "bundle": "tsdown",
  48. "watch": "tsdown --watch"
  49. },
  50. "files": [
  51. "lib/index.js",
  52. "lib/invariant.js",
  53. "lib/client.js",
  54. "lib/types/**/*.js",
  55. "lib/types/**/*.d.ts"
  56. ],
  57. "license": "MIT",
  58. "dependencies": {
  59. "@deepseek-ai/dsh-typert-protocol": "workspace:^",
  60. "ws": "^8.21.0"
  61. },
  62. "peerDependencies": {
  63. "@deepseek-ai/dsh-brand": "workspace:^",
  64. "@deepseek-ai/dsh-client-connection": "workspace:^",
  65. "@deepseek-ai/dsh-host-webserver": "workspace:^",
  66. "@deepseek-ai/dsh-invariants": "workspace:^",
  67. "@deepseek-ai/dsh-typert-registry": "workspace:^",
  68. "@deepseek-ai/cordis": "workspace:^"
  69. },
  70. "devDependencies": {
  71. "@deepseek-ai/dsh-brand": "workspace:^",
  72. "@deepseek-ai/dsh-client-connection": "workspace:^",
  73. "@deepseek-ai/dsh-host-webserver": "workspace:^",
  74. "@deepseek-ai/dsh-invariants": "workspace:^",
  75. "@deepseek-ai/dsh-typert-registry": "workspace:^",
  76. "@deepseek-ai/dsh-util-crypto": "workspace:^",
  77. "@types/ws": "^8.18.1",
  78. "@deepseek-ai/cordis": "workspace:^",
  79. "zod": "^4.4.3"
  80. }
  81. }