package.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. {
  2. "name": "@deepseek-ai/dsh-api-gateway",
  3. "description": "Typert Remote Host dispatcher and Client API endpoint",
  4. "version": "0.1.3-alpha.1",
  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. "./client": {
  22. "types": "./lib/types/client/index.d.ts",
  23. "default": "./lib/client.js"
  24. },
  25. "./types": {
  26. "types": "./lib/types/types.d.ts",
  27. "default": "./lib/types/types.js"
  28. },
  29. "./src/*": "./src/*",
  30. "./package.json": "./package.json"
  31. },
  32. "dsh": {
  33. "client": {
  34. "inject": [
  35. "@deepseek-ai/dsh-typert-registry",
  36. "@deepseek-ai/dsh-client-connection"
  37. ],
  38. "platform": "web",
  39. "immediately": true
  40. }
  41. },
  42. "scripts": {
  43. "bundle": "tsdown",
  44. "watch": "tsdown --watch"
  45. },
  46. "files": [
  47. "lib/index.js",
  48. "lib/client.js",
  49. "lib/types/**/*.js",
  50. "lib/types/**/*.d.ts"
  51. ],
  52. "license": "MIT",
  53. "dependencies": {
  54. "@deepseek-ai/dsh-deque": "workspace:^",
  55. "@deepseek-ai/dsh-timeout": "workspace:^",
  56. "@deepseek-ai/schemastery": "workspace:^",
  57. "ws": "^8.21.0",
  58. "@deepseek-ai/dsh-typert-protocol": "workspace:^"
  59. },
  60. "peerDependencies": {
  61. "@deepseek-ai/cordis": "workspace:^"
  62. },
  63. "devDependencies": {
  64. "@deepseek-ai/dsh-brand": "workspace:^",
  65. "@deepseek-ai/dsh-client-connection": "workspace:^",
  66. "@deepseek-ai/dsh-host-webserver": "workspace:^",
  67. "@deepseek-ai/dsh-typert-registry": "workspace:^",
  68. "@deepseek-ai/dsh-util-crypto": "workspace:^",
  69. "@types/ws": "^8.18.1",
  70. "@deepseek-ai/cordis": "workspace:^",
  71. "zod": "^4.4.3"
  72. }
  73. }