package.json 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. {
  2. "name": "@deepseek-ai/dsh-web-app",
  3. "description": "The dsh browser-surface bundle: the web patch layer over dsh-base plus the runtime glue plugin (frontend dist serving, web-surface prompt, bash runtime variables, URL line)",
  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. "./invariant": {
  15. "types": "./lib/types/invariant.d.ts",
  16. "default": "./lib/invariant.js"
  17. },
  18. "./cordis.patch.yml": "./cordis.patch.yml",
  19. "./src/*": "./src/*",
  20. "./package.json": "./package.json"
  21. },
  22. "files": [
  23. "lib/index.js",
  24. "lib/invariant.js",
  25. "cordis.patch.yml",
  26. "lib/types/**/*.d.ts"
  27. ],
  28. "license": "BSD-3-Clause",
  29. "dsh": {
  30. "bundle": {
  31. "patch": "./cordis.patch.yml"
  32. }
  33. },
  34. "dependencies": {
  35. "@deepseek-ai/dsh-client-connection": "workspace:^",
  36. "@deepseek-ai/dsh-client-hmr": "workspace:^",
  37. "@deepseek-ai/dsh-client-locale": "workspace:^",
  38. "@deepseek-ai/dsh-client-modules": "workspace:^",
  39. "@deepseek-ai/dsh-client-runtime": "workspace:^",
  40. "@deepseek-ai/dsh-client-ui-command": "workspace:^",
  41. "@deepseek-ai/dsh-client-ui-conversation": "workspace:^",
  42. "@deepseek-ai/dsh-client-ui-goal": "workspace:^",
  43. "@deepseek-ai/dsh-client-ui-layout": "workspace:^",
  44. "@deepseek-ai/dsh-client-ui-model": "workspace:^",
  45. "@deepseek-ai/dsh-client-ui-models": "workspace:^",
  46. "@deepseek-ai/dsh-client-ui-permission": "workspace:^",
  47. "@deepseek-ai/dsh-client-ui-plan": "workspace:^",
  48. "@deepseek-ai/dsh-client-ui-question": "workspace:^",
  49. "@deepseek-ai/dsh-client-ui-settings": "workspace:^",
  50. "@deepseek-ai/dsh-client-ui-settings-general": "workspace:^",
  51. "@deepseek-ai/dsh-client-ui-sidebar": "workspace:^",
  52. "@deepseek-ai/dsh-client-ui-skill": "workspace:^",
  53. "@deepseek-ai/dsh-client-ui-slash": "workspace:^",
  54. "@deepseek-ai/dsh-client-ui-subagent": "workspace:^",
  55. "@deepseek-ai/dsh-client-ui-theme": "workspace:^",
  56. "@deepseek-ai/dsh-client-ui-trajectory": "workspace:^",
  57. "@deepseek-ai/dsh-client-ui-workspace": "workspace:^",
  58. "@deepseek-ai/dsh-code-runtime-worker": "workspace:^",
  59. "@deepseek-ai/dsh-frontend": "workspace:^",
  60. "@deepseek-ai/dsh-frontend-static": "workspace:^",
  61. "@deepseek-ai/dsh-host-apiproxy": "workspace:^",
  62. "@deepseek-ai/dsh-host-directory-picker-auto": "workspace:^",
  63. "@deepseek-ai/dsh-host-directory-picker-browse": "workspace:^",
  64. "@deepseek-ai/dsh-host-directory-picker-native": "workspace:^",
  65. "@deepseek-ai/dsh-host-webserver": "workspace:^",
  66. "@deepseek-ai/dsh-session-projection-cache": "workspace:^",
  67. "@deepseek-ai/dsh-storage": "workspace:^",
  68. "@deepseek-ai/dsh-storage-domain": "workspace:^",
  69. "@deepseek-ai/dsh-storage-json": "workspace:^",
  70. "@deepseek-ai/dsh-workspace": "workspace:^",
  71. "schemastery": "^3.18.0"
  72. },
  73. "peerDependencies": {
  74. "@deepseek-ai/dsh-bash-env": "^0.0.1",
  75. "@deepseek-ai/dsh-invariants": "^0.0.1",
  76. "@deepseek-ai/dsh-system-prompt": "^0.0.1",
  77. "cordis": "^4.0.0-rc.7"
  78. },
  79. "devDependencies": {
  80. "@deepseek-ai/dsh-bash-env": "workspace:^",
  81. "@deepseek-ai/dsh-invariants": "workspace:^",
  82. "@deepseek-ai/dsh-system-prompt": "workspace:^",
  83. "cordis": "^4.0.0-rc.7"
  84. }
  85. }