package.json 1.7 KB

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