package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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",
  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. "./client": {
  15. "types": "./lib/types/client/index.d.ts",
  16. "default": "./lib/client.js"
  17. },
  18. "./invariant": {
  19. "types": "./lib/types/invariant.d.ts",
  20. "default": "./lib/invariant.js"
  21. },
  22. "./src/*": "./src/*",
  23. "./package.json": "./package.json"
  24. },
  25. "dsh": {
  26. "client": {
  27. "platform": "web",
  28. "inject": [],
  29. "immediately": true
  30. }
  31. },
  32. "scripts": {
  33. "bundle": "tsdown",
  34. "watch": "tsdown --watch"
  35. },
  36. "license": "BSD-3-Clause",
  37. "devDependencies": {
  38. "@deepseek-ai/cordis-plugin-loader": "workspace:^",
  39. "@deepseek-ai/dsh-host-webserver": "workspace:^",
  40. "@deepseek-ai/dsh-invariants": "workspace:^",
  41. "@deepseek-ai/cordis": "^4.0.0-rc.7"
  42. },
  43. "files": [
  44. "lib/index.js",
  45. "lib/invariant.js",
  46. "lib/client.js",
  47. "lib/types/**/*.d.ts"
  48. ],
  49. "peerDependencies": {
  50. "@deepseek-ai/dsh-invariants": "^0.0.1",
  51. "@deepseek-ai/cordis": "^4.0.0-rc.7"
  52. }
  53. }