package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "@deepseek-ai/dsh-client-web",
  3. "description": "Web shell kernel: bootWebShell (module system holding + seed table + two-stage boot + AppRoot gate + app-shell assembly entry), 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-modules": "workspace:^",
  24. "@deepseek-ai/dsh-client-ui-primitives": "workspace:^",
  25. "@deepseek-ai/dsh-client-ui-slots": "workspace:^",
  26. "@deepseek-ai/dsh-client-ui-theme": "workspace:^",
  27. "@deepseek-ai/dsh-client-web-react": "workspace:^",
  28. "react": "^18.2.0",
  29. "react-dom": "^18.2.0"
  30. },
  31. "devDependencies": {
  32. "@cordisjs/plugin-loader": "workspace:^",
  33. "@deepseek-ai/dsh-client-runtime": "workspace:^",
  34. "@deepseek-ai/dsh-invariants": "workspace:^",
  35. "@types/react": "~18.3.1",
  36. "@types/react-dom": "~18.3.0",
  37. "cordis": "^4.0.0-rc.7",
  38. "typescript": "^6.0.3"
  39. },
  40. "peerDependencies": {
  41. "@cordisjs/plugin-loader": "^1.0.0-rc.5",
  42. "@deepseek-ai/dsh-invariants": "^0.0.1",
  43. "cordis": "^4.0.0-rc.7"
  44. },
  45. "files": [
  46. "lib/index.js",
  47. "lib/invariant.js",
  48. "lib/types/**/*.d.ts",
  49. "lib/types/**/*.d.ts.map",
  50. "src"
  51. ]
  52. }