package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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.1.5-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/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. "@deepseek-ai/dsh-client-modules"
  36. ],
  37. "platform": "web",
  38. "immediately": true
  39. }
  40. },
  41. "license": "MIT",
  42. "dependencies": {
  43. "@deepseek-ai/schemastery": "workspace:^"
  44. },
  45. "peerDependencies": {
  46. "@deepseek-ai/cordis": "workspace:^"
  47. },
  48. "devDependencies": {
  49. "@deepseek-ai/cordis-plugin-loader": "workspace:^",
  50. "@deepseek-ai/dsh-client-modules": "workspace:^",
  51. "@deepseek-ai/dsh-host-webserver": "workspace:^",
  52. "@deepseek-ai/dsh-invariants": "workspace:^",
  53. "@deepseek-ai/cordis": "workspace:^"
  54. },
  55. "files": [
  56. "lib/index.js",
  57. "lib/invariant.js",
  58. "lib/client.js",
  59. "lib/types/**/*.d.ts"
  60. ]
  61. }