package.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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.1.0-rc.6",
  5. "publishConfig": {
  6. "access": "public"
  7. },
  8. "repository": {
  9. "type": "git",
  10. "url": "git+https://github.com/deepseek-ai/deepseek-harness.git",
  11. "directory": "packages/client/web"
  12. },
  13. "type": "module",
  14. "main": "lib/index.js",
  15. "types": "lib/types/index.d.ts",
  16. "exports": {
  17. ".": {
  18. "types": "./lib/types/index.d.ts",
  19. "default": "./lib/index.js"
  20. },
  21. "./invariant": {
  22. "types": "./lib/types/invariant.d.ts",
  23. "default": "./lib/invariant.js"
  24. },
  25. "./src/*": "./src/*",
  26. "./package.json": "./package.json"
  27. },
  28. "license": "MIT",
  29. "dependencies": {
  30. "@deepseek-ai/dsh-client-modules": "workspace:^",
  31. "@deepseek-ai/dsh-client-schema-form": "workspace:^",
  32. "@deepseek-ai/dsh-client-ui-attachment": "workspace:^",
  33. "@deepseek-ai/dsh-client-ui-primitives": "workspace:^",
  34. "@deepseek-ai/dsh-client-ui-slots": "workspace:^",
  35. "@deepseek-ai/dsh-client-ui-theme": "workspace:^",
  36. "@deepseek-ai/dsh-client-web-react": "workspace:^",
  37. "react": "^18.2.0",
  38. "react-dom": "^18.2.0"
  39. },
  40. "devDependencies": {
  41. "@deepseek-ai/cordis-plugin-loader": "workspace:^",
  42. "@deepseek-ai/dsh-client-runtime": "workspace:^",
  43. "@deepseek-ai/dsh-client-test-runtime": "workspace:^",
  44. "@deepseek-ai/dsh-invariants": "workspace:^",
  45. "@types/react": "~18.3.1",
  46. "@types/react-dom": "~18.3.0",
  47. "@deepseek-ai/cordis": "workspace:^",
  48. "typescript": "^6.0.3"
  49. },
  50. "peerDependencies": {
  51. "@deepseek-ai/cordis-plugin-loader": "workspace:^",
  52. "@deepseek-ai/dsh-invariants": "workspace:^",
  53. "@deepseek-ai/cordis": "workspace:^"
  54. },
  55. "files": [
  56. "lib/index.js",
  57. "lib/invariant.js",
  58. "lib/types/**/*.d.ts"
  59. ]
  60. }