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-schema-form": "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. "@cordisjs/plugin-loader": "workspace:^",
  34. "@deepseek-ai/dsh-client-runtime": "workspace:^",
  35. "@deepseek-ai/dsh-client-test-runtime": "workspace:^",
  36. "@deepseek-ai/dsh-invariants": "workspace:^",
  37. "@types/react": "~18.3.1",
  38. "@types/react-dom": "~18.3.0",
  39. "cordis": "^4.0.0-rc.7",
  40. "typescript": "^6.0.3"
  41. },
  42. "peerDependencies": {
  43. "@cordisjs/plugin-loader": "^1.0.0-rc.5",
  44. "@deepseek-ai/dsh-invariants": "^0.0.1",
  45. "cordis": "^4.0.0-rc.7"
  46. },
  47. "files": [
  48. "lib/index.js",
  49. "lib/invariant.js",
  50. "lib/types/**/*.d.ts"
  51. ]
  52. }