package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "@deepseek-ai/dsh-client-modules",
  3. "description": "Client module system, dual-face: node half composes the __DSH_BOOT__ entry graph (incremental dsh.client scan, bundle route, index tap, webPlugins service); browser half is the lazy-CJS module table the vendored cordis Loader consumes as its internal seam",
  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/modules"
  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. "./invariant": {
  26. "types": "./lib/types/invariant.d.ts",
  27. "default": "./lib/invariant.js"
  28. },
  29. "./src/*": "./src/*",
  30. "./package.json": "./package.json"
  31. },
  32. "dsh": {
  33. "client": {
  34. "platform": "web",
  35. "inject": [],
  36. "immediately": true
  37. }
  38. },
  39. "scripts": {
  40. "bundle": "tsdown",
  41. "watch": "tsdown --watch"
  42. },
  43. "license": "MIT",
  44. "devDependencies": {
  45. "@deepseek-ai/cordis-plugin-loader": "workspace:^",
  46. "@deepseek-ai/dsh-host-webserver": "workspace:^",
  47. "@deepseek-ai/dsh-invariants": "workspace:^",
  48. "@deepseek-ai/cordis": "workspace:^"
  49. },
  50. "files": [
  51. "lib/index.js",
  52. "lib/invariant.js",
  53. "lib/client.js",
  54. "lib/types/**/*.d.ts"
  55. ],
  56. "peerDependencies": {
  57. "@deepseek-ai/dsh-invariants": "workspace:^",
  58. "@deepseek-ai/cordis": "workspace:^"
  59. }
  60. }