package.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "name": "@deepseek-ai/dsh-client-ui-layout",
  3. "description": "Shell plugin: three-column AppFrame with drag handles, ctx.layout viewing-state service (navigation + panels)",
  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/ui-layout"
  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. "./client": {
  26. "types": "./lib/types/client/index.d.ts",
  27. "default": "./lib/client.js"
  28. },
  29. "./src/*": "./src/*",
  30. "./package.json": "./package.json"
  31. },
  32. "dsh": {
  33. "client": {
  34. "inject": [
  35. "@deepseek-ai/dsh-client-runtime",
  36. "@deepseek-ai/dsh-client-ui-theme"
  37. ],
  38. "platform": "web"
  39. }
  40. },
  41. "scripts": {
  42. "bundle": "tsdown",
  43. "watch": "tsdown --watch"
  44. },
  45. "license": "MIT",
  46. "peerDependencies": {
  47. "@deepseek-ai/dsh-client-runtime": "workspace:^",
  48. "@deepseek-ai/dsh-client-ui-slots": "workspace:^",
  49. "@deepseek-ai/dsh-client-ui-theme": "workspace:^",
  50. "@deepseek-ai/dsh-invariants": "workspace:^",
  51. "@deepseek-ai/cordis": "workspace:^",
  52. "react": "^18.2.0"
  53. },
  54. "devDependencies": {
  55. "@deepseek-ai/dsh-client-locale": "workspace:^",
  56. "@deepseek-ai/dsh-client-runtime": "workspace:^",
  57. "@deepseek-ai/dsh-client-ui-slots": "workspace:^",
  58. "@deepseek-ai/dsh-client-ui-theme": "workspace:^",
  59. "@deepseek-ai/dsh-invariants": "workspace:^",
  60. "@types/react": "~18.3.1",
  61. "@deepseek-ai/cordis": "workspace:^",
  62. "react": "^18.2.0"
  63. },
  64. "files": [
  65. "lib/index.js",
  66. "lib/invariant.js",
  67. "lib/client.js",
  68. "lib/types/**/*.d.ts"
  69. ]
  70. }