package.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "@deepseek-ai/dsh-client-hmr",
  3. "description": "Dev-only hot-reload driver for script-loaded client entries: SSE rebuilt frames → invalidate/prefetch → fiber swap through the vendored Loader entry",
  4. "version": "0.0.1-rc.5",
  5. "publishConfig": {
  6. "access": "restricted"
  7. },
  8. "repository": {
  9. "type": "git",
  10. "url": "git+https://github.com/deepseek-ai/deepseek-harness.git",
  11. "directory": "packages/client/hmr"
  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. "./src/*": "./src/*",
  30. "./package.json": "./package.json"
  31. },
  32. "dsh": {
  33. "client": {
  34. "inject": [],
  35. "platform": "web",
  36. "immediately": true
  37. }
  38. },
  39. "license": "MIT",
  40. "dependencies": {
  41. "@deepseek-ai/schemastery": "workspace:^"
  42. },
  43. "peerDependencies": {
  44. "@deepseek-ai/cordis-plugin-loader": "workspace:^",
  45. "@deepseek-ai/dsh-client-modules": "workspace:^",
  46. "@deepseek-ai/dsh-host-webserver": "workspace:^",
  47. "@deepseek-ai/dsh-invariants": "workspace:^",
  48. "@deepseek-ai/cordis": "workspace:^"
  49. },
  50. "devDependencies": {
  51. "@deepseek-ai/cordis-plugin-loader": "workspace:^",
  52. "@deepseek-ai/dsh-client-modules": "workspace:^",
  53. "@deepseek-ai/dsh-host-webserver": "workspace:^",
  54. "@deepseek-ai/dsh-invariants": "workspace:^",
  55. "@deepseek-ai/cordis": "workspace:^"
  56. },
  57. "files": [
  58. "lib/index.js",
  59. "lib/invariant.js",
  60. "lib/client.js",
  61. "lib/types/**/*.d.ts"
  62. ]
  63. }