package.json 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. {
  2. "name": "@deepseek-ai/dsh-api-gateway",
  3. "description": "Typert Remote Host dispatcher and Client API endpoint",
  4. "version": "0.1.2-alpha.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-deque": "workspace:^",
  60. "@deepseek-ai/dsh-timeout": "workspace:^",
  61. "@deepseek-ai/schemastery": "workspace:^",
  62. "ws": "^8.21.0",
  63. "@deepseek-ai/dsh-typert-protocol": "workspace:^"
  64. },
  65. "peerDependencies": {
  66. "@deepseek-ai/cordis": "workspace:^"
  67. },
  68. "devDependencies": {
  69. "@deepseek-ai/dsh-brand": "workspace:^",
  70. "@deepseek-ai/dsh-client-connection": "workspace:^",
  71. "@deepseek-ai/dsh-host-webserver": "workspace:^",
  72. "@deepseek-ai/dsh-invariants": "workspace:^",
  73. "@deepseek-ai/dsh-typert-registry": "workspace:^",
  74. "@deepseek-ai/dsh-util-crypto": "workspace:^",
  75. "@types/ws": "^8.18.1",
  76. "@deepseek-ai/cordis": "workspace:^",
  77. "zod": "^4.4.3"
  78. }
  79. }