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