package.json 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. {
  2. "name": "@deepseek-ai/dsh-client-ui-settings-general",
  3. "description": "Settings ownerless-copy and product onboarding plugin: the General section, shell trigger/header chrome content, settings dictionaries, and the versioned welcome notice",
  4. "version": "0.0.1-rc.5",
  5. "publishConfig": {
  6. "access": "restricted"
  7. },
  8. "repository": {
  9. "type": "git",
  10. "url": "git+https://github.com/deepseek-ai/deepseek-harness.git",
  11. "directory": "packages/client/ui-settings-general"
  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-settings",
  37. "@deepseek-ai/dsh-client-locale",
  38. "@deepseek-ai/dsh-client-connection",
  39. "@deepseek-ai/dsh-api-remotes",
  40. "@deepseek-ai/dsh-client-ui-sidebar"
  41. ],
  42. "platform": "web"
  43. }
  44. },
  45. "scripts": {
  46. "bundle": "tsdown",
  47. "watch": "tsdown --watch"
  48. },
  49. "license": "MIT",
  50. "dependencies": {
  51. "@deepseek-ai/dsh-settings": "workspace:^",
  52. "@deepseek-ai/schemastery": "workspace:^",
  53. "clsx": "^2.0.0"
  54. },
  55. "peerDependencies": {
  56. "@deepseek-ai/dsh-api-remotes": "workspace:^",
  57. "@deepseek-ai/dsh-client-connection": "workspace:^",
  58. "@deepseek-ai/dsh-client-locale": "workspace:^",
  59. "@deepseek-ai/dsh-client-runtime": "workspace:^",
  60. "@deepseek-ai/dsh-client-ui-primitives": "workspace:^",
  61. "@deepseek-ai/dsh-client-ui-settings": "workspace:^",
  62. "@deepseek-ai/dsh-client-ui-sidebar": "workspace:^",
  63. "@deepseek-ai/dsh-client-ui-slots": "workspace:^",
  64. "@deepseek-ai/dsh-client-web-react": "workspace:^",
  65. "@deepseek-ai/dsh-invariants": "workspace:^",
  66. "@deepseek-ai/cordis": "workspace:^",
  67. "react": "^18.2.0"
  68. },
  69. "devDependencies": {
  70. "@deepseek-ai/dsh-api-remotes": "workspace:^",
  71. "@deepseek-ai/dsh-client-connection": "workspace:^",
  72. "@deepseek-ai/dsh-client-locale": "workspace:^",
  73. "@deepseek-ai/dsh-client-runtime": "workspace:^",
  74. "@deepseek-ai/dsh-client-test-runtime": "workspace:^",
  75. "@deepseek-ai/dsh-client-ui-primitives": "workspace:^",
  76. "@deepseek-ai/dsh-client-ui-settings": "workspace:^",
  77. "@deepseek-ai/dsh-client-ui-sidebar": "workspace:^",
  78. "@deepseek-ai/dsh-client-ui-slots": "workspace:^",
  79. "@deepseek-ai/dsh-client-web-react": "workspace:^",
  80. "@deepseek-ai/dsh-invariants": "workspace:^",
  81. "@deepseek-ai/cordis": "workspace:^",
  82. "@types/react": "~18.3.1",
  83. "react": "^18.2.0"
  84. },
  85. "files": [
  86. "lib/index.js",
  87. "lib/invariant.js",
  88. "lib/client.js",
  89. "lib/types/**/*.d.ts"
  90. ]
  91. }