package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "@deepseek-ai/dsh-client-web",
  3. "description": "Web shell library: bootWebShell (loader holding + module-table seeding + AppRoot gate + plugin assembly), consumed by the apps/web vite entry",
  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. "./src/*": "./src/*",
  19. "./package.json": "./package.json"
  20. },
  21. "license": "BSD-3-Clause",
  22. "dependencies": {
  23. "@deepseek-ai/dsh-client-connection": "workspace:^",
  24. "@deepseek-ai/dsh-client-runtime": "workspace:^",
  25. "@deepseek-ai/dsh-client-ui-primitives": "workspace:^",
  26. "@deepseek-ai/dsh-client-ui-slots": "workspace:^",
  27. "@deepseek-ai/dsh-client-ui-theme": "workspace:^",
  28. "@deepseek-ai/dsh-client-web-react": "workspace:^",
  29. "react": "^18.2.0",
  30. "react-dom": "^18.2.0"
  31. },
  32. "devDependencies": {
  33. "@deepseek-ai/dsh-invariants": "workspace:^",
  34. "@types/react": "~18.3.1",
  35. "@types/react-dom": "~18.3.0",
  36. "cordis": "^4.0.0-rc.7",
  37. "typescript": "^6.0.3"
  38. },
  39. "peerDependencies": {
  40. "@deepseek-ai/dsh-invariants": "^0.0.1",
  41. "cordis": "^4.0.0-rc.7"
  42. },
  43. "files": [
  44. "lib/index.js",
  45. "lib/invariant.js",
  46. "lib/types/**/*.d.ts",
  47. "lib/types/**/*.d.ts.map",
  48. "src"
  49. ]
  50. }